diff --git a/AI_BENCHMARKING_ANALYSIS.ipynb b/AI_BENCHMARKING_ANALYSIS.ipynb index a1c1063..3753b54 100644 --- a/AI_BENCHMARKING_ANALYSIS.ipynb +++ b/AI_BENCHMARKING_ANALYSIS.ipynb @@ -27,7 +27,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": { "id": "ISzIoto4hnoG" }, @@ -35,12 +35,13 @@ "source": [ "# @title Import libraries\n", "from functions import *\n", - "from IPython.display import display, clear_output" + "from IPython.display import display, clear_output\n", + "import pandas as pd" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -51,7 +52,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ @@ -78,20 +79,24 @@ "df_pro_bot_resolved_questions: Has pro_question_id, bot_question_id, title, resolution, scheduled_close_time, question_weight\n", "\"\"\"\n", "\n", - "df_bot_scores = pd.read_csv(f'https://data.heroku.com/dataclips/nudnpycciffydoeihwbtttlkwpcj.csv')\n", - "df_bot_scores.to_csv('scores/bots_score_data_q4.csv', index=False)\n", - "#df_bot_scores = pd.read_csv('scores/bots_score_data_q3.csv')\n", - "df_bot_questions = df_bot_scores.rename(columns={'question_id': 'bot_question_id', 'question_title': 'title'})\n", - "df_bot_questions = df_bot_questions[df_bot_questions['resolution'].isin(['yes', 'no'])]\n", + "df_bot_scores = pd.read_csv(f'https://data.heroku.com/dataclips/nqghgczhvwahbmupzypyzaanabzv.csv')\n", + "df_bot_forecasts = pd.read_csv('https://data.heroku.com/dataclips/tfwiopapwgyjkawcpjmpibjlsars.csv')\n", + "df_bot_questions = df_bot_forecasts.rename(columns={'question_id': 'bot_question_id', 'question_title': 'title'})\n", "\n", - "df_pro_scores = pd.read_csv(f'https://data.heroku.com/dataclips/dgoglqeavaxrhhnfcikkoobuollk.csv')\n", - "df_pro_scores.to_csv('scores/pros_score_data_q4.csv', index=False)\n", - "#df_pro_scores = pd.read_csv('scores/pros_score_data_q3.csv')\n", - "df_pro_questions = df_pro_scores.rename(columns={'question_id': 'pro_question_id', 'question_title': 'title'})\n", - "df_pro_questions = df_pro_questions[df_pro_questions['resolution'].isin(['yes', 'no'])]\n", + "df_pro_scores = pd.read_csv(f'https://data.heroku.com/dataclips/pcyecxbmoxppkxxaebikcwukhpqk.csv')\n", + "df_pro_forecasts = pd.read_csv('https://data.heroku.com/dataclips/roxytxphqvznkgbygmfgzymjtfxx.csv')\n", + "df_pro_questions = df_pro_forecasts.rename(columns={'question_id': 'pro_question_id', 'question_title': 'title'})\n", "\n", - "df_pro_resolved_questions = df_pro_questions[['pro_question_id', 'title', 'resolution', 'scheduled_close_time', 'actual_close_time', 'question_weight']]\n", - "df_bot_resolved_questions = df_bot_questions[['bot_question_id', 'title', 'resolution', 'scheduled_close_time', 'actual_close_time', 'question_weight']]\n", + "if False: # Temporary\n", + " df_bot_questions = df_bot_questions[df_bot_questions['resolution'].isin(['yes', 'no'])]\n", + " df_bot_forecasts = df_bot_forecasts[df_bot_forecasts['resolution'].isin(['yes', 'no'])]\n", + " df_bot_scores = df_bot_scores[df_bot_scores['resolution'].isin(['yes', 'no'])]\n", + " df_pro_questions = df_pro_questions[df_pro_questions['resolution'].isin(['yes', 'no'])]\n", + " df_pro_forecasts = df_pro_forecasts[df_pro_forecasts['resolution'].isin(['yes', 'no'])]\n", + " df_pro_scores = df_pro_scores[df_pro_scores['resolution'].isin(['yes', 'no'])]\n", + "\n", + "df_pro_resolved_questions = df_pro_questions[['pro_question_id', 'title', 'resolution', 'scheduled_close_time', 'actual_close_time', 'question_weight', 'type', 'options', 'range_min', 'range_max']]\n", + "df_bot_resolved_questions = df_bot_questions[['bot_question_id', 'title', 'resolution', 'scheduled_close_time', 'actual_close_time', 'question_weight', 'type', 'options', 'range_min', 'range_max']]\n", "\n", "df_pro_bot_resolved_questions = pd.merge(\n", " df_bot_resolved_questions,\n", @@ -117,9 +122,17 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "109\n" + ] + } + ], "source": [ "# Are any of the weights NOT 1 -- for Q3 we need to assign weights \"manually\" but for Q4 they are there\n", "print(df_pro_bot_resolved_questions[df_pro_bot_resolved_questions['question_weight'] != 1].shape[0])" @@ -127,9 +140,19 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total number bot questions: 424\n", + "Bot questions that don't have pro counterpart: 325\n", + "Overlap between bot and pro questions: 99\n" + ] + } + ], "source": [ "b = df_pro_bot_resolved_questions.shape\n", "\n", @@ -143,9 +166,18 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 6, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Unweighted count: 99\n", + "Weighted count: 95.0\n" + ] + } + ], "source": [ "# Weighted vs unweighted breakdown for those overlapping questions?\n", "df_pro_bot_overlap = df_pro_bot_resolved_questions[~df_pro_bot_resolved_questions['pro_question_id'].isna()]\n", @@ -155,7 +187,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "metadata": {}, "outputs": [], "source": [ @@ -296,9 +328,17 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "109\n" + ] + } + ], "source": [ "# Test: Are there any non-1 weights (there should be)\n", "print(df_pro_bot_resolved_questions[df_pro_bot_resolved_questions['question_weight'] != 1].shape[0])" @@ -306,9 +346,55 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 9, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['bot_question_id', 'title', 'resolution', 'scheduled_close_time',\n", + " 'actual_close_time', 'type', 'options', 'range_min', 'range_max',\n", + " 'pro_question_id', 'question_weight'],\n", + " dtype='object')" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_pro_bot_resolved_questions.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "[31268, 31269, 31270, 31280, 31281, 31282, 31292, 31293, 31294, 31322, ,\n", + " 31337, 31338, 31368, 31321, 33874, 33875, 33876, 33877, 33878, 33879, 33880,\n", + " 33881, 33882, 33883, 33884, 33885, 33886, 33887, 34245, 34246, 34247, 34248,\n", + " 34249, 34250, 34252, 34251, 34253, 34254, 34255, 34256, 34257, 34258, 34259,\n", + " 34487, 34488, 34489, 34490, 34491, 34493, 34494, 34495, 34496, 34497, 34498,\n", + " 34499, 34500, 34501, 34721, 34722, 34723, 34724, 34725, 34726, 34727, 34728,\n", + " 34729, 34730, 34733, 34734, 34961, 34959, 34960, 34962, 34963, 34964, 34965,\n", + " 34966, 34967, 34968, 34971, 34972, 35169, 35170, 35171, 35172, 35173, 35174,\n", + " 35175, 35176, 35177, 35178, 35377, 35378, 35379, 35380, 35381, 35385, 35386,\n", + " 35387]\n", + "Length: 100, dtype: Int64 \n", + "[31262, 31263, 31264, 31274, 31275, 31276, 31286, 31287, 31288, 31317,\n", + " ...\n", + " 35614, 35615, 35616, 35617, 35618, 35619, 35620, 35621, 35622, 35705]\n", + "Length: 424, dtype: Int64\n" + ] + } + ], "source": [ "# Unique pro questions, bot questions\n", "pro_questions = df_pro_bot_resolved_questions['pro_question_id'].unique()\n", @@ -318,16 +404,38 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 11, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "bot_question_id Int64\n", + "title object\n", + "resolution object\n", + "scheduled_close_time object\n", + "actual_close_time object\n", + "type object\n", + "options object\n", + "range_min float64\n", + "range_max float64\n", + "pro_question_id Int64\n", + "question_weight float64\n", + "dtype: object" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "df_pro_bot_resolved_questions.dtypes" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 12, "metadata": {}, "outputs": [], "source": [ @@ -338,9 +446,17 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 13, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Number of unique questions in df_pro_bot_resolved_questions: 424\n" + ] + } + ], "source": [ "remove_early_closers = False # SET TO FALSE WHEN ALL Q'S ARE RESOLVED\n", "if remove_early_closers:\n", @@ -351,7 +467,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "metadata": {}, "outputs": [], "source": [ @@ -383,41 +499,219 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 15, "metadata": {}, "outputs": [], "source": [ - "################ CONVERT BASELINE SCORE TO FORECAST ###################\n", + "# Process forecasts (consolidate forecast columns; take the last forecast from each forecaster for each question) \n", + "df_bot_forecasts = process_forecasts(df_bot_forecasts)\n", + "df_pro_forecasts = process_forecasts(df_pro_forecasts)\n", "\n", - "df_bot_forecasts = convert_baseline_to_forecasts(df_bot_baseline)\n", - "df_bot_forecasts = df_bot_forecasts.drop('resolution', axis=1)\n", - "\n", - "df_bot_forecasts.head()\n", - "\n", - "df_pro_forecasts = convert_baseline_to_forecasts(df_pro_baseline)\n", - "df_pro_forecasts = df_pro_forecasts.drop('resolution', axis=1)\n", - "\n", - "df_pro_forecasts.head()\n", - "\n", - "\n", - "df_bot_forecasts = add_is_median(df_bot_forecasts)\n", - "df_pro_forecasts = add_is_median(df_pro_forecasts)\n" + "# Add median rows\n", + "df_bot_forecasts = add_median_rows(add_is_median(df_bot_forecasts), 'bot')\n", + "df_pro_forecasts = add_median_rows(add_is_median(df_pro_forecasts), 'pro')" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 16, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
question_idforecasterquestion_titlecreated_atauthor_idresolutionscheduled_close_timeactual_close_timequestion_weighttypeoptionsrange_minrange_maxpost_idforecastis_median
031268JgaltFor Q1 2025, how many banks will be listed on ...2025-01-17 19:06:22.013528+0010146512025-01-20 03:27:00+002025-01-20 03:27:00+001.0multiple_choice[\"0\",\"1\",\"2-3\",\"4-6\",\">6\"]NaNNaN31736[0.001,0.568,0.366,0.041,0.024]False
131268MaciekKFor Q1 2025, how many banks will be listed on ...2025-01-17 19:06:22.013528+0011758012025-01-20 03:27:00+002025-01-20 03:27:00+001.0multiple_choice[\"0\",\"1\",\"2-3\",\"4-6\",\">6\"]NaNNaN31736[0.001,0.62,0.35,0.019,0.01]True
231268OpenSystemFor Q1 2025, how many banks will be listed on ...2025-01-17 19:06:22.013528+0012016012025-01-20 03:27:00+002025-01-20 03:27:00+001.0multiple_choice[\"0\",\"1\",\"2-3\",\"4-6\",\">6\"]NaNNaN31736[0.005,0.7,0.25,0.04,0.005]False
331268SpottedBearFor Q1 2025, how many banks will be listed on ...2025-01-17 19:06:22.013528+0013152312025-01-20 03:27:00+002025-01-20 03:27:00+001.0multiple_choice[\"0\",\"1\",\"2-3\",\"4-6\",\">6\"]NaNNaN31736[0.001,0.59,0.35,0.044,0.015]False
431268ZaldathFor Q1 2025, how many banks will be listed on ...2025-01-17 19:06:22.013528+0013916112025-01-20 03:27:00+002025-01-20 03:27:00+001.0multiple_choice[\"0\",\"1\",\"2-3\",\"4-6\",\">6\"]NaNNaN31736[0.001,0.623,0.336,0.03,0.01]False
\n", + "
" + ], + "text/plain": [ + " question_id forecaster \\\n", + "0 31268 Jgalt \n", + "1 31268 MaciekK \n", + "2 31268 OpenSystem \n", + "3 31268 SpottedBear \n", + "4 31268 Zaldath \n", + "\n", + " question_title \\\n", + "0 For Q1 2025, how many banks will be listed on ... \n", + "1 For Q1 2025, how many banks will be listed on ... \n", + "2 For Q1 2025, how many banks will be listed on ... \n", + "3 For Q1 2025, how many banks will be listed on ... \n", + "4 For Q1 2025, how many banks will be listed on ... \n", + "\n", + " created_at author_id resolution \\\n", + "0 2025-01-17 19:06:22.013528+00 101465 1 \n", + "1 2025-01-17 19:06:22.013528+00 117580 1 \n", + "2 2025-01-17 19:06:22.013528+00 120160 1 \n", + "3 2025-01-17 19:06:22.013528+00 131523 1 \n", + "4 2025-01-17 19:06:22.013528+00 139161 1 \n", + "\n", + " scheduled_close_time actual_close_time question_weight \\\n", + "0 2025-01-20 03:27:00+00 2025-01-20 03:27:00+00 1.0 \n", + "1 2025-01-20 03:27:00+00 2025-01-20 03:27:00+00 1.0 \n", + "2 2025-01-20 03:27:00+00 2025-01-20 03:27:00+00 1.0 \n", + "3 2025-01-20 03:27:00+00 2025-01-20 03:27:00+00 1.0 \n", + "4 2025-01-20 03:27:00+00 2025-01-20 03:27:00+00 1.0 \n", + "\n", + " type options range_min range_max post_id \\\n", + "0 multiple_choice [\"0\",\"1\",\"2-3\",\"4-6\",\">6\"] NaN NaN 31736 \n", + "1 multiple_choice [\"0\",\"1\",\"2-3\",\"4-6\",\">6\"] NaN NaN 31736 \n", + "2 multiple_choice [\"0\",\"1\",\"2-3\",\"4-6\",\">6\"] NaN NaN 31736 \n", + "3 multiple_choice [\"0\",\"1\",\"2-3\",\"4-6\",\">6\"] NaN NaN 31736 \n", + "4 multiple_choice [\"0\",\"1\",\"2-3\",\"4-6\",\">6\"] NaN NaN 31736 \n", + "\n", + " forecast is_median \n", + "0 [0.001,0.568,0.366,0.041,0.024] False \n", + "1 [0.001,0.62,0.35,0.019,0.01] True \n", + "2 [0.005,0.7,0.25,0.04,0.005] False \n", + "3 [0.001,0.59,0.35,0.044,0.015] False \n", + "4 [0.001,0.623,0.336,0.03,0.01] False " + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "\n", - "df_bot_forecasts = add_median_rows(df_bot_forecasts, 'bot')\n", - "df_pro_forecasts = add_median_rows(df_pro_forecasts, 'pro')" + "df_pro_forecasts.head()" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 17, "metadata": {}, "outputs": [], "source": [ @@ -440,9 +734,32 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 18, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "array(['GreeneiBot2', 'Grizeu_Bot', 'InstitutPelFutur', 'NextWorldLab',\n", + " 'acm_bot', 'metac-Gemini-Exp-1206', 'metac-Llama-3.1', 'mmBot',\n", + " 'metac-claude-3-5-sonnet-latest', 'metac-gpt-4o',\n", + " 'metac-grok-2-1212', 'metac-o1', 'metac-o1-preview',\n", + " 'metac-perplexity', 'bot_median',\n", + " 'metac-claude-3-5-sonnet-20240620', 'pgodzinai', 'jkraybill_bot',\n", + " 'metac-exa', 'manticAI', 'MWG', 'CatrachoCaster', 'twsummerbot',\n", + " 'VeritasAI', 'X_bot', 'annabot', 'minefrac1', 'metac-deepseek-r1',\n", + " 'Bot_Pepa', 'laylaps', 'ajf-bot', 'SynapseSeer', 'RPM_bot',\n", + " 'cookics_bot_TEST', 'ProfessorSP', 'wunderplumb', 'CumulativeBot',\n", + " 'pianobot', 'krm-bot', 'KevinTestBot', '4Shadower', 'swingswish',\n", + " 'jonahsingerbot', 'bean_bot', 'andrewsiah', 'cobyj-bot'],\n", + " dtype=object)" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "all_bots = df_bot_peer['forecaster'].unique()\n", "all_bots" @@ -450,9 +767,206 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 19, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
forecasterweighted_meanweighted_sumn_questionsci_lowerweighted_se
11metac-o19.6747403631.1234924066.2574181.738353
12metac-o1-preview8.4656383121.4499983993.9479032.298000
14bot_median6.9263742618.3077324093.7796451.600741
19manticAI6.5108352055.2103093370.5525643.029040
5metac-Gemini-Exp-12065.4173671880.4764183770.8769882.309106
\n", + "
" + ], + "text/plain": [ + " forecaster weighted_mean weighted_sum n_questions ci_lower \\\n", + "11 metac-o1 9.674740 3631.123492 406 6.257418 \n", + "12 metac-o1-preview 8.465638 3121.449998 399 3.947903 \n", + "14 bot_median 6.926374 2618.307732 409 3.779645 \n", + "19 manticAI 6.510835 2055.210309 337 0.552564 \n", + "5 metac-Gemini-Exp-1206 5.417367 1880.476418 377 0.876988 \n", + "\n", + " weighted_se \n", + "11 1.738353 \n", + "12 2.298000 \n", + "14 1.600741 \n", + "19 3.029040 \n", + "5 2.309106 " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
forecasterweighted_meanweighted_sumn_questionsci_lowerweighted_se
23VeritasAI-4.854808-1602.183635361-8.8603672.036820
26minefrac1-9.333648-1757.059251202-15.4400643.096816
1Grizeu_Bot-9.743831-1882.605577207-17.4949673.931500
9metac-gpt-4o-5.987786-2235.360274404-10.4226872.255950
30ajf-bot-14.000701-3208.260547244-24.4825485.321344
\n", + "
" + ], + "text/plain": [ + " forecaster weighted_mean weighted_sum n_questions ci_lower \\\n", + "23 VeritasAI -4.854808 -1602.183635 361 -8.860367 \n", + "26 minefrac1 -9.333648 -1757.059251 202 -15.440064 \n", + "1 Grizeu_Bot -9.743831 -1882.605577 207 -17.494967 \n", + "9 metac-gpt-4o -5.987786 -2235.360274 404 -10.422687 \n", + "30 ajf-bot -14.000701 -3208.260547 244 -24.482548 \n", + "\n", + " weighted_se \n", + "23 2.036820 \n", + "26 3.096816 \n", + "1 3.931500 \n", + "9 2.255950 \n", + "30 5.321344 " + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "# Calculate and show results\n", "ranked_forecasters = calculate_weighted_stats(df_bot_peer)\n", @@ -462,7 +976,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 20, "metadata": { "id": "BmAFBHIhK77X" }, @@ -511,9 +1025,435 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 21, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(409, 47)\n" + ] + }, + { + "data": { + "text/plain": [ + "{np.int64(31262),\n", + " np.int64(31263),\n", + " np.int64(31264),\n", + " np.int64(31274),\n", + " np.int64(31275),\n", + " np.int64(31276),\n", + " np.int64(31286),\n", + " np.int64(31287),\n", + " np.int64(31288),\n", + " np.int64(31317),\n", + " np.int64(31318),\n", + " np.int64(31332),\n", + " np.int64(31333),\n", + " np.int64(31334),\n", + " np.int64(31366),\n", + " np.int64(31370),\n", + " np.int64(33735),\n", + " np.int64(33736),\n", + " np.int64(33737),\n", + " np.int64(33738),\n", + " np.int64(33739),\n", + " np.int64(33740),\n", + " np.int64(33741),\n", + " np.int64(33742),\n", + " np.int64(33743),\n", + " np.int64(33744),\n", + " np.int64(33745),\n", + " np.int64(33746),\n", + " np.int64(33747),\n", + " np.int64(33748),\n", + " np.int64(33749),\n", + " np.int64(33750),\n", + " np.int64(33751),\n", + " np.int64(33752),\n", + " np.int64(33753),\n", + " np.int64(33754),\n", + " np.int64(33755),\n", + " np.int64(33756),\n", + " np.int64(33757),\n", + " np.int64(33758),\n", + " np.int64(33759),\n", + " np.int64(33760),\n", + " np.int64(33761),\n", + " np.int64(33762),\n", + " np.int64(33763),\n", + " np.int64(33764),\n", + " np.int64(33765),\n", + " np.int64(33766),\n", + " np.int64(33767),\n", + " np.int64(33768),\n", + " np.int64(33769),\n", + " np.int64(33770),\n", + " np.int64(33771),\n", + " np.int64(33772),\n", + " np.int64(33773),\n", + " np.int64(33774),\n", + " np.int64(33775),\n", + " np.int64(33776),\n", + " np.int64(33777),\n", + " np.int64(33778),\n", + " np.int64(33779),\n", + " np.int64(33780),\n", + " np.int64(33781),\n", + " np.int64(33782),\n", + " np.int64(33783),\n", + " np.int64(34180),\n", + " np.int64(34181),\n", + " np.int64(34182),\n", + " np.int64(34183),\n", + " np.int64(34184),\n", + " np.int64(34185),\n", + " np.int64(34186),\n", + " np.int64(34187),\n", + " np.int64(34188),\n", + " np.int64(34189),\n", + " np.int64(34190),\n", + " np.int64(34191),\n", + " np.int64(34192),\n", + " np.int64(34193),\n", + " np.int64(34194),\n", + " np.int64(34195),\n", + " np.int64(34196),\n", + " np.int64(34197),\n", + " np.int64(34198),\n", + " np.int64(34199),\n", + " np.int64(34200),\n", + " np.int64(34201),\n", + " np.int64(34202),\n", + " np.int64(34203),\n", + " np.int64(34204),\n", + " np.int64(34205),\n", + " np.int64(34206),\n", + " np.int64(34207),\n", + " np.int64(34208),\n", + " np.int64(34209),\n", + " np.int64(34210),\n", + " np.int64(34211),\n", + " np.int64(34212),\n", + " np.int64(34214),\n", + " np.int64(34215),\n", + " np.int64(34216),\n", + " np.int64(34217),\n", + " np.int64(34218),\n", + " np.int64(34219),\n", + " np.int64(34220),\n", + " np.int64(34221),\n", + " np.int64(34222),\n", + " np.int64(34224),\n", + " np.int64(34225),\n", + " np.int64(34226),\n", + " np.int64(34227),\n", + " np.int64(34228),\n", + " np.int64(34229),\n", + " np.int64(34323),\n", + " np.int64(34324),\n", + " np.int64(34325),\n", + " np.int64(34326),\n", + " np.int64(34422),\n", + " np.int64(34423),\n", + " np.int64(34424),\n", + " np.int64(34425),\n", + " np.int64(34426),\n", + " np.int64(34427),\n", + " np.int64(34428),\n", + " np.int64(34429),\n", + " np.int64(34430),\n", + " np.int64(34431),\n", + " np.int64(34432),\n", + " np.int64(34433),\n", + " np.int64(34434),\n", + " np.int64(34435),\n", + " np.int64(34436),\n", + " np.int64(34437),\n", + " np.int64(34438),\n", + " np.int64(34439),\n", + " np.int64(34440),\n", + " np.int64(34441),\n", + " np.int64(34442),\n", + " np.int64(34443),\n", + " np.int64(34444),\n", + " np.int64(34445),\n", + " np.int64(34446),\n", + " np.int64(34447),\n", + " np.int64(34448),\n", + " np.int64(34449),\n", + " np.int64(34450),\n", + " np.int64(34451),\n", + " np.int64(34452),\n", + " np.int64(34453),\n", + " np.int64(34454),\n", + " np.int64(34455),\n", + " np.int64(34456),\n", + " np.int64(34457),\n", + " np.int64(34458),\n", + " np.int64(34459),\n", + " np.int64(34461),\n", + " np.int64(34462),\n", + " np.int64(34463),\n", + " np.int64(34464),\n", + " np.int64(34465),\n", + " np.int64(34466),\n", + " np.int64(34467),\n", + " np.int64(34468),\n", + " np.int64(34469),\n", + " np.int64(34470),\n", + " np.int64(34471),\n", + " np.int64(34649),\n", + " np.int64(34650),\n", + " np.int64(34651),\n", + " np.int64(34652),\n", + " np.int64(34653),\n", + " np.int64(34654),\n", + " np.int64(34655),\n", + " np.int64(34656),\n", + " np.int64(34657),\n", + " np.int64(34658),\n", + " np.int64(34659),\n", + " np.int64(34660),\n", + " np.int64(34661),\n", + " np.int64(34662),\n", + " np.int64(34663),\n", + " np.int64(34664),\n", + " np.int64(34665),\n", + " np.int64(34666),\n", + " np.int64(34667),\n", + " np.int64(34668),\n", + " np.int64(34669),\n", + " np.int64(34670),\n", + " np.int64(34671),\n", + " np.int64(34672),\n", + " np.int64(34673),\n", + " np.int64(34674),\n", + " np.int64(34675),\n", + " np.int64(34676),\n", + " np.int64(34677),\n", + " np.int64(34678),\n", + " np.int64(34679),\n", + " np.int64(34680),\n", + " np.int64(34681),\n", + " np.int64(34682),\n", + " np.int64(34683),\n", + " np.int64(34684),\n", + " np.int64(34685),\n", + " np.int64(34686),\n", + " np.int64(34687),\n", + " np.int64(34688),\n", + " np.int64(34689),\n", + " np.int64(34690),\n", + " np.int64(34692),\n", + " np.int64(34693),\n", + " np.int64(34695),\n", + " np.int64(34696),\n", + " np.int64(34697),\n", + " np.int64(34698),\n", + " np.int64(34898),\n", + " np.int64(34899),\n", + " np.int64(34900),\n", + " np.int64(34901),\n", + " np.int64(34902),\n", + " np.int64(34903),\n", + " np.int64(34904),\n", + " np.int64(34905),\n", + " np.int64(34906),\n", + " np.int64(34907),\n", + " np.int64(34908),\n", + " np.int64(34909),\n", + " np.int64(34910),\n", + " np.int64(34911),\n", + " np.int64(34912),\n", + " np.int64(34913),\n", + " np.int64(34914),\n", + " np.int64(34915),\n", + " np.int64(34916),\n", + " np.int64(34917),\n", + " np.int64(34918),\n", + " np.int64(34919),\n", + " np.int64(34920),\n", + " np.int64(34921),\n", + " np.int64(34922),\n", + " np.int64(34923),\n", + " np.int64(34924),\n", + " np.int64(34925),\n", + " np.int64(34926),\n", + " np.int64(34927),\n", + " np.int64(34928),\n", + " np.int64(34929),\n", + " np.int64(34930),\n", + " np.int64(34931),\n", + " np.int64(34932),\n", + " np.int64(34933),\n", + " np.int64(34934),\n", + " np.int64(34935),\n", + " np.int64(34936),\n", + " np.int64(34937),\n", + " np.int64(34938),\n", + " np.int64(34939),\n", + " np.int64(34940),\n", + " np.int64(34941),\n", + " np.int64(34942),\n", + " np.int64(34943),\n", + " np.int64(34944),\n", + " np.int64(34945),\n", + " np.int64(34946),\n", + " np.int64(34947),\n", + " np.int64(35110),\n", + " np.int64(35111),\n", + " np.int64(35112),\n", + " np.int64(35113),\n", + " np.int64(35114),\n", + " np.int64(35115),\n", + " np.int64(35116),\n", + " np.int64(35117),\n", + " np.int64(35118),\n", + " np.int64(35119),\n", + " np.int64(35120),\n", + " np.int64(35121),\n", + " np.int64(35122),\n", + " np.int64(35123),\n", + " np.int64(35124),\n", + " np.int64(35126),\n", + " np.int64(35127),\n", + " np.int64(35128),\n", + " np.int64(35129),\n", + " np.int64(35130),\n", + " np.int64(35131),\n", + " np.int64(35132),\n", + " np.int64(35133),\n", + " np.int64(35134),\n", + " np.int64(35135),\n", + " np.int64(35136),\n", + " np.int64(35137),\n", + " np.int64(35138),\n", + " np.int64(35139),\n", + " np.int64(35140),\n", + " np.int64(35141),\n", + " np.int64(35142),\n", + " np.int64(35143),\n", + " np.int64(35144),\n", + " np.int64(35145),\n", + " np.int64(35146),\n", + " np.int64(35147),\n", + " np.int64(35148),\n", + " np.int64(35149),\n", + " np.int64(35150),\n", + " np.int64(35151),\n", + " np.int64(35152),\n", + " np.int64(35153),\n", + " np.int64(35154),\n", + " np.int64(35155),\n", + " np.int64(35156),\n", + " np.int64(35157),\n", + " np.int64(35158),\n", + " np.int64(35322),\n", + " np.int64(35323),\n", + " np.int64(35324),\n", + " np.int64(35325),\n", + " np.int64(35327),\n", + " np.int64(35328),\n", + " np.int64(35329),\n", + " np.int64(35330),\n", + " np.int64(35331),\n", + " np.int64(35332),\n", + " np.int64(35333),\n", + " np.int64(35334),\n", + " np.int64(35335),\n", + " np.int64(35336),\n", + " np.int64(35337),\n", + " np.int64(35338),\n", + " np.int64(35339),\n", + " np.int64(35340),\n", + " np.int64(35341),\n", + " np.int64(35342),\n", + " np.int64(35343),\n", + " np.int64(35344),\n", + " np.int64(35345),\n", + " np.int64(35346),\n", + " np.int64(35347),\n", + " np.int64(35348),\n", + " np.int64(35349),\n", + " np.int64(35350),\n", + " np.int64(35351),\n", + " np.int64(35352),\n", + " np.int64(35353),\n", + " np.int64(35354),\n", + " np.int64(35355),\n", + " np.int64(35356),\n", + " np.int64(35357),\n", + " np.int64(35358),\n", + " np.int64(35359),\n", + " np.int64(35360),\n", + " np.int64(35361),\n", + " np.int64(35362),\n", + " np.int64(35363),\n", + " np.int64(35364),\n", + " np.int64(35365),\n", + " np.int64(35366),\n", + " np.int64(35367),\n", + " np.int64(35368),\n", + " np.int64(35369),\n", + " np.int64(35370),\n", + " np.int64(35371),\n", + " np.int64(35397),\n", + " np.int64(35398),\n", + " np.int64(35399),\n", + " np.int64(35426),\n", + " np.int64(35573),\n", + " np.int64(35579),\n", + " np.int64(35580),\n", + " np.int64(35581),\n", + " np.int64(35582),\n", + " np.int64(35583),\n", + " np.int64(35585),\n", + " np.int64(35586),\n", + " np.int64(35587),\n", + " np.int64(35588),\n", + " np.int64(35589),\n", + " np.int64(35590),\n", + " np.int64(35591),\n", + " np.int64(35592),\n", + " np.int64(35593),\n", + " np.int64(35594),\n", + " np.int64(35595),\n", + " np.int64(35596),\n", + " np.int64(35597),\n", + " np.int64(35599),\n", + " np.int64(35600),\n", + " np.int64(35601),\n", + " np.int64(35602),\n", + " np.int64(35603),\n", + " np.int64(35604),\n", + " np.int64(35605),\n", + " np.int64(35606),\n", + " np.int64(35607),\n", + " np.int64(35608),\n", + " np.int64(35609),\n", + " np.int64(35610),\n", + " np.int64(35611),\n", + " np.int64(35612),\n", + " np.int64(35613),\n", + " np.int64(35614),\n", + " np.int64(35615),\n", + " np.int64(35616),\n", + " np.int64(35617),\n", + " np.int64(35618),\n", + " np.int64(35619),\n", + " np.int64(35620),\n", + " np.int64(35621),\n", + " np.int64(35622),\n", + " np.int64(35705)}" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "print(df_bot_baseline_wide.shape)\n", "\n", @@ -530,12 +1470,159 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 22, "metadata": { "cellView": "form", "id": "XceLWcgCPNw-" }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
BotBaseline_Score
Rank
1metac-o18861.959039
2metac-o1-preview8849.559824
3bot_median8152.574861
4acm_bot7605.922314
5manticAI7061.660958
\n", + "
" + ], + "text/plain": [ + " Bot Baseline_Score\n", + "Rank \n", + "1 metac-o1 8861.959039\n", + "2 metac-o1-preview 8849.559824\n", + "3 bot_median 8152.574861\n", + "4 acm_bot 7605.922314\n", + "5 manticAI 7061.660958" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
BotBaseline_Score
Rank
42Bot_Pepa-510.750607
43Grizeu_Bot-714.098920
44ajf-bot-776.386700
45minefrac1-905.116263
46RPM_bot-911.357676
\n", + "
" + ], + "text/plain": [ + " Bot Baseline_Score\n", + "Rank \n", + "42 Bot_Pepa -510.750607\n", + "43 Grizeu_Bot -714.098920\n", + "44 ajf-bot -776.386700\n", + "45 minefrac1 -905.116263\n", + "46 RPM_bot -911.357676" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "# @title Bot Baseline Leaderboard\n", "\n", @@ -560,9 +1647,17 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 23, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n" + ] + } + ], "source": [ "# Make sure df_bot_baseline_wide has ONE forecast per (forecaster, question_id) pair\n", "# Check for duplicates\n", @@ -571,12 +1666,339 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 24, "metadata": { "cellView": "form", "id": "iRDMoH7hTBEq" }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
botPeer Score
Rank
1metac-o13864.168122
2metac-o1-preview3162.155445
3bot_median2724.680171
4manticAI2142.538438
5metac-Gemini-Exp-12062072.216227
6acm_bot1876.466009
7twsummerbot1763.532046
8metac-perplexity1697.555196
9GreeneiBot21603.998618
10cookics_bot_TEST1140.390796
11metac-claude-3-5-sonnet-latest1134.209821
12SynapseSeer1066.533051
13CumulativeBot1030.716475
14pgodzinai926.081448
15jkraybill_bot627.932509
16metac-deepseek-r1614.572462
17question_weight378.020000
18metac-exa265.384263
19MWG215.551323
20annabot21.125670
21andrewsiah-4.170684
22cobyj-bot-15.593332
23X_bot-16.052813
24pianobot-20.745921
25CatrachoCaster-214.389722
26KevinTestBot-244.046973
27jonahsingerbot-318.088290
28krm-bot-387.131345
29ProfessorSP-406.072162
30mmBot-453.312468
31metac-grok-2-1212-492.938695
32bean_bot-494.373003
334Shadower-586.017986
34metac-claude-3-5-sonnet-20240620-647.579684
35swingswish-763.021897
36RPM_bot-905.938514
37metac-Llama-3.1-1029.014161
38InstitutPelFutur-1087.748963
39wunderplumb-1189.786803
40VeritasAI-1521.091541
41NextWorldLab-1565.096041
42Bot_Pepa-1589.575284
43laylaps-1665.296188
44minefrac1-1850.747385
45Grizeu_Bot-1898.666894
46metac-gpt-4o-2618.918368
47ajf-bot-3239.712801
\n", + "
" + ], + "text/plain": [ + " bot Peer Score\n", + "Rank \n", + "1 metac-o1 3864.168122\n", + "2 metac-o1-preview 3162.155445\n", + "3 bot_median 2724.680171\n", + "4 manticAI 2142.538438\n", + "5 metac-Gemini-Exp-1206 2072.216227\n", + "6 acm_bot 1876.466009\n", + "7 twsummerbot 1763.532046\n", + "8 metac-perplexity 1697.555196\n", + "9 GreeneiBot2 1603.998618\n", + "10 cookics_bot_TEST 1140.390796\n", + "11 metac-claude-3-5-sonnet-latest 1134.209821\n", + "12 SynapseSeer 1066.533051\n", + "13 CumulativeBot 1030.716475\n", + "14 pgodzinai 926.081448\n", + "15 jkraybill_bot 627.932509\n", + "16 metac-deepseek-r1 614.572462\n", + "17 question_weight 378.020000\n", + "18 metac-exa 265.384263\n", + "19 MWG 215.551323\n", + "20 annabot 21.125670\n", + "21 andrewsiah -4.170684\n", + "22 cobyj-bot -15.593332\n", + "23 X_bot -16.052813\n", + "24 pianobot -20.745921\n", + "25 CatrachoCaster -214.389722\n", + "26 KevinTestBot -244.046973\n", + "27 jonahsingerbot -318.088290\n", + "28 krm-bot -387.131345\n", + "29 ProfessorSP -406.072162\n", + "30 mmBot -453.312468\n", + "31 metac-grok-2-1212 -492.938695\n", + "32 bean_bot -494.373003\n", + "33 4Shadower -586.017986\n", + "34 metac-claude-3-5-sonnet-20240620 -647.579684\n", + "35 swingswish -763.021897\n", + "36 RPM_bot -905.938514\n", + "37 metac-Llama-3.1 -1029.014161\n", + "38 InstitutPelFutur -1087.748963\n", + "39 wunderplumb -1189.786803\n", + "40 VeritasAI -1521.091541\n", + "41 NextWorldLab -1565.096041\n", + "42 Bot_Pepa -1589.575284\n", + "43 laylaps -1665.296188\n", + "44 minefrac1 -1850.747385\n", + "45 Grizeu_Bot -1898.666894\n", + "46 metac-gpt-4o -2618.918368\n", + "47 ajf-bot -3239.712801" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# @title Bot Peer Leaderboard\n", "\n", @@ -614,7 +2036,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 25, "metadata": {}, "outputs": [], "source": [ @@ -633,7 +2055,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 26, "metadata": {}, "outputs": [], "source": [ @@ -642,9 +2064,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 27, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "PRO MEDIAN\n", + "Average baseline: 44.964801909223056\n", + "pgodzinai MEDIAN\n", + "Average baseline: 16.482817250003514\n" + ] + } + ], "source": [ "# Print WEIGHTED average for pro_median\n", "print(\"PRO MEDIAN\")\n", @@ -659,33 +2092,655 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "pgodzinai_baseline.columns" - ] - }, - { - "cell_type": "code", - "execution_count": null, + "execution_count": 28, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
question_idforecasterquestion_titlecreated_atauthor_idresolutionscheduled_close_timeactual_close_timequestion_weighttypeoptionsrange_minrange_maxpost_idforecastis_median
031268JgaltFor Q1 2025, how many banks will be listed on ...2025-01-17 19:06:22.013528+0010146512025-01-20 03:27:00+002025-01-20 03:27:00+001.0multiple_choice[\"0\",\"1\",\"2-3\",\"4-6\",\">6\"]NaNNaN31736[0.001,0.568,0.366,0.041,0.024]False
131268MaciekKFor Q1 2025, how many banks will be listed on ...2025-01-17 19:06:22.013528+0011758012025-01-20 03:27:00+002025-01-20 03:27:00+001.0multiple_choice[\"0\",\"1\",\"2-3\",\"4-6\",\">6\"]NaNNaN31736[0.001,0.62,0.35,0.019,0.01]True
231268OpenSystemFor Q1 2025, how many banks will be listed on ...2025-01-17 19:06:22.013528+0012016012025-01-20 03:27:00+002025-01-20 03:27:00+001.0multiple_choice[\"0\",\"1\",\"2-3\",\"4-6\",\">6\"]NaNNaN31736[0.005,0.7,0.25,0.04,0.005]False
331268SpottedBearFor Q1 2025, how many banks will be listed on ...2025-01-17 19:06:22.013528+0013152312025-01-20 03:27:00+002025-01-20 03:27:00+001.0multiple_choice[\"0\",\"1\",\"2-3\",\"4-6\",\">6\"]NaNNaN31736[0.001,0.59,0.35,0.044,0.015]False
431268ZaldathFor Q1 2025, how many banks will be listed on ...2025-01-17 19:06:22.013528+0013916112025-01-20 03:27:00+002025-01-20 03:27:00+001.0multiple_choice[\"0\",\"1\",\"2-3\",\"4-6\",\">6\"]NaNNaN31736[0.001,0.623,0.336,0.03,0.01]False
\n", + "
" + ], + "text/plain": [ + " question_id forecaster \\\n", + "0 31268 Jgalt \n", + "1 31268 MaciekK \n", + "2 31268 OpenSystem \n", + "3 31268 SpottedBear \n", + "4 31268 Zaldath \n", + "\n", + " question_title \\\n", + "0 For Q1 2025, how many banks will be listed on ... \n", + "1 For Q1 2025, how many banks will be listed on ... \n", + "2 For Q1 2025, how many banks will be listed on ... \n", + "3 For Q1 2025, how many banks will be listed on ... \n", + "4 For Q1 2025, how many banks will be listed on ... \n", + "\n", + " created_at author_id resolution \\\n", + "0 2025-01-17 19:06:22.013528+00 101465 1 \n", + "1 2025-01-17 19:06:22.013528+00 117580 1 \n", + "2 2025-01-17 19:06:22.013528+00 120160 1 \n", + "3 2025-01-17 19:06:22.013528+00 131523 1 \n", + "4 2025-01-17 19:06:22.013528+00 139161 1 \n", + "\n", + " scheduled_close_time actual_close_time question_weight \\\n", + "0 2025-01-20 03:27:00+00 2025-01-20 03:27:00+00 1.0 \n", + "1 2025-01-20 03:27:00+00 2025-01-20 03:27:00+00 1.0 \n", + "2 2025-01-20 03:27:00+00 2025-01-20 03:27:00+00 1.0 \n", + "3 2025-01-20 03:27:00+00 2025-01-20 03:27:00+00 1.0 \n", + "4 2025-01-20 03:27:00+00 2025-01-20 03:27:00+00 1.0 \n", + "\n", + " type options range_min range_max post_id \\\n", + "0 multiple_choice [\"0\",\"1\",\"2-3\",\"4-6\",\">6\"] NaN NaN 31736 \n", + "1 multiple_choice [\"0\",\"1\",\"2-3\",\"4-6\",\">6\"] NaN NaN 31736 \n", + "2 multiple_choice [\"0\",\"1\",\"2-3\",\"4-6\",\">6\"] NaN NaN 31736 \n", + "3 multiple_choice [\"0\",\"1\",\"2-3\",\"4-6\",\">6\"] NaN NaN 31736 \n", + "4 multiple_choice [\"0\",\"1\",\"2-3\",\"4-6\",\">6\"] NaN NaN 31736 \n", + "\n", + " forecast is_median \n", + "0 [0.001,0.568,0.366,0.041,0.024] False \n", + "1 [0.001,0.62,0.35,0.019,0.01] True \n", + "2 [0.005,0.7,0.25,0.04,0.005] False \n", + "3 [0.001,0.59,0.35,0.044,0.015] False \n", + "4 [0.001,0.623,0.336,0.03,0.01] False " + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Filter pgodzinai_baseline to only those questions that are also pro questions\n", - "pgodzinai_baseline = pd.merge(pgodzinai_baseline, df_pro_bot_resolved_questions[['pro_question_id', 'bot_question_id']], left_on='question_id', right_on='bot_question_id', how='left')\n", - "pgodzinai_baseline = pgodzinai_baseline[~pgodzinai_baseline['pro_question_id'].isna()]\n", - "print(f'pgodzinai average baseline on pro questions: {(pgodzinai_baseline['score'] * pgodzinai_baseline['question_weight']).sum() / pgodzinai_baseline['question_weight'].sum()}')" + "df_pro_forecasts.head()" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 29, "metadata": { "cellView": "form", "id": "Yfq0_lDKAMl7" }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
pro_question_idbot_question_idresolutionquestion_weighttypeoptionspro_median4ShadowerBot_PepaCatrachoCaster...metac-o1metac-o1-previewmetac-perplexityminefrac1mmBotpgodzinaipianobotswingswishtwsummerbotwunderplumb
0312683126201.0multiple_choice[\"0\",\"1\",\"2-3\",\"4-6\",\">6\"][0.001,0.62,0.35,0.019,0.01]NaNNaNNaN...[0.45,0.3,0.15,0.05,0.05][0.02,0.7,0.2,0.07,0.01][0.2,0.25,0.35,0.15,0.05]NaN[0.009900990099009901,0.39603960396039606,0.44...[0.014925742574257425,0.5137871287128712,0.334...NaNNaNNaNNaN
1312693126386.821.0numericNone[0.0013749738,0.0014499743,0.001526641,0.00160...NaNNaNNaN...[0.05,0.0506666667,0.0513333333,0.052,0.052666...[0.05,0.0506666667,0.0513333333,0.052,0.052666...[0.05,0.0508333333,0.0516666667,0.0525,0.05333...NaN[0.0215944348,0.0218024136,0.0220262706,0.0222...[0.001,0.001060875,0.0011396,0.0012863125,0.00...NaNNaNNaNNaN
23127031264no1.0binaryNone0.013NaNNaNNaN...0.10.150.1NaN0.20.07NaNNaNNaNNaN
331280312745-91.0multiple_choice[\"0-4\",\"5-9\",\">9\"][0.16,0.44,0.4]NaNNaN[0.16,0.47,0.37]...[0.25,0.6,0.15][0.2,0.6,0.2][0.15,0.45,0.4]NaN[0.25,0.5,0.25][0.27499999999999997,0.5125,0.21249999999999997]NaNNaN[0.116,0.42,0.464]NaN
43128131275119.21.0numericNone[0.0,0.0005044914,0.0010323506,0.0015847475,0....NaNNaNNaN...[0.0,0.0025,0.005,0.0075,0.01,0.0125,0.015,0.0...[0.0,0.0025,0.005,0.0075,0.01,0.0125,0.015,0.0...[0.0,0.0025,0.005,0.0075,0.01,0.0125,0.015,0.0...NaN[0.0,0.0006552097,0.0013605064,0.0021151815,0....[0.0,0.0001141583,0.0002446967,0.0003862688,0....NaNNaN[0.0,0.001311947,0.0026238939,0.0039358409,0.0...NaN
\n", + "

5 rows × 53 columns

\n", + "
" + ], + "text/plain": [ + " pro_question_id bot_question_id resolution question_weight \\\n", + "0 31268 31262 0 1.0 \n", + "1 31269 31263 86.82 1.0 \n", + "2 31270 31264 no 1.0 \n", + "3 31280 31274 5-9 1.0 \n", + "4 31281 31275 119.2 1.0 \n", + "\n", + " type options \\\n", + "0 multiple_choice [\"0\",\"1\",\"2-3\",\"4-6\",\">6\"] \n", + "1 numeric None \n", + "2 binary None \n", + "3 multiple_choice [\"0-4\",\"5-9\",\">9\"] \n", + "4 numeric None \n", + "\n", + " pro_median 4Shadower Bot_Pepa \\\n", + "0 [0.001,0.62,0.35,0.019,0.01] NaN NaN \n", + "1 [0.0013749738,0.0014499743,0.001526641,0.00160... NaN NaN \n", + "2 0.013 NaN NaN \n", + "3 [0.16,0.44,0.4] NaN NaN \n", + "4 [0.0,0.0005044914,0.0010323506,0.0015847475,0.... NaN NaN \n", + "\n", + " CatrachoCaster ... metac-o1 \\\n", + "0 NaN ... [0.45,0.3,0.15,0.05,0.05] \n", + "1 NaN ... [0.05,0.0506666667,0.0513333333,0.052,0.052666... \n", + "2 NaN ... 0.1 \n", + "3 [0.16,0.47,0.37] ... [0.25,0.6,0.15] \n", + "4 NaN ... [0.0,0.0025,0.005,0.0075,0.01,0.0125,0.015,0.0... \n", + "\n", + " metac-o1-preview \\\n", + "0 [0.02,0.7,0.2,0.07,0.01] \n", + "1 [0.05,0.0506666667,0.0513333333,0.052,0.052666... \n", + "2 0.15 \n", + "3 [0.2,0.6,0.2] \n", + "4 [0.0,0.0025,0.005,0.0075,0.01,0.0125,0.015,0.0... \n", + "\n", + " metac-perplexity minefrac1 \\\n", + "0 [0.2,0.25,0.35,0.15,0.05] NaN \n", + "1 [0.05,0.0508333333,0.0516666667,0.0525,0.05333... NaN \n", + "2 0.1 NaN \n", + "3 [0.15,0.45,0.4] NaN \n", + "4 [0.0,0.0025,0.005,0.0075,0.01,0.0125,0.015,0.0... NaN \n", + "\n", + " mmBot \\\n", + "0 [0.009900990099009901,0.39603960396039606,0.44... \n", + "1 [0.0215944348,0.0218024136,0.0220262706,0.0222... \n", + "2 0.2 \n", + "3 [0.25,0.5,0.25] \n", + "4 [0.0,0.0006552097,0.0013605064,0.0021151815,0.... \n", + "\n", + " pgodzinai pianobot swingswish \\\n", + "0 [0.014925742574257425,0.5137871287128712,0.334... NaN NaN \n", + "1 [0.001,0.001060875,0.0011396,0.0012863125,0.00... NaN NaN \n", + "2 0.07 NaN NaN \n", + "3 [0.27499999999999997,0.5125,0.21249999999999997] NaN NaN \n", + "4 [0.0,0.0001141583,0.0002446967,0.0003862688,0.... NaN NaN \n", + "\n", + " twsummerbot wunderplumb \n", + "0 NaN NaN \n", + "1 NaN NaN \n", + "2 NaN NaN \n", + "3 [0.116,0.42,0.464] NaN \n", + "4 [0.0,0.001311947,0.0026238939,0.0039358409,0.0... NaN \n", + "\n", + "[5 rows x 53 columns]" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
pro_question_idbot_question_idresolutionquestion_weighttypeoptionspro_median4ShadowerBot_PepaCatrachoCaster...metac-o1metac-o1-previewmetac-perplexityminefrac1mmBotpgodzinaipianobotswingswishtwsummerbotwunderplumb
943538035345yes1.00binaryNone0.950.9NaNNaN...0.90.9NaNNaN0.950.95NaN0.90.7620.9
953538135354no1.00binaryNone0.050.95NaNNaN...0.20.9NaNNaN0.15NaNNaN0.10.1260.95
963538535358yes1.00binaryNone0.970.85NaNNaN...0.850.9NaNNaN0.9NaNNaN0.850.8280.85
973538635364no0.85binaryNone0.6660.8NaNNaN...0.750.850.3NaN0.850.85NaN0.70.1320.3
983538735367no0.85binaryNone0.030.3NaNNaN...0.070.10.05NaN0.150.05NaN0.20.270.2
\n", + "

5 rows × 53 columns

\n", + "
" + ], + "text/plain": [ + " pro_question_id bot_question_id resolution question_weight type \\\n", + "94 35380 35345 yes 1.00 binary \n", + "95 35381 35354 no 1.00 binary \n", + "96 35385 35358 yes 1.00 binary \n", + "97 35386 35364 no 0.85 binary \n", + "98 35387 35367 no 0.85 binary \n", + "\n", + " options pro_median 4Shadower Bot_Pepa CatrachoCaster ... metac-o1 \\\n", + "94 None 0.95 0.9 NaN NaN ... 0.9 \n", + "95 None 0.05 0.95 NaN NaN ... 0.2 \n", + "96 None 0.97 0.85 NaN NaN ... 0.85 \n", + "97 None 0.666 0.8 NaN NaN ... 0.75 \n", + "98 None 0.03 0.3 NaN NaN ... 0.07 \n", + "\n", + " metac-o1-preview metac-perplexity minefrac1 mmBot pgodzinai pianobot \\\n", + "94 0.9 NaN NaN 0.95 0.95 NaN \n", + "95 0.9 NaN NaN 0.15 NaN NaN \n", + "96 0.9 NaN NaN 0.9 NaN NaN \n", + "97 0.85 0.3 NaN 0.85 0.85 NaN \n", + "98 0.1 0.05 NaN 0.15 0.05 NaN \n", + "\n", + " swingswish twsummerbot wunderplumb \n", + "94 0.9 0.762 0.9 \n", + "95 0.1 0.126 0.95 \n", + "96 0.85 0.828 0.85 \n", + "97 0.7 0.132 0.3 \n", + "98 0.2 0.27 0.2 \n", + "\n", + "[5 rows x 53 columns]" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "# @title Create df_pro_bot_forecasts, df_bot_vs_pro_peer, df_bot_vs_pro_leaderboard, df_bot_vs_pro_weighted_leaderboard\n", "\n", @@ -717,7 +2772,7 @@ "df_bot_forecasts = df_bot_forecasts.reset_index()\n", "\n", "# One row per question, with pro_question_id and bot_question_id and resolution\n", - "df_pro_bot_resolved_questions_first = df_pro_bot_resolved_questions.groupby(['pro_question_id', 'bot_question_id']).first().reset_index()[['pro_question_id', 'bot_question_id', 'resolution', 'question_weight']]\n", + "df_pro_bot_resolved_questions_first = df_pro_bot_resolved_questions.groupby(['pro_question_id', 'bot_question_id']).first().reset_index()[['pro_question_id', 'bot_question_id', 'resolution', 'question_weight', 'type', 'options']]\n", "\n", "df2 = pd.merge(\n", " df_pro_bot_resolved_questions_first,\n", @@ -738,53 +2793,1374 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 30, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['pro_question_id', 'bot_question_id', 'resolution', 'question_weight',\n", + " 'type', 'options', 'pro_median', '4Shadower', 'Bot_Pepa',\n", + " 'CatrachoCaster', 'CumulativeBot', 'GreeneiBot2', 'Grizeu_Bot',\n", + " 'InstitutPelFutur', 'KevinTestBot', 'MWG', 'NextWorldLab',\n", + " 'ProfessorSP', 'RPM_bot', 'SynapseSeer', 'VeritasAI', 'X_bot',\n", + " 'acm_bot', 'ajf-bot', 'andrewsiah', 'annabot', 'bean_bot', 'bot_median',\n", + " 'cobyj-bot', 'cookics_bot_TEST', 'jkraybill_bot', 'jonahsingerbot',\n", + " 'krm-bot', 'laylaps', 'manticAI', 'metac-Gemini-Exp-1206',\n", + " 'metac-Llama-3.1', 'metac-claude-3-5-sonnet-20240620',\n", + " 'metac-claude-3-5-sonnet-latest', 'metac-deepseek-r1', 'metac-exa',\n", + " 'metac-gpt-4o', 'metac-grok-2-1212', 'metac-o1', 'metac-o1-preview',\n", + " 'metac-perplexity', 'minefrac1', 'mmBot', 'pgodzinai', 'pianobot',\n", + " 'swingswish', 'twsummerbot', 'wunderplumb'],\n", + " dtype='object')" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Create a new DataFrame to store peer scores\n", - "df_bot_vs_pro_peer = df_pro_bot_forecasts.copy()\n", - "df_bot_vs_pro_peer = df_bot_vs_pro_peer[['pro_median', 'resolution', 'question_weight', 'bot_question_id']]\n", - "\n", - "# Calculate peer score for each bot\n", - "for bot in all_bots:\n", - " # Calculate Head-to-head score based on the condition\n", - " peer_score = np.where(\n", - " df_pro_bot_forecasts['resolution'] == 'yes',\n", - " np.log(df_pro_bot_forecasts[bot] / df_pro_bot_forecasts['pro_median']),\n", - " np.log((1 - df_pro_bot_forecasts[bot]) / (1 - df_pro_bot_forecasts['pro_median']))\n", - " )\n", - "\n", - " # Add the calculated peer score to the new DataFrame\n", - " df_bot_vs_pro_peer[bot] = 100 * peer_score\n", - "\n", - "# Calculate Head-to-head score for bot_team\n", - "peer_score = np.where(\n", - " df_pro_bot_forecasts['resolution'] == 'yes',\n", - " np.log(df_pro_bot_forecasts['bot_median'] / df_pro_bot_forecasts['pro_median']),\n", - " np.log((1 - df_pro_bot_forecasts['bot_median']) / (1 - df_pro_bot_forecasts['pro_median']))\n", - ")\n", + "df_pro_bot_forecasts.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 [0.009900990099009901,0.42574257425742573,0.39999999999999997,0.12871287128712872,0.03564356435643565]\n", + "Name: GreeneiBot2, dtype: object" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Make sure output not truncated\n", + "pd.set_option('display.max_colwidth', None)\n", "\n", - "# Add the calculated peer score to the new DataFrame\n", - "df_bot_vs_pro_peer[\"bot_team_median\"] = 100 * peer_score\n", + "# Show me df_pro_bot_forecasts rows where bot_question_id is 31262 and don't truncate the result?\n", + "df_pro_bot_forecasts[df_pro_bot_forecasts['bot_question_id'] == 31262]['GreeneiBot2']" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [], + "source": [ + "# Cast resolution as string but ONLY for multiple_choice questions\n", + "df_pro_bot_forecasts['resolution'] = df_pro_bot_forecasts.apply(\n", + " lambda row: str(row['resolution']) if row['type'] == 'multiple_choice' else row['resolution'], axis=1\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [], + "source": [ + "df_pro_bot_forecasts['options'] = df_pro_bot_forecasts['options'].apply(parse_options_array)" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [], + "source": [ + "# Simple function to parse CDF strings for numeric questions\n", + "def parse_numeric_forecasts(df):\n", + " \"\"\"\n", + " Parse CDF strings for numeric questions in-place.\n", + " \n", + " Args:\n", + " df: DataFrame with forecast data\n", + " \"\"\"\n", + " # Get numeric questions\n", + " numeric_mask = df['type'] == 'numeric'\n", + " \n", + " # List of columns to process\n", + " forecast_cols = [col for col in df.columns if col in all_bots or col in ['pro_median', 'bot_median']]\n", + " \n", + " # Process each column\n", + " for col in forecast_cols:\n", + " # Process only for numeric questions and only where the column exists\n", + " if col in df.columns:\n", + " for idx in df[numeric_mask].index:\n", + " value = df.at[idx, col]\n", + " \n", + " # Skip NaN values\n", + " if pd.isna(value):\n", + " continue\n", + " \n", + " # Process string values\n", + " if isinstance(value, str):\n", + " try:\n", + " # Parse the CDF string to an array\n", + " parsed_array = np.array([float(x) for x in value.strip('[]').split(',')])\n", + " df.at[idx, col] = parsed_array\n", + " except Exception as e:\n", + " print(f\"Warning: Could not parse {col} at index {idx}: {e}\")\n", + " \n", + " return df\n", "\n", - "display_head_and_tail(df_bot_vs_pro_peer)" + "# Now parse the numeric forecasts\n", + "df_pro_bot_forecasts = parse_numeric_forecasts(df_pro_bot_forecasts)" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 35, "metadata": {}, "outputs": [], + "source": [ + "df_bot_vs_pro_peer = calculate_all_peer_scores(df_pro_bot_forecasts, all_bots)" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
pro_question_idbot_question_idresolutionquestion_weighttypeoptionspro_median4ShadowerBot_PepaCatrachoCaster...metac-o1-previewmetac-perplexityminefrac1mmBotpgodzinaipianobotswingswishtwsummerbotwunderplumbbot_team_median
0312683126201.0multiple_choice[0, 1, 2-3, 4-6, >6][0.001,0.62,0.35,0.019,0.01]NaNNaNNaN...299.573227529.831737NaN229.263476270.308741NaNNaNNaNNaN501.063529
331280312745-91.0multiple_choice[0-4, 5-9, >9][0.16,0.44,0.4]NaNNaN6.595797...31.0154932.247286NaN12.78333715.252598NaNNaN-4.652002NaN31.015493
63129231286Jeff Bezos1.0multiple_choice[Larry Ellison, Elon Musk, Mark Zuckerberg, Bernard Arnault & family, Jeff Bezos, Someone else][0.2,0.025,0.225,0.08,0.445,0.025]NaNNaN-70.444674...29.88553721.184400NaN-18.45712811.152127NaNNaNNaNNaN11.152127
9313213137001.0multiple_choice[0, 1, 2, Greater than 2][0.336,0.364,0.2,0.1]NaNNaN-87.546874...-51.879379-121.194097NaN-80.647587-49.410118NaNNaN-62.415431NaN-69.314718
133136831366≥0% and <5%1.0multiple_choice[Less than -5%, ≥-5% and <0%, ≥0% and <5%, Greater than 5%][0.05,0.45,0.45,0.05]NaNNaN-16.907633...44.18327533.6472242.19789120.06707025.378052NaNNaNNaNNaN-32.542240
\n", + "

5 rows × 54 columns

\n", + "
" + ], + "text/plain": [ + " pro_question_id bot_question_id resolution question_weight \\\n", + "0 31268 31262 0 1.0 \n", + "3 31280 31274 5-9 1.0 \n", + "6 31292 31286 Jeff Bezos 1.0 \n", + "9 31321 31370 0 1.0 \n", + "13 31368 31366 ≥0% and <5% 1.0 \n", + "\n", + " type \\\n", + "0 multiple_choice \n", + "3 multiple_choice \n", + "6 multiple_choice \n", + "9 multiple_choice \n", + "13 multiple_choice \n", + "\n", + " options \\\n", + "0 [0, 1, 2-3, 4-6, >6] \n", + "3 [0-4, 5-9, >9] \n", + "6 [Larry Ellison, Elon Musk, Mark Zuckerberg, Bernard Arnault & family, Jeff Bezos, Someone else] \n", + "9 [0, 1, 2, Greater than 2] \n", + "13 [Less than -5%, ≥-5% and <0%, ≥0% and <5%, Greater than 5%] \n", + "\n", + " pro_median 4Shadower Bot_Pepa CatrachoCaster \\\n", + "0 [0.001,0.62,0.35,0.019,0.01] NaN NaN NaN \n", + "3 [0.16,0.44,0.4] NaN NaN 6.595797 \n", + "6 [0.2,0.025,0.225,0.08,0.445,0.025] NaN NaN -70.444674 \n", + "9 [0.336,0.364,0.2,0.1] NaN NaN -87.546874 \n", + "13 [0.05,0.45,0.45,0.05] NaN NaN -16.907633 \n", + "\n", + " ... metac-o1-preview metac-perplexity minefrac1 mmBot \\\n", + "0 ... 299.573227 529.831737 NaN 229.263476 \n", + "3 ... 31.015493 2.247286 NaN 12.783337 \n", + "6 ... 29.885537 21.184400 NaN -18.457128 \n", + "9 ... -51.879379 -121.194097 NaN -80.647587 \n", + "13 ... 44.183275 33.647224 2.197891 20.067070 \n", + "\n", + " pgodzinai pianobot swingswish twsummerbot wunderplumb \\\n", + "0 270.308741 NaN NaN NaN NaN \n", + "3 15.252598 NaN NaN -4.652002 NaN \n", + "6 11.152127 NaN NaN NaN NaN \n", + "9 -49.410118 NaN NaN -62.415431 NaN \n", + "13 25.378052 NaN NaN NaN NaN \n", + "\n", + " bot_team_median \n", + "0 501.063529 \n", + "3 31.015493 \n", + "6 11.152127 \n", + "9 -69.314718 \n", + "13 -32.542240 \n", + "\n", + "[5 rows x 54 columns]" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
pro_question_idbot_question_idresolutionquestion_weighttypeoptionspro_median4ShadowerBot_PepaCatrachoCaster...metac-o1-previewmetac-perplexityminefrac1mmBotpgodzinaipianobotswingswishtwsummerbotwunderplumbbot_team_median
813516935119Not in top 501.0multiple_choice[0-10, 11-20, 21-30, 31-40, 41-50, Not in top 50][0.02,0.01,0.015,0.015,0.05,0.89]NaN-280.223742NaN...-448.863637-178.058617-300.703183-287.919846-339.002408NaNNaN-234.857021-240.919483-287.919846
8235170351213 or more1.0multiple_choice[0, 1, 2, 3 or more][0.01,0.18,0.54,0.27]NaN-77.944110NaN...-99.325177-18.677591-52.32481410.53605225.951120NaNNaN27.650877-64.46090027.650877
833517135123≥7.5 and ≤8.51.0multiple_choice[<7.5, ≥7.5 and ≤8.5, >8.5 and <9.0, ≥9.0 and ≤9.5, >9.5][0.02,0.3,0.3,0.3,0.08]NaN-70.227966NaN...-132.175584-26.570317NaN-18.232156NaNNaNNaN-17.832954-56.798404-62.860866
913537735334Jimmy Patronis1.0multiple_choice[Jimmy Patronis, Gay Valimont, Someone else][0.997,0.001,0.002]-17.134888-15.951442NaN...-3.781749-4.828879NaN-12.482886-8.037710NaN-11.352931NaN-14.781838-12.104814
92353783533631-491.0multiple_choice[0-24, 25-30, 31-49, 50-70, >70][0.001,0.359,0.55,0.08,0.01]-69.314718-87.183897NaN...-170.474809-290.872090NaN-170.474809-31.845373NaN-48.097266NaN-74.923665-20.067070
\n", + "

5 rows × 54 columns

\n", + "
" + ], + "text/plain": [ + " pro_question_id bot_question_id resolution question_weight \\\n", + "81 35169 35119 Not in top 50 1.0 \n", + "82 35170 35121 3 or more 1.0 \n", + "83 35171 35123 ≥7.5 and ≤8.5 1.0 \n", + "91 35377 35334 Jimmy Patronis 1.0 \n", + "92 35378 35336 31-49 1.0 \n", + "\n", + " type \\\n", + "81 multiple_choice \n", + "82 multiple_choice \n", + "83 multiple_choice \n", + "91 multiple_choice \n", + "92 multiple_choice \n", + "\n", + " options \\\n", + "81 [0-10, 11-20, 21-30, 31-40, 41-50, Not in top 50] \n", + "82 [0, 1, 2, 3 or more] \n", + "83 [<7.5, ≥7.5 and ≤8.5, >8.5 and <9.0, ≥9.0 and ≤9.5, >9.5] \n", + "91 [Jimmy Patronis, Gay Valimont, Someone else] \n", + "92 [0-24, 25-30, 31-49, 50-70, >70] \n", + "\n", + " pro_median 4Shadower Bot_Pepa CatrachoCaster \\\n", + "81 [0.02,0.01,0.015,0.015,0.05,0.89] NaN -280.223742 NaN \n", + "82 [0.01,0.18,0.54,0.27] NaN -77.944110 NaN \n", + "83 [0.02,0.3,0.3,0.3,0.08] NaN -70.227966 NaN \n", + "91 [0.997,0.001,0.002] -17.134888 -15.951442 NaN \n", + "92 [0.001,0.359,0.55,0.08,0.01] -69.314718 -87.183897 NaN \n", + "\n", + " ... metac-o1-preview metac-perplexity minefrac1 mmBot \\\n", + "81 ... -448.863637 -178.058617 -300.703183 -287.919846 \n", + "82 ... -99.325177 -18.677591 -52.324814 10.536052 \n", + "83 ... -132.175584 -26.570317 NaN -18.232156 \n", + "91 ... -3.781749 -4.828879 NaN -12.482886 \n", + "92 ... -170.474809 -290.872090 NaN -170.474809 \n", + "\n", + " pgodzinai pianobot swingswish twsummerbot wunderplumb \\\n", + "81 -339.002408 NaN NaN -234.857021 -240.919483 \n", + "82 25.951120 NaN NaN 27.650877 -64.460900 \n", + "83 NaN NaN NaN -17.832954 -56.798404 \n", + "91 -8.037710 NaN -11.352931 NaN -14.781838 \n", + "92 -31.845373 NaN -48.097266 NaN -74.923665 \n", + "\n", + " bot_team_median \n", + "81 -287.919846 \n", + "82 27.650877 \n", + "83 -62.860866 \n", + "91 -12.104814 \n", + "92 -20.067070 \n", + "\n", + "[5 rows x 54 columns]" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
pro_question_idbot_question_idresolutionquestion_weighttypeoptionspro_median4ShadowerBot_PepaCatrachoCaster...metac-o1-previewmetac-perplexityminefrac1mmBotpgodzinaipianobotswingswishtwsummerbotwunderplumbbot_team_median
23127031264no1.0binaryNone0.013NaNNaNNaN...-14.943369-9.227528NaN-21.005831-5.948545NaNNaNNaNNaN-14.943369
53128231276yes1.0binaryNone0.45NaNNaN67.445505...-25.13144344.183275NaN51.08256232.047190NaNNaNNaNNaN32.047190
83129431288yes1.0binaryNone0.95NaNNaN-19.645607...0.0000000.000000NaN-11.122564-14.715764NaNNaN-39.812370NaN-17.185026
123133831334yes1.0binaryNone0.9NaNNaN-0.309119...-18.2321560.000000NaN5.406722-5.715841NaNNaN-49.977579NaN-5.715841
163387633751no1.0binaryNone0.058NaNNaNNaN...-4.5610510.845671NaN-6.808337NaNNaNNaN-7.606972NaN-7.606972
\n", + "

5 rows × 54 columns

\n", + "
" + ], + "text/plain": [ + " pro_question_id bot_question_id resolution question_weight type \\\n", + "2 31270 31264 no 1.0 binary \n", + "5 31282 31276 yes 1.0 binary \n", + "8 31294 31288 yes 1.0 binary \n", + "12 31338 31334 yes 1.0 binary \n", + "16 33876 33751 no 1.0 binary \n", + "\n", + " options pro_median 4Shadower Bot_Pepa CatrachoCaster ... \\\n", + "2 None 0.013 NaN NaN NaN ... \n", + "5 None 0.45 NaN NaN 67.445505 ... \n", + "8 None 0.95 NaN NaN -19.645607 ... \n", + "12 None 0.9 NaN NaN -0.309119 ... \n", + "16 None 0.058 NaN NaN NaN ... \n", + "\n", + " metac-o1-preview metac-perplexity minefrac1 mmBot pgodzinai \\\n", + "2 -14.943369 -9.227528 NaN -21.005831 -5.948545 \n", + "5 -25.131443 44.183275 NaN 51.082562 32.047190 \n", + "8 0.000000 0.000000 NaN -11.122564 -14.715764 \n", + "12 -18.232156 0.000000 NaN 5.406722 -5.715841 \n", + "16 -4.561051 0.845671 NaN -6.808337 NaN \n", + "\n", + " pianobot swingswish twsummerbot wunderplumb bot_team_median \n", + "2 NaN NaN NaN NaN -14.943369 \n", + "5 NaN NaN NaN NaN 32.047190 \n", + "8 NaN NaN -39.812370 NaN -17.185026 \n", + "12 NaN NaN -49.977579 NaN -5.715841 \n", + "16 NaN NaN -7.606972 NaN -7.606972 \n", + "\n", + "[5 rows x 54 columns]" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
pro_question_idbot_question_idresolutionquestion_weighttypeoptionspro_median4ShadowerBot_PepaCatrachoCaster...metac-o1-previewmetac-perplexityminefrac1mmBotpgodzinaipianobotswingswishtwsummerbotwunderplumbbot_team_median
943538035345yes1.00binaryNone0.95-5.406722NaNNaN...-5.406722NaNNaN0.0000000.000000NaN-5.406722-22.051543-5.406722-5.406722
953538135354no1.00binaryNone0.05-294.443898NaNNaN...-225.129180NaNNaN-11.122564NaNNaN-5.406722-8.338161-294.443898-11.122564
963538535358yes1.00binaryNone0.97-13.205972NaNNaN...-7.490131NaNNaN-7.490131NaNNaN-13.205972-15.828292-13.205972-13.205972
973538635364no0.85binaryNone0.666-51.282363NaNNaN...-80.05057073.993934NaN-80.050570-80.050570NaN-10.73585295.50507273.993934-10.735852
983538735367no0.85binaryNone0.03-32.621574NaNNaN...-7.490131-2.083409NaN-13.205972-2.083409NaN-19.268434-28.425154-19.268434-13.205972
\n", + "

5 rows × 54 columns

\n", + "
" + ], + "text/plain": [ + " pro_question_id bot_question_id resolution question_weight type \\\n", + "94 35380 35345 yes 1.00 binary \n", + "95 35381 35354 no 1.00 binary \n", + "96 35385 35358 yes 1.00 binary \n", + "97 35386 35364 no 0.85 binary \n", + "98 35387 35367 no 0.85 binary \n", + "\n", + " options pro_median 4Shadower Bot_Pepa CatrachoCaster ... \\\n", + "94 None 0.95 -5.406722 NaN NaN ... \n", + "95 None 0.05 -294.443898 NaN NaN ... \n", + "96 None 0.97 -13.205972 NaN NaN ... \n", + "97 None 0.666 -51.282363 NaN NaN ... \n", + "98 None 0.03 -32.621574 NaN NaN ... \n", + "\n", + " metac-o1-preview metac-perplexity minefrac1 mmBot pgodzinai \\\n", + "94 -5.406722 NaN NaN 0.000000 0.000000 \n", + "95 -225.129180 NaN NaN -11.122564 NaN \n", + "96 -7.490131 NaN NaN -7.490131 NaN \n", + "97 -80.050570 73.993934 NaN -80.050570 -80.050570 \n", + "98 -7.490131 -2.083409 NaN -13.205972 -2.083409 \n", + "\n", + " pianobot swingswish twsummerbot wunderplumb bot_team_median \n", + "94 NaN -5.406722 -22.051543 -5.406722 -5.406722 \n", + "95 NaN -5.406722 -8.338161 -294.443898 -11.122564 \n", + "96 NaN -13.205972 -15.828292 -13.205972 -13.205972 \n", + "97 NaN -10.735852 95.505072 73.993934 -10.735852 \n", + "98 NaN -19.268434 -28.425154 -19.268434 -13.205972 \n", + "\n", + "[5 rows x 54 columns]" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Show me a few rows from each type of question in df_bot_vs_pro_peer\n", + "display_head_and_tail(df_bot_vs_pro_peer[df_bot_vs_pro_peer['type'] == 'multiple_choice'])\n", + "display_head_and_tail(df_bot_vs_pro_peer[df_bot_vs_pro_peer['type'] == 'binary'])" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
botPeer Score
Rank
1metac-o13864.168122
2metac-o1-preview3162.155445
3bot_median2724.680171
4manticAI2142.538438
5metac-Gemini-Exp-12062072.216227
6acm_bot1876.466009
7twsummerbot1763.532046
8metac-perplexity1697.555196
9GreeneiBot21603.998618
10cookics_bot_TEST1140.390796
11metac-claude-3-5-sonnet-latest1134.209821
12SynapseSeer1066.533051
13CumulativeBot1030.716475
14pgodzinai926.081448
15jkraybill_bot627.932509
16metac-deepseek-r1614.572462
17question_weight378.020000
18metac-exa265.384263
19MWG215.551323
20annabot21.125670
21andrewsiah-4.170684
22cobyj-bot-15.593332
23X_bot-16.052813
24pianobot-20.745921
25CatrachoCaster-214.389722
26KevinTestBot-244.046973
27jonahsingerbot-318.088290
28krm-bot-387.131345
29ProfessorSP-406.072162
30mmBot-453.312468
31metac-grok-2-1212-492.938695
32bean_bot-494.373003
334Shadower-586.017986
34metac-claude-3-5-sonnet-20240620-647.579684
35swingswish-763.021897
36RPM_bot-905.938514
37metac-Llama-3.1-1029.014161
38InstitutPelFutur-1087.748963
39wunderplumb-1189.786803
40VeritasAI-1521.091541
41NextWorldLab-1565.096041
42Bot_Pepa-1589.575284
43laylaps-1665.296188
44minefrac1-1850.747385
45Grizeu_Bot-1898.666894
46metac-gpt-4o-2618.918368
47ajf-bot-3239.712801
\n", + "
" + ], + "text/plain": [ + " bot Peer Score\n", + "Rank \n", + "1 metac-o1 3864.168122\n", + "2 metac-o1-preview 3162.155445\n", + "3 bot_median 2724.680171\n", + "4 manticAI 2142.538438\n", + "5 metac-Gemini-Exp-1206 2072.216227\n", + "6 acm_bot 1876.466009\n", + "7 twsummerbot 1763.532046\n", + "8 metac-perplexity 1697.555196\n", + "9 GreeneiBot2 1603.998618\n", + "10 cookics_bot_TEST 1140.390796\n", + "11 metac-claude-3-5-sonnet-latest 1134.209821\n", + "12 SynapseSeer 1066.533051\n", + "13 CumulativeBot 1030.716475\n", + "14 pgodzinai 926.081448\n", + "15 jkraybill_bot 627.932509\n", + "16 metac-deepseek-r1 614.572462\n", + "17 question_weight 378.020000\n", + "18 metac-exa 265.384263\n", + "19 MWG 215.551323\n", + "20 annabot 21.125670\n", + "21 andrewsiah -4.170684\n", + "22 cobyj-bot -15.593332\n", + "23 X_bot -16.052813\n", + "24 pianobot -20.745921\n", + "25 CatrachoCaster -214.389722\n", + "26 KevinTestBot -244.046973\n", + "27 jonahsingerbot -318.088290\n", + "28 krm-bot -387.131345\n", + "29 ProfessorSP -406.072162\n", + "30 mmBot -453.312468\n", + "31 metac-grok-2-1212 -492.938695\n", + "32 bean_bot -494.373003\n", + "33 4Shadower -586.017986\n", + "34 metac-claude-3-5-sonnet-20240620 -647.579684\n", + "35 swingswish -763.021897\n", + "36 RPM_bot -905.938514\n", + "37 metac-Llama-3.1 -1029.014161\n", + "38 InstitutPelFutur -1087.748963\n", + "39 wunderplumb -1189.786803\n", + "40 VeritasAI -1521.091541\n", + "41 NextWorldLab -1565.096041\n", + "42 Bot_Pepa -1589.575284\n", + "43 laylaps -1665.296188\n", + "44 minefrac1 -1850.747385\n", + "45 Grizeu_Bot -1898.666894\n", + "46 metac-gpt-4o -2618.918368\n", + "47 ajf-bot -3239.712801" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "leaderboard" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 38, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "mean pro median forecast on questions that resolved yes: 74.0%\n", + "mean pro median forecast on questions that resolved no: 22.0%\n", + "mean metac-o1 forecast on questions that resolved yes: 73.0%\n", + "mean metac-o1 forecast on questions that resolved no: 26.0%\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA1IAAAIQCAYAAACLwV/UAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAACE80lEQVR4nO3dd3xUVfrH8e9MegIZSggQibRQEkQIRRcRsSCIirJgQRGCfV3AAjZUQEBlsaCrLqC7K4KrP9felRW7iCyGyIqEEkSKlBACM5CYQDL398chQ0ImMJNkkknyeb9eeQ1z7507Z24Kz3PPOc+xWZZlCQAAAADgM3ttNwAAAAAA6hoSKQAAAADwE4kUAAAAAPiJRAoAAAAA/EQiBQAAAAB+IpECAAAAAD+RSAEAAACAn0ikAAAAAMBPJFIAAAAA4CcSKQBogH799VfZbDa9+OKLnm0PPvigbDZbrbYLAIC6gkQKQIP24osvymazeb4iIyPVuXNnTZgwQbt37w74+48bN042m02xsbH6/fffy+3fuHGjp22PP/54wNtT35x99tllvr8VfT344IMBb0u7du3K/ax16tRJd911l3Jzcyt1zu+++04PPvig9u/f79PxJT9v3r4++eSTSrWhLnnkkUf0zjvv1HYzANQTobXdAAAIBjNnzlT79u1VUFCgb7/9VvPnz9dHH32kNWvWKDo6OqDvHRoaqvz8fL3//vu64ooryux7+eWXFRkZqYKCgoC2QZIeeOAB3XvvvQF/n5p0//3364YbbvA8X7lypZ5++mndd999Sk5O9mw/9dRTa6Q9PXv21OTJkyVJBQUFSk9P11NPPaWvvvpK//3vf/0+33fffacZM2Zo3LhxatKkiU+viYiI0D/+8Y9y23v06OH3+9c1jzzyiC677DINHz68tpsCoB4gkQIASUOHDlWfPn0kSTfccIOaN2+uuXPn6t1339VVV13l9TV5eXmKiYmp8ntHRESof//++r//+79yidQrr7yiiy66SG+++WaV3+dEQkNDFRpav/5bOP/888s8j4yM1NNPP63zzz9fZ599do2356STTtI111zjeX7DDTeoUaNGevzxx7Vx40Z16tQp4G0IDQ0t04bqlJ+fH/AbDwAQLBjaBwBenHvuuZKkzZs3S0eGRDVq1EibNm3ShRdeqMaNG2v06NHSkYRq8uTJSkxMVEREhLp06aLHH39clmX5/H5XX321Pv744zJDtFauXKmNGzfq6quv9vqa/fv36/bbb/e8b1JSkubMmSO3213uuHHjxsnhcKhJkyZKS0vzOhTM2xyphQsX6txzz1V8fLwiIiKUkpKi+fPnl3ttu3btdPHFF+vbb7/VaaedpsjISHXo0EGLFy8+7uc+fPiwmjVrpmuvvbbcPpfLpcjISN15552ebc8884y6deum6OhoNW3aVH369NErr7xy3Pfwxbx589StWzdFREQoISFB48ePL3eNzj77bJ1yyilKT0/XGWecoaioKLVv314LFiyo0nu3atVKOpLglPb5559rwIABiomJUZMmTXTppZcqMzPTs//BBx/UXXfdJUlq3769Z4jer7/+WqX2qBLX46yzzlJ0dLTuu+8+SVJhYaGmT5+upKQkRUREKDExUXfffbcKCwvLvde//vUvnXbaaZ7v6VlnnaX//Oc/nv3vvvuuLrroIiUkJCgiIkIdO3bUrFmzVFxcXOY8Gzdu1MiRI9WqVStFRkaqTZs2GjVqlJxOpyTJZrMpLy9PixYt8lyrcePGSZIOHDig22+/Xe3atVNERITi4+N1/vnna9WqVVW+lgDqr/p16xEAqsmmTZskSc2bN/dsKyoq0pAhQ3TmmWfq8ccfV3R0tCzL0iWXXKIvvvhC119/vXr27KklS5borrvu0m+//aYnn3zSp/cbMWKE/vSnP+mtt97SddddJx3pjeratat69epV7vj8/HwNHDhQv/32m26++WadfPLJ+u677zRlyhTt3LlTTz31lCTJsixdeuml+vbbb/WnP/1JycnJevvtt5WWluZTu+bPn69u3brpkksuUWhoqN5//339+c9/ltvt1vjx48scm5WVpcsuu0zXX3+90tLS9MILL2jcuHHq3bu3unXr5vX8YWFh+uMf/6i33npLzz33nMLDwz373nnnHRUWFmrUqFGSpL///e+69dZbddlll+m2225TQUGB/ve//2nFihUVJpu+ePDBBzVjxgwNGjRIt9xyi9avX6/58+dr5cqVWrZsmcLCwjzH7tu3TxdeeKGuuOIKXXXVVXrttdd0yy23KDw83PN9O57Dhw8rJydHOjK0LyMjQ3PnztVZZ52l9u3be45bunSphg4dqg4dOujBBx/U77//rmeeeUb9+/fXqlWr1K5dO40YMUIbNmzQ//3f/+nJJ59UXFycJKlFixYnbEdJG0qEhYXJ4XD4fT327t2roUOHatSoUbrmmmvUsmVLud1uXXLJJfr222910003KTk5WT/99JOefPJJbdiwocwcpRkzZujBBx/UGWecoZkzZyo8PFwrVqzQ559/rsGDB0tH5jE2atRIkyZNUqNGjfT5559r2rRpcrlceuyxxyRJhw4d0pAhQ1RYWKiJEyeqVatW+u233/TBBx9o//79cjgceumll3TDDTfotNNO00033SRJ6tixoyTpT3/6k9544w1NmDBBKSkp2rt3r7799ltlZmZ6/f0DAMn8JwsADdbChQstSdbSpUutPXv2WNu2bbNeffVVq3nz5lZUVJS1fft2y7IsKy0tzZJk3XvvvWVe/84771iSrIceeqjM9ssuu8yy2WxWVlbWcd8/LS3NiomJ8bzmvPPOsyzLsoqLi61WrVpZM2bMsDZv3mxJsh577DHP62bNmmXFxMRYGzZsKHO+e++91woJCbG2bt1apn2PPvqo55iioiJrwIABliRr4cKFnu3Tp0+3jv1vIT8/v1ybhwwZYnXo0KHMtrZt21qSrK+//tqzLTs724qIiLAmT5583GuwZMkSS5L1/vvvl9l+4YUXlnmfSy+91OrWrdtxz3Uir7/+uiXJ+uKLLzxtDA8PtwYPHmwVFxd7jnv22WctSdYLL7zg2TZw4EBLkvXEE094thUWFlo9e/a04uPjrUOHDh33vUuu0bFf/fv3t3JycsocW3LOvXv3eratXr3astvt1tixYz3bHnvsMUuStXnzZp8+f8nP8bFfAwcOrPT1WLBgQZn3eOmllyy73W598803ZbYvWLDAkmQtW7bMsizL2rhxo2W3260//vGPZd7LsizL7XZ7/u3tZ/Dmm2+2oqOjrYKCAsuyLCsjI8OSZL3++uvH/fwxMTFWWlpaue0Oh8MaP378cV8LAMdiaB8ASBo0aJBatGihxMREjRo1So0aNdLbb7+tk046qcxxt9xyS5nnH330kUJCQnTrrbeW2T558mRZlqWPP/7Y5zZcffXV+vLLL7Vr1y59/vnn2rVrV4U9La+//roGDBigpk2bKicnx/M1aNAgFRcX6+uvv/a0LzQ0tEy7Q0JCNHHiRJ/aFBUV5fm30+lUTk6OBg4cqF9++cUzZKpESkqKBgwY4HneokULdenSRb/88stx3+Pcc89VXFyc/v3vf3u27du3T59++qmuvPJKz7YmTZpo+/btWrlypU9t98XSpUt16NAh3X777bLbj/6XeOONNyo2NlYffvhhmeNDQ0N18803e56Hh4fr5ptvVnZ2ttLT00/4fqeffro+/fRTffrpp/rggw/08MMP6+eff9Yll1ziqdq4c+dO/fjjjxo3bpyaNWvmee2pp56q888/Xx999FGVPnNkZKSnDSVfTzzxRKWuR0RERLlhma+//rqSk5PVtWvXMj+bJcNlv/jiC+lIj6Pb7da0adPKvJeODMMrUfpn8MCBA8rJydGAAQOUn5+vdevWSZKnN23JkiXKz8/3+5o0adJEK1as0I4dO/x+LYCGi6F9ACDpb3/7mzp37qzQ0FC1bNlSXbp0KRfchYaGqk2bNmW2bdmyRQkJCWrcuHGZ7SUV4bZs2eJzG0rmXv373//Wjz/+qL59+yopKcnrnJeNGzfqf//7X4XDuLKzsz3v37p1azVq1KjM/i5duvjUpmXLlmn69Olavnx5uQDV6XR6AlhJOvnkk8u9vmnTptq3b99x3yM0NFQjR47UK6+8osLCQkVEROitt97S4cOHyyRS99xzj5YuXarTTjtNSUlJGjx4sK6++mr179/fp8/iTcn359jrER4erg4dOpT7/iUkJJQrMNK5c2fpyNpcf/jDH477fnFxcRo0aJDn+UUXXaQuXbrosssu0z/+8Q9NnDixwjbpyM/VkiVLqlToJCQkpEwbSvP3epx00kllhmPqyM9mZmbmCX82N23aJLvdrpSUlOO29+eff9YDDzygzz//XC6Xq8y+kmS+ffv2mjRpkubOnauXX35ZAwYM0CWXXKJrrrmmzM9oRR599FGlpaUpMTFRvXv31oUXXqixY8eqQ4cOJ3wtgIaLRAoAJJ122mmeqn0ViYiIKJdcVaeIiAiNGDFCixYt0i+//HLctY3cbrfOP/983X333V73lwT3VbFp0yadd9556tq1q+bOnavExESFh4fro48+0pNPPlmuqEVISIjX8/hSdGPUqFF67rnn9PHHH2v48OF67bXX1LVr1zIluZOTk7V+/Xp98MEH+uSTT/Tmm29q3rx5mjZtmmbMmFHlz1tbzjvvPEnS119/7XNPYbAo3VtUwu12q3v37po7d67X1yQmJvp8/v3792vgwIGKjY3VzJkz1bFjR0VGRmrVqlW65557yvwMPvHEExo3bpzeffdd/ec//9Gtt96q2bNn6/vvvy93A+RYV1xxhQYMGKC3335b//nPf/TYY49pzpw5euuttzR06FCf2wugYSGRAoAqaNu2rZYuXaoDBw6U6ZUqGXLUtm1bv8539dVX64UXXpDdbvcUWfCmY8eOOnjwYIU9C6Xb99lnn+ngwYNleqXWr19/wra8//77Kiws1HvvvVemt6lkaFZ1Ouuss9S6dWv9+9//1plnnqnPP/9c999/f7njYmJidOWVV+rKK6/UoUOHNGLECD388MOaMmWKIiMj/X7fku/P+vXry/Q+HDp0SJs3by53fXfs2FGuN2jDhg3SkcqFlVFUVCRJOnjwYLk2HWvdunWKi4vzvP+xVRaryt/r4U3Hjh21evVqnXfeecdtX8eOHeV2u7V27Vr17NnT6zFffvml9u7dq7feektnnXWWZ3tJNc1jde/eXd27d9cDDzyg7777Tv3799eCBQv00EMPSSe4Xq1bt9af//xn/fnPf1Z2drZ69eqlhx9+mEQKQIWYIwUAVXDhhRequLhYzz77bJntTz75pGw2m99B2DnnnKNZs2bp2Wef9ZTF9uaKK67Q8uXLtWTJknL79u/f7wnOL7zwQhUVFZUpWV5cXKxnnnnmhG0p6WEq3aPkdDq1cOFCvz6TL+x2uy677DK9//77eumll1RUVFRmWJ+OVIgrLTw8XCkpKbIsS4cPH67U+w4aNEjh4eF6+umny3zOf/7zn3I6nbrooovKHF9UVKTnnnvO8/zQoUN67rnn1KJFC/Xu3btSbXj//felUgvitm7dWj179tSiRYvKlBxfs2aN/vOf/+jCCy/0bCtJqLyVs68Mf6+HN1dccYV+++03/f3vfy+37/fff1deXp4kafjw4bLb7Zo5c2a53s2S9/b2M3jo0CHNmzevzPEul8vzM1+ie/fustvtZUqux8TElLtWxcXF5eb7xcfHKyEhwWu5dgAoQY8UAFTBsGHDdM455+j+++/Xr7/+qh49eug///mP3n33Xd1+++2e8sq+stvteuCBB0543F133aX33ntPF198safEeF5enn766Se98cYb+vXXXxUXF6dhw4apf//+uvfee/Xrr78qJSVFb731VrnA0ZvBgwcrPDxcw4YN080336yDBw/q73//u+Lj47Vz506/PpcvrrzySj3zzDOaPn26unfv7plnVro9rVq1Uv/+/dWyZUtlZmbq2Wef1UUXXVRujpqvWrRooSlTpmjGjBm64IILdMkll2j9+vWaN2+e+vbtW27h2oSEBM2ZM0e//vqrOnfu7JnP9vzzz5cpC16R3377Tf/617+kIwnB6tWr9dxzzykuLq7MsL7HHntMQ4cOVb9+/XT99dd7yp87HI4yQz5Lkrf7779fo0aNUlhYmIYNG1bp+VP+Xg9vxowZo9dee01/+tOf9MUXX6h///4qLi7WunXr9Nprr2nJkiXq06ePkpKSdP/992vWrFkaMGCARowYoYiICK1cuVIJCQmaPXu2zjjjDDVt2lRpaWm69dZbZbPZ9NJLL5UbLvr5559rwoQJuvzyy9W5c2cVFRXppZdeUkhIiEaOHFnmei1dulRz585VQkKC2rdvry5duqhNmza67LLL1KNHDzVq1EhLly7VypUrPUU4AMCr2i4bCAC1qaT8+cqVK497XOky5cc6cOCAdccdd1gJCQlWWFiY1alTJ+uxxx4rU8K5Muct4a38ecn7TpkyxUpKSrLCw8OtuLg464wzzrAef/zxMqW49+7da40ZM8aKjY21HA6HNWbMGE+56BOVP3/vvfesU0891YqMjLTatWtnzZkzx3rhhRfKldxu27atddFFF5Vr+8CBAz2ltU/E7XZbiYmJXsvJW5ZlPffcc9ZZZ51lNW/e3IqIiLA6duxo3XXXXZbT6fTp/JaX8uclnn32Watr165WWFiY1bJlS+uWW26x9u3bV+6zdOvWzfrhhx+sfv36WZGRkVbbtm2tZ5991qf3Prb8ud1ut+Lj462rrrrKa5n8pUuXWv3797eioqKs2NhYa9iwYdbatWvLHTdr1izrpJNOsux2+wlLofvy8+bv9fDm0KFD1pw5c6xu3bpZERERVtOmTa3evXtbM2bMKPf9euGFF6zU1FTPcQMHDrQ+/fRTz/5ly5ZZf/jDH6yoqCgrISHBuvvuuz0l80u+j7/88ot13XXXWR07drQiIyOtZs2aWeecc461dOnSMu+1bt0666yzzrKioqIsSVZaWppVWFho3XXXXVaPHj2sxo0bWzExMVaPHj2sefPmnfA6AWjYbJYvs4ABAGjgzj77bOXk5GjNmjW13RQAQBBgjhQAAAAA+IlECgAAAAD8RCIFAAAAAH6q1UTq66+/1rBhw5SQkCCbzaZ33nmnzH7LsjRt2jS1bt1aUVFRGjRokDZu3FjmmNzcXI0ePVqxsbFq0qSJrr/+es9aHAAAVJcvv/yS+VEAAI9aTaTy8vLUo0cP/e1vf/O6/9FHH9XTTz+tBQsWaMWKFYqJidGQIUNUUFDgOWb06NH6+eef9emnn+qDDz7Q119/rZtuuqkGPwUAAACAhiZoqvbZbDa9/fbbGj58uHSkNyohIUGTJ0/WnXfeKR1ZCLJly5Z68cUXNWrUKGVmZiolJUUrV65Unz59JEmffPKJLrzwQm3fvl0JCQm1+pkAAAAA1E9BuyDv5s2btWvXLg0aNMizzeFw6PTTT9fy5cs1atQoLV++XE2aNPEkUTqyKrvdbteKFSv0xz/+0eu5CwsLy6xW7na7lZubq+bNm8tmswX4kwEAAAAIVpZl6cCBA0pISJDdXvEAvqBNpHbt2iVJatmyZZntLVu29OzbtWuX4uPjy+wPDQ1Vs2bNPMd4M3v2bM2YMSMg7QYAAABQ923btk1t2rSpcH/QJlKBNGXKFE2aNMnz3Ol06uSTT9aWLVsUGxtbq22rqzZtku65R2raVGrcuPz+AwekffukOXOkjh3NNrfbrZycHMXFxR032wcAAGioiJdqnsvlUtu2bdXYW1BbStAmUq1atZIk7d69W61bt/Zs3717t3r27Ok5Jjs7u8zrioqKlJub63m9NxEREYqIiCi3vUmTJiRSleR2S4cPSw6HFBJSfn9srJSdbY5r0qTkNW4dOnRITZo04Q8DAACAF8RLNa/kOp9oyk/Qfjfat2+vVq1a6bPPPvNsc7lcWrFihfr16ydJ6tevn/bv36/09HTPMZ9//rncbrdOP/30Wml3Q+VwSJGRUl6e9/35+Wa/w1HTLQMAAACqX632SB08eFBZWVme55s3b9aPP/6oZs2a6eSTT9btt9+uhx56SJ06dVL79u01depUJSQkeCr7JScn64ILLtCNN96oBQsW6PDhw5owYYJGjRrVICv2ud1SVpbkdJqEJSlJqqkbF0lJUnKylJ5uHksn8JYlbd8u9eljjqvravM6AwAAIDjUaiL1ww8/6JxzzvE8L5m3lJaWphdffFF333238vLydNNNN2n//v0688wz9cknnygyMtLzmpdfflkTJkzQeeedJ7vdrpEjR+rpp5+ulc9TmzIypEWLpMxMqaDA9P4kJ0tpaVJqauDf324377Vli2lDmzZSdLTpidq+XYqLk8aOrfsJR21fZwAAAASHoFlHqja5XC45HA45nc46OUcqI0OaOVPKyTEJTEyMGWJXksBMm1ZzQb63RCMlxSRRx7bB7XYrOztb8fHxdWLMbzBdZwAA0DDUtXipPvA1NwjaYhPwjdttEpecnLJD6mJjzfPMTGnxYqlHj5rpDUpNNe9V34a+Bdt1BgAAQO0ikarjsrKODqU7trCIzWa2r11rjuvcuWbaZLfX3HvVlGC8zgAAAKg9JFJBpDJFDJxOM4QuJsb7/uhoaccOcxwqj+sMAACCCcWvah+JVJCobBGD0mXHvQ3hpOx49eA6AwCAYEHxq+BA3hoESooYpKdLzZpJnTqZx/R0sz0jo+LXlpQd377dlBkvraTseEpK/Sg7Xpu4zgAAIBhUJW5E9SKRqmXHFjGIjZVCQo4WMcjJMUUM3G7vry8pOx4XZ+5KuFxSUZF5zMysP2XHaxvXGQAA1Laqxo2oXoR9tcyfIgYVSU01pbd795Zyc82xublmAVxKclcfrjMAAKhN1RE3ovowR6qWVVcRg/padjzYcJ0BAEBtofhVcCGRqmXVWcSgPpYdD0ZcZwAAUBsofhVcuI9eyyhiAAAAAF8QNwYXEqlaRhEDAAAA+IK4MbgwtC8IlBQxKFkPYMcO0y3bp4/5ZQj2IgZut7Rhg7RmjXl+yilm6Fsw/xKziB0AAKiLqituJBaqOhKpIFFXixhkZEiPPSYtW2buhkhmzG7//tJddwVnEsgidgAAoC6ratxILFQ9SKSCSF0rYpCRIU2aJP3vf6btTZua0psul7RkibRzpzR3bnD9QpYsYpeTY0qExsSYCZvp6dKWLZQxBwAAdUNl40ZioeoT5P0dCFZut/Tii2ZIX1iY1Ly5FBEhhYeb8blhYWbfokXBsygci9gBAICGjFioepFIoVKyssydC7fb3Mk4dlG4Ro3Mvh9+CJ5F4VjEDgAANGTEQtWLRAqV4nSatQokKdTLANHQUFOGMy8veBaF82URu4KC4GkvAABAdSIWql4kUqgUh8P8skmm7OaxiorMnY2YmOBZFK70InbesIgdAACoz4iFqheJFColKUnq3dtMdMzLK78o3MGDZl+fPsGzKByL2AEAgIaMWKh6kUihUux2adw4Uy3m8GFp716psNB85eSYbZ07mzKawVLCnUXsAABAQ0YsVL1slnVsPtrwuFwuORwOOZ1OxcbG1nZz6pSK1pE680zpzjuPXz7T7XYrOztb8fHxstfgb6y3tRNSUurG4scAAKBhCUS8RCx0fL7mBiRSJFJV5nabUudr1pjnp5xieqNO9LteW4mUWM0bAADUEYGKl4iFKuZrbsCCvKgyu13q2tV81RV1bfFjAACA6kQsVHXknQAAAADgJxIpAAAAAPATiRQAAAAA+IlECgAAAAD8RCIFAAAAAH4ikQIAAAAAP5FIAQAAAICfSKQAAAAAwE8kUgAAAADgJxIpAAAAAPATiRQAAAAA+Cm0thuAusHtlrKyJKdTcjikpCTJThoOAABQTqDipoDFY6VO7G7sUJaS5DxgJ+Y7ARIpnFBGhrRokZSZKRUUSJGRUnKylJYmpabWdusAAACCR6Diph9/lBYvDkA8VqrBB3IK9FtOpNYqWR/FpWlbXCox33GQSOG4MjKkmTOlnBypTRspJkbKy5PS06UtW6Rp0/jFAgAAUADjpk2bpCeekPbsqeZ4rFSDc2Pa6Ie9MbLl5ylZ6WqXs0Wvt5imb9NTifkqQEcdKuR2mxsUOTnmjkdsrBQSYh6Tk832xYvNcQAAAA1ZoOImt1v6/PMAxGOlGmx1Tda632L1e2GIIuJitad5shoX5ujcHYuV0tVNzFcBEilUKCvLdB+3aSPZbGX32Wxm+9q15jgAAICGLFBx06ZN0rZtAYjHSjXYecCmfftNT1fJiffFtFHCvrWKd2UR81WARAoVcjrNGFzPL9UxoqPNfqezplsGAAAQXAIVNzmd0uHDAYjHSjX40CGpuEgKKzXppzA0WmFFBYo65CTmqwCJFCrkcJiJjHl53vfn55v9DkdNtwwAACC4BCpucjiksLAAxGOlGhweLoWESoeLju6OKMrX4dBI/R7uIOarAIkUKpSUZMbebt8uWVbZfZZltqekmOMAAAAaskDFTR07SomJAYjHSjXY0dhS0yalkjXLUtO87drRNEXZsUnEfBUgkUKF7HZT7jIuzgyhdbmkoiLzmJlpto8dy9oCAAAAgYqb7Hbp3HMDEI+VarBtXaa6nuRSdHiRCnNcarE3Uwci4vR5wlitXWcn5quAzbKOzW0bHpfLJYfDIafTqdjY2NpuTtDxth5CSor5hapKGUy3263s7GzFx8fLzm8mAACoB6o7biqJl3bsiNfixfZqj8e8ryOVoo/ixmpbXGr1vEcd42tuQCJFIuWTQKykTSIFAADqo+qMm0rHS5K92uOxYxvsbuxQlpLkPGCv3veoQ3zNDViQFz6x26XOnWu7FQAAAMEvUHFTwOKxUie2SyLk800Dyy8BAAAAoOpIpAAAAADATyRSAAAAAOAnEikAAAAA8BOJFAAAAAD4iUQKAAAAAPxEIgUAAAAAfiKRAgAAAAA/kUgBAAAAgJ9IpAAAAADATyRSAAAAAOCn0NpuABoGt1vKypKcTsnhkJKSartFAAAANcRbIGQPrv6MOtDEoEMihYDLyJAWLZIyM6WCAikyUkpOlsaOlRISart1AAAAAVRRIJSWJqWm1nbrpLrRxKBEIoWAysiQZs6UcnKkNm2kmBgpL09KT5e2bpUmT5bi42u7lQAAAAFwvEBoyxZp2rRaz1TqQBODFh12CBi329zdyMkxdzViY6WQEPOYnGy2f/GFOQ4AAKBe8SUQWry4VgOhOtDEoEYihYDJyjJdxG3aSDZb2X02m9m+dau0aVNttRAAACBAfAmE1q41x9WSOtDEoEYihYBxOs0425gY7/ujo6XDh81xAAAA9YovgVBBQa0GQnWgiUGNRAoB43CYyYp5ed735+dLYWHmOAAAgHrFl0AoMrJWA6E60MSgRiKFgElKMuNrt2+XLKvsPssy208+WerYsbZaCAAAECC+BEIpKbW6JkwdaGJQI5FCwNjtpmxmXJwZf+tySUVF5jEz02w/5xzWKAAAAPWQL4HQ2LG1GgjVgSYGNZtlHZt/Njwul0sOh0NOp1OxsbG13Zx6x9vaBCkp0pgxbiUkZCs+Pl52fkMBAEB9VFEgNHasT3XF3W63srMDGy9VsYn1jq+5AetIIeBSU6UePcqvli1J2dm13ToAAIAAqigQCqKbyHWgiUGJRAo1wm6XOncuu401CQAAQIPgLRAKMnWgiUGHPBMAAAAA/EQiBQAAAAB+IpECAAAAAD+RSAEAAACAn0ikAAAAAMBPJFIAAAAA4CcSKQAAAADwE4kUAAAAAPiJRAoAAAAA/EQiBQAAAAB+IpECAAAAAD+RSAEAAACAn4I6kSouLtbUqVPVvn17RUVFqWPHjpo1a5Ysy/IcY1mWpk2bptatWysqKkqDBg3Sxo0ba7XdqB1ut7Rhg7RypXl0u2u7RQAAAFXndksbN1Yc4xAD1Y7Q2m7A8cyZM0fz58/XokWL1K1bN/3www+69tpr5XA4dOutt0qSHn30UT399NNatGiR2rdvr6lTp2rIkCFau3atIiMja/sjoIZkZEiLFkmZmVJBgRQZKSUnS2lpUmpqbbcOAACgcn78UfrwQ2nZMun338vHOMRAtcdmle7eCTIXX3yxWrZsqX/+85+ebSNHjlRUVJT+9a9/ybIsJSQkaPLkybrzzjslSU6nUy1bttSLL76oUaNG+fQ+LpdLDodDTqdTsbGxAfs8KMvtdis7O1vx8fGy2yvfOZqRIc2cKeXkSG3aSDExUl6etH27FBcnTZvGHxIAAFD3ZGRIs2a51bhxtg4fjld0tL1MjHPFFdJrrxEDVTdfc4OgHtp3xhln6LPPPtOGDRskSatXr9a3336roUOHSpI2b96sXbt2adCgQZ7XOBwOnX766Vq+fHmttRs1x+02d2Fycszdl9hYKSTEPCYnm+2LF9PFDQAA6pbSMU5iYvkYZ88e6dFHzSMxUO0I6qF99957r1wul7p27aqQkBAVFxfr4Ycf1ujRoyVJu3btkiS1bNmyzOtatmzp2edNYWGhCgsLPc9dLpd0pIfEzU9bjXG73bIsq0rXfONGad068wfm2E4tm81sz8w0x3XqVPU2AwAA1ISjMY5bNpslm+1ovGSzSU2amPlQp59ODFTdfI1NgzqReu211/Tyyy/rlVdeUbdu3fTjjz/q9ttvV0JCgtLS0ip93tmzZ2vGjBnltu/Zs0cFBQVVbDV85Xa75XQ6ZVlWpYf2ZWdLrVtLCQnl/4hIUrNmUkSEOc7hqHqbAQAAasLRGMcth8Mpm82SZR0NdkJCpAMHpLZtpaZNy7+eGKjyDhw44NNxQZ1I3XXXXbr33ns9c526d++uLVu2aPbs2UpLS1OrVq0kSbt371br1q09r9u9e7d69uxZ4XmnTJmiSZMmeZ67XC4lJiaqRYsWzJGqQW63WzabTS1atKh0IuV0Sjt3SoWFpiv7WC6XlJsrxcebLwAAgLqgJMY5dMgtu92mnJwWZRKp7dtNj1NsrFRUVP71xECV52vBuqBOpPLz88sF2CEhIZ7utvbt26tVq1b67LPPPImTy+XSihUrdMstt1R43oiICEVERJTbbrfbq1T0AP6z2WxVuu6dOkldu0rp6WY8sM12dJ9lSdu2SX36mOP41gIAgLqiJMZZtUpq394my7J7EinLkvbvl046Sdq3z/RcEQNVH1/j0qBOpIYNG6aHH35YJ598srp166aMjAzNnTtX1113nXQkCL/99tv10EMPqVOnTp7y5wkJCRo+fHhtNx81wG435T23bDF3Zdq0kaKjpfz8oxVrxo7lDwgAAKhbSmKcrVtNUnT4sBQVdTTGadFCGj/eVO0jBqodQV3+/MCBA5o6darefvttZWdnKyEhQVdddZWmTZum8PBw6ciCvNOnT9fzzz+v/fv368wzz9S8efPUuXNnn9+H8ue1o7rKn6uCdaRSUswfEMp+AgCAumrVKrc+/DBby5bF6/ff7eViHGKg6udrbhDUiVRNIZGqHdWZSOlImdCsLDOm2OGQkpK4CwMAAOo2t9utXbuydeBAvFwuu9cYhxioevmaGwT10D7AH3a75EdHJAAAQJ1gtx9/rhMxUO0gVwUAAAAAP5FIAQAAAICfSKQAAAAAwE8kUgAAAADgJxIpAAAAAPATiRQAAAAA+IlECgAAAAD8RCIFAAAAAH5iQV7ULSzdDQAAgCBAIoW6IyNDWrRIysyUCgqkyEgpOVlKS5NSU2u7dQAAAGhASKRQN2RkSDNnSjk5Ups2UkyMlJcnpadLW7ZI06aRTAEAAKDGkEgh+LndpicqJ8f0QNlsZntsrHmemSktXiz16MEwPwAAUOf4OnOh0jMcmBoRECRSCH5ZWSZZatPmaBJVwmYz29euNcd17lxbrQQAAPCbrzMXfvzR3Df2e4YDUyMChkQKwc/pNL/4MTHe90dHSzt2mOMAAADqCF9mLvToIW3aJD3xhLRnj58zHJgaEVD06SH4ORzm7klenvf9+flmv8NR0y0DAAColGNnLsTGSiEhR2cu5OSYHqiiIunzz098nNtdyTco90L4ikQKwS8pyfzCb98uWVbZfZZltqekmOMAAADqAF9nLnz+ubRtm28zHCr1BuVeCF+RSCH42e1mHG9cnPmD4HKZ2zMul3keFyeNHcukSQAAUGf4MnOhoEDavVs6fPjEx5Wb4eDrGzA1otKIPFE3pKaacby9e0u5uebuSW6u1KcP43sBAECd4+vMhZYtpbCwSsxwYGpEwFFsAnVHaqqZcUn5TgAAUMeVzFxITy+7uotKzVzo00c691xp5Urp00+lrl0rPq7cDAdf34CpEZVGIoW6xW6nxDkAAKjzSmYubNlydCpTdLTpKNq+/ejMhdBQk0xlZBz/uHL3lX19A25IV5rNso6dvd/wuFwuORwOOZ1OxcbG1nZzGgy3263s7GzFx8fLzi8xAABogLwt85SSYnKc1NSj8dKOHfFavNhe4XGVfgOU42tuQI8UAAAAUEt8nbnQs6f58nuGA1MjAoZECgAAAKhFvs5cqPQMB6ZGBASpKAAAAAD4iUQKAAAAAPxEIgUAAAAAfiKRAgAAAAA/kUgBAAAAgJ9IpAAAAADATyRSAAAAAOAnEikAAAAA8BOJFAAAAAD4iUQKAAAAAPxEIgUAAAAAfgqt7QagHnC7pawsyemUHA4pKUmyk6MDAICGgVCoYSKRQtVkZEiLFkmZmVJBgRQZKSUnS2lpUmpqbbcOAAAgoAiFGi4SKVReRoY0c6aUkyO1aSPFxEh5eVJ6urRlizRtGn9BAABAvUUo1LDR6YjKcbvN7ZecHHPbJTZWCgkxj8nJZvvixeY4AACAeoZQCCRSqJysLNOH3aaNZLOV3Wezme1r15rjAAAA6hlCIZBIoXKcTjMQOCbG+/7oaLPf6azplgEAAAQcoRBIpFA5DoeZTZmX531/fr7Z73DUdMsAAAACjlAIJFKonKQkMwB4+3bJssrusyyzPSXFHAcAAFDPEAqBRAqVY7ebup5xcWaAsMslFRWZx8xMs33sWBZRAAAA9RKhEPjWovJSU01dz969pdxcM5syN1fq04d6nwAAoN4jFGrYWEcKVZOaKvXowXLeAACgQSIUarhIpFB1drvUuXNttwIAAKBWEAo1TOTKAAAAAOAnEikAAAAA8BOJFAAAAAD4iTlSDYXbzSxIAAAAoJqQSDUEGRnSokVmUYOCArPMdnKyWfyAupwAAACA30ik6ruMDGnmTCknR2rTRoqJkfLypPR0acsWFjkAAAAAKoGxXfWZ2216onJyTA9UbKwUEmIek5PN9sWLzXEAAAAAfEYiVZ9lZZnhfG3aSDZb2X02m9m+dq05DgAAAIDPSKTqM6fTzImKifG+Pzra7Hc6a7plAAAAQJ1GIlWfORymsERenvf9+flmv8NR0y0DAAAA6jQSqfosKcnMhdq+XbKssvssy2xPSTHHAQAAAPAZVfvqM7vdlDjfsuXoXKnoaNMTtX27FBcnjR0bnOtJse4VAACAd8RJQYFEqr5LTTUlzkvWkdqxwwzn69PHJFHBWPqcda8AAAC8I04KGiRSDUFqqtSjR924c8G6VwAAAN4RJwWVIIykERB2u9S5s9S3r3kMxiSKda8AAAC8I04KOkEYTaPBYt0rAAAA7zZtIk4KMiRSCB6sewUAAOAdcVLQIZFC8GDdKwAAAO+Ik4IOiRSCB+teAQAAeNexI3FSkCGRQvAoWfcqLs6MAXa5pKIi85iZGdzrXgEAAAQScVLQ4UojuJSse9W7t5SbayZM5uaada8o6QkAABoy4qSgwjpSCD51ad0rAACAmkScFDRIpBCcSta9AgAAQFnESUGB1BUAAAAA/EQiBQAAAAB+IpECAAAAAD+RSAEAAACAn0ikAAAAAMBPJFIAAAAA4CcSKQAAAADwE4kUAAAAAPiJRAoAAAAA/EQiBQAAAAB+IpECAAAAAD+F1nYDEOTcbikrS3I6JYdDSkqS7OTfAAAA/vI5rCp9YGys1Lhx9b8HqqxKiVRhYaEiIiKqrzVe/Pbbb7rnnnv08ccfKz8/X0lJSVq4cKH69OkjSbIsS9OnT9ff//537d+/X/3799f8+fPVqVOngLarQcjIkBYtkjIzpYICKTJSSk6W0tKk1NTabh0AAECd4XNYdeyBUVFS//7SRRdJvXpVz3ugWviVn3788cdKS0tThw4dFBYWpujoaMXGxmrgwIF6+OGHtWPHjmpt3L59+9S/f3+FhYXp448/1tq1a/XEE0+oadOmnmMeffRRPf3001qwYIFWrFihmJgYDRkyRAUFBdXalgYnI0OaOVNKT5eaNZM6dTKP6elme0ZGbbcQAACgTvA5rKrowKws6aGHjht/EbrVPJ8SqbfffludO3fWddddp9DQUN1zzz166623tGTJEv3jH//QwIEDtXTpUnXo0EF/+tOftGfPnmpp3Jw5c5SYmKiFCxfqtNNOU/v27TV48GB17NhROtIb9dRTT+mBBx7QpZdeqlNPPVWLFy/Wjh079M4771RLGxokt9vczsjJMbcxYmOlkBDzmJxsti9ebI4DAABAhXwOq4qOc2Bi4nHjL0K32uHT0L5HH31UTz75pIYOHSq7l0GWV1xxhXRkGN4zzzyjf/3rX7rjjjuq3Lj33ntPQ4YM0eWXX66vvvpKJ510kv785z/rxhtvlCRt3rxZu3bt0qBBgzyvcTgcOv3007V8+XKNGjXK63kLCwtVWFjoee5yuSRJbrdbbn7CpI0bpXXrzC/tsd9vm81sz8w0x1VhCKXb7ZZlWVxzAABQb/kaVv26dKPaeTnQbbPJstnkPk78VUOhW4Pha2zqUyK1fPlyn0520kkn6S9/+YtPx/ril19+0fz58zVp0iTdd999WrlypW699VaFh4crLS1Nu3btkiS1bNmyzOtatmzp2efN7NmzNWPGjHLb9+zZw5BAScrOllq3lhISvM9ObNZMiogwxzkclX4bt9stp9Mpy7K8JugAAAB1na9hVc7ebEV7OdBts8kZGyurXTvZw8O9xl81FLo1GAcOHPDpuCpX7cvLy1NxcbFiY2Oreqpy3G63+vTpo0ceeUSSlJqaqjVr1mjBggVKS0ur9HmnTJmiSZMmeZ67XC4lJiaqRYsWAfkcdY7TKe3cKRUWmj7hY7lcUm6uFB9vvirJ7XbLZrOpRYsWJFIAAKBe8jWsimvuVLyXA902m2yWpRa//ir73r1e468aCt0ajMjISJ+Oq3QitXbtWo0dO1arVq2SzWZTSkpKmWp61aF169ZKSUkpsy05OVlvvvmmJKlVq1aSpN27d6t169aeY3bv3q2ePXtWeN6IiAiv1QbtdjsBvWT6fLt2NbMTk5NNn3AJy5K2bZP69DHHVfF62Ww2rjsAAKi3fA2r2g3qJPsn3g+0WZbs27bJ3ru31/irBkO3BsHXuLTSl/Lmm2/WhAkTdPDgQe3du1cjRoyoUi+RN/3799f69evLbNuwYYPatm0rSWrfvr1atWqlzz77zLPf5XJpxYoV6tevX7W2pUGx202dzLg4M6DW5ZKKisxjZqbZPnYsv4kAAAAn4HNYFXqcA7dtO278RehWO3y+nJdeeql+++03z/M9e/bokksuUXR0tJo0aaILL7xQu3fvrtbG3XHHHfr+++/1yCOPKCsrS6+88oqef/55jR8/XjrSm3H77bfroYce0nvvvaeffvpJY8eOVUJCgoYPH16tbWlwUlOladOk3r1NX3BWlnns08dsZzECAAAAn/gcVlV0YKdO0gMPHDf+InSreT4P7bvmmmt07rnnavz48Zo4caImTJigbt26aeDAgTp8+LA+//xzTZ48uVob17dvX7399tuaMmWKZs6cqfbt2+upp57S6NGjPcfcfffdysvL00033aT9+/frzDPP1CeffOLz2EYcR2qq1KMHy2MDAABUkc9h1bEHxsZKjRtLR6a0VMt7oFrYLMuyfD3Y6XTqnnvuUUZGhhYsWKDQ0FB9+eWXKi4uVv/+/dW3b9/AtjZAXC6XHA6HnE4nxSZqkNvtVnZ2tuLj45kjBQAA4AXxUs3zNTfwq9iEw+HQggUL9O233yotLU3nn3++Zs2apejo6OpoMwAAAADUCX6ltbm5uUpPT1f37t2Vnp6u2NhYpaam6qOPPgpcCwEAAAAgyPicSL3yyitq06aNLrroIrVt21Yff/yxpk+frnfffVePPvqorrjiimovNgEAAAAAwcjnRGrKlCl64YUXtGvXLn322WeaOnWqJKlr16768ssvdf7551NyHAAAAECD4HMidfDgQXXp0kWS1LFjR+Xn55fZf+ONN+r777+v/hYCAAAAQJDxudhEWlqaLrroIp199tn64YcfNGbMmHLHxMfHV3f7AAAAACDo+JxIzZ07V+ecc47WrVuncePGafDgwYFtGQAAAAAEKb/Knw8bNkzDhg0LXGsAAAAAoA7waY7Uq6++6vMJt23bpmXLllWlTQAAAAAQ1HxKpObPn6/k5GQ9+uijyszMLLff6XTqo48+0tVXX61evXpp7969gWgrAAAAAAQFn4b2ffXVV3rvvff0zDPPaMqUKYqJiVHLli0VGRmpffv2adeuXYqLi9O4ceO0Zs0atWzZMvAtBwAAAIBa4vMcqUsuuUSXXHKJcnJy9O2332rLli36/fffFRcXp9TUVKWmpspu97maOuoYt1vKypKcTsnhkJKSJL7dAAAAaKj8KjYhSXFxcRo+fHhgWoOglJEhLVokZWZKBQVSZKSUnCylpUmpqbXdOgAAAKDm+Z1IoWHJyJBmzpRycqQ2baSYGCkvT0pPl7ZskaZNI5kCAABAw8PgLFTI7TY9UTk5pgcqNlYKCTGPyclm++LF5jgAAACgIaFHChXKyjLD+dq0kWy2svtsNrN97VpzXOfOtdVKAACAstxutw4dOlTbzagWbrdbhw8fVkFBAfUIqklYWJhCQkKqfB4SKVTI6TRzomJivO+PjpZ27DDHAQAABINDhw5p8+bNcteTITOWZcntduvAgQOyHXtnG5XWpEkTtWrVqkrX1O9E6osvvtA555xT6TdE3eFwmMISeXlmON+x8vPNfoejNloHAABQlmVZ2rlzp0JCQpSYmFgvenAsy1JRUZFCQ0NJpKqBZVnKz89Xdna2JKl169aVPpffidQFF1ygNm3a6Nprr1VaWpoSExMr/eYIbklJZi5Uerp5LP27a1nS9u1Snz7mOAAAgNpWVFSk/Px8JSQkKDo6urabUy1IpKpfVFSUJCk7O1vx8fGVHubnd5r+22+/acKECXrjjTfUoUMHDRkyRK+99lq9GYeKo+x2U+I8Ls7MlXK5pKIi85iZabaPHct6UgAAIDgUFxdLksLDw2u7KQhyJYn24cOHK30Ov0PguLg43XHHHfrxxx+1YsUKde7cWX/+85+VkJCgW2+9VatXr650YxB8UlNNifPevaXcXFNYIjfX9ERR+hwAAAQjem5wItXxM1KlYhO9evVSq1at1Lx5c/3lL3/RCy+8oHnz5qlfv35asGCBunXrVuUGovalpko9epgkyuk0c6KSkuiJAgAAQMNVqVD48OHDeuONN3ThhReqbdu2WrJkiZ599lnt3r1bWVlZatu2rS6//PLqby1qjd1uSpz37WseSaIAAADqj3Hjxmn48OEBfx+bzaZ33nkn4O9TE/wOhydOnKjWrVvr5ptvVufOnZWRkaHly5frhhtuUExMjNq1a6fHH39c69atC0yLAQAAgHpk3LhxstlsstlsCgsLU/v27XX33XeroKCgtptWYyzL0qBBgzRkyJBy++bNm6cmTZpo+/bttdK2ivg9tG/t2rV65plnNGLECEVERHg9Ji4uTl988UV1tA8AAACoUW53zU9puOCCC7Rw4UIdPnxY6enpSktLk81m01/+8pfAvnGQsNlsWrhwobp3767nnntON998syRp8+bNuvvuuzV//ny1adOmtptZht8/EtOnT9fll19eLokqKirS119/LUkKDQ3VwIEDq6+VAAAAQA3IyJAmTZImTpTuvNM8TppktgdSRESEWrVqpcTERA0fPlyDBg3Sp59+6tnvdrs1e/ZstW/fXlFRUerRo4feeOMNz/59+/Zp9OjRatGihaKiotSpUyctXLjQs/+nn37Sueeeq6ioKDVv3lw33XSTDh486LUtzz//vBISEsotanzppZfquuuu8zx/99131atXL0VGRqpDhw6aMWOGioqKPPs3btyos846S5GRkUpJSSnzebxJTEzUX//6V915553avHmzLMvS9ddfr8GDB2vMmDFas2aNhg4dqkaNGqlly5YaM2aMcnJyPK9/44031L17d89nHDRokPLy8nz+HvjL70TqnHPOUW5ubrntTqeThXoBAABQZ2VkSDNnmjU0mzWTOnUyj+npZnugk6kSa9as0XfffVemjPvs2bO1ePFiLViwQD///LPuuOMOXXPNNfrqq68kSVOnTtXatWv18ccfKzMzU/Pnz1dcXJwkKS8vT0OGDFHTpk21cuVKvf7661q6dKkmTJjg9f0vv/xy7d27t8wIs9zcXH3yyScaPXq0JOmbb77R2LFjddttt2nt2rV67rnn9OKLL+rhhx+WjiR+I0aMUHh4uFasWKEFCxbonnvuOeFnT0tL03nnnafrrrtOzz77rNasWaPnnntO+/fv17nnnqvU1FT98MMP+uSTT7R7925dccUVkqSdO3fqqquu0nXXXafMzEx9+eWXGjFihCzLqtL34nj8HtpnWZbXcoF79+5VTExMdbULAAAAqDFut7RokZSTIyUnSyXhbmyseZ6ZKS1ebCoZB2KY3wcffKBGjRqpqKhIhYWFstvtevbZZyVJhYWFmj17tpYuXap+/fpJkjp06KBvv/1Wzz33nAYOHKitW7cqNTVVffr0kSS1a9fOc+5XXnlFBQUFWrx4sSdef/bZZzVs2DDNmTNHLVu2LNOWpk2baujQoXrllVd03nnnSUd6e+Li4jwdJzNmzNC9996rtLQ0T3tmzZqlu+++W9OnT9fSpUu1bt06LVmyRAkJCZKkRx55REOHDj3htXj++efVrVs3ff3113rzzTfVokULPfTQQ0pNTdUjjzziOe6FF15QYmKiNmzYoIMHD6qoqEgjRoxQ27ZtJUndu3ev0vfkRHxOpEaMGCEdGb84bty4MkP7iouL9b///U9nnHFGYFoJAAAABFBWlkmW2rQ5mkSVsNnM9rVrzXGdO1f/+59zzjmaP3++8vLy9OSTTyo0NFQjR46UZVnKyspSfn6+zj///DKvOXTokFKPLOp5yy23aOTIkVq1apUGDx6s4cOHe2LzzMxM9ejRo0ynR//+/eV2u7V+/fpyiZQkjR49WjfeeKPmzZuniIgIvfzyyxo1apTsR7LI1atXa9myZZ4eKB3JCQoKCpSfn6/MzEwlJiZ6kihJniTwROLj43XzzTfrnXfe8VQSXL16tb744gs1atSo3PGbNm3S4MGDdd5556l79+4aMmSIBg8erMsuu0xNmzb16T0rw+dEyuFwSEd6pBo3bqyoqCjPvvDwcP3hD3/QjTfeGJhWAgAAAAHkdEoFBVJFA6yio6UdO8xxgRATE6OkpCTpSE9Ljx499M9//lPXXXedZ57Phx9+qJNOOqnM60o6N4YOHaotW7boo48+0qeffqrzzjtP48eP1+OPP16p9gwbNkyWZenDDz9U37599c033+jJJ5/07D948KBmzJjh6WwpLTIyslLvWVpoaKhCQ4+mKgcPHvT0oB2rdevWCgkJ0aeffqrvvvtO//nPf/TMM8/o/vvv14oVK9S+ffsqt8drG309sGSyWrt27XTnnXcyjA8AAAD1hsMhRUZKeXlmON+x8vPN/iN9CwFlt9t13333adKkSbrqqquUnJysiIgIbd269bgF3Vq0aKG0tDSlpaVpwIABuuuuu/T4448rOTlZL774ovLy8jwx/LJly2S329WlSxev54qMjNSIESP08ssvKysrS126dFGvXr08+3v16qX169d7kr9jJScna9u2bdq5c6dat24tSfr+++8rfU169eqlN998U+3atSuTYJVms9nUv39/9e/fX9OmTVPbtm319ttva9KkSZV+3+OpVNU+kigAAADUJ0lJZi7U9u3SsfUJLMtsT0kxx9WEyy+/XCEhIfrb3/6mxo0ba/Lkybrjjju0aNEibdq0SatWrdIzzzyjRYsWSZKmTZumd999V1lZWfr555/1wQcfKDk5WToyTC8yMlJpaWlas2aNvvjiC02cOFFjxozxOqyvxOjRo/Xhhx/qhRde8BSZKDFt2jQtXrxYM2bM0M8//6zMzEy9+uqreuCBByRJgwYNUufOnZWWlqbVq1frm2++0f3331/p6zF+/Hjl5ubqqquu0sqVK7Vp0yYtWbJE1157rYqLi7VixQo98sgj+uGHH7R161a99dZb2rNnj+caBIJPPVK9evXSZ599pqZNmyo1NdVrsYkSq1atqs72AQAAAAFnt0tpadKWLUfnSkVHm56o7duluDhp7NjArydVIjQ0VBMmTNBjjz2mG2+8UbNmzVJ8fLxmz56tX375RU2aNFGvXr103333SUem2kyZMkW//vqroqKiNGDAAL366quSpOjoaC1ZskS33Xab+vbtq+joaI0cOVJz5849bhvOPfdcNWvWTOvXr9fVV19dZt+QIUP0wQcfaObMmZozZ47CwsLUtWtX3XDDDdKRXrW3335b119/vU477TS1a9dOTz/9tC644IJKXY+EhAQtW7ZM99xzjwYPHqzCwkK1bdtWF1xwgex2u2JjY/X111/rqaeeksvlUtu2bfXEE0/4VNyismyWDzUBZ8yYobvuukvR0dGaMWPGcY+dPn16dbavRrhcLjkcDjmdTsV668tFQLjdbmVnZys+Pt4zcREAAKCyCgoKtHnzZrVv377S83QyMkz1vsxMM2cqMtL0RI0dKx2p61CjLMtSUVGRQkNDj9uZAf8c72fF19zApx6p0slRXUyUUAd5W1JcqvllxgEAQIOSmmpKnBNy4ET8XkcKCDhvt4KaNzf79u49ui052fTB18btIQAAUG/Z7YEpcY76xadEqmnTpj53Jebm5la1TWgo3G7pt9+krVulJk3M7Z7Vq83S4Tk5ZnByTIwZmLxkiXlN375mmfG8PLPM+JYt0rRpJFMAAACoUT4lUk899VTgW4KGJSPDLA+elydt2CBFREhdu0p79pRdUtyyTLIVFmZet2OHdPLJNbfMOAAAAOCFT4lUWlpa4FuChiMjw/Q67d17tIfp4EFp2TLTO9Wr19ElxV0uaf9+qVEjk1Tt22cGLDdpUjPLjAMAAABe+JRIuVwuT8UKl8t13GOpeofjcrvN/KecHFMCJzr66Mp3iYnSxo1mKN/JJ5tE6dAhqajIDPGzLFOD9NCho+cL9DLjAAAAgBc+z5HauXOn4uPj1aRJE6/zpSzLks1mU3FxcSDaifoiK+vo4gzH/hxFRJjEaO/eo71O4eFSaKhJpizL/Ds8/OhranKZcQAAAOAInxKpzz//XM2aNZMkffHFF4FuE+ozp9NU3YuJKb8vNlZq1sz0SJX0OsXGmoRqzx7zPD7+aNJUssx4nz41t8w4AAAA4GsiNXDgQK//BvzmcJgepLy88r1INpsZ3rdnj7RtmzkuOlo66SQzfE+SEhKk4uLaW2YcAAAAqOw6Uvv27dM///lPZWZmSpJSUlJ07bXXenqtgAolJZlqe+npprepNMsyCdb555sEad06k0BFRkoXXGD2791rhgdGRpqeqNpaZhwAAKAeGTdunPbv36933nknoO9js9n09ttva/jw4QF9n5rg9238r7/+Wu3atdPTTz+tffv2ad++fXr66afVvn17ff3114FpJeoPu90sohsXZ+ZK5eeb+U8ul3keFyfdeaf05JPSM89Ijz9uHl96SfrXv8pue+IJkigAAFDnjRs3TjabTTabTWFhYWrfvr3uvvtuFRQU1HbTalzJtfjLX/5SZvs777zj87q2NcXvHqnx48fryiuv1Pz58xUSEiJJKi4u1p///GeNHz9eP/30UyDaifokNdUsort4sXTggOlhiogo38PkrZw5Jc4BAECgud0mPnE6zVSEpKSATyO44IILtHDhQh0+fFjp6elKS0vzmlA0BJGRkZozZ45uvvlmNW3atLabUyG/fyKysrI0efJkTxIlSSEhIZo0aZKysrKqu32or1JTpccek26+WXr0UXqYAABAcMjIkCZNkiZONKNkJk40zzMyAvq2ERERatWqlRITEzV8+HANGjRIn376qWe/2+3W7Nmz1b59e0VFRalHjx564403PPv37dun0aNHq0WLFoqKilKnTp20cOFCz/6ffvpJ5557rqKiotS8eXPddNNNOnjwoNe2PP/880pISJDb7S6z/dJLL9V1113nef7uu++qV69eioyMVIcOHTRjxgwVFRV59m/cuFFnnXWWIiMjlZKSUubzHM+gQYPUqlUrzZ49+7jHvfnmm+rWrZsiIiLUrl07PfHEEz6dv7r4nUj16tXLMzeqtMzMTPXo0aO62oWGwG43hST69DE9TRSMAAAAtSkjQ5o508zlbtZM6tTJPKanm+0BTqZKrFmzRt99953CSy35Mnv2bC1evFgLFizQzz//rDvuuEPXXHONvvrqK0nS1KlTtXbtWn388cfKzMzU/PnzFRcXJ0nKy8vTkCFD1LRpU61cuVKvv/66li5dqgkTJnh9/8svv1x79+4tU607NzdXn3zyiUaPHi1J+uabbzR27FjddtttWrt2rZ577jm9+OKLevjhh6Ujid+IESMUHh6uFStWaMGCBbrnnnt8+vwhISF65JFH9Mwzz2j79u1ej0lPT9cVV1yhUaNG6aefftKDDz6oqVOn6sUXX/T5OleVT0P7/ve//3n+feutt+q2225TVlaW/vCHP0iSvv/+e/3tb39rkF2PAAAAqAfcbmnRIiknxxTGKpmPExtrnmdmmmkJPXoE5ObvBx98oEaNGqmoqEiFhYWy2+169tlnJUmFhYWaPXu2li5dqn79+kmSOnTooG+//VbPPfecBg4cqK1btyo1NVV9+vSRJLVr185z7ldeeUUFBQVavHixYo4sQfPss89q2LBhmjNnjlq2bFmmLU2bNtXQoUP1yiuv6LzzzpMkvfHGG4qLi9M555wjSZoxY4buvfdepaWledoza9Ys3X333Zo+fbqWLl2qdevWacmSJUpISJAkPfLIIxo6dKhP1+OPf/yjevbsqenTp+uf//xnuf1z587Veeedp6lTp0qSOnfurLVr1+qxxx7TuHHj/L7+leFTItWzZ0/ZbDZZluXZdvfdd5c77uqrr9aVV15ZvS0EAAAAAi0ryyRLbdocTaJK2Gxm+9q15rgAzNk+55xzNH/+fOXl5enJJ59UaGioRo4cKcuylJWVpfz8fJ1//vllXnPo0CGlHpkWccstt2jkyJFatWqVBg8erOHDh+uMM86QSo0ciym1jmf//v3ldru1fv36comUJI0ePVo33nij5s2bp4iICL388ssaNWqU7EeSyNWrV2vZsmWeHigdqZtQUFCg/Px8ZWZmKjEx0ZNESfIkgb6aM2eOzj33XN15553l9mVmZurSSy8ts61///566qmnVFxcXGYaUqD4lEht3rw54A0BAAAAao3TKRUUSKWSjTKio82yLE5nQN4+JiZGSUlJkqQXXnhBPXr00D//+U9dd911ysvLkyR9+OGHOumkk8q8LiIiQpI0dOhQbdmyRR999JE+/fRTnXfeeRo/frwef/zxSrVn2LBhsixLH374ofr27atvvvlGTz75pGf/wYMHNWPGDI0YMaLcayMjIyv1nsc666yzNGTIEE2ZMqXGepn84VMi1bZt28C3BAAAAKgtDodZpzIvr/xal5JZsiUy0hwXYHa7Xffdd58mTZqkq666SsnJyYqIiNDWrVs1cODACl/XokULpaWlKS0tTQMGDNBdd92lxx9/XMnJyXrxxReVl5fn6ZVatmyZ7Ha7unTp4vVckZGRGjFihF5++WVlZWWpS5cu6tWrl2d/r169tH79ek/yd6zk5GRt27ZNO3fuVOvWraUj04H89Ze//EU9e/Ys187k5GQtW7aszLZly5apc+fONdIbpcouyCtJa9eu1datW3Xo0KEy2y+55JLqaBcAAABQc5KSzFyo9PSyc6QkybKk7dtNgawKEofqdvnll+uuu+7S3/72N91+++2aPHmy7rjjDrndbp155plyOp1atmyZYmNjlZaWpmnTpql3797q1q2bCgsL9cEHHyg5OVk6Mkxv+vTpSktL04MPPqg9e/Zo4sSJGjNmjNdhfSVGjx6tiy++WD///LOuueaaMvumTZumiy++WCeffLIuu+wy2e12rV69WmvWrNFDDz2kQYMGqXPnzkpLS9Njjz0ml8ul+++/3+/r0L17d40ePVpPP/10me2TJ09W3759NWvWLF155ZVavny5nn32Wc2bN8/v96gsvxOpX375RX/84x/1008/lZk3VbJAVnFxcfW3EgAAAAgku11KS5O2bDk6Vyo62vREbd8uxcWZ9S5rqMpwaGioJkyYoMcee0w33nijZs2apfj4eM2ePVu//PKLmjRpol69eum+++6TJIWHh2vKlCn69ddfFRUVpQEDBujVV1+VJEVHR2vJkiW67bbb1LdvX0VHR2vkyJGaO3fucdtw7rnnqlmzZlq/fr2uvvrqMvuGDBmiDz74QDNnztScOXMUFhamrl276oYbbpCO9Kq9/fbbuv7663XaaaepXbt2evrpp3XBBRf4fS1mzpypf//732W29erVS6+99pqmTZumWbNmqXXr1po5c2aNDgG0WaUrSPhg2LBhCgkJ0T/+8Q+1b99e//3vf7V3715NnjxZjz/+uAYMGBC41gaIy+WSw+GQ0+lUrLeuXASE2+1Wdna24uPjPRMXAQAAKqugoECbN29W+/btKz9PJyPDVO/LzDRzpiIjpZQUk0TVwnqXlmWpqKhIoaGhno4LVN3xflZ8zQ387pFavny5Pv/8c8XFxclut8tut+vMM8/U7NmzdeuttyqjhurrAwAAANUuNdWUOM/KMoUlHA4znI+bvjiG34lUcXGxGjduLEmKi4vTjh071KVLF7Vt21br168PRBsBAACAmmO3B6TEOeoXvxOpU045RatXr1b79u11+umn69FHH1V4eLief/55dejQITCtRL3mdnPTBwAAAHWL34nUAw884KllP3PmTF188cUaMGCAmjdvXm4SGHAimzZJc+aY9e1KhiEnJ5u5nrUwDBkAAADwid+J1JAhQzz/TkpK0rp165Sbm6umTZsyAQ5++fFH6dVXpdWrpZNOMuvf5eWZqqNbtkjTppFMAQAA//lZSw0NUHX8jFRpANW2bdu0bds2NWvWjCQKfnG7pZdeklwu0wMVGyuFhJjH5GQpJ0davNgcBwAA4IuShViPXecUOFZ+fr4kKSwsrNLn8LtHqqioSDNmzNDTTz+tgwcPSpIaNWqkiRMnavr06VVqDBqOrCxTVbRbN9MLVfqmgM1mlm5Yu9Ycx1xPAADgi9DQUEVHR2vPnj0KCwurF8urUP68elmWpfz8fGVnZ6tJkyae5Lsy/E6kJk6cqLfeekuPPvqo+vXrJx0pif7ggw9q7969mj9/fqUbg4bD6Tw6J+rIlLsyoqOlHTvMcQAAAL6w2Wxq3bq1Nm/erC1bttR2c6qFZVlyu92y2+0kUtWoSZMmatWqVZXO4Xci9corr+jVV1/V0KFDPdtOPfVUJSYm6qqrriKRgk8cDpNEFRR435+fb/Y7HDXdMgAAUJeFh4erU6dO9WZ4n9vt1t69e9W8efN60cMWDMLCwqrUE1XC70QqIiJC7dq1K7e9ffv2Cg8Pr3KD0DAkJR2dC3XswuOWJW3fLvXpY44DAADwh91uV+SxAUYd5Xa7FRYWpsjISBKpIOP3d2PChAmaNWuWCgsLPdsKCwv18MMPa8KECdXdPtRTdrs0ZowpLpGZaYpOFBWZx8xMKS5OGjuW9aQAAAAQnHzqkRoxYkSZ50uXLlWbNm3Uo0cPSdLq1at16NAhnXfeeYFpJeqlnj2lUaOk0FBTWGLHDtM71aePSaIofQ4AAIBg5VMi5ThmosrIkSPLPE9MTKzeVqHB6NhReuwx6ZdfTGEJh8MM56MnCgAAAMHMp0Rq4cKFgW8JGiy7nRLnAAAAqFv8LjZRYs+ePVq/fr0kqUuXLmrRokV1tgsAAAAAgpbfA6jy8vJ03XXXqXXr1jrrrLN01llnKSEhQddff71nhWAAAAAAqM/8TqQmTZqkr776Su+//77279+v/fv3691339VXX32lyZMnB6aVAAAAABBE/B7a9+abb+qNN97Q2Wef7dl24YUXKioqSldccQUL8gIAAACo9/zukcrPz1fLli3LbY+Pj2doHwAAAIAGwe9Eql+/fpo+fboKCgo8237//XfNmDFD/fr1q+72AQAAAEDQ8Xto31NPPaULLrig3IK8kZGRWrJkSSDaCAAAAABBxe9Eqnv37tq4caNefvllrVu3TpJ01VVXafTo0YqKigpEGwEAAAAgqPiVSB0+fFhdu3bVBx98oBtvvDFwrQIAAACAIObXHKmwsLAyc6MAAAAAoCHyu9jE+PHjNWfOHBUVFQWmRQAAAAAQ5PyeI7Vy5Up99tln+s9//qPu3bsrJiamzP633nqrOtsHAAAABDe3W8rKkpxOyeGQkpIku9/9Fahj/P4ON2nSRCNHjtSQIUOUkJAgh8NR5iuQ/vKXv8hms+n222/3bCsoKND48ePVvHlzNWrUSCNHjtTu3bsD2g4AAABAkpSRIU2aJE2cKN15p3mcNMlsR73md4/UwoULA9OSE1i5cqWee+45nXrqqWW233HHHfrwww/1+uuvy+FwaMKECRoxYoSWLVtWK+0EAABAA5GRIc2cKeXkSG3aSDExUl6elJ4ubdkiTZsmpabWdisRID73SLndbs2ZM0f9+/dX3759de+99+r3338PbOuOOHjwoEaPHq2///3vatq0qWe70+nUP//5T82dO1fnnnuuevfurYULF+q7777T999/XyNtAwAAQAPkdkuLFpkkKjlZio2VQkLMY3Ky2b54sTkO9ZLPPVIPP/ywHnzwQQ0aNEhRUVH661//quzsbL3wwguBbeGRAhcXXXSRBg0apIceesizPT09XYcPH9agQYM827p27aqTTz5Zy5cv1x/+8Aev5yssLFRhYaHnucvlko4ki25+2GuM2+2WZVlccwAAUPds3CitWyclJpafD2Wzme2Zmea4Tp0q/TbESzXP12vtcyK1ePFizZs3TzfffLMkaenSpbrooov0j3/8Q/YATqZ79dVXtWrVKq1cubLcvl27dik8PFxNmjQps71ly5batWtXheecPXu2ZsyYUW77nj17KO9eg9xut5xOpyzLCujPEAAAQLXLzpZat5YSErwXlmjWTIqIMMdVoY4A8VLNO3DggE/H+ZxIbd26VRdeeKHn+aBBg2Sz2bRjxw61adOmcq08gW3btum2227Tp59+qsjIyGo775QpUzRp0iTPc5fLpcTERLVo0UKxsbHV9j44PrfbLZvNphYtWvCHAQAA1C1Op7Rzp1RYaIbzHcvlknJzpfh481VJxEs1z9e8w+dEqqioqNxJw8LCdPjwYf9b56P09HRlZ2erV69enm3FxcX6+uuv9eyzz2rJkiU6dOiQ9u/fX6ZXavfu3WrVqlWF542IiFBERES57Xa7nR/QGmaz2bjuAACg7unUSera1RSWSE42w/lKWJa0bZvUp485ropxDvFSzfL1OvucSFmWpXHjxpVJQAoKCvSnP/2pzFpS1bmO1HnnnaeffvqpzLZrr71WXbt21T333KPExESFhYXps88+08iRIyVJ69ev19atW9WvX79qawcAAABQht0upaWZ6nyZmaZqX3S0lJ8vbd8uxcVJY8eynlQ95nMilZaWVm7bNddcU93tKaNx48Y65ZRTymyLiYlR8+bNPduvv/56TZo0Sc2aNVNsbKwmTpyofv36VVhoAgAAAKgWqammxPmiRSaZ2rFDiow0PVFjx1L6vJ7zOZGqrfWjTuTJJ5+U3W7XyJEjVVhYqCFDhmjevHm13SwAAAA0BKmpUo8eUlaWmTflcEhJSfRENQA2y7Ks2m5EbXO5XHI4HHI6nRSbqEFut1vZ2dmKj49nzC8AAIAXxEs1z9fcgO8GAAAAAPiJRAoAAAAA/EQiBQAAAAB+IpECAAAAAD+RSAEAAACAn0ikAAAAAMBPJFIAAAAA4CcSKQAAAADwE4kUAAAAAPiJRAoAAAAA/EQiBQAAAAB+Cq3tBqDuc7ulrCzJ6ZQcDikpSbKTogMAgPrEW8AjEQQ1YCRSqJKMDGnRIikzUyookCIjpeRkKS1NSk2t7dYBAABUA28BT/PmZt/evQRBDRSJFCotI0OaOVPKyZHatJFiYqS8PCk9XdqyRZo2jb8jAACgjvMW8GzfLi1ZYvb37St16kQQ1ADR94hKcbvNjZmcHHPzJTZWCgkxj8nJZvvixeY4AACAOslbwGO3S7/9JoWFma8dO8w2gqAGh0QKlZKVZXq327SRbLay+2w2s33tWnMcAABAneQt4HG5pP37pUaNTO/Uvn1mjpQIghoaEilUitNphgPHxHjfHx1t9pf8XQEAAKhzvAU8hw5JRUVSaKj5Kioy20oQBDUYJFKoFIfDzKnMy/O+Pz/f7Hc4arplAAAA1cRbwBMefjSBKkmowsOP7icIajBIpFApSUlmGPD27ZJlld1nWWZ7SsrRyqAAAAB1jreAJzZWatJEOnjQJFhNmx5NmgiCGhQSKVSK3W6qe8bFmaHDLpe5KeNymedxcdLYsX4upeB2Sxs2SCtXmkcmaQIAgNrkLeApLpZOOkk6fNh8JSSYbVUKglAX2Szr2P6EhsflcsnhcMjpdCo2Nra2m1OneFtWISXF/P04UdVPt9ut7OxsxcfHy756NQtSAQCA4OQt4ImLMz1QpdeR8jUI8kOZeInkrEb4mhuwjhSqJDVV6tGjiot6//ijNGsWC1IBAIDgVFHAI1UxCEJdRiKFKrPbpc6dK/lit1t66aWj6zOUlBYtWYshM9OsxdCjB3+YAABA7ako4Kl0EIS6jsgUtWvnThakAgAAQJ1DIoXalZ/PglQAAACoc0ikULuio1mQCgAAAHUOiRRqV+vWLEgFAACAOodECrXLbpfGjKnmBakAAACAwCI6Re3r2dOUOO/dW8rNNYUlcnOlPn0ofQ4AAICgRPlzBIdqWZAKAAAAqBkkUggeVVqQCgAAAKg53O4HAAAAAD+RSAEAAACAn0ikAAAAAMBPJFIAAAAA4CeKTaBGuN3lC/IBAACgFG8Bk9st/fabtHWrFBtrjjtwoHyFY2+vrQPVj+tosyUSKdSEjAxp0SKzvm5BgRQZKSUnm3V2ExJqu3UAAABBwFvA1Ly5ZLNJMTHSqlXSnj3m2Lg485WcLKWlmW3egq20tKBej7OiGDHIm+1BIoWAysiQZs6UcnKkNm3M34G8PCk93dxYmTxZio+v7VYCAADUIm8B0/bt0pIlpnvmggukvXul/Hxz/N69UosWJqBavdpsKyoqH2xt2SJNmxaUWcnxYsQgbnYZdaTjDHWR223uMuTkmLsLsbFSSIh5TE4227/4whwHAADQIHkLmOx2M5wvLMx87dhhumyaNzc9UYWFZn+XLtKGDeara1fvwdbixUEXbPkSIwZhs8shkULAZGWZrto2bUyvdGk2m9m+dau0aVNttRAAAKCWeQuYXC5p/36pUSMpPFz6/XfzWLI/Jsbs37nTZBtut5k3VVpJsLV2rXmPIOJLjBiEzS6HRAoB43SamycxMd73R0dLhw+b4wAAABokbwHToUNmqF5oqMksLKtsBYbQULM/P9/ssyzzmmNFR5tzB1mw5UuMGITNLodECgHjcJhJg3l53vfn55veaoejpltWTdxu05W+cqV5DPb+ZwAAEHy8BUzh4UeTJcsyyVTpOKMkyYqONvtsNvOaY+Xnm3MHWbDlS4wYhM0uh2ITCJikJDPONT3dPJbuurUsM4dy8GCpY8fabGUl1fUyMwAAIDh4C5hiY6UmTUyVPrtdiooyPU5RUWZ/Xp6ZK9W69dGeqsaNy563JNjq0yfo1p3xJUYMwmaXQ48UAsZuN3lFXJzJN1wucwPF5TLP4+Kkc86pO2sFeJSUmUlPl5o1kzp1Mo/p6WZ7RkZttxAAANQV3gKm4mLppJPMHIjDh816MZGRplpfTo7pfTrpJGn9eqlzZ/O1bp33YGvs2KALtnyJEYOw2eXYLMuyarsRtc3lcsnhcMjpdCq2ZKEzVBtvnTcpKdKYMW4lJGQrPj5e9mD/TSnhdkuTJlV8CyUz09xCeeKJ4P/tBwAAwcNbwBQXJ7ek7JgYxa9aJfux60ilpJiMQ17WkSrZF8QjZSqKEWu72b7mBgztQ8Clpko9epRftVqSsrNru3V+8qfMTOfOtdVKAABQ11QUMLndZq2o4mIz5E8yFfpK9pfcuPX22iC/qVvRRw7yZnuQSKFG2O3l84o6WZvBlzIzO3YEf5kZAAAQfLwFTJIZxhcff/wMo6LXBrk62myJOVKAn+pLmRkAAABUCYkU4I+SMjPbt5s5UaWVlJlJSQn+MjMAAACoEhIpwB/1pcwMAAAAqoRoD/BXaqo0bZrUu7eUm2tmSObmmmp906YFdXUcAAAAVA+KTQCVUdfLzAAAAKBKSKSAyqrLZWYAAABQJdw+BwAAAAA/kUgBAAAAgJ9IpAAAAADATyRSAAAAAOAnEikAAAAA8BNV+1D93G7/yoL7ezwAAEBNqkqsUtFrT3TOkv3790shIVJcHPFRkCGRQvXKyJAWLZIyM6WCAikyUkpOltLSvC9Uu2mTNGeOtHatb8cDAADUJH9jG19ee/rp0ooVFZ+z9OsKC81yKzEx0tixxEdBhEQK1ScjQ5o5U8rJkdq0Mb/weXlSerq0ZYs0bVrZX/4ff5RefVVavVo66aQTHw8AAFCT/I1tfHntV19Jr70mtWwpde1a/pxXXGH2l7yuUSOpcWNp5Urp11+Jj4II/YOoHm63uXOSk2PuqMTGmm7o2FjzPCdHWrzYHFdy/EsvSS6Xb8cDAADUJH9jG19e27ixdPiwdPCgVFRknpc+55490qOPmsfSr4uOJj4KQiRSqB5ZWab7uU0byWYru89mM9vXrjXHlT4+Ls634wEAAGqSv7GNL691ucycqKZNzdwnp7PsOR0Oads2qUkT4qM6gEQK1cPpNGN8Y2K874+ONvtL/mCUHB8Z6dvxAAAANcnf2MaX1x46ZHqiIiLM46FDZfeHhJgeq5AQ/98TNY5ECtXD4TBJUV6e9/35+Wa/w1H2+IIC344HAACoSf7GNr68NjxcCg01BSRCQ83z0oqLpbAw8+jve6LGkUiheiQlmbG727dLllV2n2WZ7Skp5rjSx+fk+HY8AABATfI3tvHltbGxJgnat88M3yudEFmW6WlKTDTD/oiPgh6JFKqH3W5KdsbFmTHBLpfpsna5js6FGjv26PoHdrs0Zoz5g+LL8QAAADXJ39jGl9ceOGB6nBo1Mj1SBw6UPWeLFtLdd5vH0q/Lzyc+CkI2yzo23W14XC6XHA6HnE6nYmNja7s5dZu39RJSUryue+B2u5W9fLni33hD9tLrSFVwPAAAQI3zI7bx+bWnnVZ+HanS5yz1OndhobI7d1Z8o0ayjxlDfFQDfM0NSKRIpKqfj6t/u91uZWdnKz4uTvZffqncauEAAACB5mNs49drT3TOI/vd+/crOyRE8T16yB7KErA1wdfcgO8Gqp/dblbgDtTxAAAANakqsUpFrz3ROUv2u91SdjY3mYMQ3xEAAAAA8BOJFAAAAAD4iUQKAAAAAPxEIgUAAAAAfiKRAgAAAAA/kUgBAAAAgJ9IpAAAAADATyRSAAAAAOAnEikAAAAA8BOJFAAAAAD4iUQKAAAAAPwU1InU7Nmz1bdvXzVu3Fjx8fEaPny41q9fX+aYgoICjR8/Xs2bN1ejRo00cuRI7d69u9ba3GC53dKGDdLKlebR7a7tFgEAAAQvYqc6L7S2G3A8X331lcaPH6++ffuqqKhI9913nwYPHqy1a9cqJiZGknTHHXfoww8/1Ouvvy6Hw6EJEyZoxIgRWrZsWW03v+HIyJAWLZIyM6WCAikyUkpOltLSpNTU2m4dAABAcCF2qhdslmVZtd0IX+3Zs0fx8fH66quvdNZZZ8npdKpFixZ65ZVXdNlll0mS1q1bp+TkZC1fvlx/+MMffDqvy+WSw+GQ0+lUbGxsgD9FPZORIc2cKeXkSG3aSDExUl6etH27FBcnTZtW4R8Et9ut7OxsxcfHy24P6s5RAACA6uFn7ES8VPN8zQ3q1HfD6XRKkpo1ayZJSk9P1+HDhzVo0CDPMV27dtXJJ5+s5cuX11o7Gwy329xNyckxd1FiY6WQEPOYnGy2L15MVzUAAICIneqboB7aV5rb7dbtt9+u/v3765RTTpEk7dq1S+Hh4WrSpEmZY1u2bKldu3ZVeK7CwkIVFhZ6nrtcLs97uPnB9d3GjdK6dVJionTsHRKbzWzPzDTHdepU7uVut1uWZXHNAQBAw1CJ2Il4qeb5eq3rTCI1fvx4rVmzRt9++22VzzV79mzNmDGj3PY9e/aooKCgyudvMLKzpdatpYSE8n8MJKlZMykiwhzncJTb7Xa75XQ6ZVkWXdUAAKD+q0TsRLxU8w4cOODTcXUikZowYYI++OADff3112rTpo1ne6tWrXTo0CHt37+/TK/U7t271apVqwrPN2XKFE2aNMnz3OVyKTExUS1atGCOlD+cTmnnTqmw0HRJH8vlknJzpfh483UMt9stm82mFi1a8IcBAADUf5WInYiXal5kZKRPxwV1ImVZliZOnKi3335bX375pdq3b19mf+/evRUWFqbPPvtMI0eOlCStX79eW7duVb9+/So8b0REhCIiIsptt9vt/ID6o1MnqWtXKT3djOu12Y7usyxp2zapTx9zXAXX1Wazcd0BAEDDUMnYiXipZvl6nYM6kRo/frxeeeUVvfvuu2rcuLFn3pPD4VBUVJQcDoeuv/56TZo0Sc2aNVNsbKwmTpyofv36+VyxD1Vgt5synVu2mPG8bdpI0dFSfv7RyjNjx1aYRAEAADQoxE71SlCXP7eVztJLWbhwocaNGycdWZB38uTJ+r//+z8VFhZqyJAhmjdv3nGH9h2L8udV5G0thJQU84fgOGshUM4TAAA0SH7ETsRLNc/X3CCoE6maQiJVDdxuKSvLjP11OKSkpBPeTeEPAwAAaLB8jJ2Il2qer7lBUA/tQx1it0udO9d2KwAAAOoGYqc6j7QWAAAAAPxEIgUAAAAAfmJoHxqGSszhAgAAACpCIoX6z1tlnORkU370OFUFAQAAgIqQSKF+y8iQZs6UcnLMWg0xMVJenlkIb8sWado0kikAAAD4jbFNqL/cbtMTlZNjeqBiY6WQEPOYnGy2L15sjgMAAAD8QCKF+isr6+iq4ccu7myzme1r15rjAAAAAD+QSKH+cjrNnKiYGO/7o6PNfqezplsGAACAOo5ECvWXw2EKS+Tled+fn2/2Oxw13TIAAADUcSRSqL+SksxcqO3bJcsqu8+yzPaUFHMcAAAA4AcSKdRfdrspcR4XZ+ZKuVxSUZF5zMw028eOZT0pAAAA+I3y56jfUlNNifOSdaR27DDD+fr0MUkUpc8BAKjb3G5TOMrpNMP1k5Jq/iZpgNrgdksbN0rZ2ebUnTpV00dzu6UNG6Q1a8zzU06ROnfm5rKfSKRQ/6WmSj161P4fWQAAUL0yMo7eLC0oMDdLk5PNiJSaulkaoDaUnHbdOql1a2nnTqlr12r4aBkZ0mOPScuWmVE6klkapn9/6a67uMnsBxIpNAx2u7nTAgAA6oeMDGnmTLMuZJs2pkpvXp6Uni5t2WJGpAQ6KQhQG0qfNjFRSkiQCgur4aNlZEiTJkn/+5+JjZo2NUvCuFzSkiUmW5s7l2TKR9ySxwmV9P6uXGkeWb8WAADUKrfbdNfk5Jjen9hYKSTEPCYnm+2LFwc2aAlQG7yd1m6vho/mdksvvmiCubAwqXlzKSJCCg8388bDwsy+RYsI9nxEjxSOKxh6zAEAAMrIyjLBSZs2pkelNJvNbF+71hwXqBEpAWpDwD5aVpbp0nK7Tc/ZsSdv1Mj0pv3wQ2CvWz1CjxQqVNKtnJ4uNWtmJjg2a2aez5xp9gMAANQ4p9Pc4Y2J8b4/OtrsdzrrXBsC9tGcTrOGpiSFeulLCQ01y8Pk5QX2utUjJFLwKhh6zAEAALxyOMwwmbw87/vz881+h6POtSFgH83hMFmYZJaDOVZRkemliokJ7HWrR0ik4JU/3coAAAA1KinJ3Nndvt30opRmWWZ7Soo5ro61IWAfLSlJ6t3bTLjKyyt/8oMHzb4+fQJ73eoREil4FQw95gAAAF7Z7WbCdlycufPrcpkeFZfLPI+LM+tFBnKpkwC1wdtpi4ur4aPZ7dK4cWbu0+HD0t69phRgYaEZanT4sNmXlsYSMT7iKsGrYOgxBwAAqFBqqqkD3ru3lJtrhsnk5poelZoofR7ANhx72p07q+mjpaaa8uZDhpi74vv2ma/oaOmCCyh97iebZR3br9fwuFwuORwOOZ1OxcbG1nZzgoLbbZYZSE833culh/dZlrkj0qeP9MQTlb9p4Xa7lZ2drfj4eNm58wEAACrD7TYJjNNp7vAmJdV8j0qA2uB2Sxs3Ho2XOnWyV89HK1nbZs0a8/yUU0xvFPGY5EduQPlzeFXSrbxly9G5UtHRpidq+/aa6TEPqGD4owsAAKrObq/9Ut0BaoPdbqomOxxSfHw1hip2u9S1q/lCpZFIoUIl3col60jt2GGG8/XpY5KoOtvzy+JYAAAAqCISKRxXaqrUo0c96rwpWRwrJ8d0s8XEmIlg6emm+62mxlQDAACgTiORwgkFQ495tTh2caySiV8li2NlZprFsXr0qMOZIgAAAGoC0SIaDhbHAgAAQDUhkULDweJYAAAAqCYkUmg4WBwLAAAA1YRECg1HUpKZC7V9u1kMqzTLMttTUsxxAAAAwHGQSKHhKFkcKy7OzJVyuaSiIvOYmVkPFscCAABATSFiRMNSsjhW795Sbq4pLJGbaxbHovQ5AAAAfET5czQ89W5xLAAAANQ0Eik0TPVmcSwAAADUBhIp1B9uN71MAADgqJqMDeprHFJfP1c1IJFC/ZCRIS1aZIpGFBSYMubJyaa4BPOeAABoeGoyNqivcUh9/VzVhEQKdV9GhjRzppSTI7VpYxbczcuT0tOlLVsoIgEAQENTk7FBfY1D6uvnqkb0y6Fuc7vNnZKcHHOHJDZWCgkxj8nJZvvixeY4AABQ/9VkbFBf45D6+rmqGYkU6rasLNPd3KaNZLOV3Wezme1r15rjAABA/VeTsUF9jUPq6+eqZiRSqNucTjNmNybG+/7oaLPf6azplgEAgNpQk7FBfY1D6uvnqmYkUqjbHA4z8TEvz/v+/Hyz3+Go6ZYBAIDaUJOxQX2NQ+rr56pmJFKo25KSzFjd7dslyyq7z7LM9pQUcxwAAKj/ajI2qK9xSH39XNWMRAp1m91uSnDGxZmxvC6XVFRkHjMzzfaxY1nvAACAhqImY4P6GofU189VzWyWdWya2fC4XC45HA45nU7FxsbWdnNqTi0vsOZ2u5Wdna34+HjZ7faqtcfbOgcpKeaXvIGX5gQAoEGqydgggO9VLl6qSQ00vvI1NyCRaqiJVBAssFbmD8Pq1VVvDytvAwCA0moyNgjQe9VqIqWGGV/5mhuwIG9DFGwLrP34ozRrVtXbY7dLnTvXRIsBAEBdUJOxQX2NQ+rr56oG9TudRHnBtsCa2y299FLwtAcAAADwAYlUQxNsC6zt3Blc7QEAAAB8QCLV0ATbAmv5+cHVHgAAgLrK7ZY2bJBWrjSPjOgJKOZINTSlF1jzNnmuphdYi44OrvYAAADURUFQSKyhoUeqoQm2BdZatw6u9gAAANQ1JYXE0tOlZs2kTp3MY3q62Z6RUdstrJdIpBqaYFtgzW6XxowJnvYAAADUJcFWSKwBITptiFJTTUnx3r2l3FxTyCE3V+rTp+ZLn0tSz57B1R4AAIC6ItgKiTUgzJFqqFJTpR49qrbAWnUu0FYd7QEAAGhofCkktmMHhbsCgESqIavKAmtVmdBYkoDt32+6nuPiTFtY8A0AAMA/wVZIrAEhkYL/SiY05uSY7uKYGPPLm54ubdly/OF4pROwwkKTOMXEmHlQDOEDAADwT0khsfR081h6eF9J4a4+fSjcFQCMm4J/qjKh0VtFmcaNqSgDAABQWcFWSKwBoUcq2FXnPKTq4M+ExtLD9I5NwGw28xUdbZ6vXWsSsB49Tvz5gu2aAACAui1QsUV1ndftljZuNMmRwyF16CD98svR8/boYUYElYz62bHDDOfr06fqo34CHXfV4biORCqYBePCapWd0FjZBOxYwXhNAABA3RWo2KK6zvvjj9KHH0rLlkm//y4dOnT0fOHhZc87d271JiWBjrvqeFxHIhWsqjIPKZAqO6GxOirKBOs1AQAAdVOgYovqOm9GhvTQQ2YqRLNmJs764QfTMxUba3qcoqICEwsFOu6qB3Fd3eg3a2iCeWG1kgmN27ebCYyllUxoTEkpP6GxdALmzYkqygTzNQEAAHVPoGKL6jpv6fMkJppkatMmM/8pIUEqLjbPGzeu/lgo0HFXPYnrSKSCUTAvrFbZCY2VTcBKBPM1AQAAdU+gYovqOu+x53E6zdIxMTHmeUyMee5yVX8sFOi4q57EdSRSwciXYXAFBbW3sFpqqulu7d1bys01P+S5uaZ7uaJu2IoSsPx83yrK7Ntn3iM/33zuY5Ox2r4mAACgbglUvFVd5z32PIcOmdgp9MjMnNBQ8/zQoaq1N5CfobbOX0OYIxWM6sLCaqmppkKMPxMaSxKwkkmFO3eawhJ9+khjxhx/7al586TNm6VffzWfvUkT89q4OHNMMFwTAABQdwQq3qqu8x47LSI8/GjyFB5+NKkKD69aewP5GWrr/DWERCoY1ZWF1ez241fY86Z0ArZ/vxkP26PH0bsrxyqZiLhnj9S8uUnawsPN2NmDB6Vevcz2YLkmAACgbghUvFVd5y05z6pVpty5w2FuJO/ZI4WFmSQkLs4kItUdHwY6Fq0rse4JMLQvGNX3hdVKErA+faSTTqr4c5SeiJiSIp1yiqlMk5dnunx//11as8aMoa3r1wQAANSsQMVb1XXe0ufZtk06cEDq2NHcfN6xw9yM7tjRbK/u+DDQsWg9iXVtlnXsZJOGx+VyyeFwyOl0KtZb92Jt8VZbPyWl6gur+cLb4mhSxUP5KrGYmtvtVnZ2tuLj42X3duyGDdLEiabcZ8n3JSfHbN+/XyosNO978cXSbbcFfYlMAAAQhAIVb1XTed2rVin7ww8Vv2yZ7BWtIxWo+DDQsWhtxrrH4WtuQCIVzImUamm1Z28/1M2bm31795ZfME2q1GJqJ0ykVq6U7rxT6tTJ3HUpYVnmevz+u5ln9eyz0umnV/tlAAAADUSg4q1qOK/b7Vb2rl2KP3BAdpfLnKdDB+mXX2omPgx0LFobse4J+JobMEcq2FVmHlJVeFscbft2ackSs79vX5PYlCyYtnq12V5UVP2LqVU0EdFmM2OE7XbTW9W0aTV8cAAA0GAFKt6qrvPa7Sb+Kp1g1FR8GOhYtKZj3WoU3AMPUbO8LY5mt0u//WYmNYaFmTG5drvZ17WrGWa3YYP5d3UvplbVtacAAACAACGRwlHeFkdzucx8pEaNTG/Tvn1Ha/q7XCZJcrvNRMfSqmMxtXoyEREAAAD1D0P7cJS3xdFKFn+LiTG9QPn5ZptlmQVyDx0ySVNOjvl3eLjpkbLZTGW9HTuqtpjasWtP7dhhhvv16WOSqB49TI9YEI2rBQAAqDVBOOcoKNtUDUikcJS3OUmlF3+zLPPvvDzzy7Bnz9FeqeXLTeJUerHckkoyVV1MraLFf1evliZN8rvIBQAAQL3krWBYbcdGwdimakIihaO8LY4WG3t08TfJDPHbsMH8IoSEmCTKsqTi4qO/HDk5Zqhf06bS2WdXzxymYycieiuKUV1FLgAAAOqaYIyNgrFN1aju96mh+nibk1RcbBbNPXz46FdBgel92r/fJFORkSbpOnz46GK5ubkmmbr6atOTtHKlScAqW3iiNG9FMaqzyAUAAEBdEoyxUTC2qZrRI4WyKpqTdMEFZljd99+bpCk/3yReLVua4X4l86vy8syQvtatpYgIs8bTrl3V25XrrShGiWOLXNTRcpoAAAA+C8bYKBjbVM1IpFBeRXOSVq6UJkyQEhJMIrVmjemitdlM0lRYaHqhunc3vVLLlplkKzm5bFfur79K48aZ84SEmB4wbxMOK5qY6K0oRmnVUeQCAACgrgjG2CgY21TNSKTgnbfF0Zo2NQvgRkdLUVFHi1CEhZlkym4325s2NYUgiovNOUoKV8TGSi1aSCtWmDGz7dpJXbqYX7CxY8v2Uh1vYmJFC/WWyM+vniIXAAAAdUEwxkbB2KZqxhwpeOd2mzlNpec2lV4gt3FjU4QiL88cb1nm302bmufZ2VJ8vDmmRE6OSZAOHTJfLVua86Snm4mIGRnmuJKJienpJnHr1Mk8lhx34AAL9QIAAJQoHaMFS2wUjG2qZvRIobzj9QalpZkqK+vWmSIULpdJkHSkizYhwSReISFHK//pyC/Mhg3S77+bpKikkEV0tDlu7Voz4bB797ITE0teXzIxMTNT+te/pDFjTDtKxt5GR5s7G9u3s1AvAABoWEoKhgVTbBSMbapmdbflCIwT9QZJphhF794mOYqLM78U0dHm35Yl9expXhcVdfS8Tqep8hcTYxKo0FBTlELHTDj87DPfJiY2bny0Hbm5Zi5Vbq5ZqLeOl9IEAADwW0nBsGCKjYKxTdWo3vRI/e1vf9Njjz2mXbt2qUePHnrmmWd02mmn1Xaz6pZjy1R66w1avFh64glp7tyjhSAaNzbHHThgxrl26CDdeWfZ9agOHTLzqaKjTW9UXFzZ8bIlEw5LKvz5MjGxb1/vRTHq8J0NAACASquoYFhtxkbB2KZqUi8SqX//+9+aNGmSFixYoNNPP11PPfWUhgwZovXr1ys+Pr62m1d3+Fum8nilKo/tyg0JMdtzc82ivp07l32PkgmHrVr5NzHRW1EMAACAhioYY6NgbFM1qPupoKS5c+fqxhtv1LXXXquUlBQtWLBA0dHReuGFF2q7aXWLL2UqCwp8K1N5bFdudrYZyhcebvbFxR09tvSEw/POq/cTEwEAAFD31fkeqUOHDik9PV1TpkzxbLPb7Ro0aJCWL1/u9TWFhYUqLCz0PHceSQz2798vdx1eXbnK7HZTyrz0cL3SDhww++12M9/pRNq3N8nU5s3mnLt2Sa+8Yh5DQuSOjpZr3z6Fr1kje7Nm0h//KB08KI0YIW3aZNapOukkM9fq99+l336Tmjc3x7lcAbkEAAAAwcTtdsvlcik8PFz2ejAcri5wHYkzrWNv6h+jzidSOTk5Ki4uVsuWLctsb9mypdatW+f1NbNnz9aMGTPKbW/btm3A2lmv9OkTmPN+8EH1HgcAAABU0oEDB+Q4zjpXdT6RqowpU6Zo0qRJnudut1u5ublq3ry5bMfODULAuFwuJSYmatu2bYr1Nh8KAACggSNeqnmWZenAgQNKSEg47nF1PpGKi4tTSEiIdu/eXWb77t271apVK6+viYiIUERERJltTUovHIsaFRsbyx8GAACA4yBeqlnH64kqUecHWoaHh6t379767LPPPNvcbrc+++wz9evXr1bbBgAAAKB+qvM9UpI0adIkpaWlqU+fPjrttNP01FNPKS8vT9dee21tNw0AAABAPVQvEqkrr7xSe/bs0bRp07Rr1y717NlTn3zySbkCFAguERERmj59erlhlgAAADCIl4KXzTpRXT8AAAAAQBl1fo4UAAAAANQ0EikAAAAA8BOJFAAAAAD4iUQKdVq7du301FNPeZ7bbDa98847tdomAAAA1H8kUqhXdu7cqaFDh9Z2MwAAAI7r7LPP1u23317bzZAkFRQUaNy4cerevbtCQ0M1fPjw2m5SnUAihTIOHTpU202oklatWlEeFAAAwA/FxcWKiorSrbfeqkGDBtV2c+oMEql67uyzz9aECRM0YcIEORwOxcXFaerUqSqpet+uXTvNmjVLY8eOVWxsrG666SZJ0ptvvqlu3bopIiJC7dq10xNPPOHze7Zr104PPfSQxo4dq0aNGqlt27Z67733tGfPHl166aVq1KiRTj31VP3www9lXvftt99qwIABioqKUmJiom699Vbl5eV59mdnZ2vYsGGKiopS+/bt9fLLL5d772OH9t1zzz3q3LmzoqOj1aFDB02dOlWHDx/27H/wwQfVs2dPvfTSS2rXrp0cDodGjRqlAwcO+HmlAQBAfXX22Wdr4sSJuv3229W0aVO1bNlSf//735WXl6drr71WjRs3VlJSkj7++GPPa9asWaOhQ4eqUaNGatmypcaMGaOcnBxJ0rhx4/TVV1/pr3/9q2w2m2w2m3799VcVFxfr+uuvV/v27RUVFaUuXbror3/9a7n2vPDCC544rXXr1powYcJx279v3z6NHTtWTZs2VXR0tIYOHaqNGzd69sfExGj+/Pm68cYb1apVq2q9dvUZiVQDsGjRIoWGhuq///2v/vrXv2ru3Ln6xz/+4dn/+OOPq0ePHsrIyNDUqVOVnp6uK664QqNGjdJPP/2kBx98UFOnTtWLL77o83s++eST6t+/vzIyMnTRRRdpzJgxGjt2rK655hqtWrVKHTt21NixYz0J3aZNm3TBBRdo5MiR+t///qd///vf+vbbb8v8YRg3bpy2bdumL774Qm+88YbmzZun7Ozs47ajcePGevHFF7V27Vr99a9/1d///nc9+eSTZY7ZtGmT3nnnHX3wwQf64IMP9NVXX+kvf/mLH1cYAADUd4sWLVJcXJz++9//auLEibrlllt0+eWX64wzztCqVas0ePBgjRkzRvn5+dq/f7/OPfdcpaam6ocfftAnn3yi3bt364orrpAk/fWvf1W/fv104403aufOndq5c6cSExPldrvVpk0bvf7661q7dq2mTZum++67T6+99pqnHfPnz9f48eN100036aefftJ7772npKSk47Z93Lhx+uGHH/Tee+9p+fLlsixLF154YZmby6gEC/XawIEDreTkZMvtdnu23XPPPVZycrJlWZbVtm1ba/jw4WVec/XVV1vnn39+mW133XWXlZKS4tN7tm3b1rrmmms8z3fu3GlJsqZOnerZtnz5ckuStXPnTsuyLOv666+3brrppjLn+eabbyy73W79/vvv1vr16y1J1n//+1/P/szMTEuS9eSTT3q2SbLefvvtCtv22GOPWb179/Y8nz59uhUdHW25XK4yn/X000/36bMCAID6b+DAgdaZZ57peV5UVGTFxMRYY8aM8WwriXeWL19uzZo1yxo8eHCZc2zbts2SZK1fv95zzttuu+2E7z1+/Hhr5MiRnucJCQnW/fff73PbN2zYYEmyli1b5tmWk5NjRUVFWa+99lq549PS0qxLL73U5/M3ZPRINQB/+MMfZLPZPM/79eunjRs3qri4WJLUp0+fMsdnZmaqf//+Zbb179+/zGtO5NRTT/X8u2XLlpKk7t27l9tW0qO0evVqvfjii2rUqJHna8iQIXK73dq8ebMyMzMVGhqq3r17e87RtWtXNWnS5Ljt+Pe//63+/furVatWatSokR544AFt3bq1zDHt2rVT48aNPc9bt259wp4uAADQsJSObUJCQtS8efMKY5vVq1friy++KBPXdO3aVToyEuZ4/va3v6l3795q0aKFGjVqpOeff94Tu2RnZ2vHjh0677zzvL72T3/6U5n31JG4LjQ0VKeffrrnuObNm6tLly7KzMys0jVp6EJruwGofTExMdV+zrCwMM+/S5I4b9vcbrck6eDBg7r55pt16623ljvXySefrA0bNvjdhuXLl2v06NGaMWOGhgwZIofDoVdffbXcfK/S7SppW0m7AAAAVEG8UFFsc/DgQQ0bNkxz5swpd57WrVtX+B6vvvqq7rzzTj3xxBPq16+fGjdurMcee0wrVqyQJEVFRR23jTNnztSdd97p92dD5ZBINQAlv3wlvv/+e3Xq1EkhISFej09OTtayZcvKbFu2bJk6d+5c4WuqqlevXlq7dm2FY3y7du2qoqIipaenq2/fvpKk9evXa//+/RWe87vvvlPbtm11//33e7Zt2bIlAK0HAAA4qlevXnrzzTfVrl07hYZ6D7fDw8PLjfRZtmyZzjjjDP35z3/2bCvdg9W4cWO1a9dOn332mc4555xy54yPj1d8fHyZbcnJySoqKtKKFSt0xhlnSJL27t2r9evXKyUlpcqftSFjaF8DsHXrVk2aNEnr16/X//3f/+mZZ57RbbfdVuHxkydP1meffaZZs2Zpw4YNWrRokZ599tmA3uG455579N1332nChAn68ccftXHjRr377rueYhNdunTRBRdcoJtvvlkrVqxQenq6brjhhuPemenUqZO2bt2qV199VZs2bdLTTz+tt99+O2CfAQAAQJLGjx+v3NxcXXXVVVq5cqU2bdqkJUuW6Nprr/UkT+3atdOKFSv066+/KicnR263W506ddIPP/ygJUuWaMOGDZo6dapWrlxZ5twPPvignnjiCT399NPauHGjVq1apWeeeabCtnTq1EmXXnqpbrzxRn377bdavXq1rrnmGp100km69NJLPcetXbtWP/74o3Jzc+V0OvXjjz/qxx9/DOBVqvtIpBqAsWPH6vfff9dpp52m8ePH67bbbvOUOfemV69eeu211/Tqq6/qlFNO0bRp0zRz5kyNGzcuYG089dRT9dVXX2nDhg0aMGCAUlNTNW3aNCUkJHiOWbhwoRISEjRw4ECNGDFCN910U7m7LqVdcskluuOOOzRhwgT17NlT3333naZOnRqwzwAAACBJCQkJWrZsmYqLizV48GB1795dt99+u5o0aSK73YTfd955p0JCQpSSkqIWLVpo69atuvnmmzVixAhdeeWVOv3007V3794yvVOSlJaWpqeeekrz5s1Tt27ddPHFF5cpZe7NwoUL1bt3b1188cXq16+fLMvSRx99VGZo4oUXXqjU1FS9//77+vLLL5WamqrU1NQAXaH6wWaV1J9GvXT22WerZ8+eeuqpp2q7KQAAAEC9QY8UAAAAAPiJRAp++eabb8qU1Tz2CwAAAGgIGNoHv/z+++/67bffKtx/opW1AQAAgPqARAoAAAAA/MTQPgAAAADwE4kUAAAAAPiJRAoAAAAA/EQiBQAAAAB+IpECAAAAAD+RSAEAAACAn0ikAAAAAMBPJFIAAAAA4Kf/BzH1sJ5lWGkqAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "# Average pro median forecast on questions that resolved yes/no vs top bot\n", "\n", @@ -845,17 +4221,29 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 39, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_322865/946735765.py:22: DeprecationWarning: DataFrameGroupBy.apply operated on the grouping columns. This behavior is deprecated, and in a future version of pandas the grouping columns will be excluded from the operation. Either pass `include_groups=False` to exclude the groupings or explicitly select the grouping columns after groupby to silence this warning.\n", + " weighted_scores = df_long.groupby('forecaster').apply(lambda x: (x['score'] * x['question_weight']).sum(axis=0))\n" + ] + } + ], "source": [ - "total_scores = df_bot_vs_pro_peer.sum(axis=0)\n", - "# remove resolution, question_weight, bot_question_id from total scores\n", - "total_scores = total_scores.drop(['resolution', 'question_weight', 'bot_question_id'])\n", + "bot_vs_pro_peer_for_scores = df_bot_vs_pro_peer.copy()\n", + "bot_vs_pro_peer_for_scores = bot_vs_pro_peer_for_scores.drop(['resolution', 'question_weight', 'bot_question_id', 'pro_median', 'options', 'type'], axis=1)\n", + "\n", + "total_scores = bot_vs_pro_peer_for_scores.sum(axis=0)\n", + "\n", + "df_bot_vs_pro_peer = df_bot_vs_pro_peer.drop('pro_median', axis=1)\n", "\n", "# First pivot to long format - each row will be a question-forecaster pair\n", "df_long = df_bot_vs_pro_peer.melt(\n", - " id_vars=['bot_question_id', 'question_weight', 'resolution'],\n", + " id_vars=['bot_question_id', 'pro_question_id', 'question_weight', 'resolution', 'type', 'options'],\n", " var_name='forecaster',\n", " value_name='score'\n", ")\n", @@ -890,7 +4278,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 40, "metadata": {}, "outputs": [], "source": [ @@ -903,12 +4291,526 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 41, "metadata": { "cellView": "form", "id": "tXKRpXAVHMRt" }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
RankForecasterWeighted_BaselineCountWeighted Count
01pro_median4238.5616079793.10
12metac-o13010.3537889692.10
23metac-perplexity2774.0803319490.10
34bot_median2481.5520109793.10
45acm_bot2239.0586758581.25
56metac-claude-3-5-sonnet-202406202018.1102119591.50
67manticAI1865.1262607470.45
78metac-exa1826.2756819490.10
89twsummerbot1819.0641416259.40
910metac-claude-3-5-sonnet-latest1740.3151889692.10
1011metac-Llama-3.11701.1824039490.10
1112jkraybill_bot1616.0557094745.05
1213metac-Gemini-Exp-12061595.6826128177.50
1314NextWorldLab1583.0262268581.25
1415metac-o1-preview1527.6571419692.10
1516metac-deepseek-r11518.3086255552.10
1617laylaps1500.5678746865.10
1718mmBot1482.7264459793.10
1819Grizeu_Bot1399.4777185552.35
1920metac-grok-2-12121167.8671619692.10
2021VeritasAI1136.6824928278.10
2122metac-gpt-4o1045.1336789692.10
2223SynapseSeer1039.4846352826.15
2324annabot1031.9739303129.30
2425GreeneiBot2932.8835806259.35
2526MWG741.4247473028.60
2627InstitutPelFutur722.6870159591.10
2728cookics_bot_TEST714.1983722927.40
2829Bot_Pepa660.8016994745.05
2930ajf-bot484.4450303735.25
3031swingswish429.96611287.70
3132KevinTestBot331.09944498.40
3233X_bot274.53936577.00
3334CumulativeBot253.8397011110.25
3435CatrachoCaster247.2667172119.70
3536jonahsingerbot224.15439254.70
36374Shadower210.5486171514.00
3738bean_bot210.54275254.70
3839pgodzinai177.1341048177.40
3940wunderplumb112.1502452725.55
4041krm-bot65.989405109.50
4142andrewsiah0.00000000.00
4243cobyj-bot0.00000000.00
4344RPM_bot-8.69053388.00
4445ProfessorSP-217.1062982018.60
4546pianobot-217.32120454.70
4647minefrac1-299.5665065552.10
\n", + "
" + ], + "text/plain": [ + " Rank Forecaster Weighted_Baseline Count \\\n", + "0 1 pro_median 4238.561607 97 \n", + "1 2 metac-o1 3010.353788 96 \n", + "2 3 metac-perplexity 2774.080331 94 \n", + "3 4 bot_median 2481.552010 97 \n", + "4 5 acm_bot 2239.058675 85 \n", + "5 6 metac-claude-3-5-sonnet-20240620 2018.110211 95 \n", + "6 7 manticAI 1865.126260 74 \n", + "7 8 metac-exa 1826.275681 94 \n", + "8 9 twsummerbot 1819.064141 62 \n", + "9 10 metac-claude-3-5-sonnet-latest 1740.315188 96 \n", + "10 11 metac-Llama-3.1 1701.182403 94 \n", + "11 12 jkraybill_bot 1616.055709 47 \n", + "12 13 metac-Gemini-Exp-1206 1595.682612 81 \n", + "13 14 NextWorldLab 1583.026226 85 \n", + "14 15 metac-o1-preview 1527.657141 96 \n", + "15 16 metac-deepseek-r1 1518.308625 55 \n", + "16 17 laylaps 1500.567874 68 \n", + "17 18 mmBot 1482.726445 97 \n", + "18 19 Grizeu_Bot 1399.477718 55 \n", + "19 20 metac-grok-2-1212 1167.867161 96 \n", + "20 21 VeritasAI 1136.682492 82 \n", + "21 22 metac-gpt-4o 1045.133678 96 \n", + "22 23 SynapseSeer 1039.484635 28 \n", + "23 24 annabot 1031.973930 31 \n", + "24 25 GreeneiBot2 932.883580 62 \n", + "25 26 MWG 741.424747 30 \n", + "26 27 InstitutPelFutur 722.687015 95 \n", + "27 28 cookics_bot_TEST 714.198372 29 \n", + "28 29 Bot_Pepa 660.801699 47 \n", + "29 30 ajf-bot 484.445030 37 \n", + "30 31 swingswish 429.966112 8 \n", + "31 32 KevinTestBot 331.099444 9 \n", + "32 33 X_bot 274.539365 7 \n", + "33 34 CumulativeBot 253.839701 11 \n", + "34 35 CatrachoCaster 247.266717 21 \n", + "35 36 jonahsingerbot 224.154392 5 \n", + "36 37 4Shadower 210.548617 15 \n", + "37 38 bean_bot 210.542752 5 \n", + "38 39 pgodzinai 177.134104 81 \n", + "39 40 wunderplumb 112.150245 27 \n", + "40 41 krm-bot 65.989405 10 \n", + "41 42 andrewsiah 0.000000 0 \n", + "42 43 cobyj-bot 0.000000 0 \n", + "43 44 RPM_bot -8.690533 8 \n", + "44 45 ProfessorSP -217.106298 20 \n", + "45 46 pianobot -217.321204 5 \n", + "46 47 minefrac1 -299.566506 55 \n", + "\n", + " Weighted Count \n", + "0 93.10 \n", + "1 92.10 \n", + "2 90.10 \n", + "3 93.10 \n", + "4 81.25 \n", + "5 91.50 \n", + "6 70.45 \n", + "7 90.10 \n", + "8 59.40 \n", + "9 92.10 \n", + "10 90.10 \n", + "11 45.05 \n", + "12 77.50 \n", + "13 81.25 \n", + "14 92.10 \n", + "15 52.10 \n", + "16 65.10 \n", + "17 93.10 \n", + "18 52.35 \n", + "19 92.10 \n", + "20 78.10 \n", + "21 92.10 \n", + "22 26.15 \n", + "23 29.30 \n", + "24 59.35 \n", + "25 28.60 \n", + "26 91.10 \n", + "27 27.40 \n", + "28 45.05 \n", + "29 35.25 \n", + "30 7.70 \n", + "31 8.40 \n", + "32 7.00 \n", + "33 10.25 \n", + "34 19.70 \n", + "35 4.70 \n", + "36 14.00 \n", + "37 4.70 \n", + "38 77.40 \n", + "39 25.55 \n", + "40 9.50 \n", + "41 0.00 \n", + "42 0.00 \n", + "43 8.00 \n", + "44 18.60 \n", + "45 4.70 \n", + "46 52.10 " + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# @title Create df_pro_bot_baseline_leaderboard, df_pro_bot_baseline_weighted_leaderboard\n", "\n", @@ -973,7 +4875,872 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
W_scoreW_countW_aveW_stdevstd_errt_statt_critupper_boundlower_boundcdfp_value
pro_median4238.693.145.562.2291686.4493987.0591051.98527758.332.71.0000000.000000
metac-o13010.492.132.757.7568596.0182995.4310541.98555044.620.71.0000000.000000
metac-perplexity2774.190.130.867.2103837.0806644.3483081.98611444.916.70.9999820.000036
bot_median2481.693.126.755.7913395.7821854.6097961.98527738.115.20.9999940.000013
acm_bot2239.181.227.655.5540546.1631694.4713431.98898539.815.30.9999870.000025
metac-claude-3-5-sonnet-202406202018.191.522.164.2193076.7135943.2852521.98578835.48.70.9992750.001450
manticAI1865.170.426.566.3530597.9053383.3489361.99348842.210.70.9993430.001314
metac-exa1826.390.120.382.2195858.6618942.3400691.98611437.53.10.9892430.021514
twsummerbot1819.159.430.654.7477997.1035174.3111002.00016344.816.40.9999680.000063
metac-claude-3-5-sonnet-latest1740.392.118.971.5459837.4551342.5346201.98555033.74.10.9935180.012963
metac-Llama-3.11701.290.118.962.1549296.5480682.8834531.98611431.95.90.9975350.004930
jkraybill_bot1616.145.035.959.7568388.9030794.0292232.01341253.817.90.9998910.000218
metac-Gemini-Exp-12061595.777.520.667.0999817.6220462.7013031.99042635.85.40.9957490.008502
NextWorldLab1583.081.219.566.4117477.3677222.6444271.98898534.14.80.9950800.009840
metac-o1-preview1527.792.116.687.1115689.0770771.8273441.98555034.6-1.40.9645390.070922
metac-deepseek-r11518.352.129.162.7649708.6955783.3513822.00537946.611.70.9992410.001519
laylaps1500.665.123.174.4573659.2282042.4977991.99634141.54.60.9924630.015074
mmBot1482.793.115.979.9905028.2901731.9210901.98527732.4-0.50.9710930.057813
Grizeu_Bot1399.552.426.760.8869058.4152223.1767552.00555543.69.90.9987400.002521
metac-grok-2-12121167.992.112.779.3224498.2654461.5341491.98555029.1-3.70.9357710.128459
VeritasAI1136.778.114.661.1249136.9166012.1042411.99009528.30.80.9806920.038617
metac-gpt-4o1045.192.111.367.7641657.0610661.6070961.98555025.4-2.70.9442530.111494
SynapseSeer1039.526.239.862.84354812.2892353.2346072.05307665.014.50.9983020.003397
annabot1032.029.335.257.68962410.6577103.3047392.04418357.013.40.9987070.002586
GreeneiBot2932.959.415.773.8321869.5837481.6401042.00014134.9-3.50.9468180.106364
MWG741.428.625.978.73589114.7227771.7608052.04656156.1-4.20.9553250.089349
InstitutPelFutur722.791.17.9100.84063310.5651670.7508541.98582928.9-13.00.7726510.454697
cookics_bot_TEST714.227.426.163.25665212.0845622.1569372.04954150.81.30.9798560.040287
Bot_Pepa660.845.014.769.73878710.3902741.4117232.01341235.6-6.30.9174720.165057
ajf-bot484.435.213.786.56822814.5807200.9425542.02873043.3-15.80.8237450.352510
swingswish430.07.755.852.06574018.7631902.9760272.367123100.311.40.9891420.021716
KevinTestBot331.18.439.476.25685526.3111141.4980972.311496100.2-21.40.9122520.175497
X_bot274.57.039.231.69380111.9791313.2740202.44691268.59.90.9915260.016949
CumulativeBot253.810.224.878.92471924.6519411.0045802.23184879.8-30.30.8296730.340653
CatrachoCaster247.319.712.675.37158416.9814400.7391372.08877748.0-22.90.7655000.469001
jonahsingerbot224.24.747.764.22018229.6225611.6100032.784843130.2-34.80.9057990.188401
bean_bot210.54.744.876.35643935.2205991.2718792.784843142.9-53.30.8612620.277476
4Shadower210.514.015.0116.14611231.0413540.4844892.14723981.7-51.60.6819500.636100
pgodzinai177.177.42.3103.63911911.7802150.1942711.99045325.7-21.20.5767600.846479
wunderplumb112.225.64.4102.06900020.1928870.2173762.05660345.9-37.10.5851440.829712
krm-bot66.09.56.968.18212422.1212020.3140092.26470957.0-43.20.6194580.761083
andrewsiah0.00.0NaNNaNNaNNaNNaNNaNNaNNaNNA
cobyj-bot0.00.0NaNNaNNaNNaNNaNNaNNaNNaNNA
RPM_bot-8.78.0-1.189.62555931.687420-0.0342822.36462473.8-76.00.4868050.973609
ProfessorSP-217.118.6-11.780.59407218.687303-0.6246162.09524327.5-50.80.2701180.540237
pianobot-217.34.7-46.2124.35072857.358714-0.8061302.798986114.3-206.80.2343880.468776
minefrac1-299.652.1-5.770.5819809.778562-0.5880042.00564913.9-25.40.2795600.559119
\n", + "
" + ], + "text/plain": [ + " W_score W_count W_ave W_stdev \\\n", + "pro_median 4238.6 93.1 45.5 62.229168 \n", + "metac-o1 3010.4 92.1 32.7 57.756859 \n", + "metac-perplexity 2774.1 90.1 30.8 67.210383 \n", + "bot_median 2481.6 93.1 26.7 55.791339 \n", + "acm_bot 2239.1 81.2 27.6 55.554054 \n", + "metac-claude-3-5-sonnet-20240620 2018.1 91.5 22.1 64.219307 \n", + "manticAI 1865.1 70.4 26.5 66.353059 \n", + "metac-exa 1826.3 90.1 20.3 82.219585 \n", + "twsummerbot 1819.1 59.4 30.6 54.747799 \n", + "metac-claude-3-5-sonnet-latest 1740.3 92.1 18.9 71.545983 \n", + "metac-Llama-3.1 1701.2 90.1 18.9 62.154929 \n", + "jkraybill_bot 1616.1 45.0 35.9 59.756838 \n", + "metac-Gemini-Exp-1206 1595.7 77.5 20.6 67.099981 \n", + "NextWorldLab 1583.0 81.2 19.5 66.411747 \n", + "metac-o1-preview 1527.7 92.1 16.6 87.111568 \n", + "metac-deepseek-r1 1518.3 52.1 29.1 62.764970 \n", + "laylaps 1500.6 65.1 23.1 74.457365 \n", + "mmBot 1482.7 93.1 15.9 79.990502 \n", + "Grizeu_Bot 1399.5 52.4 26.7 60.886905 \n", + "metac-grok-2-1212 1167.9 92.1 12.7 79.322449 \n", + "VeritasAI 1136.7 78.1 14.6 61.124913 \n", + "metac-gpt-4o 1045.1 92.1 11.3 67.764165 \n", + "SynapseSeer 1039.5 26.2 39.8 62.843548 \n", + "annabot 1032.0 29.3 35.2 57.689624 \n", + "GreeneiBot2 932.9 59.4 15.7 73.832186 \n", + "MWG 741.4 28.6 25.9 78.735891 \n", + "InstitutPelFutur 722.7 91.1 7.9 100.840633 \n", + "cookics_bot_TEST 714.2 27.4 26.1 63.256652 \n", + "Bot_Pepa 660.8 45.0 14.7 69.738787 \n", + "ajf-bot 484.4 35.2 13.7 86.568228 \n", + "swingswish 430.0 7.7 55.8 52.065740 \n", + "KevinTestBot 331.1 8.4 39.4 76.256855 \n", + "X_bot 274.5 7.0 39.2 31.693801 \n", + "CumulativeBot 253.8 10.2 24.8 78.924719 \n", + "CatrachoCaster 247.3 19.7 12.6 75.371584 \n", + "jonahsingerbot 224.2 4.7 47.7 64.220182 \n", + "bean_bot 210.5 4.7 44.8 76.356439 \n", + "4Shadower 210.5 14.0 15.0 116.146112 \n", + "pgodzinai 177.1 77.4 2.3 103.639119 \n", + "wunderplumb 112.2 25.6 4.4 102.069000 \n", + "krm-bot 66.0 9.5 6.9 68.182124 \n", + "andrewsiah 0.0 0.0 NaN NaN \n", + "cobyj-bot 0.0 0.0 NaN NaN \n", + "RPM_bot -8.7 8.0 -1.1 89.625559 \n", + "ProfessorSP -217.1 18.6 -11.7 80.594072 \n", + "pianobot -217.3 4.7 -46.2 124.350728 \n", + "minefrac1 -299.6 52.1 -5.7 70.581980 \n", + "\n", + " std_err t_stat t_crit upper_bound \\\n", + "pro_median 6.449398 7.059105 1.985277 58.3 \n", + "metac-o1 6.018299 5.431054 1.985550 44.6 \n", + "metac-perplexity 7.080664 4.348308 1.986114 44.9 \n", + "bot_median 5.782185 4.609796 1.985277 38.1 \n", + "acm_bot 6.163169 4.471343 1.988985 39.8 \n", + "metac-claude-3-5-sonnet-20240620 6.713594 3.285252 1.985788 35.4 \n", + "manticAI 7.905338 3.348936 1.993488 42.2 \n", + "metac-exa 8.661894 2.340069 1.986114 37.5 \n", + "twsummerbot 7.103517 4.311100 2.000163 44.8 \n", + "metac-claude-3-5-sonnet-latest 7.455134 2.534620 1.985550 33.7 \n", + "metac-Llama-3.1 6.548068 2.883453 1.986114 31.9 \n", + "jkraybill_bot 8.903079 4.029223 2.013412 53.8 \n", + "metac-Gemini-Exp-1206 7.622046 2.701303 1.990426 35.8 \n", + "NextWorldLab 7.367722 2.644427 1.988985 34.1 \n", + "metac-o1-preview 9.077077 1.827344 1.985550 34.6 \n", + "metac-deepseek-r1 8.695578 3.351382 2.005379 46.6 \n", + "laylaps 9.228204 2.497799 1.996341 41.5 \n", + "mmBot 8.290173 1.921090 1.985277 32.4 \n", + "Grizeu_Bot 8.415222 3.176755 2.005555 43.6 \n", + "metac-grok-2-1212 8.265446 1.534149 1.985550 29.1 \n", + "VeritasAI 6.916601 2.104241 1.990095 28.3 \n", + "metac-gpt-4o 7.061066 1.607096 1.985550 25.4 \n", + "SynapseSeer 12.289235 3.234607 2.053076 65.0 \n", + "annabot 10.657710 3.304739 2.044183 57.0 \n", + "GreeneiBot2 9.583748 1.640104 2.000141 34.9 \n", + "MWG 14.722777 1.760805 2.046561 56.1 \n", + "InstitutPelFutur 10.565167 0.750854 1.985829 28.9 \n", + "cookics_bot_TEST 12.084562 2.156937 2.049541 50.8 \n", + "Bot_Pepa 10.390274 1.411723 2.013412 35.6 \n", + "ajf-bot 14.580720 0.942554 2.028730 43.3 \n", + "swingswish 18.763190 2.976027 2.367123 100.3 \n", + "KevinTestBot 26.311114 1.498097 2.311496 100.2 \n", + "X_bot 11.979131 3.274020 2.446912 68.5 \n", + "CumulativeBot 24.651941 1.004580 2.231848 79.8 \n", + "CatrachoCaster 16.981440 0.739137 2.088777 48.0 \n", + "jonahsingerbot 29.622561 1.610003 2.784843 130.2 \n", + "bean_bot 35.220599 1.271879 2.784843 142.9 \n", + "4Shadower 31.041354 0.484489 2.147239 81.7 \n", + "pgodzinai 11.780215 0.194271 1.990453 25.7 \n", + "wunderplumb 20.192887 0.217376 2.056603 45.9 \n", + "krm-bot 22.121202 0.314009 2.264709 57.0 \n", + "andrewsiah NaN NaN NaN NaN \n", + "cobyj-bot NaN NaN NaN NaN \n", + "RPM_bot 31.687420 -0.034282 2.364624 73.8 \n", + "ProfessorSP 18.687303 -0.624616 2.095243 27.5 \n", + "pianobot 57.358714 -0.806130 2.798986 114.3 \n", + "minefrac1 9.778562 -0.588004 2.005649 13.9 \n", + "\n", + " lower_bound cdf p_value \n", + "pro_median 32.7 1.000000 0.000000 \n", + "metac-o1 20.7 1.000000 0.000000 \n", + "metac-perplexity 16.7 0.999982 0.000036 \n", + "bot_median 15.2 0.999994 0.000013 \n", + "acm_bot 15.3 0.999987 0.000025 \n", + "metac-claude-3-5-sonnet-20240620 8.7 0.999275 0.001450 \n", + "manticAI 10.7 0.999343 0.001314 \n", + "metac-exa 3.1 0.989243 0.021514 \n", + "twsummerbot 16.4 0.999968 0.000063 \n", + "metac-claude-3-5-sonnet-latest 4.1 0.993518 0.012963 \n", + "metac-Llama-3.1 5.9 0.997535 0.004930 \n", + "jkraybill_bot 17.9 0.999891 0.000218 \n", + "metac-Gemini-Exp-1206 5.4 0.995749 0.008502 \n", + "NextWorldLab 4.8 0.995080 0.009840 \n", + "metac-o1-preview -1.4 0.964539 0.070922 \n", + "metac-deepseek-r1 11.7 0.999241 0.001519 \n", + "laylaps 4.6 0.992463 0.015074 \n", + "mmBot -0.5 0.971093 0.057813 \n", + "Grizeu_Bot 9.9 0.998740 0.002521 \n", + "metac-grok-2-1212 -3.7 0.935771 0.128459 \n", + "VeritasAI 0.8 0.980692 0.038617 \n", + "metac-gpt-4o -2.7 0.944253 0.111494 \n", + "SynapseSeer 14.5 0.998302 0.003397 \n", + "annabot 13.4 0.998707 0.002586 \n", + "GreeneiBot2 -3.5 0.946818 0.106364 \n", + "MWG -4.2 0.955325 0.089349 \n", + "InstitutPelFutur -13.0 0.772651 0.454697 \n", + "cookics_bot_TEST 1.3 0.979856 0.040287 \n", + "Bot_Pepa -6.3 0.917472 0.165057 \n", + "ajf-bot -15.8 0.823745 0.352510 \n", + "swingswish 11.4 0.989142 0.021716 \n", + "KevinTestBot -21.4 0.912252 0.175497 \n", + "X_bot 9.9 0.991526 0.016949 \n", + "CumulativeBot -30.3 0.829673 0.340653 \n", + "CatrachoCaster -22.9 0.765500 0.469001 \n", + "jonahsingerbot -34.8 0.905799 0.188401 \n", + "bean_bot -53.3 0.861262 0.277476 \n", + "4Shadower -51.6 0.681950 0.636100 \n", + "pgodzinai -21.2 0.576760 0.846479 \n", + "wunderplumb -37.1 0.585144 0.829712 \n", + "krm-bot -43.2 0.619458 0.761083 \n", + "andrewsiah NaN NaN NA \n", + "cobyj-bot NaN NaN NA \n", + "RPM_bot -76.0 0.486805 0.973609 \n", + "ProfessorSP -50.8 0.270118 0.540237 \n", + "pianobot -206.8 0.234388 0.468776 \n", + "minefrac1 -25.4 0.279560 0.559119 " + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# make me a list that's pro_median and all the bot forecasters\n", + "forecasters = ['pro_median'] + [col for col in df_pro_bot_baseline_weights.columns if col in all_bots]\n", + "\n", + "hey = calculate_t_test(df_pro_bot_baseline_weights, forecasters)\n", + "\n", + "hey" + ] + }, + { + "cell_type": "code", + "execution_count": 43, "metadata": { "colab": { "base_uri": "https://localhost:8080/" @@ -981,7 +5748,841 @@ "id": "aGNedTHmU-Bm", "outputId": "a7935679-8993-4329-d05d-fd701c4b77a8" }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
W_scoreW_countW_aveW_stdevstd_errt_statt_critupper_boundlower_boundcdfp_value
Grizeu_Bot487.940.012.2123.49852319.5390470.6251002.02031451.7-27.30.7322250.535551
acm_bot149.763.82.3123.16721915.4139760.1521161.99701833.1-28.40.5602090.879583
RPM_bot145.06.024.231.46890712.8471271.8809962.57058257.2-8.90.9406380.118725
X_bot20.75.04.119.7562378.8352580.4688972.77644528.7-20.40.6682210.663558
cobyj-bot0.00.0NaNNaNNaNNaNNaNNaNNaNNaNNA
andrewsiah0.00.0NaNNaNNaNNaNNaNNaNNaNNaNNA
jonahsingerbot-61.34.7-13.05.4853692.530212-5.1548422.784843-6.0-20.10.0041410.008283
bean_bot-70.74.7-15.18.8131374.065197-3.7022222.784843-3.7-26.40.0119250.023851
jkraybill_bot-76.138.2-2.067.06547910.858048-0.1837062.02336020.0-24.00.4276220.855243
CumulativeBot-97.010.2-9.530.1210609.408238-1.0055352.23184811.5-30.50.1701090.340218
swingswish-109.06.7-16.315.1455315.851229-2.7797012.450387-1.9-30.60.0168960.033793
SynapseSeer-128.527.1-4.847.0810459.052373-0.5249592.04956913.8-23.30.3020260.604052
KevinTestBot-148.38.4-17.759.36966920.484482-0.8619382.31149629.7-65.00.2078890.415777
twsummerbot-237.247.0-5.079.50269011.596659-0.4351342.01121518.3-28.40.3327500.665500
pianobot-272.24.7-57.992.18716542.522768-1.3617862.79898661.1-176.90.1251370.250274
annabot-316.024.8-12.743.7374108.782683-1.4506142.0613075.4-30.80.0799700.159940
CatrachoCaster-331.319.7-16.852.31505911.786737-1.4269802.0887777.8-41.40.0850350.170071
cookics_bot_TEST-413.324.6-16.872.42669414.602631-1.1504362.06084513.3-46.90.1307440.261488
GreeneiBot2-446.645.8-9.888.55320713.092083-0.7457052.01234016.6-36.10.2298720.459745
metac-o1-500.374.7-6.7111.25524212.872419-0.5203391.99159718.9-32.30.3021940.604387
krm-bot-521.09.5-54.850.62785616.425846-3.3389622.264709-17.6-92.00.0047000.009400
4Shadower-527.812.2-43.380.79118223.130448-1.8702732.1816957.2-93.70.0438960.087792
MWG-766.429.5-26.087.75333816.156699-1.6080772.0435277.0-59.00.0594210.118842
bot_median-780.675.7-10.385.1138919.782560-1.0541471.9911819.2-29.80.1476070.295213
Bot_Pepa-814.937.2-21.993.06728515.269248-1.4365512.0250989.0-52.90.0797220.159444
ajf-bot-843.131.4-26.9104.85473318.727046-1.4360202.03766711.3-65.10.0806120.161224
manticAI-861.555.0-15.782.87386511.169634-1.4011472.0030646.7-38.00.0834430.166886
ProfessorSP-997.216.8-59.496.91948823.645934-2.5102932.112371-9.4-109.30.0116720.023345
metac-perplexity-1072.972.7-14.8105.31560712.351666-1.1948081.9924629.9-39.40.1180500.236099
wunderplumb-1159.023.8-48.890.74010618.619477-2.6209902.065034-10.4-87.30.0076770.015353
laylaps-1214.552.2-23.348.0199296.646397-3.5005872.005359-9.9-36.60.0004860.000971
NextWorldLab-1224.163.8-19.298.66262212.347306-1.5526991.9970185.5-43.80.0627580.125517
metac-Gemini-Exp-1206-1250.565.1-19.294.99321111.773405-1.6315191.9963774.3-42.70.0538420.107685
minefrac1-1289.443.5-29.6123.19979118.679504-1.5868582.0149188.0-67.30.0599790.119958
pgodzinai-1330.462.0-21.598.40405312.497327-1.7169531.9981743.5-46.40.0455310.091062
metac-deepseek-r1-1360.348.2-28.2108.35980215.607908-1.8082482.0091123.1-59.60.0384710.076941
metac-Llama-3.1-1412.173.7-19.297.48349911.355267-1.6873751.9920243.5-41.80.0479090.095818
metac-claude-3-5-sonnet-latest-1463.974.7-19.696.85591111.206393-1.7487371.9915972.7-41.90.0422500.084500
metac-claude-3-5-sonnet-20240620-1649.975.1-22.0105.32409412.153679-1.8076161.9915362.2-46.20.0373620.074725
metac-o1-preview-1830.674.7-24.5107.51540912.439714-1.9699551.9915970.3-49.30.0263010.052601
mmBot-2006.475.7-26.578.5323519.026111-2.9364461.991181-8.5-44.50.0022050.004411
VeritasAI-2024.567.7-29.963.2821037.691066-3.8881871.994849-14.6-45.20.0001180.000235
metac-grok-2-1212-2154.674.7-28.8106.09460612.275325-2.3496851.991597-4.4-53.30.0107350.021470
metac-gpt-4o-2196.674.7-29.4100.42168411.618958-2.5308441.991597-6.3-52.50.0067560.013513
metac-exa-2249.172.7-30.991.72329010.757526-2.8758531.992462-9.5-52.40.0026510.005302
InstitutPelFutur-2477.372.8-34.0102.04145411.959443-2.8453911.992461-10.2-57.90.0028880.005777
\n", + "
" + ], + "text/plain": [ + " W_score W_count W_ave W_stdev \\\n", + "Grizeu_Bot 487.9 40.0 12.2 123.498523 \n", + "acm_bot 149.7 63.8 2.3 123.167219 \n", + "RPM_bot 145.0 6.0 24.2 31.468907 \n", + "X_bot 20.7 5.0 4.1 19.756237 \n", + "cobyj-bot 0.0 0.0 NaN NaN \n", + "andrewsiah 0.0 0.0 NaN NaN \n", + "jonahsingerbot -61.3 4.7 -13.0 5.485369 \n", + "bean_bot -70.7 4.7 -15.1 8.813137 \n", + "jkraybill_bot -76.1 38.2 -2.0 67.065479 \n", + "CumulativeBot -97.0 10.2 -9.5 30.121060 \n", + "swingswish -109.0 6.7 -16.3 15.145531 \n", + "SynapseSeer -128.5 27.1 -4.8 47.081045 \n", + "KevinTestBot -148.3 8.4 -17.7 59.369669 \n", + "twsummerbot -237.2 47.0 -5.0 79.502690 \n", + "pianobot -272.2 4.7 -57.9 92.187165 \n", + "annabot -316.0 24.8 -12.7 43.737410 \n", + "CatrachoCaster -331.3 19.7 -16.8 52.315059 \n", + "cookics_bot_TEST -413.3 24.6 -16.8 72.426694 \n", + "GreeneiBot2 -446.6 45.8 -9.8 88.553207 \n", + "metac-o1 -500.3 74.7 -6.7 111.255242 \n", + "krm-bot -521.0 9.5 -54.8 50.627856 \n", + "4Shadower -527.8 12.2 -43.3 80.791182 \n", + "MWG -766.4 29.5 -26.0 87.753338 \n", + "bot_median -780.6 75.7 -10.3 85.113891 \n", + "Bot_Pepa -814.9 37.2 -21.9 93.067285 \n", + "ajf-bot -843.1 31.4 -26.9 104.854733 \n", + "manticAI -861.5 55.0 -15.7 82.873865 \n", + "ProfessorSP -997.2 16.8 -59.4 96.919488 \n", + "metac-perplexity -1072.9 72.7 -14.8 105.315607 \n", + "wunderplumb -1159.0 23.8 -48.8 90.740106 \n", + "laylaps -1214.5 52.2 -23.3 48.019929 \n", + "NextWorldLab -1224.1 63.8 -19.2 98.662622 \n", + "metac-Gemini-Exp-1206 -1250.5 65.1 -19.2 94.993211 \n", + "minefrac1 -1289.4 43.5 -29.6 123.199791 \n", + "pgodzinai -1330.4 62.0 -21.5 98.404053 \n", + "metac-deepseek-r1 -1360.3 48.2 -28.2 108.359802 \n", + "metac-Llama-3.1 -1412.1 73.7 -19.2 97.483499 \n", + "metac-claude-3-5-sonnet-latest -1463.9 74.7 -19.6 96.855911 \n", + "metac-claude-3-5-sonnet-20240620 -1649.9 75.1 -22.0 105.324094 \n", + "metac-o1-preview -1830.6 74.7 -24.5 107.515409 \n", + "mmBot -2006.4 75.7 -26.5 78.532351 \n", + "VeritasAI -2024.5 67.7 -29.9 63.282103 \n", + "metac-grok-2-1212 -2154.6 74.7 -28.8 106.094606 \n", + "metac-gpt-4o -2196.6 74.7 -29.4 100.421684 \n", + "metac-exa -2249.1 72.7 -30.9 91.723290 \n", + "InstitutPelFutur -2477.3 72.8 -34.0 102.041454 \n", + "\n", + " std_err t_stat t_crit upper_bound \\\n", + "Grizeu_Bot 19.539047 0.625100 2.020314 51.7 \n", + "acm_bot 15.413976 0.152116 1.997018 33.1 \n", + "RPM_bot 12.847127 1.880996 2.570582 57.2 \n", + "X_bot 8.835258 0.468897 2.776445 28.7 \n", + "cobyj-bot NaN NaN NaN NaN \n", + "andrewsiah NaN NaN NaN NaN \n", + "jonahsingerbot 2.530212 -5.154842 2.784843 -6.0 \n", + "bean_bot 4.065197 -3.702222 2.784843 -3.7 \n", + "jkraybill_bot 10.858048 -0.183706 2.023360 20.0 \n", + "CumulativeBot 9.408238 -1.005535 2.231848 11.5 \n", + "swingswish 5.851229 -2.779701 2.450387 -1.9 \n", + "SynapseSeer 9.052373 -0.524959 2.049569 13.8 \n", + "KevinTestBot 20.484482 -0.861938 2.311496 29.7 \n", + "twsummerbot 11.596659 -0.435134 2.011215 18.3 \n", + "pianobot 42.522768 -1.361786 2.798986 61.1 \n", + "annabot 8.782683 -1.450614 2.061307 5.4 \n", + "CatrachoCaster 11.786737 -1.426980 2.088777 7.8 \n", + "cookics_bot_TEST 14.602631 -1.150436 2.060845 13.3 \n", + "GreeneiBot2 13.092083 -0.745705 2.012340 16.6 \n", + "metac-o1 12.872419 -0.520339 1.991597 18.9 \n", + "krm-bot 16.425846 -3.338962 2.264709 -17.6 \n", + "4Shadower 23.130448 -1.870273 2.181695 7.2 \n", + "MWG 16.156699 -1.608077 2.043527 7.0 \n", + "bot_median 9.782560 -1.054147 1.991181 9.2 \n", + "Bot_Pepa 15.269248 -1.436551 2.025098 9.0 \n", + "ajf-bot 18.727046 -1.436020 2.037667 11.3 \n", + "manticAI 11.169634 -1.401147 2.003064 6.7 \n", + "ProfessorSP 23.645934 -2.510293 2.112371 -9.4 \n", + "metac-perplexity 12.351666 -1.194808 1.992462 9.9 \n", + "wunderplumb 18.619477 -2.620990 2.065034 -10.4 \n", + "laylaps 6.646397 -3.500587 2.005359 -9.9 \n", + "NextWorldLab 12.347306 -1.552699 1.997018 5.5 \n", + "metac-Gemini-Exp-1206 11.773405 -1.631519 1.996377 4.3 \n", + "minefrac1 18.679504 -1.586858 2.014918 8.0 \n", + "pgodzinai 12.497327 -1.716953 1.998174 3.5 \n", + "metac-deepseek-r1 15.607908 -1.808248 2.009112 3.1 \n", + "metac-Llama-3.1 11.355267 -1.687375 1.992024 3.5 \n", + "metac-claude-3-5-sonnet-latest 11.206393 -1.748737 1.991597 2.7 \n", + "metac-claude-3-5-sonnet-20240620 12.153679 -1.807616 1.991536 2.2 \n", + "metac-o1-preview 12.439714 -1.969955 1.991597 0.3 \n", + "mmBot 9.026111 -2.936446 1.991181 -8.5 \n", + "VeritasAI 7.691066 -3.888187 1.994849 -14.6 \n", + "metac-grok-2-1212 12.275325 -2.349685 1.991597 -4.4 \n", + "metac-gpt-4o 11.618958 -2.530844 1.991597 -6.3 \n", + "metac-exa 10.757526 -2.875853 1.992462 -9.5 \n", + "InstitutPelFutur 11.959443 -2.845391 1.992461 -10.2 \n", + "\n", + " lower_bound cdf p_value \n", + "Grizeu_Bot -27.3 0.732225 0.535551 \n", + "acm_bot -28.4 0.560209 0.879583 \n", + "RPM_bot -8.9 0.940638 0.118725 \n", + "X_bot -20.4 0.668221 0.663558 \n", + "cobyj-bot NaN NaN NA \n", + "andrewsiah NaN NaN NA \n", + "jonahsingerbot -20.1 0.004141 0.008283 \n", + "bean_bot -26.4 0.011925 0.023851 \n", + "jkraybill_bot -24.0 0.427622 0.855243 \n", + "CumulativeBot -30.5 0.170109 0.340218 \n", + "swingswish -30.6 0.016896 0.033793 \n", + "SynapseSeer -23.3 0.302026 0.604052 \n", + "KevinTestBot -65.0 0.207889 0.415777 \n", + "twsummerbot -28.4 0.332750 0.665500 \n", + "pianobot -176.9 0.125137 0.250274 \n", + "annabot -30.8 0.079970 0.159940 \n", + "CatrachoCaster -41.4 0.085035 0.170071 \n", + "cookics_bot_TEST -46.9 0.130744 0.261488 \n", + "GreeneiBot2 -36.1 0.229872 0.459745 \n", + "metac-o1 -32.3 0.302194 0.604387 \n", + "krm-bot -92.0 0.004700 0.009400 \n", + "4Shadower -93.7 0.043896 0.087792 \n", + "MWG -59.0 0.059421 0.118842 \n", + "bot_median -29.8 0.147607 0.295213 \n", + "Bot_Pepa -52.9 0.079722 0.159444 \n", + "ajf-bot -65.1 0.080612 0.161224 \n", + "manticAI -38.0 0.083443 0.166886 \n", + "ProfessorSP -109.3 0.011672 0.023345 \n", + "metac-perplexity -39.4 0.118050 0.236099 \n", + "wunderplumb -87.3 0.007677 0.015353 \n", + "laylaps -36.6 0.000486 0.000971 \n", + "NextWorldLab -43.8 0.062758 0.125517 \n", + "metac-Gemini-Exp-1206 -42.7 0.053842 0.107685 \n", + "minefrac1 -67.3 0.059979 0.119958 \n", + "pgodzinai -46.4 0.045531 0.091062 \n", + "metac-deepseek-r1 -59.6 0.038471 0.076941 \n", + "metac-Llama-3.1 -41.8 0.047909 0.095818 \n", + "metac-claude-3-5-sonnet-latest -41.9 0.042250 0.084500 \n", + "metac-claude-3-5-sonnet-20240620 -46.2 0.037362 0.074725 \n", + "metac-o1-preview -49.3 0.026301 0.052601 \n", + "mmBot -44.5 0.002205 0.004411 \n", + "VeritasAI -45.2 0.000118 0.000235 \n", + "metac-grok-2-1212 -53.3 0.010735 0.021470 \n", + "metac-gpt-4o -52.5 0.006756 0.013513 \n", + "metac-exa -52.4 0.002651 0.005302 \n", + "InstitutPelFutur -57.9 0.002888 0.005777 " + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# @title Weighted head-to-head, T test\n", "\n", @@ -1003,7 +6604,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 44, "metadata": {}, "outputs": [], "source": [ @@ -1013,7 +6614,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 45, "metadata": { "cellView": "form", "colab": { @@ -1022,7 +6623,916 @@ "id": "3d_ZdL0A0qTz", "outputId": "e30ee8fb-0faf-45ae-974e-d4af282e0252" }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
RankBotW_scoreW_countW_aveW_stdevstd_errt_statt_critupper_boundlower_boundcdfp_value
01metac-o13631.1375.39.735.0711401.8102945.3442931.96598513.26.11.0000000.000000
12metac-o1-preview3121.4368.78.545.9615892.3935733.5368201.96609313.23.80.9997720.000457
23metac-Gemini-Exp-12061880.5347.15.444.8958442.4097192.2481331.96645810.20.70.9874020.025197
34SynapseSeer966.5152.06.435.6992152.8951132.1955681.97487912.10.60.9851760.029648
45manticAI2055.2315.76.555.6900633.1344982.0771541.96718712.70.30.9807010.038598
56twsummerbot1450.0241.36.045.0911402.9027092.0701531.96931311.70.30.9802470.039507
67acm_bot1738.4344.85.045.8463322.4691432.0421541.9665219.90.20.9790510.041899
78cookics_bot_TEST1143.8162.67.046.7964543.6698871.9168291.97413814.3-0.20.9714880.057024
89CumulativeBot991.4104.59.552.1803255.1044461.8585841.98213619.6-0.60.9670360.065928
910metac-claude-3-5-sonnet-latest951.3370.32.638.2630661.9883421.2919541.9660636.5-1.30.9014100.197181
1011GreeneiBot21494.7264.15.759.7283543.6750521.5398111.96859612.9-1.60.9375960.124808
1112metac-perplexity1558.4354.44.459.5883783.1652091.3891811.96637110.6-1.80.9171740.165652
1213metac-deepseek-r1516.8277.91.937.3532102.2407800.8299751.9681656.3-2.60.7963660.407268
1314pgodzinai1106.7325.43.466.6861593.6966950.9199541.96694910.7-3.90.8208600.358280
1415metac-exa599.9365.31.663.4593893.3201610.4946111.9661428.2-4.90.6894130.621173
1516MWG253.8113.42.240.6740843.8190370.5859361.9804689.8-5.30.7204540.559093
1617jkraybill_bot625.4207.43.068.5607804.7604770.6333891.97101512.4-6.40.7364100.527181
1718metac-claude-3-5-sonnet-20240620-759.5373.7-2.044.0904802.280718-0.8910111.9660142.5-6.50.1867490.373498
1819metac-grok-2-1212-550.1373.3-1.550.1642462.596293-0.5675531.9660163.6-6.60.2853400.570681
1920metac-Llama-3.1-980.9370.6-2.641.8100632.171783-1.2186111.9660621.6-6.90.1118850.223769
2021mmBot-587.4373.0-1.658.2984393.018498-0.5216711.9660174.4-7.50.3011050.602210
2122VeritasAI-1602.2330.0-4.938.7547802.133316-2.2757101.966760-0.7-9.10.0117530.023506
2223InstitutPelFutur-877.8356.0-2.564.6034773.423881-0.7201271.9663054.3-9.20.2359600.471921
2324NextWorldLab-1377.9337.6-4.151.4333882.799472-1.4581571.9666641.4-9.60.0728650.145730
2425metac-gpt-4o-2235.4373.3-6.045.4016702.349802-2.5482091.966016-1.4-10.60.0056140.011229
2526CatrachoCaster-289.481.6-3.531.9567253.538536-1.0026081.9883423.5-10.60.1595260.319052
2627laylaps-1489.1322.1-4.663.9802383.564926-1.2968551.9670502.4-11.60.0978060.195612
2728ProfessorSP-426.8128.6-3.355.1654604.863650-0.6821421.9781236.3-12.90.2481930.496385
2829krm-bot-354.7104.0-3.449.8754924.890694-0.6973341.9823276.3-13.10.2435820.487165
2930wunderplumb-986.1174.0-5.752.9658934.015334-1.4114341.9731952.3-13.60.0799560.159913
3031andrewsiah2.625.10.135.8050927.1467390.0146792.06034114.8-14.60.5057960.988409
3132annabot-190.683.8-2.359.1122286.458906-0.3522221.98640810.6-15.10.3627840.725567
3233Bot_Pepa-1490.1169.4-8.844.2657023.400530-2.5860051.973733-2.1-15.50.0052780.010555
33344Shadower-646.3115.5-5.653.8678675.012320-1.1163051.9797854.3-15.50.1333140.266629
3435minefrac1-1757.1188.2-9.344.1258493.216071-2.9021901.972106-3.0-15.70.0020750.004150
3536KevinTestBot-220.489.5-2.567.6508777.150920-0.3443101.98550511.7-16.70.3657150.731430
3637jonahsingerbot-333.464.8-5.148.0155485.964779-0.8626001.9952736.8-17.00.1957940.391588
3738bean_bot-208.867.8-3.159.9556627.281408-0.4229401.99377111.4-17.60.3368490.673697
3839Grizeu_Bot-1882.6193.2-9.756.7042374.079442-2.3885211.971774-1.7-17.80.0089420.017884
3940cobyj-bot-12.131.5-0.448.0409918.559663-0.0450462.03985017.1-17.80.4821820.964365
4041X_bot-16.17.0-2.323.9086329.036614-0.2537742.44691219.8-24.40.4040710.808142
4142ajf-bot-3208.3229.2-14.083.2955695.502524-2.5444141.969928-3.2-24.80.0058030.011607
4243pianobot-12.719.6-0.752.32348711.833775-0.0550422.09382324.1-25.40.4783470.956694
4344swingswish-777.064.8-12.073.0478929.074447-1.3214361.9952736.1-30.10.0955380.191075
4445RPM_bot-815.623.8-34.391.54540218.784720-1.8281002.0615084.4-73.10.0403390.080679
\n", + "
" + ], + "text/plain": [ + " Rank Bot W_score W_count W_ave \\\n", + "0 1 metac-o1 3631.1 375.3 9.7 \n", + "1 2 metac-o1-preview 3121.4 368.7 8.5 \n", + "2 3 metac-Gemini-Exp-1206 1880.5 347.1 5.4 \n", + "3 4 SynapseSeer 966.5 152.0 6.4 \n", + "4 5 manticAI 2055.2 315.7 6.5 \n", + "5 6 twsummerbot 1450.0 241.3 6.0 \n", + "6 7 acm_bot 1738.4 344.8 5.0 \n", + "7 8 cookics_bot_TEST 1143.8 162.6 7.0 \n", + "8 9 CumulativeBot 991.4 104.5 9.5 \n", + "9 10 metac-claude-3-5-sonnet-latest 951.3 370.3 2.6 \n", + "10 11 GreeneiBot2 1494.7 264.1 5.7 \n", + "11 12 metac-perplexity 1558.4 354.4 4.4 \n", + "12 13 metac-deepseek-r1 516.8 277.9 1.9 \n", + "13 14 pgodzinai 1106.7 325.4 3.4 \n", + "14 15 metac-exa 599.9 365.3 1.6 \n", + "15 16 MWG 253.8 113.4 2.2 \n", + "16 17 jkraybill_bot 625.4 207.4 3.0 \n", + "17 18 metac-claude-3-5-sonnet-20240620 -759.5 373.7 -2.0 \n", + "18 19 metac-grok-2-1212 -550.1 373.3 -1.5 \n", + "19 20 metac-Llama-3.1 -980.9 370.6 -2.6 \n", + "20 21 mmBot -587.4 373.0 -1.6 \n", + "21 22 VeritasAI -1602.2 330.0 -4.9 \n", + "22 23 InstitutPelFutur -877.8 356.0 -2.5 \n", + "23 24 NextWorldLab -1377.9 337.6 -4.1 \n", + "24 25 metac-gpt-4o -2235.4 373.3 -6.0 \n", + "25 26 CatrachoCaster -289.4 81.6 -3.5 \n", + "26 27 laylaps -1489.1 322.1 -4.6 \n", + "27 28 ProfessorSP -426.8 128.6 -3.3 \n", + "28 29 krm-bot -354.7 104.0 -3.4 \n", + "29 30 wunderplumb -986.1 174.0 -5.7 \n", + "30 31 andrewsiah 2.6 25.1 0.1 \n", + "31 32 annabot -190.6 83.8 -2.3 \n", + "32 33 Bot_Pepa -1490.1 169.4 -8.8 \n", + "33 34 4Shadower -646.3 115.5 -5.6 \n", + "34 35 minefrac1 -1757.1 188.2 -9.3 \n", + "35 36 KevinTestBot -220.4 89.5 -2.5 \n", + "36 37 jonahsingerbot -333.4 64.8 -5.1 \n", + "37 38 bean_bot -208.8 67.8 -3.1 \n", + "38 39 Grizeu_Bot -1882.6 193.2 -9.7 \n", + "39 40 cobyj-bot -12.1 31.5 -0.4 \n", + "40 41 X_bot -16.1 7.0 -2.3 \n", + "41 42 ajf-bot -3208.3 229.2 -14.0 \n", + "42 43 pianobot -12.7 19.6 -0.7 \n", + "43 44 swingswish -777.0 64.8 -12.0 \n", + "44 45 RPM_bot -815.6 23.8 -34.3 \n", + "\n", + " W_stdev std_err t_stat t_crit upper_bound lower_bound \\\n", + "0 35.071140 1.810294 5.344293 1.965985 13.2 6.1 \n", + "1 45.961589 2.393573 3.536820 1.966093 13.2 3.8 \n", + "2 44.895844 2.409719 2.248133 1.966458 10.2 0.7 \n", + "3 35.699215 2.895113 2.195568 1.974879 12.1 0.6 \n", + "4 55.690063 3.134498 2.077154 1.967187 12.7 0.3 \n", + "5 45.091140 2.902709 2.070153 1.969313 11.7 0.3 \n", + "6 45.846332 2.469143 2.042154 1.966521 9.9 0.2 \n", + "7 46.796454 3.669887 1.916829 1.974138 14.3 -0.2 \n", + "8 52.180325 5.104446 1.858584 1.982136 19.6 -0.6 \n", + "9 38.263066 1.988342 1.291954 1.966063 6.5 -1.3 \n", + "10 59.728354 3.675052 1.539811 1.968596 12.9 -1.6 \n", + "11 59.588378 3.165209 1.389181 1.966371 10.6 -1.8 \n", + "12 37.353210 2.240780 0.829975 1.968165 6.3 -2.6 \n", + "13 66.686159 3.696695 0.919954 1.966949 10.7 -3.9 \n", + "14 63.459389 3.320161 0.494611 1.966142 8.2 -4.9 \n", + "15 40.674084 3.819037 0.585936 1.980468 9.8 -5.3 \n", + "16 68.560780 4.760477 0.633389 1.971015 12.4 -6.4 \n", + "17 44.090480 2.280718 -0.891011 1.966014 2.5 -6.5 \n", + "18 50.164246 2.596293 -0.567553 1.966016 3.6 -6.6 \n", + "19 41.810063 2.171783 -1.218611 1.966062 1.6 -6.9 \n", + "20 58.298439 3.018498 -0.521671 1.966017 4.4 -7.5 \n", + "21 38.754780 2.133316 -2.275710 1.966760 -0.7 -9.1 \n", + "22 64.603477 3.423881 -0.720127 1.966305 4.3 -9.2 \n", + "23 51.433388 2.799472 -1.458157 1.966664 1.4 -9.6 \n", + "24 45.401670 2.349802 -2.548209 1.966016 -1.4 -10.6 \n", + "25 31.956725 3.538536 -1.002608 1.988342 3.5 -10.6 \n", + "26 63.980238 3.564926 -1.296855 1.967050 2.4 -11.6 \n", + "27 55.165460 4.863650 -0.682142 1.978123 6.3 -12.9 \n", + "28 49.875492 4.890694 -0.697334 1.982327 6.3 -13.1 \n", + "29 52.965893 4.015334 -1.411434 1.973195 2.3 -13.6 \n", + "30 35.805092 7.146739 0.014679 2.060341 14.8 -14.6 \n", + "31 59.112228 6.458906 -0.352222 1.986408 10.6 -15.1 \n", + "32 44.265702 3.400530 -2.586005 1.973733 -2.1 -15.5 \n", + "33 53.867867 5.012320 -1.116305 1.979785 4.3 -15.5 \n", + "34 44.125849 3.216071 -2.902190 1.972106 -3.0 -15.7 \n", + "35 67.650877 7.150920 -0.344310 1.985505 11.7 -16.7 \n", + "36 48.015548 5.964779 -0.862600 1.995273 6.8 -17.0 \n", + "37 59.955662 7.281408 -0.422940 1.993771 11.4 -17.6 \n", + "38 56.704237 4.079442 -2.388521 1.971774 -1.7 -17.8 \n", + "39 48.040991 8.559663 -0.045046 2.039850 17.1 -17.8 \n", + "40 23.908632 9.036614 -0.253774 2.446912 19.8 -24.4 \n", + "41 83.295569 5.502524 -2.544414 1.969928 -3.2 -24.8 \n", + "42 52.323487 11.833775 -0.055042 2.093823 24.1 -25.4 \n", + "43 73.047892 9.074447 -1.321436 1.995273 6.1 -30.1 \n", + "44 91.545402 18.784720 -1.828100 2.061508 4.4 -73.1 \n", + "\n", + " cdf p_value \n", + "0 1.000000 0.000000 \n", + "1 0.999772 0.000457 \n", + "2 0.987402 0.025197 \n", + "3 0.985176 0.029648 \n", + "4 0.980701 0.038598 \n", + "5 0.980247 0.039507 \n", + "6 0.979051 0.041899 \n", + "7 0.971488 0.057024 \n", + "8 0.967036 0.065928 \n", + "9 0.901410 0.197181 \n", + "10 0.937596 0.124808 \n", + "11 0.917174 0.165652 \n", + "12 0.796366 0.407268 \n", + "13 0.820860 0.358280 \n", + "14 0.689413 0.621173 \n", + "15 0.720454 0.559093 \n", + "16 0.736410 0.527181 \n", + "17 0.186749 0.373498 \n", + "18 0.285340 0.570681 \n", + "19 0.111885 0.223769 \n", + "20 0.301105 0.602210 \n", + "21 0.011753 0.023506 \n", + "22 0.235960 0.471921 \n", + "23 0.072865 0.145730 \n", + "24 0.005614 0.011229 \n", + "25 0.159526 0.319052 \n", + "26 0.097806 0.195612 \n", + "27 0.248193 0.496385 \n", + "28 0.243582 0.487165 \n", + "29 0.079956 0.159913 \n", + "30 0.505796 0.988409 \n", + "31 0.362784 0.725567 \n", + "32 0.005278 0.010555 \n", + "33 0.133314 0.266629 \n", + "34 0.002075 0.004150 \n", + "35 0.365715 0.731430 \n", + "36 0.195794 0.391588 \n", + "37 0.336849 0.673697 \n", + "38 0.008942 0.017884 \n", + "39 0.482182 0.964365 \n", + "40 0.404071 0.808142 \n", + "41 0.005803 0.011607 \n", + "42 0.478347 0.956694 \n", + "43 0.095538 0.191075 \n", + "44 0.040339 0.080679 " + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# @title Weighted Bot Peer, T test (to compare bots against each other, use ALL QUESTIONS)\n", "\n", @@ -1057,7 +7567,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 46, "metadata": {}, "outputs": [], "source": [ @@ -1067,7 +7577,223 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 47, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
bot_question_id4ShadowerBot_PepaCatrachoCasterCumulativeBotGreeneiBot2Grizeu_BotInstitutPelFuturKevinTestBotMWG...metac-o1-previewmetac-perplexityminefrac1mmBotpgodzinaipianobotswingswishtwsummerbotwunderplumbquestion_weight
031262NaNNaNNaNNaN-242.660874135.57527347.259183NaNNaN...-205.076095121.194882NaN-242.660874-198.879258NaNNaNNaNNaN1.0
131263NaNNaNNaNNaN-96.476789-99.090018-94.660371NaNNaN...7.9517037.951703NaN55.81904144.625993NaNNaNNaNNaN1.0
231264NaNNaNNaNNaN18.89298023.948225-86.527528NaNNaN...13.82151813.821518NaN1.30707117.305437NaNNaNNaNNaN1.0
331274NaNNaN2.076868NaN31.0945314.282464-28.806893NaN14.663415...6.44257916.621639NaN8.55905311.145899NaNNaN-9.706540NaN1.0
431275NaNNaNNaNNaN30.694891-66.461608-58.368696NaNNaN...35.698675-0.691552NaN39.41450214.411756NaNNaN-70.932651NaN1.0
\n", + "

5 rows × 48 columns

\n", + "
" + ], + "text/plain": [ + " bot_question_id 4Shadower Bot_Pepa CatrachoCaster CumulativeBot \\\n", + "0 31262 NaN NaN NaN NaN \n", + "1 31263 NaN NaN NaN NaN \n", + "2 31264 NaN NaN NaN NaN \n", + "3 31274 NaN NaN 2.076868 NaN \n", + "4 31275 NaN NaN NaN NaN \n", + "\n", + " GreeneiBot2 Grizeu_Bot InstitutPelFutur KevinTestBot MWG ... \\\n", + "0 -242.660874 135.575273 47.259183 NaN NaN ... \n", + "1 -96.476789 -99.090018 -94.660371 NaN NaN ... \n", + "2 18.892980 23.948225 -86.527528 NaN NaN ... \n", + "3 31.094531 4.282464 -28.806893 NaN 14.663415 ... \n", + "4 30.694891 -66.461608 -58.368696 NaN NaN ... \n", + "\n", + " metac-o1-preview metac-perplexity minefrac1 mmBot pgodzinai \\\n", + "0 -205.076095 121.194882 NaN -242.660874 -198.879258 \n", + "1 7.951703 7.951703 NaN 55.819041 44.625993 \n", + "2 13.821518 13.821518 NaN 1.307071 17.305437 \n", + "3 6.442579 16.621639 NaN 8.559053 11.145899 \n", + "4 35.698675 -0.691552 NaN 39.414502 14.411756 \n", + "\n", + " pianobot swingswish twsummerbot wunderplumb question_weight \n", + "0 NaN NaN NaN NaN 1.0 \n", + "1 NaN NaN NaN NaN 1.0 \n", + "2 NaN NaN NaN NaN 1.0 \n", + "3 NaN NaN -9.706540 NaN 1.0 \n", + "4 NaN NaN -70.932651 NaN 1.0 \n", + "\n", + "[5 rows x 48 columns]" + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_bot_peer_wide.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 48, "metadata": { "colab": { "base_uri": "https://localhost:8080/", @@ -1076,13 +7802,39 @@ "id": "88QO8eyW6T_T", "outputId": "e83d6794-13a2-454d-cb70-0a38b065d9e7" }, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "<>:29: SyntaxWarning: invalid escape sequence '\\m'\n", + "<>:29: SyntaxWarning: invalid escape sequence '\\s'\n", + "<>:29: SyntaxWarning: invalid escape sequence '\\m'\n", + "<>:29: SyntaxWarning: invalid escape sequence '\\s'\n", + "/tmp/ipykernel_322865/2856056443.py:29: SyntaxWarning: invalid escape sequence '\\m'\n", + " textstr = f'$\\mu={mu:.2f}$\\n$\\sigma={std:.2f}$'\n", + "/tmp/ipykernel_322865/2856056443.py:29: SyntaxWarning: invalid escape sequence '\\s'\n", + " textstr = f'$\\mu={mu:.2f}$\\n$\\sigma={std:.2f}$'\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA90AAAJOCAYAAACqS2TfAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAACfGElEQVR4nOzdd3gUVf/+8XvTEyB0CD1UAaUKQXrvnRCKINWKKEURUaToI4gKIgIqCNKkivTeQYqFoiC9I0gvoSYhe35/fMn+CCkkJMukvF/XxfO4M2dmPrt7Mrv3Tjk2Y4wRAAAAAABIdC5WFwAAAAAAQEpF6AYAAAAAwEkI3QAAAAAAOAmhGwAAAAAAJyF0AwAAAADgJIRuAAAAAACchNANAAAAAICTELoBAAAAAHASQjcAAAAAAE5C6AZi4e/vL5vNpilTpsTarkaNGrLZbBoyZEik6Rs3bpTNZlONGjWcXCmssn//frVo0ULZsmWTq6trtP0A1rty5YqmTJmit956S5UqVZKPj49sNpvq1KljdWlJQsQ+bOPGjVaXEi8hISEaM2aMqlWrpkyZMsnd3V1ZsmRRsWLF1KZNG3399de6dOmS1WWmeCdPnpTNZpO/v3+8l3XW52TE53ds/0aPHi0l0/4/ZcoU2Ww2denS5YmWv3//vmbMmKGgoCD5+/srbdq08vT0lJ+fn2rVqqVBgwZp3759iV53UhPRT06ePGl1KUjh3KwuAMDjTZkyRV27dlXnzp0f+wMAnp7bt2+rcePGOnnypMqVK6f69evL1dVVpUuXtrq0eEkN/WvLli3q2rWr1WUgEV24cEF169bV3r175erqqoCAAOXJk0d2u12HDx/W/PnzNW/ePBUsWFBNmjSxutxUy9/fX6dOndKJEyeeKJQnVOXKlVWoUKFo5xUvXjzWZYcMGaKhQ4dq8ODBMf6YWqNGDW3atEkbNmxINj+w7969W0FBQTp27JhsNpuKFy+uMmXKyNvbW5cvX9aff/6pDRs26JNPPlHv3r311VdfWV0ykOwRugEnCggI0IEDB+Tj42N1KXCCP/74QydPnlSlSpW0detWq8tBLLJnz67XXntNZcuWVdmyZbVz5069/vrrVpeVZEybNk137txR3rx5rS4lznr27Km9e/fq2Wef1bJly5QvX75I8y9evKhZs2Ype/bsltWYWuTKlUsHDhyQu7u71aVE8fLLLz/2aHBy7P9PaufOnapWrZru3LmjJk2aaNSoUSpcuHCkNna7XevWrdPw4cN14MABy2p9GtatW6ewsDDlypXL6lKQwhG6ASfy8fFR0aJFrS4DTnL69GlJivKFBUlPxYoVVbFiRcfj1HDaZHwkt7Bx7949LVq0SJI0atSoKIFbkrJly6ZevXpZUF3q4+7unqw/65Jb/39SYWFhCgoK0p07d9S6dWvNmTNHLi5RrzR1cXFR3bp1VbduXf3xxx+W1Pq0FCxY0OoSkEpwTTfgRLFdq7Zz5061bdtWuXPnloeHh3x9fVWgQAEFBgY6vkzqwal5EafFTp06NdL1aI+u986dO/rss89UtmxZpUuXTj4+Pnr22Wc1cOBAXbt2LcY6f/31VzVo0EAZMmRQ2rRpVb58eU2bNk2SHNt61MPTf/zxR1WsWFHp06ePdG3UqVOnNGLECNWqVUt58+aVp6enMmTIoCpVquj777+X3W6Pst6Hrw202+0aM2aMSpYsKR8fH+XIkUOvv/66rl69Kj24nvOTTz5R0aJF5e3trZw5c6pXr166fft2nN+jh61atUpNmjRRtmzZ5OHhoZw5c6pt27b6888/I7WLeF87d+4sRfO+xMXD1xDu2LFDjRs3VubMmZUuXTpVr15dW7ZscbRduXKlateurYwZMypt2rSqW7eudu3aFeO6r127psGDB6t06dKOflCiRAn973//0507dyK1jWv/epL38uF6Pv74Y5UrV07p06eXt7e3ChQooDZt2mjFihVxer0eFdf3ytmGDBniuI7/1KlT6tSpk3LkyCEvLy8VKVJEQ4YM0d27d6Ms9/D1mFevXlXv3r1VsGBBeXp6Rvm7XrdunVq1aqUcOXLIw8ND2bJlU8uWLbV9+/ZI7Q4ePCibzaaMGTPq3r17MdZcrlw52Wy2SPuZx13TGtcajDHKkiWLXFxcdOXKlUjzfv/9d0ffGj9+fJRtFChQQDabTcePH4+x9ghXr15VWFiY9CBcP4mdO3eqc+fOyp8/v7y8vJQpUyaVKlVK/fr106lTp6K0//3339WmTRvlzJnT8Ro0bdpUa9asiXb9Xbp0cdwTZN++fWrbtq1y5MghV1fXSKcq379/Xz/88INq1KihTJkyydPTU/nz59cbb7yhM2fORLvutWvXqmnTpsqePbvc3d2VMWNGFS5cWB07dtTmzZvj9PzHjBkjm82mt99+O8q8Ro0ayWazyc/PT8aYSPOmTZsmm82mTp06OaZFd013RB+PeC3z588faf8SXV8LCwvTiBEj9Oyzz8rb21uZM2dWq1atnH60Nbr+b7PZNHToUEnS0KFDI9XepUsXx+fApk2bJEk1a9aM1ObRS3Xis1+OcP/+fY0ePVolSpSQl5eXsmbNqsDAQO3du/eJnudPP/2kEydOyNPTU+PHj482cD+qfPnyUab9/vvveu+99xQQECA/Pz95eHgoe/bsatq0qdauXRvteh7eV0Yntu9L8envISEh+uKLL/T8888rXbp08vDwkJ+fn8qXL6/33nvP8f0hQkzXdCf0+4sxRhMmTNDzzz+vNGnSKH369KpXr16UfSZSEQMgRvny5TOSzI8//hhru+rVqxtJZvDgwZGmb9iwwUgy1atXjzR97dq1xt3d3UgypUqVMq1btzYtW7Y0AQEBxtPT0zRv3tzR9p133jGVK1c2kkzBggVN586dHf+GDx/uaHflyhVTunRpI8n4+vqaZs2amcDAQJMlSxYjyeTPn9+cOHEiSu2zZs0yLi4uRpIpUaKEad++valWrZpxcXEx/fv3N5JMdLuKiOk9e/Y0Li4upkqVKqZ9+/amQoUK5uTJk8YYYz755BPHtmvXrm3atWtnqlevbjw8PIwk06pVK2O32yOt98SJE0aSyZcvn2nfvr3x9vY2DRo0MC1atDDZsmUzkkyZMmXMrVu3TJUqVRzPtUmTJiZ9+vRGkmnYsOFj39tHDRw40EgyNpvNVK5c2bRv397xerq6uppJkyY52h44cMB07tw5xvclLiL6zLvvvmvc3NxMmTJlTNu2bR3b9PT0NFu3bjVjx441Li4uplKlSqZNmzamSJEiRpJJmzatOXLkSJT1/vPPPyZPnjxGksmRI4dp0KCBadq0qcmePbuRZEqXLm2uX7/uaB/X/vUk76UxxuzZs8fkypXLSDLp06c3jRo1Mm3btjUVK1Y03t7eUf42Evu9ismPP/5oJJnatWvHe/sPGzx4sJFkOnXqZDJnzmyyZ89ugoKCTJMmTUyaNGmMJFO5cmVz9+7daLffuHFjkz9/fpMxY0bTrFkzExQUZDp06OBo98477xhJxsXFxQQEBJigoCBToUIFY7PZjKurq5k8eXKk9VasWNFIMrNmzYq23r///ttIMtmzZzdhYWGO6RH9ccOGDVGWiW8NQUFBRpKZM2dOpOmffvqpY7/RsmXLSPOOHTvm6F9xERISYnx8fIwk061bNxMeHh6n5SJ8/vnnjv1ekSJFTJs2bUzTpk1NsWLFot3nT5gwwdG+TJkypn379qZSpUqO5zNkyJAo2+jcubORZF555RXj6elp/P39Hdv58ssvjTHGBAcHmxo1ajj+pqtXr25at25tnnnmGSPJZM6c2ezatSvSeqdMmWJsNpux2WymQoUKpm3btqZZs2ambNmyxtXV1fTq1StOr8E///xjJJlixYpFmh4aGurou5LMX3/9FWn+Sy+9ZCSZqVOnOqY9vN+OsGXLFtO5c2fHugIDAyPtXw4cOGDMQ5+TlSpVMnXq1DE+Pj6mQYMGJjAw0LEvy5AhQ7SfX7GJ6+e3iaH/d+7c2ZQqVcrxOf1w7RMnTnR8DkTsW+vXrx+pzZYtWyK91vHZLxtjTHh4uGnRooWRZDw8PEy9evVM27Ztjb+/v/Hy8jI9evQwkuL8mWOMcayvWbNmcV4mOrVr1zYuLi6mRIkSplGjRiYoKMiULVvW0WdGjx4dZZmIfeWj35MixPR9KT79PTw83NSuXdvxPahhw4amffv2pk6dOo7+sHv37kjrj5j+aP9K6PeXzp07G3d3d1OrVq1In92enp5mx44dT/S6I3kjdAOxcFborlmzppFkZsyYEWVd169fN9u3b480LeILemwfrm3btjWSTIUKFczly5cd02/evGkaNmzo+FLzsLNnz5q0adMaSebrr7+ONG/Tpk2Rvng9KmK6r69vlHoj/P7772bv3r1Rpp89e9bxZWbu3LmR5kV8aEWEwIgAb4wxly9fNoULF3b8QBAQEBDpuR4/ftxkzJjRSDK//vprjK/Vo1asWGEkGS8vL7N69epI83744Qcjybi7u5t9+/ZFmheX9yUmEX3GZrOZ6dOnR5rXt29fI8k888wzJm3atGbt2rWOeffv3zeBgYFGknn55ZcjLXfnzh1TsGBBI8kMHDjQhISEOObdvn3btG/f3kgyXbt2jffzeJL38tatW44vmp06dTI3b96MNP/69etmzZo1j32tHvak79WjEjt0SzLNmzc3d+7cccw7c+aM44vW+++/H+32I2q4ceNGlHVPmDDBSDKFChWKEnw2bdpk0qVLZzw8PMzhw4cd0ydOnOgIANHp06ePkWTeeeedSNNjCt1PUsP333/vCJsPq1mzpvHw8DBFixY1GTJkMPfv33/sMrHp1auX4zX09/c3b731lpk+fbr5559/ov0BKMKiRYscfejRHwbMg4C0f/9+x+O///7buLm5GZvNZqZNmxap7fLlyx1fwh/tjxGhO+L9j+6HgRdffNFIMk2aNDEXLlyINO+rr74ykkzhwoUjvVb58+c3kiKFuggXLlyIEtJjkzNnTiPJnD171jFt06ZNRpIpWbKkkWRGjhz52GWiC90RYgo1ESI+JyN+0Pjvv/8c8+7evWvq169vJJlXX301zs/LJELoNnEIirEtG+FJ98tjx451/ED2cH8MCwszb7zxhuM1i8/nT8T++JNPPonzMtFZvny5OXfuXJTp27ZtM76+vsbd3d38+++/keY9aeiOT3+P6LtlypQxwcHBUdr/8ccfkb4zmFj6Z0K/v+TLl88cOnTIMe/+/fumW7duRpKpV69etK8BUjZCNxCLiJ1xXP/FNXQXL17cSDJXr16NUx2PC0WnTp0yLi4uxmazRflibIwx//77r/Hy8jKSzNatWx3TP/74YyPJVKxYMdr1vvvuu48N3R9//HGcnsOjVq1aZSSZoKCgSNMf/tBatmxZlOVGjRrlCKvRfSC+9dZbRpIZOnRonGuJ+GW8b9++0c5v0qRJtIEgMUL3o8/fPDhrIeI16NevX5T5O3fudPwC/7Bvv/3W8QU+Ojdv3jTZsmUzbm5ukfpeQp6HieW9HD16tNGDozgPh4aEeNL36lGJHbq9vb0jhYUIS5Yscfw49fDR7ojtu7u7m2PHjkVZLjw83BFu/vzzz2i3/fnnn0cJ0MHBwcbHx8e4uLhE+dIbGhpqsmbNaiRF+VEiuuDwpDVEd9T6zp07xtPT01SvXt3069fPSIp0tCemo+OxCQ0NNb1793acNfTwvyxZspg333wzymtgjHGcFfFomIxJ9+7djR4c2YpOz549jSRTt27dSNMjQneRIkWi7f/79+83NpvN5MyZM9qAYIwxjRo1MpLMkiVLHNN8fHxM+vTp41T740QctZ4yZYpj2kcffWQkmUWLFhk3NzfToEEDx7yYjo4nRui22Wxmz549Uebv2LHDSDIFChSI13N73Of3w5/LzgzdT7pfLlSokJFkvv322yjL3L171/j5+cV7v+3t7W0kme+++y7a+bNnz450tD7i36VLl+K8jQEDBhhJZty4cZGmP2nojk9/nzt3rpFk3n777TjX+7j+GZ24fH9ZvHhxlOX+++8/owdHu0NDQ+O8PaQM3EgNiIPYhhzRg2tuL1y4EOf1BQQEaP/+/erQoYM++OADvfDCC3Jze/I/x82bN8tut6ts2bIqWbJklPm5cuVS/fr1tWjRIm3YsEGVKlWSJMe1aB06dIh2vR06dNCXX34Z67Zbt24d6/yQkBCtXr1af/zxhy5evKiQkBAZY3Tz5k1J0qFDh6Jdzs3NTfXq1YsyPeKmZXnz5tVzzz0X4/xz587FWleE+/fvO+48HtMdbrt3766lS5dqw4YNcVpnfDRq1CjKtEyZMilz5sy6cuVKtPNjeo7Lli2TJLVt2zbabaVNm1blypXT8uXL9ccff0T7+sYmvu/lypUrpQevn6ura7y2FR2r36vY1KtXT35+flGmN2nSxPFe7tq1y/G3F6FMmTIqUKBAlOV2796tc+fOqWDBgnr++eej3WbEtY/btm1zTEuXLp1at26tadOmadq0aRowYIBj3rJly3Tp0iUFBATo2WeffexzetIaChQooPz58+vEiRM6duyYChYsqC1btigkJER169ZV+fLl9cUXX2jt2rWqUKGCjDFav369bDabateu/di6Iri7u+urr75S//79tXDhQm3ZskW7du3SoUOHdPnyZY0bN06zZs3S6tWrHfWfP39ee/bskYuLi7p37x6n7URc5xtbnxs7dqy2bNmi8PDwKH29RYsW0fb/5cuXyxijhg0bKl26dNGuu0aNGlq+fLm2bdvmGPYsICBAGzduVKdOndSrVy+VKVMmTtfmRqdOnTqaPn261q5d67hHxdq1a+Xj46MGDRqofPny2rJli0JDQ+Xh4eG4XtcZ49vnzZtXpUqVijK9WLFikqSzZ88+0Xpj+vx+Wjd+e5L98tmzZ3X06FFJUseOHaMs4+XlpTZt2mjMmDGJWusff/yhqVOnRpk+ZMgQZcmSJdK0K1euaNmyZdq3b5+uXbvmuMfCkSNHpFg+2+MrPv29bNmycnV11eTJk1WkSBHHfSieVEK+vzRo0CDKdD8/P2XMmFHXrl3TlStXov3MQMpF6Abi4HFDjtSoUSNeoXv48OH6+++/tWLFCq1YsULe3t4qW7asatSooQ4dOji+ZMRVxJeR/Pnzx9gm4g6dD39x+ffff6UHNxKJTlzGVI2tzY4dO9S2bVvHXb6jExwcHO30HDlyRPtDRNq0aaVY7jYb8eU1thtJPezKlSuOtjG9ftG9doklpueRNm1aXblyJdr5Ec8xJCQk0vSIG1C99NJLeumll2Ld7qVLl+JV55O8lxE3UIrrl9vPPvtMBw8ejDL9yy+/VJYsWZ76e7Vw4UItXLgwyvSXX35ZVapUiTQttr89f39/XblyxfH39ui86ES8lxHj6Mbm0feyW7dumjZtmqZMmRIpdP/444+SFOfxyhNSQ506dTRx4kStXbtWBQsWdIS1unXrqkSJEvL09NTatWv14Ycfavfu3bpy5YrKlCmjzJkzx6m2h/n5+en11193DAF34cIFzZw5U0OHDtXVq1fVqVMn/fPPP9JDIw7kyJFD6dOnj9P6H7d/jehz9+7d05UrV6Lc2O1x7/GkSZM0adKkWGt4+PUdP368mjRpounTp2v69OlKly6dypcvr1q1aumll16K1524I8LzunXrpAd/w3/88Yfq1q0rDw8P1alTR9u3b9f27dtVvXp1p4fu6Pj6+krR7O/iKi5DhjnTk+yXI/YVWbJkcXzmPSq2fU5MsmTJojNnzsS4///yyy8j/dDu5uam8PDwKO0mTpyoPn36xHrT0pg+2+MrPv29YMGC+uqrr9SvXz/17NlTPXv2VL58+VSxYkU1adJEQUFB8vDwiNN2E/r9Jabh83x9fXXt2rU4f0dBykHoBizg5+enP//8U5s2bdLatWu1detW/fbbb9q6dauGDRum4cOHq3///k+tnpi+UMflTtze3t7RTr9z545atGihCxcuqGvXrnrjjTdUqFAh+fr6ytXVVYcPH9YzzzwT5c64ER535OZJj+wkNYn5PCPuptqgQYPHjk0c3RBLMUnoexlXK1eudJx98bDojrI8DXv27In2qE+NGjWihO64iO71ienvJ+K99PPzU/369WNd76OvTbVq1VSwYEEdPnxY27ZtU6VKlXTx4kUtX75cXl5eateuXZzqTUgNEaF7zZo1eu2117R27VplzJhR5cqVk4uLi2Ns+zt37iR6kMuePbv69Okjf39/tWrVSvv379eRI0csG9rvce9x6dKloz3C+7AKFSo4/rtYsWI6dOiQVq9erfXr12vbtm3asmWL1q9fr48//liTJk2K9uhodHLmzKlixYrpwIED2rdvn44fP6779++rbt260oP35JNPPtGaNWtUuXJlbdq0SW5ubtHeYTqhUso+/VHO2i8/ibJly+rMmTMJGuVh586deu211+Tq6qoRI0aoadOmyps3r3x8fGSz2TRhwgS99tpr8f48iGkEjPj297feektt2rTR4sWL9euvv+rXX3/V7NmzNXv2bA0ePFhbtmx57NFvZ39/QepE6AYsEjE0RsSXl3v37mnKlCl688039cEHH6h169ZxHj8yV65c0kO/qEcnYl5E24j/PnToUJShMiLEND0uNm/erAsXLqhs2bKaPHlylPkRp6BZLXPmzPL09FRISIiOHz8e7en50b12SVGePHl08OBBde/e/bGn/cfHk76XefPm1YEDB3Tw4ME4BaqYhquK8LTfqyFDhsQ4vM2jTpw4EeO8iL+j3Llzx3nbefLkkR4850eHHnqciCGNPvroI/3444+qVKmSZsyYofv376tNmzbKkCGD02uoXbu2bDabNmzYoIsXL2rPnj1q2bKl48tonTp1tGHDBm3evNlpR08fvnzi8uXLKly4sOOo2H///acbN27E6Wh3rly5dOzYMR0/fjzaS1oi+lzEsGNxFfH6Vq5cWWPHjo3zcnpwBLJRo0aOy0+Cg4M1atQoDR06VK+99ppatmypNGnSxGldderU0YEDB7R27VrHc4l4LypWrKg0adJo7dq1atSokYKDg1WxYkXH0Wc83pPslyP2X5cvX9atW7eiPdr9JJ/PzZo106JFi7Rq1Spdvnz5iX7MnDdvnowxeuutt/Tee+9FmR/T50HEEeaIU7MfFd0wfRHi29+zZ8+uV155Ra+88or0YDjFbt26afv27Xr//fej/TH1Ycnl+wuSF36KAZIILy8vvf766ypZsqTsdrv+/vtvx7yID6v79+9Hu2y1atXk4uKiPXv26K+//ooy/7///nNcX1uzZs1Iy0nSrFmzol3vzJkzn/j5RIyFGdMpgzNmzHjidScmNzc3x1HLmIJFxIfuw69dUtSwYUNJ0ty5c+O13OP615O+lxHXtE2ePDnaUxTjKym/V6tXr9bFixejTF++fLmuXLmidOnSxXhddHTKly+vLFmyaP/+/Y5To+OjS5cucnFx0dy5c3Xnzp14n1qe0BoyZ86s0qVL6+rVq/riiy9kjHEcPdVDoW7p0qX69ddf5enpqapVq8Z5/XE5ivbwaaERIcbPz0+lSpWS3W6P9st0dCJ+GH1cn6tatWq87s0R8fe6ePHiBJ9q6uvrqyFDhihDhgy6c+eODh8+HOdlI96LNWvWaO3atfLz81OJEiWkB9fNV6tWTX/++ad+/vnnSO3j6nH7l6QsLrU/rs2T7Jdz587tuNdDdJ/DISEhmjdvXpzXF6Fjx47Kly+f7t27pzfffPOJzk6K+DyI7qj8vXv3NH/+/GiXi/gbjGnM9Yhr3+Mivv29aNGijrMH9+zZ89j1J5fvL0heCN2ABb788storxM6ePCg4xfUhz/QIo6Q7d+/P9r15c2bV0FBQTLG6LXXXtOVK1cc827fvq1XX31V9+7dU6VKlSLdyKl79+7y8fHRr7/+qnHjxkVa59atWzV+/Pgnfo4R16WvW7cuSt0TJkzQnDlznnjdie2dd96RJH377beOaxsjTJkyRYsXL5a7u7t69eplUYVx8+qrrypfvnyaN2+e+vfvH+0RhfPnz2vixImRpj2ufz3pe/nyyy8rd+7c2r17t1555ZUo1/8FBwc7jnLGVVJ9r+7evas33nhDd+/edUw7d+6co97XX39dXl5ecV6fu7u7Bg8eLGOMWrZsqV9//TVKm/DwcK1fv147duyIMi937tyqW7eugoOD9cEHH2jfvn3KmzevatWq9dRqiAhnEUdxHw7d5cqVU4YMGTRp0iTdvXtXlSpVivE07OjcuHFDZcuW1fTp03Xr1q0o848fP65u3bpJkipVqhTpy/PgwYMlSR9++GG0AWH//v2RgkGvXr3k5uamhQsXRvmyvXr1an3//feSpHfffTfO9evBTfQCAwN15swZtWrVKtojl7dv39ZPP/3kuGfInTt3NGrUqGivyd2yZYuuX78uV1fXeJ1VUaNGDbm5uWn9+vU6cOBAlFBdp04dhYeH69tvv3U8jo+IWp7kxyOrxaX2x7V50v1y7969pQdn3Dx8r4vw8HC9++67cb5Z6MM8PDw0b948eXl5ae7cuWrZsqXjhm2P2rZtW7ShPOLzYOrUqZGey71799SjR48Yz/qpVauWXFxctGrVqkiXERljNGbMmGj/FuPb39evX6/ly5c7bur28DaWLl0qxfEU/uT0/QXJiNW3TweSMmeN050+fXojyRQtWtS0bNnSvPjii6ZGjRrGzc3N6MGYxg8LCQlxDN1TpkwZ06lTJ9O9e3fz+eefO9pcvnzZMXZk+vTpTYsWLUzr1q0dQwTlz58/2iExpk+fblxcXIwejMvavn17U716dePi4uIYMszd3T3KcjENJfaw5s2bG0nGw8PD1KtXz7Rr184ULVrU2Gw28+GHH0Y7xExsQ8/E9ppGeNLhrwYOHOgYtqZKlSrmxRdfNGXLljWSjKurq5k0aVKibcvEYZiZxw1jEtPrv2/fPuPv728kmQwZMphq1aqZF1980bRo0cIUL17c2Gw2kz179kjLxKV/Pcl7aYwxu3btcgxtkyFDBtO4cWPTtm1bU6lSJePt7R3j+xibJ3mvjDGmQoUKjn8FChRwDOX18PSlS5fGq5aIYXA6depkMmXKZPz8/ExQUJBp2rSpY5z7ihUrRhq/28Sj70QMryXJPPvss6Z58+amXbt2pkaNGiZDhgwxDilkHgz/8/AQSYMGDYpxO7H1xyetIWJYneiGtzPGmJYtWzrmf/rpp7G+Do+6du2aY1lPT08TEBBggoKCTOvWrU2FChUc+7R8+fJFGkM8wqeffmpsNptjP9y2bVvTrFkzx3COj+7zv//+e8c6y5Yta1588UVTuXJlxzqGDBkSZRsRQ4bF9vkRHBzsGAbPw8PDlC9f3rRp08YEBQWZ8uXLO8YAP3DgQKTn7eLiYkqVKmVat25t2rdvbypWrOioJbb3OSYVK1Z0vJ5Tp06NNO+vv/5yzEuTJk20Qx3Ftt+OGG86bdq0plWrVqZ79+6me/fu5uDBg8bEYZ9u4vh586jEGKf7/Pnzjr/jypUrmy5dupju3bubyZMnO9osXbrU8f41adLEdOvWzXTv3j3S8JxPsl8ODw83TZs2day7fv36pl27diZ//vzGy8vLMVb3k3z+/PHHH47xr202m3nuuedMy5YtTceOHU3Tpk0jDbfWtGlTc/PmTcey165dc8zPnDmzadGihQkMDDTZsmUz6dKlM7169Yqxroh5rq6upkaNGqZVq1amYMGCxt3d3bz//vtR+kF8+3vE2Pa+vr6mRo0a5sUXXzQtW7Z01Js+fXqze/fuSDXF9FnrjO8vsW0PKR+hG4iFs0L3jBkzTNeuXc1zzz1nMmXKZDw9PU2+fPlMw4YNzYIFC4zdbo+yjb1795pmzZqZrFmzOr78Pbre27dvm+HDh5vSpUsbHx8f4+XlZYoVK2Y++OCDWMcE37hxo6lbt67x9fU1Pj4+pmzZsmbSpEnm9OnTRpLJkSNHlGXi8iUoNDTUfPHFF6ZEiRLGx8fHZMqUydSrV8+sXr06xg8nq0K3McasWLHCNGrUyGTOnNm4ubk5AtRvv/2W6NtyVug2D77If/7556ZixYomQ4YMxt3d3eTIkcOUL1/e9OvXz2zbti3KMo/rX0/yXka4dOmSGThwoClRooRJkyaN8fb2NgUKFDBt27Y1K1eujOMrFll836uHX7PY/sXlC/rDHh579vjx46Z9+/Yme/bsxsPDwxQqVMgMGjTI3L59O8py8ek7W7duNR06dDD58uUznp6eJl26dKZIkSKmRYsW5ocffojxb/vevXsmU6ZMji/Wx48fj3Ebj+uPT1JDxNjcimHc9HHjxjle99jet+jY7Xbz22+/mWHDhpl69eqZwoULm3Tp0hl3d3eTLVs2U7NmTTNq1Chz69atGNexfft20759e5MrVy7j7u5uMmXKZEqVKmXee+89c+rUqSjtd+zYYVq3bm38/PyMm5ubyZw5s2ncuLFZvXp1tOuPS+g2D8LVzJkzTaNGjUz27NmNu7u7yZw5s3nuuedM165dzYIFCxxBNywszHz33Xemffv2pmjRoiZ9+vTG29vbFCxY0AQGBpp169bF63WMEDE2tyRz9uzZSPPsdrvJli2bkWQaNmwY7fKx7QPCw8PN8OHDzbPPPmu8vLwc24noa0k5dBtjzObNm02dOnVMxowZHfvGR/9uJ06caMqWLWt8fHxi3Jc8yX45LCzMjBw50hQvXtx4enqazJkzm+bNm5s9e/Yk6PPHPNinT5061bRq1crkzZvXeHt7Gw8PD5MtWzZTrVo1M2DAALN3795ol7106ZLp0aOHKViwoPH09DQ5c+Y0HTt2NEeOHIm1LrvdbkaOHGmKFStmPDw8TKZMmUzTpk3Nzp07o+0H8e3vR48eNUOGDDG1a9c2efPmNV5eXiZjxoymZMmS5v333zdnzpyJUlNMn7XO+P4S2/aQ8tlMQm83CyDFmjZtmjp37qymTZtq8eLFVpcDJDlDhgzR0KFDNXjw4DjfdA0AAKQuXNMNpHKnT5/W+fPno0zfunWr4xrF+Nx8CQAAAMD/x5BhQCq3fv16de/eXaVKlVLevHnl6uqqY8eOOe6C3rVrV7Vs2dLqMgEAAIBkidANpHIvvPCCunbtqi1btmjjxo26ffu2MmTIoDp16qhbt25q37691SUCAAAAyRbXdAMAAAAA4CRc0w0AAAAAgJMQugEAAAAAcBKu6U5Edrtd586dU7p06WSz2awuBwAAAADgJMYY3bx5Uzlz5pSLS8zHswndiejcuXPKkyeP1WUAAAAAAJ6SM2fOKHfu3DHOJ3QnonTp0kkPXnRfX1+rywHixW6369KlS8qaNWusv9QByQ19GykR/RopFX0byUlwcLDy5MnjyIExIXQnoohTyn19fQndSHbsdrvu3bsnX19fPuSQotC3kRLRr5FS0beRHD3u0mJ6MgAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkhG4AAAAAAJyE0A0AAAAAgJMQugEAAAAAcBJCNwAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkblYXAGvcu3dP//33n+7duydjjNXlpCo2m01eXl7KkSOHvLy8rC4HAAAAgBMRulOZkydPatu2bTp27JjCw8OtLidVc3V1VaFChVSpUiXly5fP6nIAAAAAOAGhOxU5cuSIZs+erWzZsqlu3boqVKiQfHx85OLCVQZPk91u1507d3T06FHt2bNH06dPV7t27VSoUCGrSwMAAACQyAjdqcSNGzc0e/ZsFS5cWEFBQXJ1dbW6pFTNx8dHWbJkUbly5TR37lzNnj1bvXr1Urp06awuDQAAAEAi4hBnKrF//37ZbDa1bNmSwJ2EuLm5qWXLljLGaP/+/VaXAwAAACCREbpTiQMHDqhgwYLy9PS0uhQ8wtvbWwUKFNCBAwesLgUAAABAIiN0pxLXrl1Tjhw5rC4DMciRI4euXbtmdRkAAAAAEhmhO5UICwuTh4eH1WUgBh4eHgoNDbW6DAAAAACJjBupAQAApCDzjt1w6vqDCqZ36voBIKXhSDcAAAAAAE5C6AYAAAAAwEkI3UiypkyZIpvNFuu/2rVrx3l9drtdY8eOVdmyZeXj4yNfX19Vq1ZNixcvjtL23r176tu3r6pVq6acOXPKy8tLfn5+qly5sn788UeFhYUl8rMFAAAAkBJxTTeSrNKlS2vw4MHRzvv555/1zz//qH79+nFalzFGbdq00fz581WwYEF1795dISEhWrRokZo3b65vvvlGPXv2dLS/deuWvv32WwUEBKhx48bKmjWrrl27phUrVqhbt26aPXu2VqxYIRcXfrcCAAAAEDNCN5Ks0qVLq3Tp0lGmh4aGauzYsXJzc1Pnzp3jtK758+dr/vz5qly5stasWSNvb29J0rBhw1SuXDm9++67atKkifz9/SVJmTJl0o0bN6Lc8f3+/fuqW7euVq9erRUrVqhx48aJ8lwBAAAApEwcpkMkn3zyiWw2m1atWhVl3pIlS2Sz2TRy5EhLaouwcOFCXblyRU2aNFH27NnjtMyiRYskSR988IEjcEtSlixZ1KdPH4WEhOjHH390THdxcYl2iDU3Nze1bNlSknT06NFEeDYAAAAAUjJCNyLZvXu3JKls2bJR5u3atSvGeU/TDz/8IEl6+eWX47zM+fPnJUn58+ePMi9i2vr16x+7HrvdrpUrV0qSnnvuuThvHwAAAEDqxOnliGT37t3KnTu3smbNGmVeROiO7pTvCKNHj9b169fjvL0WLVrEur5HnTp1SuvWrVPu3LnVoEGDOC+XJUsWSdKJEydUrFixSPNOnDghSTp8+HCU5UJDQzVs2DAZY3TlyhWtW7dOBw8eVNeuXeN1EzcAAAAAqROhGw7Xrl3TyZMn1axZs2jn79q1S/7+/sqYMWOM6xg9erROnToV5236+/vHK3T/+OOPstvt6tKli1xdXeO8XMOGDTV79mx99tlnqlWrlry8vCRJV65c0ejRoyUp2h8LQkNDNXToUMdjm82md999V8OHD4/ztgEAAACkXoRuOOzZs0eK4fTxS5cu6d9//3VczxyTkydPOq0+u92uH3/8UTabTd26dYvXsi+++KKmTJmiDRs2qESJEmrQoIHCwsK0cOFCx3Xh0d2JPG3atDLGyG6369y5c1qyZIk++OADbd++XcuXL5evr2+iPT8AAAAAKQ/XdMMh4nruMmXKRJkXcWp5dPOelrVr1+r06dOqVatWtNdmx8bNzU0rVqzQkCFD5OLiogkTJuiXX35R8+bN9fPPP0uSsmXLFuPyLi4uyp07t9544w1NmDBBW7du1aeffprg5wQAAAAgZeNINxxiu4natm3bpDiEbmde0/0kN1B7mKenpwYPHhxl7O+NGzdKksqVKxen9dSrVy/ScgAAAAAQE0I3HHbv3i2bzaacOXNGmm632zV//nwpjqHbGdd0X7lyRYsWLVKmTJkee4p7fP3000+SpHbt2sWp/blz5yRJ7u7uiVoHAAAAgJSH0A1J0t27d3Xw4EEZY7R9+3ZVrlxZkmSM0eDBg/XPP/8oY8aMypUrV6zrcdY13dOnT1doaKg6duwoT0/PWNseO3ZMYWFhKliwYKRgHBwcHOUa7J9//lmTJ09W+fLl1apVK8f0/fv3y9/fXz4+PpHa37lzR3379pUkNWrUKJGeHQAAAICUitANSdLevXsVHh6ubNmyqWHDhgoMDJS3t7e2bdum4OBg2Ww2BQcHq3v37ho/fvxjg29imzRpkhTHU8tr166tU6dO6cSJE/L393dMr1ChgvLkyaNixYrJy8tLv//+uzZu3KgCBQpo3rx5ke6GPnfuXI0aNUpVqlSRv7+/fH19dfbsWa1YsUJXrlxR1apV1adPHyc9WwAAAAApBaEb0kPXc3/++efavn27Zs2aJUmqW7euvvrqK/Xv31+LFy/W3bt3n3rg/v3337Vv3z4FBASoRIkST7yetm3b6pdfftGOHTsUFham/Pnza+DAgerXr1+UI+BNmjTRuXPntG3bNm3fvl23bt1S+vTpVbJkSbVr107dunWTmxt/PgAAAABiR2qA9FDorlChgjp37qzvvvsu0vyZM2daVJkUEBAgY0yc28d0ivuQIUM0ZMiQOK2jXLlycb6xGgAAAADEhCHDID0I3T4+PipSpIjVpQAAAABAikHohsLDw7V3716VKFFCLi50CQAAAABILCQs6ODBg7p7926cx8sGAAAAAMQN13RDzz77bLyumQYAAAAAxA1HugEAAAAAcBJCNwAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQjWRkxYoRsNptsNpt27NgRY7sFCxaobt26ypw5s7y8vJQ/f361b99eZ86cidN27t27p759+6patWrKmTOnvLy85Ofnp8qVK+vHH39UWFhYlGWMMfrll19Us2ZN5ciRQz4+PnrmmWf02muv6fjx4wl63gAAAACSJ4YMQ7Kxb98+DR48WGnSpNHt27ejbWOM0euvv64JEyaoYMGCateundKlS6dz585p06ZNOnXqlPLkyfPYbd26dUvffvutAgIC1LhxY2XNmlXXrl3TihUr1K1bN82ePVsrVqyQi8v//93q3Xff1ahRo5QjRw61aNFCvr6++uuvvzRx4kTNmjVL27Zt03PPPZeorwkAAACApC3JHukeN26c/P395eXlpQoVKuj333+Ptf28efNUtGhReXl5qUSJElq+fLljXlhYmPr3768SJUooTZo0ypkzpzp16qRz585FWsfVq1fVoUMH+fr6KkOGDOrevbtu3brltOeIuAsLC1Pnzp1VunRptWzZMsZ2Y8aM0YQJE9SjRw8dOnRI48aN02effaZp06bp1KlTeuGFF+K0vUyZMunGjRvatGmTJk6cqGHDhunbb7/V0aNHVaNGDa1evVorVqxwtD9//rxGjx6tfPny6cCBA/r22281YsQIrVy5UiNHjtTNmzc1atSoRHktAAAAACQfSTJ0z5kzR3379tXgwYO1a9culSpVSvXr19fFixejbb9t2za1b99e3bt31+7du9WiRQu1aNFC+/btkyTduXNHu3bt0kcffaRdu3bpl19+0aFDh9SsWbNI6+nQoYP++ecfrVmzRkuXLtXmzZv16quvPpXnnJRcvnxZ7733nooXLy4fHx/H6dwP/6tSpcpTrenTTz/VP//8o8mTJ8vV1TXaNnfv3tXQoUNVoEABff3119G2c3OL28kdLi4u8vDwiHb5iNB/9OhRx/STJ0/KbrercuXKSp8+faRlmjRpIkm6dOlSnLYNAAAAIOVIkqeXjxo1Sq+88oq6du0qSfruu++0bNkyTZ48We+//36U9l9//bUaNGigfv36SZI++eQTrVmzRmPHjtV3332n9OnTa82aNZGWGTt2rAICAnT69GnlzZtXBw4c0MqVK/XHH3+oXLlykqRvvvlGjRo10pdffqmcOXM+ledutVOnTqlq1ao6c+aMqlatqubNm+vSpUuaNWuW7ty5o/Tp0ytLliyqVavWU6tp165d+vTTT/Xxxx+rePHiMbZbvXq1rl27pq5duyo8PFyLFy/W4cOHlSFDBtWpU0eFChVKcC12u10rV66UpEinihcuXFgeHh7aunWrgoOD5evr65i3dOlSSVLt2rUTvH0AAAAAyUuSC92hoaHauXOnBgwY4Jjm4uKiOnXqaPv27dEus337dvXt2zfStPr162vhwoUxbufGjRuy2WzKkCGDYx0ZMmRwBG5JqlOnjlxcXPTbb79Fe0pzSEiIQkJCHI+Dg4OlB8HMbrfH63k7mzHG8S8mdrtdbdq00ZkzZ/TNN9/ozTffdMxr0aKFmjZtqmLFimnbtm2OdT5q9OjRun79epzratGihUqXLh3j/JCQEHXq1EmlS5dWv379Im3z0efz559/Sg/6S8mSJXX48GHHPBcXF/Xu3VtffvllnGvTg/44bNgwGWN05coVrV+/XgcPHlSXLl1Uq1Ytx/YzZcqk4cOH691331XRokXVrFkz+fr66u+//9b69ev1xhtv6M0334zx9Y94Llb2G7vdbnkNgDPQt5ESxdqvjXP7On9LcCb22UhO4tpPk1zovnz5ssLDw5U9e/ZI07Nnz66DBw9Gu8z58+ejbX/+/Plo29+7d0/9+/dX+/btHUckz58/r2zZskVq5+bmpkyZMsW4nuHDh2vo0KFRpl+6dEn37t17zDN9uu7cuaO7d+/GeAMySVqyZIl+//13NWvWTF26dInUtmrVqvL19dWff/6pW7duyWazRbuO0aNH6/Tp03GuK0eOHCpcuHCM8z/66CMdOXJEW7ZscbymEXcOf/T5RFyj/9VXX6l06dLauHGjnnnmGf311196++23NWrUKOXJk0cvv/xynOu7deuWPv74Y8djm82mt99+W0OHDo3yWr766qvKkiWLevbsqe+//94xvWLFimrZsmWUH2keFvFcYrqE4mmw2+26ceOGjDGRbhAHJHf0baREsfVr282YP+sTw8WL0X+WAYmBfTaSk5s3b8apXZIL3c4WFhamNm3ayBijb7/9NkHrGjBgQKQj7MHBwcqTJ4+yZs0a6fTipMDHx0fe3t5KkyZNjG0WLFggSerbt2+07by9vXX79m35+PjEuBM8efJkotW8fft2jRkzRoMHD1b58uUd093d3R31PFxnRE0eHh5atGiR45KAevXq6eeff1bp0qU1duxY9erVK841pEmTxnHmwrlz57RkyRJ9+OGH2rlzp5YtWxbpff7444/16aefaujQoerYsaMyZMigPXv2qG/fvmrUqJF+/vnnKPcRiBDxXB794edpstvtstlsypo1Kx9ySFHo20iJYuvX5tYNp247W7b0cWgFPBn22UhOvLy84tQuyYXuLFmyyNXVVRcuXIg0/cKFC/Lz84t2GT8/vzi1jwjcp06d0vr16yMFJj8/vyhHGe/fv6+rV6/GuF1PT095enpGme7i4pLkdhIP3wQtJr/++qvSpEmjKlWqRGl39+5dXb16Vfnz54/xRmaJ6f79++rSpYtKliypAQMGRFv3o88n4lKBcuXKKVeuXJHalihRQgUKFNDRo0d148YNR9u4cnV1VZ48edSjRw9lzZpVbdq00bBhwzRixAhJ0tq1azVkyBD16dMn0qURVatW1ZIlS1SgQAG9++67at68ebTrj3guVvebiBqsrgNIbPRtpEQx9mubc/s5f0dwNvbZSC7i2keTXOj28PDQ888/r3Xr1qlFixbSg1+81q1bp549e0a7TMWKFbVu3Tr17t3bMW3NmjWqWLGi43FE4D5y5Ig2bNigzJkzR1nH9evXtXPnTj3//POSpPXr18tut6tChQpOerZJR0hIiP77778YQ/Xq1asVFhb22BuoJdY13bdu3dKRI0ekB30iOhHv74IFC9SiRQs988wz0kPh+1ER0+/evRvv0P2wevXqSZI2btzomBYxfFjNmjWjtPfz81PRokW1e/du3bp1S2nTpn3ibQMAAABIXpJc6NaD05s7d+6scuXKKSAgQKNHj9bt27cddzPv1KmTcuXKpeHDh0uSevXqperVq2vkyJFq3LixZs+erT///FMTJkyQHgTu1q1ba9euXVq6dKnCw8Md12lnypRJHh4eKlasmBo0aKBXXnlF3333ncLCwtSzZ0+1a9cu1dy5XA9Okbfb7ZF+tTHGOMaYftz10KNHj9apU6fivD1/f/9oQ7enp6e6d+8e7TKbN2/WkSNH1KxZM2XNmlX+/v7SQ4H3wIEDUZYJCwvT0aNHlSZNGmXNmjXO9UUn4trxiNPc9eCGa4plWLBLly7JxcUl0jIAAAAAUr4kGbrbtm2rS5cuadCgQTp//rxKly6tlStXOm6Wdvr06UihsFKlSpo5c6YGDhyoDz74QIULF9bChQsdQzqdPXtWixcvlqQoAW/Dhg2qUaOGJOmnn35Sz549Vbt2bbm4uCgwMFBjxox5is/cOp6enipWrJgOHDigVatWqWHDho55H330kTZv3qxOnTpFurY6Ool1Tbe3t7d++OGHaOd16dJFR44c0YABA/TCCy84phcsWFD16tXT6tWr9cMPP0T6geCzzz7T9evX1bFjxyhjdR87dkxhYWEqWLCgIxTv379f/v7+8vHxidT2zp07juv4GzVq5JheuXJljR07VqNGjVJgYGCksbq/++47/fvvv6pcuXK0lyMAAAAASLmSZOiWpJ49e8Z4OvnDp/VGCAoKUlBQULTt/f39Yx0qK0KmTJk0c+bMJ6g2Zfjwww/VsWNHBQYGqkOHDsqcObPWrl2rnTt3ql69evruu++sLvGxxo8fr0qVKumVV17RwoULHad1r1+/Xvny5dMXX3wRZZnatWvr1KlTOnHihOOo+dy5czVq1ChVqVJF/v7+8vX11dmzZ7VixQpduXJFVatWVZ8+fRzrCAoK0rfffqvNmzerSJEiatasmTJkyKBdu3Zp/fr18vb2dpwtAAAAACD1SLKhG09fhw4d5OLiopEjR+qnn35yjHf9ww8/qGvXrsniZhYFCxbUn3/+qUGDBmnlypVavXq1/Pz89Oabb2rQoEFxvjt4kyZNdO7cOW3btk3bt2/XrVu3lD59epUsWVLt2rVTt27dIh0xd3V11erVq/XVV19p7ty5mjlzpkJDQ5U9e3Z17NhRH3zwgYoVK+bEZw4AAAAgKbKZuBwCRpwEBwcrffr0unHjRpIbMuyzzz5TtWrVVKlSJatLQTR+/fVXbd26Vf3797esBrvdrosXLypbtmzJ4gcWIK7o20iJYuvX8445d8iwoIIMGQbnYZ+N5CSu+Y+eDAAAAACAkxC6AQAAAABwEkI3AAAAAABOQuhOJVxcXBQeHm51GYhBeHi4XF1drS4DAAAAQCIjdKcSPj4+Cg4OtroMxCA4ODjKmOAAAAAAkj9CdypRoEABHTp0KE7jlePpstvtOnz4sAoUKGB1KQAAAAASGaE7lShevLiCg4O1b98+q0vBI/bu3aubN2/q2WeftboUAAAAAInMzeoC8HTky5dPzz33nBYsWKC7d++qZMmS8vLysrqsVO3evXv666+/tGrVKpUsWVK5c+e2uiQAAAAAiYzQnUrYbDa1atVKrq6uWr58uVatWqXcuXPLx8dHLi6c8PA02e123blzR//++6/Cw8NVpkwZNW3aVDabzerSAAAAACQyQncq4uLiopYtW6pWrVo6cOCAzpw5o3v37nGd91Nms9mUNm1a1a1bV8WLF5evr6/VJQEAAABwEkJ3KpQ+fXq98MILeuGFF6wuBQAAAABSNM4rBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkhG4AAAAAAJyE0A0AAAAAgJMQugEAAAAAcBJCNwAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkhG4AAAAAAJyE0A0AAAAAgJMQugEAAAAAcBJCNwAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkhG4AAAAAAJyE0A0AAAAAgJMQugEAAAAAcBJCNwAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkhG4AAAAAAJyE0A0AAAAAgJMQugEAAAAAcBJCNwAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkhG4AAAAAAJyE0A0AAAAAgJMQugEAAAAAcBJCNwAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkhG4AAAAAAJyE0A0AAAAAgJMQugEAAAAAcBJCNwAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkhG4AAAAAAJyE0A0AAAAAgJMQugEAAAAAcBJCNwAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkhG4AAAAAAJyE0A0AAAAAgJMQugEAAAAAcBJCNwAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkhG4AAAAAAJyE0A0AAAAAgJMQugEAAAAAcBJCNwAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkhG4AAAAAAJyE0A0AAAAAgJMQugEAAAAAcBJCNwAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkhG4AAAAAAJyE0A0AAAAAgJMkydA9btw4+fv7y8vLSxUqVNDvv/8ea/t58+apaNGi8vLyUokSJbR8+fJI83/55RfVq1dPmTNnls1m0549e6Kso0aNGrLZbJH+vf7664n+3AAAAAAAqUeSC91z5sxR3759NXjwYO3atUulSpVS/fr1dfHixWjbb9u2Te3bt1f37t21e/dutWjRQi1atNC+ffscbW7fvq0qVapoxIgRsW77lVde0X///ef49/nnnyf68wMAAAAApB5JLnSPGjVKr7zyirp27arixYvru+++k4+PjyZPnhxt+6+//loNGjRQv379VKxYMX3yyScqW7asxo4d62jz0ksvadCgQapTp06s2/bx8ZGfn5/jn6+vb6I/PwAAAABA6uFmdQEPCw0N1c6dOzVgwADHNBcXF9WpU0fbt2+Pdpnt27erb9++kabVr19fCxcujPf2f/rpJ82YMUN+fn5q2rSpPvroI/n4+MTYPiQkRCEhIY7HwcHBkiS73S673R7v7QNWstvtMsbQd5Hi0LeREsXar41z+zp/S3Am9tlITuLaT5NU6L58+bLCw8OVPXv2SNOzZ8+ugwcPRrvM+fPno21//vz5eG37xRdfVL58+ZQzZ079/fff6t+/vw4dOqRffvklxmWGDx+uoUOHRpl+6dIl3bt3L17bB6xmt9t148YNGWPk4pLkToIBnhh9GylRbP3advO2U7d98WJIHFoBT4Z9NpKTmzdvxqldkgrdVnr11Vcd/12iRAnlyJFDtWvX1rFjx1SwYMFolxkwYECko+zBwcHKkyePsmbNyqnpSHbsdrtsNpuyZs3KhxxSFPo2UqLY+rW5dcOp286WLb1T14/UjX02khMvL684tUtSoTtLlixydXXVhQsXIk2/cOGC/Pz8ol3Gz88vXu3jqkKFCpKko0ePxhi6PT095enpGWW6i4sLOwkkSzabjf6LFIm+jZQoxn5tc24/5+8IzsY+G8lFXPtokurJHh4eev7557Vu3TrHNLvdrnXr1qlixYrRLlOxYsVI7SVpzZo1MbaPq4hhxXLkyJGg9QAAAAAAUq8kdaRbkvr27avOnTurXLlyCggI0OjRo3X79m117dpVktSpUyflypVLw4cPlyT16tVL1atX18iRI9W4cWPNnj1bf/75pyZMmOBY59WrV3X69GmdO3dOknTo0CHpwVFyPz8/HTt2TDNnzlSjRo2UOXNm/f333+rTp4+qVaumkiVLWvI6AAAAAACSvyQXutu2batLly5p0KBBOn/+vEqXLq2VK1c6bpZ2+vTpSIfxK1WqpJkzZ2rgwIH64IMPVLhwYS1cuFDPPfeco83ixYsdoV2S2rVrJ0kaPHiwhgwZIg8PD61du9YR8PPkyaPAwEANHDjwqT53AAAAAEDKYjPGGKuLSCmCg4OVPn163bhxgxupIdmx2+26ePGismXLxjVUSFHo20iJYuvX844590ZqQQW5kRqch302kpO45j96MgAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkhG4AAAAAAJyE0A0AAAAAgJMQugEAAAAAcBJCNwAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkhG4AAAAAAJyE0A0AAAAAgJMQugEAAAAAcBJCNwAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkhG4AAAAAAJyE0A0AAAAAgJMQugEAAAAAcBJCNwAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkhG4AAAAAAJyE0A0AAAAAgJMQugEAAAAAcBJCNwAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkhG4AAAAAAJyE0A0AAAAAgJMQugEAAAAAcBJCNwAAAAAATpKg0H3u3LnEqwQAAAAAgBQmQaHb399fzZs319KlS2W32xOvKgAAAAAAUoAEhe4XXnhBS5YsUfPmzZU3b14NGjRIJ0+eTLzqAAAAAABIxhIUujdv3qyDBw+qb9++un//vv73v/+pUKFCatCggebPn6/79+8nXqUAAAAAACQzCb6RWpEiRfTFF1/o33//1bx581S3bl2tXbtWbdq0Ua5cudS/f38dPnw4caoFAAAAACAZSbS7l7u5uSkwMFArVqzQyZMnNXjwYLm4uOjLL79UsWLFVLNmTc2dO1fGmMTaJAAAAAAASVqiDxlmt9u1c+dO/fHHH7p06ZKMMcqTJ4+2bt2q9u3bq1SpUjpy5EhibxYAAAAAgCQn0UL38ePH9cEHHyhPnjxq1aqVVq9ercDAQK1bt04nT57U6dOn9e677+rgwYN64403EmuzAAAAAAAkWW4JWTgsLEzz58/XxIkTtWnTJtntduXPn1/Dhg1T165dlS1bNkdbPz8/jRgxQsHBwZo2bVpi1A4AAAAAQJKWoNCdM2dOXb16Va6urmrevLlee+011atXL9Zl8uXLp7t37yZkswAAAAAAJAsJCt0+Pj7q1auXunfvrhw5csRpmR49eqh9+/YJ2SwAAAAAAMlCgkL3yZMnZbPZ4rWMr6+vfH19E7JZAAAAAACShQTdSK1gwYL65ptvYm0zbtw4FShQICGbAQAAAAAgWUpQ6D558qSuXbsWa5vr16/r1KlTCdkMAAAAAADJUqKP0/2oGzduyNPT09mbAQAAAAAgyYn3Nd2bN2+O9PjkyZNRpklSeHi4zpw5o59++klFihRJWJUAAAAAACRD8Q7dNWrUcNw8zWazaerUqZo6dWq0bY0xstls+uyzzxJeKQAAAAAAyUy8Q/egQYNks9lkjNHHH3+s6tWrq0aNGlHaubq6KlOmTKpZs6aKFSuWWPUCAAAAAJBsxDt0DxkyxPHfmzZtUteuXdWpU6fErgsAAAAAgGQvQeN0b9iwIfEqAQAAAAAghXH63csBAAAAAEit4nWku0CBArLZbFq7dq3y58+vAgUKxGk5m82mY8eOPWmNAAAAAAAkS/EK3Xa73XHn8ugex8QY82TVAQAAAACQjMUrdJ88eTLWxwAAAAAA4P/jmm4AAAAAAJwkQXcvj0lwcLB+++03eXl5qUqVKnE6BR0AAAAAgJQmQUe6J06cqOrVq+vatWuOaX/99ZeKFi2qBg0aqEaNGqpataru3LmTGLUCAAAAAJCsJCh0T58+XSEhIcqYMaNj2jvvvKOLFy+qa9euatSokbZv365vv/02MWoFAAAAACBZSVDoPnz4sEqVKuV4fOXKFW3YsEEvv/yyfvjhBy1ZskTly5fXTz/9lBi1AgAAAACQrCQodF+/fl1Zs2Z1PN6yZYskqVWrVo5pVapU4S7nAAAAAIBUKUGhO3PmzPrvv/8cj9etWydXV1dVrlzZMc0Yo7CwsIRVCQAAAABAMpSg0F2yZEktWrRI+/bt09GjRzVz5kxVrlxZadKkcbQ5efKkcuTIkRi1AgAAAACQrCQodL/33nu6du2aSpUqpWeeeUbXr19X3759HfPtdrt+/fVXPf/884lRKwAAAAAAyUqCxumuWbOmFi9erB9//FGS1K5dOzVt2tQxf+vWrcqZM2eka7wBAAAAAEgtEhS6Jalx48Zq3LhxtPOqVq2q3bt3J3QTAAAASCLmHbvh9G0EFUzv9G0AwNOSoNPLAQAAAABAzBJ8pFuSfv/9d/3xxx+6fv26wsPDo8y32Wz66KOPEmNTAAAAAAAkGwkK3VevXlWLFi20detWGWNibEfoBgAAAACkRgkK3X379tWvv/6qGjVqqHPnzsqdO7fc3BLl4DkAAAAAAMleghLy0qVLFRAQoHXr1slmsyVeVQAAAAAApAAJupHa3bt3Va1aNQI3AAAAAADRSFDoLl26tE6ePJl41QAAAAAAkIIkKHQPHjxYixcv1o4dOxKvIgAAAAAAUogEXdN9/vx5NW7cWNWrV1eHDh1UtmxZ+fr6Rtu2U6dOCdkUAAAAAADJToJCd5cuXWSz2WSM0ZQpUzRlypQo13cbY2Sz2QjdAAAAAIBUJ0Gh+8cff0y8SgAAAAAASGESFLo7d+6ceJUAAAAAAJDCJOhGagAAAAAAIGaJEroXLFigNm3aqGTJkipUqJBj+sGDB/X555/r7NmzibEZAAAAAACSlQSdXm6329W+fXv9/PPPkiRvb2/dvXvXMT9jxoz68MMPFR4ergEDBiS8WgAAAAAAkpEEHen+6quvNG/ePL322mu6du2a3n333Ujzs2fPrqpVq2rZsmUJrRMAAAAAgGQnQaF7ypQpKl++vMaPHy9fX98ow4VJUqFChXTixImEbAYAAAAAgGQpQaH76NGjqlq1aqxtMmfOrCtXriRkMwAAAAAAJEsJCt3e3t66ceNGrG1OnTqlDBkyJGQzAAAAAAAkSwkK3WXKlNGqVat07969aOdfvXpVK1eu1AsvvJCQzQAAAAAAkCwlKHS//fbb+vfffxUYGKh///030rxjx46pZcuWunHjht5+++2E1gkAAAAAQLKToCHDmjdvrv79+2vEiBHKly+f0qRJI0nKli2brly5ImOMPvroI9WqVSux6gUAAAAAINlI0JFuSRo+fLhWrVqlJk2ayMfHR66urrLb7WrQoIFWrFihoUOHJk6lAAAAAAAkMwkO3ZJUt25dLVq0SOfPn1doaKguX76sZcuWqX79+k+0vnHjxsnf319eXl6qUKGCfv/991jbz5s3T0WLFpWXl5dKlCih5cuXR5r/yy+/qF69esqcObNsNpv27NkTZR337t3Tm2++qcyZMytt2rQKDAzUhQsXnqh+AAAAAACU0NB99uxZjRs3Tl26dFGTJk3UpEkTdevWTd9++63++++/J1rnnDlz1LdvXw0ePFi7du1SqVKlVL9+fV28eDHa9tu2bVP79u3VvXt37d69Wy1atFCLFi20b98+R5vbt2+rSpUqGjFiRIzb7dOnj5YsWaJ58+Zp06ZNOnfunFq1avVEzwEAAAAAAEmyGWPMkyw4ePBgff755woNDdWjq7DZbPL09NSAAQP00UcfxWu9FSpUUPny5TV27FhJkt1uV548efTWW2/p/fffj9K+bdu2un37tpYuXeqY9sILL6h06dL67rvvIrU9efKk8ufPr927d6t06dKO6Tdu3FDWrFk1c+ZMtW7dWpJ08OBBFStWTNu3b4/z3deDg4OVPn163bhxQ76+vvF63oDV7Ha7Ll68qGzZssnFJVFOggGSBPo2UqLY+vW8Y7EP55ocBBVMb3UJsAj7bCQncc1/T3QjtQ8//FDDhw+Xp6enOnbsqBo1aihnzpySpHPnzmnDhg2aN2+ehgwZovDwcA0ZMiRO6w0NDdXOnTs1YMAAxzQXFxfVqVNH27dvj3aZ7du3q2/fvpGm1a9fXwsXLozz89m5c6fCwsJUp04dx7SiRYsqb968sYbukJAQhYSEOB4HBwdLD3YWdrs9ztsHkgK73S5jDH0XKQ59GylRrP3aJP++zt9r6sU+G8lJXPtpvEP38ePH9fnnnyt//vxasWKFihQpEqVN165dNXDgQNWvX1/Dhg1T586dlT9//seu+/LlywoPD1f27NkjTc+ePbsOHjwY7TLnz5+Ptv358+fj/JzOnz8vDw8PZciQIV7rGT58eLQ3irt06VKMY5cDSZXdbteNGzdkjOGXZaQo9G2kRLH1a9vN25bVlVguXgyJQyukROyzkZzcvHkzTu3iHbqnTp0qu92u6dOnRxu4IxQpUkQzZsxQ1apVNW3aNA0ePDi+m0ryBgwYEOkoe3BwsPLkyaOsWbNyejmSHbvdLpvNpqxZs/IhhxSFvo2UKLZ+bW4l/9PLs2Xj9PLUin02khMvL684tYt36N66dauee+45VapU6bFtK1eurBIlSmjLli1xWneWLFnk6uoa5a7hFy5ckJ+fX7TL+Pn5xat9TOsIDQ3V9evXIx3tftx6PD095enpGWW6i4sLOwkkSzabjf6LFIm+jZQoxn5tS/79nL/V1I19NpKLuPbRePfkAwcOKCAgIM7tAwICYjw1/FEeHh56/vnntW7dOsc0u92udevWqWLFitEuU7FixUjtJWnNmjUxto/O888/L3d390jrOXTokE6fPh2v9QAAAAAA8LB4H+m+fv26smXLFuf22bJl0/Xr1+Pcvm/fvurcubPKlSungIAAjR49Wrdv31bXrl0lSZ06dVKuXLk0fPhwSVKvXr1UvXp1jRw5Uo0bN9bs2bP1559/asKECY51Xr16VadPn9a5c+ekB4FaD45w+/n5KX369Orevbv69u2rTJkyydfXV2+99ZYqVqwY5zuXAwAAAADwqHiH7rt370Z7SnVMPDw8dPfu3Ti3b9u2rS5duqRBgwbp/PnzKl26tFauXOm4Wdrp06cjHcavVKmSZs6cqYEDB+qDDz5Q4cKFtXDhQj333HOONosXL3aEdklq166d9GDYs4g7q3/11VdycXFRYGCgQkJCVL9+fY0fPz7OdQMAAAAA8KgnGjLM2Xr27KmePXtGO2/jxo1RpgUFBSkoKCjG9XXp0kVdunSJdZteXl4aN26cxo0b9wQVAwAAAAAQ1ROF7hkzZmjHjh1xanv06NEn2QQAAAAAAMneE4Xuo0ePxitM22y2J9kMAAAAAADJWrxD94kTJ5xTCQAAAAAAKUy8Q3e+fPmcUwkAAAAAACkMI84DAAAAAOAkhG4AAAAAAJyE0A0AAAAAgJMQugEAAAAAcBJCNwAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkhG4AAAAAAJyE0A0AAAAAgJMQugEAAAAAcBJCNwAAAAAATkLoBgAAAADASQjdAAAAAAA4CaEbAAAAAAAnIXQDAAAAAOAkhG4AAAAAAJyE0A0AAJAK2cPDFXL3juzh4VaXAgApmpvVBQAAACDx3LpxXQf/2Kb9v2/V4d1/6HbwdYWFhigsNFT3Q0MUGhKi+6EhCr9/X5Lk7umlvM8Ul3+xEv/3r3gJ5XvmWXmlSWv1UwGAFIHQDQAAkIxdvHhRmzdv1ubNm7Vp0ybt3btXxpg4Lx8Wck/H/t6lY3/vckyz2Wzyy1dA+YqVUKGSZVWpcStlyZnbSc8AAFI2QjcAAEAyc/XqVY0ZM0YLFy7UgQMHYm3rnSad3Dw85OHpJTcPD7l7eMrd0/P//t/DQ1cvntf5k8ciBXVjjP47eUz/nTymHSsW6qcvhqhM9bqq066LylSvK1c3vkICQFyxxwQAAHhK5h27kaDlL545qWVTvtX6eTMUcud2lPk2Fxf5FyuhYuUrqXiFyir6fEX5Zsr82PXeu31Lpw/t18kDex3/Th38R2Eh9yRJxm7Xrg2rtGvDKmX2y6WaQR1VK+gljn4DQBwQugEAAJK4o3/t1OIfvtFvqxbL2O2O6TabTYVKPq9iFSqrePlKKlruBfmkSx/v9XulSasiZQNUpGyAY1r4/fs6d/yIflu1WOvmTteV//6VJF05f1Y/fzNC88d98X9Hv9t2Vtma9eXi6ppIzxYAUhZCNwAAQBJkt9u1a/1KLZn0jQ78sT3SPA8vb9VsFqjGr/aWn38hp2zf1c1NeYoUU54ixdSqx7vas3mt1s6eop0bVsnY7ZGOfvsXK6HuQ7/UM2UrOKUWAEjOCN0AAABJzIl//tJ3H7ytE//8FWl6+sxZ1aDTq6rXvqt83SSTLtNTqcfF1VVla9ZX2Zr1deW/s9ow/yetmzPNcfT75IG9+qhNfdUIfFEd3huq9JmzPpW6ACA5YJxuAACAJCI05J5mfvmxBrSqFSlw5ypYRK99OkbjNu9V4Jv9lC7j0wnb0cmcI5da93xP4zb+pfcnzpF/sRKOeRvnz1SvOs9r5bQJjiHJACC1I3QDAAAkAQd37tB7Tatq4XejZA8PlyTlKVJc/SfM1sgVO1S7bSd5eHpZXaZDxNHv4Qs2qNugz+WTzleSdOdmsCZ//J7eb1lDB3fusLpMALAcoRsAAMBCd2/d1OSh/TS4XUOdO35EkuTq7q42vT/QiIUb9XytBnJxSbpf2Vzd3NSg06v6eu1O1Qh80TH91IF9GtS2gca994auX75oaY0AYKWkuwcHAABI4fZsXqd3GlXUyukTHeNkFy5VTp8v2qzWPd+Tm4eH1SXGWfrMWdVjxHh9MndVpFPON/0yS/0aV9Y/O7ZYWh8AWIXQDQAA8JTdu3Nb4/v30LBugbp87v9uRubp7aPOHw7TJ3NXKU+RYlaX+MSeKVtBny3cqG6Dv1Aa3/8bvuzGlUv6pHMLLf7hG8ePCwCQWhC6AQAAnqLL5/7V4HYNtXH+TMe0EpWq68tl29S4a48UMd61i6urGrz0ikav+VOlqtaWJNnDwzXjs4/01VtddPfWTatLBICnhtANAADwlBze9fv/3Zl8/9+SJO806fT6sDEaOHWhsuf1t7q8RJc+c1YN+GGuAnv2c0zbsXKRPgisrbPHDltaGwA8LYRuAACAp2D69Oka0qGJbjy4qVj2PP769Oc1qtWmk2w2m9XlOY2Lq6va9v5Q730/y3GH87PHDmtAq1rasXKR1eUBgNMRugEAAJwoPDxc77//vjp16qT7YaGSpGcrVNGwX9Yrd+GiVpf31JSr3VCfLdiovM8UlyTdu31Lo3p21owRgxjTG0CKRugGAABwkuDgYLVo0UIjRoxwTKv7Yjd9OGWB0mXMZGltVvDzL6D/zVujKs2CHNMWTxyjT7u20p2bNyytDQCchdANAADgBMePH1elSpW0dOlSSZKrq6u6D/lSr3w8Sm7u7laXZxkvnzR6a+QEdR00Qq5ubpKkfds3a2jHZgq+ctnq8gAg0RG6AQAAEtlvv/2mgIAA/fPPP5KkDBkyaOXKlarf8WWrS0sSbDabGnZ6TYN/Wqp0GTNLkk7885cGv9hYV8+fs7o8AEhUhG4AAIBEtG3bNtWtW1dXrlyRJD3zzDP6/fffVadOHatLS3KKPv+Chs5arkzZc0qSzh47pEHtG+r48eNWlwYAiYbQDQAAkEi2bNmi+vXr6+bN/xuHumbNmtqxY4cKFy5sdWlJVu5Cz+jj2cuVPc//DZl28cwpVa1aVfv377e6NABIFIRuAACARLBx40Y1aNBAt27dkiTVrVtXS5cuVYYMGawuLcnLlsdfQ2evUO5C/3c393Pnzql69eratWuX1aUBQIIRugEAABJo3bp1atSoke7cuSNJatCggRYtWiQfHx+rS0s2MmXPoSEzl6nAc6UlSZcvX1bNmjW1detWq0sDgAQhdAMAACTA6tWr1aRJE929e1eS1LhxYy1YsEDe3t5Wl5bs+GbKrEHTF6lKlSrSgyHX6tWrpzVr1lhdGgA8MUI3AADAE1qxYoWaNWume/fuSZKaNWum+fPny8vLy+rSki2fdOm1atUq1atXT5J0584dNWnSRMuXL7e6NAB4IoRuAACAJ7B06VK1aNFCISEhkqSWLVtq3rx58vT0tLq0ZM/Hx0eLFy9Wq1atJEmhoaFq3bo1p5oDSJYI3QAAAPG0dOlStWrVSqGhoZKk1q1ba86cOfLw8LC6tBTD09NTc+bMUVBQkCTp7t27atKkif7++2+rSwOAeCF0AwAAxMPWrVsVFBSksLAwSVK7du00a9Ysubu7W11aiuPm5qYZM2Y4TjW/fv266tevr2PHjlldGgDEGaEbAAAgjvbv36+mTZs6ruFu27atpk+fLjc3N6tLS7E8PDw0f/58VahQQZJ0/vx51atXT//995/VpQFAnBC6AQAA4uDs2bNq0KCBrl27JkmqU6eOpk2bRuB+CtKmTatly5apePHikqTjx4+rfv36jvcCAJIyQjcAAMBjXL9+XQ0aNNCZM2ckSWXKlNEvv/zCNdxPUebMmbV69Wrly5dPkrR37141bdrUMTY6ACRVhG4AAIBY3Lt3Ty1atNC+ffskSfnz59fy5cuVLl06q0tLdXLlyqXVq1cra9asUjTX1wNAUkToBgAAiEF4eLheeuklbdq0SZKUJUsWrVq1Sn5+flaXlmoVKVJEK1eudPzosXz5cnXp0kV2u93q0gAgWoRuAACAaBhj1Lt3b/3888/Sg7Gjly1bpsKFC1tdWqpXtmxZLVmyxDEm+syZM/Xuu+9aXRYARIvQDQAAEI0RI0Zo7NixkiRXV1f9/PPPCggIsLosPFC9enXNnTtXrq6ukqSvvvpKEyZMsLosAIiC0A0AAPCIadOmacCAAY7HP/zwgxo2bGhpTYiqWbNmGj9+vOPxm2++qQ0bNlhaEwA8itANAADwkC1btujll192PB42bJi6dOliaU2I2auvvqrevXtLku7fv6/AwEAdOXLE6rIAwIHQDQAA8MCpU6cUGBjouBt2jx499P7771tdFh7jyy+/dJyJcO3aNTVp0oQxvAEkGYRuAAAASbdv31bz5s116dIlSVKdOnX09ddfy2azWV0aHsPV1VWzZ89W8eLFJUmHDx9WmzZtGEoMQJJA6AYAAKme3W5X586d9ddff0mSChUqpDlz5sjNzc3q0hBHvr6+Wrp0qbJkySJJWrt2reO0cwCwEqEbAACkev/73/80f/58SVK6dOm0ePFiZcqUyeqyEE/58+fXggUL5O7uLkkaP368xo0bZ3VZAFI5QjcAAEjVfvnlFw0ePFiSZLPZNGvWLBUrVszqsvCEqlSpookTJzoe9+rVS6tXr7a0JgCpG6EbAACkWn/99Zdeeuklx+PPPvtMjRs3trQmJFznzp3Vv39/SVJ4eLjatGmjgwcPWl0WgFSK0A0AAFKlS5cuqXnz5rpz544kqWPHjurXr5/VZSGRDBs2TM2bN5ck3bhxQ02bNtX169etLgtAKkToBgAAqU5oaKhat26tU6dOSZICAgI0ceJE7lSegri4uGjGjBkqVaqUJOno0aPq1KmT7Ha71aUBSGUI3QAAIFUxxuitt97S5s2bJUk5cuTQggUL5OXlZXVpSGRp06bVwoULHTfFW7JkiYYPH251WQBSGUI3AABIVSZNmqQJEyZIkjw9PbVw4ULlzJnT6rLgJP7+/po1a5bjLIaPPvpIq1atsrosAKkIoRsAAKQaO3fuVM+ePR2PJ06cqICAAEtrgvPVq1dPn3zyifTgTIcXX3xRJ0+etLosAKkEoRsAAKQKV69eVevWrRUSEiJJ6tmzZ6Q7lyNlGzBggJo2bSo96AuBgYG6e/eu1WUBSAUI3QAAIMWz2+166aWXHEc3K1SooJEjR1pdFp4iFxcXTZs2TYUKFZIk7dq1S2+++aaMMVaXBiCFI3QDAIAUb9iwYVq+fLkkKUuWLJo3b548PDysLgtPWYYMGfTLL7/Ix8dHkvTjjz9q4sSJVpcFIIUjdAMAgBRtzZo1GjRokCTJZrNp1qxZypMnj9VlwSIlSpTQDz/84Hj81ltv6ffff7e0JgApm5vVBQAAADjL6dOn1b59e8cpxJ988onq1KljdVl4jHnHbjh1/W4BjfT2229rzJgxCg0NVWBgoHbu3Kls2bI5dbsAUieOdAMAgBQpJCREQUFBunLliiSpcePGGjBggNVlIYn48ssvVblyZUnSv//+q3bt2un+/ftWlwUgBSJ0AwCAFOmdd95xnDbs7++v6dOny8WFrz74P+7u7po3b578/PwkSRs2bNDQoUOtLgtACsQnDwAASHF++uknjRs3TpLk6emp+fPnK2PGjFaXhSQmR44cmjt3rlxdXSVJn376qVavXm11WQBSGEI3AABIUf755x+9+uqrjsfjxo1T2bJlLa0JSVfVqlX16aefSpKMMerYsaPOnTtndVkAUhBCNwAASDFu376toKAg3blzR5LUrVs3de/e3eqykMT169dPjRo1kiRdunSJ67sBJCpCNwAASDF69uypAwcOSJJKliypsWPHWl0SkgEXFxdNnTpVuXPnliRt2bJFgwcPtrosACkEoRsAAKQIU6dO1ZQpUyRJadKk0dy5c+Xt7W11WUgmsmTJojlz5jiu7x42bJhWrlxpdVkAUgBCNwAASPb279+vHj16OB5///33euaZZyytCclPpUqVNHz4cMfjjh076t9//7W0JgDJH6EbAAAka3fu3FGbNm0c13G//PLL6tChg9VlIZl655131KRJE0nSlStXuL4bQIIRugEAQLL29ttv659//pEkPffcc/r666+tLgnJWMT13Xnz5pUkbd26VQMHDrS6LADJGKEbAAAkWzNmzNCkSZMkST4+Ppo7d658fHysLgvJXKZMmTRnzhy5ublJkkaMGKFly5ZZXRaAZIrQDQAAkqWDBw/q9ddfdzz+9ttvVaxYMUtrQsrxwgsvaMSIEY7HnTp10pkzZyytCUDyROgGAADJzt27d9WmTRvdvn1bktS1a1d16tTJ6rKQwvTp00fNmjWTJF29elXt27fn+m4A8UboBgAAyU7v3r21d+9eSVLx4sX1zTffWF0SUiCbzaYpU6YoX7580oPru4cMGWJ1WQCSGUI3AABIVmbNmqUJEyZIkry9vTV37lylSZPG6rKQQmXMmFGzZs2KNH732rVrrS4LQDJC6AYAAMnG0aNH9eqrrzoejxs3Ts8++6ylNSHlq1ixoj799FNJkjFGHTt21IULF6wuC0AyQegGAADJQkhIiNq2batbt25Jkl566SV16dLF6rKQSvTr10/169eXJF24cEGdOnWS3W63uiwAyQChGwAAJAvvv/++du3aJUkqUqSIxo8fL5vNZnVZSCVcXFw0bdo0+fn5SZJWr16tzz//3OqyACQDhG4AAJDkLVmyRKNHj5YkeXp6as6cOUqbNq3VZSGVyZYtm2bMmOH4sWfgwIHaunWr1WUBSOII3QAAIEk7c+ZMpNPIR44cqdKlS1taE1Kv2rVr68MPP5QkhYeHq3379rp69arVZQFIwgjdAAAgybp//75efPFFR6hp2bKlevToYXVZSOUGDx6sqlWrSg9+FOrevbuMMVaXBSCJInQDAIAka+jQofr1118lSXnz5tWkSZO4jhuWc3Nz08yZM5UpUyZJ0sKFCzV27FirywKQRBG6AQBAkrR+/XrHME2urq6aNWuWMmbMaHVZgCQpd+7cmjJliuPxu+++67jRHwA8LMmG7nHjxsnf319eXl6qUKGCfv/991jbz5s3T0WLFpWXl5dKlCih5cuXR5pvjNGgQYOUI0cOeXt7q06dOjpy5EikNv7+/rLZbJH+ffbZZ055fgAAIGYXL15Uhw4dHKfs/u9//1OlSpWsLgspyLxjNxL8717xamrc9f8udwgNDVXjVkGa9te/mnfshtVPD0ASkiRD95w5c9S3b18NHjxYu3btUqlSpVS/fn1dvHgx2vbbtm1T+/bt1b17d+3evVstWrRQixYttG/fPkebzz//XGPGjNF3332n3377TWnSpFH9+vV17969SOv6+OOP9d9//zn+vfXWW05/vgAA4P+z2+3q1KmTzp8/L0mqV6+e3nvvPavLAqLVod8QFSxRRpJ0/tRxTRzUl+u7AUSSJEP3qFGj9Morr6hr164qXry4vvvuO/n4+Gjy5MnRtv/666/VoEED9evXT8WKFdMnn3yismXLOq6tMcZo9OjRGjhwoJo3b66SJUtq2rRpOnfunBYuXBhpXenSpZOfn5/jX5o0aZ7KcwYAAP/nyy+/1KpVqyRJfn5+mjZtmlxckuRXFkBuHh7qNXqyvNOkkyT9unieNvw8w+qyACQhSe4TLDQ0VDt37lSdOnUc01xcXFSnTh1t37492mW2b98eqb0k1a9f39H+xIkTOn/+fKQ26dOnV4UKFaKs87PPPlPmzJlVpkwZffHFF7p//34iP0MAABCT7du3O4ZjstlsmjFjhrJnz251WUCs/PLl12vDxjgeTx76nvbv329pTQCSDjerC3jU5cuXFR4eHuUDNnv27Dp48GC0y5w/fz7a9hGnpUX8f2xtJOntt99W2bJllSlTJm3btk0DBgzQf//9p1GjRkW73ZCQEIWEhDgeBwcHSw9Oi7Pb7fF85oC17Ha7jDH0XaQ49O3k49q1a2rXrp3jB+8BAwaoZs2aKeu9M4n0XIz5//+Ugl6fZKxSo+bat62z1s6ZqtB7d9WmTRvt2LFDPj4+VpeWrLDPRnIS136a5EK3lfr27ev475IlS8rDw0Ovvfaahg8fLk9Pzyjthw8frqFDh0aZfunSpSjXigNJnd1u140bN2SM4TROpCj07eTBGKNu3brp9OnTkqSAgAC98cYbMd7PJbmy3bydSGsyst29KdmkB/+DJKBLr346tHO7zhw9rH/++Uevv/66vvzyS6vLSlbYZyM5uXnzZpzaJbnQnSVLFrm6uurChQuRpl+4cEF+fn7RLuPn5xdr+4j/v3DhgnLkyBGpTenSpWOspUKFCrp//75OnjypZ555Jsr8AQMGRArqwcHBypMnj7JmzSpfX984P2cgKbDb7bLZbMqaNSsfckhR6NvJw9ixY7Vy5UpJUubMmTVv3jzlzJnT6rISnbmVSHe1NkYykkmbSWLc8iTDI53U55upGtCqtkLu3tFPP/2kRo0aqV27dlaXlmywz0Zy4uXlFad2SS50e3h46Pnnn9e6devUokUL6cEf37p169SzZ89ol6lYsaLWrVun3r17O6atWbNGFStWlCTlz59ffn5+WrdunSNkBwcH67ffftMbb7wRYy179uyRi4uLsmXLFu18T0/PaI+Au7i4sJNAsmSz2ei/SJHo20nbzp071a9fP8fjqVOnKm/evJbW5DS2xOqD9v8L2zZbIq4TiSF34WLqNvhzffv+/31vff311xUQEKBChQpZXVqywT4byUVc+2iSC916cJp3586dVa5cOQUEBGj06NG6ffu2unbtKknq1KmTcuXKpeHDh0uSevXqperVq2vkyJFq3LixZs+erT///FMTJkyQHvzh9u7dW//73/9UuHBh5c+fXx999JFy5szpCPbbt2/Xb7/9ppo1aypdunTavn27+vTpo44dOypjxowWvhoAAKRcwcHBatu2rUJDQyVJ77zzjho3bmx1WUCC1AjsoJv7dmjGjBm6efOm2rVrp61bt0Z7sAZAypckQ3fbtm116dIlDRo0SOfPn1fp0qW1cuVKx43QTp8+HelXhUqVKmnmzJkaOHCgPvjgAxUuXFgLFy7Uc88952jz3nvv6fbt23r11Vd1/fp1ValSRStXrnScEuDp6anZs2dryJAhCgkJUf78+dWnT59Ip48DAIDEY4zRq6++qmPHjkkPruMeNmyY1WUBCWaz2TR+/Hj99ttvOnLkiHbu3Kn3339fX331ldWlAbCAzRhjrC4ipQgODlb69Ol148YNrulGsmO323Xx4kVly5aN07mQotC3k66JEyfq1VdflR4M5bl7927lz5/f6rKcat6xxLqm2y7bzasy6TJxenkSFVQwvfbs2aMXXnjBMdrNokWL1KxZM6tLS9LYZyM5iWv+oycDAICnbu/evXr77bcdjydNmpTiAzdSn9KlS2vkyJGOx126dNGpU6csrQnA00foBgAAT9Xt27fVpk0bx/Cab775pgIDA60uC3CKHj16qFWrVtKDsegfvocBgNSB0A0AAJ6qN998UwcPHpQeHAlkHGOkZDabLdKZHL/99pvef/99q8sC8BQRugEAwFPz448/aurUqZKktGnTas6cOXEe5xRIrjJkyKB58+bJw8NDkvTVV19pwYIFVpcF4CkhdAMAgKfi77//Vo8ePRyPv//+exUpUsTSmoCn5fnnn9eoUaMcj7t27arjx49bWhOAp4PQDQAAnC44OFhBQUGO67hfe+01vfjii1aXBTxVPXr0UFBQkCTpxo0batOmjePO5gBSLkI3AABwqojxuA8fPixJKlOmjEaPHm11WcBTZ7PZ9MMPP6hQoUKSpJ07d+rdd9+1uiwATkboBgAATjV+/HjNmTNHkuTr66t58+ZxHTdSrYi/AU9PT0nS2LFjNW/ePKvLAuBEhG4AAOA0f/zxh/r06eN4/OOPP6pgwYKW1gRYrXTp0vr6668dj7t3766jR49aWhMA5yF0AwAAp7h27ZqCgoIUFhYmSerTp49jvGIgtXv11VfVvn17SdLNmzcj3fMAQMpC6AYAAInObrerc+fOOnXqlCSpYsWKGjFihNVlAUmGzWaLdAf/PXv2RDorBEDKQegGAACJbuTIkVqyZIkkKXPmzJozZ47c3d2tLgtIUtKlSxfpHgffffedpk+fbnVZABIZoRsAACSqLVu2aMCAAY7HM2bMUJ48eSytCUiqSpYsqXHjxjkev/baa/rrr78srQlA4iJ0AwCARHPx4kW1a9dO4eHhkqQPP/xQDRo0sLosIEnr1q2bXn75ZUnS3bt31apVK127ds3qsgAkEkI3AABIFGFhYWrTpo3OnTsnSapZs6aGDh1qdVlAsvDNN9/o+eeflyQdP35cnTp1kt1ut7osAImA0A0AABJF//79tWnTJklSjhw5NHPmTLm6ulpdFpAseHl5af78+cqUKZMkaenSpRo2bJjVZQFIBIRuAACQYDNnztRXX30lSXJ3d9f8+fPl5+dndVlAspIvXz7NmjVLNptNkjRo0CCtWrXK6rIAJBChGwAAJMjff//tuB5VksaMGaOKFStaWhOQXNWrV0+ffPKJJMkYoxdffFEnT560uiwACUDoBgAAT+zq1atq2bKl7t69K0nq2rWrXnvtNavLApK1AQMGqGnTptKDv7HAwEDdu3fP6rIAPCFCNwAAeCLh4eHq0KGDjh8/LkkqV66cxo8f7zg1FsCTcXFx0bRp01SwYEFJ0q5du9SzZ0+rywLwhAjdAADgiQwZMkQrV66UJGXJkkXz58+Xl5eX1WUBKUKGDBn0yy+/yNvbW5I0adIk/fDDD1aXBeAJELoBAEC8LVq0SP/73/+kB0fl5syZo7x581pdFpCilCxZUhMnTnQ8fvPNN/Xbb79ZWhOA+CN0AwCAeDl06JBeeuklx+MRI0aoVq1altYEpFQdOnTQW2+9JUkKDQ1Vy5YtdfbsWavLAhAPhG4AABBnN2/eVMuWLXXz5k1JUps2bfTOO+9YXRaQon355ZeqVq2aJOm///5TixYtHDcvBJD0EboBAECc2O12vfTSSzpw4IAk6bnnntOkSZO4cRrgZB4eHvr555/l7+8vSfrzzz/VvXt3GWOsLg1AHBC6AQBAnHzwwQdatGiRJCl9+vT65ZdflDZtWqvLAlKFrFmzatGiRUqTJo0kadasWfrss8+sLgtAHLhZXQAAAEj6pk6dqhEjRkiSXF1dNW/ePBUuXNjqshLVvGM3rC4BiFXJkiU1ffp0tWrVSpL04Ycf6tlnn1WzZs2sLg1ALDjSDQAAYvXrr7/qlVdecTz++uuvVbduXUtrAlKrli1b6pNPPpEkGWPUoUMH7du3z+qyAMSC0A0AAGJ08uRJtWzZUmFhYZKkHj166M0337S6LCBV+/DDD9W2bVtJ0q1bt9SsWTNduXLF6rIAxIDQDQAAohUcHKymTZvq8uXLkqQ6depo9OjRVpcFpHo2m02TJ09W2bJlJUknTpxQ69atHT+OAUhauKYbAABEER4erhdffNFx2mqRIkU0d+5cubu7W1YT11wD/5+Pj48WLlyo8uXL68KFC9q4caN69+6tcePGWV0agEdwpBsAAETx/vvva9myZZKkjBkzaunSpcqYMaPVZQF4SJ48ebRgwQJ5eHhIksaPH6+xY8daXRaARxC6AQBAJJMnT9aXX34pSXJzc9PPP/+c4u5UDqQUFStW1IQJExyPe/Xq5RjaD0DSQOgGAAAOmzdv1uuvv+54PHbsWNWqVcvSmgDErnPnznr//fclSXa7Xe3bt9dvv/1mdVkAHiB0AwAASdL+/fvVvHlzx82Y3n77bb322mtWlwUgDj799FO9+OKLkqS7d++qadOmOnbsmNVlASB0AwAASfr333/VoEEDXb9+XZJUv359jRw50uqyAMSRi4uLJk+erBo1akiSLl26pIYNGzpGHwBgHUI3AACp3PXr19WwYUOdOXNGkvT8889r3rx5cnNjkBMgOfH09NSCBQv07LPPSpKOHDmiZs2a6e7du1aXBqRqhG4AAFKxe/fuqXnz5o6hwQoUKKBly5YpXbp0VpcG4AlkyJBBy5cvV86cOSVJ27dvV4cOHRQeHm51aUCqRegGACCVCg8P10svvaTNmzdLkrJmzapVq1Ype/bsVpcGIAHy5s2rZcuWKW3atJKkBQsWqG/fvjLGWF0akCoRugEASIWMMerdu7d+/vlnSZKPj4+WLVumQoUKWV0agERQunRpzZ8/33GZyJgxY/TVV19ZXRaQKhG6AQBIhUaMGKGxY8dKD8binj9/vsqXL291WQASUb169TRx4kTH43feeUdz5861tCYgNSJ0AwCQykydOlUDBgxwPP7hhx/UoEEDS2sC4BxdunTRkCFDHI87duyo5cuXW1oTkNoQugEASEVWrlyp7t27Ox4PHz5cnTt3trQmAM41aNAgvfzyy5KksLAwBQYGasOGDVaXBaQahG4AAFKJzZs3KzAw0HEX4549e6p///5WlwXAyWw2m7777ju1bdtWejBqQdOmTbV9+3arSwNSBUI3AACpwPbt29W4cWPduXNHktS6dWuNHj1aNpvN6tIAPAWurq6aPn26mjZtKkm6ffu2GjZsqD179lhdGpDiEboBAEjh/vjjDzVo0EC3bt2SJDVq1EgzZsyQq6ur1aUBeIrc3d01d+5c1a5dW5J048YN1atXTwcOHLC6NCBFI3QDAJCC7d69W/Xq1VNwcLAkqW7dupo/f748PT2tLg2ABby8vLRw4UJVqlRJknTp0iXVqVNHx48ft7o0IMUidAMAkELt3btXdevW1fXr1yVJNWrU0MKFC+Xl5WV1aQAslDZtWi1btkxly5aVJJ07d061a9fWv//+a3VpQIpE6AYAIAU6cOCAateurStXrkiSKleurCVLlsjHx8fq0gAkARkyZNCqVatUvHhxSdLJkydVu3ZtXbhwwerSgBSH0A0AQApz+PBh1apVS5cuXZIkVahQQcuXL1fatGmtLg1AEpIlSxatWbNGBQsWlB7sO+rUqUPwBhIZoRsAgBTk+PHjqlWrls6fPy9JKlu2rFauXClfX1+rSwOQBOXMmVPr1q1T7ty5JUn79u1T9erVOdUcSESEbgAAUohjx46pVq1aOnv2rCSpZMmSWr16tTJkyGB1aQCSsHz58mn9+vXKkyePJOnQoUOqVq2aTpw4YXVpQIpA6AYAIAXYu3evqlSpolOnTkmSihcvrrVr1ypz5sxWlwYgGShcuLC2bNmiAgUKSJJOnDihqlWr6tChQ1aXBiR7hG4AAJK5HTt2qHr16o5Typ999lmtW7dOWbNmtbo0AMlIvnz5tGXLFhUrVkySdPbsWVWrVk1///231aUByRqhGwCAZGzNmjWqXbu2rl27JkkKCAjQpk2b5OfnZ3VpAJKhnDlzatOmTSpVqpQk6eLFi6pRo4b++OMPq0sDki1CNwAAydT8+fPVuHFj3blzR5JUu3ZtrVu3jlPKASRI1qxZtWHDBlWoUEGSdO3aNdWuXVu//vqr1aUByRKhGwCAZGjy5Mlq06aNwsLCJEktW7bUsmXLGBYMQKLImDGj1qxZo2rVqkmSbt68qfr162vt2rVWlwYkO4RuAACSmVGjRql79+6y2+2SpC5dumju3Lny9PS0ujQAKUi6dOm0YsUK1atXT5J0584dNW7cWLNnz7a6NCBZIXQDAJBMGGM0cOBAvfPOO45pvXv31qRJk+Tm5mZpbQBSJh8fHy1evFjNmzeXJIWGhqp9+/b69NNPZYyxujwgWeATGgCAZCAkJESvv/66pkyZ4pj2ySef6MMPP5TNZrO0NgBRzTt2w+oSEkVQwfTy9PTUvHnz1KNHD/3www+SpIEDB+ro0aP6/vvv5eHhYXWZQJLGkW4AAJK4S5cuqU6dOpEC9zfffKOBAwcSuAE8Fe7u7powYYKGDx/umDZlyhQ1bNhQ169ft7Q2IKkjdAMAkITt27dPAQEBjrsGe3t7a+7cuerZs6fVpQFIZWw2m95//33NmTPHcQ+J9evXq1KlSjpx4oTV5QFJFqEbAIAkaunSpapYsaJOnjwpPRg/d8uWLQoKCrK6NACpWJs2bbRhwwZlyZJFknTgwAFVqFBBv/32m9WlAUkS13QDAGCxR6/9NMZo6aSxmjFikONGRQVLlFG/72bqeIYcOh7Pa0WDCqZP1Hqjk1KuXwUQNxUrVtSOHTvUuHFjHTp0SJcuXVKNGjU0Y8YMBQYGWl0ekKRwpBsAgCTkfmiovh3QU9M/+8gRuCs2aqkhM5cpU/YcVpcHAA4FCxbUtm3bVL16dUnSvXv31Lp1aw0ePFjh4eFWlwckGYRuAACSiOArl/VJ5+ba+PNPjmmt3+qv3l9Plqe3j6W1AUB0MmXKpNWrV+ull15yTPv444/VoEEDXbx40dLagKSC0A0AQBKw/7df1a9ZVR34Y7skyd3TS72/nqw2vQZwh3IASZqHh4emTp2qzz77TC4u/xcv1q5dqzJlymjr1q1WlwdYjtANAICFwsPDNW/MZxr6UjNdu/CfJCljNj8NnbVclRq3sro8AIgTm82m/v37a926dcqePbsk6dy5c6pevbpGjhzpuFwGSI0I3QAAWOTcuXOqW7eu5o35TMZulyQ9V7GaPlu4UYVKlrW6PACItxo1amj37t2O67zDw8P17rvvKjAwkPG8kWoRugEAsMDKlStVunRpbdiwQZJkc3FR2z4fauCUBcqYzc/q8gDgieXIkUNr167VgAEDHNMWLFigcuXKac+ePZbWBliB0A0AwFMUFham9957Tw0bNtSlS5ckSZmy59SQn5Yq8M1+cnF1tbpEAEgwNzc3DRs2TEuWLFHGjBklSceOHdMLL7ygsWPHyv7g7B4gNSB0AwDwlJw8eVLVqlXTF1984ZjWpEkTfb5ki4qVr2RpbQDgDE2aNNGuXbtUvnx5SVJISIjeeust1a5dWydOnLC6POCpIHQDAOBkdrtdY8eO1XPPPacdO3ZIktzd3TVq1CgtXrxYvpkyW10iADiNv7+/tmzZorfeessxbePGjSpRooS+/fZbjnojxSN0AwDgRAcOHFDVqlX11ltv6fbt25KkAgUKaOvWrerTpw/DgQFIFTw9PTVmzBitW7dO+fLlkyTdvn1bPXr0UN26dXXy5EmrSwSchtANAIAThIaG6n//+59K/7/27j0qqmrxA/h3eA04vATk5QNRRHwFikKQeH0QqNzK6qJm5eNngqWmgWla2jvUkspXoOum1c2ukOsappFcrKQrgQoCEuCTi6IDIsLA8Bhgzu8P5VxHUFEZBobvZ62zZmbvPWf2gb0GvjPn7O3lhaNHj4rl4eHhGqdaEhF1JxMnTkROTg7Cw8PFssOHD2PEiBGIjY3l0mKklxi6iYiI2tmxY8cwevRorFmzBiqVCgDg5uaGX3/9FTExMbCystJ1F4mIdMbCwgIxMTE4dOgQ+vbtCwCorq7GwoULERwcjIsXL+q6i0TtiqGbiIiondTU1GD58uV49NFHkZOTAwAwNDTEypUrkZ2dLa5bS0REwOOPP45Tp07hpZdeEsuSk5Mxbtw4vPvuu6ipqdFp/4jaC0M3ERHRQxIEAXFxcRg2bBg2btwoTgrk5eWF9PR0rFu3DmZmZrruJhFRp2NpaYkdO3YgMTERffr0AQDU1dXhvffeg4eHB+Li4njKOXV5DN1EREQPITU1Ff7+/pgxY4Y4EZBUKkVUVBTS09MxatQoXXeRiKjTCw4OxqlTp7B06VIYGRkBAC5evIgZM2Zg/PjxOHnypK67SPTAGLqJiIgewPnz5zF9+nT4+/uLy4ABQGBgILKysvDGG2/A2NhYp30kIupKrKysEB0djeTkZAQFBYnlR44cgbe3NxYuXIirV6/qtI9ED4Khm4iI6D5cv34dy5cvx5AhQxAfHy+WDx06FAcPHsShQ4cwePBgnfaRiKgrc3d3x8GDB5GQkICBAwcCANRqNWJjY+Hu7o7o6GjU1tbquptEbcbQTURE1AZ1dXX4/PPP4ebmho0bN4qzktvb2yMmJgZZWVmYMmUK190mImoHEokETzzxBHJzc7F+/XqYm5sDACoqKhAZGYkBAwbg008/5WRr1CUwdBMREd2FQqHAhg0b0L9/fyxbtgzl5eUAAFNTU6xevRpnzpxBeHi4eA0iERG1H6lUihUrVuD06dOYO3euWC6XyxEREYEBAwYgOjqa4Zs6NYnA6QDbjUKhgJWVFSorK2Fpaanr7hDdF7VajdLSUtjb28PAgJ/Hkf540LFdVlaGTZs2YfPmzaioqNCoe+GFF/Dhhx+iX79+7dLH+HOV7bIf6kYENSRV5RAsbAAJ37NJe0IHWnXo693rPTs7Oxvvvfce9u7dq1Fub2+PFStWYOHChZDJZB3YY+rO2pr/+C5NRER0i+LiYkRERMDFxQXvv/++GLglEglCQ0ORkZGBb775pt0CNxERtd0jjzyC77//HllZWfjb3/4mlpeWlmL58uVwdXXFhg0bcP36dZ32k+hWDN1EREQATp06hbCwsBbXCRoZGWHevHnIy8tDXFwcRo4cqeuuEhF1e4888gji4+ORnZ2N0NBQcT6Nq1evYuXKlejduzfCwsKQlZWl664SMXQTEVH3VVtbi6+//hqPPfYYRowYgR07dogTpJmammLJkiU4d+4cvvzyS85ITkTUCY0YMQJxcXHIycnBjBkzxPBdW1uLHTt2wMvLCwEBAdizZw8aGhp03V3qpnhNdzviNd3UlfGabtJXrY3tvLw8xMbG4uuvv25xCqKlpSUWLVqEpUuXwsHBgddbU+fEa7pJXz3k2L58/gwS/7EDv+39DrXKKo06JycnhIeHIywsDE5OTu3Yaequ2pr/GLrbEUM3dWUM3aSvmse2hYUF9u3bh9jYWKSkpLRoN2zYMISHh+PFF1+EtbW1WM7QTZ0SQzfpq3Ya27XVVTiybw8Sv9mB4nMFGnVGRkYIDg7GrFmz8NRTT3HiNXpgDN06wNBNXRlDN+mjuro6HDx4EP/4xz9w6NAhKJVKjXqpVIrp06cjPDwc/v7+ra6xzdBNnRJDN+mrdh7bgiDArigDW7ZswQ8//AC1Wq1R36NHD0ybNg2zZs1CUFAQjI2NH/o1qftg6NYBhm7qyhi6SV/U19fj559/RlxcHBISElBVVdWijYeHB8LDwzF79mzY2NjcdX8M3dQpMXSTvtLC2G5e9qyoqEi8tOjSpUst2tna2iI0NBTPP/88/P39+f8Q3RNDtw4wdFNXxtDduXRE0NP22qsdGVZrqipxKvUI0pMO4FjSQdRWK1q0kVlZY8zjIRj/zCwMGdP6t9pEXQZDN+krLYbuZmq1GikpKdi9ezfi4+NbXV7M3t4eU6ZMwdSpUxEUFKRx2RFRM4ZuHWDopq6MobtzYei+O3VTE87nZiErJRlZKYdxOjMd6qamFu1kllYYEzgV/hMCMXxiCIykplrrE1GHYugmfdUBoftWKpUKiYmJ2L17NxISElBbW9uijaGhIcaOHYuQkBBMnToVQ4cO5Qe3BDB06wZDN3VlDN2dC0N3S9euFCPn6K84mXIYOf/5BVXXy1tt18PCEmMeD4Hf1KfxiP94GBkbMZyQ/mHoJn3VwaH7VlVVVfjhhx8QHx+P5OTkFvOANHNxccHjjz+OcePGISAgAC4uLgzh3RRDtw4wdFNXxtDduXT30N3Y0ID/5p9CQUYaTmekoyAjHdeutLz+rpmTqxs8AybCa1wgRvj9BcZS6f8qGU5IH3Fck77SYei+VX19PX777TccOHAABw4cwLlz5+7Ytk+fPggICEBAQADGjRuHIUOG8H+pboKhWwcYuqkrY+juXLpT6BYEAdeuXELhnzk4ffI4Tmek4Wx2BlR1LU/xa2ZmbokR/uPgGTAJngETYd/H5S4vwHBCeojjmvRVJwndtzt9+jQOHDiAgwcP4rfffkNDQ8Md29rY2MDPzw+jRo3CyJEjMWrUKPTr14/fhuuhtuY/ow7tFRERdWuqulpcPJOP/+afurHlncJ/C3KhrKy46/OkZj3g5ukNj9GPwnPsRLh5joYRl3UhIqIO4u7uDnd3d7z22mtQKpVIS0tDSkoKUlJSkJqaipqaGrFteXm5+A15MxsbG4wcOVIM4V5eXnBzc7uvJcq0/YG8tj+M784YuomIqF0JggC5XI4/0zJwpfA8rvz3HK5cOIvL58/i8oUzEG5bI7U1vfr0g/tIHwwe6QP3UT5w8RgOQyP+ySIiIt2TyWSYOHEiJk6cCABoaGhAZmamGMJ///13XLt2TeM55eXlSE5ORnJyslhmZGSEgQMHYvDgwfDw8ICHh4d4/17LWVLXwv9giIjovgiCgOvXr6OoqAhFRUW4ePEiioqKUFhYiDNnzuDMmTOorq5u8/56Ojihv8dwuHgMx4DhXnAf5QMbByetHgMREVF7MTY2ho+PD3x8fBAZGQlBEFBYWIjMzExkZGSIW0lJicbzGhsbUVBQgIKCAiQkJGjU2dnZwdXVFf3794eLiwv69++PiyZ26NWnH3o594WZuUUHHyU9jE4burdu3YqPP/4Ycrkcnp6e2Lx5M3x8fO7YPj4+HmvWrEFhYSEGDRqE9evXY+rUqWK9IAh4++23sWPHDlRUVOCxxx7DF198gUGDBoltysvLsWTJEuzfvx8GBgZ49tln8fnnn8Pc3Fzrx0tEpGtqtRrl5eWQy+UoKSlpsRUXF4sB+9bT6NrKyNgEfdwGw2XIcLgMHgaXISPg4jEclja2WjkeIiIiXZBIJHB1dYWrqyueeeYZsfzKlSvIzMzEiRMnkJubi/z8fBQUFKCurq7FPsrKylBWVoZjx461+hoyK2vYODijZy8HWNs7wLqXw437zbf2jrCytUMPCyteS94JdMqJ1Pbs2YPZs2cjJiYGvr6++OyzzxAfH4+CggLY29u3aH/06FGMGzcOUVFR+Otf/4rdu3dj/fr1yMjIwPDhwwEA69evR1RUFL766iu4urpizZo1yMnJwZ9//glT0xvrtk6ZMgVXrlxBbGwsGhoaMG/ePIwZMwa7d+9uU785kdqD04drVDpi4iutEtQIMK/nRGpt0Jl/140qFWqqq1BbXYXaagVqldWora5CTXUVlJUVqK68juqK6+KtUlEpPlaUl7W61vX9MDA0hH0fFzj1HwjH/gPg1N8NTv0Hwqn/ANg594WBoWG7HWubccIp0kcc16SvutnYVqvVuHblEorPncHl86dRfP4MLp8/g8sXzqKiVI6HjWoGhoYwt+oJi542MLe2gYV1T5j3tIFlT1vILK3Rw8JS3KYOdoKVlZW4WVhYwIiXdt1Vl5693NfXF2PGjMGWLVuAm4Oxb9++WLJkCd54440W7WfMmAGlUokff/xRLHv00Ufh5eWFmJgYCIIAZ2dnREZGYvny5QCAyspKODg4YNeuXZg5cyby8vIwdOhQHDt2DKNHjwYAJCYmYurUqbh06RKcnZ3v2W+G7gfH0N0JMHS32e2/a7VaDXVjI5qaGtHU2Ah1U9ON+w0NN8ua0NTYgMYGFRobbt6qbtxvLm9QqdBQXwdVfT0a6uvExw319VDV193YamtQX1uL+toa1NfWQFVXi7qaGqjqalBXU4Pa6io0Nqi0euxSsx6wdeoNO6c+sHPuc+O+cx/Y3nxs38el801w1s3+gaNuguOa9BXHtqhRpULZlWKUXS5C6aUilBVfRGnxjdurly/ieolc+3/3pVLIZDKYm5tDJpNpbObm5jAzM4OpqSlMTU3F+7eWSaVSSKVSmJiYaGzNZcbGxuJmZGTU6n1jY2MY6uJD+zbosrOXq1QqnDhxAqtWrRLLDAwMEBgYiNTU1Fafk5qaioiICI2y4OBg7Nu3DwBw4cIFyOVyBAYGivVWVlbw9fVFamoqZs6cidTUVFhbW4uBGwACAwNhYGCAtLQ0PP3001o42o71yiuv4OrVq7ruRqsuVd952YX2EGeu/RCg7WO4XXt8Xibgln0IAnYZqSGVSsXTkG5/jYd5fK/7d7u9dWut7E6bWq1u8bi57Nbb1rampiaN+7duqsamG+Fa3fTQ3wx3BqYyc8gsrWFpYwtrO3tY2fWCle2N2xuPb9zv2csR5tY9eZoaERFRBzAyMYGjiyscXVxbrRcEAUpFJSpK5bh+tQQVV0tu3N58XFV+DVUV5aiuKEdVxXXUKds+30qz+vp61NfXo7y8vB2O6MGEhoYiLi5OZ6/fHjpd6C4rK0NTUxMcHBw0yh0cHJCfn9/qc+Ryeavt5XK5WN9cdrc2t5+6bmRkBBsbG7HN7ZoHYbPKyhvfflVUVEDdhtl5O9qPP/6Iixcv6robRNReJBKYmvWAiakZpGY9YNpDBjNzc5jJLGAqM4eZTAZTmQXMZOYwlckgs7SCzNIaMitrmFtaQ2ZtDZmF1X19M11b1RXP6BAgqVJAgCEAfmBA+oLjmvQVx/b9MJAANg6OsHFwvGfbBpUK1ZXXb1xudvMSs1rljUvQaquq0NtIBYVCAYVCgaqqKigUCtTU1KCmpgZKpRI1NTX3NVFqe1Gr1aiouPvSorqiUCiANnwZ1ulCd1cSFRWFd999t0W5i4uLTvpDRN2MIKCuRom6GqWue0JERESkFXv37sXevXt13Y27qqqqgpXVnS9n7XSh287ODoaGhi2m1C8pKYGjY+uf4Dg6Ot61ffNtSUkJnJycNNp4eXmJbUpLSzX20djYiPLy8ju+7qpVqzROa2+e+dfW1panX1KXo1Ao0LdvX1y8eJFzEpBe4dgmfcRxTfqKY5u6EkEQUFVVdc/5vzpd6DYxMYG3tzeSk5Mxbdo04GaYTU5OxuLFi1t9jp+fH5KTk7Fs2TKxLCkpCX5+fgAAV1dXODo6Ijk5WQzZCoUCaWlpePnll8V9VFRU4MSJE/D29gYAHD58GGq1Gr6+vq2+bvPEALeytrZul58Dka5YWlryjxzpJY5t0kcc16SvOLapq7jbN9zNOl3oBoCIiAjMmTMHo0ePho+PDz777DMolUrMmzcPADB79mz07t0bUVFRAIClS5fiL3/5CzZu3IiQkBD885//xPHjx7F9+3bg5lp5y5YtwwcffIBBgwaJS4Y5OzuLwX7IkCGYPHkyFixYgJiYGDQ0NGDx4sWYOXNmm2YuJyIiIiIiIrpdpwzdM2bMwNWrV7F27VrI5XJ4eXkhMTFRnAitqKhIY0kjf39/7N69G2+99RZWr16NQYMGYd++feIa3QCwYsUKKJVKhIWFoaKiAmPHjkViYqK4RjcAfPvtt1i8eDEmTZoEAwMDPPvss9i0aVMHHz0RERERERHpi065TjcRdbz6+npERUVh1apVLS6bIOrKOLZJH3Fck77i2CZ9xNBNREREREREpCUGbWhDRERERERERA+AoZuIiIiIiIhISxi6iYiIiIiIiLSEoZuomyksLMT8+fPh6uoKMzMzDBw4EG+//TZUKpVGu+zsbAQEBMDU1BR9+/bFhg0bWuwrPj4eHh4eMDU1xYgRI3Dw4MEOPBIiTR9++CH8/f3Ro0cPWFtbt9qmqKgIISEh6NGjB+zt7fH666+jsbFRo82vv/6KUaNGQSqVws3NDbt27eqgIyBqu61bt6J///4wNTWFr68v0tPTdd0lojs6cuQInnjiCTg7O0MikWDfvn0a9YIgYO3atXBycoKZmRkCAwNx5swZjTbl5eV4/vnnYWlpCWtra8yfPx/V1dUdfCRED4ahm6ibyc/Ph1qtRmxsLHJzc/Hpp58iJiYGq1evFtsoFAoEBQXBxcUFJ06cwMcff4x33nkH27dvF9scPXoUzz33HObPn4/MzExMmzYN06ZNw6lTp3R0ZNTdqVQqhIaG4uWXX261vqmpCSEhIVCpVDh69Ci++uor7Nq1C2vXrhXbXLhwASEhIZgwYQJOnjyJZcuW4aWXXsLPP//cgUdCdHd79uxBREQE3n77bWRkZMDT0xPBwcEoLS3VddeIWqVUKuHp6YmtW7e2Wr9hwwZs2rQJMTExSEtLg0wmQ3BwMOrq6sQ2zz//PHJzc5GUlIQff/wRR44cQVhYWAceBdFDEIio29uwYYPg6uoqPt62bZvQs2dPob6+XixbuXKlMHjwYPHx9OnThZCQEI39+Pr6CuHh4R3Ua6LW7dy5U7CysmpRfvDgQcHAwECQy+Vi2RdffCFYWlqKY33FihXCsGHDNJ43Y8YMITg4uAN6TtQ2Pj4+wqJFi8THTU1NgrOzsxAVFaXTfhG1BQDhX//6l/hYrVYLjo6OwscffyyWVVRUCFKpVPjuu+8EQRCEP//8UwAgHDt2TGzz008/CRKJRCguLu7gIyC6f/ymm4hQWVkJGxsb8XFqairGjRsHExMTsSw4OBgFBQW4fv262CYwMFBjP8HBwUhNTe3AnhO1XWpqKkaMGAEHBwexLDg4GAqFArm5uWIbjmvqzFQqFU6cOKExTg0MDBAYGMhxSl3ShQsXIJfLNca0lZUVfH19xTGdmpoKa2trjB49WmwTGBgIAwMDpKWl6aTfRPeDoZuomzt79iw2b96M8PBwsUwul2sEEwDiY7lcftc2zfVEnc3DjGuFQoHa2toO7C1R68rKytDU1MT3X9IbzeP2bmNaLpfD3t5eo97IyAg2NjYc99QlMHQT6Yk33ngDEonkrlt+fr7Gc4qLizF58mSEhoZiwYIFOus70Z08yLgmIiIi6kyMdN0BImofkZGRmDt37l3bDBgwQLx/+fJlTJgwAf7+/hoTpAGAo6MjSkpKNMqaHzs6Ot61TXM9UXu433F9N46Oji1meG7ruLa0tISZmdl99p6o/dnZ2cHQ0JDvv6Q3msdtSUkJnJycxPKSkhJ4eXmJbW6fKLCxsRHl5eUc99QlMHQT6YlevXqhV69ebWpbXFyMCRMmwNvbGzt37oSBgeZJL35+fnjzzTfR0NAAY2NjAEBSUhIGDx6Mnj17im2Sk5OxbNky8XlJSUnw8/Nr1+Oi7u1+xvW9+Pn54cMPP0Rpaal4mmJSUhIsLS0xdOhQsc3tS99xXFNnYmJiAm9vbyQnJ2PatGkAALVajeTkZCxevFjX3SO6b66urnB0dERycrIYshUKBdLS0sTVKPz8/FBRUYETJ07A29sbAHD48GGo1Wr4+vrqtP9EbcHTy4m6meLiYowfPx79+vXDJ598gqtXr0Iul2tcEzVr1iyYmJhg/vz5yM3NxZ49e/D5558jIiJCbLN06VIkJiZi48aNyM/PxzvvvIPjx4/znz7SmaKiIpw8eRJFRUVoamrCyZMncfLkSXEd16CgIAwdOhQvvvgisrKy8PPPP+Ott97CokWLIJVKAQALFy7E+fPnsWLFCuTn52Pbtm2Ii4vDa6+9puOjI/qfiIgI7NixA1999RXy8vLw8ssvQ6lUYt68ebruGlGrqqurxfdk3Jw8rfn9WiKRYNmyZfjggw+QkJCAnJwczJ49G87OzuIHS0OGDMHkyZOxYMECpKen4z//+Q8WL16MmTNnwtnZWcdHR9QGup4+nYg61s6dOwUArW63ysrKEsaOHStIpVKhd+/ewrp161rsKy4uTnB3dxdMTEyEYcOGCQcOHOjAIyHSNGfOnFbH9S+//CK2KSwsFKZMmSKYmZkJdnZ2QmRkpNDQ0KCxn19++UXw8vISTExMhAEDBgg7d+7UwdEQ3d3mzZuFfv36CSYmJoKPj4/wxx9/6LpLRHf0yy+/tPr+PGfOHEG4uWzYmjVrBAcHB0EqlQqTJk0SCgoKNPZx7do14bnnnhPMzc0FS0tLYd68eUJVVZWOjojo/kiEG+vlEREREREREVE74+nlRERERERERFrC0E1ERERERESkJQzdRERERERERFrC0E1ERERERESkJQzdRERERERERFrC0E1ERERERESkJQzdRERERERERFrC0E1ERERERESkJQzdRERERERERFrC0E1ERKTnlEolPvroI4waNQrm5uaQSqXo06cPAgICsGrVKpw7d07XXSQiItJbRrruABEREWlPVVUVxo4di+zsbLi5ueGFF16Ara0tysrKkJ6ejnXr1mHgwIEYOHCgrrtKRESklxi6iYiI9Nhnn32G7OxsvPTSS9i+fTskEolG/YULF1BfX6+z/hEREek7nl5ORESkx1JTUwEAixYtahG4AcDV1RUeHh4aZaWlpYiMjMTgwYNhZmYGGxsb+Pr64pNPPmnx/P3792PChAmwsrKCmZkZPD09ER0djcbGRo12hYWFkEgkmDt3LvLy8vD000/D1tYWEokEhYWFYrsffvgBkyZNQs+ePWFqaorhw4fjk08+QVNTUzv+VIiIiDoOQzcREZEes7W1BQCcPn26Te0LCgrg5eWF6Oho2Nvb49VXX8WsWbPQo0cPfPTRRxpto6Oj8eSTTyI7OxuzZs3CokWLUFtbi8jISISGhkIQhBb7P3v2LB599FFcvXoVc+fOxZw5c2BiYgIAWLVqFaZNm4aCggI888wzeOWVV2BmZobXX38dM2fObJefBxERUUeTCK39RSQiIiK9kJCQgKeeegoWFhYICwtDUFAQvL29xTB+uzFjxuD48ePYvn07FixYoFF36dIl9OnTBwBw7tw5eHh4wMbGBsePH0ffvn0BAPX19QgMDMTvv/+Or7/+Gi+++CJw85tuV1dXAMDatWvx7rvvauw7KSkJQUFBCA4Oxt69eyGTyQAAgiDglVdeQUxMDL7//ns8++yzWvgpERERaQ+/6SYiItJjTz75JDZu3AhBELBx40YEBwfDzs4Obm5uWLx4Mc6cOSO2TU9Px/HjxzFu3LgWgRuAGLgBYPfu3WhsbERkZKQYuAFAKpVi/fr1AIBdu3a12IejoyPefPPNFuVbtmwBAGzfvl0M3AAgkUiwbt06SCQSfPfddw/1syAiItIFTqRGRESk5yIiIrBgwQIkJibi6NGjOH78ONLS0rB161b8/e9/x549e/Dkk08iPT0dABAUFHTPfWZmZgIAxo8f36LOz88PpqamOHnyZIs6T09P8XTyW/3xxx+QyWT48ssvW309MzMz5Ofnt+l4iYiIOhOGbiIiom7AwsICoaGhCA0NBQBUVlZi9erV2LZtG+bPn4/i4mJUVlYCAHr37n3P/SkUCgCAg4NDizqJRAIHBwcUFxe3qGutPQCUl5ejsbGxxWnnt1IqlffsFxERUWfD08uJiIi6ISsrK2zZsgUuLi4oKytDTk4OrK2tAaDVsHw7S0tLAEBJSUmLOkEQUFJSIra5VWszqDfvz9bWFoIg3HG7cOHCAxwpERGRbjF0ExERdVMSiUTj+mkfHx8AwKFDh+753JEjRwIAfv311xZ1aWlpqKurg5eXV5v74uvri2vXrmlcY05ERKQPGLqJiIj0WGxsLI4dO9Zq3b59+5CXlwdra2sMHz4cY8aMwZgxY3DkyBHs2LGjRftbvwGfNWsWjIyMEB0djcuXL4vlKpUKK1euBADMnTu3zf189dVXAQD/93//h2vXrrWol8vlyMvLa/P+iIiIOgte001ERKTHfvrpJyxcuBBubm547LHH4OzsDKVSiczMTKSkpMDAwADbtm2DVCoFAHz77bcYP348wsLC8M0338DPzw91dXXIzc1FZmamGIgHDhyI9evXIzIyEo888gimT58OmUyG/fv3o6CgAE899RReeOGFNvdz8uTJWLNmDd5//324ublh8uTJcHFxwbVr13D27FmkpKTggw8+wJAhQ7T2syIiItIGrtNNRESkxwoKCpCQkICkpCScPXsWV65cAW5OljZ27FgsWbIE3t7eGs8pKSlBVFQU9u/fj0uXLsHc3ByDBg3CjBkz8Nprr2m0TUhIQHR0NDIyMqBSqeDu7o65c+fi1VdfhZHR/z7bb16ne86cOa0uJdbs3//+NzZt2oQ//vgDFRUVsLW1haurK6ZOnYo5c+ZoLE9GRETUFTB0ExEREREREWkJr+kmIiIiIiIi0hKGbiIiIiIiIiItYegmIiIiIiIi0hKGbiIiIiIiIiItYegmIiIiIiIi0hKGbiIiIiIiIiItYegmIiIiIiIi0hKGbiIiIiIiIiItYegmIiIiIiIi0hKGbiIiIiIiIiItYegmIiIiIiIi0hKGbiIiIiIiIiItYegmIiIiIiIi0pL/B8nbfWlxjGPgAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "# @title Histogram of bot\n", "\n", - "# Extract the 'mf-bot-1' column and remove NaN values\n", - "\n", - "name = 'mf-bot-1'\n", + "if 'mf-bot-1' in df_bot_peer_wide.columns:\n", + " name = 'mf-bot-1'\n", + "else:\n", + " name = 'metac-o1-preview'\n", "\n", "scores = df_bot_peer_wide[name].dropna()\n", "\n", @@ -1117,9 +7869,420 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 49, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
bot_question_id4ShadowerBot_PepaCatrachoCasterCumulativeBotGreeneiBot2Grizeu_BotInstitutPelFuturKevinTestBotMWG...metac-o1-previewmetac-perplexityminefrac1mmBotpgodzinaipianobotswingswishtwsummerbotwunderplumbquestion_weight
031262NaNNaNNaNNaN-242.660874135.57527347.259183NaNNaN...-205.076095121.194882NaN-242.660874-198.879258NaNNaNNaNNaN1.0
131263NaNNaNNaNNaN-96.476789-99.090018-94.660371NaNNaN...7.9517037.951703NaN55.81904144.625993NaNNaNNaNNaN1.0
231264NaNNaNNaNNaN18.89298023.948225-86.527528NaNNaN...13.82151813.821518NaN1.30707117.305437NaNNaNNaNNaN1.0
331274NaNNaN2.076868NaN31.0945314.282464-28.806893NaN14.663415...6.44257916.621639NaN8.55905311.145899NaNNaN-9.706540NaN1.0
431275NaNNaNNaNNaN30.694891-66.461608-58.368696NaNNaN...35.698675-0.691552NaN39.41450214.411756NaNNaN-70.932651NaN1.0
\n", + "

5 rows × 48 columns

\n", + "
" + ], + "text/plain": [ + " bot_question_id 4Shadower Bot_Pepa CatrachoCaster CumulativeBot \\\n", + "0 31262 NaN NaN NaN NaN \n", + "1 31263 NaN NaN NaN NaN \n", + "2 31264 NaN NaN NaN NaN \n", + "3 31274 NaN NaN 2.076868 NaN \n", + "4 31275 NaN NaN NaN NaN \n", + "\n", + " GreeneiBot2 Grizeu_Bot InstitutPelFutur KevinTestBot MWG ... \\\n", + "0 -242.660874 135.575273 47.259183 NaN NaN ... \n", + "1 -96.476789 -99.090018 -94.660371 NaN NaN ... \n", + "2 18.892980 23.948225 -86.527528 NaN NaN ... \n", + "3 31.094531 4.282464 -28.806893 NaN 14.663415 ... \n", + "4 30.694891 -66.461608 -58.368696 NaN NaN ... \n", + "\n", + " metac-o1-preview metac-perplexity minefrac1 mmBot pgodzinai \\\n", + "0 -205.076095 121.194882 NaN -242.660874 -198.879258 \n", + "1 7.951703 7.951703 NaN 55.819041 44.625993 \n", + "2 13.821518 13.821518 NaN 1.307071 17.305437 \n", + "3 6.442579 16.621639 NaN 8.559053 11.145899 \n", + "4 35.698675 -0.691552 NaN 39.414502 14.411756 \n", + "\n", + " pianobot swingswish twsummerbot wunderplumb question_weight \n", + "0 NaN NaN NaN NaN 1.0 \n", + "1 NaN NaN NaN NaN 1.0 \n", + "2 NaN NaN NaN NaN 1.0 \n", + "3 NaN NaN -9.706540 NaN 1.0 \n", + "4 NaN NaN -70.932651 NaN 1.0 \n", + "\n", + "[5 rows x 48 columns]" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
bot_question_id4ShadowerBot_PepaCatrachoCasterCumulativeBotGreeneiBot2Grizeu_BotInstitutPelFuturKevinTestBotMWG...metac-o1-previewmetac-perplexityminefrac1mmBotpgodzinaipianobotswingswishtwsummerbotwunderplumbquestion_weight
404356196.356385NaN6.3563858.98511614.048951-5.7402526.356385-5.74025210.822423...-5.7402526.356385NaN0.48606113.624559NaNNaN7.9416846.3563851.0
40535620-3.848478NaN2.026137-2.6463853.161815-3.84847811.301510-3.848478-23.803402...2.0261372.026137NaN7.5830468.230127NaNNaNNaN-3.8484781.0
4063562134.934257NaN-15.68138236.351904-16.055800-62.135408-96.71727734.93425732.624547...9.104719-48.411348NaN29.05964231.449931NaNNaNNaN34.9342571.0
40735622-58.153367NaNNaNNaN-14.351771-85.428443-29.09640042.884269NaN...78.87460378.874603NaN114.533049105.344243NaNNaN-1.818274-97.7260201.0
40835705-31.742288NaNNaN43.33077750.02366026.291942NaN-0.62033022.674004...-37.061593-0.620330NaN-8.60147579.739445NaNNaNNaN10.3059451.0
\n", + "

5 rows × 48 columns

\n", + "
" + ], + "text/plain": [ + " bot_question_id 4Shadower Bot_Pepa CatrachoCaster CumulativeBot \\\n", + "404 35619 6.356385 NaN 6.356385 8.985116 \n", + "405 35620 -3.848478 NaN 2.026137 -2.646385 \n", + "406 35621 34.934257 NaN -15.681382 36.351904 \n", + "407 35622 -58.153367 NaN NaN NaN \n", + "408 35705 -31.742288 NaN NaN 43.330777 \n", + "\n", + " GreeneiBot2 Grizeu_Bot InstitutPelFutur KevinTestBot MWG ... \\\n", + "404 14.048951 -5.740252 6.356385 -5.740252 10.822423 ... \n", + "405 3.161815 -3.848478 11.301510 -3.848478 -23.803402 ... \n", + "406 -16.055800 -62.135408 -96.717277 34.934257 32.624547 ... \n", + "407 -14.351771 -85.428443 -29.096400 42.884269 NaN ... \n", + "408 50.023660 26.291942 NaN -0.620330 22.674004 ... \n", + "\n", + " metac-o1-preview metac-perplexity minefrac1 mmBot pgodzinai \\\n", + "404 -5.740252 6.356385 NaN 0.486061 13.624559 \n", + "405 2.026137 2.026137 NaN 7.583046 8.230127 \n", + "406 9.104719 -48.411348 NaN 29.059642 31.449931 \n", + "407 78.874603 78.874603 NaN 114.533049 105.344243 \n", + "408 -37.061593 -0.620330 NaN -8.601475 79.739445 \n", + "\n", + " pianobot swingswish twsummerbot wunderplumb question_weight \n", + "404 NaN NaN 7.941684 6.356385 1.0 \n", + "405 NaN NaN NaN -3.848478 1.0 \n", + "406 NaN NaN NaN 34.934257 1.0 \n", + "407 NaN NaN -1.818274 -97.726020 1.0 \n", + "408 NaN NaN NaN 10.305945 1.0 \n", + "\n", + "[5 rows x 48 columns]" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "df_bot_peer_wide.shape\n", "\n", @@ -1128,7 +8291,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 50, "metadata": { "cellView": "form", "colab": { @@ -1137,13 +8300,468 @@ "id": "oxVJxrCpuXV_", "outputId": "3df39cbc-b594-40e1-d08f-1b0e9736d6ec" }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BOT LEADERBOARD\n", + "\n", + "\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
2.5% CI10% CIMedian90% CI97.5% CI
metac-o16.07.29.612.013.1
metac-o1-preview3.95.28.311.212.6
manticAI-0.22.15.58.710.4
metac-Gemini-Exp-12060.92.35.17.89.1
acm_bot0.31.94.57.58.8
metac-perplexity-1.70.54.17.79.9
twsummerbot0.31.43.96.17.5
GreeneiBot2-1.00.73.87.28.8
cookics_bot_TEST0.00.93.15.06.2
pgodzinai-3.1-1.12.86.98.7
CumulativeBot-0.20.82.64.45.4
metac-claude-3-5-sonnet-latest-1.30.12.64.96.2
SynapseSeer0.41.12.54.04.9
jkraybill_bot-3.5-1.61.74.86.4
metac-exa-5.2-2.71.75.47.6
metac-deepseek-r1-1.9-0.61.53.64.9
MWG-1.6-0.90.72.02.7
andrewsiah-1.0-0.6-0.00.61.0
X_bot-0.4-0.2-0.00.10.2
pianobot-1.2-0.8-0.00.71.1
cobyj-bot-1.5-0.9-0.10.91.4
annabot-3.6-2.3-0.41.21.9
bean_bot-3.0-2.1-0.41.22.0
KevinTestBot-3.8-2.7-0.51.62.5
CatrachoCaster-2.4-1.7-0.80.20.8
jonahsingerbot-3.0-2.2-0.80.41.0
krm-bot-3.6-2.7-0.90.81.6
ProfessorSP-4.5-3.4-1.01.02.1
metac-grok-2-1212-6.5-4.7-1.41.83.3
mmBot-7.1-5.2-1.62.24.1
4Shadower-4.7-3.6-1.60.31.2
swingswish-5.2-4.0-1.9-0.10.7
RPM_bot-4.9-3.9-2.0-0.7-0.1
metac-claude-3-5-sonnet-20240620-6.5-5.0-2.10.92.4
InstitutPelFutur-9.2-6.7-2.51.83.6
metac-Llama-3.1-6.6-5.5-2.50.21.4
wunderplumb-6.3-5.2-2.6-0.31.0
NextWorldLab-8.3-6.7-3.4-0.41.2
laylaps-9.9-7.7-3.8-0.12.2
Bot_Pepa-7.0-6.0-3.9-1.8-0.9
VeritasAI-7.8-6.6-4.3-1.9-0.4
minefrac1-8.0-6.7-4.6-2.5-1.3
Grizeu_Bot-8.8-7.6-5.1-2.4-0.9
metac-gpt-4o-10.6-9.0-5.8-2.9-1.4
ajf-bot-15.0-13.0-8.6-4.4-2.0
\n", + "
" + ], + "text/plain": [ + " 2.5% CI 10% CI Median 90% CI 97.5% CI\n", + "metac-o1 6.0 7.2 9.6 12.0 13.1\n", + "metac-o1-preview 3.9 5.2 8.3 11.2 12.6\n", + "manticAI -0.2 2.1 5.5 8.7 10.4\n", + "metac-Gemini-Exp-1206 0.9 2.3 5.1 7.8 9.1\n", + "acm_bot 0.3 1.9 4.5 7.5 8.8\n", + "metac-perplexity -1.7 0.5 4.1 7.7 9.9\n", + "twsummerbot 0.3 1.4 3.9 6.1 7.5\n", + "GreeneiBot2 -1.0 0.7 3.8 7.2 8.8\n", + "cookics_bot_TEST 0.0 0.9 3.1 5.0 6.2\n", + "pgodzinai -3.1 -1.1 2.8 6.9 8.7\n", + "CumulativeBot -0.2 0.8 2.6 4.4 5.4\n", + "metac-claude-3-5-sonnet-latest -1.3 0.1 2.6 4.9 6.2\n", + "SynapseSeer 0.4 1.1 2.5 4.0 4.9\n", + "jkraybill_bot -3.5 -1.6 1.7 4.8 6.4\n", + "metac-exa -5.2 -2.7 1.7 5.4 7.6\n", + "metac-deepseek-r1 -1.9 -0.6 1.5 3.6 4.9\n", + "MWG -1.6 -0.9 0.7 2.0 2.7\n", + "andrewsiah -1.0 -0.6 -0.0 0.6 1.0\n", + "X_bot -0.4 -0.2 -0.0 0.1 0.2\n", + "pianobot -1.2 -0.8 -0.0 0.7 1.1\n", + "cobyj-bot -1.5 -0.9 -0.1 0.9 1.4\n", + "annabot -3.6 -2.3 -0.4 1.2 1.9\n", + "bean_bot -3.0 -2.1 -0.4 1.2 2.0\n", + "KevinTestBot -3.8 -2.7 -0.5 1.6 2.5\n", + "CatrachoCaster -2.4 -1.7 -0.8 0.2 0.8\n", + "jonahsingerbot -3.0 -2.2 -0.8 0.4 1.0\n", + "krm-bot -3.6 -2.7 -0.9 0.8 1.6\n", + "ProfessorSP -4.5 -3.4 -1.0 1.0 2.1\n", + "metac-grok-2-1212 -6.5 -4.7 -1.4 1.8 3.3\n", + "mmBot -7.1 -5.2 -1.6 2.2 4.1\n", + "4Shadower -4.7 -3.6 -1.6 0.3 1.2\n", + "swingswish -5.2 -4.0 -1.9 -0.1 0.7\n", + "RPM_bot -4.9 -3.9 -2.0 -0.7 -0.1\n", + "metac-claude-3-5-sonnet-20240620 -6.5 -5.0 -2.1 0.9 2.4\n", + "InstitutPelFutur -9.2 -6.7 -2.5 1.8 3.6\n", + "metac-Llama-3.1 -6.6 -5.5 -2.5 0.2 1.4\n", + "wunderplumb -6.3 -5.2 -2.6 -0.3 1.0\n", + "NextWorldLab -8.3 -6.7 -3.4 -0.4 1.2\n", + "laylaps -9.9 -7.7 -3.8 -0.1 2.2\n", + "Bot_Pepa -7.0 -6.0 -3.9 -1.8 -0.9\n", + "VeritasAI -7.8 -6.6 -4.3 -1.9 -0.4\n", + "minefrac1 -8.0 -6.7 -4.6 -2.5 -1.3\n", + "Grizeu_Bot -8.8 -7.6 -5.1 -2.4 -0.9\n", + "metac-gpt-4o -10.6 -9.0 -5.8 -2.9 -1.4\n", + "ajf-bot -15.0 -13.0 -8.6 -4.4 -2.0" + ] + }, + "execution_count": 50, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Drop 'bot_median' from all_bots list\n", "all_bots_wo_median = np.delete(all_bots, np.where(all_bots == 'bot_median')[0][0])\n", "df_bot_peer_wide_wo_median = df_bot_peer_wide.drop('bot_median', axis=1)\n", "\n", - "\n", "NUM = round(df_bot_peer_wide['question_weight'].sum())\n", "ITER = 1000\n", "\n", @@ -1157,7 +8775,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 51, "metadata": { "cellView": "form", "colab": { @@ -1167,7 +8785,475 @@ "id": "MXAev2sNXdbZ", "outputId": "eebb723f-5494-4b89-cf0d-efa5b1626cb7" }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "\n", + "HEAD-TO-HEAD LEADERBOARD\n", + "\n", + "\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
2.5% CI10% CIMedian90% CI97.5% CI
Grizeu_Bot-9.7-5.44.415.922.2
RPM_bot-0.10.31.42.83.7
X_bot-0.4-0.30.20.71.2
andrewsiah0.00.00.00.00.0
cobyj-bot0.00.00.00.00.0
acm_bot-16.3-11.3-0.214.822.5
jonahsingerbot-1.4-1.1-0.6-0.3-0.1
bean_bot-1.6-1.3-0.7-0.3-0.1
CumulativeBot-2.9-2.3-1.00.21.0
swingswish-2.4-1.9-1.1-0.5-0.3
jkraybill_bot-8.5-6.2-1.14.67.5
KevinTestBot-5.8-3.9-1.40.41.1
SynapseSeer-6.3-4.6-1.51.93.9
pianobot-8.0-5.9-2.6-0.20.1
twsummerbot-13.4-10.3-2.94.69.2
CatrachoCaster-8.6-6.8-3.4-0.31.1
annabot-8.4-6.5-3.4-0.60.9
cookics_bot_TEST-12.1-9.7-4.20.12.1
GreeneiBot2-17.4-13.2-4.93.67.4
krm-bot-10.6-8.6-5.3-2.6-1.6
4Shadower-12.8-9.8-5.3-1.8-1.1
metac-o1-22.7-18.5-6.78.516.1
MWG-18.3-14.9-8.3-2.21.3
ajf-bot-22.3-17.2-8.8-1.42.5
bot_median-22.7-18.3-9.02.18.9
Bot_Pepa-20.9-16.3-9.0-1.22.7
manticAI-22.1-17.7-9.5-0.74.9
ProfessorSP-20.7-16.8-10.1-4.7-2.4
wunderplumb-22.4-19.1-12.0-5.8-3.3
metac-perplexity-29.1-24.0-12.00.88.0
laylaps-21.0-17.8-12.8-8.1-5.8
NextWorldLab-28.4-24.0-13.6-2.84.0
pgodzinai-31.7-25.6-14.0-4.11.9
metac-Gemini-Exp-1206-28.1-23.3-14.0-2.73.2
metac-deepseek-r1-30.7-25.2-14.6-4.90.5
minefrac1-29.8-24.8-14.9-3.14.1
metac-Llama-3.1-32.9-26.8-15.1-3.33.2
metac-claude-3-5-sonnet-latest-32.6-26.6-15.9-3.53.2
metac-claude-3-5-sonnet-20240620-35.3-29.9-18.2-4.32.8
metac-o1-preview-38.9-32.4-19.3-6.90.3
mmBot-36.2-30.9-21.1-11.7-7.1
VeritasAI-33.5-28.9-21.3-14.4-11.1
metac-grok-2-1212-41.8-35.2-23.4-10.4-3.8
metac-exa-40.4-34.4-23.4-13.8-7.9
metac-gpt-4o-41.7-34.7-23.8-11.3-5.3
InstitutPelFutur-43.6-37.9-26.5-14.9-6.6
\n", + "
" + ], + "text/plain": [ + " 2.5% CI 10% CI Median 90% CI 97.5% CI\n", + "Grizeu_Bot -9.7 -5.4 4.4 15.9 22.2\n", + "RPM_bot -0.1 0.3 1.4 2.8 3.7\n", + "X_bot -0.4 -0.3 0.2 0.7 1.2\n", + "andrewsiah 0.0 0.0 0.0 0.0 0.0\n", + "cobyj-bot 0.0 0.0 0.0 0.0 0.0\n", + "acm_bot -16.3 -11.3 -0.2 14.8 22.5\n", + "jonahsingerbot -1.4 -1.1 -0.6 -0.3 -0.1\n", + "bean_bot -1.6 -1.3 -0.7 -0.3 -0.1\n", + "CumulativeBot -2.9 -2.3 -1.0 0.2 1.0\n", + "swingswish -2.4 -1.9 -1.1 -0.5 -0.3\n", + "jkraybill_bot -8.5 -6.2 -1.1 4.6 7.5\n", + "KevinTestBot -5.8 -3.9 -1.4 0.4 1.1\n", + "SynapseSeer -6.3 -4.6 -1.5 1.9 3.9\n", + "pianobot -8.0 -5.9 -2.6 -0.2 0.1\n", + "twsummerbot -13.4 -10.3 -2.9 4.6 9.2\n", + "CatrachoCaster -8.6 -6.8 -3.4 -0.3 1.1\n", + "annabot -8.4 -6.5 -3.4 -0.6 0.9\n", + "cookics_bot_TEST -12.1 -9.7 -4.2 0.1 2.1\n", + "GreeneiBot2 -17.4 -13.2 -4.9 3.6 7.4\n", + "krm-bot -10.6 -8.6 -5.3 -2.6 -1.6\n", + "4Shadower -12.8 -9.8 -5.3 -1.8 -1.1\n", + "metac-o1 -22.7 -18.5 -6.7 8.5 16.1\n", + "MWG -18.3 -14.9 -8.3 -2.2 1.3\n", + "ajf-bot -22.3 -17.2 -8.8 -1.4 2.5\n", + "bot_median -22.7 -18.3 -9.0 2.1 8.9\n", + "Bot_Pepa -20.9 -16.3 -9.0 -1.2 2.7\n", + "manticAI -22.1 -17.7 -9.5 -0.7 4.9\n", + "ProfessorSP -20.7 -16.8 -10.1 -4.7 -2.4\n", + "wunderplumb -22.4 -19.1 -12.0 -5.8 -3.3\n", + "metac-perplexity -29.1 -24.0 -12.0 0.8 8.0\n", + "laylaps -21.0 -17.8 -12.8 -8.1 -5.8\n", + "NextWorldLab -28.4 -24.0 -13.6 -2.8 4.0\n", + "pgodzinai -31.7 -25.6 -14.0 -4.1 1.9\n", + "metac-Gemini-Exp-1206 -28.1 -23.3 -14.0 -2.7 3.2\n", + "metac-deepseek-r1 -30.7 -25.2 -14.6 -4.9 0.5\n", + "minefrac1 -29.8 -24.8 -14.9 -3.1 4.1\n", + "metac-Llama-3.1 -32.9 -26.8 -15.1 -3.3 3.2\n", + "metac-claude-3-5-sonnet-latest -32.6 -26.6 -15.9 -3.5 3.2\n", + "metac-claude-3-5-sonnet-20240620 -35.3 -29.9 -18.2 -4.3 2.8\n", + "metac-o1-preview -38.9 -32.4 -19.3 -6.9 0.3\n", + "mmBot -36.2 -30.9 -21.1 -11.7 -7.1\n", + "VeritasAI -33.5 -28.9 -21.3 -14.4 -11.1\n", + "metac-grok-2-1212 -41.8 -35.2 -23.4 -10.4 -3.8\n", + "metac-exa -40.4 -34.4 -23.4 -13.8 -7.9\n", + "metac-gpt-4o -41.7 -34.7 -23.8 -11.3 -5.3\n", + "InstitutPelFutur -43.6 -37.9 -26.5 -14.9 -6.6" + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "NUM = round(df_bot_vs_pro_peer['question_weight'].sum())\n", "ITER = 1000\n", @@ -1184,7 +9270,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 52, "metadata": {}, "outputs": [], "source": [ @@ -1194,9 +9280,29 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 53, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Weighted score for annabot: -190.5513637093994\n", + "Total score for annabot: 21.125669919166132\n", + "\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA0kAAAIjCAYAAADWYVDIAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABJLElEQVR4nO3deXQUVf7+8aezdGcjBBJIQMK+gyzCAGEVDAZEFomKC7IMbiOKGlC/jMMmKggKOgi4jAQcRxkZFFxYjcgoAgoSUWAQEIwYCAQMgWDWvr8/ftKnmiSQxJBuwvt1Th+tW7erP3VTafpJVd22GWOMAAAAAACSJB9PFwAAAAAA3oSQBAAAAAAWhCQAAAAAsCAkAQAAAIAFIQkAAAAALAhJAAAAAGBBSAIAAAAAC0ISAAAAAFgQkgAAAADAgpAEAL+rX7++Ro0a5ekyKr3Zs2erYcOG8vX1Vbt27TxdjldJS0vTzTffrPDwcNlsNr344oueLsnj6tevrxtvvNHTZQC4whCSAFRKixcvls1m07Zt24pcf+2116p169Z/+HVWrVqlqVOn/uHtXCnWrVunxx9/XN26dVNiYqKeffbZC/b/8MMP1atXL9WsWVNBQUFq2LChbr31Vq1Zs6bCaq5Ijz76qNauXauJEyfqn//8p/r16+fpkiqd1NRUTZ06VcnJyZ4uBYAX8/N0AQDgLfbu3Ssfn9L97WjVqlWaP38+QamEPv30U/n4+OiNN96Q3W6/YN/nn39ejz32mHr16qWJEycqKChI+/fv1yeffKKlS5dWygDx6aefavDgwZowYYKnS6m0UlNTNW3aNNWvX58zmQCKRUgCgN85HA5Pl1BqWVlZCg4O9nQZJXbs2DEFBgZeNCDl5+dr+vTp6tu3r9atW1fkdiqK0+lUbm6uAgICLvlrHTt2TGFhYeW2vezsbNnt9lKHfwC40vGuCQC/O/+epLy8PE2bNk1NmjRRQECAwsPD1b17d61fv16SNGrUKM2fP1+SZLPZXI9zsrKyNH78eEVHR8vhcKhZs2Z6/vnnZYxxe93ffvtN48aNU0REhKpUqaJBgwbpl19+kc1mcztDNXXqVNlsNu3evVt33HGHqlWrpu7du0uSdu7cqVGjRqlhw4YKCAhQVFSU/vznP+vEiRNur3VuGz/88IOGDx+uqlWrqkaNGpo0aZKMMfr55581ePBghYaGKioqSi+88EKJxu5cqGnUqJEcDofq16+vv/71r8rJyXH1sdlsSkxMVFZWlmusFi9eXOT20tPTlZmZqW7duhW5vmbNmm7L2dnZmjp1qpo2baqAgADVqlVLQ4cO1YEDB0r987DZbHrwwQf1r3/9S61atZLD4XBd3vfLL7/oz3/+syIjI+VwONSqVSstWrSoUH3z5s1Tq1atFBQUpGrVqqljx456++23ix2/c5eHGmM0f/78QsfSjz/+qFtuuUXVq1dXUFCQunTpoo8//thtG5999plsNpuWLl2qv/3tb7rqqqsUFBSkzMzMYl/3+eefV9euXRUeHq7AwEB16NBB//nPfwr1OzcmK1asUOvWrV37fv5lj+eOr/3792vUqFEKCwtT1apVNXr0aJ09e9atb2Jiovr06aOaNWvK4XCoZcuWWrhwYbG1rlu3Tu3atVNAQIBatmyp9957r1Cfi43TZ599pj/96U+SpNGjR1/0OARw5eJMEoBK7dSpU0pPTy/UnpeXd9HnTp06VTNmzNDdd9+tTp06KTMzU9u2bdM333yjvn376r777lNqaqrWr1+vf/7zn27PNcZo0KBB2rBhg8aMGaN27dpp7dq1euyxx/TLL79o7ty5rr6jRo3Su+++q7vuuktdunTRxo0bNWDAgGLruuWWW9SkSRM9++yzrg/469ev148//qjRo0crKipKu3bt0muvvaZdu3Zpy5Ytbh+4JWnYsGFq0aKFZs6cqY8//lhPP/20qlevrldffVV9+vTRc889p3/961+aMGGC/vSnP6lnz54XHKu7775bS5Ys0c0336zx48dr69atmjFjhvbs2aP3339fkvTPf/5Tr732mr766iv94x//kCR17dq1yO3VrFlTgYGB+vDDD/XQQw+pevXqxb52QUGBbrzxRiUlJem2227Tww8/rNOnT2v9+vX6/vvv1ahRo1L9PPT7ZW/vvvuuHnzwQUVERKh+/fpKS0tTly5dXIGhRo0aWr16tcaMGaPMzEw98sgjkqTXX39d48aN080336yHH35Y2dnZ2rlzp7Zu3ao77rijyH3o2bOn/vnPf+quu+5S3759NWLECNe6tLQ0de3aVWfPntW4ceMUHh6uJUuWaNCgQfrPf/6jm266yW1b06dPl91u14QJE5STk3PBs3YvvfSSBg0apDvvvFO5ublaunSpbrnlFn300UeFjsEvvvhC7733nh544AFVqVJFf//73xUfH6+UlBSFh4e79b311lvVoEEDzZgxQ998843+8Y9/qGbNmnruuedcfRYuXKhWrVpp0KBB8vPz04cffqgHHnhATqdTY8eOddvevn37NGzYMN1///0aOXKkEhMTdcstt2jNmjXq27dvicepRYsWeuqppzR58mTde++96tGjh3SB4xDAFcwAQCWUmJhoJF3w0apVK7fn1KtXz4wcOdK13LZtWzNgwIALvs7YsWNNUW+lK1asMJLM008/7dZ+8803G5vNZvbv32+MMWb79u1GknnkkUfc+o0aNcpIMlOmTHG1TZkyxUgyt99+e6HXO3v2bKG2d955x0gy//3vfwtt495773W15efnmzp16hibzWZmzpzpav/1119NYGCg25gUJTk52Ugyd999t1v7hAkTjCTz6aefutpGjhxpgoODL7i9cyZPnmwkmeDgYNO/f3/zzDPPmO3btxfqt2jRIiPJzJkzp9A6p9NpTCl+Hub/p07j4+Njdu3a5dZ3zJgxplatWiY9Pd2t/bbbbjNVq1Z1/QwGDx5c6NgqKUlm7Nixbm2PPPKIkWQ+//xzV9vp06dNgwYNTP369U1BQYExxpgNGzYYSaZhw4ZFHg9FOb9fbm6uad26tenTp0+huux2u9s4ffvtt0aSmTdvnqvt3PH15z//2e35N910kwkPD7/gaxtjTFxcnGnYsKFbW7169Ywks3z5clfbqVOnTK1atUz79u1dbSUdp6+//tpIMomJiSUYIQBXKi63A1CpzZ8/X+vXry/0aNOmzUWfGxYWpl27dmnfvn2lft1Vq1bJ19dX48aNc2sfP368jDFavXq1JLkuV3rggQfc+j300EPFbvv+++8v1BYYGOj6/+zsbKWnp6tLly6SpG+++aZQ/7vvvtv1/76+vurYsaOMMRozZoyrPSwsTM2aNdOPP/540X2VpISEhEL7KqnQZWElNW3aNL399ttq37691q5dqyeffFIdOnTQNddcoz179rj6LV++XBEREUWO2bkzaCX9eZzTq1cvtWzZ0rVsjNHy5cs1cOBAGWOUnp7uesTFxenUqVOucQ4LC9Phw4f19ddfl2m/z7dq1Sp16tTJdWmlJIWEhOjee+/VoUOHtHv3brf+I0eOdDseLsTa79dff9WpU6fUo0ePIo+Z2NhYNWrUyLXcpk0bhYaGFnl8nH+M9ujRQydOnHC79M/62ufO+Pbq1Us//vijTp065fb82rVru50xCw0N1YgRI7Rjxw4dPXpUKsM4AcCFEJIAVGqdOnVSbGxsoUe1atUu+tynnnpKGRkZatq0qa6++mo99thj2rlzZ4le96efflLt2rVVpUoVt/YWLVq41p/7r4+Pjxo0aODWr3HjxsVu+/y+knTy5Ek9/PDDioyMVGBgoGrUqOHqd/4HTkmqW7eu23LVqlUVEBCgiIiIQu2//vrrRffVx8enUM1RUVEKCwtz7WtZ3H777fr888/166+/at26dbrjjju0Y8cODRw4UNnZ2ZKkAwcOqFmzZvLzK/4K8pL+PM45f4yPHz+ujIwMvfbaa6pRo4bbY/To0ZJlMoknnnhCISEh6tSpk5o0aaKxY8dq06ZNZR6Dn376Sc2aNSvUXtLaL+Sjjz5Sly5dFBAQoOrVq6tGjRpauHBhiY4ZSapWrVqRx8f5fc/9vln7btq0SbGxsQoODlZYWJhq1Kihv/71r1IRx2zjxo0LXTLatGlTSdKhQ4ekMowTAFwI9yQBQDF69uypAwcOaOXKlVq3bp3+8Y9/aO7cuXrllVfczsRUtKLOEtx666368ssv9dhjj6ldu3YKCQmR0+lUv3795HQ6C/X39fUtUZt+P4tSEud/iC1PoaGh6tu3r/r27St/f38tWbJEW7duVa9evS7J650/xufGcPjw4Ro5cmSRzzl3drJFixbau3evPvroI61Zs0bLly/XggULNHnyZE2bNu2S1Huh2ovz+eefa9CgQerZs6cWLFigWrVqyd/fX4mJiUVOMlGa4+NifQ8cOKDrrrtOzZs315w5cxQdHS273a5Vq1Zp7ty5RR6zAFCRCEkAcAHVq1fX6NGjNXr0aJ05c0Y9e/bU1KlTXSGpuGBQr149ffLJJzp9+rTb2Yv//e9/rvXn/ut0OnXw4EE1adLE1W///v0lrvHXX39VUlKSpk2bpsmTJ7vay3KZYFmc24d9+/a5/mqv32+kz8jIcO1reenYsaOWLFmiI0eOSJIaNWqkrVu3Ki8vT/7+/sXWWJKfR3Fq1KihKlWqqKCgQLGxsRetMTg4WMOGDdOwYcOUm5uroUOH6plnntHEiRNLPZV4vXr1tHfv3kLtJa29OMuXL1dAQIDWrl3rNv19YmJimbZXGh9++KFycnL0wQcfuJ112rBhQ5H99+/fL2OM2+/bDz/8IP0+K6VKMU6XMswDqDy43A4AinH+9NkhISFq3Lix27TW576jKCMjw63vDTfcoIKCAr388stu7XPnzpXNZlP//v0lSXFxcZKkBQsWuPWbN29eies891f78/+i/+KLL5Z4G3/EDTfcUOTrzZkzR5IuOFNfcc6ePavNmzcXue7c/UPnLq2Kj49Xenp6obGWZUxK+vMojq+vr+Lj47V8+XJ9//33hdYfP37c9f/nHzd2u10tW7aUMaZEsyqe74YbbtBXX33lNh5ZWVl67bXXVL9+fbd7p0rD19dXNptNBQUFrrZDhw5pxYoVZdpeaV9b5x2zp06dKjagpaamumZJlKTMzEy9+eabateunaKioqRSjFNxv7MAYMWZJAAoRsuWLXXttdeqQ4cOql69urZt26b//Oc/evDBB119OnToIEkaN26c4uLi5Ovrq9tuu00DBw5U79699eSTT+rQoUNq27at1q1bp5UrV+qRRx5x3QDfoUMHxcfH68UXX9SJEydcU4Cf+yt5Sf7qHRoaqp49e2rWrFnKy8vTVVddpXXr1ungwYOXbGys2rZtq5EjR+q1115TRkaGevXqpa+++kpLlizRkCFD1Lt371Jv8+zZs+ratau6dOmifv36KTo6WhkZGVqxYoU+//xzDRkyRO3bt5ckjRgxQm+++aYSEhL01VdfqUePHsrKytInn3yiBx54QIMHDy7xz+NCZs6cqQ0bNqhz586655571LJlS508eVLffPONPvnkE508eVKSdP311ysqKkrdunVTZGSk9uzZo5dfflkDBgwodE9USfzf//2f3nnnHfXv31/jxo1T9erVtWTJEh08eFDLly8v8xfFDhgwQHPmzFG/fv10xx136NixY5o/f74aN25c4nvvyur666+X3W7XwIEDdd999+nMmTN6/fXXVbNmTdcZQqumTZtqzJgx+vrrrxUZGalFixYpLS3NLVSVdJwaNWqksLAwvfLKK6pSpYqCg4PVuXPnUt3LBeAK4Onp9QDgUjg3BfjXX39d5PpevXpddArwp59+2nTq1MmEhYWZwMBA07x5c/PMM8+Y3NxcV5/8/Hzz0EMPmRo1ahibzeY2Hfjp06fNo48+amrXrm38/f1NkyZNzOzZs13TUp+TlZVlxo4da6pXr25CQkLMkCFDzN69e40ktym5z02vfPz48UL7c/jwYXPTTTeZsLAwU7VqVXPLLbeY1NTUYqcRP38bxU3NXdQ4FSUvL89MmzbNNGjQwPj7+5vo6GgzceJEk52dXaLXKWp7r7/+uhkyZIipV6+ecTgcJigoyLRv397Mnj3b5OTkuPU/e/asefLJJ12vHxUVZW6++WZz4MABV5+S/jyKmob7nLS0NDN27FgTHR3tep3rrrvOvPbaa64+r776qunZs6cJDw83DofDNGrUyDz22GPm1KlTF93v4l77wIED5uabbzZhYWEmICDAdOrUyXz00Udufc5NAb5s2bKLvs45b7zxhmnSpIlxOBymefPmJjEx0XWMlKSu839niju+zv0+Hjx40NX2wQcfmDZt2piAgABTv35989xzz7mmc7f2q1evnhkwYIBZu3atadOmjavWovazJONkjDErV640LVu2NH5+fkwHDqBINlPSO3IBABUmOTlZ7du311tvvaU777zT0+UAAHBF4Z4kAPCw3377rVDbiy++KB8fH/Xs2dMjNQEAcCXjniQA8LBZs2Zp+/bt6t27t/z8/LR69WqtXr1a9957r6Kjoz1dHgAAVxwutwMAD1u/fr2mTZum3bt368yZM6pbt67uuusuPfnkkxf8glQAAHBpEJIAAAAAwIJ7kgAAAADAgpAEAAAAABaV/mJ3p9Op1NRUValSpURfyggAAACgcjLG6PTp06pdu/YFv4y70oek1NRUZocCAAAA4PLzzz+rTp06xa6v9CGpSpUq0u8DERoa6ulyAAAAAHhIZmamoqOjXRmhOJU+JJ27xC40NJSQBAAAAOCit+EwcQMAAAAAWBCSAAAAAMCCkAQAAAAAFoQkAAAAALAgJAEAAACABSEJAAAAACwISQAAAABgQUgCAAAAAAtCEgAAAABYEJIAAAAAwIKQBAAAAAAWhCQAAAAAsCAkAQAAAIAFIQkAAAAALAhJAAAAAGBBSAIAAAAAC0ISAAAAAFgQkgAAAADAws/TBQAAAHijlJQUpaene7oMrxQREaG6det6ugzgkiEkAQAAnCclJUXNmrdQ9m9nPV2KVwoIDNLe/+0hKKHSIiQBAACcJz09Xdm/nVX4jePlHx7t6XK8St6Jn3XioxeUnp5OSEKlRUgCAAAohn94tBxRjT1dBoAKxsQNAAAAAGBBSAIAAAAAC0ISAAAAAFgQkgAAAADAgpAEAAAAABaEJAAAAACwICQBAAAAgAUhCQAAAAAsCEkAAAAAYEFIAgAAAAALj4akqVOnymazuT2aN2/uWp+dna2xY8cqPDxcISEhio+PV1pamidLBgAAAFDJefxMUqtWrXTkyBHX44svvnCte/TRR/Xhhx9q2bJl2rhxo1JTUzV06FCP1gsAAACgcvPzeAF+foqKiirUfurUKb3xxht6++231adPH0lSYmKiWrRooS1btqhLly4eqBYAAABAZefxkLRv3z7Vrl1bAQEBiomJ0YwZM1S3bl1t375deXl5io2NdfVt3ry56tatq82bNxcbknJycpSTk+NazszMlCTl5+crPz+/AvYIAABc7pxOp+x2u/x9bfL3MZ4ux6s4fW2y2+1yOp18tsJlp6THrEdDUufOnbV48WI1a9ZMR44c0bRp09SjRw99//33Onr0qOx2u8LCwtyeExkZqaNHjxa7zRkzZmjatGmF2rdt26bg4OBLsh8AAKByOX36tCZNmiR7VE352J2eLserOBvWVG6DSUpPT9fWrVs9XQ5QKllZWSXqZzPGeM2fRzIyMlSvXj3NmTNHgYGBGj16tNtZIUnq1KmTevfureeee67IbRR1Jik6OlonTpxQaGjoJd8HAABw+UtOTla3bt0UOXy2HJENPV2OV8lJ+1Fpbz2mTZs2qV27dp4uByiVzMxMhYeH69SpUxfMBh6/3M4qLCxMTZs21f79+9W3b1/l5uYqIyPD7WxSWlpakfcwneNwOORwOAq1+/n5yc/Pq3YXAAB4KR8fH+Xm5iqvwMjHafN0OV4lr8AoNzdXPj4+fLbCZaekx6zHZ7ezOnPmjA4cOKBatWqpQ4cO8vf3V1JSkmv93r17lZKSopiYGI/WCQAAAKDy8mj8nzBhggYOHKh69eopNTVVU6ZMka+vr26//XZVrVpVY8aMUUJCgqpXr67Q0FA99NBDiomJYWY7AAAAAJeMR0PS4cOHdfvtt+vEiROqUaOGunfvri1btqhGjRqSpLlz58rHx0fx8fHKyclRXFycFixY4MmSAQAAAFRyHg1JS5cuveD6gIAAzZ8/X/Pnz6+wmgAAAABc2bzqniQAAAAA8DRCEgAAAABYEJIAAAAAwIKQBAAAAAAWhCQAAAAAsCAkAQAAAIAFIQkAAAAALAhJAAAAAGBBSAIAAAAAC0ISAAAAAFgQkgAAAADAgpAEAAAAABaEJAAAAACwICQBAAAAgAUhCQAAAAAsCEkAAAAAYEFIAgAAAAALQhIAAAAAWBCSAAAAAMCCkAQAAAAAFoQkAAAAALAgJAEAAACABSEJAAAAACwISQAAAABgQUgCAAAAAAtCEgAAAABYEJIAAAAAwIKQBAAAAAAWhCQAAAAAsCAkAQAAAIAFIQkAAAAALAhJAAAAAGBBSAIAAAAAC0ISAAAAAFgQkgAAAADAgpAEAAAAABaEJAAAAACwICQBAAAAgAUhCQAAAAAsCEkAAAAAYEFIAgAAAAALQhIAAAAAWBCSAAAAAMCCkAQAAAAAFoQkAAAAALAgJAEAAACABSEJAAAAACwISQAAAABgQUgCAAAAAAtCEgAAAABYEJIAAAAAwIKQBAAAAAAWhCQAAAAAsCAkAQAAAIAFIQkAAAAALAhJAAAAAGBBSAIAAAAAC0ISAAAAAFgQkgAAAADAgpAEAAAAABaEJAAAAACwICQBAAAAgAUhCQAAAAAsCEkAAAAAYEFIAgAAAAALQhIAAAAAWBCSAAAAAMCCkAQAAAAAFoQkAAAAALAgJAEAAACABSEJAAAAACwISQAAAABgQUgCAAAAAAuvCUkzZ86UzWbTI4884mrLzs7W2LFjFR4erpCQEMXHxystLc2jdQIAAACo3LwiJH399dd69dVX1aZNG7f2Rx99VB9++KGWLVumjRs3KjU1VUOHDvVYnQAAAAAqP4+HpDNnzujOO+/U66+/rmrVqrnaT506pTfeeENz5sxRnz591KFDByUmJurLL7/Uli1bPFozAAAAgMrLz9MFjB07VgMGDFBsbKyefvppV/v27duVl5en2NhYV1vz5s1Vt25dbd68WV26dClyezk5OcrJyXEtZ2ZmSpLy8/OVn59/SfcFAABUDk6nU3a7Xf6+Nvn7GE+X41WcvjbZ7XY5nU4+W+GyU9Jj1qMhaenSpfrmm2/09ddfF1p39OhR2e12hYWFubVHRkbq6NGjxW5zxowZmjZtWqH2bdu2KTg4uJwqBwAAldnp06c1adIk2aNqysfu9HQ5XsXZsKZyG0xSenq6tm7d6ulygFLJysoqUT+PhaSff/5ZDz/8sNavX6+AgIBy2+7EiROVkJDgWs7MzFR0dLQ6duyo0NDQcnsdAABQeSUnJ2v69OmKHD5bjsiGni7Hq+SkHVPaW9O1adMmtWvXztPlAKVy7iqzi/FYSNq+fbuOHTuma665xtVWUFCg//73v3r55Ze1du1a5ebmKiMjw+1sUlpamqKioordrsPhkMPhKNTu5+cnPz+PX10IAAAuAz4+PsrNzVVegZGP0+bpcrxKXoFRbm6ufHx8+GyFy05Jj1mPHdnXXXedvvvuO7e20aNHq3nz5nriiScUHR0tf39/JSUlKT4+XpK0d+9epaSkKCYmxkNVAwAAAKjsPBaSqlSpotatW7u1BQcHKzw83NU+ZswYJSQkqHr16goNDdVDDz2kmJiYYidtAAAAAIA/yqvPkc6dO1c+Pj6Kj49XTk6O4uLitGDBAk+XBQAAAKAS86qQ9Nlnn7ktBwQEaP78+Zo/f77HagIAAABwZfH4l8kCAAAAgDchJAEAAACABSEJAAAAACwISQAAAABgQUgCAAAAAAtCEgAAAABYEJIAAAAAwIKQBAAAAAAWhCQAAAAAsCAkAQAAAIAFIQkAAAAALAhJAAAAAGBBSAIAAAAAC0ISAAAAAFgQkgAAAADAgpAEAAAAABaEJAAAAACwICQBAAAAgAUhCQAAAAAsCEkAAAAAYEFIAgAAAAALQhIAAAAAWBCSAAAAAMCCkAQAAAAAFoQkAAAAALAgJAEAAACABSEJAAAAACwISQAAAABgQUgCAAAAAAtCEgAAAABYEJIAAAAAwIKQBAAAAAAWhCQAAAAAsCAkAQAAAIAFIQkAAAAALAhJAAAAAGBBSAIAAAAAC0ISAAAAAFgQkgAAAADAgpAEAAAAABaEJAAAAACwICQBAAAAgAUhCQAAAAAsCEkAAAAAYEFIAgAAAAALQhIAAAAAWBCSAAAAAMCCkAQAAAAAFoQkAAAAALAgJAEAAACABSEJAAAAACwISQAAAABgQUgCAAAAAAtCEgAAAABYEJIAAAAAwIKQBAAAAAAWhCQAAAAAsCAkAQAAAIAFIQkAAAAALAhJAAAAAGBBSAIAAAAAC0ISAAAAAFgQkgAAAADAgpAEAAAAABaEJAAAAACwICQBAAAAgAUhCQAAAAAsCEkAAAAAYFGmkPTjjz+WfyUAAAAA4AXKFJIaN26s3r1766233lJ2dnb5VwUAAAAAHlKmkPTNN9+oTZs2SkhIUFRUlO677z599dVX5V8dAAAAAFSwMoWkdu3a6aWXXlJqaqoWLVqkI0eOqHv37mrdurXmzJmj48ePl3+lAAAAAFAB/tDEDX5+fho6dKiWLVum5557Tvv379eECRMUHR2tESNG6MiRI+VXKQAAAABUgD8UkrZt26YHHnhAtWrV0pw5czRhwgQdOHBA69evV2pqqgYPHlx+lQIAAABABShTSJozZ46uvvpqde3aVampqXrzzTf1008/6emnn1aDBg3Uo0cPLV68WN98880Ft7Nw4UK1adNGoaGhCg0NVUxMjFavXu1an52drbFjxyo8PFwhISGKj49XWlpaWUoGAAAAgBIpU0hauHCh7rjjDv30009asWKFbrzxRvn4uG+qZs2aeuONNy64nTp16mjmzJnavn27tm3bpj59+mjw4MHatWuXJOnRRx/Vhx9+qGXLlmnjxo1KTU3V0KFDy1IyAAAAAJSIX1metG/fvov2sdvtGjly5AX7DBw40G35mWee0cKFC7VlyxbVqVNHb7zxht5++2316dNHkpSYmKgWLVpoy5Yt6tKlS1lKBwAAAIALKlNISkxMVEhIiG655Ra39mXLluns2bMXDUdFKSgo0LJly5SVlaWYmBht375deXl5io2NdfVp3ry56tatq82bNxcbknJycpSTk+NazszMlCTl5+crPz+/1HUBAIArj9PplN1ul7+vTf4+xtPleBWnr012u11Op5PPVrjslPSYLVNImjFjhl599dVC7TVr1tS9995bqpD03XffKSYmRtnZ2QoJCdH777+vli1bKjk5WXa7XWFhYW79IyMjdfTo0QvWNm3atELt27ZtU3BwcInrAgAAV67Tp09r0qRJskfVlI/d6elyvIqzYU3lNpik9PR0bd261dPlAKWSlZVVon5lCkkpKSlq0KBBofZ69eopJSWlVNtq1qyZkpOTderUKf3nP//RyJEjtXHjxrKUJUmaOHGiEhISXMuZmZmKjo5Wx44dFRoaWubtAgCAK0dycrKmT5+uyOGz5Yhs6OlyvEpO2jGlvTVdmzZtUrt27TxdDlAq564yu5gyhaSaNWtq586dql+/vlv7t99+q/Dw8FJty263q3HjxpKkDh066Ouvv9ZLL72kYcOGKTc3VxkZGW5nk9LS0hQVFVXs9hwOhxwOR6F2Pz8/+fmVaXcBAMAVxsfHR7m5ucorMPJx2jxdjlfJKzDKzc2Vj48Pn61w2SnpMVum2e1uv/12jRs3Ths2bFBBQYEKCgr06aef6uGHH9Ztt91Wlk26OJ1O5eTkqEOHDvL391dSUpJr3d69e5WSkqKYmJg/9BoAAAAAUJwyxf/p06fr0KFDuu6661xpzOl0asSIEXr22WdLvJ2JEyeqf//+qlu3rk6fPq23335bn332mdauXauqVatqzJgxSkhIUPXq1RUaGqqHHnpIMTExzGwHAAAA4JIpU0iy2+3697//renTp+vbb79VYGCgrr76atWrV69U2zl27JhGjBihI0eOqGrVqmrTpo3Wrl2rvn37SpLmzp0rHx8fxcfHKycnR3FxcVqwYEFZSgYAAACAEvlDF5I2bdpUTZs2LfPzL/ZlswEBAZo/f77mz59f5tcAAAAAgNIoU0gqKCjQ4sWLlZSUpGPHjsnpdJ8a89NPPy2v+gAAAACgQpUpJD388MNavHixBgwYoNatW8tmY9YXAAAAAJVDmULS0qVL9e677+qGG24o/4oAAAAAwIPKNAW49buNAAAAAKAyKVNIGj9+vF566SUZY8q/IgAAAADwoDJdbvfFF19ow4YNWr16tVq1aiV/f3+39e+991551QcAAAAAFapMISksLEw33XRT+VcDAAAAAB5WppCUmJhY/pUAAAAAgBco0z1JkpSfn69PPvlEr776qk6fPi1JSk1N1ZkzZ8qzPgAAAACoUGU6k/TTTz+pX79+SklJUU5Ojvr27asqVaroueeeU05Ojl555ZXyrxQAAAAAKkCZziQ9/PDD6tixo3799VcFBga62m+66SYlJSWVZ30AAAAAUKHKdCbp888/15dffim73e7WXr9+ff3yyy/lVRsAAAAAVLgynUlyOp0qKCgo1H748GFVqVKlPOoCAAAAAI8oU0i6/vrr9eKLL7qWbTabzpw5oylTpuiGG24oz/oAAAAAoEKV6XK7F154QXFxcWrZsqWys7N1xx13aN++fYqIiNA777xT/lUCAAAAQAUpU0iqU6eOvv32Wy1dulQ7d+7UmTNnNGbMGN15551uEzkAAAAAwOWmTCFJkvz8/DR8+PDyrQYAAAAAPKxMIenNN9+84PoRI0aUtR4AAAAA8KgyhaSHH37YbTkvL09nz56V3W5XUFAQIQkAAADAZatMs9v9+uuvbo8zZ85o79696t69OxM3AAAAALislSkkFaVJkyaaOXNmobNMAAAAAHA5KbeQpN8nc0hNTS3PTQIAAABAhSrTPUkffPCB27IxRkeOHNHLL7+sbt26lVdtAAAAAFDhyhSShgwZ4rZss9lUo0YN9enTRy+88EJ51QYAAAAAFa5MIcnpdJZ/JQAAAADgBcr1niQAAAAAuNyV6UxSQkJCifvOmTOnLC8BAAAAAB5RppC0Y8cO7dixQ3l5eWrWrJkk6YcffpCvr6+uueYaVz+bzVZ+lQIAAABABShTSBo4cKCqVKmiJUuWqFq1atLvXzA7evRo9ejRQ+PHjy/vOgEAAACgQpTpnqQXXnhBM2bMcAUkSapWrZqefvppZrcDAAAAcFkrU0jKzMzU8ePHC7UfP35cp0+fLo+6AAAAAMAjyhSSbrrpJo0ePVrvvfeeDh8+rMOHD2v58uUaM2aMhg4dWv5VAgAAAEAFKdM9Sa+88oomTJigO+64Q3l5ef9/Q35+GjNmjGbPnl3eNQIAAABAhSlTSAoKCtKCBQs0e/ZsHThwQJLUqFEjBQcHl3d9AAAAAFCh/tCXyR45ckRHjhxRkyZNFBwcLGNM+VUGAAAAAB5QppB04sQJXXfddWratKluuOEGHTlyRJI0ZswYpv8GAAAAcFkrU0h69NFH5e/vr5SUFAUFBbnahw0bpjVr1pRnfQAAAABQocp0T9K6deu0du1a1alTx629SZMm+umnn8qrNgAAAACocGU6k5SVleV2BumckydPyuFwlEddAAAAAOARZQpJPXr00JtvvulattlscjqdmjVrlnr37l2e9QEAAABAhSrT5XazZs3Sddddp23btik3N1ePP/64du3apZMnT2rTpk3lXyUAAAAAVJAynUlq3bq1fvjhB3Xv3l2DBw9WVlaWhg4dqh07dqhRo0blXyUAAAAAVJBSn0nKy8tTv3799Morr+jJJ5+8NFUBAAAAgIeU+kySv7+/du7ceWmqAQAAAAAPK9PldsOHD9cbb7xR/tUAAAAAgIeVaeKG/Px8LVq0SJ988ok6dOig4OBgt/Vz5swpr/oAAAAAoEKVKiT9+OOPql+/vr7//ntdc801kqQffvjBrY/NZivfCgEAAACgApUqJDVp0kRHjhzRhg0bJEnDhg3T3//+d0VGRl6q+gAAAACgQpXqniRjjNvy6tWrlZWVVd41AQAAAIDHlGnihnPOD00AAAAAcLkrVUiy2WyF7jniHiQAAAAAlUmp7kkyxmjUqFFyOBySpOzsbN1///2FZrd77733yrdKAAAAAKggpQpJI0eOdFsePnx4edcDAAAAAB5VqpCUmJh46SoBAAAAAC/whyZuAAAAAIDKhpAEAAAAABaEJAAAAACwICQBAAAAgAUhCQAAAAAsCEkAAAAAYEFIAgAAAAALQhIAAAAAWBCSAAAAAMCCkAQAAAAAFoQkAAAAALAgJAEAAACABSEJAAAAACwISQAAAABg4efpAgAAAHD52bNnj6dL8DoRERGqW7eup8tAOSAkAQAAoMQKzvwq2WwaPny4p0vxOgGBQdr7vz0EpUqAkAQAAIASc+ackYxR+I3j5R8e7elyvEbeiZ914qMXlJ6eTkiqBAhJAAAAKDX/8Gg5ohp7ugzgkmDiBgAAAACwICQBAAAAgIVHQ9KMGTP0pz/9SVWqVFHNmjU1ZMgQ7d27161Pdna2xo4dq/DwcIWEhCg+Pl5paWkeqxkAAABA5ebRkLRx40aNHTtWW7Zs0fr165WXl6frr79eWVlZrj6PPvqoPvzwQy1btkwbN25Uamqqhg4d6smyAQAAAFRiHp24Yc2aNW7LixcvVs2aNbV9+3b17NlTp06d0htvvKG3335bffr0kSQlJiaqRYsW2rJli7p06VJomzk5OcrJyXEtZ2ZmSpLy8/OVn59/yfcJAABc/pxOp+x2u/x9bfL3MZ4ux6vYfX0YmyI4fW2y2+1yOp185vRiJf3ZeNXsdqdOnZIkVa9eXZK0fft25eXlKTY21tWnefPmqlu3rjZv3lxkSJoxY4amTZtWqH3btm0KDg6+pPUDAIDK4fTp05o0aZLsUTXlY3d6uhyvUhDdSnkdGZvzORvWVG6DSUpPT9fWrVs9XQ6KYb1i7UK8JiQ5nU498sgj6tatm1q3bi1JOnr0qOx2u8LCwtz6RkZG6ujRo0VuZ+LEiUpISHAtZ2ZmKjo6Wh07dlRoaOgl3gsAAFAZJCcna/r06YocPluOyIaeLserZO3epROrX2JszpOTdkxpb03Xpk2b1K5dO0+Xg2Kcu8rsYrwmJI0dO1bff/+9vvjiiz+0HYfDIYfDUajdz89Pfn5es7sAAMCL+fj4KDc3V3kFRj5Om6fL8Sq5BU7Gpgh5BUa5ubny8fHhM6cXK+nPxiumAH/wwQf10UcfacOGDapTp46rPSoqSrm5ucrIyHDrn5aWpqioKA9UCgAAAKCy82hIMsbowQcf1Pvvv69PP/1UDRo0cFvfoUMH+fv7KykpydW2d+9epaSkKCYmxgMVAwAAAKjsPHoucOzYsXr77be1cuVKValSxXWfUdWqVRUYGKiqVatqzJgxSkhIUPXq1RUaGqqHHnpIMTExRU7aAAAAAAB/lEdD0sKFCyVJ1157rVt7YmKiRo0aJUmaO3eufHx8FB8fr5ycHMXFxWnBggUeqRcAAABA5efRkGTMxefWDwgI0Pz58zV//vwKqQkAAADAlc0rJm4AAAAAAG9BSAIAAAAAC0ISAAAAAFgQkgAAAADAgpAEAAAAABaEJAAAAACwICQBAAAAgAUhCQAAAAAsCEkAAAAAYEFIAgAAAAALQhIAAAAAWBCSAAAAAMCCkAQAAAAAFoQkAAAAALAgJAEAAACABSEJAAAAACwISQAAAABgQUgCAAAAAAtCEgAAAABYEJIAAAAAwIKQBAAAAAAWhCQAAAAAsCAkAQAAAIAFIQkAAAAALAhJAAAAAGBBSAIAAAAAC0ISAAAAAFgQkgAAAADAgpAEAAAAABaEJAAAAACwICQBAAAAgAUhCQAAAAAsCEkAAAAAYEFIAgAAAAALQhIAAAAAWBCSAAAAAMCCkAQAAAAAFoQkAAAAALAgJAEAAACABSEJAAAAACwISQAAAABgQUgCAAAAAAtCEgAAAABYEJIAAAAAwIKQBAAAAAAWhCQAAAAAsCAkAQAAAIAFIQkAAAAALAhJAAAAAGBBSAIAAAAAC0ISAAAAAFgQkgAAAADAgpAEAAAAABaEJAAAAACwICQBAAAAgAUhCQAAAAAsCEkAAAAAYEFIAgAAAAALQhIAAAAAWBCSAAAAAMCCkAQAAAAAFoQkAAAAALAgJAEAAACABSEJAAAAACwISQAAAABgQUgCAAAAAAtCEgAAAABYEJIAAAAAwIKQBAAAAAAWhCQAAAAAsCAkAQAAAIAFIQkAAAAALAhJAAAAAGDh0ZD03//+VwMHDlTt2rVls9m0YsUKt/XGGE2ePFm1atVSYGCgYmNjtW/fPo/VCwAAAKDy82hIysrKUtu2bTV//vwi18+aNUt///vf9corr2jr1q0KDg5WXFycsrOzK7xWAAAAAFcGP0++eP/+/dW/f/8i1xlj9OKLL+pvf/ubBg8eLEl68803FRkZqRUrVui2226r4GoBAAAAXAk8GpIu5ODBgzp69KhiY2NdbVWrVlXnzp21efPmYkNSTk6OcnJyXMuZmZmSpPz8fOXn51dA5QAA4HLndDplt9vl72uTv4/xdDlexe7rw9gUwelrk91u1549e+R0Oj1djteJiIhQnTp1PF1GifOA14ako0ePSpIiIyPd2iMjI13rijJjxgxNmzatUPu2bdsUHBx8CSoFAACVzenTpzVp0iTZo2rKx84HXquC6FbK68jYnK+gXnXlNZikgwcP6uDBg54ux+v4+Pioc+fOCggI8GgdWVlZJerntSGprCZOnKiEhATXcmZmpqKjo9WxY0eFhoZ6tDYAAHB5SE5O1vTp0xU5fLYckQ09XY5Xydq9SydWv8TYnCdr906dWP2Swvs/LL9wz58x8Sb5Jw7rxOqXtGnTJrVr186jtZy7yuxivDYkRUVFSZLS0tJUq1YtV3taWtoFB9fhcMjhcBRq9/Pzk5+f1+4uAADwIj4+PsrNzVVegZGP0+bpcrxKboGTsSnCuXExYVfJp0YjT5fjVUyBUW5urnx8fDz+ebykr++135PUoEEDRUVFKSkpydWWmZmprVu3KiYmxqO1AQAAAKi8PBrlzpw5o/3797uWDx48qOTkZFWvXl1169bVI488oqefflpNmjRRgwYNNGnSJNWuXVtDhgzxZNkAAAAAKjGPhqRt27apd+/eruVz9xKNHDlSixcv1uOPP66srCzde++9ysjIUPfu3bVmzRqP3/AFAAAAoPLyaEi69tprZUzxU0fabDY99dRTeuqppyq0LgAAAABXLq+9JwkAAAAAPIGQBAAAAAAWhCQAAAAAsCAkAQAAAIAFIQkAAAAALAhJAAAAAGBBSAIAAAAAC0ISAAAAAFgQkgAAAADAws/TBQAAAM9KSUlRenq6p8vwKnv27PF0CQA8iJAEAMAVLCUlRc2at1D2b2c9XQoAeA1CEgAAV7D09HRl/3ZW4TeOl394tKfL8Rq//bhNpz5/y9NlAPAQQhIAAJB/eLQcUY09XYbXyDvxs6dLAOBBTNwAAAAAABaEJAAAAACwICQBAAAAgAUhCQAAAAAsCEkAAAAAYEFIAgAAAAALQhIAAAAAWBCSAAAAAMCCkAQAAAAAFoQkAAAAALAgJAEAAACABSEJAAAAACwISQAAAABgQUgCAAAAAAtCEgAAAABYEJIAAAAAwIKQBAAAAAAWhCQAAAAAsCAkAQAAAIAFIQkAAAAALAhJAAAAAGBBSAIAAAAAC0ISAAAAAFgQkgAAAADAgpAEAAAAABaEJAAAAACwICQBAAAAgAUhCQAAAAAsCEkAAAAAYEFIAgAAAAALQhIAAAAAWBCSAAAAAMCCkAQAAAAAFoQkAAAAALAgJAEAAACABSEJAAAAACwISQAAAABgQUgCAAAAAAtCEgAAAABYEJIAAAAAwIKQBAAAAAAWhCQAAAAAsCAkAQAAAIAFIQkAAAAALAhJAAAAAGBBSAIAAAAAC0ISAAAAAFj4ebqAK01KSorS09M9XYZXioiIUN26dT1dBoBKivffou3Zs8fTJQCA1yEkVaCUlBQ1a95C2b+d9XQpXikgMEh7/7eHoASg3PH+CwAoDUJSBUpPT1f2b2cVfuN4+YdHe7ocr5J34med+OgFpaenE5IAlDvef4v324/bdOrztzxdBgB4FUKSB/iHR8sR1djTZQDAFYf338LyTvzs6RIAwOswcQMAAAAAWBCSAAAAAMCCkAQAAAAAFoQkAAAAALBg4gZ4Fb6vozC+PwqlxfcBFcZ7CwCgNAhJ8AoFZ36VbDYNHz7c06V4Hb4/CqXB9wEBAPDHEZLgFZw5ZyRj+A6T8/D9USgtvg+oaHwXEACgNAhJ8Cp8hwlQPvhdcsd3AQEASoOJGwAAAADAgpAEAAAAABaXRUiaP3++6tevr4CAAHXu3FlfffWVp0sCAAAAUEl5fUj697//rYSEBE2ZMkXffPON2rZtq7i4OB07dszTpQEAAACohLw+JM2ZM0f33HOPRo8erZYtW+qVV15RUFCQFi1a5OnSAAAAAFRCXj27XW5urrZv366JEye62nx8fBQbG6vNmzcX+ZycnBzl5OS4lk+dOiVJOnnypPLz8yug6uJlZmbK399f5viPyi/IKcEzriCnUhmbIpiTv8jf31/bt29XZmamp8vxKj4+PnI6nZ4uw+vs27eP36Wi8B5TPMamaIxL8RibojEuxTr3eSYzM1MnT570aC3nPk8ZYy7Yz2Yu1sODUlNTddVVV+nLL79UTEyMq/3xxx/Xxo0btXXr1kLPmTp1qqZNm1bBlQIAAAC4XPz888+qU6dOseu9+kxSWUycOFEJCQmuZafTqZMnTyo8PFw2m+0PbTszM1PR0dH6+eefFRoaWg7VojiMdcVhrCsOY12xGO+Kw1hXHMa6YjHeFaeixtoYo9OnT6t27doX7OfVISkiIkK+vr5KS0tza09LS1NUVFSRz3E4HHI4HG5tYWFh5VpXaGgovygVhLGuOIx1xWGsKxbjXXEY64rDWFcsxrviVMRYV61a9aJ9vHriBrvdrg4dOigpKcnV5nQ6lZSU5Hb5HQAAAACUF68+kyRJCQkJGjlypDp27KhOnTrpxRdfVFZWlkaPHu3p0gAAAABUQl4fkoYNG6bjx49r8uTJOnr0qNq1a6c1a9YoMjKywmtxOByaMmVKocv5UP4Y64rDWFccxrpiMd4Vh7GuOIx1xWK8K463jbVXz24HAAAAABXNq+9JAgAAAICKRkgCAAAAAAtCEgAAAABYEJIAAAAAwIKQVIRBgwapbt26CggIUK1atXTXXXcpNTXVrc/OnTvVo0cPBQQEKDo6WrNmzSq0nWXLlql58+YKCAjQ1VdfrVWrVlXgXni/Q4cOacyYMWrQoIECAwPVqFEjTZkyRbm5uW59bDZboceWLVvctsVYX1xJxlsc2+XmmWeeUdeuXRUUFFTsF1oXdWwvXbrUrc9nn32ma665Rg6HQ40bN9bixYsraA8uHyUZ65SUFA0YMEBBQUGqWbOmHnvsMeXn57v1YazLpn79+oWO45kzZ7r1Kcn7Ckpm/vz5ql+/vgICAtS5c2d99dVXni7psjd16tRCx3Dz5s1d67OzszV27FiFh4crJCRE8fHxSktL82jNl4v//ve/GjhwoGrXri2bzaYVK1a4rTfGaPLkyapVq5YCAwMVGxurffv2ufU5efKk7rzzToWGhiosLExjxozRmTNnLn3xBoXMmTPHbN682Rw6dMhs2rTJxMTEmJiYGNf6U6dOmcjISHPnnXea77//3rzzzjsmMDDQvPrqq64+mzZtMr6+vmbWrFlm9+7d5m9/+5vx9/c33333nYf2yvusXr3ajBo1yqxdu9YcOHDArFy50tSsWdOMHz/e1efgwYNGkvnkk0/MkSNHXI/c3FxXH8a6ZEoy3hzb5Wfy5Mlmzpw5JiEhwVStWrXIPpJMYmKi27H922+/udb/+OOPJigoyCQkJJjdu3ebefPmGV9fX7NmzZoK3BPvd7Gxzs/PN61btzaxsbFmx44dZtWqVSYiIsJMnDjR1YexLrt69eqZp556yu04PnPmjGt9Sd5XUDJLly41drvdLFq0yOzatcvcc889JiwszKSlpXm6tMvalClTTKtWrdyO4ePHj7vW33///SY6OtokJSWZbdu2mS5dupiuXbt6tObLxapVq8yTTz5p3nvvPSPJvP/++27rZ86caapWrWpWrFhhvv32WzNo0CDToEEDt38L+/XrZ9q2bWu2bNliPv/8c9O4cWNz++23X/LaCUklsHLlSmOz2VwfzBcsWGCqVatmcnJyXH2eeOIJ06xZM9fyrbfeagYMGOC2nc6dO5v77ruvAiu//MyaNcs0aNDAtXwuJO3YsaPY5zDWZXf+eHNsl7/ExMQLhqTz/8Gwevzxx02rVq3c2oYNG2bi4uLKvc7KoLixXrVqlfHx8TFHjx51tS1cuNCEhoa6jnXGuuzq1atn5s6dW+z6kryvoGQ6depkxo4d61ouKCgwtWvXNjNmzPBoXZe7KVOmmLZt2xa5LiMjw/j7+5tly5a52vbs2WMkmc2bN1dglZe/8//NczqdJioqysyePdvVlpGRYRwOh3nnnXeMMcbs3r3bSDJff/21q8/q1auNzWYzv/zyyyWtl8vtLuLkyZP617/+pa5du8rf31+StHnzZvXs2VN2u93VLy4uTnv37tWvv/7q6hMbG+u2rbi4OG3evLmC9+DycurUKVWvXr1Q+6BBg1SzZk11795dH3zwgds6xrrszh9vju2KN3bsWEVERKhTp05atGiRrF9dx1iXj82bN+vqq692+xLyuLg4ZWZmateuXa4+jHXZzZw5U+Hh4Wrfvr1mz57tdiljSd5XcHG5ubnavn2723Hq4+Oj2NhYjtNysG/fPtWuXVsNGzbUnXfeqZSUFEnS9u3blZeX5zbuzZs3V926dRn3P+jgwYM6evSo29hWrVpVnTt3do3t5s2bFRYWpo4dO7r6xMbGysfHR1u3br2k9RGSivHEE08oODhY4eHhSklJ0cqVK13rjh496vaPrSTX8tGjRy/Y59x6FLZ//37NmzdP9913n6stJCREL7zwgpYtW6aPP/5Y3bt315AhQ9yCEmNdNkWNN8d2xXrqqaf07rvvav369YqPj9cDDzygefPmudYXN9aZmZn67bffPFDx5emPHNeM9cWNGzdOS5cu1YYNG3Tffffp2Wef1eOPP+5aX5Lxx8Wlp6eroKCA999LoHPnzlq8eLHWrFmjhQsX6uDBg+rRo4dOnz6to0ePym63F7rfkXH/486N34WO6aNHj6pmzZpu6/38/FS9evVLPv5XTEj6v//7vyJvkrY+/ve//7n6P/bYY9qxY4fWrVsnX19fjRgxwu0vvCheacdakn755Rf169dPt9xyi+655x5Xe0REhBISEtS5c2f96U9/0syZMzV8+HDNnj3bA3vmncpzvHFhZRnrC5k0aZK6deum9u3b64knntDjjz/Osf278h5rlE5pxj8hIUHXXnut2rRpo/vvv18vvPCC5s2bp5ycHE/vBlAi/fv31y233KI2bdooLi5Oq1atUkZGht59911PlwYP8vN0ARVl/PjxGjVq1AX7NGzY0PX/ERERioiIUNOmTdWiRQtFR0dry5YtiomJUVRUVKFZTc4tR0VFuf5bVJ9z6yuz0o51amqqevfura5du+q111676PY7d+6s9evXu5av5LFWOY83x/aFlXasS6tz586aPn26cnJy5HA4ih3r0NBQBQYGlvl1LgflOdZRUVGFZgAr6XF9JYx1Uf7I+Hfu3Fn5+fk6dOiQmjVrVqL3FVxcRESEfH19r9j334oUFhampk2bav/+/erbt69yc3OVkZHhdjaJcf/jzo1fWlqaatWq5WpPS0tTu3btXH2OHTvm9rz8/HydPHnyko//FROSatSooRo1apTpuU6nU5JcfxWLiYnRk08+qby8PNd9SuvXr1ezZs1UrVo1V5+kpCQ98sgjru2sX79eMTEx5bA33q00Y/3LL7+od+/e6tChgxITE+Xjc/GTm8nJyW6/TFfyWKucx5tj+8L+yPtISSQnJ6tatWpyOBzS72N9/vTqjHXpxcTE6JlnntGxY8dcl22sX79eoaGhatmypavPlTrWRfkj45+cnCwfHx/XWJfkfQUXZ7fb1aFDByUlJWnIkCHS759PkpKS9OCDD3q6vErlzJkzOnDggO666y516NBB/v7+SkpKUnx8vCRp7969SklJuWLfH8pLgwYNFBUVpaSkJFcoyszM1NatW/WXv/xF+v39IyMjQ9u3b1eHDh0kSZ9++qmcTqc6d+58aQu8pNNCXIa2bNli5s2bZ3bs2GEOHTpkkpKSTNeuXU2jRo1Mdna2Mb/PvBEZGWnuuusu8/3335ulS5eaoKCgQtMk+/n5meeff97s2bPHTJkyhWmSz3P48GHTuHFjc91115nDhw+7Tb15zuLFi83bb79t9uzZY/bs2WOeeeYZ4+PjYxYtWuTqw1iXTEnGm2O7/Pz0009mx44dZtq0aSYkJMTs2LHD7Nixw5w+fdoYY8wHH3xgXn/9dfPdd9+Zffv2mQULFpigoCAzefJk1zbOTUv92GOPmT179pj58+czLXURLjbW56YAv/76601ycrJZs2aNqVGjRpFTgDPWpfPll1+auXPnmuTkZHPgwAHz1ltvmRo1apgRI0a4+pTkfQUls3TpUuNwOMzixYvN7t27zb333mvCwsLcZm5E6Y0fP9589tln5uDBg2bTpk0mNjbWREREmGPHjhnz+xTgdevWNZ9++qnZtm1boa+GQfFOnz7tek+WZObMmWN27NhhfvrpJ2N+nwI8LCzMrFy50uzcudMMHjy4yCnA27dvb7Zu3Wq++OIL06RJE6YA94SdO3ea3r17m+rVqxuHw2Hq169v7r//fnP48GG3ft9++63p3r27cTgc5qqrrjIzZ84stK13333XNG3a1NjtdtOqVSvz8ccfV+CeeL/ExEQjqcjHOYsXLzYtWrQwQUFBJjQ01HTq1MltGs5zGOuLK8l4G47tcjNy5Mgix3rDhg3G/D6Fabt27UxISIgJDg42bdu2Na+88oopKChw286GDRtMu3btjN1uNw0bNjSJiYke2iPvdbGxNsaYQ4cOmf79+5vAwEATERFhxo8fb/Ly8ty2w1iX3vbt203nzp1N1apVTUBAgGnRooV59tlnXX9UPKck7ysomXnz5pm6desau91uOnXqZLZs2eLpki57w4YNM7Vq1TJ2u91cddVVZtiwYWb//v2u9b/99pt54IEHTLVq1UxQUJC56aab3P7AiOJt2LChyPfnkSNHGvP7NOCTJk0ykZGRxuFwmOuuu87s3bvXbRsnTpwwt99+uwkJCTGhoaFm9OjRrj+CXUo2w2wEAAAAAOByxcxuBwAAAAAlQUgCAAAAAAtCEgAAAABYEJIAAAAAwIKQBAAAAAAWhCQAAAAAsCAkAQAAAIAFIQkAAAAALAhJAAAAAGBBSAIAeL3jx4/rL3/5i+rWrSuHw6GoqCjFxcVp06ZNni4NAFAJ+Xm6AAAALiY+Pl65ublasmSJGjZsqLS0NCUlJenEiROX5PVyc3Nlt9svybYBAN6PM0kAAK+WkZGhzz//XM8995x69+6tevXqqVOnTpo4caIGDRrk6nPfffcpMjJSAQEBat26tT766CPXNpYvX65WrVrJ4XCofv36euGFF9xeo379+po+fbpGjBih0NBQ3XvvvZKkL774Qj169FBgYKCio6M1btw4ZWVlVfAIAAAqGiEJAODVQkJCFBISohUrVignJ6fQeqfTqf79+2vTpk166623tHv3bs2cOVO+vr6SpO3bt+vWW2/Vbbfdpu+++05Tp07VpEmTtHjxYrftPP/882rbtq127NihSZMm6cCBA+rXr5/i4+O1c+dO/fvf/9YXX3yhBx98sML2HQDgGTZjjPF0EQAAXMjy5ct1zz336LffftM111yjXr166bbbblObNm20bt069e/fX3v27FHTpk0LPffOO+/U8ePHtW7dOlfb448/ro8//li7du2Sfj+T1L59e73//vuuPnfffbd8fX316quvutq++OIL9erVS1lZWQoICLjk+w0A8AzOJAEAvF58fLxSU1P1wQcfqF+/fvrss890zTXXaPHixUpOTladOnWKDEiStGfPHnXr1s2trVu3btq3b58KCgpcbR07dnTr8+2332rx4sWuM1khISGKi4uT0+nUwYMHL9GeAgC8ARM3AAAuCwEBAerbt6/69u2rSZMm6e6779aUKVM0YcKEctl+cHCw2/KZM2d03333ady4cYX61q1bt1xeEwDgnQhJAIDLUsuWLbVixQq1adNGhw8f1g8//FDk2aQWLVoUmip806ZNatq0qeu+paJcc8012r17txo3bnxJ6gcAeC8utwMAeLUTJ06oT58+euutt7Rz504dPHhQy5Yt06xZszR48GD16tVLPXv2VHx8vNavX6+DBw9q9erVWrNmjSRp/PjxSkpK0vTp0/XDDz9oyZIlevnlly96BuqJJ57Ql19+qQcffFDJycnat2+fVq5cycQNAHAF4EwSAMCrhYSEqHPnzpo7d64OHDigvLw8RUdH65577tFf//pX6feJHSZMmKDbb79dWVlZaty4sWbOnCn9fkbo3Xff1eTJkzV9+nTVqlVLTz31lEaNGnXB123Tpo02btyoJ598Uj169JAxRo0aNdKwYcMqZL8BAJ7D7HYAAAAAYMHldgAAAABgQUgCAAAAAAtCEgAAAABYEJIAAAAAwIKQBAAAAAAWhCQAAAAAsCAkAQAAAIAFIQkAAAAALAhJAAAAAGBBSAIAAAAAC0ISAAAAAFj8P4ROEiiX5Qg/AAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "# @title Check specific bot records\n", "\n", @@ -1234,7 +9340,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 54, "metadata": { "cellView": "form", "colab": { @@ -1243,7 +9349,491 @@ "id": "I7W8JXutv2ks", "outputId": "5e7053d3-2124-42b7-bd53-48a40a53caf2" }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
W_aveW_countlower_boundupper_boundp_value
metac-o1-preview12.2276.67.117.30.000004
metac-o18.4283.24.012.70.000179
pgodzinai8.7248.01.116.30.025267
GreeneiBot29.2204.81.117.30.026930
manticAI7.7245.20.514.90.035671
acm_bot5.4263.5-0.211.00.058135
metac-Gemini-Exp-12065.3269.6-0.310.80.062806
SynapseSeer6.0125.9-0.512.50.068737
metac-claude-3-5-sonnet-latest3.6278.2-0.98.20.116899
twsummerbot4.9181.9-1.811.60.152393
cookics_bot_TEST5.8135.2-1.813.40.132509
CumulativeBot8.094.2-3.018.90.153662
metac-deepseek-r10.8225.8-4.25.80.763142
MWG3.684.8-4.311.50.365354
metac-perplexity2.8264.3-4.810.30.470416
metac-grok-2-12120.1281.2-5.76.00.961620
metac-exa1.7275.2-5.89.20.654608
mmBot-0.5279.9-7.56.50.887163
InstitutPelFutur-0.1264.9-8.18.00.988352
metac-Llama-3.1-3.7280.5-8.30.90.117806
metac-claude-3-5-sonnet-20240620-3.3282.2-8.52.00.224671
VeritasAI-4.5251.9-9.40.40.072948
jkraybill_bot1.4162.4-9.712.40.808839
CatrachoCaster-2.761.9-10.65.20.493061
metac-gpt-4o-5.2281.2-10.60.10.054453
NextWorldLab-4.6256.3-10.91.80.156859
wunderplumb-5.4148.4-13.52.60.184061
4Shadower-3.7101.5-13.96.40.463979
minefrac1-7.3136.2-14.4-0.20.043444
andrewsiah0.125.1-14.614.80.988409
krm-bot-4.494.5-14.75.90.399741
ProfessorSP-4.0110.0-14.86.80.464316
laylaps-7.2257.0-15.40.90.082564
pianobot6.814.8-16.229.80.535822
cobyj-bot-0.431.5-17.817.10.964365
KevinTestBot-2.781.1-17.912.60.730388
jonahsingerbot-6.560.1-19.26.20.309592
bean_bot-4.163.1-19.611.40.600896
Bot_Pepa-12.3124.4-20.6-4.10.003751
annabot-6.354.5-23.711.10.470037
Grizeu_Bot-16.5140.9-25.8-7.10.000639
ajf-bot-16.0193.9-28.2-3.70.011119
swingswish-16.757.1-36.93.50.103364
RPM_bot-44.015.8-101.413.40.126191
\n", + "
" + ], + "text/plain": [ + " W_ave W_count lower_bound upper_bound \\\n", + "metac-o1-preview 12.2 276.6 7.1 17.3 \n", + "metac-o1 8.4 283.2 4.0 12.7 \n", + "pgodzinai 8.7 248.0 1.1 16.3 \n", + "GreeneiBot2 9.2 204.8 1.1 17.3 \n", + "manticAI 7.7 245.2 0.5 14.9 \n", + "acm_bot 5.4 263.5 -0.2 11.0 \n", + "metac-Gemini-Exp-1206 5.3 269.6 -0.3 10.8 \n", + "SynapseSeer 6.0 125.9 -0.5 12.5 \n", + "metac-claude-3-5-sonnet-latest 3.6 278.2 -0.9 8.2 \n", + "twsummerbot 4.9 181.9 -1.8 11.6 \n", + "cookics_bot_TEST 5.8 135.2 -1.8 13.4 \n", + "CumulativeBot 8.0 94.2 -3.0 18.9 \n", + "metac-deepseek-r1 0.8 225.8 -4.2 5.8 \n", + "MWG 3.6 84.8 -4.3 11.5 \n", + "metac-perplexity 2.8 264.3 -4.8 10.3 \n", + "metac-grok-2-1212 0.1 281.2 -5.7 6.0 \n", + "metac-exa 1.7 275.2 -5.8 9.2 \n", + "mmBot -0.5 279.9 -7.5 6.5 \n", + "InstitutPelFutur -0.1 264.9 -8.1 8.0 \n", + "metac-Llama-3.1 -3.7 280.5 -8.3 0.9 \n", + "metac-claude-3-5-sonnet-20240620 -3.3 282.2 -8.5 2.0 \n", + "VeritasAI -4.5 251.9 -9.4 0.4 \n", + "jkraybill_bot 1.4 162.4 -9.7 12.4 \n", + "CatrachoCaster -2.7 61.9 -10.6 5.2 \n", + "metac-gpt-4o -5.2 281.2 -10.6 0.1 \n", + "NextWorldLab -4.6 256.3 -10.9 1.8 \n", + "wunderplumb -5.4 148.4 -13.5 2.6 \n", + "4Shadower -3.7 101.5 -13.9 6.4 \n", + "minefrac1 -7.3 136.2 -14.4 -0.2 \n", + "andrewsiah 0.1 25.1 -14.6 14.8 \n", + "krm-bot -4.4 94.5 -14.7 5.9 \n", + "ProfessorSP -4.0 110.0 -14.8 6.8 \n", + "laylaps -7.2 257.0 -15.4 0.9 \n", + "pianobot 6.8 14.8 -16.2 29.8 \n", + "cobyj-bot -0.4 31.5 -17.8 17.1 \n", + "KevinTestBot -2.7 81.1 -17.9 12.6 \n", + "jonahsingerbot -6.5 60.1 -19.2 6.2 \n", + "bean_bot -4.1 63.1 -19.6 11.4 \n", + "Bot_Pepa -12.3 124.4 -20.6 -4.1 \n", + "annabot -6.3 54.5 -23.7 11.1 \n", + "Grizeu_Bot -16.5 140.9 -25.8 -7.1 \n", + "ajf-bot -16.0 193.9 -28.2 -3.7 \n", + "swingswish -16.7 57.1 -36.9 3.5 \n", + "RPM_bot -44.0 15.8 -101.4 13.4 \n", + "\n", + " p_value \n", + "metac-o1-preview 0.000004 \n", + "metac-o1 0.000179 \n", + "pgodzinai 0.025267 \n", + "GreeneiBot2 0.026930 \n", + "manticAI 0.035671 \n", + "acm_bot 0.058135 \n", + "metac-Gemini-Exp-1206 0.062806 \n", + "SynapseSeer 0.068737 \n", + "metac-claude-3-5-sonnet-latest 0.116899 \n", + "twsummerbot 0.152393 \n", + "cookics_bot_TEST 0.132509 \n", + "CumulativeBot 0.153662 \n", + "metac-deepseek-r1 0.763142 \n", + "MWG 0.365354 \n", + "metac-perplexity 0.470416 \n", + "metac-grok-2-1212 0.961620 \n", + "metac-exa 0.654608 \n", + "mmBot 0.887163 \n", + "InstitutPelFutur 0.988352 \n", + "metac-Llama-3.1 0.117806 \n", + "metac-claude-3-5-sonnet-20240620 0.224671 \n", + "VeritasAI 0.072948 \n", + "jkraybill_bot 0.808839 \n", + "CatrachoCaster 0.493061 \n", + "metac-gpt-4o 0.054453 \n", + "NextWorldLab 0.156859 \n", + "wunderplumb 0.184061 \n", + "4Shadower 0.463979 \n", + "minefrac1 0.043444 \n", + "andrewsiah 0.988409 \n", + "krm-bot 0.399741 \n", + "ProfessorSP 0.464316 \n", + "laylaps 0.082564 \n", + "pianobot 0.535822 \n", + "cobyj-bot 0.964365 \n", + "KevinTestBot 0.730388 \n", + "jonahsingerbot 0.309592 \n", + "bean_bot 0.600896 \n", + "Bot_Pepa 0.003751 \n", + "annabot 0.470037 \n", + "Grizeu_Bot 0.000639 \n", + "ajf-bot 0.011119 \n", + "swingswish 0.103364 \n", + "RPM_bot 0.126191 " + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# @title Weighted Bot Only Peer, T test\n", "\n", @@ -1260,7 +9850,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 55, "metadata": {}, "outputs": [], "source": [ @@ -1269,9 +9859,27 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 56, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Top 10 bots:\n", + "1. metac-o1-preview\n", + "2. metac-o1\n", + "3. pgodzinai\n", + "4. GreeneiBot2\n", + "5. manticAI\n", + "6. acm_bot\n", + "7. metac-Gemini-Exp-1206\n", + "8. SynapseSeer\n", + "9. metac-claude-3-5-sonnet-latest\n", + "10. twsummerbot\n" + ] + } + ], "source": [ "# Sort the DataFrame by the lower_bound column in descending order\n", "sorted_df = df_W_bot_only_peer_leaderboard.sort_values(by='lower_bound', ascending=False)\n", @@ -1290,18 +9898,525 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 57, "metadata": { "cellView": "form", "id": "x6e1kZl12qFZ" }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " >>> Collected 1 forecasts: [0.15]\n", + " >>> Collected 1 forecasts: [0.35]\n", + " >>> Collected 1 forecasts: [0.95]\n", + " >>> Collected 1 forecasts: [0.75]\n", + " >>> Collected 1 forecasts: [0.1]\n", + " >>> Collected 1 forecasts: [0.7]\n", + " >>> Collected 1 forecasts: [0.7]\n", + " >>> Collected 1 forecasts: [0.05]\n", + " >>> Collected 1 forecasts: [0.15]\n", + " >>> Collected 1 forecasts: [0.2]\n", + " >>> Collected 1 forecasts: [0.2]\n", + " >>> Collected 1 forecasts: [0.7]\n", + " >>> Collected 1 forecasts: [0.25]\n", + " >>> Collected 1 forecasts: [0.1]\n", + " >>> Collected 1 forecasts: [0.05]\n", + " >>> Collected 1 forecasts: [0.15]\n", + " >>> Collected 1 forecasts: [0.95]\n", + " >>> Collected 1 forecasts: [0.1]\n", + " >>> Collected 1 forecasts: [0.05]\n", + " >>> Collected 1 forecasts: [0.1]\n", + " >>> Collected 1 forecasts: [0.1]\n", + " >>> Collected 1 forecasts: [0.25]\n", + " >>> Collected 1 forecasts: [0.15]\n", + " >>> Collected 1 forecasts: [0.98]\n", + " >>> Collected 1 forecasts: [0.35]\n", + " >>> Collected 1 forecasts: [0.35]\n", + " >>> Collected 1 forecasts: [0.85]\n", + " >>> Collected 1 forecasts: [0.01]\n", + " >>> Collected 1 forecasts: [0.85]\n", + " >>> Collected 1 forecasts: [0.99]\n", + " >>> Collected 1 forecasts: [0.2]\n", + " >>> Collected 1 forecasts: [0.95]\n", + " >>> Collected 1 forecasts: [0.9]\n", + " >>> Collected 1 forecasts: [0.9]\n", + " >>> Collected 1 forecasts: [0.35]\n", + " >>> Collected 1 forecasts: [0.9]\n", + " >>> Collected 1 forecasts: [0.05]\n", + " >>> Collected 1 forecasts: [0.3]\n", + " >>> Collected 1 forecasts: [0.75]\n", + " >>> Collected 1 forecasts: [0.2]\n", + " >>> Collected 1 forecasts: [0.1]\n", + " >>> Collected 1 forecasts: [0.05]\n", + " >>> Collected 1 forecasts: [0.1]\n", + " >>> Collected 1 forecasts: [0.15]\n", + " >>> Collected 1 forecasts: [0.8]\n", + " >>> Collected 1 forecasts: [0.9]\n", + " >>> Collected 1 forecasts: [0.9]\n", + " >>> Collected 1 forecasts: [0.9]\n", + " >>> Collected 1 forecasts: [0.85]\n", + " >>> Collected 1 forecasts: [0.1]\n", + " >>> Collected 2 forecasts: [0.15, 0.1]\n", + " >>> Collected 2 forecasts: [0.35, 0.6]\n", + " >>> Collected 2 forecasts: [0.95, 0.9]\n", + " >>> Collected 2 forecasts: [0.75, 0.75]\n", + " >>> Collected 2 forecasts: [0.1, 0.05]\n", + " >>> Collected 2 forecasts: [0.7, 0.6]\n", + " >>> Collected 2 forecasts: [0.7, 0.35]\n", + " >>> Collected 2 forecasts: [0.05, 0.05]\n", + " >>> Collected 2 forecasts: [0.15, 0.05]\n", + " >>> Collected 2 forecasts: [0.2, 0.25]\n", + " >>> Collected 2 forecasts: [0.2, 0.15]\n", + " >>> Collected 2 forecasts: [0.7, 0.8]\n", + " >>> Collected 2 forecasts: [0.25, 0.35]\n", + " >>> Collected 2 forecasts: [0.1, 0.15]\n", + " >>> Collected 2 forecasts: [0.05, 0.1]\n", + " >>> Collected 2 forecasts: [0.15, 0.25]\n", + " >>> Collected 2 forecasts: [0.95, 0.95]\n", + " >>> Collected 2 forecasts: [0.1, 0.3]\n", + " >>> Collected 2 forecasts: [0.05, 0.05]\n", + " >>> Collected 2 forecasts: [0.1, 0.02]\n", + " >>> Collected 2 forecasts: [0.1, 0.3]\n", + " >>> Collected 2 forecasts: [0.25, 0.3]\n", + " >>> Collected 2 forecasts: [0.15, 0.15]\n", + " >>> Collected 2 forecasts: [0.98, 0.97]\n", + " >>> Collected 2 forecasts: [0.35, 0.4]\n", + " >>> Collected 2 forecasts: [0.35, 0.25]\n", + " >>> Collected 2 forecasts: [0.85, 0.7]\n", + " >>> Collected 2 forecasts: [0.01, 0.02]\n", + " >>> Collected 2 forecasts: [0.85, 0.75]\n", + " >>> Collected 2 forecasts: [0.99, 0.85]\n", + " >>> Collected 2 forecasts: [0.2, 0.99]\n", + " >>> Collected 2 forecasts: [0.95, 0.25]\n", + " >>> Collected 2 forecasts: [0.9, 0.9]\n", + " >>> Collected 2 forecasts: [0.9, 0.65]\n", + " >>> Collected 2 forecasts: [0.35, 0.6]\n", + " >>> Collected 2 forecasts: [0.9, 0.85]\n", + " >>> Collected 2 forecasts: [0.05, 0.1]\n", + " >>> Collected 2 forecasts: [0.3, 0.3]\n", + " >>> Collected 2 forecasts: [0.75, 0.8]\n", + " >>> Collected 2 forecasts: [0.2, 0.15]\n", + " >>> Collected 2 forecasts: [0.1, 0.3]\n", + " >>> Collected 2 forecasts: [0.05, 0.05]\n", + " >>> Collected 2 forecasts: [0.1, 0.15]\n", + " >>> Collected 2 forecasts: [0.15, 0.05]\n", + " >>> Collected 2 forecasts: [0.8, 0.9]\n", + " >>> Collected 2 forecasts: [0.9, 0.9]\n", + " >>> Collected 2 forecasts: [0.9, 0.2]\n", + " >>> Collected 2 forecasts: [0.9, 0.85]\n", + " >>> Collected 2 forecasts: [0.85, 0.75]\n", + " >>> Collected 2 forecasts: [0.1, 0.07]\n", + " >>> Collected 3 forecasts: [0.15, 0.1, 0.07]\n", + " >>> Collected 3 forecasts: [0.35, 0.6, 0.62]\n", + " >>> Collected 3 forecasts: [0.95, 0.9, 0.82]\n", + " >>> Collected 3 forecasts: [0.75, 0.75, 0.85]\n", + " >>> Collected 3 forecasts: [0.1, 0.05, nan]\n", + " >>> Collected 3 forecasts: [0.7, 0.6, nan]\n", + " >>> Collected 3 forecasts: [0.7, 0.35, nan]\n", + " >>> Collected 3 forecasts: [0.05, 0.05, nan]\n", + " >>> Collected 3 forecasts: [0.15, 0.05, nan]\n", + " >>> Collected 3 forecasts: [0.2, 0.25, 0.25]\n", + " >>> Collected 3 forecasts: [0.2, 0.15, nan]\n", + " >>> Collected 3 forecasts: [0.7, 0.8, nan]\n", + " >>> Collected 3 forecasts: [0.25, 0.35, 0.108]\n", + " >>> Collected 3 forecasts: [0.1, 0.15, 0.16]\n", + " >>> Collected 3 forecasts: [0.05, 0.1, 0.95]\n", + " >>> Collected 3 forecasts: [0.15, 0.25, 0.15]\n", + " >>> Collected 3 forecasts: [0.95, 0.95, 0.05]\n", + " >>> Collected 3 forecasts: [0.1, 0.3, 0.125]\n", + " >>> Collected 3 forecasts: [0.05, 0.05, 0.034]\n", + " >>> Collected 3 forecasts: [0.1, 0.02, 0.03]\n", + " >>> Collected 3 forecasts: [0.1, 0.3, 0.35]\n", + " >>> Collected 3 forecasts: [0.25, 0.3, 0.35]\n", + " >>> Collected 3 forecasts: [0.15, 0.15, 0.115]\n", + " >>> Collected 3 forecasts: [0.98, 0.97, 0.97]\n", + " >>> Collected 3 forecasts: [0.35, 0.4, 0.285]\n", + " >>> Collected 3 forecasts: [0.35, 0.25, 0.3833333333333333]\n", + " >>> Collected 3 forecasts: [0.85, 0.7, 0.17]\n", + " >>> Collected 3 forecasts: [0.01, 0.02, 0.12]\n", + " >>> Collected 3 forecasts: [0.85, 0.75, 0.875]\n", + " >>> Collected 3 forecasts: [0.99, 0.85, 0.99]\n", + " >>> Collected 3 forecasts: [0.2, 0.99, 0.9233333333333332]\n", + " >>> Collected 3 forecasts: [0.95, 0.25, 0.14]\n", + " >>> Collected 3 forecasts: [0.9, 0.9, 0.8340000000000001]\n", + " >>> Collected 3 forecasts: [0.9, 0.65, 0.7666666666666667]\n", + " >>> Collected 3 forecasts: [0.35, 0.6, 0.875]\n", + " >>> Collected 3 forecasts: [0.9, 0.85, 0.84]\n", + " >>> Collected 3 forecasts: [0.05, 0.1, 0.026]\n", + " >>> Collected 3 forecasts: [0.3, 0.3, 0.16]\n", + " >>> Collected 3 forecasts: [0.75, 0.8, 0.67]\n", + " >>> Collected 3 forecasts: [0.2, 0.15, nan]\n", + " >>> Collected 3 forecasts: [0.1, 0.3, 0.3925]\n", + " >>> Collected 3 forecasts: [0.05, 0.05, 0.086]\n", + " >>> Collected 3 forecasts: [0.1, 0.15, 0.285]\n", + " >>> Collected 3 forecasts: [0.15, 0.05, 0.02]\n", + " >>> Collected 3 forecasts: [0.8, 0.9, nan]\n", + " >>> Collected 3 forecasts: [0.9, 0.9, 0.95]\n", + " >>> Collected 3 forecasts: [0.9, 0.2, nan]\n", + " >>> Collected 3 forecasts: [0.9, 0.85, nan]\n", + " >>> Collected 3 forecasts: [0.85, 0.75, 0.85]\n", + " >>> Collected 3 forecasts: [0.1, 0.07, 0.05]\n", + " >>> Collected 4 forecasts: [0.15, 0.1, 0.07, 0.0559999999999999]\n", + " >>> Collected 4 forecasts: [0.35, 0.6, 0.62, 0.7]\n", + " >>> Collected 4 forecasts: [0.95, 0.9, 0.82, 0.794]\n", + " >>> Collected 4 forecasts: [0.75, 0.75, 0.85, 0.884]\n", + " >>> Collected 4 forecasts: [0.1, 0.05, nan, nan]\n", + " >>> Collected 4 forecasts: [0.7, 0.6, nan, nan]\n", + " >>> Collected 4 forecasts: [0.7, 0.35, nan, nan]\n", + " >>> Collected 4 forecasts: [0.05, 0.05, nan, nan]\n", + " >>> Collected 4 forecasts: [0.15, 0.05, nan, nan]\n", + " >>> Collected 4 forecasts: [0.2, 0.25, 0.25, nan]\n", + " >>> Collected 4 forecasts: [0.2, 0.15, nan, 0.242]\n", + " >>> Collected 4 forecasts: [0.7, 0.8, nan, 0.936]\n", + " >>> Collected 4 forecasts: [0.25, 0.35, 0.108, 0.264]\n", + " >>> Collected 4 forecasts: [0.1, 0.15, 0.16, 0.652]\n", + " >>> Collected 4 forecasts: [0.05, 0.1, 0.95, 0.052]\n", + " >>> Collected 4 forecasts: [0.15, 0.25, 0.15, 0.12]\n", + " >>> Collected 4 forecasts: [0.95, 0.95, 0.05, 0.918]\n", + " >>> Collected 4 forecasts: [0.1, 0.3, 0.125, 0.212]\n", + " >>> Collected 4 forecasts: [0.05, 0.05, 0.034, nan]\n", + " >>> Collected 4 forecasts: [0.1, 0.02, 0.03, 0.072]\n", + " >>> Collected 4 forecasts: [0.1, 0.3, 0.35, 0.226]\n", + " >>> Collected 4 forecasts: [0.25, 0.3, 0.35, 0.5]\n", + " >>> Collected 4 forecasts: [0.15, 0.15, 0.115, 0.102]\n", + " >>> Collected 4 forecasts: [0.98, 0.97, 0.97, 0.932]\n", + " >>> Collected 4 forecasts: [0.35, 0.4, 0.285, 0.34]\n", + " >>> Collected 4 forecasts: [0.35, 0.25, 0.3833333333333333, 0.42]\n", + " >>> Collected 4 forecasts: [0.85, 0.7, 0.17, 0.236]\n", + " >>> Collected 4 forecasts: [0.01, 0.02, 0.12, 0.29]\n", + " >>> Collected 4 forecasts: [0.85, 0.75, 0.875, 0.92]\n", + " >>> Collected 4 forecasts: [0.99, 0.85, 0.99, 0.99]\n", + " >>> Collected 4 forecasts: [0.2, 0.99, 0.9233333333333332, 0.954]\n", + " >>> Collected 4 forecasts: [0.95, 0.25, 0.14, 0.2]\n", + " >>> Collected 4 forecasts: [0.9, 0.9, 0.8340000000000001, nan]\n", + " >>> Collected 4 forecasts: [0.9, 0.65, 0.7666666666666667, nan]\n", + " >>> Collected 4 forecasts: [0.35, 0.6, 0.875, 0.7759999999999999]\n", + " >>> Collected 4 forecasts: [0.9, 0.85, 0.84, 0.86]\n", + " >>> Collected 4 forecasts: [0.05, 0.1, 0.026, 0.0559999999999999]\n", + " >>> Collected 4 forecasts: [0.3, 0.3, 0.16, nan]\n", + " >>> Collected 4 forecasts: [0.75, 0.8, 0.67, nan]\n", + " >>> Collected 4 forecasts: [0.2, 0.15, nan, nan]\n", + " >>> Collected 4 forecasts: [0.1, 0.3, 0.3925, nan]\n", + " >>> Collected 4 forecasts: [0.05, 0.05, 0.086, nan]\n", + " >>> Collected 4 forecasts: [0.1, 0.15, 0.285, nan]\n", + " >>> Collected 4 forecasts: [0.15, 0.05, 0.02, nan]\n", + " >>> Collected 4 forecasts: [0.8, 0.9, nan, nan]\n", + " >>> Collected 4 forecasts: [0.9, 0.9, 0.95, 0.905]\n", + " >>> Collected 4 forecasts: [0.9, 0.2, nan, nan]\n", + " >>> Collected 4 forecasts: [0.9, 0.85, nan, nan]\n", + " >>> Collected 4 forecasts: [0.85, 0.75, 0.85, 0.71]\n", + " >>> Collected 4 forecasts: [0.1, 0.07, 0.05, 0.02]\n", + " >>> Collected 5 forecasts: [0.15, 0.1, 0.07, 0.0559999999999999, nan]\n", + " >>> Collected 5 forecasts: [0.35, 0.6, 0.62, 0.7, 0.324676]\n", + " >>> Collected 5 forecasts: [0.95, 0.9, 0.82, 0.794, nan]\n", + " >>> Collected 5 forecasts: [0.75, 0.75, 0.85, 0.884, 0.76]\n", + " >>> Collected 5 forecasts: [0.1, 0.05, nan, nan, nan]\n", + " >>> Collected 5 forecasts: [0.7, 0.6, nan, nan, nan]\n", + " >>> Collected 5 forecasts: [0.7, 0.35, nan, nan, nan]\n", + " >>> Collected 5 forecasts: [0.05, 0.05, nan, nan, nan]\n", + " >>> Collected 5 forecasts: [0.15, 0.05, nan, nan, nan]\n", + " >>> Collected 5 forecasts: [0.2, 0.25, 0.25, nan, nan]\n", + " >>> Collected 5 forecasts: [0.2, 0.15, nan, 0.242, nan]\n", + " >>> Collected 5 forecasts: [0.7, 0.8, nan, 0.936, nan]\n", + " >>> Collected 5 forecasts: [0.25, 0.35, 0.108, 0.264, nan]\n", + " >>> Collected 5 forecasts: [0.1, 0.15, 0.16, 0.652, nan]\n", + " >>> Collected 5 forecasts: [0.05, 0.1, 0.95, 0.052, 0.0699999999999999]\n", + " >>> Collected 5 forecasts: [0.15, 0.25, 0.15, 0.12, 0.05]\n", + " >>> Collected 5 forecasts: [0.95, 0.95, 0.05, 0.918, 0.8925]\n", + " >>> Collected 5 forecasts: [0.1, 0.3, 0.125, 0.212, 0.085]\n", + " >>> Collected 5 forecasts: [0.05, 0.05, 0.034, nan, 0.0925]\n", + " >>> Collected 5 forecasts: [0.1, 0.02, 0.03, 0.072, 0.1]\n", + " >>> Collected 5 forecasts: [0.1, 0.3, 0.35, 0.226, 0.1149999999999999]\n", + " >>> Collected 5 forecasts: [0.25, 0.3, 0.35, 0.5, 0.1375]\n", + " >>> Collected 5 forecasts: [0.15, 0.15, 0.115, 0.102, 0.1425]\n", + " >>> Collected 5 forecasts: [0.98, 0.97, 0.97, 0.932, 0.9475]\n", + " >>> Collected 5 forecasts: [0.35, 0.4, 0.285, 0.34, 0.2]\n", + " >>> Collected 5 forecasts: [0.35, 0.25, 0.3833333333333333, 0.42, 0.4]\n", + " >>> Collected 5 forecasts: [0.85, 0.7, 0.17, 0.236, nan]\n", + " >>> Collected 5 forecasts: [0.01, 0.02, 0.12, 0.29, 0.06]\n", + " >>> Collected 5 forecasts: [0.85, 0.75, 0.875, 0.92, 0.6599999999999999]\n", + " >>> Collected 5 forecasts: [0.99, 0.85, 0.99, 0.99, 0.95]\n", + " >>> Collected 5 forecasts: [0.2, 0.99, 0.9233333333333332, 0.954, 0.9280000000000002]\n", + " >>> Collected 5 forecasts: [0.95, 0.25, 0.14, 0.2, 0.336]\n", + " >>> Collected 5 forecasts: [0.9, 0.9, 0.8340000000000001, nan, nan]\n", + " >>> Collected 5 forecasts: [0.9, 0.65, 0.7666666666666667, nan, nan]\n", + " >>> Collected 5 forecasts: [0.35, 0.6, 0.875, 0.7759999999999999, 0.2299999999999999]\n", + " >>> Collected 5 forecasts: [0.9, 0.85, 0.84, 0.86, 0.8019999999999999]\n", + " >>> Collected 5 forecasts: [0.05, 0.1, 0.026, 0.0559999999999999, 0.05]\n", + " >>> Collected 5 forecasts: [0.3, 0.3, 0.16, nan, 0.05]\n", + " >>> Collected 5 forecasts: [0.75, 0.8, 0.67, nan, 0.76]\n", + " >>> Collected 5 forecasts: [0.2, 0.15, nan, nan, 0.2]\n", + " >>> Collected 5 forecasts: [0.1, 0.3, 0.3925, nan, 0.38]\n", + " >>> Collected 5 forecasts: [0.05, 0.05, 0.086, nan, 0.12]\n", + " >>> Collected 5 forecasts: [0.1, 0.15, 0.285, nan, 0.096]\n", + " >>> Collected 5 forecasts: [0.15, 0.05, 0.02, nan, 0.098]\n", + " >>> Collected 5 forecasts: [0.8, 0.9, nan, nan, 0.5599999999999999]\n", + " >>> Collected 5 forecasts: [0.9, 0.9, 0.95, 0.905, 0.78]\n", + " >>> Collected 5 forecasts: [0.9, 0.2, nan, nan, 0.05]\n", + " >>> Collected 5 forecasts: [0.9, 0.85, nan, nan, 0.744]\n", + " >>> Collected 5 forecasts: [0.85, 0.75, 0.85, 0.71, 0.55]\n", + " >>> Collected 5 forecasts: [0.1, 0.07, 0.05, 0.02, 0.052]\n", + " >>> Collected 6 forecasts: [0.15, 0.1, 0.07, 0.0559999999999999, nan, 0.175]\n", + " >>> Collected 6 forecasts: [0.35, 0.6, 0.62, 0.7, 0.324676, 0.5]\n", + " >>> Collected 6 forecasts: [0.95, 0.9, 0.82, 0.794, nan, 0.75]\n", + " >>> Collected 6 forecasts: [0.75, 0.75, 0.85, 0.884, 0.76, 0.85]\n", + " >>> Collected 6 forecasts: [0.1, 0.05, nan, nan, nan, 0.15]\n", + " >>> Collected 6 forecasts: [0.7, 0.6, nan, nan, nan, 0.7]\n", + " >>> Collected 6 forecasts: [0.7, 0.35, nan, nan, nan, 0.65]\n", + " >>> Collected 6 forecasts: [0.05, 0.05, nan, nan, nan, 0.15]\n", + " >>> Collected 6 forecasts: [0.15, 0.05, nan, nan, nan, 0.15]\n", + " >>> Collected 6 forecasts: [0.2, 0.25, 0.25, nan, nan, 0.225]\n", + " >>> Collected 6 forecasts: [0.2, 0.15, nan, 0.242, nan, 0.275]\n", + " >>> Collected 6 forecasts: [0.7, 0.8, nan, 0.936, nan, 0.85]\n", + " >>> Collected 6 forecasts: [0.25, 0.35, 0.108, 0.264, nan, 0.2]\n", + " >>> Collected 6 forecasts: [0.1, 0.15, 0.16, 0.652, nan, 0.275]\n", + " >>> Collected 6 forecasts: [0.05, 0.1, 0.95, 0.052, 0.0699999999999999, 0.125]\n", + " >>> Collected 6 forecasts: [0.15, 0.25, 0.15, 0.12, 0.05, 0.15]\n", + " >>> Collected 6 forecasts: [0.95, 0.95, 0.05, 0.918, 0.8925, 0.85]\n", + " >>> Collected 6 forecasts: [0.1, 0.3, 0.125, 0.212, 0.085, 0.725]\n", + " >>> Collected 6 forecasts: [0.05, 0.05, 0.034, nan, 0.0925, 0.125]\n", + " >>> Collected 6 forecasts: [0.1, 0.02, 0.03, 0.072, 0.1, 0.075]\n", + " >>> Collected 6 forecasts: [0.1, 0.3, 0.35, 0.226, 0.1149999999999999, 0.275]\n", + " >>> Collected 6 forecasts: [0.25, 0.3, 0.35, 0.5, 0.1375, 0.35]\n", + " >>> Collected 6 forecasts: [0.15, 0.15, 0.115, 0.102, 0.1425, 0.275]\n", + " >>> Collected 6 forecasts: [0.98, 0.97, 0.97, 0.932, 0.9475, 0.5]\n", + " >>> Collected 6 forecasts: [0.35, 0.4, 0.285, 0.34, 0.2, 0.35]\n", + " >>> Collected 6 forecasts: [0.35, 0.25, 0.3833333333333333, 0.42, 0.4, 0.35]\n", + " >>> Collected 6 forecasts: [0.85, 0.7, 0.17, 0.236, nan, 0.3]\n", + " >>> Collected 6 forecasts: [0.01, 0.02, 0.12, 0.29, 0.06, 0.05]\n", + " >>> Collected 6 forecasts: [0.85, 0.75, 0.875, 0.92, 0.6599999999999999, 0.75]\n", + " >>> Collected 6 forecasts: [0.99, 0.85, 0.99, 0.99, 0.95, 0.5]\n", + " >>> Collected 6 forecasts: [0.2, 0.99, 0.9233333333333332, 0.954, 0.9280000000000002, 0.5]\n", + " >>> Collected 6 forecasts: [0.95, 0.25, 0.14, 0.2, 0.336, 0.325]\n", + " >>> Collected 6 forecasts: [0.9, 0.9, 0.8340000000000001, nan, nan, nan]\n", + " >>> Collected 6 forecasts: [0.9, 0.65, 0.7666666666666667, nan, nan, nan]\n", + " >>> Collected 6 forecasts: [0.35, 0.6, 0.875, 0.7759999999999999, 0.2299999999999999, 0.75]\n", + " >>> Collected 6 forecasts: [0.9, 0.85, 0.84, 0.86, 0.8019999999999999, 0.75]\n", + " >>> Collected 6 forecasts: [0.05, 0.1, 0.026, 0.0559999999999999, 0.05, 0.085]\n", + " >>> Collected 6 forecasts: [0.3, 0.3, 0.16, nan, 0.05, 0.225]\n", + " >>> Collected 6 forecasts: [0.75, 0.8, 0.67, nan, 0.76, 0.725]\n", + " >>> Collected 6 forecasts: [0.2, 0.15, nan, nan, 0.2, 0.2]\n", + " >>> Collected 6 forecasts: [0.1, 0.3, 0.3925, nan, 0.38, 0.675]\n", + " >>> Collected 6 forecasts: [0.05, 0.05, 0.086, nan, 0.12, 0.1]\n", + " >>> Collected 6 forecasts: [0.1, 0.15, 0.285, nan, 0.096, 0.15]\n", + " >>> Collected 6 forecasts: [0.15, 0.05, 0.02, nan, 0.098, 0.05]\n", + " >>> Collected 6 forecasts: [0.8, 0.9, nan, nan, 0.5599999999999999, 0.935]\n", + " >>> Collected 6 forecasts: [0.9, 0.9, 0.95, 0.905, 0.78, 0.935]\n", + " >>> Collected 6 forecasts: [0.9, 0.2, nan, nan, 0.05, 0.055]\n", + " >>> Collected 6 forecasts: [0.9, 0.85, nan, nan, 0.744, 0.8]\n", + " >>> Collected 6 forecasts: [0.85, 0.75, 0.85, 0.71, 0.55, 0.475]\n", + " >>> Collected 6 forecasts: [0.1, 0.07, 0.05, 0.02, 0.052, 0.04]\n", + " >>> Collected 7 forecasts: [0.15, 0.1, 0.07, 0.0559999999999999, nan, 0.175, 0.28]\n", + " >>> Collected 7 forecasts: [0.35, 0.6, 0.62, 0.7, 0.324676, 0.5, 0.65]\n", + " >>> Collected 7 forecasts: [0.95, 0.9, 0.82, 0.794, nan, 0.75, 0.88]\n", + " >>> Collected 7 forecasts: [0.75, 0.75, 0.85, 0.884, 0.76, 0.85, 0.8]\n", + " >>> Collected 7 forecasts: [0.1, 0.05, nan, nan, nan, 0.15, 0.15]\n", + " >>> Collected 7 forecasts: [0.7, 0.6, nan, nan, nan, 0.7, 0.75]\n", + " >>> Collected 7 forecasts: [0.7, 0.35, nan, nan, nan, 0.65, 0.78]\n", + " >>> Collected 7 forecasts: [0.05, 0.05, nan, nan, nan, 0.15, 0.1]\n", + " >>> Collected 7 forecasts: [0.15, 0.05, nan, nan, nan, 0.15, 0.15]\n", + " >>> Collected 7 forecasts: [0.2, 0.25, 0.25, nan, nan, 0.225, 0.18]\n", + " >>> Collected 7 forecasts: [0.2, 0.15, nan, 0.242, nan, 0.275, 0.2]\n", + " >>> Collected 7 forecasts: [0.7, 0.8, nan, 0.936, nan, 0.85, nan]\n", + " >>> Collected 7 forecasts: [0.25, 0.35, 0.108, 0.264, nan, 0.2, 0.35]\n", + " >>> Collected 7 forecasts: [0.1, 0.15, 0.16, 0.652, nan, 0.275, 0.15]\n", + " >>> Collected 7 forecasts: [0.05, 0.1, 0.95, 0.052, 0.0699999999999999, 0.125, 0.05]\n", + " >>> Collected 7 forecasts: [0.15, 0.25, 0.15, 0.12, 0.05, 0.15, 0.1]\n", + " >>> Collected 7 forecasts: [0.95, 0.95, 0.05, 0.918, 0.8925, 0.85, 0.9]\n", + " >>> Collected 7 forecasts: [0.1, 0.3, 0.125, 0.212, 0.085, 0.725, 0.15]\n", + " >>> Collected 7 forecasts: [0.05, 0.05, 0.034, nan, 0.0925, 0.125, nan]\n", + " >>> Collected 7 forecasts: [0.1, 0.02, 0.03, 0.072, 0.1, 0.075, 0.1]\n", + " >>> Collected 7 forecasts: [0.1, 0.3, 0.35, 0.226, 0.1149999999999999, 0.275, 0.27]\n", + " >>> Collected 7 forecasts: [0.25, 0.3, 0.35, 0.5, 0.1375, 0.35, 0.65]\n", + " >>> Collected 7 forecasts: [0.15, 0.15, 0.115, 0.102, 0.1425, 0.275, nan]\n", + " >>> Collected 7 forecasts: [0.98, 0.97, 0.97, 0.932, 0.9475, 0.5, nan]\n", + " >>> Collected 7 forecasts: [0.35, 0.4, 0.285, 0.34, 0.2, 0.35, nan]\n", + " >>> Collected 7 forecasts: [0.35, 0.25, 0.3833333333333333, 0.42, 0.4, 0.35, 0.65]\n", + " >>> Collected 7 forecasts: [0.85, 0.7, 0.17, 0.236, nan, 0.3, 0.1]\n", + " >>> Collected 7 forecasts: [0.01, 0.02, 0.12, 0.29, 0.06, 0.05, nan]\n", + " >>> Collected 7 forecasts: [0.85, 0.75, 0.875, 0.92, 0.6599999999999999, 0.75, 0.65]\n", + " >>> Collected 7 forecasts: [0.99, 0.85, 0.99, 0.99, 0.95, 0.5, 0.99]\n", + " >>> Collected 7 forecasts: [0.2, 0.99, 0.9233333333333332, 0.954, 0.9280000000000002, 0.5, 0.98]\n", + " >>> Collected 7 forecasts: [0.95, 0.25, 0.14, 0.2, 0.336, 0.325, 0.2]\n", + " >>> Collected 7 forecasts: [0.9, 0.9, 0.8340000000000001, nan, nan, nan, 0.15]\n", + " >>> Collected 7 forecasts: [0.9, 0.65, 0.7666666666666667, nan, nan, nan, 0.55]\n", + " >>> Collected 7 forecasts: [0.35, 0.6, 0.875, 0.7759999999999999, 0.2299999999999999, 0.75, 0.27]\n", + " >>> Collected 7 forecasts: [0.9, 0.85, 0.84, 0.86, 0.8019999999999999, 0.75, 0.9]\n", + " >>> Collected 7 forecasts: [0.05, 0.1, 0.026, 0.0559999999999999, 0.05, 0.085, 0.1]\n", + " >>> Collected 7 forecasts: [0.3, 0.3, 0.16, nan, 0.05, 0.225, 0.35]\n", + " >>> Collected 7 forecasts: [0.75, 0.8, 0.67, nan, 0.76, 0.725, 0.78]\n", + " >>> Collected 7 forecasts: [0.2, 0.15, nan, nan, 0.2, 0.2, 0.15]\n", + " >>> Collected 7 forecasts: [0.1, 0.3, 0.3925, nan, 0.38, 0.675, 0.15]\n", + " >>> Collected 7 forecasts: [0.05, 0.05, 0.086, nan, 0.12, 0.1, 0.05]\n", + " >>> Collected 7 forecasts: [0.1, 0.15, 0.285, nan, 0.096, 0.15, 0.05]\n", + " >>> Collected 7 forecasts: [0.15, 0.05, 0.02, nan, 0.098, 0.05, 0.05]\n", + " >>> Collected 7 forecasts: [0.8, 0.9, nan, nan, 0.5599999999999999, 0.935, 0.75]\n", + " >>> Collected 7 forecasts: [0.9, 0.9, 0.95, 0.905, 0.78, 0.935, 0.95]\n", + " >>> Collected 7 forecasts: [0.9, 0.2, nan, nan, 0.05, 0.055, 0.65]\n", + " >>> Collected 7 forecasts: [0.9, 0.85, nan, nan, 0.744, 0.8, 0.75]\n", + " >>> Collected 7 forecasts: [0.85, 0.75, 0.85, 0.71, 0.55, 0.475, 0.9]\n", + " >>> Collected 7 forecasts: [0.1, 0.07, 0.05, 0.02, 0.052, 0.04, 0.02]\n", + " >>> Collected 8 forecasts: [0.15, 0.1, 0.07, 0.0559999999999999, nan, 0.175, 0.28, nan]\n", + " >>> Collected 8 forecasts: [0.35, 0.6, 0.62, 0.7, 0.324676, 0.5, 0.65, nan]\n", + " >>> Collected 8 forecasts: [0.95, 0.9, 0.82, 0.794, nan, 0.75, 0.88, nan]\n", + " >>> Collected 8 forecasts: [0.75, 0.75, 0.85, 0.884, 0.76, 0.85, 0.8, nan]\n", + " >>> Collected 8 forecasts: [0.1, 0.05, nan, nan, nan, 0.15, 0.15, nan]\n", + " >>> Collected 8 forecasts: [0.7, 0.6, nan, nan, nan, 0.7, 0.75, nan]\n", + " >>> Collected 8 forecasts: [0.7, 0.35, nan, nan, nan, 0.65, 0.78, nan]\n", + " >>> Collected 8 forecasts: [0.05, 0.05, nan, nan, nan, 0.15, 0.1, nan]\n", + " >>> Collected 8 forecasts: [0.15, 0.05, nan, nan, nan, 0.15, 0.15, nan]\n", + " >>> Collected 8 forecasts: [0.2, 0.25, 0.25, nan, nan, 0.225, 0.18, nan]\n", + " >>> Collected 8 forecasts: [0.2, 0.15, nan, 0.242, nan, 0.275, 0.2, nan]\n", + " >>> Collected 8 forecasts: [0.7, 0.8, nan, 0.936, nan, 0.85, nan, nan]\n", + " >>> Collected 8 forecasts: [0.25, 0.35, 0.108, 0.264, nan, 0.2, 0.35, nan]\n", + " >>> Collected 8 forecasts: [0.1, 0.15, 0.16, 0.652, nan, 0.275, 0.15, nan]\n", + " >>> Collected 8 forecasts: [0.05, 0.1, 0.95, 0.052, 0.0699999999999999, 0.125, 0.05, nan]\n", + " >>> Collected 8 forecasts: [0.15, 0.25, 0.15, 0.12, 0.05, 0.15, 0.1, nan]\n", + " >>> Collected 8 forecasts: [0.95, 0.95, 0.05, 0.918, 0.8925, 0.85, 0.9, nan]\n", + " >>> Collected 8 forecasts: [0.1, 0.3, 0.125, 0.212, 0.085, 0.725, 0.15, nan]\n", + " >>> Collected 8 forecasts: [0.05, 0.05, 0.034, nan, 0.0925, 0.125, nan, nan]\n", + " >>> Collected 8 forecasts: [0.1, 0.02, 0.03, 0.072, 0.1, 0.075, 0.1, 0.124]\n", + " >>> Collected 8 forecasts: [0.1, 0.3, 0.35, 0.226, 0.1149999999999999, 0.275, 0.27, 0.6765]\n", + " >>> Collected 8 forecasts: [0.25, 0.3, 0.35, 0.5, 0.1375, 0.35, 0.65, 0.55]\n", + " >>> Collected 8 forecasts: [0.15, 0.15, 0.115, 0.102, 0.1425, 0.275, nan, 0.195]\n", + " >>> Collected 8 forecasts: [0.98, 0.97, 0.97, 0.932, 0.9475, 0.5, nan, 0.95]\n", + " >>> Collected 8 forecasts: [0.35, 0.4, 0.285, 0.34, 0.2, 0.35, nan, 0.4375]\n", + " >>> Collected 8 forecasts: [0.35, 0.25, 0.3833333333333333, 0.42, 0.4, 0.35, 0.65, 0.513]\n", + " >>> Collected 8 forecasts: [0.85, 0.7, 0.17, 0.236, nan, 0.3, 0.1, 0.6485000000000001]\n", + " >>> Collected 8 forecasts: [0.01, 0.02, 0.12, 0.29, 0.06, 0.05, nan, 0.345]\n", + " >>> Collected 8 forecasts: [0.85, 0.75, 0.875, 0.92, 0.6599999999999999, 0.75, 0.65, 0.85]\n", + " >>> Collected 8 forecasts: [0.99, 0.85, 0.99, 0.99, 0.95, 0.5, 0.99, nan]\n", + " >>> Collected 8 forecasts: [0.2, 0.99, 0.9233333333333332, 0.954, 0.9280000000000002, 0.5, 0.98, 0.95]\n", + " >>> Collected 8 forecasts: [0.95, 0.25, 0.14, 0.2, 0.336, 0.325, 0.2, 0.34]\n", + " >>> Collected 8 forecasts: [0.9, 0.9, 0.8340000000000001, nan, nan, nan, 0.15, nan]\n", + " >>> Collected 8 forecasts: [0.9, 0.65, 0.7666666666666667, nan, nan, nan, 0.55, nan]\n", + " >>> Collected 8 forecasts: [0.35, 0.6, 0.875, 0.7759999999999999, 0.2299999999999999, 0.75, 0.27, 0.847]\n", + " >>> Collected 8 forecasts: [0.9, 0.85, 0.84, 0.86, 0.8019999999999999, 0.75, 0.9, 0.8620000000000001]\n", + " >>> Collected 8 forecasts: [0.05, 0.1, 0.026, 0.0559999999999999, 0.05, 0.085, 0.1, 0.1615]\n", + " >>> Collected 8 forecasts: [0.3, 0.3, 0.16, nan, 0.05, 0.225, 0.35, 0.55]\n", + " >>> Collected 8 forecasts: [0.75, 0.8, 0.67, nan, 0.76, 0.725, 0.78, 0.85]\n", + " >>> Collected 8 forecasts: [0.2, 0.15, nan, nan, 0.2, 0.2, 0.15, 0.223]\n", + " >>> Collected 8 forecasts: [0.1, 0.3, 0.3925, nan, 0.38, 0.675, 0.15, 0.58]\n", + " >>> Collected 8 forecasts: [0.05, 0.05, 0.086, nan, 0.12, 0.1, 0.05, 0.1109999999999999]\n", + " >>> Collected 8 forecasts: [0.1, 0.15, 0.285, nan, 0.096, 0.15, 0.05, 0.125]\n", + " >>> Collected 8 forecasts: [0.15, 0.05, 0.02, nan, 0.098, 0.05, 0.05, 0.073]\n", + " >>> Collected 8 forecasts: [0.8, 0.9, nan, nan, 0.5599999999999999, 0.935, 0.75, 0.94]\n", + " >>> Collected 8 forecasts: [0.9, 0.9, 0.95, 0.905, 0.78, 0.935, 0.95, 0.785]\n", + " >>> Collected 8 forecasts: [0.9, 0.2, nan, nan, 0.05, 0.055, 0.65, 0.067]\n", + " >>> Collected 8 forecasts: [0.9, 0.85, nan, nan, 0.744, 0.8, 0.75, 0.7240000000000001]\n", + " >>> Collected 8 forecasts: [0.85, 0.75, 0.85, 0.71, 0.55, 0.475, 0.9, 0.708]\n", + " >>> Collected 8 forecasts: [0.1, 0.07, 0.05, 0.02, 0.052, 0.04, 0.02, 0.042]\n", + " >>> Collected 9 forecasts: [0.15, 0.1, 0.07, 0.0559999999999999, nan, 0.175, 0.28, nan, 0.15]\n", + " >>> Collected 9 forecasts: [0.35, 0.6, 0.62, 0.7, 0.324676, 0.5, 0.65, nan, 0.35]\n", + " >>> Collected 9 forecasts: [0.95, 0.9, 0.82, 0.794, nan, 0.75, 0.88, nan, 0.8]\n", + " >>> Collected 9 forecasts: [0.75, 0.75, 0.85, 0.884, 0.76, 0.85, 0.8, nan, 0.85]\n", + " >>> Collected 9 forecasts: [0.1, 0.05, nan, nan, nan, 0.15, 0.15, nan, 0.05]\n", + " >>> Collected 9 forecasts: [0.7, 0.6, nan, nan, nan, 0.7, 0.75, nan, 0.35]\n", + " >>> Collected 9 forecasts: [0.7, 0.35, nan, nan, nan, 0.65, 0.78, nan, 0.75]\n", + " >>> Collected 9 forecasts: [0.05, 0.05, nan, nan, nan, 0.15, 0.1, nan, 0.05]\n", + " >>> Collected 9 forecasts: [0.15, 0.05, nan, nan, nan, 0.15, 0.15, nan, 0.05]\n", + " >>> Collected 9 forecasts: [0.2, 0.25, 0.25, nan, nan, 0.225, 0.18, nan, 0.25]\n", + " >>> Collected 9 forecasts: [0.2, 0.15, nan, 0.242, nan, 0.275, 0.2, nan, 0.25]\n", + " >>> Collected 9 forecasts: [0.7, 0.8, nan, 0.936, nan, 0.85, nan, nan, 0.95]\n", + " >>> Collected 9 forecasts: [0.25, 0.35, 0.108, 0.264, nan, 0.2, 0.35, nan, 0.25]\n", + " >>> Collected 9 forecasts: [0.1, 0.15, 0.16, 0.652, nan, 0.275, 0.15, nan, 0.25]\n", + " >>> Collected 9 forecasts: [0.05, 0.1, 0.95, 0.052, 0.0699999999999999, 0.125, 0.05, nan, 0.05]\n", + " >>> Collected 9 forecasts: [0.15, 0.25, 0.15, 0.12, 0.05, 0.15, 0.1, nan, 0.15]\n", + " >>> Collected 9 forecasts: [0.95, 0.95, 0.05, 0.918, 0.8925, 0.85, 0.9, nan, 0.9]\n", + " >>> Collected 9 forecasts: [0.1, 0.3, 0.125, 0.212, 0.085, 0.725, 0.15, nan, 0.15]\n", + " >>> Collected 9 forecasts: [0.05, 0.05, 0.034, nan, 0.0925, 0.125, nan, nan, 0.05]\n", + " >>> Collected 9 forecasts: [0.1, 0.02, 0.03, 0.072, 0.1, 0.075, 0.1, 0.124, 0.15]\n", + " >>> Collected 9 forecasts: [0.1, 0.3, 0.35, 0.226, 0.1149999999999999, 0.275, 0.27, 0.6765, 0.25]\n", + " >>> Collected 9 forecasts: [0.25, 0.3, 0.35, 0.5, 0.1375, 0.35, 0.65, 0.55, 0.4]\n", + " >>> Collected 9 forecasts: [0.15, 0.15, 0.115, 0.102, 0.1425, 0.275, nan, 0.195, 0.15]\n", + " >>> Collected 9 forecasts: [0.98, 0.97, 0.97, 0.932, 0.9475, 0.5, nan, 0.95, 0.92]\n", + " >>> Collected 9 forecasts: [0.35, 0.4, 0.285, 0.34, 0.2, 0.35, nan, 0.4375, 0.35]\n", + " >>> Collected 9 forecasts: [0.35, 0.25, 0.3833333333333333, 0.42, 0.4, 0.35, 0.65, 0.513, 0.65]\n", + " >>> Collected 9 forecasts: [0.85, 0.7, 0.17, 0.236, nan, 0.3, 0.1, 0.6485000000000001, 0.75]\n", + " >>> Collected 9 forecasts: [0.01, 0.02, 0.12, 0.29, 0.06, 0.05, nan, 0.345, 0.05]\n", + " >>> Collected 9 forecasts: [0.85, 0.75, 0.875, 0.92, 0.6599999999999999, 0.75, 0.65, 0.85, 0.85]\n", + " >>> Collected 9 forecasts: [0.99, 0.85, 0.99, 0.99, 0.95, 0.5, 0.99, nan, 0.99]\n", + " >>> Collected 9 forecasts: [0.2, 0.99, 0.9233333333333332, 0.954, 0.9280000000000002, 0.5, 0.98, 0.95, 0.95]\n", + " >>> Collected 9 forecasts: [0.95, 0.25, 0.14, 0.2, 0.336, 0.325, 0.2, 0.34, 0.25]\n", + " >>> Collected 9 forecasts: [0.9, 0.9, 0.8340000000000001, nan, nan, nan, 0.15, nan, 0.85]\n", + " >>> Collected 9 forecasts: [0.9, 0.65, 0.7666666666666667, nan, nan, nan, 0.55, nan, 0.85]\n", + " >>> Collected 9 forecasts: [0.35, 0.6, 0.875, 0.7759999999999999, 0.2299999999999999, 0.75, 0.27, 0.847, 0.25]\n", + " >>> Collected 9 forecasts: [0.9, 0.85, 0.84, 0.86, 0.8019999999999999, 0.75, 0.9, 0.8620000000000001, 0.85]\n", + " >>> Collected 9 forecasts: [0.05, 0.1, 0.026, 0.0559999999999999, 0.05, 0.085, 0.1, 0.1615, 0.15]\n", + " >>> Collected 9 forecasts: [0.3, 0.3, 0.16, nan, 0.05, 0.225, 0.35, 0.55, 0.25]\n", + " >>> Collected 9 forecasts: [0.75, 0.8, 0.67, nan, 0.76, 0.725, 0.78, 0.85, 0.85]\n", + " >>> Collected 9 forecasts: [0.2, 0.15, nan, nan, 0.2, 0.2, 0.15, 0.223, 0.35]\n", + " >>> Collected 9 forecasts: [0.1, 0.3, 0.3925, nan, 0.38, 0.675, 0.15, 0.58, 0.35]\n", + " >>> Collected 9 forecasts: [0.05, 0.05, 0.086, nan, 0.12, 0.1, 0.05, 0.1109999999999999, 0.15]\n", + " >>> Collected 9 forecasts: [0.1, 0.15, 0.285, nan, 0.096, 0.15, 0.05, 0.125, 0.15]\n", + " >>> Collected 9 forecasts: [0.15, 0.05, 0.02, nan, 0.098, 0.05, 0.05, 0.073, 0.15]\n", + " >>> Collected 9 forecasts: [0.8, 0.9, nan, nan, 0.5599999999999999, 0.935, 0.75, 0.94, 0.85]\n", + " >>> Collected 9 forecasts: [0.9, 0.9, 0.95, 0.905, 0.78, 0.935, 0.95, 0.785, 0.9]\n", + " >>> Collected 9 forecasts: [0.9, 0.2, nan, nan, 0.05, 0.055, 0.65, 0.067, 0.8]\n", + " >>> Collected 9 forecasts: [0.9, 0.85, nan, nan, 0.744, 0.8, 0.75, 0.7240000000000001, 0.9]\n", + " >>> Collected 9 forecasts: [0.85, 0.75, 0.85, 0.71, 0.55, 0.475, 0.9, 0.708, 0.85]\n", + " >>> Collected 9 forecasts: [0.1, 0.07, 0.05, 0.02, 0.052, 0.04, 0.02, 0.042, 0.05]\n", + " >>> Collected 10 forecasts: [0.15, 0.1, 0.07, 0.0559999999999999, nan, 0.175, 0.28, nan, 0.15, nan]\n", + " >>> Collected 10 forecasts: [0.35, 0.6, 0.62, 0.7, 0.324676, 0.5, 0.65, nan, 0.35, nan]\n", + " >>> Collected 10 forecasts: [0.95, 0.9, 0.82, 0.794, nan, 0.75, 0.88, nan, 0.8, 0.638]\n", + " >>> Collected 10 forecasts: [0.75, 0.75, 0.85, 0.884, 0.76, 0.85, 0.8, nan, 0.85, 0.546]\n", + " >>> Collected 10 forecasts: [0.1, 0.05, nan, nan, nan, 0.15, 0.15, nan, 0.05, 0.127]\n", + " >>> Collected 10 forecasts: [0.7, 0.6, nan, nan, nan, 0.7, 0.75, nan, 0.35, 0.319]\n", + " >>> Collected 10 forecasts: [0.7, 0.35, nan, nan, nan, 0.65, 0.78, nan, 0.75, nan]\n", + " >>> Collected 10 forecasts: [0.05, 0.05, nan, nan, nan, 0.15, 0.1, nan, 0.05, nan]\n", + " >>> Collected 10 forecasts: [0.15, 0.05, nan, nan, nan, 0.15, 0.15, nan, 0.05, nan]\n", + " >>> Collected 10 forecasts: [0.2, 0.25, 0.25, nan, nan, 0.225, 0.18, nan, 0.25, 0.1939999999999999]\n", + " >>> Collected 10 forecasts: [0.2, 0.15, nan, 0.242, nan, 0.275, 0.2, nan, 0.25, 0.281]\n", + " >>> Collected 10 forecasts: [0.7, 0.8, nan, 0.936, nan, 0.85, nan, nan, 0.95, 0.946]\n", + " >>> Collected 10 forecasts: [0.25, 0.35, 0.108, 0.264, nan, 0.2, 0.35, nan, 0.25, nan]\n", + " >>> Collected 10 forecasts: [0.1, 0.15, 0.16, 0.652, nan, 0.275, 0.15, nan, 0.25, nan]\n", + " >>> Collected 10 forecasts: [0.05, 0.1, 0.95, 0.052, 0.0699999999999999, 0.125, 0.05, nan, 0.05, nan]\n", + " >>> Collected 10 forecasts: [0.15, 0.25, 0.15, 0.12, 0.05, 0.15, 0.1, nan, 0.15, 0.154]\n", + " >>> Collected 10 forecasts: [0.95, 0.95, 0.05, 0.918, 0.8925, 0.85, 0.9, nan, 0.9, 0.85]\n", + " >>> Collected 10 forecasts: [0.1, 0.3, 0.125, 0.212, 0.085, 0.725, 0.15, nan, 0.15, 0.408]\n", + " >>> Collected 10 forecasts: [0.05, 0.05, 0.034, nan, 0.0925, 0.125, nan, nan, 0.05, 0.132]\n", + " >>> Collected 10 forecasts: [0.1, 0.02, 0.03, 0.072, 0.1, 0.075, 0.1, 0.124, 0.15, 0.063]\n", + " >>> Collected 10 forecasts: [0.1, 0.3, 0.35, 0.226, 0.1149999999999999, 0.275, 0.27, 0.6765, 0.25, 0.289]\n", + " >>> Collected 10 forecasts: [0.25, 0.3, 0.35, 0.5, 0.1375, 0.35, 0.65, 0.55, 0.4, 0.293]\n", + " >>> Collected 10 forecasts: [0.15, 0.15, 0.115, 0.102, 0.1425, 0.275, nan, 0.195, 0.15, 0.201]\n", + " >>> Collected 10 forecasts: [0.98, 0.97, 0.97, 0.932, 0.9475, 0.5, nan, 0.95, 0.92, 0.955]\n", + " >>> Collected 10 forecasts: [0.35, 0.4, 0.285, 0.34, 0.2, 0.35, nan, 0.4375, 0.35, 0.126]\n", + " >>> Collected 10 forecasts: [0.35, 0.25, 0.3833333333333333, 0.42, 0.4, 0.35, 0.65, 0.513, 0.65, 0.425]\n", + " >>> Collected 10 forecasts: [0.85, 0.7, 0.17, 0.236, nan, 0.3, 0.1, 0.6485000000000001, 0.75, 0.155]\n", + " >>> Collected 10 forecasts: [0.01, 0.02, 0.12, 0.29, 0.06, 0.05, nan, 0.345, 0.05, 0.161]\n", + " >>> Collected 10 forecasts: [0.85, 0.75, 0.875, 0.92, 0.6599999999999999, 0.75, 0.65, 0.85, 0.85, 0.6659999999999999]\n", + " >>> Collected 10 forecasts: [0.99, 0.85, 0.99, 0.99, 0.95, 0.5, 0.99, nan, 0.99, 0.959]\n", + " >>> Collected 10 forecasts: [0.2, 0.99, 0.9233333333333332, 0.954, 0.9280000000000002, 0.5, 0.98, 0.95, 0.95, 0.7759999999999999]\n", + " >>> Collected 10 forecasts: [0.95, 0.25, 0.14, 0.2, 0.336, 0.325, 0.2, 0.34, 0.25, 0.408]\n", + " >>> Collected 10 forecasts: [0.9, 0.9, 0.8340000000000001, nan, nan, nan, 0.15, nan, 0.85, nan]\n", + " >>> Collected 10 forecasts: [0.9, 0.65, 0.7666666666666667, nan, nan, nan, 0.55, nan, 0.85, nan]\n", + " >>> Collected 10 forecasts: [0.35, 0.6, 0.875, 0.7759999999999999, 0.2299999999999999, 0.75, 0.27, 0.847, 0.25, nan]\n", + " >>> Collected 10 forecasts: [0.9, 0.85, 0.84, 0.86, 0.8019999999999999, 0.75, 0.9, 0.8620000000000001, 0.85, nan]\n", + " >>> Collected 10 forecasts: [0.05, 0.1, 0.026, 0.0559999999999999, 0.05, 0.085, 0.1, 0.1615, 0.15, nan]\n", + " >>> Collected 10 forecasts: [0.3, 0.3, 0.16, nan, 0.05, 0.225, 0.35, 0.55, 0.25, nan]\n", + " >>> Collected 10 forecasts: [0.75, 0.8, 0.67, nan, 0.76, 0.725, 0.78, 0.85, 0.85, nan]\n", + " >>> Collected 10 forecasts: [0.2, 0.15, nan, nan, 0.2, 0.2, 0.15, 0.223, 0.35, 0.088]\n", + " >>> Collected 10 forecasts: [0.1, 0.3, 0.3925, nan, 0.38, 0.675, 0.15, 0.58, 0.35, 0.574]\n", + " >>> Collected 10 forecasts: [0.05, 0.05, 0.086, nan, 0.12, 0.1, 0.05, 0.1109999999999999, 0.15, nan]\n", + " >>> Collected 10 forecasts: [0.1, 0.15, 0.285, nan, 0.096, 0.15, 0.05, 0.125, 0.15, nan]\n", + " >>> Collected 10 forecasts: [0.15, 0.05, 0.02, nan, 0.098, 0.05, 0.05, 0.073, 0.15, 0.086]\n", + " >>> Collected 10 forecasts: [0.8, 0.9, nan, nan, 0.5599999999999999, 0.935, 0.75, 0.94, 0.85, 0.8220000000000001]\n", + " >>> Collected 10 forecasts: [0.9, 0.9, 0.95, 0.905, 0.78, 0.935, 0.95, 0.785, 0.9, 0.762]\n", + " >>> Collected 10 forecasts: [0.9, 0.2, nan, nan, 0.05, 0.055, 0.65, 0.067, 0.8, 0.126]\n", + " >>> Collected 10 forecasts: [0.9, 0.85, nan, nan, 0.744, 0.8, 0.75, 0.7240000000000001, 0.9, 0.828]\n", + " >>> Collected 10 forecasts: [0.85, 0.75, 0.85, 0.71, 0.55, 0.475, 0.9, 0.708, 0.85, 0.132]\n", + " >>> Collected 10 forecasts: [0.1, 0.07, 0.05, 0.02, 0.052, 0.04, 0.02, 0.042, 0.05, 0.27]\n" + ] + } + ], "source": [ "# @title Calculate df_bot_team_forecasts\n", "\n", "df_bot_team_forecasts = pd.merge(\n", " df_bot_forecasts,\n", - " df_pro_bot_resolved_questions[['bot_question_id', 'pro_question_id', 'question_weight', 'resolution']],\n", + " df_pro_bot_resolved_questions[['bot_question_id', 'pro_question_id', 'question_weight', 'resolution', 'type', 'options', 'range_min', 'range_max']],\n", " on='bot_question_id',\n", " how='left'\n", ")\n", @@ -1309,26 +10424,247 @@ "# KEEP ONLY ROWS WHERE PRO_QUESTION_ID IS NA\n", "df_bot_team_forecasts = df_bot_team_forecasts[~df_bot_team_forecasts['pro_question_id'].isna()]\n", "\n", - "columns_to_keep = ['bot_question_id', 'question_weight', 'resolution'] + top_10_bots\n", + "columns_to_keep = ['bot_question_id', 'question_weight', 'resolution', 'type', 'options', 'range_min', 'range_max'] + top_10_bots\n", "\n", "# Filter the DataFrame to keep only the specified columns\n", "df_bot_team_forecasts = df_bot_team_forecasts[columns_to_keep]\n", "\n", + "df_bot_team_forecasts['options'] = df_bot_team_forecasts['options'].apply(parse_options_array)\n", "\n", - "# Calculate and add median forecasts for 2 to 10 bots\n", + "# Calculate and add median forecasts for 1 to 10 bots\n", "for i in range(1, 11):\n", " bots_subset = top_10_bots[:i]\n", " column_name = f'median_forecast_{i}_bots'\n", - " df_bot_team_forecasts[column_name] = calculate_median_forecast(df_bot_team_forecasts, bots_subset)\n", - "\n", - "display_head_and_tail(df_bot_team_forecasts)" + " df_bot_team_forecasts[column_name] = df_bot_team_forecasts.apply(lambda row: get_median_forecast(row, bots=bots_subset), axis=1)" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 58, "metadata": {}, "outputs": [], + "source": [ + "# Cut off output in dataframes when a CELL is too long\n", + "pd.set_option('display.max_colwidth', 50)" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
typeoptionsresolutionmetac-o1-previewmedian_forecast_5_botsmedian_forecast_8_bots
0multiple_choice[0, 1, 2-3, 4-6, >6]0[0.02,0.7,0.2,0.07,0.01]0.0174630.085
1numericNaN86.82[0.05,0.0506666667,0.0513333333,0.052,0.052666...[0.037750000000000006, 0.038250620225000004, 0...[0.0402, 0.040750496180000005, 0.04130456232, ...
2binaryNaNno0.150.0850.125
3multiple_choice[0-4, 5-9, >9]5-9[0.2,0.6,0.2]0.60.5125
4numericNaN119.2[0.0,0.0025,0.005,0.0075,0.01,0.0125,0.015,0.0...[0.0, 0.00161112178, 0.0032277004800000003, 0....[0.0, 0.0017712494571428573, 0.0035463967, 0.0...
.....................
342binaryNaNyes0.90.90.9025
351binaryNaNno0.90.20.1335
355binaryNaNyes0.90.850.775
361binaryNaNno0.850.750.73
364binaryNaNno0.10.0520.046
\n", + "

99 rows × 6 columns

\n", + "
" + ], + "text/plain": [ + " type options resolution \\\n", + "0 multiple_choice [0, 1, 2-3, 4-6, >6] 0 \n", + "1 numeric NaN 86.82 \n", + "2 binary NaN no \n", + "3 multiple_choice [0-4, 5-9, >9] 5-9 \n", + "4 numeric NaN 119.2 \n", + ".. ... ... ... \n", + "342 binary NaN yes \n", + "351 binary NaN no \n", + "355 binary NaN yes \n", + "361 binary NaN no \n", + "364 binary NaN no \n", + "\n", + " metac-o1-preview \\\n", + "0 [0.02,0.7,0.2,0.07,0.01] \n", + "1 [0.05,0.0506666667,0.0513333333,0.052,0.052666... \n", + "2 0.15 \n", + "3 [0.2,0.6,0.2] \n", + "4 [0.0,0.0025,0.005,0.0075,0.01,0.0125,0.015,0.0... \n", + ".. ... \n", + "342 0.9 \n", + "351 0.9 \n", + "355 0.9 \n", + "361 0.85 \n", + "364 0.1 \n", + "\n", + " median_forecast_5_bots \\\n", + "0 0.017463 \n", + "1 [0.037750000000000006, 0.038250620225000004, 0... \n", + "2 0.085 \n", + "3 0.6 \n", + "4 [0.0, 0.00161112178, 0.0032277004800000003, 0.... \n", + ".. ... \n", + "342 0.9 \n", + "351 0.2 \n", + "355 0.85 \n", + "361 0.75 \n", + "364 0.052 \n", + "\n", + " median_forecast_8_bots \n", + "0 0.085 \n", + "1 [0.0402, 0.040750496180000005, 0.04130456232, ... \n", + "2 0.125 \n", + "3 0.5125 \n", + "4 [0.0, 0.0017712494571428573, 0.0035463967, 0.0... \n", + ".. ... \n", + "342 0.9025 \n", + "351 0.1335 \n", + "355 0.775 \n", + "361 0.73 \n", + "364 0.046 \n", + "\n", + "[99 rows x 6 columns]" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_bot_team_forecasts[['type', 'options', 'resolution', 'metac-o1-preview', 'median_forecast_5_bots', 'median_forecast_8_bots']]" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sum of weights: 95.0, Number of questions: 99\n" + ] + } + ], "source": [ "# Sanity check\n", "a = df_bot_team_forecasts['question_weight'].sum()\n", @@ -1338,7 +10674,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 61, "metadata": { "colab": { "base_uri": "https://localhost:8080/" @@ -1346,7 +10682,106 @@ "id": "3-FedHpWV_1v", "outputId": "7327c204-c501-4dfb-bdfb-176606c96dc4" }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Bot_Team_SizeWeighted_Baseline_Score_for_Bot_Team_Median
0116.68
1226.29
2328.21
3426.98
4527.65
5626.39
6726.89
7827.15
8927.29
91026.71
\n", + "
" + ], + "text/plain": [ + " Bot_Team_Size Weighted_Baseline_Score_for_Bot_Team_Median\n", + "0 1 16.68\n", + "1 2 26.29\n", + "2 3 28.21\n", + "3 4 26.98\n", + "4 5 27.65\n", + "5 6 26.39\n", + "6 7 26.89\n", + "7 8 27.15\n", + "8 9 27.29\n", + "9 10 26.71" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# @title Calculate the baseline scores for each team size\n", "\n", @@ -1373,9 +10808,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 62, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['metac-o1-preview', 'metac-o1', 'pgodzinai']" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Index of top bot team from weighted_scores_print?\n", "winning_bot_team_size = weighted_scores_print.sort_values(by='Weighted_Baseline_Score_for_Bot_Team_Median', ascending=False).head(1)['Bot_Team_Size'].values[0]\n", @@ -1385,7 +10831,338 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 63, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(424, 47)" + ] + }, + "execution_count": 63, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_bot_forecasts.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "metadata": {}, + "outputs": [], + "source": [ + "# Merge bot_team_forecasts with df_top_bot_forecasts, just get type and options columns from bot_team_forecasts, merge on bot_question_id\n", + "df_bot_forecasts = pd.merge(\n", + " df_bot_forecasts,\n", + " df_bot_team_forecasts[['bot_question_id', 'type', 'options', 'resolution']],\n", + " on='bot_question_id',\n", + " how='left'\n", + ")\n", + "\n", + "# And make bot_question_id, type and options the first columns\n", + "df_bot_forecasts = df_bot_forecasts[['bot_question_id', 'type', 'options', 'resolution'] + [col for col in df_bot_forecasts.columns if col not in ['bot_question_id', 'type', 'options']]]" + ] + }, + { + "cell_type": "code", + "execution_count": 65, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
bot_question_idquestion_weightresolutiontypeoptionsrange_minrange_maxmetac-o1-previewmetac-o1pgodzinai...median_forecast_1_botsmedian_forecast_2_botsmedian_forecast_3_botsmedian_forecast_4_botsmedian_forecast_5_botsmedian_forecast_6_botsmedian_forecast_7_botsmedian_forecast_8_botsmedian_forecast_9_botsmedian_forecast_10_bots
0312621.00multiple_choice[0, 1, 2-3, 4-6, >6]NaNNaN[0.02,0.7,0.2,0.07,0.01][0.45,0.3,0.15,0.05,0.05][0.014925742574257425,0.5137871287128712,0.334......0.020.2350.020.0174630.0174630.020.0850.0850.150.15
1312631.086.82numericNaN60.0100.0[0.05,0.0506666667,0.0513333333,0.052,0.052666...[0.05,0.0506666667,0.0513333333,0.052,0.052666...[0.001,0.001060875,0.0011396,0.0012863125,0.00......[0.05, 0.0506666667, 0.0513333333, 0.052, 0.05...[0.05, 0.0506666667, 0.0513333333, 0.052, 0.05...[0.03366666666666667, 0.0341314028, 0.03460208...[0.037750000000000006, 0.038250620225000004, 0...[0.037750000000000006, 0.038250620225000004, 0...[0.0402, 0.040750496180000005, 0.04130456232, ...[0.0402, 0.040750496180000005, 0.04130456232, ...[0.0402, 0.040750496180000005, 0.04130456232, ...[0.041833333333333333, 0.042403191266666675, 0...[0.041833333333333333, 0.042403191266666675, 0...
2312641.0nobinaryNaNNaNNaN0.150.10.07...0.150.1250.10.0850.0850.10.1250.1250.150.15
3312741.05-9multiple_choice[0-4, 5-9, >9]NaNNaN[0.2,0.6,0.2][0.25,0.6,0.15][0.27499999999999997,0.5125,0.21249999999999997]...0.60.60.60.60.60.556250.51250.51250.531250.5125
4312751.0119.2numericNaN0.0400.0[0.0,0.0025,0.005,0.0075,0.01,0.0125,0.015,0.0...[0.0,0.0025,0.005,0.0075,0.01,0.0125,0.015,0.0...[0.0,0.0001141583,0.0002446967,0.0003862688,0.......[0.0, 0.0025, 0.005, 0.0075, 0.01, 0.0125, 0.0...[0.0, 0.0025, 0.005, 0.0075, 0.01, 0.0125, 0.0...[0.0, 0.0017047194333333333, 0.0034148989, 0.0...[0.0, 0.001733085025, 0.003470265075, 0.005210...[0.0, 0.00161112178, 0.0032277004800000003, 0....[0.0, 0.0016497910333333336, 0.003304129483333...[0.0, 0.0017712494571428573, 0.0035463967, 0.0...[0.0, 0.0017712494571428573, 0.0035463967, 0.0...[0.0, 0.0019069861375000002, 0.003817382825, 0...[0.0, 0.0018408706777777778, 0.003684772944444...
\n", + "

5 rows × 27 columns

\n", + "
" + ], + "text/plain": [ + " bot_question_id question_weight resolution type \\\n", + "0 31262 1.0 0 multiple_choice \n", + "1 31263 1.0 86.82 numeric \n", + "2 31264 1.0 no binary \n", + "3 31274 1.0 5-9 multiple_choice \n", + "4 31275 1.0 119.2 numeric \n", + "\n", + " options range_min range_max \\\n", + "0 [0, 1, 2-3, 4-6, >6] NaN NaN \n", + "1 NaN 60.0 100.0 \n", + "2 NaN NaN NaN \n", + "3 [0-4, 5-9, >9] NaN NaN \n", + "4 NaN 0.0 400.0 \n", + "\n", + " metac-o1-preview \\\n", + "0 [0.02,0.7,0.2,0.07,0.01] \n", + "1 [0.05,0.0506666667,0.0513333333,0.052,0.052666... \n", + "2 0.15 \n", + "3 [0.2,0.6,0.2] \n", + "4 [0.0,0.0025,0.005,0.0075,0.01,0.0125,0.015,0.0... \n", + "\n", + " metac-o1 \\\n", + "0 [0.45,0.3,0.15,0.05,0.05] \n", + "1 [0.05,0.0506666667,0.0513333333,0.052,0.052666... \n", + "2 0.1 \n", + "3 [0.25,0.6,0.15] \n", + "4 [0.0,0.0025,0.005,0.0075,0.01,0.0125,0.015,0.0... \n", + "\n", + " pgodzinai ... \\\n", + "0 [0.014925742574257425,0.5137871287128712,0.334... ... \n", + "1 [0.001,0.001060875,0.0011396,0.0012863125,0.00... ... \n", + "2 0.07 ... \n", + "3 [0.27499999999999997,0.5125,0.21249999999999997] ... \n", + "4 [0.0,0.0001141583,0.0002446967,0.0003862688,0.... ... \n", + "\n", + " median_forecast_1_bots \\\n", + "0 0.02 \n", + "1 [0.05, 0.0506666667, 0.0513333333, 0.052, 0.05... \n", + "2 0.15 \n", + "3 0.6 \n", + "4 [0.0, 0.0025, 0.005, 0.0075, 0.01, 0.0125, 0.0... \n", + "\n", + " median_forecast_2_bots \\\n", + "0 0.235 \n", + "1 [0.05, 0.0506666667, 0.0513333333, 0.052, 0.05... \n", + "2 0.125 \n", + "3 0.6 \n", + "4 [0.0, 0.0025, 0.005, 0.0075, 0.01, 0.0125, 0.0... \n", + "\n", + " median_forecast_3_bots \\\n", + "0 0.02 \n", + "1 [0.03366666666666667, 0.0341314028, 0.03460208... \n", + "2 0.1 \n", + "3 0.6 \n", + "4 [0.0, 0.0017047194333333333, 0.0034148989, 0.0... \n", + "\n", + " median_forecast_4_bots \\\n", + "0 0.017463 \n", + "1 [0.037750000000000006, 0.038250620225000004, 0... \n", + "2 0.085 \n", + "3 0.6 \n", + "4 [0.0, 0.001733085025, 0.003470265075, 0.005210... \n", + "\n", + " median_forecast_5_bots \\\n", + "0 0.017463 \n", + "1 [0.037750000000000006, 0.038250620225000004, 0... \n", + "2 0.085 \n", + "3 0.6 \n", + "4 [0.0, 0.00161112178, 0.0032277004800000003, 0.... \n", + "\n", + " median_forecast_6_bots \\\n", + "0 0.02 \n", + "1 [0.0402, 0.040750496180000005, 0.04130456232, ... \n", + "2 0.1 \n", + "3 0.55625 \n", + "4 [0.0, 0.0016497910333333336, 0.003304129483333... \n", + "\n", + " median_forecast_7_bots \\\n", + "0 0.085 \n", + "1 [0.0402, 0.040750496180000005, 0.04130456232, ... \n", + "2 0.125 \n", + "3 0.5125 \n", + "4 [0.0, 0.0017712494571428573, 0.0035463967, 0.0... \n", + "\n", + " median_forecast_8_bots \\\n", + "0 0.085 \n", + "1 [0.0402, 0.040750496180000005, 0.04130456232, ... \n", + "2 0.125 \n", + "3 0.5125 \n", + "4 [0.0, 0.0017712494571428573, 0.0035463967, 0.0... \n", + "\n", + " median_forecast_9_bots \\\n", + "0 0.15 \n", + "1 [0.041833333333333333, 0.042403191266666675, 0... \n", + "2 0.15 \n", + "3 0.53125 \n", + "4 [0.0, 0.0019069861375000002, 0.003817382825, 0... \n", + "\n", + " median_forecast_10_bots \n", + "0 0.15 \n", + "1 [0.041833333333333333, 0.042403191266666675, 0... \n", + "2 0.15 \n", + "3 0.5125 \n", + "4 [0.0, 0.0018408706777777778, 0.003684772944444... \n", + "\n", + "[5 rows x 27 columns]" + ] + }, + "execution_count": 65, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_bot_team_forecasts.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 66, "metadata": { "colab": { "base_uri": "https://localhost:8080/" @@ -1402,8 +11179,8 @@ "# Create df with bot_question_id, forecasts, resolution, weights\n", "# Calculate the head-to-head score\n", "\n", - "df_top_bot_forecasts = df_bot_forecasts[['bot_question_id'] + top_bot_team]\n", - "df_top_bot_forecasts['bot_team_median'] = df_top_bot_forecasts[top_bot_team].median(axis=1)\n", + "df_top_bot_forecasts = df_bot_team_forecasts[['bot_question_id', f'median_forecast_{len(top_bot_team)}_bots']]\n", + "df_top_bot_forecasts = df_top_bot_forecasts.rename(columns={f'median_forecast_{len(top_bot_team)}_bots': 'bot_team_median'})\n", "\n", "df_pro_median = df_pro_forecasts[['pro_question_id', 'pro_median']]\n", "\n", @@ -1427,25 +11204,30 @@ "# Filter to only those rows where pro_median is not NA\n", "df_top_bot_pro_forecasts = df_top_bot_pro_forecasts.dropna(subset=['pro_median'])\n", "\n", - "\n", "# Add the head_to_head column\n", - "df_top_bot_pro_forecasts['head_to_head'] = df_top_bot_pro_forecasts.apply(calculate_head_to_head, args=('bot_team_median', 'pro_median'), axis=1)\n", - "\n", - "df_top_bot_pro_forecasts" + "df_top_bot_pro_forecasts['head_to_head'] = df_top_bot_pro_forecasts.apply(calculate_head_to_head, args=('bot_team_median', 'pro_median'), axis=1)" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 68, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Weighted Total Score: -14.9893\n" + ] + } + ], "source": [ "weighted_total_score = get_weighted_score(df_top_bot_pro_forecasts)" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 69, "metadata": { "colab": { "base_uri": "https://localhost:8080/", @@ -1454,14 +11236,32 @@ "id": "JlU9zyqn26Rl", "outputId": "ac54d636-670b-4a8f-aea9-402679efacf9" }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA18AAAIjCAYAAAD80aFnAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAB69klEQVR4nO3de3zO9f/H8ee12Qk7OMxmDHOInGuYOYRa5vi1ilA5SwoRKiR0+EZKREWH7890ECmpJJlTB0SORUhyCttINoYdP78/PnbN1Uaz5vrs8Ljfbp/bPof39blen8tlu57X5/N5v22GYRgCAAAAANxQLlYXAAAAAADFAeELAAAAAJyA8AUAAAAATkD4AgAAAAAnIHwBAAAAgBMQvgAAAADACQhfAAAAAOAEhC8AAAAAcALCFwAAAAA4AeELAFDgHT58WDabTdHR0VaXUiDx+gBA4UD4AlDoRUdHy2azOUwVKlRQu3bt9NVXX+V5vy+88IKWLVv2j+3atm2b7flzmqZMmZLnWpylWrVq6tKlS47b1q9fL5vNpo8//tjpdV2PhQsXatasWTdk30Xh9Tl8+LAGDBigGjVqyNPTU4GBgbrttts0efJkq0srlKpVq5btd0/r1q316aefWl0agAKohNUFAEB+efbZZxUSEiLDMBQXF6fo6Gh16tRJX3zxxVU/MF/LCy+8oO7duysqKuqa7Z566ikNHjzYvvzjjz9q9uzZmjBhgm6++Wb7+oYNG153Dbh+Cxcu1O7duzVq1CirSylwfvvtNzVt2lReXl4aOHCgqlWrppMnT2r79u168cUX9cwzz1hdYqHUuHFjjRkzRpJ04sQJvfnmm7r77rs1d+5cDR061OryABQghC8ARUbHjh3VpEkT+/KgQYMUEBCgDz/8ME/hK7fuvPNOh2VPT0/Nnj1bd955p9q2bXvDnhe4XjNnztT58+e1c+dOVa1a1WFbfHy8U2tJSkpSqVKlnPqcN0qlSpX0wAMP2Jf79u2rmjVraubMmVcNX2lpacrIyJC7u7sTKwVgNS47BFBk+fn5ycvLSyVKOH7PlJSUpDFjxig4OFgeHh6qXbu2Xn75ZRmGYW9js9mUlJSkBQsW2C8n6t+//7+q56uvvlLr1q1VqlQpeXt7q3PnztqzZ49Dm59++kn9+/dX9erV7ZeEDRw4UH/++adDuylTpshms+nXX3/VAw88IF9fX/n7++vpp5+WYRg6duyYunXrJh8fHwUGBmrGjBn/qvZrOX78uAYOHKiAgAB5eHioXr16+r//+z+HNikpKZo0aZJCQ0Pl6+urUqVKqXXr1lq3bl22/Z09e1b9+/eXr6+v/Pz81K9fP509ezZXtbRt21Zffvmljhw5Yv93q1atmn17fHy8PZR7enqqUaNGWrBgQT68CldXkF6fgwcPqnLlytmClyRVqFAh27qvvvpKbdq0kbe3t3x8fNS0aVMtXLjQoc2SJUsUGhoqLy8vlS9fXg888ICOHz/u0KZ///4qXbq0Dh48qE6dOsnb21v333+/JCkjI0OzZs1SvXr15OnpqYCAAD300EP666+/HPaxdetWRUZGqnz58vLy8lJISIgGDhx4zePt0qWLqlevnuO28PBwhy9rYmJi1KpVK/n5+al06dKqXbu2JkyYcM39X01gYKBuvvlmHTp0SLrinryXX35Zs2bNUo0aNeTh4aFffvlFkrR27Vr77wY/Pz9169ZNe/fuddjnuXPnNGrUKFWrVk0eHh6qUKGC7rzzTm3fvj1PNQKwBme+ABQZCQkJOn36tAzDUHx8vObMmaPz5887fCNtGIb+85//aN26dRo0aJAaN26sr7/+Wo8//riOHz+umTNnSpLee+89DR48WM2aNdOQIUMkSTVq1Mhzbe+995769eunyMhIvfjii7pw4YLmzp2rVq1aaceOHfaAEBMTo99//10DBgxQYGCg9uzZo7feekt79uzRDz/8IJvN5rDfnj176uabb9a0adP05Zdf6vnnn1fZsmX15ptv6vbbb9eLL76oDz74QGPHjlXTpk112223/WOtqampOn36dI6v79/FxcWpefPmstlsGj58uPz9/fXVV19p0KBBSkxMtF/6l5iYqHfeeUe9e/fWgw8+qHPnzul///ufIiMjtWXLFjVu3Fi6/O/TrVs3ff/99xo6dKhuvvlmffrpp+rXr1+uXuennnpKCQkJ+uOPP+z/lqVLl5YkXbx4UW3bttVvv/2m4cOHKyQkREuWLFH//v119uxZjRw5MlfPUZhfn6pVq2r16tVau3atbr/99mu2jY6O1sCBA1WvXj2NHz9efn5+2rFjh1auXKn77rvP3mbAgAFq2rSppk6dqri4OL366qvasGGDduzYIT8/P/v+0tLSFBkZqVatWunll19WyZIlJUkPPfSQfT+PPvqoDh06pNdee007duzQhg0b5Obmpvj4eLVv317+/v4aN26c/Pz8dPjwYS1duvSax9CzZ0/17dtXP/74o5o2bWpff+TIEf3www966aWXJEl79uxRly5d1LBhQz377LPy8PDQb7/9pg0bNuTqdf271NRUHTt2TOXKlXNYP3/+fF26dElDhgyRh4eHypYtq9WrV6tjx46qXr26pkyZoosXL2rOnDlq2bKltm/fbv/dMHToUH388ccaPny46tatqz///FPff/+99u7dq1tvvTVPdQKwgAEAhdz8+fMNSdkmDw8PIzo62qHtsmXLDEnG888/77C+e/fuhs1mM3777Tf7ulKlShn9+vW77nqWLFliSDLWrVtnGIZhnDt3zvDz8zMefPBBh3axsbGGr6+vw/oLFy5k29+HH35oSDK+/fZb+7rJkycbkowhQ4bY16WlpRmVK1c2bDabMW3aNPv6v/76y/Dy8srVsVStWjXH1/LKacmSJfb2gwYNMipWrGicPn3aYT+9evUyfH197ceTlpZmJCcnO7T566+/jICAAGPgwIH2dZn/PtOnT3c4rtatWxuSjPnz5//jMXTu3NmoWrVqtvWzZs0yJBnvv/++fV1KSooRHh5ulC5d2khMTCzyr8/u3bsNLy8vQ5LRuHFjY+TIkcayZcuMpKQkh3Znz541vL29jbCwMOPixYsO2zIyMuyvXYUKFYz69es7tFm+fLkhyZg0aZJ9Xb9+/QxJxrhx4xz29d133xmSjA8++MBh/cqVKx3Wf/rpp4Yk48cff7zm8f1dQkKC4eHhYYwZM8Zh/fTp0w2bzWYcOXLEMAzDmDlzpiHJOHXq1HXt37j8nmjfvr1x6tQp49SpU8auXbuMXr16GZKMESNGGIZhGIcOHTIkGT4+PkZ8fLzD4xs3bmxUqFDB+PPPP+3rdu3aZbi4uBh9+/a1r/P19TWGDRt23fUBKFi47BBAkfH6668rJiZGMTExev/999WuXTsNHjzY4dvxFStWyNXVVY8++qjDY8eMGSPDMP5V74hXExMTo7Nnz6p37946ffq0fXJ1dVVYWJjDpWVeXl72+UuXLun06dNq3ry5JOV4edGVHX24urqqSZMmMgxDgwYNsq/38/NT7dq19fvvv+eq3rCwMPvreOX08ssvO7QzDEOffPKJunbtKsMwHI4tMjJSCQkJ9ppdXV3t97ZkZGTozJkzSktLU5MmTRyOa8WKFSpRooQefvhhh+MaMWJErmq/lhUrVigwMFC9e/e2r3Nzc9Ojjz6q8+fP65tvvinyr0+9evW0c+dOPfDAAzp8+LBeffVVRUVFKSAgQG+//ba9XUxMjM6dO6dx48bJ09PTYR+ZZ1+3bt2q+Ph4PfLIIw5tOnfurDp16ujLL7/M9vxX1q3Llyz6+vrqzjvvdHh9QkNDVbp0afv/jcwzaMuXL1dqamqujlWSfHx81LFjR3300UcOlxUvXrxYzZs3V5UqVRz2/9lnnykjIyPX+8+0atUq+fv7y9/fX40aNdKSJUvUp08fvfjiiw7t7rnnHvn7+9uXT548qZ07d6p///4qW7asfX3Dhg115513asWKFfZ1fn5+2rx5s06cOHHd9QEoOLjsEECR0axZM4d7OHr37q1bbrlFw4cPV5cuXeTu7q4jR44oKChI3t7eDo/N7JXwyJEj+V7XgQMHJOmql3n5+PjY58+cOaNnnnlGixYtytYBQk6XtWV+eMzk6+srT09PlS9fPtv6v983djXly5dXREREtvV/v3fu1KlTOnv2rN566y299dZbOe7rymNYsGCBZsyYoX379jl8gA4JCbHPHzlyRBUrVrRfKpipdu3aDssXL17M9noEBgZe87iOHDmiWrVqycXF8XvHv//bJyQk6OLFi/bt7u7uDh+MC8Prcy033XST3nvvPaWnp+uXX37R8uXLNX36dA0ZMkQhISGKiIjQwYMHJUn169e/6n4yX6+cnrtOnTr6/vvvHdaVKFFClStXdlh34MABJSQk5Hi/ma54fdq0aaN77rlHzzzzjGbOnKm2bdsqKipK9913nzw8PK55vD179tSyZcu0adMmtWjRQgcPHtS2bdschiPo2bOn3nnnHQ0ePFjjxo3THXfcobvvvlvdu3fP9n7JSVhYmJ5//nnZbDaVLFlSN998s8Mll5mu/LfUP7yGN998s77++mt7xyTTp09Xv379FBwcrNDQUHXq1El9+/a96j1tAAomwheAIsvFxUXt2rXTq6++qgMHDqhevXqW1JH5Tfp7772XY0C48kP7vffeq40bN+rxxx9X48aNVbp0aWVkZKhDhw45fiPv6uqaq3W6fCYmP2XW88ADD1z1nqPM7vXff/999e/fX1FRUXr88cdVoUIFubq6aurUqfYP+tdj8eLFGjBggMO6/Dq+kSNHOnTC0aZNG61fv/6692Pl65Mbrq6uatCggRo0aKDw8HC1a9dOH3zwQY7BMj94eHhkCzIZGRmqUKGCPvjggxwfk3mWKHP8tB9++EFffPGFvv76aw0cOFAzZszQDz/8kC2MXqlr164qWbKkPvroI7Vo0UIfffSRXFxc1KNHD3sbLy8vffvtt1q3bp2+/PJLrVy5UosXL9btt9+uVatWXfX/VKarBfK/u/LM9vW699577eOHrVq1Si+99JJefPFFLV26VB07dszzfgE4F+ELQJGWlpYmSTp//rx0RYcD586dczj7tW/fPvv2TH/v3CKvMjvqqFChwjU/oP31119as2aNnnnmGU2aNMm+PvPMWUHj7+8vb29vpaen/+MHz48//ljVq1fX0qVLHV7Xvw/sW7VqVa1Zs0bnz593+EC9f/9+h3aRkZGKiYnJ8bmu9u9WtWpV/fTTT8rIyHAIAX//t3/iiSccOmkpU6bMNY/taqx8fa5X5hnjkydPSle8Z3fv3q2aNWvm+JjM12v//v3Zzuru378/xx4V/65GjRpavXq1WrZsmatg0rx5czVv3lz//e9/tXDhQt1///1atGiRw+W3f1eqVCl16dJFS5Ys0SuvvKLFixerdevWCgoKcmjn4uKiO+64Q3fccYdeeeUVvfDCC3rqqae0bt26GxZIr3wN/27fvn0qX768Q3f8FStW1COPPKJHHnlE8fHxuvXWW/Xf//6X8AUUItzzBaDISk1N1apVq+Tu7m6/tKxTp05KT0/Xa6+95tB25syZstlsDh9iSpUqlesuvK8lMjJSPj4+euGFF3K8X+XUqVPSFWes/n4G58rLowoSV1dX3XPPPfrkk0+0e/fubNszj0tXObbNmzdr06ZNDo/p1KmT0tLSNHfuXPu69PR0zZkzx6FdxYoVFRER4TBlKlWqVI6XaHbq1EmxsbFavHixfV1aWprmzJmj0qVLq02bNpKkunXrOuw3NDT0ul8bWfz6XM13332X43sw896izMvf2rdvL29vb02dOlWXLl1yaJtZY5MmTVShQgXNmzdPycnJ9u1fffWV9u7dq86dO/9jPffee6/S09P13HPPZduWlpZm///3119/Zft/kdkD5JXPfTU9e/bUiRMn9M4772jXrl3q2bOnw/YzZ85ke8z17D+vKlasqMaNG2vBggUOv2t2796tVatWqVOnTtLlf+O/v6crVKigoKCgG1ofgPzHmS8ARcZXX31lP4sRHx+vhQsX6sCBAxo3bpz9vqquXbuqXbt2euqpp3T48GE1atRIq1at0meffaZRo0Y5dCcfGhqq1atX65VXXlFQUJBCQkIUFhZ23XX5+Pho7ty56tOnj2699Vb16tVL/v7+Onr0qL788ku1bNlSr732mnx8fHTbbbdp+vTpSk1NVaVKlbRq1Sr7WEEF0bRp07Ru3TqFhYXpwQcfVN26dXXmzBlt375dq1evtn+o7dKli5YuXaq77rpLnTt31qFDhzRv3jzVrVvXflZSl/99WrZsqXHjxunw4cOqW7euli5dmmOYuprQ0FAtXrxYo0ePVtOmTVW6dGl17dpVQ4YM0Ztvvqn+/ftr27Ztqlatmj7++GNt2LBBs2bNynYfYFF8fV588UVt27ZNd999t/2Sx+3bt+vdd99V2bJl7V3f+/j4aObMmRo8eLCaNm2q++67T2XKlNGuXbt04cIFLViwQG5ubnrxxRc1YMAAtWnTRr1797Z3NV+tWjU99thj/1hPmzZt9NBDD2nq1KnauXOn2rdvLzc3Nx04cEBLlizRq6++qu7du2vBggV64403dNddd6lGjRo6d+6c3n77bfn4+NgDyrVkji02duxYeyi+0rPPPqtvv/1WnTt3VtWqVRUfH6833nhDlStXVqtWrXL12ubVSy+9pI4dOyo8PFyDBg2ydzXv6+urKVOmSJfH+KpcubK6d++uRo0aqXTp0lq9erV+/PHHGzqGH4AbwOruFgHg38qpq3lPT0+jcePGxty5c+1dY2c6d+6c8dhjjxlBQUGGm5ubUatWLeOll17K1m7fvn3GbbfdZu+aO7fdzv+9q/lM69atMyIjIw1fX1/D09PTqFGjhtG/f39j69at9jZ//PGHcddddxl+fn6Gr6+v0aNHD+PEiROGJGPy5Mn2dpldzf+9a+x+/foZpUqVylZTmzZtjHr16v1j7VWrVjU6d+6c47Z169Zl60rdMAwjLi7OGDZsmBEcHGy4ubkZgYGBxh133GG89dZb9jYZGRnGCy+8YFStWtXw8PAwbrnlFmP58uVGv379snUL/+effxp9+vQxfHx8DF9fX6NPnz7Gjh07ct3V/Pnz54377rvP8PPzMyQ57D8uLs4YMGCAUb58ecPd3d1o0KBBrvZZVF6fDRs2GMOGDTPq169v+Pr6Gm5ubkaVKlWM/v37GwcPHszW/vPPPzdatGhheHl5GT4+PkazZs2MDz/80KHN4sWLjVtuucXw8PAwypYta9x///3GH3/84dDmau/LTG+99ZYRGhpqeHl5Gd7e3kaDBg2MJ554wjhx4oRhGIaxfft2o3fv3kaVKlUMDw8Po0KFCkaXLl0c/u/8k/vvv9+QZERERGTbtmbNGqNbt25GUFCQ4e7ubgQFBRm9e/c2fv3113/c77XeE5kyu5p/6aWXcty+evVqo2XLlvbXuWvXrsYvv/xi356cnGw8/vjjRqNGjQxvb2+jVKlSRqNGjYw33ngjV8cOoOCwGfl9BzYAAAAAIBvu+QIAAAAAJyB8AQAAAIATEL4AAAAAwAkIXwAAAADgBIQvAAAAAHACwhcAAAAAOAGDLOdRRkaGTpw4IW9vb9lsNqvLAQAAAGARwzB07tw5BQUFycXl6ue3CF95dOLECQUHB1tdBgAAAIAC4tixY6pcufJVtxO+8sjb21u6/AL7+PhYXQ4AAAAAiyQmJio4ONieEa6G8JVHmZca+vj4EL4AAAAA/OPtSHS4AQAAAABOQPgCAAAAACcgfAEAAACAE3DPFwAAAAqt9PR0paamWl0GijhXV1eVKFHiXw8xRfgCAABAoXT+/Hn98ccfMgzD6lJQDJQsWVIVK1aUu7t7nvdB+AIAAEChk56erj/++EMlS5aUv7//vz4jAVyNYRhKSUnRqVOndOjQIdWqVeuaAylfC+ELAAAAhU5qaqoMw5C/v7+8vLysLgdFnJeXl9zc3HTkyBGlpKTI09MzT/uhww0AAAAUWpzxgrPk9WyXwz7ypRIAAAAAwDURvgAAAADACQhfAAAAQAHQtm1bjRo1ymnPFx0dLT8/P6c9343k7NcurwhfAAAAgJP0799fNpst2/Tbb79p6dKleu655+xtq1WrplmzZjk83orAtG7dOnXp0kX+/v7y9PRUjRo11LNnT3377bdOreNa/v7aFVSELwAAAMCJOnTooJMnTzpMISEhKlu2rLy9va0uz8Ebb7yhO+64Q+XKldPixYu1f/9+ffrpp2rRooUee+wxq8uzK4ivXU4IXwAAAIATeXh4KDAw0GFydXV1uHSubdu2OnLkiB577DH72bH169drwIABSkhIsK+bMmWKJCk5OVljx45VpUqVVKpUKYWFhWn9+vUOzxsdHa0qVaqoZMmSuuuuu/Tnn39es86jR49q1KhRGjVqlBYsWKDbb79dVatWVcOGDTVy5Eht3brV3vbPP/9U7969ValSJZUsWVINGjTQhx9+6LC/nM7kNW7c2H4MhmFoypQpqlKlijw8PBQUFKRHH33U3vaNN95QrVq15OnpqYCAAHXv3t2+7e+XHb733ntq0qSJvL29FRgYqPvuu0/x8fH27evXr5fNZtOaNWvUpEkTlSxZUi1atND+/ftz+a+YN4zzBQAAgKKhSRMpNtb5zxsYKF0RRPLD0qVL1ahRIw0ZMkQPPvigdPnszqxZszRp0iR7SChdurQkafjw4frll1+0aNEiBQUF6dNPP1WHDh30888/q1atWtq8ebMGDRqkqVOnKioqSitXrtTkyZOvWcMnn3yi1NRUPfHEEzluv7Kb/0uXLik0NFRPPvmkfHx89OWXX6pPnz6qUaOGmjVrlqtj/uSTTzRz5kwtWrRI9erVU2xsrHbt2iVJ2rp1qx599FG99957atGihc6cOaPvvvvuqvtKTU3Vc889p9q1ays+Pl6jR49W//79tWLFCod2Tz31lGbMmCF/f38NHTpUAwcO1IYNG3JVb14QvgAAAFA0xMZKx49bXcU/Wr58uT00SVLHjh21ZMkShzZly5aVq6ur/cxNJl9fX9lsNod1R48e1fz583X06FEFBQVJksaOHauVK1dq/vz5euGFF/Tqq6+qQ4cO9iB10003aePGjVq5cuVV6/z111/l4+Pj8FyffPKJ+vXrZ1/etGmTGjRooEqVKmns2LH29SNGjNDXX3+tjz76KNfh6+jRowoMDFRERITc3NxUpUoV+2OPHj2qUqVKqUuXLvL29lbVqlV1yy23XHVfAwcOtM9Xr15ds2fPVtOmTXX+/HmH1/6///2v2rRpI0kaN26cOnfurEuXLuV5EOV/QvgCAABA0XBFSCjIz9uuXTvNnTvXvlyqVKl/9fQ///yz0tPTddNNNzmsT05OVrly5SRJe/fu1V133eWwPTw8/JrhSzkMYh0ZGamdO3fq+PHjatu2rdLT0yVJ6enpeuGFF/TRRx/p+PHjSklJUXJyskqWLJnr4+jRo4dmzZql6tWrq0OHDurUqZO6du2qEiVK6M4771TVqlXt2zp06KC77rrrqvvftm2bpkyZol27dumvv/5SRkaGdDnE1a1b196uYcOG9vmKFStKkuLj41WlSpVc1309CF8AAAAoGvL50r8bpVSpUqpZs2a+7e/8+fNydXXVtm3b5Orq6rDtyrM816tWrVpKSEhQbGys/exX6dKlVbNmTZUo4RgjXnrpJb366quaNWuWGjRooFKlSmnUqFFKSUmxt3FxcZFhGA6PS01Ntc8HBwdr//79Wr16tWJiYvTII4/opZde0jfffCNvb29t375d69ev16pVqzRp0iRNmTJFP/74Y7beH5OSkhQZGanIyEh98MEH8vf319GjRxUZGelQjyS5ubnZ5zODZmZQuxHocAMAAAAogNzd3e1nlq617pZbblF6erri4+NVs2ZNhykzNN18883avHmzw+N++OGHaz5/9+7d5ebmphdffPEfa92wYYO6deumBx54QI0aNVL16tX166+/OrTx9/fXyZMn7cuJiYk6dOiQQxsvLy917dpVs2fP1vr167Vp0yb9/PPPkqQSJUooIiJC06dP108//aTDhw9r7dq12WrZt2+f/vzzT02bNk2tW7dWnTp1HDrbsBJnvgCgiFhyMOGG7r9HDd8bun8AgKNq1arp22+/Va9eveTh4aHy5curWrVqOn/+vNasWaNGjRqpZMmSuummm3T//ferb9++mjFjhm655RadOnVKa9asUcOGDdW5c2c9+uijatmypV5++WV169ZNX3/99T9eclilShXNmDFDI0eO1JkzZ9S/f3+FhITozJkzev/99yXJfqatVq1a+vjjj7Vx40aVKVNGr7zyiuLi4hwu8bv99tsVHR2trl27ys/PT5MmTXI4UxcdHa309HSFhYWpZMmSev/99+Xl5aWqVatq+fLl+v3333XbbbepTJkyWrFihTIyMlS7du0c63Z3d9ecOXM0dOhQ7d69u8CMAcaZLwAAAKAAevbZZ3X48GHVqFFD/v7+kqQWLVpo6NCh6tmzp/z9/TV9+nRJ0vz589W3b1+NGTNGtWvXVlRUlH788Uf7vUvNmzfX22+/rVdffVWNGjXSqlWrNHHixH+sYcSIEVq1apVOnTql7t27q1atWurUqZMOHTqklStXqkGDBpKkiRMn6tZbb1VkZKTatm2rwMBARUVFOexr/PjxatOmjbp06aLOnTsrKipKNWrUsG/38/PT22+/rZYtW6phw4ZavXq1vvjiC5UrV05+fn5aunSpbr/9dt18882aN2+ePvzwQ9WrVy9bzf7+/oqOjtaSJUtUt25dTZs2TS+//PK//NfIHzbj7xdeIlcSExPl6+urhIQE+fj4WF0OAHDmC0CxcunSJR06dEghISE3rGc64ErXes/lNhtw5gsAAAAAnIDwBQAAAABOQPgCAAAAACcgfAEAAACAExC+AAAAUGjRdxycJT/ea5aHr9dff13VqlWTp6enwsLCtGXLlmu2X7JkierUqSNPT081aNBAK1ascNi+dOlStW/fXuXKlZPNZtPOnTuz7ePSpUsaNmyYypUrp9KlS+uee+5RXFxcvh8bAAAAbozM8aFSUlKsLgXFxIULFyRJbm5ued6HpYMsL168WKNHj9a8efMUFhamWbNmKTIyUvv371eFChWytd+4caN69+6tqVOnqkuXLlq4cKGioqK0fft21a9fX5KUlJSkVq1a6d5779WDDz6Y4/M+9thj+vLLL7VkyRL5+vpq+PDhuvvuu7Vhw4YbfswAAAD490qUKKGSJUvq1KlTcnNzk4uL5ecUUEQZhqELFy4oPj5efn5+DgNDXy9Lx/kKCwtT06ZN9dprr0mSMjIyFBwcrBEjRmjcuHHZ2vfs2VNJSUlavny5fV3z5s3VuHFjzZs3z6Ht4cOHFRISoh07dqhx48b29QkJCfL399fChQvVvXt3SdK+fft08803a9OmTWrevHmuamecLwAFDeN8AShuUlJSdOjQIWVkZFhdCooBPz8/BQYGymazZduW22xg2ZmvlJQUbdu2TePHj7evc3FxUUREhDZt2pTjYzZt2qTRo0c7rIuMjNSyZcty/bzbtm1TamqqIiIi7Ovq1KmjKlWqXDN8JScnKzk52b6cmJiY6+cEAABA/nN3d1etWrW49BA3nJub278645XJsvB1+vRppaenKyAgwGF9QECA9u3bl+NjYmNjc2wfGxub6+eNjY2Vu7u7/Pz8rms/U6dO1TPPPJPr5wEAAMCN5+LiIk9PT6vLAHKFi2Nzafz48UpISLBPx44ds7okAAAAAIWIZWe+ypcvL1dX12y9DMbFxSkwMDDHxwQGBl5X+6vtIyUlRWfPnnU4+/VP+/Hw8JCHh0eunwcAAAAArmTZmS93d3eFhoZqzZo19nUZGRlas2aNwsPDc3xMeHi4Q3tJiomJuWr7nISGhsrNzc1hP/v379fRo0evaz8AAAAAcD0s7Wp+9OjR6tevn5o0aaJmzZpp1qxZSkpK0oABAyRJffv2VaVKlTR16lRJ0siRI9WmTRvNmDFDnTt31qJFi7R161a99dZb9n2eOXNGR48e1YkTJ6TLwUqXz3gFBgbK19dXgwYN0ujRo1W2bFn5+PhoxIgRCg8Pz3VPhwAAAABwvSwNXz179tSpU6c0adIkxcbGqnHjxlq5cqW9U42jR486jNnQokULLVy4UBMnTtSECRNUq1YtLVu2zD7GlyR9/vnn9vAmSb169ZIkTZ48WVOmTJEkzZw5Uy4uLrrnnnuUnJysyMhIvfHGG048cgAAAADFjaXjfBVmjPMFoKBhnC8AAKyR22xAb4cAAAAA4ASELwAAAABwAsIXAAAAADgB4QsAAAAAnIDwBQAAAABOQPgCAAAAACcgfAEAAACAExC+AAAAAMAJCF8AAAAA4ASELwAAAABwAsIXAAAAADgB4QsAAAAAnIDwBQAAAABOQPgCAAAAACcgfAEAAACAExC+AAAAAMAJCF8AAAAA4ASELwAAAABwAsIXAAAAADgB4QsAAAAAnIDwBQAAAABOQPgCAAAAACcgfAEAAACAExC+AAAAAMAJCF8AAAAA4ASELwAAAABwAsIXAAAAADgB4QsAAAAAnIDwBQAAAABOQPgCAAAAACcgfAEAAACAExC+AAAAAMAJCF8AAAAA4ASELwAAAABwAsIXAAAAADgB4QsAAAAAnIDwBQAAAABOQPgCAAAAACcgfAEAAACAExC+AAAAAMAJCF8AAAAA4ASELwAAAABwAsIXAAAAADgB4QsAAAAAnIDwBQAAAABOQPgCAAAAACcgfAEAAACAExC+AAAAAMAJCF8AAAAA4ASELwAAAABwAsIXAAAAADgB4QsAAAAAnIDwBQAAAABOQPgCAAAAACcgfAEAAACAExC+AAAAAMAJCF8AAAAA4ASELwAAAABwAsIXAAAAADgB4QsAAAAAnIDwBQAAAABOQPgCAAAAACcgfAEAAACAExC+AAAAAMAJCF8AAAAA4ASELwAAAABwAsIXAAAAADgB4QsAAAAAnIDwBQAAAABOQPgCAAAAACcgfAEAAACAExC+AAAAAMAJCF8AAAAA4ASELwAAAABwAsIXAAAAADiB5eHr9ddfV7Vq1eTp6amwsDBt2bLlmu2XLFmiOnXqyNPTUw0aNNCKFSscthuGoUmTJqlixYry8vJSRESEDhw44NDm119/Vbdu3VS+fHn5+PioVatWWrdu3Q05PgAAAACQ1eFr8eLFGj16tCZPnqzt27erUaNGioyMVHx8fI7tN27cqN69e2vQoEHasWOHoqKiFBUVpd27d9vbTJ8+XbNnz9a8efO0efNmlSpVSpGRkbp06ZK9TZcuXZSWlqa1a9dq27ZtatSokbp06aLY2FinHDcAAACA4sdmGIZh1ZOHhYWpadOmeu211yRJGRkZCg4O1ogRIzRu3Lhs7Xv27KmkpCQtX77cvq558+Zq3Lix5s2bJ8MwFBQUpDFjxmjs2LGSpISEBAUEBCg6Olq9evXS6dOn5e/vr2+//VatW7eWJJ07d04+Pj6KiYlRRERErmpPTEyUr6+vEhIS5OPjk0+vCADk3ZKDCTd0/z1q+N7Q/QMAUFjlNhtYduYrJSVF27Ztcwg7Li4uioiI0KZNm3J8zKZNm7KFo8jISHv7Q4cOKTY21qGNr6+vwsLC7G3KlSun2rVr691331VSUpLS0tL05ptvqkKFCgoNDb1qvcnJyUpMTHSYAAAAACC3LAtfp0+fVnp6ugICAhzWBwQEXPXyv9jY2Gu2z/x5rTY2m02rV6/Wjh075O3tLU9PT73yyitauXKlypQpc9V6p06dKl9fX/sUHBycxyMHAAAAUBxZ3uGGsxmGoWHDhqlChQr67rvvtGXLFkVFRalr1646efLkVR83fvx4JSQk2Kdjx445tW4AAAAAhZtl4at8+fJydXVVXFycw/q4uDgFBgbm+JjAwMBrts/8ea02a9eu1fLly7Vo0SK1bNlSt956q9544w15eXlpwYIFV63Xw8NDPj4+DhMAAAAA5JZl4cvd3V2hoaFas2aNfV1GRobWrFmj8PDwHB8THh7u0F6SYmJi7O1DQkIUGBjo0CYxMVGbN2+2t7lw4YJ0+f6yK7m4uCgjIyMfjxAAAAAAspSw8slHjx6tfv36qUmTJmrWrJlmzZqlpKQkDRgwQJLUt29fVapUSVOnTpUkjRw5Um3atNGMGTPUuXNnLVq0SFu3btVbb70lXb6fa9SoUXr++edVq1YthYSE6Omnn1ZQUJCioqKkywGuTJky6tevnyZNmiQvLy+9/fbbOnTokDp37mzhqwEAAACgKLM0fPXs2VOnTp3SpEmTFBsbq8aNG2vlypX2DjOOHj3qcIaqRYsWWrhwoSZOnKgJEyaoVq1aWrZsmerXr29v88QTTygpKUlDhgzR2bNn1apVK61cuVKenp7S5csdV65cqaeeekq33367UlNTVa9ePX322Wdq1KiRBa8CAAAAgOLA0nG+CjPG+QJQ0DDOFwAA1ijw43wBAAAAQHFC+AIAAAAAJyB8AQAAAIATEL4AAAAAwAkIXwAAAADgBIQvAAAAAHACwhcAAAAAOAHhCwAAAACcgPAFAAAAAE5A+AIAAAAAJyB8AQAAAIATEL4AAAAAwAkIXwAAAADgBIQvAAAAAHACwhcAAAAAOAHhCwAAAACcgPAFAAAAAE5A+AIAAAAAJyB8AQAAAIATEL4AAAAAwAkIXwAAAADgBIQvAAAAAHACwhcAAAAAOAHhCwAAAACcgPAFAAAAAE5A+AIAAAAAJyB8AQAAAIATEL4AAAAAwAkIXwAAAADgBIQvAAAAAHACwhcAAAAAOAHhCwAAAACcgPAFAAAAAE5A+AIAAAAAJyB8AQAAAIATEL4AAAAAwAkIXwAAAADgBIQvAAAAAHACwhcAAAAAOAHhCwAAAACcgPAFAAAAAE5A+AIAAAAAJyB8AQAAAIATEL4AAAAAwAkIXwAAAADgBIQvAAAAAHACwhcAAAAAOAHhCwAAAACcgPAFAAAAAE5A+AIAAAAAJyB8AQAAAIATEL4AAAAAwAlKWF0AAKBwWHIw4Ybtu0cN3xu2bwAACgrOfAEAAACAExC+AAAAAMAJCF8AAAAA4ASELwAAAABwAsIXAAAAADgB4QsAAAAAnIDwBQAAAABOQPgCAAAAACcgfAEAAACAExC+AAAAAMAJCF8AAAAA4ASELwAAAABwAsIXAAAAADgB4QsAAAAAnIDwBQAAAABOQPgCAAAAACcgfAEAAACAExC+AAAAAMAJCF8AAAAA4ASELwAAAABwAsIXAAAAADiB5eHr9ddfV7Vq1eTp6amwsDBt2bLlmu2XLFmiOnXqyNPTUw0aNNCKFSscthuGoUmTJqlixYry8vJSRESEDhw4kG0/X375pcLCwuTl5aUyZcooKioq348NAAAAADJZGr4WL16s0aNHa/Lkydq+fbsaNWqkyMhIxcfH59h+48aN6t27twYNGqQdO3YoKipKUVFR2r17t73N9OnTNXv2bM2bN0+bN29WqVKlFBkZqUuXLtnbfPLJJ+rTp48GDBigXbt2acOGDbrvvvuccswAAAAAiiebYRiGVU8eFhampk2b6rXXXpMkZWRkKDg4WCNGjNC4ceOyte/Zs6eSkpK0fPly+7rmzZurcePGmjdvngzDUFBQkMaMGaOxY8dKkhISEhQQEKDo6Gj16tVLaWlpqlatmp555hkNGjQoz7UnJibK19dXCQkJ8vHxyfN+ACC/LDmYYHUJedajhq/VJQAAkGe5zQaWnflKSUnRtm3bFBERkVWMi4siIiK0adOmHB+zadMmh/aSFBkZaW9/6NAhxcbGOrTx9fVVWFiYvc327dt1/Phxubi46JZbblHFihXVsWNHh7NnOUlOTlZiYqLDBAAAAAC5ZVn4On36tNLT0xUQEOCwPiAgQLGxsTk+JjY29prtM39eq83vv/8uSZoyZYomTpyo5cuXq0yZMmrbtq3OnDlz1XqnTp0qX19f+xQcHJyn4wYAAABQPFne4YazZWRkSJKeeuop3XPPPQoNDdX8+fNls9m0ZMmSqz5u/PjxSkhIsE/Hjh1zYtUAAAAACjvLwlf58uXl6uqquLg4h/VxcXEKDAzM8TGBgYHXbJ/581ptKlasKEmqW7eufbuHh4eqV6+uo0ePXrVeDw8P+fj4OEwAAAAAkFt5Cl+Zl+79G+7u7goNDdWaNWvs6zIyMrRmzRqFh4fn+Jjw8HCH9pIUExNjbx8SEqLAwECHNomJidq8ebO9TWhoqDw8PLR//357m9TUVB0+fFhVq1b918cFAAAAADnJU/iqWbOm2rVrp/fff9+hC/frNXr0aL399ttasGCB9u7dq4cfflhJSUkaMGCAJKlv374aP368vf3IkSO1cuVKzZgxQ/v27dOUKVO0detWDR8+XJJks9k0atQoPf/88/r888/1888/q2/fvgoKCrKP4+Xj46OhQ4dq8uTJWrVqlfbv36+HH35YktSjR488HwsAAAAAXEuJvDxo+/btmj9/vkaPHq3hw4erZ8+eGjRokJo1a3Zd++nZs6dOnTqlSZMmKTY2Vo0bN9bKlSvtHWYcPXpULi5Z+bBFixZauHChJk6cqAkTJqhWrVpatmyZ6tevb2/zxBNPKCkpSUOGDNHZs2fVqlUrrVy5Up6envY2L730kkqUKKE+ffro4sWLCgsL09q1a1WmTJm8vBwAAAAA8I/+1ThfaWlp+vzzzxUdHa2VK1fqpptu0sCBA9WnTx/5+/vnb6UFDON8AShoGOcLAABrOGWcrxIlSujuu+/WkiVL9OKLL+q3337T2LFjFRwcrL59++rkyZP/ZvcAAAAAUGT8q/C1detWPfLII6pYsaJeeeUVjR07VgcPHlRMTIxOnDihbt265V+lAAAAAFCI5emer1deeUXz58/X/v371alTJ7377rvq1KmT/f6skJAQRUdHq1q1avldLwAAAAAUSnkKX3PnztXAgQPVv39/+7hZf1ehQgX973//+7f1AQAAAECRkKfwFRMToypVqjj0RChJhmHo2LFjqlKlitzd3dWvX7/8qhMAAAAACrU83fNVo0YNnT59Otv6M2fOKCQkJD/qAgAAAIAiJU/h62q9058/f95hPC0AAAAAgOm6LjscPXq0JMlms2nSpEkqWbKkfVt6ero2b96sxo0b53+VAAAAAFDIXVf42rFjh3T5zNfPP/8sd3d3+zZ3d3c1atRIY8eOzf8qAQAAAKCQu67wtW7dOknSgAED9Oqrr15z9GYAAAAAQJY89XY4f/78/K8EAAAAAIqwXIevu+++W9HR0fLx8dHdd999zbZLly7Nj9oAAAAAoMjIdfjy9fWVzWazzwMAAAAAci/X4evKSw257BAAAAAArk+exvm6ePGiLly4YF8+cuSIZs2apVWrVuVnbQAAAABQZOQpfHXr1k3vvvuuJOns2bNq1qyZZsyYoW7dumnu3Ln5XSMAAAAAFHp5Cl/bt29X69atJUkff/yxAgMDdeTIEb377ruaPXt2ftcIAAAAAIVensLXhQsX5O3tLUlatWqV7r77brm4uKh58+Y6cuRIftcIAAAAAIVensJXzZo1tWzZMh07dkxff/212rdvL0mKj49n4GUAAAAAyEGewtekSZM0duxYVatWTWFhYQoPD5cunwW75ZZb8rtGAAAAACj0ct3V/JW6d++uVq1a6eTJk2rUqJF9/R133KG77rorP+sDAAAAgCIhT+FLkgIDAxUYGOiwrlmzZvlREwAAAAAUOXkKX0lJSZo2bZrWrFmj+Ph4ZWRkOGz//fff86s+AAAAACgS8hS+Bg8erG+++UZ9+vRRxYoVZbPZ8r8yAAAAAChC8hS+vvrqK3355Zdq2bJl/lcEAAAAAEVQnno7LFOmjMqWLZv/1QAAAABAEZWn8PXcc89p0qRJunDhQv5XBAAAAABFUJ4uO5wxY4YOHjyogIAAVatWTW5ubg7bt2/fnl/1AQAAAECRkKfwFRUVlf+VAAAAAEARlqfwNXny5PyvBAAAAACKsDzd8yVJZ8+e1TvvvKPx48frzJkz0uXLDY8fP56f9QEAAABAkZCnM18//fSTIiIi5Ovrq8OHD+vBBx9U2bJltXTpUh09elTvvvtu/lcKAAAAAIVYns58jR49Wv3799eBAwfk6elpX9+pUyd9++23+VkfAAAAABQJeQpfP/74ox566KFs6ytVqqTY2Nj8qAsAAAAAipQ8hS8PDw8lJiZmW//rr7/K398/P+oCAAAAgCIlT+HrP//5j5599lmlpqZKkmw2m44ePaonn3xS99xzT37XCAAAAACFXp7C14wZM3T+/Hn5+/vr4sWLatOmjWrWrClvb2/997//zf8qAQAAAKCQy1Nvh76+voqJidGGDRu0a9cunT9/XrfeeqsiIiLyv0IAAAAAKAKuO3xlZGQoOjpaS5cu1eHDh2Wz2RQSEqLAwEAZhiGbzXZjKgUAAACAQuy6Ljs0DEP/+c9/NHjwYB0/flwNGjRQvXr1dOTIEfXv31933XXXjasUAAAAAAqx6zrzFR0drW+//VZr1qxRu3btHLatXbtWUVFRevfdd9W3b9/8rhMAAAAACrXrOvP14YcfasKECdmClyTdfvvtGjdunD744IP8rA8AAAAAioTrCl8//fSTOnTocNXtHTt21K5du/KjLgAAAAAoUq4rfJ05c0YBAQFX3R4QEKC//vorP+oCAAAAgCLlusJXenq6SpS4+m1irq6uSktLy4+6AAAAAKBIua4ONwzDUP/+/eXh4ZHj9uTk5PyqCwAAAACKlOsKX/369fvHNvR0CAAAAADZXVf4mj9//o2rBAAAAACKsOu65wsAAAAAkDeELwAAAABwAsIXAAAAADgB4QsAAAAAnIDwBQAAAABOQPgCAAAAACcgfAEAAACAExC+AAAAAMAJrmuQZQBAIWYY8jgdL+/fD8j70G/yijupFL8yulQ+QJcqBOiSf4Aula+gtNLeVlcKAECRRPgCgKLIMFRuxxZV2LBe3ocOyvvQAXkfOii384n/+NC0kqV00T9Ap8Ja6Vinu3SqeWsZJfhzAQDAv8VfUwAoQtzP/KmqyxYp5KP35Pvbvjzto8SFJHkf+V3eR35X9Y/e1aWy5XW8w390rGOUTjVrKbm65nvdAAAUBzbDMAyriyiMEhMT5evrq4SEBPn4+FhdDoDiLCNDWrtWR2fNVaVVy+WampKtiWGzKalyFZ0LqaVz1WvqfLWauhBUWW4JZ+V5Ol6ep+LkdSpOnqfi5HkqXqX+OCLX5EvZ9nOpfAX90aGbfu/VTwl16ufbIfSo4Ztv+wIAwNlymw0IX3lE+AJgudRU6fXXpTlzpN9/z7b5VNNwHb7nfp1pGKrzVUOU4eGZ6127XrygwPUxCl7xqSqu+1olLl102G7YbDrUo492j56o5PIV/vWhEL4AAIUZ4esGI3wByIslBxPyZT9lt29R6NOj5Lf/F4f1l8qW15G7e+v3e/vqfPVa+fJcrknnVXH9KgV/uVQV18fINSXZvi21lLf2PjJGB/o/rAwPj3x5vhuBcAcAuJEIXzcY4QtAXvzb8OWWeFb1X35ONT78P9ku//o2bDbFtWyn33v204k7Ospwd8+narMrcf6cqi+KVt3XXnLovON8cDX9NO5ZHW/fVbLZbtjz5xXhCwBwI+U2GzDOFwAUBoahyl8uVWRkmGou/J89eP1Vr5HWLF2r76KX6njHbjc0eElSWmlv/Tp4hL5as00Hew+Q4WL+GSl97LBaDOurNg90le++3Te0BgAACivCFwAUcKWOHlbrgd0VPnKgvE7FSZe7g9/51Ata88ka/dXgFqfXlFzOX9ufm6mYz79VXPht9vUVNn+vO+66XSGLop1eEwAABR3hCwAKsKCY5WrfpaUCv1tjX3c8opNWrtysAwMesXz8rYQ69fXtu59pw9wPdL5KiCTJNTVFTSaOUuiER+WSQ4+JAAAUV4QvACiIDEO135ylFo/0UYkLSZKkC4GVtGHu+9o4b6EuBlW2usIsNptO3NlZX3/1g37tP9S+uvpH76pd707yOvGHpeUBAFBQEL4AoIBxSU5W0yceVsOXptjv7Tratbu+XvmDTtzZxeryrirDw0O7Jk7T5hlvKc3TS5JU9qftiohqK/8fvrO6PAAALEf4AoACxP3P02rTt5uqfbrIvm73Y09p8ytvK620t6W15dbRbvdq7Udf63xwVUmS55nTuq1flGr97zWJDnYBAMUY4QsACgifX39RxD23q/y2HyRJaZ5e2jhngfYOe7xAdt9+LQl1G2r1p+sV2/oOSZJLeroaT52osNEPyiU5+R8fDwBAUUT4AoACIHD9Kt3eI1Kl/jgqSboYUFHrP1yh4x27WV1anqX6ldF373ykXx4Za19X5YuPFT68LwEMAFAsEb4AwGLBny9RqyG95JZ0Tro8dtdqi7qQz3eurtozeqI2vPGe/T6woHVfq8UjD9ATIgCg2CF8AYCFKn31mZo9PlS2jAxJ0h+R/9G6RV/pUmCQ1aXlqxPtu+q7/y1RmldJSVLFb2LUcuj9crl00erSAABwGsIXAFik4uoVav7YILmkp0uSDt43UJvmRCv9ckApak6HtdJ3//ex0kqWkiQFfrdGLR+6T64XL1hdGgAATkH4AgALBHyzWuEj+sslLU2SdKj7/do+5WXJpWj/Wj7dtIW+nf+JUkuVliQFblinlkN6EcAAAMVCgfgr//rrr6tatWry9PRUWFiYtmzZcs32S5YsUZ06deTp6akGDRpoxYoVDtsNw9CkSZNUsWJFeXl5KSIiQgcOHMhxX8nJyWrcuLFsNpt27tyZr8cFADmpsPEbtXzkAbmmpkiSjvznXm397+wiH7wy/RnaXN/N/0Sppcyu8wM2fatWg++V6+XBpAEAKKos/0u/ePFijR49WpMnT9b27dvVqFEjRUZGKj4+Psf2GzduVO/evTVo0CDt2LFDUVFRioqK0u7du+1tpk+frtmzZ2vevHnavHmzSpUqpcjISF26lP3m7ieeeEJBQUXr3goABVf5Hzeq5UO95Xq5s4ljHbrpx+lvSK6uVpfmVH/eGqZvo5cqtbSPJKnC5u/VelAPAhgAoEizGYa1I16GhYWpadOmeu211yRJGRkZCg4O1ogRIzRu3Lhs7Xv27KmkpCQtX77cvq558+Zq3Lix5s2bJ8MwFBQUpDFjxmjsWLN744SEBAUEBCg6Olq9evWyP+6rr77S6NGj9cknn6hevXrasWOHGjdunKu6ExMT5evrq4SEBPn4+OTDKwGgyPvhB6VG3Cm3pPOSpON3dNSm196V4eZmdWWWKbNrm27rf5fczyVKko5HdNLG19/L9zDao4Zvvu4PAIAr5TYbWHrmKyUlRdu2bVNERERWQS4uioiI0KZNm3J8zKZNmxzaS1JkZKS9/aFDhxQbG+vQxtfXV2FhYQ77jIuL04MPPqj33ntPJUv+883tycnJSkxMdJgAINd27ZI6dLAHr5O3ReiH2dHFOnhJ0l+NQvXtu5/Zz4BVWr1CjaY9bXVZAADcEJaGr9OnTys9PV0BAQEO6wMCAhQbG5vjY2JjY6/ZPvPntdoYhqH+/ftr6NChatKkSa5qnTp1qnx9fe1TcHDwdRwpgGItNlbq0kVKSJAkxYXfpo1vvKcMDw+rKysQ/mpwizbNiVbG5bNdN81/QzXee9vqsgAAyHeW3/NlhTlz5ujcuXMaP358rh8zfvx4JSQk2Kdjx47d0BoBFBGXLklRUdIff0iS/mwUqg1vfqiMywMOwxTX+nZtf+YV+/Itzz2pwHVfW1oTAAD5zdLwVb58ebm6uiouLs5hfVxcnAIDA3N8TGBg4DXbZ/68Vpu1a9dq06ZN8vDwUIkSJVSzZk1JUpMmTdSvX78cn9fDw0M+Pj4OEwBck2FIgwZJmzeby8HB2jBvodIvj3MFR4d69dO+IaMkSbaMDIWPHCi/PbusLgsAgHxjafhyd3dXaGio1qxZY1+XkZGhNWvWKDw8PMfHhIeHO7SXpJiYGHv7kJAQBQYGOrRJTEzU5s2b7W1mz56tXbt2aefOndq5c6e9q/rFixfrv//97w05VgDF0AsvSAsXmvMlS0qff65k/4B/elSx9vPYSTrWMUqSVOJCkloN6SWvk8etLgsAgHxRwuoCRo8erX79+qlJkyZq1qyZZs2apaSkJA0YMECS1LdvX1WqVElTp06VJI0cOVJt2rTRjBkz1LlzZy1atEhbt27VW2+9JUmy2WwaNWqUnn/+edWqVUshISF6+umnFRQUpKgo8w96lSpVHGooXdoc7LNGjRqqXLmyk18BAEXSJ59IEydmLX/wgdS4sXQwwcqqCj4XF215aa68Yk+o/I4t8oo7qVZDemrdh18prbS31dUBAPCvWB6+evbsqVOnTmnSpEmKjY1V48aNtXLlSnuHGUePHpXLFQOPtmjRQgsXLtTEiRM1YcIE1apVS8uWLVP9+vXtbZ544gklJSVpyJAhOnv2rFq1aqWVK1fK09PTkmMEUMxs3y716ZO1PHWqed8XciXD00sb5i3UHd0jVPrYYfnt3a3mIwdqw5sfyihh+Z8tAADyzPJxvgorxvkCkKOTJ6WmTaXjly+V69NHWrBAstkkSUs485Vr3gd/1e33tpd7wllJ0v5Bw/XT+OfztC/G+QIA3EiFYpwvAChSLl6UunXLCl4tWkhvv20PXrg+52rcpA1vvK+My2Oh1f7fawpa9YXVZQEAkGeELwDILw8/LP34ozlfpYr06acSY3n9K6fDWmnXFWe7mj0xTKWOHLK0JgAA8orwBQD5ITravLxQkkqVkr74QqpQweqqioTf+gzRsU53SZLczicqfHhfuVy6aHVZAABcN8IXAPxbe/ZIjzyStfz221LDhlZWVLTYbNr6wmwlVq8lSSqz92fd8uyTVlcFAMB1I3wBwL+RlCT16GHe7yVJDz0k9e5tdVVFTlppb2167V2leZWUJFX/6F1V/eQDq8sCAOC6EL4A4N8YNkzau9ecb9RImjnT6oqKrMSbbta2Z1+xL4dOGiPfvT9bWhMAANeD8AUAeXXlfV6lS0sffSR5eVldVZF29K5eOth7gCTJNfmSwof3U4lzdN8PACgcCF8AkBd/v8/rrbekm26ysqJiY+fEqfqrXiNJkveR39V03AiJISsBAIUA4QsArtff7/MaMoT7vJwow8NTG19boBQfc+Dkyl9/rprvvml1WQAA/CPCFwBcryvv82rYUJo1y+qKip0LwdW05aV59uWGL06Wz/49ltYEAMA/IXwBwPVYsID7vAqIk3d01K8DzEs/XVOSFTb6QbkkX7K6LAAArorwBQC59fvv0vDhWctvvSXVrm1lRcXez2Mn6WztupIkv/2/qP6M56wuCQCAqyJ8AUBupKdLfftK58+bywMHcp9XAZDh4anNr7ytdDd3SVLt/3tdFTast7osAAByRPgCgNx46SVpwwZzPiSE+7wKkMTa9fTz45Pty82eeFjuf52xtCYAAHJC+AKAf7JjhzRpkjnv4iK9957k7W11VbjCgf4PK65lW0mSV9xJhU4cRffzAIACh/AFANdy6ZL0wANSaqq5/OSTUsuWVleFv3Nx0Zbpc5XsV0a63P181aULra4KAAAHhC8AuJYJE6RffjHnGzeWpkyxuiJcxaWAitr2fNbloLc8+6RKHTlkaU0AAFyJ8AUAV7NmjTRzpjnv4SG9/77k7m51VbiG4x266VD3+yVJbknn1WzsQ7KlpVldFgAAEuELAK7i7Fmpf/+s5WnTpHr1rKwIubRz4jSdD64mSSq/Y4vqzHvF6pIAAJAIXwBwFcOHS3/8Yc7ffrv06KNWV4RcSivtrc0z3pLhYv6Jq/vadGnnTqvLAgCA8AUA2Xz0kfTBB+a8r68UHW32cohC48ytzbR36GhJkktamnkWMyXF6rIAAMUcnyYA4EqxsdLDD2ctv/GGFBxsZUXIo73DHlfCTXXNhV27pBdesLokAEAxR/gCgEyGIT3yiHTm8gC9PXpIvXtbXRXyKMPDQ1umv6EMV1dzxX//y+WHAABLEb4AINNHH0mffmrO+/tLr78u2WxWV4V/4Wz9xto39DFzIS1N6tePyw8BAJYhfAGAJMXHm51sZHr9dTOAodD7ZdgTUoMG5sJPP5lnwAAAsADhCwB0uXfD06fN+XvuMS85RJFguLubnaZkXn74wgvSjh1WlwUAKIYIXwDw8cfSkiXmfLly5lkvFC233ipNmGDO0/shAMAihC8Axdvp02YnG5nmzJECAqysCDfKxIlSw4bmPJcfAgAsQPgCULw9+qh06pQ5362b1KuX1RXhRsm8/LBECXOZyw8BAE5G+AJQfC1bJn34oTlfpow0dy69GxZ1t9yS/fLD1FSrqwIAFBOELwDF05kz0tChWcuvvipVrGhlRXCWp55yvPxw+nSrKwIAFBOELwDF08iRUlycOd+li/TAA1ZXBGdxd5f+7/8kl8t/Ap99Vtq71+qqAADFAOELQPHz1VfS+++b876+0rx5XG5Y3ISGSmPHmvMpKdLgwVJGhtVVAQCKOMIXgOLl3DnpoYeyll95RapUycqKYJUpU6SaNc35jRulN96wuiIAQBFH+AJQvEyYIB07Zs7fcYc0YIDVFcEqXl7S229nLY8bJx05YmVFAIAijvAFoPjYuDFrAGUvL+mtt7jcsLhr2zbrTGhSktkJi2FYXRUAoIgifAEoHpKTzft6Mj9YP/ecVL261VWhIHjxRSkoyJxfuTLrfkAAAPIZ4QtA8fDCC1k92jVpYvZ2COiKTlcyjRolxcdbWREAoIgqYXUBAHDD7d4tTZ1qzpcoIf3vf+bPHCw5mODc2lAwdO0q9eolLVpkjgH36KPmPAAA+YgzXwCKtvR083LD1FRz+cknswbYBa706qtS2bLm/OLF0uefW10RAKCIIXwBKNrmzJE2bzbna9eWJk60uiIUVBUqmAEs08MPSwmcCQUA5B/CF4Ci69Ah6amnspbfeUfy9LSyIhR0998vdexozp84YXY/DwBAPiF8ASiaDMPsNvzCBXP5kUekVq2srgoFnc0mzZ0rlSplLs+bJ33/vdVVAQCKCMIXgKLpvfekVavM+cqVszrcAP5J1apm75iZHnxQunTJyooAAEUE4QtA0RMfLz32WNbyvHmSj4+VFaGwGTZMCgsz5/ftcwxjAADkEeELQNEzapTZXbhkdh/eubPVFaGwcXU17xHMHJJg6lTp55+trgoAUMgRvgAULStWSB9+aM6XLevYex1wPerXl8aPN+fT0szLD9PTra4KAFCIEb4AFB3nzpmdbGR65RWz+3Agr556SqpTx5zfvFl6/XWrKwIAFGKELwBFx8SJ0rFj5nxEhNS3r9UVobDz8JDefjtrecIE6cgRKysCABRihC8ARcMPP5gDKkuSl5f05ptmt+HAv9WqlTngsiQlJZnzhmF1VQCAQojwBaDwS0mRBg/O+kD83HNS9epWV4WiZOpUqVIlc/6rr7LuKwQA4DoQvgAUfi++KO3ZY86HhkojR1pdEYoaX1/H+71GjpROn7ayIgBAIUT4AlC47d0rPf+8Of/37sGB/NStm9S9uzl/+rTjWHIAAOQC4QtA4ZWRYXb/nZJiLj/+uNS4sdVVoSibM0cqU8acf/99aeVKqysCABQihC8Ahde8edKGDeZ8zZrSpElWV4SiLjBQmjEja/mhh8whDgAAyAXCF4DC6ehR6ckns5bfesvs5RC40fr3N4cy0OX34YQJVlcEACgkCF8ACh/DMAdTPn/eXH7wQaldO6urQnFhs5lDGZQsaS6//rq0caPVVQEACgHCF4DC54MPzO6+JSkoSJo+3eqKUNxUr24OaaDLXwYMHiwlJ1tdFQCggCN8AShc4uMdu5KfO1fy87OyIhRXI0dKTZua83v3Sv/9r9UVAQAKOMIXgMJl5EjpzBlz/t57pf/8x+qKUFz9fWiDqVOln3+2uioAQAFG+AJQeHz+ubRokTlftqw0e7bVFaG4a9hQGjfOnE9LMy8/TE+3uioAQAFF+AJQOCQkSA8/nLU8a5YUEGBlRYBp4kSpTh1zfssWvhQAAFwV4QtA4fDEE9KJE+Z8hw7SAw9YXRFg8vAwLz+02czlp56SDh60uioAQAFE+AJQ8K1fb47jJUmlSpmDK2d+0AUKgpYtpWHDzPmLF83LDzMyrK4KAFDAEL4AFGwXLpjjeGWaNk2qWtXKioCcTZ2a9d5cv94cCwwAgCsQvgAUbE8/Lf32mznfsqX0yCNWVwTkrHRp8/LDTI8/Lh0+bGVFAIAChvAFoODasEGaOdOcz7yvxoVfWyjAIiKkIUPM+aQk86ytYVhdFQCggOBTDICC6eJFacCArA+uzz6b1aMcUJC99JIUHGzOr17teDYMAFCsEb4AFExPPy0dOGDOh4VJY8ZYXRGQOz4+0ttvZy2PGSMdO2ZlRQCAAoLwBaDg2bhReuUVc97DQ5o/X3J1tboqIPciI80zt5J07px5KSKXHwJAsUf4AlCw5HS54c03W10VcP1eeUUKCjLnV66UoqOtrggAYDHCF4CC5emnpV9/NeebNZNGj7a6IiBv/PyyxqeTpMcek44ft7IiAIDFCF8ACo6/X24YHS2VKGF1VUDede4s9eljzickSEOHcvkhABRjhC8ABcPfLzd85hkuN0TRMGuWFBhozi9fLi1YYHVFAACLFIjw9frrr6tatWry9PRUWFiYtmzZcs32S5YsUZ06deTp6akGDRpoxYoVDtsNw9CkSZNUsWJFeXl5KSIiQgcye02TdPjwYQ0aNEghISHy8vJSjRo1NHnyZKWkpNywYwTwDyZNcrzckN4NUVSULSvNm5e1PHKkdOSIlRUBACxiefhavHixRo8ercmTJ2v79u1q1KiRIiMjFR8fn2P7jRs3qnfv3ho0aJB27NihqKgoRUVFaffu3fY206dP1+zZszVv3jxt3rxZpUqVUmRkpC5duiRJ2rdvnzIyMvTmm29qz549mjlzpubNm6cJEyY47bgBXGHTpqzLDd3dzd4NudwQRUm3blK/fuZ8YqJ5ljcjw+qqAABOZjMMay8+DwsLU9OmTfXaa69JkjIyMhQcHKwRI0Zo3Lhx2dr37NlTSUlJWr58uX1d8+bN1bhxY82bN0+GYSgoKEhjxozR2LFjJUkJCQkKCAhQdHS0evXqlWMdL730kubOnavff/89V3UnJibK19dXCQkJ8vHxyePRA9D581LjxtLBg+bytGnSk09aVs6SgwmWPTdunB41fK0uwbznq0GDrDG/Zs0yz4IBAAq93GYDS898paSkaNu2bYqIiMgqyMVFERER2rRpU46P2bRpk0N7SYqMjLS3P3TokGJjYx3a+Pr6Kiws7Kr71OWAVrZs2atuT05OVmJiosMEIB+MGZMVvMLDudwQRZevr2N38+PGSXv3WlkRAMDJLA1fp0+fVnp6ugICAhzWBwQEKDY2NsfHxMbGXrN95s/r2edvv/2mOXPm6KGHHrpqrVOnTpWvr699Cg4OzuVRAriq5cuzuuIuVUp6910uN0TRdvvtWWe7Ll2S+vaVUlOtrgoA4CSW3/NltePHj6tDhw7q0aOHHnzwwau2Gz9+vBISEuzTsczLRgDkTXy8NGhQ1vLMmVLNmlZWBDjH1KlSnTrm/Nat0gsvWF0RAMBJLA1f5cuXl6urq+Li4hzWx8XFKTCzW96/CQwMvGb7zJ+52eeJEyfUrl07tWjRQm9dORBmDjw8POTj4+MwAcgjw5CGDDEDmCR16SINHmx1VYBzeHmZZ3ldXc3l554zQxgAoMizNHy5u7srNDRUa9assa/LyMjQmjVrFB4enuNjwsPDHdpLUkxMjL19SEiIAgMDHdokJiZq8+bNDvs8fvy42rZtq9DQUM2fP18uLsX+JCDgPPPnS599Zs77+0vvvCPZbFZXBThP06bSxInmfHq6ORDzxYtWVwUAuMEsTxyjR4/W22+/rQULFmjv3r16+OGHlZSUpAEDBkiS+vbtq/Hjx9vbjxw5UitXrtSMGTO0b98+TZkyRVu3btXw4cMlSTabTaNGjdLzzz+vzz//XD///LP69u2roKAgRUVFSVcErypVqujll1/WqVOnFBsbe9V7wgDko99/d+zh7e23pb/dowkUC089JYWGmvP79kkMdwIARZ7ld7b37NlTp06d0qRJkxQbG6vGjRtr5cqV9g4zjh496nBWqkWLFlq4cKEmTpyoCRMmqFatWlq2bJnq169vb/PEE08oKSlJQ4YM0dmzZ9WqVSutXLlSnp6e0uUzZb/99pt+++03Va5c2aEei3veB4q29HSzg4Hz583lQYPM8Y+A4sjNTXrvPemWW6TkZLPr+S5dpDvusLoyAMANYvk4X4UV43wBeTBtmpR5JjskRNq1S/L2troqB4zzVTQViHG+rmbWLOmxx8z5ihXN/xf+/lZXBQC4DrnNBpaf+QJQTOzYIU2aZM67uJjf+OcxeBGQUKQ8+qi0YoUUEyOdPCkNGCB98QX3QQJAEWT5PV8AioHz56VevbLGM3rySallS6urAgoGFxez98PMs11ffinNmWN1VQCAG4DwBeDGe+QR6ddfzfnQUGnKFKsrAgqWwEBpwYKs5ccfl3butLIiAMANQPgCcGMtWGBeYiiZlxkuWiS5u1tdFVDwdOwojR5tzqekmGeLk5KsrgoAkI8IXwBunH37zLNemd58U6pZ08qKgILthRekW2815/fvdxyWAQBQ6BG+ANwYFy9KPXtKFy6Yy4MGSb17W10VULB5eEgffiiVKmUu/+9/0uLFVlcFAMgnhC8AN8bYsdJPP5nzdetKs2dbXRFQONx0k/T661nLQ4ZIhw5ZWREAIJ8QvgDkv08+kd54w5z39DS/uS9Z0uqqgMKjb1/pvvvM+cREcz6zt1AAQKFF+AKQvw4fNi8xzDR7tlS/vpUVAYWPzSbNnWsORi5JP/wgTZxodVUAgH+J8AUg/6Smmvd1JVweBPnee6XBg62uCiicfHzM3kFLlDCXp0+XPv3U6qoAAP8C4QtA/hk/3vyGXpKqV5feesv8Bh9A3jRrJr38ctZyv35ZY+YBAAodwheA/LF4sTRjhjnv5mZ+Y+/ra3VVQOH36KNmz6GSdO6cdPfdjP8FAIUU4QvAv7d7tzRwYNbyK69ITZtaWRFQdNhs0jvvmL2GStKePdKDD0qGYXVlAIDrRPgC8O+cPSvddVfWeF59+0rDhlldFVC0lC4tLV0qeXubyx9+KL32mtVVAQCuE+ELQN5lZEj33y/99pu5fOut0rx53OcF3Ai1a0vz52ctjx4tbdxoZUUAgOtE+AKQd888I61YYc6XK2d+M+/lZXVVQNF1zz3mAOaSlJYm9eghxcVZXRUAIJdKWF0AgELqiy+kZ581511czA42qlaVJC05mGBtbUBRNnWqtHWrtH69dOKE1KuXFBOT1SU9AKDA4swXgOv366/SAw9kLU+dKkVEWFkRUHyUKGF+2REUZC6vXy89/rjVVQEAcoHwBeD6nDtndrCRmGgud+/OBz/A2QICpCVLss52zZpljqsHACjQCF8Aci8jwxzk9ZdfzOW6daX/+z862ACs0KKF9MYbWcuPPCKtXm1lRQCAf0D4ApB7TzwhffqpOe/jY85ndn0NwPkefNDs9VCS0tPNM9H79lldFQDgKghfAHJn7lxpxgxz3tVVWrxYuukmq6sCMH261KWLOZ+QYM7/+afVVQEAckD4AvDPVqyQhg/PWn7jDalDBysrApDJ1VVauFBq2NBcPnhQuvtuKSXF6soAAH9D+AJwbTt3Sj17mvd7SWbnGkOGWF0VgCt5e0vLl0uBgebyt99KQ4dKhmF1ZQCAKxC+AFzdH39InTtL58+by927S9OmWV0VgJwEB0uffSZ5eprL8+dLL71kdVUAgCsQvgDk7Nw5896REyfM5ebNpXffNQdUBlAwNWtm/j/NNG6ctHSplRUBAK7ApygA2aWlmZca7tplLoeEmN+oe3lZXRmAf9Kjh/T88+a8YUi9e0tr11pdFQCA8AUgG8MwO9f46itz2c/P7HCjQgWrKwOQWxMmmGPySWbHG926ST/+aHVVAFDsEb4AZDEM6cknpTffNJfd3MyxvOrUsboyANfDZpPeflv6z3/M5fPnpY4dswZIBwBYgvAFIMvzz2fdoG+zSdHRUtu2VlcFIC/c3Mzx+Nq0MZf//FNq3146fNjqygCg2CJ8ATDNnClNmpS1PG+edN99VlYE4N/y9JQ+/1y69VZz+fhx6c47pbg4qysDgGKJ8AXAvDxp9Ois5RkzGMsLKCp8fKSVK6Xatc3l336TIiOls2etrgwAip0SVhcAwGILF0oPPZS1/MwzjkEMKAKWHEy4YfvuUcP3hu073/j7SzExUsuW0rFjZk+mXbpIq1ZJJUtaXR0AFBuc+QKKs2XLpL59zY42JGnsWOnpp62uCsCNEBxsBjB/f3N5wwbprrukCxesrgwAig3CF1BcrVpljuWVnm4uDx0qTZ9udrQBoGiqXdu8BNHHx1xetUrq3NnsDREAcMMRvoDiaPlyswvqlBRzuU8f6fXXCV5AcXDrrebYfd7e5vL69eY9YAk37tJMAICJ8AUUN4sWmZcaJSeby3ffLf3f/0ku/DoAio2WLaXVq81B1CVp40YpIkI6c8bqygCgSOPTFlCcvPWW2X18Wpq53KuXGcZK0PcOUOw0ayatXSuVK2cub90q3X67dOqU1ZUBQJFF+AKKi5dfNns1zOxcY8gQ6f33zYFYARRPt9wiffONFBBgLu/aZQ7KfPKk1ZUBQJFE+AKKOsMwezB8/PGsdY8/bg6i7OpqZWUACoJ69aRvv5UqVTKX9+6VbrvN7JIeAJCvCF9AUZaRIY0aJT3/fNa655+XXnyRzjUAZLnpJjOAVatmLv/2m9SqlbR7t9WVAUCRQvgCiqqUFGngQGn27Kx1s2dLTz1F8AKQXfXqZgCrWdNcPnrU7Jhj1SqrKwOAIoPwBRRFp09L7dtLCxaYyy4uUnS0NGKE1ZUBKMiCg6XvvpOaNDGXExOlTp3MznoAAP8a4Qsoan75RQoLM2+ilyQPD2nJEqlfP6srA1AYBAaaY39FRZnL6elmZz1PPGFeygwAyDPCF1CUfPWVFB4u/f67uRwYaF5GdPfdVlcGoDApVUr6+GNpzJisdS+9JPXoIV24YGVlAFCoEb6AosAwpJkzpS5dzMuEdLkL6R9/NMfyAYDr5epqDlExd25Wz6hLl0pt20qxsVZXBwCFEuELKOxSUqQHH5RGj866JOiee8z7NipXtro6AIXd0KHS8uWSt7e5nPmlzg8/WF0ZABQ6hC+gMDtxQrrzTul//8ta9/TT0kcfmZcNAUB+6NBB2rDB7JBDMscAa91amjEja+B2AMA/InwBhdXy5VLDhuY9XbrcscbChdKzz5q9GwJAfmrQQNq82QxdkpSWJo0da3bM8ddfVlcHAIUCn9CAwiY52Rw4uWtX6c8/zXWVKpkhrHdvq6sDUJRVrCitXSuNG5e17vPPzXtMN2+2sjIAKBQIX0Bhsn+/1Ly59OqrWeu6dZN27aJjDQDOUaKENHWqtGKFVK6cue7IEfOM2KxZXIYIANdA+AIKA8MwB0kODZV27jTXeXhIr70mffpp1gcgAHCWjh2lHTukFi3M5dRU6bHHpLvukuLirK4OAAokwhdQ0P35p3T//dKAAVJSkrmuTh3zEp9hwySbzeoKARRXwcHmgMxPPJG17rPPpLp1pffe4ywYAPwN4QsoqAxDev99M2h9+GHW+sGDpa1bpUaNrKwOAExubtKLL5qdAJUvb647c0bq21fq3NnsGREAIBG+gALq4EEpMlLq00c6fdpc5+srLV4svf023cgDKHg6d5Z++UXq1Str3VdfSfXqSfPmZY1DCADFGOELKEhSU6Vp06T69aWYmKz13bubH2ruvdfK6gDg2vz9zTP1n30mBQWZ686dkx5+WLr9dunAAasrBABLEb6AguKHH8wONcaPly5dMtcFB0tffCEtWZL1QQYACrr//Efas8e8TDrTN9+YY4WNHy8lJlpZHQBYhvAFWO3QIemBB6TwcOnnn811Li5mr2G//CJ16WJ1hQBw/fz8zMukV6+WQkLMdcnJ5tn9mjXNSxHT0qyuEgCcivAFWOXUKXOw5Nq1pQ8+yFp/yy3Sli3SK69IpUtbWSEA/Ht33GF+sfT445K7u7nu1CnzUsRGjczxwugVEUAxQfgCnC0pSXr+ealGDXOw5NRUc325cuYApVu2mJcfAkBRUaqUNH26tHev472rv/xidtTRvr05WDwAFHGEL8BZkpOluXPN0PX00+ZN6JLk5SU99ZTZw+HIkVKJElZXCgA3RvXqZq+tGzdKzZtnrV+92jzrf8895lAaAFBEEb6AG+2vv8x7HEJCpEcekeLizPWurtLQoWboev55syt5ACgOwsPNALZ4cdb9YIYhLV0qNW0q3XmntG4dlyMCKHIIX8CNcuSI2WlGlSpm714nT2Zt697d7Als7lypYkUrqwQAa9hs5iWIe/ea97he+btw9Wqza/rwcLPbesYIA1BE2AyDr5XyIjExUb6+vkpISJCPj4/V5WjJwYQbtu8eNTgjczU5ve5+e3ap9jtzVHnFp3JJT7evN2w2HW/fRfuGjNJfjf75nq4b/brfyPcMUJzwf/Xqruu1uXRJevdd896wgwcdt9WtKw0bJt1/P1cJ5AKfCVCQ3OjfYQXlPZnbbMCZLyAflDiXoOofztft90Tozm5tVOWLj+3BK93DU7/dN0grY7Zq0+vv5Sp4AUCx4+kpDRki7dtnDtTcsGHWtl9+McNXxYrSgAHSpk1ckgigUOLOfiCvMjLkv+kbhSz5QJW//lyuyZccNieXKaff+jyo3+4frJRy5S0rEwAKlRIlpF69pJ49zW7op02Tvv/e3HbxohQdbU716plh7YEHpLJlra4aAHKF8AVcr/37pUWLpOhotT18ONvms3Xq6WDvgTpyd2+le5W0pEQAKPRsNrMb+s6dpZ9+Mgdsfu89KeHyJUx79pg9xD7xhNSxo9SjhzkofQG4FQAArobwBfwTwzC7Pv70U3Paty9bkxRfPx35Tw8dvud+na3XyPzQAADIHw0bSnPmSC++KH38sfTWW9KGDea25GRp2TJzcneXIiPNINa1q+TnZ3XlAOCA8AXkJCVF+u47M2wtWyYdP569jc2mk63v0OF77teJiI7K8PC0olIAKD5KlpT69jWnPXvMs2GLFmUN4ZGSIn3xhTm5uZld1nfubP6sWZMvxgBYjvAFSFJ6urRjh7R2rTl995104UL2djab1LKlFBUl9eyp75O9ragWAFCvnjRrljRjhnkWbMkS6ZNPsob1SE017xlbscJcrlbNDGF33indcQf3iQGwBOELxVNqqvTzz+ZN3GvXSuvXZ91H8Hfu7lJEhHTXXdJ//iNVqJC1rRB3AQ0ARYKrq3Tbbeb06qtmT4gff2xOf/yR1e7wYfNM2dtvm1+khYaaj2ne3BxPrHJlK48CQDFB+ELRl5EhHTgg/fijtGWL+XPHDvM+gasJCjIH+OzaVerQgRu4AaAwcHExr05o2dI8I7ZzpxQTY07ff5/1ez/zXt6tW7MeW6mSGcQyp8aNpdKlLTsUAEUT4QtFy6lT5n0Ae/aY48Ls2WP+8b3aWa1M5ctL7dqZgev226Vatbg3AAAKMxcX6dZbzenJJ81Lyb//Xlq1ygxjP/3k2P74cfOyxU8+yVpXvbrUoIHZ4UeDBuZUs6bZHT4A5AG/PVD4JCRIv/8uHTxo/vz9d7MHwl9+McNXbtSqJTVtKjVrZoau+vXNP9QAgKKpZEmpfXtzkqTTp6XNm6UffjCnzZulc+ccH5P5N+azz7LWeXhIN91khrCaNaUaNbLmK1c2L4MEgKsgfKFgSUoyv33MnE6cyJo/csT8I3jmzPXts2JFM2Rlhq0mTaQyZW7UEQAACoPy5bPGEdPljpf27s0KYj/9JO3enb3zpeRk857hn3/Ovk93d6lKFSk42AximVPmclCQVK4cZ86AYqxA/O9//fXX9dJLLyk2NlaNGjXSnDlz1KxZs6u2X7JkiZ5++mkdPnxYtWrV0osvvqhOnTrZtxuGocmTJ+vtt9/W2bNn1bJlS82dO1e1atWytzlz5oxGjBihL774Qi4uLrrnnnv06quvqjTXd+eP9HQpMVE6e9Zx+usv6c8/zTNUmdPp01nzf//W8XoEBJi9X1051a1Lj1YAgH/m6mpeBVG/vjR4sLkuI0M6dCgrbGVOBw+aHTf9XUqK9Ntv5nQ1NpsZwCpUcJz8/c0vBq82eXjcuGMH4DSWh6/Fixdr9OjRmjdvnsLCwjRr1ixFRkZq//79qnBlr3KXbdy4Ub1799bUqVPVpUsXLVy4UFFRUdq+fbvq168vSZo+fbpmz56tBQsWKCQkRE8//bQiIyP1yy+/yNPTHIvp/vvv18mTJxUTE6PU1FQNGDBAQ4YM0cKFC53+GtwwhiFlZMglLVUuqamypaVdMZ8ql7Q0uaSmyCUlRa4pyXJJTpZLSopcUlPkmpIil+RLck2+JJWWdPFi1nThgvnz/Pmcp3Pn/l2IuhoXF/Pbw+rVs081aph/zAAAyC8uLubflxo1zCFGMqWnS8eOZQWtgwfNnwcOSEePXvtvoGGYXzqePm1eLp9bbm5mByDe3o5T6dJSqVKSl5d5aWXJkrr5kovSPL2U7umlDA8Ppbt7ZP1091C6h/kzw81NGSXclOHmLsOthDLc3C8vu8koUUIZriVklCjBZflAPrIZhmFYWUBYWJiaNm2q1157TZKUkZGh4OBgjRgxQuPGjcvWvmfPnkpKStLy5cvt65o3b67GjRtr3rx5MgxDQUFBGjNmjMaOHStJSkhIUEBAgKKjo9WrVy/t3btXdevW1Y8//qgmTZpIklauXKlOnTrpjz/+UFBQ0D/WnZiYKF9fXyUkJMjHyp7w3n9fGj1aKSmpsqVnyJaeJltammwZ6XJJT7eurutVtqz5rV9goNnjVFCQ+fPK+aAg85KOAmTJDexqvkcN3xu2b93g2oHihP+rV3ejX5sCKzHR7OY+czp2zJzi4qT4eHOKizO/yCwEDJvNHsZKuJUwzxK6upqhLHP+ysnF5eqTzZZ93mbL/SRde/5q6zJduXw9267WLi/b8/txBdyx8zmcJc5HwRV8pQULbuhz5EZus4GlZ75SUlK0bds2jR8/3r7OxcVFERER2rRpU46P2bRpk0aPHu2wLjIyUsuWLZMkHTp0SLGxsYqIiLBv9/X1VVhYmDZt2qRevXpp06ZN8vPzswcvSYqIiJCLi4s2b96su+66K9vzJicnK/mKrskTLveel5iY+K9eg38tISH3nUzcSC4u5jdwpUqZk6+v5Odn/rxy8vExz1CVK2deb1++vHk5RW6uf790yZwKkAvnbty/f2Lijf0lfCNrB4oT/q9e3Y1+bQq0zPu9riUpKevy+z//zLo8/++X7CckOF5dcv68c4ObYZiXWaamSgXrzzAKgRv9FUyij4/5hYfFMjPBP53XsjR8nT59Wunp6QoICHBYHxAQoH379uX4mNjY2Bzbx8bG2rdnrrtWm79f0liiRAmVLVvW3ubvpk6dqmeeeSbb+uDg4FwcaTGQkWH+cfinLt2Ra/2tLgBArvB/9ep4bQDccImJ5hf8BcS5c+fke416LL/nq7AYP368wxm3jIwMnTlzRuXKlZOtiJ4mhjUSExMVHBysY8eOWXtJK5AD3p8oqHhvoiDj/Vn0GYahc+fO/ePtS5aGr/Lly8vV1VVxcXEO6+Pi4hQYGJjjYwIDA6/ZPvNnXFycKlas6NCmcePG9jbx8fEO+0hLS9OZM2eu+rweHh7y+FtPQ35+ftdxtMD18fHx4Rc0CizenyioeG+iIOP9WbRd64xXJku7r3F3d1doaKjWrFljX5eRkaE1a9YoPDw8x8eEh4c7tJekmJgYe/uQkBAFBgY6tElMTNTmzZvtbcLDw3X27Flt27bN3mbt2rXKyMhQWFhYvh8nAAAAAFh+2eHo0aPVr18/NWnSRM2aNdOsWbOUlJSkAQMGSJL69u2rSpUqaerUqZKkkSNHqk2bNpoxY4Y6d+6sRYsWaevWrXrrrbckSTabTaNGjdLzzz+vWrVq2buaDwoKUtTlbmJvvvlmdejQQQ8++KDmzZun1NRUDR8+XL169cpVT4cAAAAAcL0sD189e/bUqVOnNGnSJMXGxqpx48ZauXKlvcOMo0ePyuWK8SVatGihhQsXauLEiZowYYJq1aqlZcuW2cf4kqQnnnhCSUlJGjJkiM6ePatWrVpp5cqV9jG+JOmDDz7Q8OHDdccdd9gHWZ49e7aTjx7IzsPDQ5MnT852mStQEPD+REHFexMFGe9PZLJ8nC8AAAAAKA4YshwAAAAAnIDwBQAAAABOQPgCAAAAACcgfAEAAACAExC+AIscPnxYgwYNUkhIiLy8vFSjRg1NnjxZKSkpDu1++ukntW7dWp6engoODtb06dOz7WvJkiWqU6eOPD091aBBA61YscKJR4Li4vXXX1e1atXk6empsLAwbdmyxeqSUMRNnTpVTZs2lbe3typUqKCoqCjt37/foc2lS5c0bNgwlStXTqVLl9Y999yjuLg4hzZHjx5V586dVbJkSVWoUEGPP/640tLSnHw0KMqmTZtmH+4oE+9N5ITwBVhk3759ysjI0Jtvvqk9e/Zo5syZmjdvniZMmGBvk5iYqPbt26tq1aratm2bXnrpJU2ZMsU+rp0kbdy4Ub1799agQYO0Y8cORUVFKSoqSrt377boyFAULV68WKNHj9bkyZO1fft2NWrUSJGRkYqPj7e6NBRh33zzjYYNG6YffvhBMTExSk1NVfv27ZWUlGRv89hjj+mLL77QkiVL9M033+jEiRO6++677dvT09PVuXNnpaSkaOPGjVqwYIGio6M1adIki44KRc2PP/6oN998Uw0bNnRYz3sTOTIAFBjTp083QkJC7MtvvPGGUaZMGSM5Odm+7sknnzRq165tX7733nuNzp07O+wnLCzMeOihh5xUNYqDZs2aGcOGDbMvp6enG0FBQcbUqVMtrQvFS3x8vCHJ+OabbwzDMIyzZ88abm5uxpIlS+xt9u7da0gyNm3aZBiGYaxYscJwcXExYmNj7W3mzp1r+Pj4OPxuBfLi3LlzRq1atYyYmBijTZs2xsiRIw2D9yaugTNfQAGSkJCgsmXL2pc3bdqk2267Te7u7vZ1kZGR2r9/v/766y97m4iICIf9REZGatOmTU6sHEVZSkqKtm3b5vA+c3FxUUREBO8zOFVCQoIk2X9Pbtu2TampqQ7vzTp16qhKlSr29+amTZvUoEEDBQQE2NtERkYqMTFRe/bscfoxoGgZNmyYOnfunO3vMO9NXE0JqwsAYPrtt980Z84cvfzyy/Z1sbGxCgkJcWiX+Us6NjZWZcqUUWxsrMMv7sw2sbGxTqocRd3p06eVnp6e4/ts3759ltWF4iUjI0OjRo1Sy5YtVb9+feny70F3d3f5+fk5tL3yd+DVfkdmbgPyatGiRdq+fbt+/PHHbNt4b+JqOPMF5LNx48bJZrNdc/r7B9bjx4+rQ4cO6tGjhx588EHLageAgmrYsGHavXu3Fi1aZHUpgI4dO6aRI0fqgw8+kKenp9XloBDhzBeQz8aMGaP+/ftfs0316tXt8ydOnFC7du3UokULh440JCkwMDBbz0iZy4GBgddsk7kd+LfKly8vV1dX3mewzPDhw7V8+XJ9++23qly5sn19YGCgUlJSdPbsWYczDFe+NwMDA7P1zPn336PA9dq2bZvi4+N166232telp6fr22+/1Wuvvaavv/6a9yZyxJkvIJ/5+/urTp0615wy7+E6fvy42rZtq9DQUM2fP18uLo7/JcPDw/Xtt98qNTXVvi4mJka1a9dWmTJl7G3WrFnj8LiYmBiFh4c75XhR9Lm7uys0NNThfZaRkaE1a9bwPsMNZRiGhg8frk8//VRr167Ndhl2aGio3NzcHN6b+/fv19GjR+3vzfDwcP38888OPXPGxMTIx8dHdevWdeLRoCi544479PPPP2vnzp32qUmTJrr//vvt87w3kSOre/wAiqs//vjDqFmzpnHHHXcYf/zxh3Hy5En7lOns2bNGQECA0adPH2P37t3GokWLjJIlSxpvvvmmvc2GDRuMEiVKGC+//LKxd+9eY/LkyYabm5vx888/W3RkKIoWLVpkeHh4GNHR0cYvv/xiDBkyxPDz83PopQvIbw8//LDh6+trrF+/3uF35IULF+xthg4dalSpUsVYu3atsXXrViM8PNwIDw+3b09LSzPq169vtG/f3ti5c6excuVKw9/f3xg/frxFR4Wi6sreDg3em7gKwhdgkfnz5xuScpyutGvXLqNVq1aGh4eHUalSJWPatGnZ9vXRRx8ZN910k+Hu7m7Uq1fP+PLLL514JCgu5syZY1SpUsVwd3c3mjVrZvzwww9Wl4Qi7mq/I+fPn29vc/HiReORRx4xypQpY5QsWdK46667HL7EMgzDOHz4sNGxY0fDy8vLKF++vDFmzBgjNTXVgiNCUfb38MV7EzmxGeYvNwAAAADADcQ9XwAAAADgBIQvAAAAAHACwhcAAAAAOAHhCwAAAACcgPAFAAAAAE5A+AIAAAAAJyB8AQAAAIATEL4AAAAAwAkIXwCAQmP9+vWy2Ww6e/as1aU4TbVq1TRr1iyrywAA5APCFwAg1/r376+oqKhs6wtSKJoyZYoaN26cL/u61nEVlFB04cIFjR8/XjVq1JCnp6f8/f3Vpk0bffbZZ1aXBgD4mxJWFwAAAPJu6NCh2rx5s+bMmaO6devqzz//1MaNG/Xnn3/esOdMSUmRu7v7Dds/ABRVnPkCANwQ33//vVq3bi0vLy8FBwfr0UcfVVJSkn37e++9pyZNmsjb21uBgYG67777FB8f77CPFStW6KabbpKXl5fatWunw4cPX/M5o6Oj9cwzz2jXrl2y2Wyy2WyKjo6WJB09elTdunVT6dKl5ePjo3vvvVdxcXH5drxnz57V4MGD5e/vLx8fH91+++3atWuXffvBgwfVrVs3BQQEqHTp0mratKlWr17tsI/4+Hh17dpVXl5eCgkJ0QcffPCPz/v5559rwoQJ6tSpk6pVq6bQ0FCNGDFCAwcOtLdJTk7Wk08+qeDgYHl4eKhmzZr63//+Z9/+zTffqFmzZvLw8FDFihU1btw4paWl2be3bdtWw4cP16hRo1S+fHlFRkZKknbv3q2OHTuqdOnSCggIUJ8+fXT69Ol//VoCQFFF+AIA5LuDBw+qQ4cOuueee/TTTz9p8eLF+v777zV8+HB7m9TUVD333HPatWuXli1bpsOHD6t///727ceOHdPdd9+trl27aufOnRo8eLDGjRt3zeft2bOnxowZo3r16unkyZM6efKkevbsqYyMDHXr1k1nzpzRN998o5iYGP3+++/q2bNnvh1zjx49FB8fr6+++krbtm3TrbfeqjvuuENnzpyRJJ0/f16dOnXSmjVrtGPHDnXo0EFdu3bV0aNH7fvo37+/jh07pnXr1unjjz/WG2+8kS2Q/l1gYKBWrFihc+fOXbVN37599eGHH2r27Nnau3ev3nzzTZUuXVqSdPz4cXXq1ElNmzbVrl27NHfuXP3vf//T888/77CPBQsWyN3dXRs2bNC8efN09uxZ3X777brlllu0detWrVy5UnFxcbr33nv/5SsJAEWYAQBALvXr189wdXU1SpUq5TB5enoakoy//vrLMAzDGDRokDFkyBCHx3733XeGi4uLcfHixRz3/eOPPxqSjHPnzhmGYRjjx4836tat69DmySefdHienEyePNlo1KiRw7pVq1YZrq6uxtGjR+3r9uzZY0gytmzZctV9rVu3zpCU7XhLlSpl2Gw2Y+bMmfZj8/HxMS5duuTw+Bo1ahhvvvnmVfdfr149Y86cOYZhGMb+/fuz1bN3715Dkv15cvLNN98YlStXNtzc3IwmTZoYo0aNMr7//nv79sz9xsTE5Pj4CRMmGLVr1zYyMjLs615//XWjdOnSRnp6umEYhtGmTRvjlltucXjcc889Z7Rv395h3bFjxwxJxv79+69aLwAUZ5z5AgBcl3bt2mnnzp0O0zvvvOPQZteuXYqOjlbp0qXtU2RkpDIyMnTo0CFJ0rZt29S1a1dVqVJF3t7eatOmjXT58kBJ2rt3r8LCwhz2Gx4e7rB85f6HDh161Zr37t2r4OBgBQcH29fVrVtXfn5+2rt3rySpXr169n117NjR4fHfffddtmMOCgpyON7z58+rXLlyDjUdOnRIBw8elC6f+Ro7dqxuvvlm+fn5qXTp0tq7d6/D8ZYoUUKhoaH2/dapU0d+fn7X/Pe47bbb9Pvvv2vNmjXq3r279uzZo9atW+u5556TJO3cuVOurq721zen1yY8PFw2m82+rmXLljp//rz++OMP+7or68o85nXr1jkcb506daTLZz4BANnR4QYA4LqUKlVKNWvWdFh35Yd0XQ4aDz30kB599NFsj69SpYqSkpIUGRmpyMhIffDBB/L399fRo0cVGRmplJSUXNeyc+dO+7yPj0+ejifTihUrlJqaKkny8vJy2BYSEpItBJUokfUn9Pz586pYsaLWr1+fbb+Zjxs7dqxiYmL08ssvq2bNmvLy8lL37t2v63ivxs3NTa1bt1br1q315JNP6vnnn9ezzz6rJ598Mtux5FWpUqUcls+fP6+uXbvqxRdfzNa2YsWK+fKcAFDUEL4AAPnu1ltv1S+//JItpGX6+eef9eeff2ratGn2s1Fbt251aHPzzTfr888/d1j3ww8/OCzntH93d3elp6dn29exY8d07Ngx+/P98ssvOnv2rOrWrStJqlq1ap6OVZePNzY2ViVKlFC1atVybLNhwwb1799fd911l3Q5vFzZgUidOnWUlpambdu2qWnTppKk/fv356n7/rp16yotLU2XLl1SgwYNlJGRoW+++UYRERHZ2t5888365JNPZBiG/ezXhg0b5O3trcqVK1/zmD/55BNVq1bNIYgCAK6Oyw4BAPnuySef1MaNGzV8+HDt3LlTBw4c0GeffWbvcKNKlSpyd3fXnDlz9Pvvv+vzzz+3XyaXaejQoTpw4IAef/xx7d+/XwsXLrT3XHgt1apV06FDh7Rz506dPn1aycnJioiIUIMGDXT//fdr+/bt2rJli/r27as2bdqoSZMm//p4IyIiFB4erqioKK1atUqHDx/Wxo0b9dRTT9lDZa1atbR06VLt3LlTu3bt0n333aeMjAz7PmrXrq0OHTrooYce0ubNm7Vt2zYNHjz4H89ctW3bVm+++aa2bdumw4cPa8WKFZowYYLatWsnHx8fVatWTf369dPAgQO1bNkyHTp0SOvXr9dHH30kSXrkkUd07NgxjRgxQvv27dNnn32myZMna/To0XJxufrHhGHDhunMmTPq3bu3fvzxRx08eFBff/21BgwYkC38AgBMhC8AQL5r2LChvvnmG/36669q3bq1brnlFk2aNMl+n5S/v7+io6O1ZMkS1a1bV9OmTdPLL7/ssI8qVarok08+0bJly9SoUSPNmzdPL7zwwj8+9z333KMOHTqoXbt28vf314cffiibzabPPvtMZcqU0W233aaIiAhVr15dixcvzpfjtdlsWrFihW677TYNGDBAN910k3r16qUjR44oICBAkvTKK6+oTJkyatGihbp27arIyEjdeuutDvuZP3++goKC1KZNG919990aMmSIKlSocM3njoyM1IIFC9S+fXvdfPPNGjFihCIjI+3hSpLmzp2r7t2765FHHlGdOnX04IMP2rv9r1SpklasWKEtW7aoUaNGGjp0qAYNGqSJEyde83mDgoK0YcMGpaenq3379mrQoIFGjRolPz+/a4Y2ACjObIZhGFYXAQAAAABFHV9NAQAAAIATEL4AAAAAwAkIXwAAAADgBIQvAAAAAHACwhcAAAAAOAHhCwAAAACcgPAFAAAAAE5A+AIAAAAAJyB8AQAAAIATEL4AAAAAwAkIXwAAAADgBP8PRgSo1xujrgIAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The average of 'head_to_head' is: -14.97\n" + ] + } + ], "source": [ "plot_head_to_head_distribution(df_top_bot_pro_forecasts)" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 70, "metadata": { "colab": { "base_uri": "https://localhost:8080/" @@ -1469,7 +11269,73 @@ "id": "V1qC4m2VefLe", "outputId": "2f110b55-caf6-4ea8-9dfe-b746c3e4d892" }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
W_scoreW_countW_aveW_stdevstd_errt_statt_critupper_boundlower_boundcdfp_value
head_to_head-1424.093.1-15.390.6359589.393462-1.6282771.9852773.4-33.90.0534410.106882
\n", + "
" + ], + "text/plain": [ + " W_score W_count W_ave W_stdev std_err t_stat \\\n", + "head_to_head -1424.0 93.1 -15.3 90.635958 9.393462 -1.628277 \n", + "\n", + " t_crit upper_bound lower_bound cdf p_value \n", + "head_to_head 1.985277 3.4 -33.9 0.053441 0.106882 " + ] + }, + "execution_count": 70, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "df_bot_team_h2h = calculate_t_test(df_top_bot_pro_forecasts, ['head_to_head'])\n", "\n", @@ -1478,7 +11344,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 73, "metadata": { "colab": { "base_uri": "https://localhost:8080/" @@ -1486,14 +11352,126 @@ "id": "0I0myCHpl7FT", "outputId": "bcc45b9a-f328-4f0c-ef98-a7620af7e358" }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Top 5:\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
titlebot_team_medianpro_medianresolutionhead_to_head
279What will Kalshi's rank in the iPhone Top Free...0.03[0.02,0.01,0.015,0.015,0.05,0.89]Not in top 50-339.0
121How many movies will be new on Netflix's top 1...0.1[0.005,0.017,0.157,0.821]3 or more-210.5
335How many cubic meters of water produced and su...[0.12255555556666668, 0.1304049507, 0.13838334...[0.0346238299,0.0364286012,0.0383259676,0.0403...130027.0-158.7
12What will be the monthly cargo volumes at the ...[0.03366666666666667, 0.034913915633333334, 0....[0.001714054,0.0017985406,0.0018846914,0.00197...720283.0-130.3
71Will OpenAI, Anthropic, or Perplexity run an a...0.150.55yes-129.9
\n", + "
" + ], + "text/plain": [ + " title \\\n", + "279 What will Kalshi's rank in the iPhone Top Free... \n", + "121 How many movies will be new on Netflix's top 1... \n", + "335 How many cubic meters of water produced and su... \n", + "12 What will be the monthly cargo volumes at the ... \n", + "71 Will OpenAI, Anthropic, or Perplexity run an a... \n", + "\n", + " bot_team_median \\\n", + "279 0.03 \n", + "121 0.1 \n", + "335 [0.12255555556666668, 0.1304049507, 0.13838334... \n", + "12 [0.03366666666666667, 0.034913915633333334, 0.... \n", + "71 0.15 \n", + "\n", + " pro_median resolution \\\n", + "279 [0.02,0.01,0.015,0.015,0.05,0.89] Not in top 50 \n", + "121 [0.005,0.017,0.157,0.821] 3 or more \n", + "335 [0.0346238299,0.0364286012,0.0383259676,0.0403... 130027.0 \n", + "12 [0.001714054,0.0017985406,0.0018846914,0.00197... 720283.0 \n", + "71 0.55 yes \n", + "\n", + " head_to_head \n", + "279 -339.0 \n", + "121 -210.5 \n", + "335 -158.7 \n", + "12 -130.3 \n", + "71 -129.9 " + ] + }, + "execution_count": 73, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "pd.set_option('display.max_colwidth', 200)\n", + "pd.set_option('display.max_colwidth', 50)\n", "\n", "df_sorted = df_top_bot_pro_forecasts.sort_values(by='head_to_head')\n", - "# Round to four decimal places and format as percent\n", - "df_sorted['bot_team_median'] = df_sorted['bot_team_median'].map(\"{:.1%}\".format)\n", - "df_sorted['pro_median'] = df_sorted['pro_median'].map(\"{:.1%}\".format)\n", "df_sorted['head_to_head'] = df_sorted['head_to_head'].round(1)\n", "#df_sorted['resolution'] = df_sorted['resolution'].map({1: 'yes', 0: 'no'})\n", "\n", @@ -1507,9 +11485,125 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 74, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Bottom 5:\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
titlebot_team_medianpro_medianresolutionhead_to_head
170In its March update, will Similarweb report de...0.70.144yes158.1
0For Q1 2025, how many banks will be listed on ...0.02[0.001,0.62,0.35,0.019,0.01]0299.6
189What will the highest rank of metac-GPT4o or m...[0.0, 0.05003188076666667, 0.11135575903333333...[0.0,5.19918e-05,0.0001040776,0.0001562618,0.0...34.0502.6
211Will Nikola Corporation file for bankruptcy be...0.990.999annulledNaN
214Will the state of Rhode Island have any recrea...0.9233330.95annulledNaN
\n", + "
" + ], + "text/plain": [ + " title \\\n", + "170 In its March update, will Similarweb report de... \n", + "0 For Q1 2025, how many banks will be listed on ... \n", + "189 What will the highest rank of metac-GPT4o or m... \n", + "211 Will Nikola Corporation file for bankruptcy be... \n", + "214 Will the state of Rhode Island have any recrea... \n", + "\n", + " bot_team_median \\\n", + "170 0.7 \n", + "0 0.02 \n", + "189 [0.0, 0.05003188076666667, 0.11135575903333333... \n", + "211 0.99 \n", + "214 0.923333 \n", + "\n", + " pro_median resolution \\\n", + "170 0.144 yes \n", + "0 [0.001,0.62,0.35,0.019,0.01] 0 \n", + "189 [0.0,5.19918e-05,0.0001040776,0.0001562618,0.0... 34.0 \n", + "211 0.999 annulled \n", + "214 0.95 annulled \n", + "\n", + " head_to_head \n", + "170 158.1 \n", + "0 299.6 \n", + "189 502.6 \n", + "211 NaN \n", + "214 NaN " + ] + }, + "execution_count": 74, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "print(\"\\nBottom 5:\")\n", "\n", @@ -1518,9 +11612,35 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 75, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "bot_question_id Int64\n", + "title object\n", + "resolution float64\n", + "scheduled_close_time datetime64[ns]\n", + "actual_close_time datetime64[ns]\n", + "type object\n", + "options object\n", + "range_min float64\n", + "range_max float64\n", + "pro_question_id Int64\n", + "question_weight float64\n", + "bot_team_median object\n", + "pro_median object\n", + "head_to_head float64\n", + "weighted_score float64\n", + "dtype: object" + ] + }, + "execution_count": 75, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Cast df_top_bot_pro_forecasts['resolution'] as string - idk why this is necessary but it is\n", "df_top_bot_pro_forecasts['resolution'] = df_top_bot_pro_forecasts['resolution'].astype(pd.StringDtype())\n", @@ -1530,7 +11650,210 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 76, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
bot_question_idtitleresolutionscheduled_close_timeactual_close_timetypeoptionsrange_minrange_maxpro_question_idquestion_weightbot_team_medianpro_medianhead_to_headweighted_score
031262For Q1 2025, how many banks will be listed on ...NaN2025-01-20 03:27:002025-01-20 03:27:00multiple_choice[\"0\",\"1\",\"2-3\",\"4-6\",\">6\"]NaNNaN312681.00.02[0.001,0.62,0.35,0.019,0.01]299.573227299.573227
131263What percentage of the vote will Alexander Luk...NaN2025-01-20 03:27:002025-01-20 03:27:00numericNaN60.0100.0312691.0[0.03366666666666667, 0.0341314028, 0.03460208...[0.0013749738,0.0014499743,0.001526641,0.00160...-57.286904-57.286904
231264Will the bubble in the Magnificent Seven pop b...0.02025-01-20 03:27:002025-01-20 03:27:00binaryNaNNaNNaN312701.00.10.013-9.227528-9.227528
331274How many arms sales globally will the US State...NaN2025-01-21 11:42:002025-01-21 11:42:00multiple_choice[\"0-4\",\"5-9\",\">9\"]NaNNaN312801.00.6[0.16,0.44,0.4]31.01549331.015493
431275How much will it rain in Brasília, Brazil in F...NaN2025-01-21 11:42:002025-01-21 11:42:00numericNaN0.0400.0312811.0[0.0, 0.0017047194333333333, 0.0034148989, 0.0...[0.0,0.0005044914,0.0010323506,0.0015847475,0....56.08209256.082092
\n", + "
" + ], + "text/plain": [ + " bot_question_id title \\\n", + "0 31262 For Q1 2025, how many banks will be listed on ... \n", + "1 31263 What percentage of the vote will Alexander Luk... \n", + "2 31264 Will the bubble in the Magnificent Seven pop b... \n", + "3 31274 How many arms sales globally will the US State... \n", + "4 31275 How much will it rain in Brasília, Brazil in F... \n", + "\n", + " resolution scheduled_close_time actual_close_time type \\\n", + "0 NaN 2025-01-20 03:27:00 2025-01-20 03:27:00 multiple_choice \n", + "1 NaN 2025-01-20 03:27:00 2025-01-20 03:27:00 numeric \n", + "2 0.0 2025-01-20 03:27:00 2025-01-20 03:27:00 binary \n", + "3 NaN 2025-01-21 11:42:00 2025-01-21 11:42:00 multiple_choice \n", + "4 NaN 2025-01-21 11:42:00 2025-01-21 11:42:00 numeric \n", + "\n", + " options range_min range_max pro_question_id \\\n", + "0 [\"0\",\"1\",\"2-3\",\"4-6\",\">6\"] NaN NaN 31268 \n", + "1 NaN 60.0 100.0 31269 \n", + "2 NaN NaN NaN 31270 \n", + "3 [\"0-4\",\"5-9\",\">9\"] NaN NaN 31280 \n", + "4 NaN 0.0 400.0 31281 \n", + "\n", + " question_weight bot_team_median \\\n", + "0 1.0 0.02 \n", + "1 1.0 [0.03366666666666667, 0.0341314028, 0.03460208... \n", + "2 1.0 0.1 \n", + "3 1.0 0.6 \n", + "4 1.0 [0.0, 0.0017047194333333333, 0.0034148989, 0.0... \n", + "\n", + " pro_median head_to_head \\\n", + "0 [0.001,0.62,0.35,0.019,0.01] 299.573227 \n", + "1 [0.0013749738,0.0014499743,0.001526641,0.00160... -57.286904 \n", + "2 0.013 -9.227528 \n", + "3 [0.16,0.44,0.4] 31.015493 \n", + "4 [0.0,0.0005044914,0.0010323506,0.0015847475,0.... 56.082092 \n", + "\n", + " weighted_score \n", + "0 299.573227 \n", + "1 -57.286904 \n", + "2 -9.227528 \n", + "3 31.015493 \n", + "4 56.082092 " + ] + }, + "execution_count": 76, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_top_bot_pro_forecasts.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 81, + "metadata": {}, + "outputs": [], + "source": [ + "# Make binary-only df_top_bot_pro_forecasts for calibration curves etc\n", + "df_top_bot_pro_forecasts_binary = df_top_bot_pro_forecasts[df_top_bot_pro_forecasts['type'] == 'binary'].copy()\n", + "\n", + "df_top_bot_pro_forecasts_all_binary = df_top_bot_pro_forecasts_all[df_top_bot_pro_forecasts_all['type'] == 'binary'].copy()" + ] + }, + { + "cell_type": "code", + "execution_count": 82, "metadata": { "colab": { "base_uri": "https://localhost:8080/", @@ -1539,20 +11862,38 @@ "id": "BjNQ4IND6Ct7", "outputId": "c0ec1316-ef4e-4bd1-875d-148b65ba0114" }, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA90AAAMWCAYAAADs4eXxAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdd3wU5dbA8d9uNr2TnlClSe8iUgMoiCJNUVCkybUhKvp69aoXrIiKF3vjAioWxIIgKFepgii9CqGlQEiF9Lrlef+Y7JqQTSXJJuR8/fAxmZmdObs7u9mzzzPn6JRSCiGEEEIIIYQQQtQ4vaMDEEIIIYQQQgghrlSSdAshhBBCCCGEELVEkm4hhBBCCCGEEKKWSNIthBBCCCGEEELUEkm6hRBCCCGEEEKIWiJJtxBCCCGEEEIIUUsk6RZCCCGEEEIIIWqJJN1CCCGEEEIIIUQtkaRbCCGEEEIIIYSoJZJ0CyHqvWnTpqHT6YiJibEti4mJQafTMW3atBLbDhkyBJ1O54AoK8fefRFC1H/23luWL1+OTqdj+fLlDotL1G/23vO3bNmCTqdj/vz5Do1NCFF3JOkWQtSIvXv3MnPmTNq2bYunpyfu7u60bt2aKVOm8Msvvzg6vDrTUD+E5+bm8uabbxIZGUlQUBDOzs40adKEAQMG8Morr5CSkuLoEOuU9Xks/k+v1+Pn58fAgQNZtmzZZR+jrC+OynNpTBX9a8jmz59vux+PP/54mdv985//tG0nSUzdsiaUxf/5+PjQp08f/vOf/2A0Gus8puKv3VtvvbXM7d5//33bdlV5DQohRHUYHB2AEKJhs1gsPP744/znP//BYDAwdOhQbrnlFpydnTlz5gzr1q1jxYoVPP/88zz77LM1dtyIiAiOHTuGr69vje2zLixYsIAnn3ySiIgIR4dic/DgQcaMGUNsbCwtWrTglltuISQkhMzMTP744w+eeuopFixYwPnz5/H09HR0uHVq2LBhDBgwAACTycTZs2f54YcfmDFjBn/99RevvfZancYzb968UssWL15MRkaG3XVXAoPBwIoVK3jllVcwGEp+bDGZTHz66acYDAZMJlOdxzZu3DiuvfZawsLC6vzY9cnMmTNp2rQpSinOnj3Ld999x9y5c9m0aRNr1651SEwGg4G1a9eSmppKYGBgqfX//e9/HXbeXHPNNRw7dsxuXEKIK5Mk3UKIy/LMM8/wn//8h+7du/PNN9/QunXrEuvz8vJ45513uHDhQo0e19nZmauvvrpG91kXwsLC6tUH9HPnznHDDTeQmprKokWLePjhh3Fyciqxzf79+5k9e7ZDRq0cbfjw4Tz55JMllsXExNC5c2fefvttnn/+edzd3essHnsjucuXLycjI+OKHeW98cYbWbt2LT/++CNjx44tsW79+vUkJiZyyy23sGbNmjqPzdfXt8F98Vcb7rnnHq699lrb7y+++CI9evTgxx9/ZMuWLQwZMqTOY7KeNytWrOCRRx4pse7QoUPs3bvXYeeNh4dHg/z7JYSoPpleLoSotlOnTvHqq68SEBDAzz//XCrhBnB3d+f//u//eO6552zLTpw4wRNPPEHPnj0JCAjAzc2Ndu3a8eSTT5KdnV2pY1c0NTc/P58nn3yS5s2b4+bmRocOHXj77bdRSpXYrvh08LVr19K/f3+8vb1p2bIlAIWFhbz99tuMGDGCZs2a4erqSnBwMOPHj2f//v0l9jVt2jSmT58OwPTp0+1O8y3vmu5ly5bRt29fvLy88PLyom/fvnanqRe/HnDPnj1cf/31eHt74+vry7hx46p0vfjTTz9NcnIy//rXv5g7d26phBugR48ebN26FR8fn1LHv1RZz0vLli1p2bIl6enpzJ49m2bNmmEwGFi+fDnDhg1Dr9cTGxtrN8Y5c+ag0+lKXaawbds2Ro8eTWBgIK6urrRt25ZnnnmG3NzcSt//6mjZsiXt27enoKCArKysUuvXrl1LZGQkvr6+uLu7061bN954440SI2rLly+nVatWAHzyySclzpUtW7bUSJyFhYW88cYb9OzZE09PT7y9vRk4cKDdJKOqr0nr9c0FBQX861//onnz5ri7u9OrVy9+/fVXADIyMnjwwQcJDw/Hzc2Nfv36sWvXrirfj/Hjx+Pn58fSpUtLrVu6dCn+/v6MGzeuzNsnJyfz6KOP0qZNG1xdXQkMDGTChAkcOXLE7vbbt29n8ODBeHp6EhAQwO23387Zs2ftblvW5STff/89kyZNok2bNnh4eODr68vAgQP59ttvS+2j+Gvm1KlTjBs3Dn9/fzw9PRk+fDgHDx6sxKOkjTbrdDq2bdtmd/0bb7yBTqfj448/ti3bvHkzN954I+Hh4bi6uhISEsLAgQP56KOPKnXMsoSHhzN+/HgAdu/eDcUuF9iyZQvLly+nZ8+eeHh4lEjIY2NjmTlzJhEREbi4uNC0aVNmzpxJXFxclWO47rrruPrqq+1eCrJ06VKcnJyYOnVqmbfPyspi3rx5dOrUCXd3d/z8/BgxYgTbt2+3u/3Ro0e5+eabbe/Fo0aNKvMcK+s9dPPmzcyYMYP27dvb/g707t27zOdDp9MxZMgQkpKSmDp1KoGBgbi7u3PttdfW2PuIEKJmyEi3EKLali9fjtls5t577yUkJKTcbV1dXW0/f/fdd/z3v/8lMjKSIUOGYLFY+OOPP1i4cCFbt25l27ZtODs7X1ZsEydOZP/+/UyYMAGAb7/9ljlz5hATE8OiRYtKbb9q1Sr+97//cfPNN/PAAw+QmZkJwMWLF3nkkUcYOHAgo0aNwt/fnzNnzrBmzRp++ukntm3bRp8+fQAYO3Ys6enp/PDDD4wZM4bu3btXOt45c+bw9ttvExERwcyZM20xT58+nf379/Pmm2+Wus3u3bt59dVXiYyM5N5772X//v2sXr2aw4cPc+TIEdzc3Mo9Zm5uLl999RXu7u7lXjNL0VTNy1VQUMDQoUPJzs7mlltuwWAwEBISwpQpU9i0aROff/45//rXv0rcxmQy8dVXXxEeHs6wYcNsy99//30efPBB/Pz8GD16NMHBwezZs4eXXnqJzZs3s3nzZlxcXGzbDxkyhK1bt7J58+bLHnWLjY0lKiqKpk2bEhwcXGLdG2+8wWOPPUaTJk2YPHkynp6erFmzhscee4zffvuN7777Dp1OR/fu3Xn44Yd588036datW4kRXOsXPpejoKCAkSNHsmXLFrp3787MmTMxGo2sW7eOMWPG8PbbbzN79mzb9tV9Td5+++0cPnyYW265hby8PD7//HNuvvlmduzYwT/+8Q8KCwu57bbbSElJYeXKlYwcOZLo6OgqjQ67ubkxadIkPv74Y5KSkmzvNUlJSaxbt45//OMfZZ7rp0+fZsiQIbYZHWPHjiU5OZlvv/2WDRs2sHHjRvr27WvbfuPGjdx4443o9Xpuv/12wsPD2bhxI/3798ff37/SMT/11FO4uLgwYMAAwsLCSElJYc2aNdx666289dZbPPTQQ6VuExMTw7XXXkunTp2YMWMGp0+f5ocffiAyMpJjx45V+B47ZcoUli5dyooVKxg0aFCp9Z999hmurq7cdtttAKxbt47Ro0fj5+fHmDFjbHEePHiQzz77jH/84x+Vvr/lubS2wGuvvcbmzZsZM2YMN9xwg+2LvhMnTjBgwABSUlIYPXo0nTp14siRIyxdupS1a9eyfft22rVrV6VjT58+nX/+85/s3buXXr16QdGXUZ9//jkjRowgPDzc7u0uXrzIoEGDOHr0KP379+e+++4jMzPT9nysWrWqxGv2yJEj9O/fn+zsbMaPH0/btm3ZtWsX/fv3p1u3bpWOd+HChZw6dYprr72WcePGkZ6ezs8//8y9995LVFSU3b9d6enpDBgwAF9fX6ZMmUJycjIrV65kxIgR7N27l86dO1fpMRNC1BIlhBDVNGTIEAWoX3/9tUq3O3funCooKCi1/LnnnlOAWrFiRYnlU6dOVYCKjo62LYuOjlaAmjp1aoltBw8erADVvn17lZ6ebluenp6u2rdvr3Q6ndq9e7dt+bJlyxSg9Hq9+uWXX0rFlJ+fr86dO1dq+ZEjR5SXl5caPnx4ieXW/S1btszufbd3X7Zu3aoA1aFDhxIxX7x4UbVr104Batu2bbblmzdvVoAC1FdffVVi/1OmTFGA+vLLL+0ev7gtW7YoQA0YMKDCbYuzHn/evHml1pX1vLRo0UIBasSIESo3N7fEuszMTOXu7q46duxYan9r165VgHr88cdty44ePaoMBoPq1q2bSk1NLbH9ggULFKBef/31Esut58XmzZsrdR+tz+OwYcPUvHnz1Lx589TTTz+tpk6dqvz9/VVwcHCp8/7UqVPKYDCo4OBgFRcXZ1uen5+vBgwYoAD16aefVvhYVZX1sS3uX//6lwLUs88+qywWi215Zmam6t27t3JxcVHx8fG25VV9TVofzwEDBqjs7Gzb8pUrVypA+fn5qdtuu00ZjUbbuoULFypALVq0qFL3a968ebZzec+ePQpQr776qm39q6++qgC1d+9e9eWXX9o9J6+77jrl5OSkfv755xLLo6KilLe3t+rSpYttmdlsVldddZXS6XTqt99+sy23WCxq8uTJttdccWW93k+fPl3q/mRlZakuXbooX19flZOTY1tuPQ8A9corr5S4zTPPPKMAtWDBggofL4vFopo3b678/f1Vfn5+iXWHDx9WgLr11ltty8aPH68AdeDAgVL7uvR1VRbr+9nOnTtLLE9ISFAhISEKUFu3blWq2PPp6empDh06VGpfkZGRClAffvhhieXvvvuuAtTQoUMrFZP1OVmwYIFKSEhQBoNBPfDAA7b1X3/9tQLUt99+q3bu3Gn3NWh9vj/++OMSy5OSklSzZs1UUFCQysvLsy23vh4ufZ089dRTtue2+Ht+We+hZ86cKXV/jEajuv7665WTk5OKjY0tsc667wceeECZzWbb8iVLlihA3XvvvZV6zIQQtU+SbiFEtV199dUKUMePH6+R/V24cEEBatq0aSWWVyfpvvTDj1JKffbZZwpQs2fPti2zfkAbN25cleMdPXq0cnFxUYWFhaX2V5Wke8aMGQpQK1euLLX9559/rgA1Y8YM2zLrB7ZBgwaV2t66bu7cuRXG/9VXXylA3XHHHZW6v5ceozpJ98GDB+3uc9KkSbYEqriJEyeWSgzmzJlT6osIK7PZrIKCglSvXr1KLI+NjVXHjh0rkeyUx/o82vtnMBjU7NmzVVJSUonbPP/88wpQCxcuLLW/HTt2lEocaivpNpvNyt/fX7Vu3bpEwm21Zs0aBai33367wn2X9Zq0vs6sCVXxYzs7OyugVIIQFxenAHX33XdX6n4VT7qVUqpr166qQ4cOtvUdOnRQ3bp1U0opu0n3vn37Sr12ips7d64C1OHDh5Uq9uXX6NGjS20bExOjnJycKp10l2XRokUKUFu2bLEts54HrVq1KpE4FV83fvz4Su3fmuR9++23JZY/8cQTClCrV6+2LbMm3VFRUZXatz3W97OZM2eqefPmqX//+99qxowZys/PTwFqzJgxtm2tz+ejjz5aaj+xsbEKUB07dix1zprNZtvfmuJfZpWleNKtlFK33HKL8vf3tyXJI0eOVEFBQaqwsNBu0p2SkqKcnJzKTPLfeustBai1a9eWiL1r166lts3KyrI9FpVJusvy7bffKkAtX768xHLrlxhZWVkllhuNRmUwGFTPnj0rtX8hRO2T6eVCiDqnlGLZsmUsX76cI0eOkJGRgcVisa0/f/78ZR9j4MCBZS679FpsiqrJluXAgQO8+uqrbN++ncTExFIFxVJTUy+rOJo1HnvTniMjI20xXMo6XbK4pk2bQtGUw/rGzc2NLl262F03ZcoUvvzySz777DN69uwJQGZmJmvXrqVLly4lpmj+8ccfALbpwZdydnbm+PHjJZY1b968WjFbq81TVKk/ISGB1atX89hjj7F+/Xr27dtnmypd3vPYr18/3Nzc7D6PNS0qKoq0tDTCw8NL1FKwsrZ/K/4YVfc1eeklFHq9nuDgYHJzc0s95tbXSHVf3zNmzOCRRx5h586dABw7dszuZRdW1vMkKSnJbv0B6/0/fvw4nTt3tl07be+9o0WLFjRr1qzS9RKSk5N55ZVX+Omnn4iNjSUvL6/EenuPQffu3dHrS5baqerrecqUKSxYsIDPPvvMdk21xWLhiy++ICAggFGjRtm2veOOO/juu++49tprmTx5MsOGDWPgwIHVqqj93//+1/azl5cXHTp04M477+TBBx8sta2991rr62Lw4MGlpqPr9XoGDRrE8ePHOXDgAM2aNatSbDNmzGDNmjV8//33DBo0iP/97388/PDDZV7CtHv3bsxmMwUFBXbPm5MnT0LReXPzzTfbzhtrl4PivLy86N69e6Wvr87KyuL1119n9erVnD59mpycnBLr7Z037dq1w8vLq8Qy66U79fHvgBCNlSTdQohqCw0N5fjx48THx9O+fftK327OnDm88847NGvWjFtuuYWwsDDbNd/PPfccBQUFlx2bvesfrcsyMjIqtT3A77//ztChQwG44YYbaNu2LV5eXuh0OlavXs3BgwcvO97MzEz0ej1BQUF249LpdLZrzIuzFjYrznrttdlsrvC4oaGhAMTHx1cz8qoJDg4us3f0DTfcQEhICF999RWvv/46Tk5OfPPNN+Tl5TFlypQS2168eBGAl156qU7ittLr9URERPDggw+SkJDASy+9xDvvvMPTTz8NRc8jZZxLOp2OkJCQOnmsrY/P0aNHOXr0aJnbFf9AX93XZFnnYHnnZnWr4N9111088cQTtoJqLi4u3HnnnWVub30c1q1bx7p168rczvo4WN8XLr1O3yokJKRSSffFixfp06cPcXFx9O/fn+HDh+Pn54eTkxMHDhzghx9+sPt4Xu7rGaBDhw706tWL9evXk5aWhr+/P1u2bOHcuXM88MADJRLN2267jdWrV/PGG2/wwQcf8O6776LT6YiMjGTRokVVqkmxc+fOEtXLy2Pv9VHea4diX9jYex+syE033URISAhLly7lzJkzWCwWZsyYUeb21vNmx44d7Nixo8ztqnLeVEZhYSFDhgxh37599OjRgylTphAQEIDBYCAmJoZPPvmk0ucNRedOZc8bIUTtk6RbCFFt/fv3Z8uWLWzcuNGWmFYkOTmZd999l65du7Jz5048PDxs6xITE+2OzFVHUlJSqZG2pKQkKGrzc6myksGXXnqJgoICfvvtt1IjGX/88UelKwuXx8fHB4vFQkpKSqkPbsnJySilyvxgdTn69OmDi4sLe/bsITMzs9LHsI7G2etva+8LDauyHmMAJycnJk2axOLFi/n1118ZMWIEn332GXq9nsmTJ5fY1hpnZmYm3t7elYq5plmLb1krMxePKykpiRYtWpTYXilFUlJSrTyPl7IeY8KECXzzzTcVbl9Xr8nLFRAQwJgxY1i5ciUUFS4MCAgoc3vr43Bp0biyWN8XkpOT7a63vn9U5L///S9xcXG88MILPPPMMyXWvfLKK/zwww+V2k91TZkyhUceeYSvv/6ae++9l88++8y2/FJjxoxhzJgxZGVlsWPHDltBvZEjR3L8+HH8/PxqPD577wPFXzv2JCYmltiuKgwGA3fffTeLFi3i6NGjXHPNNeUWF7Me47HHHuP111+vcP81dd788MMP7Nu3j5kzZ7JkyZIS67766is++eSTSu1HCFE/ScswIUS1TZs2DScnJz766CPblNWyWL+hP3PmDEophg8fXuLDPcBvv/1WY7HZ25d1WY8ePSq9n9OnT9OkSZNSCXdubi779u0rtb21Em9VRhis8dibgmhdVpVRp8ry8PDgjjvuIC8vz25V3OJMJpNturG1irO9UVt7U/cry5oUrFixgrNnz7J161YiIyOJiIgosZ014bVOH3aEtLQ0KJq6a1Xe8/jnn3+Sn59f4nmszrlSGR06dMDHx4c9e/ZUalS5rl6TNWHGjBlkZWWRlZVV7mglxc4T63T0ilgvYbB3n2NjY8tsG3ap06dPQ1FCe6m6eDwnTZqEwWBgxYoV5OXl8d1339GmTZtyR6K9vb0ZOXIkH330EdOmTSMpKYk///yz1mO1sr4utm3bVqqto1LK1gatuu+DM2bMsF0eUtF506dPH3Q6XZXPG3utxLKzsyt9SYmjzxshRO2SpFsIUW1t2rThiSeeIDU1lRtvvJHo6OhS2+Tn5/PGG2/Yro2zjgD+/vvvJRKWc+fO8dRTT9VYbC+88EKJUdeMjAxefPFFdDpdub1ZL9WiRQvS0tJKTNM1m808/vjjdr9oaNKkCUClP6ADtniee+65EtMnMzIybKOMVYm5Kl566SWCgoJ46aWXeOutt0o8J1aHDh1iyJAhttjat2+Pt7c3a9assU3FpGhE58UXX6x2LD179qRjx458//33fPjhhyil7I7OPfDAAxgMBh566CG7/XvT09NLJf9xcXEcP368Rnp45+fn89577wGUaM00efJkDAYDb7zxRolrLwsLC/nnP/8JRV9UWfn7+6PT6ap0rlSGwWDg/vvvJzY2lscff9xu4n3kyBHbyFxdvSZrwg033MDq1atZvXo1119/fbnbXnPNNfTt25cvv/zSNjpenMViYevWrbbfBwwYQKtWrfjxxx9LJFBKKf71r39V+ssR6+N5aRL2xRdfsH79+krt43IEBwdzww03sGPHDhYvXkxmZiZ33XVXqe22bdtm9z5Zz4uKWg7WpObNmxMZGcnRo0dL9WP/6KOPOHbsGEOHDq3y9dxWV199NT/99BPff/99uZckUHTZzcSJE/n999957bXXSn0JQNGXaNb3kubNmzNo0CAOHTrE559/XmK7l19+udLXVZd13mzdurVEb3UhRMMk08uFEJflxRdfJD8/n//85z+0b9+eoUOH0rlzZ5ydnYmOjubXX3/lwoULtmQsLCyMCRMm8O2339K7d2+GDRtGUlISP/74I8OGDbN923+52rVrR+fOnUv06T537hxz586ld+/eld7PQw89xP/+9z8GDBjAxIkTcXNzY8uWLcTHxzNkyJBSo5r9+vXD3d2dxYsXk5aWZrtO+9JppsUNGjSIhx56iLffftsWs1LKFvOcOXPs9t2tCU2bNuV///sfY8eO5eGHH+Y///kPw4YNIyQkhMzMTHbt2sXu3bvx8fGxXQ/q4uLCQw89xMsvv0zPnj1t01PXrl3L4MGDL+s5nDJlCk899RSvvvoqHh4etuevuM6dO/Pee+9x//330759e0aNGkXr1q3JysrizJkzbN26lWnTpvHBBx/YbnP33XdXq0/3r7/+Sn5+PhQlaYmJifz000+cO3eO7t2788ADD9i2bd26NQsXLuSxxx6ja9euTJw4EU9PT9auXUtUVBRjxowpkfx4eXnRp08ftm3bxpQpU2jbti16vZ4pU6aUmp5eVc899xz79u3jrbfeYt26dQwaNIjg4GDi4+M5fPgwBw8eZOfOnQQHB9fZa7Im6PV6uyOBZfnyyy+JjIzkjjvuYPHixfTs2RN3d3fi4uLYuXMnKSkptudXr9fz0UcfMWrUKIYPH27r071p0yYSEhLo2rUrhw4dqvCYU6ZMYeHChTz00ENs3ryZFi1acPDgQTZu3Mj48eP57rvvLusxqIwpU6awfv165s2bB0XXw19qzpw5nD9/ngEDBtCyZUt0Oh3bt29n165dXHvttXYLg9Wm999/nwEDBjBr1izWrl1Lx44dOXr0KGvWrCEoKIj333//svY/cuTISm/73nvvERUVxRNPPMFnn31Gv3798PPz4+zZs+zZs4eTJ0+SkJBgmxny7rvv0r9/f+6++25Wr15t69O9e/duBg4cWKmR6tGjR9OyZUteffVVjhw5QufOnYmKiuLHH39k3LhxlbpURAhRjzm6fLoQ4sqwe/duNWPGDNWmTRvl7u6uXF1dVcuWLdXkyZNL9b/OyspSjz32mGrZsqVydXVVbdu2VS+88IIqLCxUgBo8eHCJ7avTMiwvL0898cQTqlmzZsrFxUW1b99evfXWW6Xa0VSm5c8333yjevbsqTw8PFRgYKCaOHGiOn36tN24lFJq3bp1qk+fPsrd3b1Ub9+ybqOUUkuXLlV9+vRRHh4eysPDQ/Xp00ctXbq01HbVadlVkZycHLV48WI1ePBgFRgYqAwGg/Lz81P9+vVTL730Uqm+vWazWc2fP9/2+LZr1069+eab6syZM2W2DGvRokWFccTFxSm9Xq8ANWnSpHK33bVrl7rjjjtUeHi4cnZ2VoGBgapnz57qySefVMeOHSuxbXX7dF/6z9PTU3Xv3l29+OKLZbYf++GHH9TgwYOVt7e3cnV1VV26dFGLFi0q0bPaKioqSo0aNUr5+fkpnU5XpRit7PXpVkopk8mkPvzwQ9W/f3/l4+OjXF1dVfPmzdXIkSPV+++/X6K/dlVfk9bHs6x4ynqu7e2rLJe2DCtPWX26VVG/+2eeeUZ17txZubu7Ky8vL9W2bVs1efJk9d1335Xaftu2bWrQoEHK3d1dNWnSRN12220qNjbW7n0u6/3jwIED6oYbblD+/v7K29tbDR48WP366692t6/oNVuVx8wqNzdX+fj4KED169fP7jZfffWVmjhxomrdurXy8PBQvr6+qlu3bmrhwoWlWlCVpaw+3fZYn8/yzu+YmBg1ffp0FRYWpgwGgwoLC1PTp09XMTExlYpH2WkZVp6y+nSrosfw1VdfVb169VKenp7K3d1dtWrVSo0dO1Z9+umnpV7Phw8fVqNGjVJeXl7K29tb3Xjjjerw4cN23/PL69M9YcIEFRQUZPsb8NVXX5W5fXnnRmXfc4UQdUOn7M2bEUIIIYQQQgghxGWTa7qFEEIIIYQQQohaIkm3EEIIIYQQQghRSyTpFkIIIYQQQgghaokk3UIIIYQQQgghRC2RpFsIIYQQQgghhKglknQLIYQQQgghhBC1RJJuIYRohJRS9OrVixtuuKFOj7t8+XJ0Oh3Lly+v0+PWR/Pnz0en07FlyxZHhyIcYNq0aeh0OmJiYhwdil0DBw6kb9++jg5DCCGuCJJ0CyFEI/Tpp5+yb98+nn/+eUeHIhqAIUOGoNPp7P5r2bKl3dtYLBbefvttunTpgru7O0FBQUyaNIkzZ87UefyO0NC/YJo/fz67du3iq6++cnQoQgjR4EnSLYQQjYzFYmH+/PkMHDiQa6+91tHhiAZk3rx5pf498sgjdre99957mTNnDkop5syZw8iRI/nuu+/o06cPJ0+erPPY65sFCxZw7NgxIiIiHB2KXcOGDaNnz57MmzcPpZSjwxGi7tx2G+zcqf1sscBDD0Hr1tCmDbzzTtm3W78eevaE7t2hc2f45JO/1+3eDf37Q7du2vpNmyoXy9Kl0KULGAyweHH52/75p7b/du1g6FCIj694XX4+9OoFGRmVi0dUm8HRAQghhKhbP/30EzExMTz99NOODkU0MPPnz6/Udps3b2bJkiUMGjSIX375BRcXFwAmT57MqFGjmD17Nhs2bKjlaOu3sLAwwsLCHB1Gue666y7mzp3Lpk2bGDZsmKPDEaL27doFFy9Cv37a7ytWwF9/wYkTWmLaowdERkKnTiVvpxTcdRds2QJdu0JMDFx9NYwfD15eMG4cLF8Ow4dr+xo+HKKiwN29/Hh69YKvv4YFC8rfzmKBO++Ejz/W4nv9dXjkEVi1qvx1bm4wZQosWgQy861WyUi3EEI0MsuWLUOn0zFhwgS762NjY5k5cyYRERG4uLjQtGlTZs6cSVxcXKltrdOOjUYj8+fPp2XLlri6utKuXTvee++9CmPJyMjA09OTTpd+gClisVho2bIl/v7+5OXlVfr+9e3bFy8vL7y8vOjbt2+pKb6//fYbOp2OGTNm2N1HcnIyzs7O9O/fv8TyrKws5s2bR6dOnXB3d8fPz48RI0awffv2UvuwPjb5+fk888wztG7dGmdn5woT16VLlzJmzBhatmyJm5sbTZo0YcSIEWzevLnUtlu2bEGn0zF//ny2b9/OkCFD8Pb2xs/PjwkTJnDq1KlKPWY17eOPPwbghRdesCXcADfeeCNDhgzhf//7n93zqSxLliyhc+fOuLm50axZM5544gny8/PR6XQMGTKkxLYtW7Ysc8q79Tm5lFKKpUuX0r9/f3x8fPDw8KB3794sXbq01Lb5+fksWrSIbt264evri6enJy1btmTixIkcPHgQiq7Xnj59OgDTp08vMR3fqrxruitzDnPJ879nzx6uv/56vL298fX1Zdy4cXb3vW/fPm699VaaN2+Oq6srQUFB9OnTh5deeqnUtrfddhsUTZUXolH48EOYPPnv31euhFmzwMkJmjSB22+HL7+0f1udDtLTtZ8zMyEgAFxd4cIFSEnREm3QRpv9/OCnnyqOp1s36NAB9BWkbHv3aqPhkZHa7/feC2vXaiPZ5a0DuOMOLSGXGS21SpJuIYRoRJRSbN68mfbt2+Pv719q/YkTJ+jTpw9Lly6lV69ePPbYY/To0YOlS5fSu3dvTpw4YXe/kyZNYunSpYwYMYKZM2dy8eJFHnzwQVvyVRZfX1/uuOMO/vrrL37//fdS63/55RdiY2O58847ca9oRACYM2cOM2bMID4+npkzZzJz5kzi4+OZPn06Dz/8sG27AQMG0LJlS7799lvyrR88ivnyyy8xmUxMmTLFtuzixYv069eP559/Hn9/f+677z4mTJjA3r17iYyMZPXq1XZjmjBhAsuXLycyMpKHH36YVq1alXsfHnzwQZKSkhg+fDiPPvooN998Mzt37mT48OH88MMPdm/zxx9/MGzYMHx9fXnooYcYPHgw33//Pdddd12pa6it1xpPmzatwsfzUl988QUvv/wyixcvZsuWLVgsFrvbbdmyBU9Pz1JfWgCMGDECgK1bt1bqmC+88AKzZs0iNTWVWbNmcdttt7Fy5UpbQni5lFLceeedzJw5k5SUFCZPnsw999xDTk4OM2fO5PHHHy+x/dSpU23Lpk+fzuzZs7nuuuv47bff2L17NwBjx45lzJgxAIwZM6bEdPyKVPYcLm737t0MGjQIFxcX7r33Xnr37s3q1asZPnx4ifP7wIEDXHfddfz0008MGDCAuXPncuutt+Lh4cFHH31Uar9NmzalWbNmbNy4sYqPqhAN1JYtULyAYFwctGjx9+8tW2rLLqXTaQn6+PHa9gMGaNPLXVwgMBDCwrQRa4qmmkdFaaPhNeXSOL29wccHzp8vfx1AaKg24n70aM3FI0pTQgghGo2jR48qQN15551210dGRipAffjhhyWWv/vuuwpQQ4cOLbF88ODBClB9+/ZVGRkZtuXHjx9XBoNBtW/fvsT2y5YtU4BatmyZbdmff/6pADVt2rRS8dx6660KUAcOHKjwvm3dulUBqkOHDio9Pd22/OLFi6pdu3YKUNu2bbMtf+aZZxSgVq5cWWpfvXr1Ui4uLurChQu2ZZMnT1aA+vjjj0tsm5SUpJo1a6aCgoJUXl5eqceme/fuJfZjNW/ePAWozZs3l1h+5syZUtueP39ehYeHq7Zt25ZYvnnzZgUoQH3wwQcl1n3wwQcKUDfffHOJ5dbnYOrUqaWOUxbrfbn0X7t27dTu3btLbJudna0A1blzZ7v7+uabbxSgnn322QqPe/LkSWUwGFRERIRKSkqyLc/IyFDt27dXgBo8eHCJ27Ro0UK1aNGi3PtR3EcffaQANX36dFVYWGhbXlBQoEaPHq0AtWfPHqWUUunp6Uqn06levXopk8lUYj8mk0mlpaXZfrd3rhc3depUBajo6Gjbsqqew8Wf/6+++qrE/qdMmaIA9eWXX9qWzZ07VwFq9erVpeJJTU21G+e4ceMUYPe8FOKK4+KiVHLy37937qzU77///fu77yo1ZUrp2xmNSg0erNTWrdrvu3YpFRqqVEqK9vuBA0qNGKFU9+5K3XmnUkOHKvXmm5WPa+pUpf7zn7LXf/ONUjfcUHJZUJBSp0+Xv86qXz+lfvqp8vGIKpORbiGEaETOnTsHQEhISKl1cXFxbN68mY4dOzJr1qwS6+677z6uvvpqNm3axNmzZ0vddsGCBfj4+Nh+b9++Pf379ycqKoqsrKxyY7rmmmvo0aMHq1atIjMz07Y8JSWFNWvW0KdPH7p161bhffukqGjN/Pnz8fX1tS339/e3jTAWnyZrHcVesWJFif0cO3aMvXv3MmrUKJo0aQJAamoqK1euZOjQodxzzz0ltg8ODub//u//SElJ4ddffy0V13PPPWfbT2XYGwkPCwtjwoQJnDx5ktjY2FLr27VrV+o5mzVrFm3btmXdunWkpKTYlo8bN45jx46xoKJrBIsZM2YMP/74I/Hx8eTm5vLXX3/x8MMPc/r0aa6//voSU8UzigryFH8OirOeJxmVKNzzxRdfYDKZmDt3LsHBwSX28cwzz1Q6/vK88847eHp68u677+Ls7Gxb7uLiYpty/WXRdFKdTodSCjc3N/SXTPd0cnLCz8/vsmKp6jlsNWjQIG6//fYSy6yXTlhH34uzN2skICDAbkzW9wrre4cQVzQPj7+nXQM0bw7F33NjYrRllzpwQBs5HjRI+71PH2jaFPbv137v1g1+/ln7fcUKbdsyLquqlkvjzMrSrkEPDy9/nVV+fsXXl4vLIoXUhBCiEblw4QKA3eTgwIEDAAwePLjUda96vZ5BgwZx/PhxDhw4QLNmzUqs79WrV6n9NW3aFID09HS8vb3Ljevee+/lvvvu44svvuC+++6DorZmhYWFpZLJsuwv+nBz6TW+AJFF17JZ7yNFieo111zDzz//TGpqKoGBgVAsCS8+tXz37t2YzWYKCgrsXpNtrcZ9/Phxbr755hLrrrnmmkrFb3XmzBkWLFjApk2biI+Pp6CgoMT68+fP06L4VEGgf//+pZJAvV5P//79OXnyJAcPHmR40fWEvr6+ZSbEZXn00UdL/N6hQwcWL16Mj48PL7zwAq+//jpvvfVWlfZZGdZrpAcOHFhqnb1lVZWbm8vhw4cJDw9n4cKFpdYbjUYoel4pSvZHjRrF+vXr6dmzJ7fddhtDhgyhT58+JRL26qrqOWxV0evPauLEiSxevJhx48Zx++23c/311zNo0KByK6gX/+JJiCte167a1G/r37jbbtOud77tNi1RXbkSfvyx9O2aNYOEBDh2TLsG+9QpOH0a2rfX1ickaFPMQdufp6dWRRy0iujx8RUXSytPr15gNMLmzdq12x9+CKNHa4XSylsHYDZrsXbpUv3jiwpJ0i2EEI2IdYTL3nXM1lFme6PgFI22Ft+uuOKj3FYGg/Ynxmw2VxjX5MmTefzxx1myZIkt6f7vf/+Ll5cXkyZNqvD21rj0ej1BQUGl1oWEhKDT6UrFPmXKFHbt2sXKlSt58MEHUUrx+eef4+/vz0033WTb7uLFiwDs2LGDHTt2lBlDTk6O3WNX1qlTp7jmmmvIzMwkMjKS0aNH4+Pjg16vZ8uWLWzdurVUEl7eMazLKzOqXB333nsvL7zwQonHxJrQl3VM63NQmcTfuo/io9xWVXlcy5KWloZSivj4eJ577rkytyv+vK5atYqXX36ZL774wtYBwMfHh+nTp/Pyyy/j4eFR7Xiqcw5Thddf37592bJliy3+ZcuWAdCnTx8WLlxoS+yLsxYwvJz7JUSDceutsGHD30XPpkzRrsFu21a7bnvu3L+T0zVrtH9LlkBICHz0EUycqBU9s1i0ZNo6Kv7RR/D551qxsg4d4Pvvtf2BVh39qqvsx7N8OTzzDKSlwerVWuXxtWu1KuoffKCNmD//vHbMFSu0Imn5+doo9mefafsobx3A9u3ayHwVZmSJqpOkWwghGhHrh3lrElmc9YN7UlKS3dsmJiaW2K4meXt7c+edd/Lhhx9y4MABcnJyOHbsGPfccw9eXl6V2oePjw8Wi4WUlJRSSVpycjJKqVKx33HHHcydO5cVK1bw4IMPsm3bNmJjY7n33ntxdXUtsW+Axx57jNdff71K981eteyy/Oc//yEtLY3PPvuMu+66q8S6++67r8ziY2U9Z9blVR3ZrqyAgAB0Ol2JpNTT05OwsDCio6Mxm804OTmVuI11VkDbtm0r3L817uTk5FKj+2XdZ71eT2Fhod11l34RYH1ee/XqxZ49eyqMh6Lk88UXX+TFF18kOjqazZs388EHH/Dmm2+Sl5fHhx9+WKn92FOdc7iqBg4cyE8//UReXh5//vkna9eu5b333uOmm27iyJEjXHXJh3/re4W9LwKEuOJMnw7XXQfz52uj0U5O8O679re95Rbtn9WkSdo/e+bN0/7Zc+gQ2JlpA8C0ado/e4q+oLbp10/blz3lrXv/ffjnP+2vEzVGrukWQohGpFOnTuj1eqKiokqt6969OwDbtm1DXdI6RCnFtm3bSmxX0+69914oaje1ZMkSKLouubJ69OgBRZWzL2VddmnsgYGBjBw5kj/++INTp07ZppZfmvD26dMHnU7Hzp07q3y/quL06dNQdA11cUqpckfYd+zYUaqSuMVi4ffff0en01Xqmvjq2LVrF0qpUi26Bg8eTE5Ojt2Yrf25B1mvfSyHNe7ffvut1Dp7yyi6/jk5ORmTyVRieU5Oji3ht/L29qZDhw4cO3asxDTsymrVqhUzZsxg69ateHl5sWbNGts665cNlZnpYVWdc7i63N3dGTJkCIsWLeJf//oXeXl5/PLLL6W2i4qKwtnZmauvvrpGjitEveblBf/5D0RH190xt2/XKoo7Qn4+DB4M11/vmOM3IpJ0CyFEI+Ln50fXrl3Zs2dPqSStefPmREZGcvTo0VL9iT/66COOHTvG0KFDS13PXVN69OhBnz59+Pzzz1m1ahVdu3at0vXQU6dOhaLCZcWn4GZkZNimDlu3Kc567faSJUtYtWoVrVq1KtXqKjQ0lIkTJ/L777/z2muvlfpSAuDPP/8kNze3Cve4NOto7qV9v1955RWOHDlS5u1OnDhRqj3bxx9/zIkTJ7jppptKjFJmZGRw/PhxEhISKhVTdHS03ZkR8fHxPPDAA1B0eUBx//jHPwB49tlnS4w6//TTT2zZsoUbbrih1Mi1PZMnT8bJyYk33niD5ORk2/LMzExefPFFu7fp06cPRqORzz//3LZMKcVTTz1ld/r/nDlzyM3NZdasWXbXR0dH2/pdp6Sk2H0e0tLSKCgowM16jWSxa6HtFR4sS3XP4crauXOn3UtLrLMGiscPUFhYyP79++ndu7dMLxeNx7Bh0Lmzo6OoG25ucP/9jo6iUZDp5UII0ciMGzeOefPm8ccff3DdddeVWPf+++8zYMAAZs2axdq1a+nYsSNHjx5lzZo1BAUF8f7779dqbPfddx8zZ86EKo5yUzRy+tBDD/H222/TuXNnJkyYgFKKb7/9lnPnzjFnzhy7o6ujR4/G19eXN954A6PRyJw5c+xOCX/vvfeIioriiSee4LPPPqNfv374+flx9uxZ9uzZw8mTJ0lISLis5OS+++5j2bJlTJgwgYkTJxIQEMAff/zBvn37uOmmm1i3bp3d240YMYI5c+awfv16OnXqxNGjR1m7di2BgYG8+eabJbb9/vvvmT59OlOnTrVbCftSW7du5f7772fgwIG0atUKf39/oqOjWbduHTk5Odx5550lis5RVPTrnnvuYcmSJfTs2ZObbrqJhIQEVq5cSZMmTXj77bcr9Xi0adOGf//738ybN4+uXbsyceJEDAYD3377LV27drU7Y2P27NksW7aMe+65h19++YWgoCB+++030tPT6datm604m9W9997LH3/8wSeffMKOHTsYPnw44eHhJCUlcfz4cf7880+++OILWrZsSXx8PD169KBbt2507dqViIgILly4wA8//IDRaCzR07tfv364u7uzePFi0tLSbF98lFd1vbrncGUtXLiQzZs3M2jQIFq1aoWbmxv79u1j48aNXHXVVYwbN67E9r/99hsFBQWMHTu22scUQgghfbqFEKLRiY+PVwaDQd1///1218fExKjp06ersLAwZTAYVFhYmJo+fbqKiYkpta29vsdW9voQV9S7OCcnR7m6uip3d/cSPY+rYunSpapPnz7Kw8NDeXh4qD59+qilS5eWe5t77rnH1u84KiqqzO1yc3PVq6++qnr16qU8PT2Vu7u7atWqlRo7dqz69NNPldFotG1b3mOjyunTvXnzZtW/f3/l7e2t/Pz81KhRo9TevXvtbm/t0zxv3jz122+/qcGDBytPT0/l4+Ojxo0bp06ePFnquFXt033w4EE1ZcoU1bFjR+Xn56cMBoMKDAxUN9xwQ6ne0MWZzWb15ptvqk6dOilXV1cVEBCgbr/9dnXq1KlKHbe4jz/+WHXs2FG5uLiopk2bqscff1zl5uba7dOtlFKbNm1Sffv2tR13ypQpKikpqdznZOXKlWr48OHK399fOTs7q4iICDVkyBC1aNEilVLUazctLU3Nnz9fDRo0SIWFhSkXFxcVHh6uRo4cqX6y0+N23bp1qk+fPsrd3d12flnZe31YVfYcLv78Xyo6OrrU8/zzzz+ru+++W7Vv3155e3srLy8v1bFjR/Wvf/3Ldh+LmzZtmnJxcVHJxfsWCyGEqDKdsjdHTgghxBVtypQprFu3jtjY2ArbedWlPXv20KdPH6ZMmcKnn37q6HDqvS1bthAZGcm8efPstjK70ul0OgYPHmz3GmhxedLS0mjRogW33nprqctNhBBCVI1c0y2EEI3Qiy++SF5eXqWn+daV1157DYD75RozIRzqjTfewGw288ILLzg6FCGEaPDkmm4hhGiEWrRowSeffFJm26W6FBcXxxdffMHRo0f5+uuvGTFiBP369XN0WEI0ak2aNOHTTz8lIiLC0aEIIUSDJ0m3EEI0UhMnTnR0CACcOXOGp556Ci8vL0aPHs1HH33k6JCEaPQeffRRR4cghBBXjHp1Tfe2bdt47bXX2Lt3LwkJCXz//fcVVszcsmULc+fO5ejRozRr1oxnnnmGaWU1kRdCCCGEEEIIIepQvbqmOycnh27duvHuu+9Wavvo6GhuuukmIiMjOXDgAI888gj33HMPGzZsqPVYhRBCCCGEEEKIitSrke7idDpdhSPd//znP1m3bh1HjhyxLbvjjjtIT0/n559/rqNIhRBCCCGEEEII+xr0Nd07d+5k+PDhJZaNGDGCRx55pMzbFBQUUFBQYPvdYrFw8eJFAgIC0Ol0tRqvEEIIIYQQQoj6SylFVlYW4eHh6PU1MzG8QSfdiYmJhISElFgWEhJCZmYmeXl5uLu7l7rNggULeO655+owSiGEEEIIIYQQDcnZs2dp2rRpjeyrQSfd1fHUU08xd+5c2+8ZGRk0b96c6Oho/Pz8HBqbEDXBYrGQmppKYGBgjX07J4QjyTktrjSXfU5bLHD+PJw4Afn54OJSG2HWCrMZMjMhMQkys8CgB5lo2NApCnwUrpk6QJ7MyvCOPUL7LyoeBLSsWQMDB9ZJTI2dyWTio48+IisrC71ez8svv4y3t3eN7b9BJ92hoaGleswmJSXh4+Njd5QbwNXVFVdX11LL/fz8JOkWVwSLxUJhYSF+fn6SoIgrgpzT4kpzWed0Tg6cPAkxMeDjAy1a1FaYNcpshotpkHAeLmSCiw+ENwODk6MjE5dLochxysfT7IZOku7Kubo57j+/j+Fist1HTKHDGNIUl1GjwEleJHVlzJgx7Nmzh6FDh/Lyyy/X6KXHDTrp7tevH+vXry+x7JdffqFfv34Oi0kIIYQQosYpBYmJEBUFFy9CaCjYGUSobywWSEvTBuYvXAAnAwQGSrItGjm9E0l3PU7EW0+UWqWK0vDzTyympSTctSo1NZXc3FyaN28OQKdOnejYsSMZGRk1fqx6lXRnZ2dz6tQp2+/R0dEcOHCAJk2a0Lx5c5566ini4+P59NNPAbjvvvt45513eOKJJ5gxYwabNm3i66+/Zt26dQ68F0IIIYQQNaigAE6dgtOntankzZvX+znZSmnJdkICpKaC3gkCAsBQrz55CuE4uVf3RDkZ0JlNJZYbQ5pyeOZinIePd1hsjcHhw4f58ccfMRgM3Hfffbap5LVVWLtevfXt2bOHyMhI2+/Wa6+nTp3K8uXLSUhIIC4uzra+VatWrFu3jkcffZQ333yTpk2bsmTJEkaMGOGQ+IUQQgghalRqKhw/DsnJEBQEHh6OjqhcSkF6BiQmaCHrdODvD87Ojo5MiPrFd/uP6IsS7ow+w8ht152cXoPJ6D+KxBQnmjk6wCuU0Wjk559/Zt++fQCEh4fXyXHrVdI9ZMgQymsbvnz5cru32b9/fy1HBmazGaPRWOvHEeJyWSwWjEYj+fn5FV4r6OzsjJNMXRJCiPrHZNKu2z5xQpuj3bRpvb62UynIyNBmwKekaCH7+TWoGm9C1B2l8Nv0ne3X1Fvvw2JwIaf7gHr9Om/oUlNT+eabb2w1wQYNGsTgwYPrpF5MvUq66yOlFImJiaSnpzs6FCEqRSmFxWIhKyurUlNk/Pz8CA0NlT71QghRX2RkaNdux8drw8Q1WEG3NmRmatPIk1PAbNKS7QZwubkQDuNxbC+uidrs3ZwOvSkMbY4hNdHRYV3RrNPJCwsL8fT0ZPz48Vx11VV1dnxJuitgTbiDg4Px8PCQxETUe0opTCYTBoOh3PNVKUVubi7JyckAhIWF1WGUQgghSrFY4Nw5LeHOzYXw8Hp9EXRWtjaNPClJG5j39QM3SbaFqJDfpm9tP6cNm+DQWBqL06dPU1hYSMuWLRk/fnyNtgOrjPr7Tl4PmM1mW8IdEBDg6HCEqJTKJt2ArbVecnIywcHBMtVcCCEcJTdXm0oeGwuentp08noqO1tLtBMTodAIfr7g5uboqIRoGJwyLuKzZzMAJp8mZPUa4uiQGoVRo0YRGhrKNddc45D2o5J0l8N6DbdHPS9aIsTlsJ7fRqNRkm4hhKhrxVuBpaVBSEi9nZudm6uFmpQE+flam/AmTRwdlRANi99va2wVy9MHjQaDM1jMjg7rinPo0CFOnjzJ+PHj0el0uLi4cO211zosHkm6K0GmlIsrmZzfQgjhIAUFEB2ttQJzdoZmzeplK7C8PC3RTkiE/Dwt2fbzc3RUQjRAFgt+m7+3/ZoeOc6h4VyJjEYjP/30k63Qdrt27ejSpYujw5KkWwghhBCizmVmar2363ErsPx8rRJ5fLw2yu3tA6Ghjo5KiIbL8+guXJLjAcjuci3G4Pp7GUlDlJqayqpVq2z1igYPHkynTp0cHRYAdT+hXTR48+fPJyQkBJ1Ox+rVq2vtOLW9/4ps2bIFnU5nq1y/fPly/Ip9tT9//ny6d+/usPgq69L7IYQQwoFMJm1k++RJuHhRu3a7niXcBQVw9hwcOqSF6eSkJdteno6OTIiGrXgBtfShUkCtJh06dIiPPvqI5ORkPD09mTJlCkOGDHHI9dv21I8oRI2bNm0aOp3Odg1DmzZteP755zGZTJe132PHjvHcc8/x4YcfkpCQwI033njZsTaU5PX222/nxIkTdXIsSZSFEOIKlJkJ+/fDkSNaA+vw8HrVk7ewEM6fh4MH4WTRn7vQUPDyqpez3oVoUAxpKXjv2waA0S+QrO4DHR3SFWPz5s18//33GI1GWrZsyb333lun7cAqQ6aXX8FGjhzJsmXLKCgoYP369Tz44IM4Ozvz1FNPVXlfZrMZnU7H6dOnARgzZkyjuxbY3d3dVu27ugoLC3FxcamxmIQQQjQAFos2R/v4cW2edliYNuJdTxiNkJqqhZiZqRVPDw2VRFuImuS79Qd0RQXTMgaPqdftABuadu3asWPHDgYMGMCgQYPqzeh2cfUvIlFjXF1dCQ0NpUWLFtx///0MHz6cNWvWAFBQUMDjjz9OREQEnp6e9O3bly1btthua51KvWbNGjp27IirqyszZsxg9OjRAOj1+hJJ95IlS+jQoQNubm5cffXVvPfeeyViOXfuHJMmTaJJkyZ4enrSu3dv/vzzT5YvX85zzz3HwYMHbSPzy5cvL3Vfhg4dyuzZs0ssS0lJwcXFhY0bN5b5GKxdu5Y+ffrg5uZGYGAg48b9XbDis88+o3fv3nh7exMaGsrkyZNt14DYc+n0cqsPP/yQZs2a4eHhwcSJE8nIyLCtmzZtGmPHjuWll14iPDyc9u3bV3jsmJgYIiMjAfD390en0zFt2jQALBYLCxYsoFWrVri7u9OtWze++eabEvGsX7+ejh074uHhQWRkJDExMWXeJyGEELUsN1ebp71vn/Z706b15sO20aRVIz90SPs+wGjSiqf7+EjCLUSNspjx36JdMql0etKGSAG1y3Xx4kXbzxERETz88MP1ajr5perHu34DVFhYWOY6vV6Podgf1PK21el0ODs7V7htTYyOuru7c+HCBQBmz57NX3/9xVdffUV4eDjff/89I0eO5PDhw7Rt2xaA3NxcFi5cyJIlSwgICCAsLIwhQ4Ywffp0EhISbPv9/PPP+fe//80777xDjx492L9/P7NmzcLT05OpU6eSnZ3N4MGDiYiIYM2aNYSGhrJv3z4sFgu33347R44c4eeff+bXX38FwNfXt1Ts99xzD7Nnz2bRokW4FrVSWbFiBREREQwdOtTu/V23bh3jxo3j6aef5tNPP6WwsJD169fb1huNRl544QXat29PcnIyc+fOZdq0aSW2qcipU6f4+uuvWbt2LZmZmcycOZMHHniAzz//3LbNxo0b8fHx4ZdffqnUsZs1a8a3337LhAkTiIqKwsfHxzbCvmDBAlasWMEHH3xA27Zt2bZtG3fddRdBQUEMHjyYs2fPMmHCBO6//37uvfde9u7dy2OPPVbp+yOEEKKGKKWV/D5+vN61AjOZ4MIFbSp5errWYzsoqF7NdBfiiuJ1aCfOFxIByO52HaZAqUhYXdbq5IcOHeKee+4htKi6o7e3t6NDK5ck3dW0YMGCMte1bduWyZMn235//fXXbT2/L9WiRQvbKCbAm2++SW5ubqnt5s2bV+1YlVJs3LiRDRs28NBDDxEXF8eyZcuIi4sjPDwcgMcff5yff/6ZZcuW8fLLL0PRSf3ee+/RrVs3276sI72hxcqXzps3j0WLFjF+/HgAWrVqxV9//cWHH37I1KlT+eKLL0hJSWH37t00KWro2aZNG9vtvby8MBgMJfZ5qfHjxzN79mx++OEHJk6cCEUjz9Zr1+156aWXuOOOO3juuedsy4rflxkzZth+vuqqq3jrrbfo06cP2dnZeHl5Veqxzc/P59NPPyUiIgKAt99+m5tuuolFixbZ7o+npydLliwp8cVJRce2Pk7BwcG2x7ygoICXX36ZX3/9lX79+tluu337dj788EMGDx7M+++/T+vWrXn11VcxGAxcffXVHD58mIULF1bq/gghhKgBBQVasbTTp7VR7XrSCsxs1mq3xcdr3wO4ukqyLURdKFFALXK8Q2NpyC6tTn727Nly84f6RJLuK9iPP/6Il5cXRqMRi8XC5MmTmT9/Plu2bMFsNtOuXbsS2xcUFBAQEGD73cXFha5du5Z7jJycHE6fPs3MmTOZNWuWbbnJZLKNWB84cIAePXrYEsnqcHNzY8qUKSxdupSJEyeyb98+jhw5Ypsub8+BAwdKxHSpvXv3Mn/+fA4ePEhaWhoWiwWAuLg4OnbsWKm4mjdvbku4Afr164fFYiEqKsr2JtClS5dSMxWqc+xTp06Rm5vL9ddfX2J5YWEhPXr0gKJCd9dcc02J9dYEXQghRB24cAGiorR52/WkFZjFoiXb589r/zcYIDAIDJJsC1HrDBcS8TqwAwBjQAjZ3fs7OqQG6dChQ/z4448YjUY8PT0ZP358vSuWVh5JuqupvGJkl15L8Pjjj5e57aWjtA8//HANRKeJjIzk/fffx8XFhfDwcNuU9+zsbJycnNi7dy9Ol3y9XXyE193dvcJiadnZ2QB8/PHH9O3bt8Q6674vt/iY1T333EP37t05d+4cy5YtY+jQobRo0aLM7cs7bk5ODiNGjGDEiBF8/vnnBAUFERcXx4gRI8q9HKA6PD1L9lip7rGtj/W6detKJPoUXb8vhBDCgUwmiI2FEye0n5s2dfgQssWijWifT4ALqeBkgIBASbaFqEt+W35Ap7TBlfTBY0EvL8CqsE4n379/PxTNqB0/fnylZ6XWF5J0V1NVrrGurW0r4unpWWIat1WPHj0wm80kJyczcODltSsICQkhPDycM2fOcOedd9rdpmvXrixZsoSLFy/aHe12cXHBbDZXeKwuXbrQu3dvPv74Y7744gveeeedcrfv2rUrGzduZPr06aXWHT9+nAsXLvDKK6/QrFkzAPbs2VNhDJeKi4vj/Pnztmn6f/zxB3q93lYwzZ7KHNt6HhR/XKwF7eLi4hg8eLDdfXfo0KHU6P8ff/xR5fslhBCiCjIztdHtc+fAz0+rROZASmnXap8/r1Ul1+shIKDe1G8TovEwm/DbWlRATe9E+uAxjo6owTlw4IAt4R48eHC9rU5eEXn7bYTatWvHnXfeyd13382iRYvo0aMHKSkpbNy4ka5du3LTTTdVaX/PPfccc+bMwdfXl5EjR1JQUMCePXtIS0tj7ty5TJo0iZdffpmxY8eyYMECwsLC2L9/P+Hh4fTr14+WLVsSHR3NgQMHaNq0Kd7e3mWO3FoLqnl6epaoRG7PvHnzGDZsGK1bt+aOO+7AZDKxfv16/vnPf9K8eXNcXFx4++23ue+++zhy5AgvvPBCle43RdPep06dyuuvv05mZiZz5sxh4sSJ5V5fUpljt2jRAp1Ox48//sioUaNwd3fH29ubxx9/nEcffRSLxcKAAQPIyMhgx44d+Pj4MHXqVO677z4WLVrEk08+yaxZs9i3b5/davBCCCFqwKWtwMLDHZrZKgXpGZCYACkp2mXk/v5QrF6rEKIOeR3YjnNaCgDZPQZiahLs6JAanF69enHu3Dm6d+9Oq1atHB1OtTW8rwlEjVi2bBl33303jz32GO3bt2fs2LHs3r2b5s2bV3lf99xzD0uWLGHZsmV06dKFwYMHs3z5ctsLw8XFhf/9738EBwczatQounTpwiuvvGKbfj5hwgRGjhxJZGQkQUFBfPnll2Uea9KkSRgMBiZNmoSbm1u5cQ0ZMoRVq1axZs0aunfvztChQ9m1axcAQUFBLF++nFWrVtGxY0deeeUVXn/99Srf9zZt2jB+/HhGjRrFDTfcQNeuXUu1S7tUZY4dERHBc889x5NPPklISIitXdoLL7zAs88+y4IFC+jQoQMjR45k3bp1tse6efPmfPPNN7b7/MEHH9gK4wkhhKhB9agVmFKQkaENth85DMnJ4OsLgYGScAvhSP6bvrP9nDZUCqhVhtFoZMuWLbYi1Hq9nnHjxjXohBtAp5RSjg7CkTIzM/H19SUtLa1UD+b8/Hyio6Np1apVhQmeqBsxMTG0bt2a3bt307NnT0eHUy8ppTCZTBgMhgqvyUfOc9EAWCwWkpOTCQ4ObpBTysQVxtoKLCpKq0oWHKz13KoCi1Ik5+cT7OaG/jKrmmdlQUICJCWD2aTNbpcyH6IuKRQ5Tvl4mt3Q4fgq/fWFc8p5Wj82Bp1SFAaGc3rRau1aD3ssZgypieT0GIjZx5/ERK3pQQX1jK84KSkprFq1ipSUFHr16sXNN9/skDjS09Px9/cnIyMDnxq6XEiml4sGwWg0cuHCBZ555hmuvfZaSbiFEELUvcJCOHWqXrQCy8rWCqQnJWp123z9wE2SbSHqDb8t36MrGttMjxxXdsItADh48CDr1q2zVSfv1KmTo0OqUZJ0iwZhx44dREZG0q5dO7755htHhyOEEKKxqSetwHJyipLtJCgoBF8fqKEmIUKImmIy4bdVK2yrnJxIHzTa0RHVW0ajkfXr13PgwAFowNXJKyJJt2gQhgwZQiO/EkIIIYQjWFuBnTzp0FZgubnaFPLEBMjP1wqk+/vXeRhCiErw3rcFQ8YFALJ6RWL2C3R0SPXShQsXWLlyJSkpWrG5IUOGMHDgwCvyUjJJuoUQQggh7LG2Ajt7Vstwg4LqPIS8fG0KeUIi5OVqyfYlJWiEEPWMFFCrHIPBQHZ2Np6enkyYMKHBF0srjyTdQgghhBDFWVuBRUVp87kjIuq8Mnl+vtb26/x5LQRvHwgLq9MQhBDV4Jx0Fs+jWrecwpBm5Hbo7eiQ6hWLxWIbyfb19eWOO+6gSZMmV9x08ktJ0i2EEEIIYZWXBydOQEyMdt1206Z1eviCgr+T7exs8PKC0FCH1WsTQlRRiVHuyPFSQK2YlJQUvvnmG4YOHUr79u2hqN1tYyBJtxBCCCGEUlqD6+PHtaJpISFVbgV2OQoLITVVG2DPypJkW4iGSGcsxPe3tQBYDM5kSAE1m+LVyTdu3Ei7du0q1dr2SiFJtxBCCCEat8JCOHNGawem10Pz5nWW7RqNkHoBzsdrl5C7u2v5vgyOCdHweO/ZhCErHYCsPkMxe0sBhkurk1911VWMGzeuUSXcSNIthBBCiEbt4kXt2u2EBAgMBE/POjmsyawVSDt/Xku23dwgOFiSbSEaMr8SBdQmODSW+iAlJYVVq1aRkpKCTqdj8ODBV2x18oo0vnssRC2KiYlBp9PZvs3bsmULOp2O9PR0R4cmhBCiOLMZTp+GXbu0ed1Nm9ZJwm0yQUoyxMbBsePaIHtQkFaRvBF+DhXiiuESH43n8X0AFIS3Iq99D0eH5FAZGRl8/PHHpKSk4OXlxd13383gwYMbZcKNJN11x2yGLVvgyy+1/5vNtXu8adOmodPpbP8CAgIYOXIkhw4dqvJ+xo4dW+42xY9j79/8+fMv897UjPnz56PT6Rg5cmSpda+99ho6nY4hQ4bU6DGvu+46EhIS8PX1rdH9CiGEuAxZWXDgABw6BC4uEB5e6723zWZISYWjR+HoMSjIh8CiZNsBbb+FEDXMb3PxAmrjGn1BBl9fX7p27cpVV13FvffeS8uWLR0dkkPJ9PI68N138PDDcO7c38uaNoU334Txtdi6b+TIkSxbtgyAxMREnnnmGW6++Wbi4uJq9DgJCQm2n1euXMm///1voqKibMvqUwuAsLAwNm/ezLlz52harCLt0qVLa6V6oouLC6GhoTW+XyGEENVgsWjzuY8f10qDh4WBs3OtH/LiRW32euoFcDZos9gLXMBQy1/ACyHqhq4wH7/t6wCwOLuSMeAmR4fkECkpKbi7u9s++48cORK9Xt9oR7eLk0egln33Hdx6a8mEG7TqpLfeqq2vLa6uroSGhhIaGkr37t158sknOXv2LCkpKbZtDh8+zNChQ3F3dycgIIB//OMfZGdnQ9HI8CeffMIPP/xgG7XesmVLqeNYjxEaGoqvry86na7Esq+++ooOHTrg5ubG1VdfzXvvvVfi9v/85z9p164dHh4eXHXVVTz77LMYjUbb+vnz59O9e3dbYuzl5cUDDzyA2Wzm1VdfJTQ0lODgYF566aUKH5Pg4GBuuOEGPvnkE9uy33//ndTUVG66qfQb5JIlS8qNfdeuXfTo0QM3Nzd69+7N/v37S6y/dHr5hQsXmDRpEhEREXh4eNClSxe+/PLLErcZMmQIc+bM4YknnqBJkyaEhobWm9kCQgjRYOXlwZEjsHevlgk3a1arCbc12T76l3bY9Awt2Q4IAIOMbAtxRfHZ9StOOZkAZPYdjsWr8c1wPHjwIB9//DHfffcdFosFAIPBIAl3ERnprkVmszbCrVTpdUpps04eeQTGjKn9qWXZ2dmsWLGCNm3aEBAQAEBOTg4jRoygX79+7N69m+TkZO655x5mz57N8uXLefzxxzl27BiZmZm2EfMmTZpU6biff/45//73v3nnnXfo0aMH+/fvZ9asWXh6ejJ16lQAvL29Wb58OeHh4Rw+fJhZs2bh7e3NE088YdvP6dOn+emnn/j55585ffo0t956K2fOnKFdu3Zs3bqV33//nRkzZjB8+HD69u1bbkwzZszgiSee4Omnn4aiUe4777yzyrFnZ2dz8803c/3117NixQqio6N5+OGHyz12fn4+vXr14p///Cc+Pj6sW7eOKVOm0Lp1a6655hrbdp988glz587lzz//ZOfOnUybNo3+/ftz/fXXV+nxF0IIASQl1VkrMKUgPV0bUL9wQftbHxAABvnEJcQVq3gBtfTIWpzGWg8VFhby008/2eoZ6XQ6CgsLcavDlosNgfwJqIbevSExseLtCgq02ixlUQrOntX6cLq6Vry/0FDYs6fycf7444+26R05OTmEhYXx448/2r5x+uKLL8jPz+fTTz/Fs6h4zDvvvMPo0aNZuHAhISEhuLu7U1BQUO0p0vPmzWPRokWML5pH36pVK/766y8+/PBDW9L9zDPP2LZv2bIljz/+OF999VWJpNtisbB06VK8vb3p2LEjkZGRREVFsX79evR6Pe3bt2fhwoVs3ry5wqT75ptv5r777mPbtm306tWLr7/+mu3bt7N06dIqxf7FF19gsVj473//i5ubG506deLcuXPcf//9ZR47IiKCxx9/3Pb7Qw89xIYNG/j6669LJN1du3Zl3rx5ALRt25Z33nmHjRs3StIthBBVcWkrsGbNaq1amVKQkQEJiVqhNABfX+2ScSHElcv17Ck8Tmo1k/KbtSGvbVdHh1RnLq1OPmTIEAYMGCCj23ZI0l0NiYna9PCaUl5ifjkiIyN5//33AUhLS+O9997jxhtvZNeuXbRo0YJjx47RrVs3W8IN0L9/fywWC1FRUYSEhFzW8XNycjh9+jQzZ85k1qxZtuUmk6lEYbGVK1fy1ltvcfr0abKzszGZTPj4+JTYV8uWLfH29rb9HhISgpOTU4kXdUhICMnJyRXG5ezszF133cWyZctso+Vdu5Z8g6xM7MeOHaNr164lvsnr169fucc2m828/PLLfP3118THx1NYWEhBQQEeHh4ltrs0nrCwsErdNyGEEEXqsBVYRob22SA5BcwmrThaZb5MF0I0fH6bvrX9nB45vtEUUDtw4ADr16/HaDTi5eXFhAkTGn2xtPJI0l0NlR30rWik2yowsPIj3VXh6elJmzZtbL8vWbIEX19fPv74Y1588cWq7awarNeGf/zxx6VGn52K5tPv3LmTO++8k+eee44RI0bg6+vLV199xaJFi0ps73zJdXc6nc7uMus1JBWZMWMGffv25ciRI8yYMaNasVfHa6+9xptvvsnixYvp0qULnp6ePPLIIxQWFpbY7nLumxBCNGpmM8TGwokTYDRqlUtr6RqurCwt2U5MkmRbiMZIl5+H7471AFhc3MjoP8rRIdUJk8nE9u3bMRqNXHXVVYwfP77EIJ4oTZLuaqjsFG+zGVq21EbF7V3XrdNpnwWio+umXYhOp0Ov15OXlwdAhw4dWL58OTk5ObYXyo4dO2zTtSmqvm2uZn+zkJAQwsPDOXPmjN1rpikqYtaiRQvb9dUAsbGx1TpeVXTq1IlOnTpx6NAhJk+eXGp9ZWLv0KEDn332Gfn5+bbR7j/++KPc4+7YsYMxY8Zw1113QdG0+RMnTtCxY8cauV9CCNGoZWVpyXZcnDa3OyioVg6Tna1NI09OgkIj+PnW6mXiQoh6yuePDTjl5QCQ2W8EFo/607GnNhkMBm677TZOnDjBgAED0DWS0f3LIUl3LXJy0tqC3XqrlmAXT7yt5+bixbWXcBcUFJBYdPF5Wloa77zzDtnZ2YwePRqAO++8k3nz5jF16lTmz59PSkoKDz30EFOmTLFNLW/ZsiUbNmwgKiqKgIAAfH19S43Clue5555jzpw5+Pr6MnLkSAoKCtizZw9paWnMnTuXtm3bEhcXx1dffUWfPn1Yt24d33//fe08IJfYtGkTRqMRPz+/asU+efJknn76aWbNmsVTTz1FTEwMr7/+ernHbNu2Ld988w2///47/v7+vPHGGyQlJUnSLYQQl0Mp7RvuqCgt8a6lVmA5OVpNtqQkyC8AXx+oYn1RIcQVxL94b+6hV3YBtQMHDlBYWGirQRQSEnLZl6I2JnKVey0bPx6++QYiIkoub9pUW16bfbp//vlnwsLCCAsLo2/fvuzevZtVq1YxZMgQADw8PNiwYQMXL16kT58+3HrrrQwbNox33nnHto9Zs2bRvn17evfuTVBQEDt27KhSDPfccw9Llixh2bJldOnShcGDB7N8+XJatWoFwC233MKjjz7K7Nmz6d69O7///jvPPvtsDT8S9nl6epaZcFcmdi8vL9auXcvhw4fp0aMHTz/9NAsXLiz3mM888ww9e/ZkxIgRDBkyhNDQUMaOHVvj900IIRqNvDw4fFhrBWY210orsLw8iI6BQ4e0mesuLhAaAu7uNXoYIUQD4hZzHPczfwGQ1/Jq8ltdmQMohYWFrF69mh9++IENGzaQlJTk6JAaJJ1S9iY+Nx6ZmZn4+vqSlpZWKgHLz88nOjqaVq1aXXbZe7MZfvtNq+cSFgYDB9bNlHLR+CilMJlMGAyGSk33qcnzXIjaYLFYSE5OJjg4WCqiipJquRVYXr5Wifz8eS3x9vaumXpsCkWOUz6eZjd0yLRM0bA11vM5dOlL+G/WZmcmTP8X6Zcz0m0xY0hNJKfHQMw+/iQmat8fdnVwIfTk5GS++eabEtXJBw4ceMVPJ09PT8ff35+MjIxSxZ2rS6aX1xEnJygaYBZCCCHE5bC2Ajt9Wrteq4ZbgeXnQ0oqnI+H3Fzw8qp6MVMhxJVLn5eDz84NAJjdPMjsN8LRIdW4AwcOsG7dOkwmk1QnrwGSdAshhBCi4ajFVmCFhZBcNLKdna0l2yEhjaYDkBCiknx2/oxTfi4AmdfdiMX9yqrcvXbtWvbt2wcg1clriCTdQgghhKj/rK3ATp7UenJGRIChZj7GGI1ai89z8ZCVqeXxoaGSbAsh7FAK/2K9ua/EAmqBgYGNajp5XZCkWwghhBD126WtwAIDa2S3RpOWbJ+Ph4wM8PDQRraldIAQoixuZ47iFnsCgLyrOlHQor2jQ6oReXl5uBdVh7z22mtp1aoVoXJdTY2RpFsIIYQQ9VMttQIzmbTaa+fPQ3q6Vn9Nkm0hRGX4byrWJmzYBIfGUhMKCwtZv349586dY9asWbi6uqLT6SThrmGSdAshhBCi/snL06aSR0drvbmaNr3s+d5ms3ZJ+Ll4Ldl2dYGgIOkmIoSoHH1OFj5/FBVQ8/Ais+8Njg7psiQnJ7Nq1SpSU1PR6XTExMTQvv2VMXJf30jSLYQQQoj6JTkZjh3TMuTg4MtuBWY2w8U0SDgPFy6Ci7M2Q90gybYQogp8f1+PvrAAgIz+o1CuDbPVqlKKAwcOsH79ekwmE97e3kyYMIEWLVo4OrQrliTdQgghhKgfjEatFdipU9rvTZte1pxviwXS0rRp5BcugJNBkm0hRDUphV+xqeXpkQ2zgJp1OvnBgwcBaN26NePGjZPq5LVMkm4hhBBCOF5aGhw/rrUCCwjQ+nVVk1La7hIStEJpeidtlzVU7FwI0Qi5nzyI27nTAOS260ZBszaODqlaNmzYwMGDB9HpdERGRjJgwACpTl4HpGSIaBCGDBnCI488Yvu9ZcuWLF682KExCSGEqAFms3bd9q5dkJKitQKrZsKtFKSla7n74cPa6La/PwRKwi2EuEzFR7nThjbcAmqRkZGEhYUxdepUaQdWhyTpritmM2zZAl9+qf3fbK7Vw02bNg2dTodOp8PFxYU2bdrw/PPPYzKZavQ4MTEx6HQ6nJyciI+PL7EuISEBg8FgK8xQk3bv3s0//vGPGt2nEEKIOpadDQcOwMGDWlZczd7bSmmF0aKi4MhhLXf389OKpNVAsXMhRCPnlJWOz65fATB5+ZLVZ5ijQ6q0wsJC21RyAC8vL2bNmiXXb9cx+d63Lnz3HTz8MJw79/eypk3hzTdhfO1dDzJy5EiWLVtGQUEB69ev58EHH8TZ2Zmnnnqq1LaFhYW4uLhU+1gRERF8+umnJfb9ySefEBERQVxcXLX3W5agoKAa36cQQog6opR2ofXx41orsNDQamfHmZnaNPLkFDCbtGTb1bXGIxZCNGK+29ehNxYCkDHgJpRLw3iTKV6d3MnJic6dOwPI6LYDyEh3bfvuO7j11pIJN2h9R2+9VVtfS1xdXQkNDaVFixbcf//9DB8+nDVr1kDRSPjYsWN56aWXCA8Pt7UHOHz4MEOHDsXd3Z2AgAD+8Y9/kJ2dXeGxpk6dyrJly0osW7ZsGVOnTi217ZEjR7jxxhvx8vIiJCSEKVOmkJqaalufk5PD3XffjZeXF2FhYSxatKjUPi6dXv7GG2/QpUsXPD09adasGQ888ECJuJcvX46fnx8bNmygQ4cOeHl5MXLkSBISEir9eAohhKgB+flw5Ajs2aM1zG7atFoJd1a21lHs0CEt6fby0nptS8IthKhRSuG3uVgBtaH1v4CaUor9+/fz8ccfk5qaire3N97e3o4Oq1GTpLs2mc3aCLdSpddZlz3ySK1PNbdyd3ensLDQ9vvGjRuJioril19+4ccffyQnJ4cRI0bg7+/P7t27WbVqFb/++iuzZ8+ucN+33HILaWlpbN++HYDt27eTlpbG6NGjS2yXnp7O0KFD6dGjB3v27OHnn38mKSmJiRMn2rb5v//7P7Zu3coPP/zA//73P7Zs2cK+ffvKPb5er+ett97i6NGjfPLJJ2zatIknnniixDa5ubm8/vrrfPbZZ2zbto24uDgef/zxSj9+QgghLlNyMuzerWXLgYHavyqOuGRnw+nTcOig1m/b01NLtt0k2RZC1AKP43txTYgFIKdDLwrDWjo6pHIVFhayevVq1qxZg8lkonXr1tx7770yndzBZHp5dfTuDYmJFW9XUKCVTS2LUnD2rDatrjJfzYeGaiMDVaSUYuPGjWzYsIGHHnrIttzT05MlS5bYppV//PHH5Ofn8+mnn9raBrzzzjuMHj2ahQsXEhISUuYxnJ2dueuuu1i6dCkDBgxg6dKl3HXXXThfMnrxzjvv0KNHD15++WXbsqVLl9KsWTNOnDhBeHg4//3vf1mxYgXDhmnXy3zyySc0bdq03Pt4aZG1F198kfvuu4/33nvPttxoNPLBBx/QunVrAGbPns3zzz9f6cdRCCFENV3aCqxZsyq3AsvN1f70JiVpg+W+vtCkSe2EK4QQVg2pTVjx6eRSnbx+kaS7OhITtenhNaW8xPwy/Pjjj3h5eWE0GrFYLEyePJn58+fb1nfp0qXEddzHjh2jW7duJfr09e/fH4vFQlRUVLlJN8CMGTO47rrrePnll1m1ahU7d+4sVbjt4MGDbN68GS87lWlPnz5NXl4ehYWF9O3b17a8SZMmtunvZfn1119ZsGABx48fJzMzE5PJRH5+Prm5uXh4eADg4eFhS7gBwsLCSE5OLne/QgghLlNamlbh7Pz5arUCy8vTEu2ERMjPAx8f7bptIYSobU4ZF/HZvQkAk7c/Wb0jHR1SudLS0mzTySdMmCCj2/WIJN3VERpaue0qGum2Cgys/Eh3FURGRvL+++/j4uJCeHg4hksqwhZPrmtCly5duPrqq5k0aRIdOnSgc+fOHDhwoMQ22dnZtpHzS4WFhXHKOgpSBTExMdx8883cf//9vPTSSzRp0oTt27czc+ZMCgsLbUn3paPuOp0OZW/qvxBCiMtnNmuzuaKitL+HVaxMnp+vVSGPj9dGub19qvxnUAghLovvb2vRmbUBpPRBo1HO1S86XFuUUraR7Pbt23PLLbfQrl27Gv+cLy6PJN3VUdkp3mYztGypfWKwl9zpdFoBmehocHKq8TA9PT1p06ZNpbfv0KEDy5cvJycnx/ZC3bFjB3q9vsKRZqsZM2bwwAMP8P7779td37NnT7799ltatmxZ6ksAgNatW+Ps7Myff/5J8+bNoehbuxMnTjB48GC7+9y7dy8Wi4VFixahL5qu+PXXX1f6fgshhKhh2dlasn32LHh7a18uV1JBgVaJPOG8thtvby3ZltmRQog6ZbHgv/l726/pkeMcGo49SUlJrFu3jgkTJuDr6wtAjx49HB2WsEMKqdUmJyetLRiU/rRg/X3x4lpJuKvjzjvvxM3NjalTp3LkyBE2b97MQw89xJQpUyqcWm41a9YsUlJSuOeee+yuf/DBB7l48SKTJk1i9+7dnD59mg0bNjB9+nTMZjNeXl7MnDmT//u//2PTpk0cOXKEadOm2ZJpe9q0aYPRaOTtt9/mzJkzfPbZZ3zwwQfVfhyEEEJUk1LaF81//qkl3CEhlZ4LXliozUA/eBBOntCWhYZqs9El4RZC1DWPv3bjkqx1H8ru3BdjSDNHh2SjlGLfvn0sWbKEs2fPsmHDBkeHJCogSXdtGz8evvlGm1ZXXNOm2vJa7NNdVR4eHmzYsIGLFy/Sp08fbr31VoYNG8Y777xT6X0YDAYCAwPtjmIDhIeHs2PHDsxmMzfccANdunThkUcewc/Pz5ZYv/baawwcOJDRo0czfPhwBgwYQK9evco8Zrdu3XjjjTdYuHAhnTt35vPPP2fBggXVeASEEEJUm7UV2N69f7cCc6l4KqbRqLX8OnRIa9utlJZse3tLsi2EcBz/Td/afq5PbcKs1cnXrl2LyWSiTZs23HTTTY4OS1RApxr5Ra2ZmZn4+vqSlpaG3yXfxufn5xMdHU2rVq1wc3O7vAOZzfDbb9oni7AwGDiw3oxwiyuLUgqTyYTBYKhUtcoaPc+FqAUWi4Xk5GSCg4PLnfUiHCg5WZtOnpJS1L+r4vcSowkupGoD45mZ4OYOPt5VLmreICkUOU75eJrd0CHfLIiG7Uo8nw3pqbR55CZ0ZjMm3wBOLl5XpZoUVWYxY0hNJKfHQMw+/iQmak0eunYtuVlSUhKrVq3iwoUL6HQ6hg4dSv/+/aU6eQ1LT0/H39+fjIwMfHx8amSfck13XXFygiFDHB2FEEIIUXOq0QrMZIILF7Sp5OnpWn4eFCTfQwsh6g/frT+gM5sBSB88pnYT7kqKjY1lxYoVmEwmqU7eADn+DBJCCCFEw5Oers0Hr2QrMLMZLl7URrbT0rSmHZJsCyHqHYsZvy2rAVA6HWn1pIBaeHg4TZo0wcfHh7Fjx0p18gZGkm4hhBBCVF7xVmD5+RW2ArNYtGT7/Hnt/wYDBAaBQZJtIUQ95Hn4D1xSEwDI6XodpsAwh8Vy4cIF/P390ev1ODs7c/fdd+Ph4SHTyRsgSbqFEEIIUTnZ2XDyJMTEgI+PViytDBaLNqJ9PkG7dtvJAAGBkmwLIeq34gXU0hxUQE0pRUzMftau/YmBAwcyaNAgKGoHLBomSbqFEEIIUT6ltEKgx45BVpZWXryMyuRKaTPPz5+H1FTtEu+AgHpxSaQQQpTLcDEJr/3bATD6B5PdrX+dx2AyFRIdvY6LFw8BEB8fj1JKRrcbOPkTWAkWi8XRIQhRa+T8FkKUKz9fG92OjtYuxG7a1G4vL6UgPQMSE7Qi5jod+PuDs7NDohZCiCrz2/IDOqV9LkofMlabolOHMnNS2bX3c3JytOrkw4YN47rrrpOE+wogSXc5XFxc0Ov1nD9/nqCgIFxcXOSkF/VeZVuGKaUoLCwkJSUFvV6PSyX66QohGpmUFK1YWjmtwJTSWn4lFCXbFgv4+VWqRbcQQtQfZlOxAmp60oeMqbNDK6U4VZjKnv0rsVjMODt706/frfTv37zOYhC1S5Lucuj1elq1akVCQgLnz593dDhCVIpSCovFgl6vr9SXRB4eHjRv3lz6Hwsh/mY0aiPbJ09qv5fRCiwrS0u2k5LBbNKSbVfXug9XCCEul9fBHTinJQOQ3WMApiYhdXbsXFMeewrOYUERHNyWsLCxBAR41NnxRe2TpLsCLi4uNG/eHJPJhLmoX58Q9ZnFYuHChQsEBARUmEg7OTlVOCIuhGhkrK3AEhKgSRO7rcCysiExEZIStb7bvn7gJsm2EKIB89/0ne3ntKET6vTYns4e9HZtSnZ4c1p1HEZSknwuu9JI0l0JOp0OZ2dnnOXCNNEAWCwWnJ2dcXNzk9FrIUTlmc1w7pyWcOfnQ3h4qepnOTlFyXYSFBSCrw+4uzssYiGEqBHOKefxPPQ7AIWBYeR0ubZWj6eUIjrrLL4u3gS4+QPQxiWQnGa9MMtAyBVJkm4hhBCiscvJgRMnymwFlpurTSFPTNDycR8frUiaEEJcCfy2rEanFFgLqOlrr7eh0WJib8oh4rLP42lw5/qmg3DRySDJlU6SbiGEEKKxsrYCO34cMjJKtQLLy9emkCckQl6ulmz7+Tk0YiGEqFkmE35bfwBAOTmRMbj2CqilF2SyM2kvWcYcdOi4yqcFznoDKOkkc6WTpFsIIYRojPLz4fRp7Z+rq1YsrWhaY36+Von8/HltENzbB8LCHB2wEELUPO/9WzFkXAAgq+dgTH6BNX4M63Ty/alHMCsL7k5u9AvpSaB7k6INavyQop6RpFsIIYRobFJSICpKuzg7JMR2YXZBwd/Jdna2VkMtNNRuW24hhLgi+BUroJYeOb7G92+2mNmdcoi47HgAwjyCuSa4O65O0lexMZGkWwghhGgsLm0F1rw56PUUFkJqKsTHa23AJNkWQjQGzkln8TryJwCFwU3J6XRNjR9Dr9NjtBjRoaNLk/a092stXWMaIUm6hRBCiMYgPV0b3Y6Ph4AA8PLCaITUZDgfD5mZ2oB3SIjdltxCCHHF8dv8ve3ntMhxNfbmp5RCodDr9Oh0Oq4J7k6WMZtAtyY1sn/R8EjSLYQQQlzJLBY4e1ZLuPPyICICIwYuJGr5d2YmuLlDcLAk20KIxkNnLMRv21oAlJOBjEG31Mh+rdXJdWjJtk6nw9XJBVcnSbgbM0m6hRBCiCuVtRVYbCx4e2MKbcrFixB/HtLTwM0NgoLAqfa64wghRL3kvWczhqw0ADL7DMXsc/l9ENMLMvk9aS/ZRdXJr/Zrja+rTw1EKxo6SbqFEEKIK421FVhUFKSnYw4K5WKOC+ePwsU0cHGGwCAwSLIthGik/DYXK6A29PIKqCmlOJMVx/7Uo1is1clDe0rCLWwk6RZCCCGuJAUFcOoUnDmDxeDCRfdmJJzSkXoBnA0QGCjJthCicXM5H4Pnsb0AFIS1IPfqXtXel3U6eVz2eZDq5KIMknQLIYQQV4rUVDh+HEtSMunOwcQnu3MhFZwk2RZCCJsSo9yR46vdqkEpxW8Ju0jNv1hUnfxq2vtdJdXJRSmSdAshhBANnckE0dGoEyfJTLdwztiMC2l6dDqtULlB/toLIQQAusICfLevA8Di7EL6wJurvy+djk7+bdmdcohrQ3pIdXJRJvkzLIQQQjRkGRmoY8fJioonoTCApGwvAHx9wUVmNwohRAneuzdiyM4AIPOa4Vi8fKt0e6PFREZhpi3BDvEI4sbmQ3DSyVQiUTZJuoUQQoiGqKgVWOaeKFLj8jivIjApA35+4Orq6OCEEKJ+8t/0re3nqhZQs1YnzzcVcH2zgXg7ewJIwi0qJEm3EEII0dDk5JC55wQX9seSlONFvltTSbaFEKICLudO43HiIAD5EVeR17ZbpW6nlOJMZhz7L2jVyT0MbhjNRnCu5YDFFUOSbiGEEKKhUIqsk4mk/HactOh0sr1C8AlxxdfN0YEJIUT957+pWAG1YRMqVUDNaDGyJ+UwZ6U6ubgMknQLIYQQDUBWagFJv58ic/9p8swuuDdvRrCHVMgVQojK0BXk47ujqICaiysZ142q8DZpBRnsTNpHtjFHq04ecDXtfaU6uag6SbqFEEKIeiwnB84fSuXi78dRycm4Ng2mib+7o8MSQogGxefP/+GUmw1A5rU3YPH0rvA2sVnxZBtz8DC4cW1ILwLd/OsgUnElkqRbCCGEqIdycyE+1kTSnzHoTp3A28OCc6dmoNc7OjQhhGhw/Df+XUAtbeiESt2mS8DV6HRwtV8bmU4uLosk3UIIIUQ9kpcH589D3JEMOH6cgPx4XJs1qdSojBBCiNJcY6NwP3MUgPwW7ci/qpPd7dIKMjiRHk2f4K7odXqcdHq6BXSs42jFlUiSbiGEEKIeKCiA+HiIPm2h8Mw5QtOP42XIw9QiAotB/lwLIUR1FS+glja0dAE1pRSnM+M4UFSd3NvFk47+bR0QqbhSyV9xIYQQwoEKCyEhAc6cgcyEHEIyT9A8Kxbl7YXJp6mjwxNCiAZNn5eDz+8/AWB28yCz38gS6+1VJ2/t08IhsYorlyTdQgghhAMYjVqyHR0NF1IVAcZE2mVG4Zx1EVNAKMpFmm4LIcTl8tm5Aaf8XAAy+43A4u5pW6dVJ99LtjEXHTq6BlxNO6lOLmqBJN1CCCFEHTKZIDFRS7ZTU8HTUEBb4ynczp8GZxeMoc0r1TtWCCFEBZTCf5P9Ampns8/zZ/IBLMqCh8GdfiE9CZDq5KKWSNIthBBC1AGzGZKStGnkqang5gYtPFPxiDuOIT0Zk18Qys3D0WEKIcQVwy36L9xiowDIu6ojBS2vtq3zdfFBj45QjxD6BHeT6uSiVknSLYQQQtQisxmSkyEmRku6XV0hLMiER0oMbnEnwWLGGNwU9E6ODlUIIa4oJQqoRY6nwFxoS659XLwY1nQAPs5eMp1c1DpJuoUQQohaYLFASoo2jTwpCQwGCAsDl/wM3E5F4ZwSj9nbX1qBCSFELdDnZuOzcwMAZndPDnS8mn2xGxkUdg1B7gEA+LrI+6+oG5J0CyGEEDVIKS3Zjo3VCqU5OUFICDg7WXBOPodbTBT6/FyMgeFaJi6EEKLG+e5Yj74wH4CoHn3YnXUKgNjseFvSLURdkb/2QgghRA1QCi5c0JLt+HitFlpQELi4gC4/F9foE7iej8Xi7okxRFqBCSFErVEKv81/Ty3f2q1DUXXyDrTzbeXQ0ETjJEm3EEIIcRmUgosXIS5OS7aVgsBA7dptlMKQmohbTBROWWmYmoRIKzAhhKhlbicP4XZWG9mOa9aM7IiWDJXq5MKBJOkWQgghqikt7e+RbZNJS7bd3LR1usICXM6dxvXcaTA4YwxpJq3AhBCiDrj98oXt5zPXDeX6pgOlOrlwKEm6hRBCiCrKyNCS7XPnwGiEgABwd/97vVP6BdxijmNIS5JWYEIIUYf02RmE7N0OQKGHJyHX3wOScAsHk6RbCCGEqKTMTDh7VptKXlCgJdsexfNpkwmXBK0VmM5sklZgQghRB5RSxGSdI8IzlJDt69AbCwDIGngLuLpXeHshapsk3UIIIUQFsrO1RPvsWcjN1ZLt4OCS2+izM3GLjcI5+Zy0AhNCiDpitBjZk3yIszkJJOQkclex3tzpkeMdGpsQVpJ0CyGEEGXIydGmkMfGaj83aaJdt12CxYJzcjxuMcelFZgQQtShtIIMdibuJduUiw4d7eKTcE2IASDn6p4URkilclE/yKcCIYQQ4hJ5eVpxtOhoyMoCf39o3rz0drr8XFzjilqBuXlIKzAhhKgDSilOZ8ZyIPUvLFjwMLjTL6QnXTa8btsmfaiMcov6Q5JuIYQQokh+vpZsx8RoxdL8/LRku1TRcaUwXEjCLea4tAITQog6VGg2siflEOdyEgAI9wihT3A3PHJz8d69CQCTtx9ZvYc6OFIh/iZJtxBCiEavoAASEuD0aS3Z9vUtI9m+tBWYk0FagQkhRB1SKC7kp6FDR9eADrTzbYVOp8N320r0JiMAGQNHo5ylYrmoPyTpFkII0WgVFmrJdnQ0XLwIPj5lJ9tYW4HFRmG4kIjJX1qBCSFEXVBKoSt6Y3Z1cuG60F4ABLj5axtYLPhv/ruAWppMLRf1jCTdQgghGh2jERIT4cwZLdn29IRmzUCvL+MGJhMuCbG4xZ3QWoGFSCswIYSoC9bp5GEewbTyaQbFk+0iHsf24JJ0FoCcTtdoM5CEqEck6RZCCNFomExash0dDampWo/tiAhwKid/trYCc0k6i8nHH4unT12GLIQQjVZaQQa/J+4lx5RLUl4KEZ6huDg5l9rOf5OMcov6TZJuIYQQVzyzGZKStGQ7ORnc3StOti9tBVYYFCGtwIQQog4opTiVGcvBS6qT20u4ndJT8d67GQCTbwBZPYc4IGIhyiefHoQQQlyxLBYtybYm287OEF6JNtrSCkwIIRzDXnXya4K74eJkvzCa37a16MxmANIH3SJfjop6Sc5KIYQQVxyLBVJStNZfiYnaZ7DQ0Ep8FrO2AouNwinzIqYmwSgXtzqKWgghGjeTxcyv8b+RbcxFX1SdvG1RdXK7LBb8Nn8PgNLpSB8ytm4DFqKSJOkWQghxxVBKu1Y7JkarSq7XQ0iINsJdEZ2xEJezp6QVmBBCOIhB70Qzz3DisuO5NqRnqYJpl/I88gcuqecByOnSD2NwRB1FKkTVSNIthBCiwVMKLlyA2Fg4f17LlYOCwKWSbVqlFZgQQjhGodmISZnwMLgD0KlJO9r7tbZ7/falShRQi5QCaqL+kqRbCCFEg6UUpKVpyXZ8vDatPDAQXF0ruQNrK7CzJ0FagQkhRJ26WJDOzsR9uDg5MzTiOpx0Tuh1elycyurf+DfDxWS89v8GgNE/iOweA+ogYiGqR5JuIYQQDVJ6upZsnzuntQILDAS3Klx+XboVWFBthiuEEKKIVp08hoOpx7BgAdzJM+Xj5exZ6X34bf0BnaWogNrgseAkaY2ov+TsFEII0aBkZEBcHJw9C0YjBARoLcAqzdoKLDYKfV6OtAITQog6pFUnP8i5nEQAIjxD6BNUdnVyu8wm/LasBkDp9KQPGVNb4QpRI+RThhBCiAYhK0sb1T57FvLzoUkT8Kz8oAgAuvw8XM+ewDU+RlqBCSFEHbNOJ88xVbI6eRm8Dv6O88UkALK798cUEFpLEQtRMyTpFkIIUa9lZ2vJdmoq5OVpyXZQVWeCF28FlnEBU0CItAITQog6pJTiQOpRcky5eBrcK1WdvCx+m/8uoJY+dEINRilE7ZCkWwghRL2Um6uNasfEQE4O+PtXI9m2tgI7dwbXc6dAr8cY2lxagQkhRB3T6XRcE9ydoxdP0COwU9WmkxdjSE3A6+AOAIwBoWR37VfDkQpR8yTpFkIIUa/k5WmVyGNiIDMT/PwgOLhqRdKsnDIuaq3AUhMw+wVica/ifHQhhBDVdjE/ndT8i7TzuwoAL2dP+ob0uKx9+m9ZjU4pANKGjJWOE6JBkKRbCCFEvZCfr/XYjo7WiqX5+kLz5n+vqxKzGZfzMVorMJNRWoEJIUQd+rs6+V9YUPi6+BDiEXj5OzaZ8N36g3YMvRMZg6WAmmgYKm6CV8feffddWrZsiZubG3379mXXrl3lbr948WLat2+Pu7s7zZo149FHHyW/yp/OhBBCOEpBgTaq/fvvcOCAtqx5c22EuzqzwPU5WXhE7cf91CEszi6YgsIl4RZCiDpSaDbye9Je9qcexYIiwjMUf1ffGtm394HfcE5PBSCr5yBM/tLqUTQM9Wqke+XKlcydO5cPPviAvn37snjxYkaMGEFUVBTBwcGltv/iiy948sknWbp0Kddddx0nTpxg2rRp6HQ63njjDYfcByGEEJVTWAiJidrI9sWL4OUFzZqBvrpfB1ssOKecxy3mOPrcbIyBYWBwruGohRBClOVifjo7k4pXJ+9IW9+WVa5OXha/Td/afpYCaqIhqVdJ9xtvvMGsWbOYPn06AB988AHr1q1j6dKlPPnkk6W2//333+nfvz+TJ08GoGXLlkyaNIk///yzzmMXQghROUajlmyfOaMl256e0LTpZSTbtlZgJ3GNj8bi5o4xtFlNhiyEEKICpzNiOVA0uu1pcKdfSC+auPnV2P6dk8/hdfgPAAqDI8jpdE2N7VuI2lZvppcXFhayd+9ehg8fblum1+sZPnw4O3futHub6667jr1799qmoJ85c4b169czatSoOotbCCFE5ZhMWoG0P/+EPXu067QjIiAg4PISbsOFJDz+2oXr2VOY/AMx+wbUZNhCCCEqwUnnZJtOfn3TQTWacAP4bf7e9nN65LjL+8MhRB2rNyPdqampmM1mQkJCSiwPCQnh+PHjdm8zefJkUlNTGTBgAEopTCYT9913H//617/KPE5BQQEFBQW23zMzMwGwWCxYLJYauz9COIrFYkEpJeezqDeUgqQkbRp5Sgq4uEBYGBgMf68v//baOa1UyXNaZyzEJT7a1gqsMMQ6XF7BDoVwMFXsPyEaMrMyo9fpUSha+ETgZnAlxD0QnU5Xs+e3yYjftrUAKCcDaQNHX2Gvn6J3hKK/dUppfxvlo5xj1MZn6HqTdFfHli1bePnll3nvvffo27cvp06d4uGHH+aFF17g2WeftXubBQsW8Nxzz5VanpKSQmFhYR1ELUTtslgsZGRkoJRCL98CCwdTSptKHhcHTk5ar20nJ23U22Sq7D4sGI0ZgEKn085pfW4WLsnxmDIvUuDvg3JxA+Q9XDQMCkWBkxEAHdIzXjQ8Sili088Rk36Wfs17oZy089jb25tcCiq8fVX5796EIfMiAGl9BpHZxAO4ggon6y04eUC+6SKW/EKU0tpnJic7OrDGKSMjo8b3WW+S7sDAQJycnEhKSiqxPCkpidDQULu3efbZZ5kyZQr33HMPAF26dCEnJ4d//OMfPP3003YTjqeeeoq5c+fafs/MzKRZs2YEBQXh51ez02CEcASLxYJOpyMoKEiSbuFQSmlVyePitPZfXl7V3Y8F0OHmFoTOonBJjMMt7hSYjJgCIrTK5Oaajl6I2mMdofM0u0nSLRqcQrORPSkHic/RPrMnpaXQLDCiVs/nsF/W2n7OjLwNT7NbrRzHYSxmDLmgMzTB7OaHTgfu7mCnjrSoAy4uLjW+z3qTdLu4uNCrVy82btzI2LFjoSh52LhxI7Nnz7Z7m9zc3FJJhZOT1hZGlTFf0dXVFVdX11LL9Xq9JCjiiqHT6eScFg4XGwt//QU+PuDtfXn70ul0OOXm4Hb2FC6JcZi9fLH4B0u6IhosXbH/hGgotOrke8kx5aFHR7fAjrT2aUEuBbV2PrskxOJ5bA8ABaHNyevQ+wp83RQ9ejodOp0enU5rmSkf4xyjNj4/15ukG2Du3LlMnTqV3r17c80117B48WJycnJs1czvvvtuIiIiWLBgAQCjR4/mjTfeoEePHrbp5c8++yyjR4+2Jd9CCCHq3tmzcOQIeHhoSfdlUQpDeioeZxMx5EgrMCGEqGtKKU5mxHDowl9F1ck96BfSkyZufrV+bXWJAmpDx2vZqBANTL1Kum+//XZSUlL497//TWJiIt27d+fnn3+2FVeLi4sr8c3DM888g06n45lnniE+Pp6goCBGjx7NSy+95MB7IYQQjdv583D4MLi6wuVetaO1AjuBMS0GncVNWoEJIYQDnMiI5uCFvwCI8AylT1A3XJxq/8tPXWEBvr9pU8stzi5kDLi51o8pRG3QqbLmYTcSmZmZ+Pr6kpaWJtd0iyuCxWIhOTmZ4OBgmV4u6lxiIhw4oE2JC7jMzl2GC0m4xh7HKeMiGSG+eOh8rsAphaIxUihynPLlmm7RYBSajWyM30Eb3xa08WmJrthoc22ezz47fiLiA604csZ1N3L+/hdqdP/1hsWMITWRnB4DMfv4k5gIzZpB166ODqxxSk9Px9/fn4yMDHwue7qepl6NdAshhGi4kpPh4EFt5t/lJNw6YyEu587gGn8adDqMwREoQ6EUSxNCiDqilCIhN5kwj2B0Oh0uTs6MaDYIva5uv8z33/yd7ee0oRPq9NhC1CRJuoUQQly21FQt4TaboeiKoGpxyriIW2wUhtQEzH4BWNy9pO+2EELUoUKzkd0pB4nPSaRnYGfa+LYEqPOE2+XcaTyi9gNQEHEVee261enxhahJknQLIYS4LBcvagl3YSGU0eGxYmYzLgmxuJ49ic5YgDE4ApzkT5QQQtSlktXJ9eDAyx/8ixVQS4uUAmqiYZNPNEIIIaotPV1LuHNzITy8evvQ52ThGnfC1grM7BdY02EKIYQoh1adPJpDF479XZ08tCdNXB1T70hXkI/v9nUAWFxcyRgwyiFxCFFTJOkWQghRLZmZWsKdlVXNhFspnJPjcY2NwiknS1qBCSGEAxSaC4umkycB0NQzlN51VJ28LD5//oJTbhYAmX1vwOJZM8WshHAUSbqFEEJUWVaWlnCnp0NERNVn/WmtwE7icj4a5eKGMaSpTB0UQggHyCzM5nxOMnr0dAvsSBufFiWqkzuCX4kCauMdGosQNUGSbiGEEFWSkwOHDmnXcoeHVz1XNlxMxjXmGM7pFzA2CUG5utVWqEIIISoQ6N6EnkGd8Xf1ddh08uJcY0/gceowAPnN25HfurOjQxLisknSLYQQotJyc7WEOyVFG+GuSiv4Eq3AgMKQZlXbgRBCiMtWaC5kX+oROvq3xcfFG4DWPi0cHZZNiTZhUkBNXCEk6RZCCFEp+flw+DAkJEDTplXLl50y03CNPY5zSvFWYEIIIerShfw0/kjaR44pjyxjDsMjBjh8KnlxuvxcfHb8BIDF1Z3M/iMdHZIQNUKSbiGEEBUqKNAS7vh4bYTbyamSN5RWYEII4XD2qpP3CupSrxJuAN+dG3DKzwEgo99I+YJWXDHkk48QQohyFRbCkSNw9qyWcBsq+ZdDn5uNa2wULolnsXh6Y5JWYEIIUecKzYXsSj7I+VxrdfIwegd1dWh18rIUL6CWLgXUxBVEkm4hhBBlMhrh6FGIialCwq0UzinncY05XtQKLFRagQkhhAPkGHPZfH4nuaa8elWd3B63M3/hHn0MgLxWHclv1cHRIQlRYyTpFkIIYZfJBH/9BdHRWpVy50rkzVorsFO4nD8jrcCEEMLB3A1ueBjc0aGjX2jPelGdvCwyyi2uZJJ0CyGEKMVshmPH4PRpCA0FF5eKb6O1AjuOc3qqtAITQggHKTQX4qQ34KTTo9fp6RfSEyedU72cTm6lz8vGd+cGAMxunmRce4OjQxKiRknSLYQQogSLBY4fh5MnISQEXF0ruIHJiOu5M7ieOwXSCkwIIRzmQn4aO5P2EeEZSo/ATlA02l3f+ez4GX1BHgAZ/Ueh3DwcHZIQNUqSbiGEEDYWC5w4oSXcwcHgVsFnNa0VWBTOKeelFZgQQjiIUooTRdXJFYqEnCQ6N2mPs74BfNRXCv9N39p+lanl4krUAF6JQggh6oJS2nTyqCgICAB393I2NptxSTqLa2yUtAITQggHKqs6eYNIuAG300dwO3sSgNw2XSho3tbRIQlR4xrGq1EIIUStUgrOnNEKp/n5gUc5M/u0VmAncEmMk1ZgQgjhQNbp5Nbq5N0DO9K6nlYnL4v/puIF1CY4NBYhaosk3UIIIYiJ0VqD+fqCV1kzxC9pBWYKCEE5V6LCmhBCiBpnspj4LWEXhRYjXgYP+oX2wt/V19FhVYk+JxOfP/4HgNnDm8y+wx0dkhC1QpJuIYRo5OLi4MgR8PbW/tmjK8jHNe4kLuejUS6u0gpMCCEczKA30CuoC2ezE+gd1LVeVycvi+/29eiNBQBkDLgJ5VL/i74JUR2SdAshRCN27hwcPqxNJ/fxsb+N4WKyViwtLUVagQkhhANdyE/DrMwEu2uX9TTzCqepZ1iDmk5uc0kBtTQpoCauYJJ0CyFEI3X+PBw6pLUE8/Ozs0HxVmBKWoEJIYSjFK9O7uLkzA1NB9lagTXIhBtwP3EA1/PRAOS270FhxFWODkmIWiNJtxBCNEKJiVrC7eQE/v6l1ztlpeMac1xagQkhhIMVmAvZXaw6ebBbAAa9k6PDumzFC6ilRcoot7iySdIthBCNTHKylnADBF5aeLx4K7DCfGkFJoQQDnQlVCe3xykrHe9dvwJg8vIlq89QR4ckRK2ST1JCCNGIpKZqCbfJBCEhJdfpc7OLiqXFYPHywRTc1FFhCiFEo1Z8OrlC4eXsQb+QhledvCy+v/2I3mQEIGPgaJSLq6NDEqJWSdIthBCNxMWLcPAgFBRAaGixFZe2AgsMlVZgQgjhYOkFmSgUzTzD6B3cFWd9w6tObpdS+G0u1ps7cpxDwxGiLkjSLYQQjUB6ujbCnZcHYWF/Ly/eCgxpBSaEEA6llEKn06HT6egV1JkQj0BaeEU0+OnkxXn8tQfXxDgAcjr2oTCshaNDEqLWSdIthBBXuMxMbYQ7MxPCw/9ebkhL0YqlSSswIYRwKG06+RlS89O4LqQXOp0Og95AS+8r7zIf/2Kj3NImTDQWknQLIcQVLDtbS7jT0yEiomgQ22TENT4a17MnpRWYEEI42KXVyc/nJhHhGVrh7Roip4wLeO/ZDIDJpwlZvYY4OiQh6oQk3UIIcYXKydES7gsX/k64ba3AUhMw+zTB4iGtwIQQwlFKVCfX6eke0Ilwj5BK3LJh8tu2Fp3ZBED6oFvAcIVcpy5EBSTpFkKIK1BennYNd0qKlnDrlRmXhHO4xhzXWoEFhUsrMCGEcBDrdPJDF45fkdXJ7bJY8Nv8ve3X9MixDg1HiLokn7iEEOIKk5+vJdyJiVrCbciXVmBCCFGf7Es9wunMWACaeYXTO6jLlVOdvAyeR/7EJSUegOwu/TDK3yLRiEjSLYQQV5CCAjh8GM6fh/AwhdvFBK0VWHaGtAITQoh6oqV3U2Kz4ukW0IGrfJpfUdXJy1KiTZgUUBONjCTdQghxhSgshKNH4exZaBqYj2fsKVzizxS1AmsmrcCEEMJBlFJkFGbh5+oDQICbPze3GIqLU+P4ItSQloL3vm0AGP0Cyeo+0NEhCVGnJOkWQogrgNEIf/0FMTHQ3D0FrxNROKcl/T979x0nV101fvxzp2+d2d6T3fSekEBCgAAJICBIizygIE0FUR8V5FHpRQWxIGKhKUX9oXRQKaIpECCEElLIZtO2ZHufLbPT7/39cZNNNrtJdmdn9u7snrevvNwpd+Zk2czec7/new7BtBw0R4LR4QkhxLjlDwf4sGkTjd4WTi84qTfxHi8JN4Dr7VdR1DAA7lMvAIukIGJ8kZ94IYSIc6EQbN8OFTuDlFBJ8s6d+0aBTZBRYEIIYaAWXzsfNH5CT8iHSTHRedBq97ihhnGt1RuoaYoJ9ynSQE2MP5J0CyFEHAuHoawMqja7mezfQWJ7LWFnhowCE0IIA2maxg53OVvb9ncnT2JpzsKx3Z38MJK3rMfaqs8g755/AqHMsTmDXIgjkaRbCCHilKrCju0qNe9VU9KzA7vqJZhdIKPAhBDCQPvLyet7mmAcdSc/HNeqF3u/dq9YaWgsQhhFzsyEECIOqSrs2uShfvVOigJVWNNSCKXI+BUhhDBaZVcN9T1NmBQTx2TOZlLK+OhOPhBLawPJm98DIJiRQ/f8E4wOSQhDSNIthBBxRlM1Kt+vp3lNGTlKB+aCXMIyCkwIIUaFqc4SuoLdTE6dOC7LyQ/mWvsqiqYC4D71QjCZjQ5JCENI0i2EEHFE8/qoXruHpvfKSXHaMOcWoY3TFRQhhBgN/OEApe27mJs+A4vJjElRODZrntFhGS8cwvX2KwBoJjPuU843OqIh+95Dk7jq7EYWTPWgqnDvX4tYt9kJaFxxVhOXndE84HFvb0rloRcKUDUIhxWuOaeBC5a1AbC1PJGf/bWIHp8JFPjhl2s4fqb7qLH09MBXvwoffaT3SL33XvjiF/s/b+tW+MpXDtx2u6GzE9r0t2fXLrjySmhpAacTnnoKZs/WH1u2DP78ZygpiejbJY5Akm4hhIgXzc3Ur91B48YmbHnZ2NJlFJgQQhjp4O7kqqayKGuu0SGNGsmfvou1XU9Ku49ZRigty+iQhmTLnkQ6PGYWTPUA8M/309lT6+D1X3xGV4+ZlbfNZPHMLqYW+vocp2nww0dKePqWnUyf4KW22cY5P5zNGce6SXSofOfByfz02kpOmNNFZb2da+6fxus/28zR2p/+8pdgt8Pu3VBRAUuWwPLlkJHR93lz58KmTQduf/vbcPC1+euug2uvhauughde0P//o4/0x77/fbjzTj3xFtEls2SEEGK0CwZh1y6aXv+I6i1uKCoiQRJuIYQwjKZplLXvYU3t+/SEfCRbk5icOtHosEaVtDUv9X7dHocN1J5bncW5S9t6b7/xQToXn9qC2QSu5DBnL2nn9fXpAx6rKNDVo5fSd3vNuJJDWK0a7m4zbV0WTpjTBUBxnp/UxBDrtriOGs+zz8I3vqF/XVICp54KL7985GN8Pvh//09fIQdoaoKPP4bLL9dvr1wJ1dV6Ig9wzjnwxhvQ0XH0748YGlnpFkKI0ayjA8rKaNlSy+6WdCz5KSSnGB2UEEKMX4d2J5+QnM+irHlYTXJavZ+1qZakresBCGQV4JmzxOiQhuyjshSuPKux93Z9q438zEDv7YKsAJt3J/U7TlHgV98q5zu/mUyCPUynx8JvvrsHm0XDlhImyxXkjQ1pnL2kna3liVTUO6htsUPxkePZuxcmHnRdp7hYv+9IXnoJJk2CBQv029XVkJcHFsuBWCdM0F9nyhSwWvWV8nXr4NxzB/d9EoMjnw5CCDEaqar+23HHDlprvezsLsCUaiFFEm4hhDBMu7+Dd+s/whv2SXfyI3CtfQVF0wBwn3qBvgk5zjS0WclwhoZ8XCgMj76ax0Pf3cOxM7rZWp7Itx6Ywqv3bSMtJczvvreHB54t4PF/5jKlwMvCad2YTVpM/g5/+tOBVe7Bys2FmpqYhDOuSdIthBCjjccDO3dCVRVtgWR2egpRrHrDEyGEEMaxm22EtTDJ1iROyFmEy55qdEijTyiI6+1XAdDMZtynnGd0RBFJsKn4gwcupuRlBKhrsfXu8a5ttpGXEeh3XFlVIk1uK8fO6AZg7qQectMDbK9M5IS5XcyY6OWxH+zuff65P5zFlALvUeOZMAGqqvSVaoDKSvjc5w7//IoK+OADePHAmHSKiqC+HkIhfbVb0/RV7gkTDjzH54ME2cEWdfF32UkIIcYqTdN/G374IVRW0m7LZkdzGpoGrqNv9xJCCBEDITXc+3WiJYGT85ZwRuEySbgPI+WTt7F06nuhuxYtJ+zMOOoxo9G0Ii8V9Y7e22cubuf5tZmEVXB3m/US8ePb+h2XmxGg2W1lT61+bFWjnb1Ndorz9IZrze4Da57Pr8kkwa5y/KxOAP7+sp3f/W7geC6+GB55RP+6ogLWroULLjh8/E88ARde2Pf8ITsbFi6Ev/5Vv/3ii1BYqJeW77d9O8yfP6hvkRgCWekWQojRwO/XO5ns2QM2G+6UInbuVAiFIDM+z1eEECLutXjb+KBpI8dkzqEgKReAdIdcBT2Svg3ULjI0luH43OJ23tua2tv07LyTWvmsPJGzb5qDosBVZzcxrUhPpFdvdLJmo4sff62KTGeIu6+p4sbfTcKkaKiawm1X7CU/Mwj7GrT9a306mgaT83089N09vd3Fy6tM5B9mXNf//R9ccw1MngxmM/zud5CZqT/2yCNQVwf33KPfVlV9FNhAXcgffVTvWH7vvZCaCk8+eeCxykoIhyXpjgVF07TYbCKIE52dnTidTtrb23HJUpIYA1RVpampiezsbExxuIdqXGppgbIyva1odjadwQTKyvQ8fP8v1PFMQ8Nj9pEUdqAg+yZF/JOf6dFP0zR2uPewtW0HGhoZdhcrCk6UvdsDOPjn2dZQzZT/0xNtf+4Eyu9/IS73cwN4fCYuu2c6z9yxg0SHGts3U8NYWhr4nyc/z29+b6GrSy8FnzfC495/9CN91ftrXxvZ9x1t3G43aWlpdHR0kJoanYoWWekWQgijhEL6ZeWdO/XL0kVFdPWY2LlT31OVFV8jTYUQYkw4XHdySbiPLm3NgRlW7lMvjNuEGyDJofLDy2qobbYxtcg3iCOG78mHuggnpdHVNSJv109+vr6aLqJPkm4hhDDCvlFg1NZCejqkpNDdDTt3QHe3vu9KCCHEyGrxtrG+caN0J4+AEgzgfOcfAKgWKx0nf8HokIZt6WyDsl+DfOc7RkcwdknSLYQQI0lV9VkcZWXg9UJBAVgs9PTArt3Q1aUn3HJ+J4QQI6sr0M2auvVoaKRYk1gq3cmHJOWj1Vi6OwDoOu40wimybVOI/STpFkKIkXLQKDCSk/WWoei5965d4HZDdpYk3EIIYYQUWzKTUicQVIMsypqH1SSnyUORtnpsNFATIhbk00QIIWJN06ChAXbsgLY2yM0Fux32zcPctUu/Ozs7rre/CSFE3GnxtpFkTSTBoo93OiZzNgqKlJMPkaO2kqQdnwLgzy/BO/0Yo0MSYlSRpFsIIWLpkFFgTJjQu5Tt9+sl5a2tetM0SbiFEGJkaJpGmXsPn7XtICshnZPzjsekKJgU+SCORNaqf/R+3b7iIinZEuIQknQLIUSsHDwKLCsLEhN7HwoE9Dy8uQmysvWZm0IIIWLPHw6woelTGnqaAXCY7aiaikmRD+JIKAEfme+8AYBqtdNx0jlGhyTEqCNJtxBCRNv+UWC7dkE4rO/dPiirDgahvFyvOM/KBouc5wkhxIho9rbxwb7u5GbFxDGZcyhJKZJy8mFI/XAVlp5uADqXnIGaJM3nhDiUJN1CCBFNHR16s7SaGkhLg5SUPg8HQ3rCXVenL35Lwi2EELF3cDm5dCePrrRVL/Z+7ZYGasMWDsOWLfDZZ3q/l2XLpBpuLJCkWwghomH/KLAdO6CnB/LzwdL3IzYUgsoKfTR3Zma/h4UQQsRIWAtT2VWNhsaE5HzpTh4l9r27SNy9FQBf0RS8U+YaHVJcW/WOlZ//Qd+Vtl9hIfzmN3CRXM+Ia/JpI4QQw9XTc2AUWFJS7yiwg4XD+sM1NZCRAVarIZEKIcS4ZDFZWJqziDa/W8rJo8h16Jgw+b5G7N9b8vi/p5PQDrm/tha++EV44QVJvOOZJN1CCBGpg0eBtbdDTk7vKLCDqaqecO/dq1ec22yGRCuEEOPG/nJys2JimmsSAC57qpSTR5Hi8+J8/3UAwnYHHSecbXRIccXjM9HQaqOhzUpdk4Vf/L2oX8LNvlMNRYHvfQ/OP19KzeOVJN1CCBGJcFhPtvfs0evEi4oGvMKvqnqyXbUXXGkD5uRCCCGiyBf282HjJhq8zSgo5CVmk2JLNjqsMSf1g39j9noAaFt6GmpiMrLOrQsEFRrarDS02WhotVHfZqO+1dabZDe02ujsGXwapmlQXQ3r1sGpp8Y0dBEjknQLIUQkysv1pDszs88osINpml5OXlkJzlRwSMIthBAx1ext5YPGT/t0J0+2Jhkd1piUdlBpedPpF4ybhDsUhqb2vgl1bzK97+vWztjsIauvj8nLihEgSbcQQgxVQ4O+hzs9/cgJd62em6ekQELCiEcphBCD8r2HJnHV2Y0smOpBVeHevxaxbrMT0LjirCYuO6N5wOMCQYWfP1PIu1tTsVs1pk/o4efXV+LuMnP1z6b1Ps8XMFHTZGfd7zfjSg4fMZbWDgs3P1rM3iY7NovGHVft5dgZ3QM+t67Fyk+enkBlgwOTSWP50u1MmPsBu3ZPYvV/P0eSNYG/KmbaOi1kOkO8+JPt+AMKl/14Ok/evJOURHWY37nxy1FZRkJFKQDe4hn0TJpB0pH/08YFVYXWTktv8tzQZqO+1drndlO7FVWL/BKDxaySmx4kNz1AbkaA3PQA/oDCX97KPeqxeXkRv60wmCTdQggxFF1dsG2bvqkq+fDlivX1UFGuP+UwebkQQhhuy55EOjxmFkzVy4T/+X46e2odvP6Lz+jqMbPytpksntnF1EJfv2MfeLYAFHjjF9tQFGh266eVrpQwL/90e+/znngth4/Lko+acAM88FwB86Z4eOwHu9lansh3HpzMWw9sxXrIGaumwXd+M5mvndvAmYvbea/hY3Y2daOhcdoCH/93RkVvd/LrfzWZxTO7ALDbNM47sY2n3sjhf1fKsmGkXKsPjAlrX36hobEMlqZBh8fcmzw3tFqp6/1a///GdivBkCni9zApGlmuYG8ynZsRJG9fcp23776M1BCmQ94iHArznw1OGjscaAPUDCiK3qN12bKIQxMGk6RbCCEGKxiE0lI98R6gQ/l+9Q36Vu+EBL2ZuRBCjFbPrc7i3KVtvbff+CCdi09twWwCV3KYs5e08/r6dL57cV2f43p8Jl58O5M1D23pbWeR5QoN+B4vvZPB9y6uHVQ8b25I481ffgbA3Ek9ZKcF+agshRPmdPV53vptKdgsGmctcQMKWQkZNKY0c0zmvD7dyZvarXywLZWffK2q99izj29j5W2z+PZF9dJsOwImbzfO998EIOxIonPpmUaHBIDHa+pT6l1/SELd0GrFGxheF7KM1IMS6nT967yDVqyz04JYIngLswluveAzvvP0sf0e2/8z+uCD0kQtnknSLYQQg6FpsGuXPrujoOCwY1GammD3br1h2hEWwoUQYlT4qCyFK89q7L1d32ojPzPQe7sgK8Dm3f2vHlY32XEmh3jsH3ms35aC3aryrYvqWTq7b3L86c4kOjwWTj2m46ixuLvMhMJKn+Q9P9NPfWv/kQ97ah04k/18/3clVDQ4KMicxLcvnsik1L5ZycvrMjh5fgcZzgOvmeUK4bCp7K5xMLWo/wq+OLLU99/E5PcC0HnCWagJSUBsv4/+gEJDu544N+xvStYWeWOygaQmhvYlzwcS67yDVqxz0wLYbQP1F4+OM+fV84u7PPz8D8n95nQ/+KCMC4t3knQLIcRg1NToSXd2tt6tfADNLfpTrBZ9H7cQQox2DW3WPgnpYIVVqGuxM7nAy42X1FJamcDX7p/GP362jcyDXu/FtzM5/8TWiFb/DscX9rOrvZoPSo/jmTvLmDkhyN9XZXLbo7N5/p6y3udpGrz0dga3fKW632tkOoM0tNsk6R4qTevTQK19xcphv+RAjckO7fTd1jW8xmQJtrCeOB+0Kp2fEeiTZCc5jN/jf9rJQZadDatWgckES5boJeWywh3/JOkWQoijaW+H7dv1zdmH6YjW2gq7d+m/JJ3OEY9QCCEikmBT8QcPVO7kZQSoa7H17vGubbaRlxHod1xeRgCTonHuCXpp+qxiL4VZfnZWJ5Dp1Fe7PT4Tb36YxnN3b+93/EBcKWEsJo1mt6V3tbuuxd7n/fXu5BtREieRm1dIRlY9kMl5J7bx46cnEAzRu//7o7JkAkETJ83r7Pde/qAJh9X4JCveOPZsw7F3JwDeyXPwT5wGA06X1u1vTHbwynR924EV64ZWG83u4TUms1r6NybL2786ve8+Z1I4brYSmM0wb54+iXTePKOjEdEiSbcQQhyJz6c3TvP7IT9/wKe0t+sr3KqqNzQXQoh4Ma3IS0W9g7yMIABnLm7n+bWZnLmkna4eM29sSOPh7+/ud1xaSpjjZ3fx7pZUTlnQSU2TjZpmO5PzD6wcv/lBGjMmeJmU7+9z7APP5pOTHhywK/qZi9t5dnUW376onq3liTS2WzluRheaplHm3sNnbWVowDGz6nlvTTaatwMSgryzOZVJ+b4+DddefDuTC5a1Yj60aZWql8dPLfJG4Ts4vqStOdBArW35Rbi7zNS1WalqT6S9Jemg/dP7/r/NSig8vMZk2WmHJNQHJdN5GQHSU/o3JhNitJGkWwghDkdVoaxM36hdVDTgU9xuPeEOhiAzY8QjFEKIYfnc4nbe25ra26jsvJNa+aw8kbNvmoOiwFVnNzFtXwn26o1O1mx08eN9TcnuvLqK2/9YzAPPFmJSNO66poqc9GDva7/4diZfXN7S7z137E1kdkn/+wFuvLSWHz1Swlk3zcZq0bj/GxWEFT/r6zfxzGuzSUlJ4ovLG1iYNZesa6r5xq+mgAbJiWF+9a3y3tfp6jHx349cvHJfab/32LgjmTmTPIPqpj6eHdqYzF3v5d53/wtAp+Jk3tM30fbH4e2lOrgxWd6+Uu8D+6gDZLkia0wmxGijaJoWu44AcaCzsxOn00l7ezsul8vocIQYNlVVaWpqIjs7G5Nc+h2e8nLYvBlycvTOaIfo7IQdO/TF8MxMQyIcFzQ0PGYfSWEHygCjVISIN6PpZ9rjM3HZPdN55o4dJI7AntawCl+6awZ/v6ts0KuTHzRuZG93HWbFxMLMuRSnFPZ2J4/E939XwspTWjhhbtcgnj02+QNKn4T6QNn3gRXqrkMak32b3/JbvgPAQ/wv3+WhI75HalLooM7e/Tt956YHsVnHdRpygBrG0tKA55hlhFPTaGiQ8nIjud1u0tLS6OjoIDU1NSqvKSvdQggxkKYmfZXb5Row4e7q1le4vV5JuIUQ8SvJofLDy2qobR6ZpmJmEzx3ULOzwZifMQtfyM8xmbNx2od3AuwPKBw3o2tMJ9zBEDS5++6bPjTBHnpjMo3reLT31tPWrzEpy7tvL7Wf9EwvE9JU8vaVfOekB0dFYzIhRgtJuoUQ4lAejz6PW9NggCucHg/s3KGP687OPuz0MCGEiAuHjvkymi/sp6a7ninOYgASLA5OLVgalde22zQuPX3g0vZ4cLjGZPUt+xLqNhstUWpMdnCZ9+Lge8x5YxsAnVOO4S93BFEUvXR/NFVuCDFaSdIthBAHC4X0hNvt1odjHqKnB3bukoRbCCFiYX93cm/Yj81sY0LywA0sxyJNg45uM3WHNCOrP2jFurF9eI3JzCaNrLSgXuZ9mOZkAzUmy3/kid6vu06/UH73CTFEknQLIcR+mga7d0N1NRQU9MuovT79YbcbsrMk4RZCiGjRNI3t7t1sa9uBBqRak3Hahteka7Tp9pr6rFA3tFkPuW3DFxheL5YMZ7Dfvun9Jd+5GQEynUNvTGbucpPy4SoAQslOuo47bVgxCjEeSdIthBD71dXBzp36Jm1L349Hn0+fw93aCllZyHgSIYSIEl/Yz4bGTTR69RFiE5MLWZQ1B4spfk5TfQGlTzLdW/bdeiCh7vYOrw13alJIT6AP05wsJy02jcmc7/4LU1Cfld6x7Fw0W/8+J0KII4ufTzMhhIiljg7Yvl1vmpaU1Ochv19f4W5p0RNus4wvEUKIqDi4nHx/d/KS1IFHNBolGIKm9v3NyAZuTtY+5MZkfSU6wn3GZvXOoT4owR6J7vL9aBquNS/33nQvv3DkYxBiDJCkWwgh/H59H7fH028fdzCoTw5raoKsbEm4hRAimoJqCG/YT6o1maW5i0a8pFxVoaXD2mffdMP+Fep9jcma3Va0YTQms1lVctL67pvOO2Q2dUpieFRuWUos+wR7vT6X3TNzEYG8YqNDEiIuSdIthBjfVFUvKa+v759wh2DPHv2hrGyGvA9OCCFEf5qmoWoKn+xIptmdRoLdxfJ5ZuyW6J6Wahq4u8399k3Xtx5oTtbUbiMUjjzbNZs0sg9OqAdoTpaeGhqVCfVguFa92Pt1+4qVhsYiRDyTpFsIMb5VV+tL2Tk5fZaxQyEo36Nv887KkoRbCCGiocnbytNrfbz2xpk0te/fGzyJB9ID3HJ5NWcc5x70a3V7TdS3HFzmrZd/17fpXzdGoTFZprPv6Cz9/w80K8tyBTGP0R4f5o42Uj9eA0AoJY2uY5cbHZIQcUuSbiHE+NXSou/jTk4Gh6P37nAYKiqgtnbAnmpCCCGGaH938uffVXj2uf/p93hTm5XvPTSJB79TzhnHufXGZIfsm+57e/iNyZzJIX1FOv1Ad++D51NnpwexWaLfmCxeONf9EyUcAsB9ynlgGd6+dSHGMzmVFEKMTz09sG2bvqSdldV7dzgMlZVQUwPp6WCVcwwhhBgWX8jPhqZN1HtaeOPN7+67t2+9tYYCaHz/9yUkOVQ6PMM7RU1yhPs1Iss9aB91TppBjcnihaqStual3pvuU6WBmhDDIUm3EGL8CYdhxw5oa+uzj1tVYe9e/U9amt7IXAghROSa9nUn94X91OwtobPTeYRnK4TCCh2eI9dr26xq7wp17kHNyXLTA+TvW7FOSZSEejiStn2IrakWgO45SwjmFB71GCHE4UnSLYQYf8rL9frx/PzegduapifblVXgcknCLYQQw1XvaeTdho/QgFRrMhNtxw7qOFdykEn5/n57qfd3+k5Lid/GZPHCtfpAAzW3NFATYtgGnXS/8847/e47+eSTox2PEELEVkODvsqdkdFbO65pejl5ZSU4U/ts7xZCCBGhrIRMUm0ppNmdLMycw0bP4PZgP/idchbP7I55fGJgFncLKRv18/6QM4OuY+R8X4jhGnTSfeqpp6IoCpqmN5RQFIVwOBzL2IQQIro6O/V93BaL3jxtX8JdW6uPBktJgYQEo4MUQoj41e7vwGlLxaQoWExmVhScgNWkX+BcNL2bJEcYj2/g5FtBIyc9yKLpknAbyfn2qyiqfo7vPuV86SYqRBQM+l9RRUVFbCMRQohYCgT0TuXd3VBQ0Ht3Q4OecCclQ2KioREKIUTcUjWNMvdutrXtYHb6dGalTQXoTbgBtuxOose3f7+21qeZmoK+qHPz5dVjdgRXXFDDpK15GQBNUWhfLg3UhIiGQSfdEydOjG0kQggRK5oGu3bpS9oFBezfDNjQALt366vbyUlGBymEEPFJ707+KY3eFgA8wR40TUM5aON1j8/Ejx4t3telHJITwnR7D5yG5qQHuXmIc7pF9CVtWY+1tQEAz7wTCGXmGR2SEGNC1OpFNE1jzZo1+P1+TjrpJFJSUqL10kIIMTw1NXp2nZ3dWybX1AS7doPNppeVCyGEGLombwsfNH6KL+zHrJhYmDmXktSifs/71d8LqG7SG2bMn9LNU7fsYPPuZJrdVrJcekm5rHAb7+AxYe0rLjI0FiHGkoiS7ltvvZX333+fNWvWwL6E+3Of+xyrV69G0zQmTJjAqlWrmDx5crTjFUKIoWlrg9JSSErq3bDd3KLn4BYLpKYaHaAQQsSfg8vJ93cnX5q7CKet/1XM97am8LdV2QAk2MLcd10ldivSLG2UsbQ2kPzpuwAE03Ponn+i0SEJMWZEdE3xxRdfZPHixb23X3jhBVatWsVPfvIT/vWvfxEOh7nrrruiGacQQgyd16sn3IGAPnh7Xw6+e5deYe460rhYIYQQh9Ud9FDavgsNKE4p4vTCkwZMuDs8Zm57vLj39vcvraU41z/C0YrBcL39Koqmzzd3n3I+mKWBmhDREtG/ptraWqZMmdJ7+6WXXmLWrFncfPPNAFx//fU8/PDD0YtSCCGGKhzWR4M1N0NhIQDtbti5E1QV0tONDlAIIeJXqi2ZhZlzMKFQPEA5+X73/qWIxnYbAEtnd3Lpac0jGKUYtHAI19pXAdAUE+5Tzzc6IiHGlIhWui0WC36/fpVS0zRWrVrFWWed1ft4Tk4OLS0t0YtSCCGGqrJS/5OTAyYTHR2waycEQ5JwCyHEUKmaRmn7Ltp8BxqdTUqdcMSE+z8fufjnexkApCSG+MnXKzHJvu1RKXnTu1jbmwDoPmYZofQco0MSYkyJ6KNvzpw5/PWvf6W9vZ0nn3yS1tZWzjnnnN7Hq6qqyMzMjGacQggxeE1NUFYGTifY7XR26ivcfj9kZhgdnBBCxBdfyM+6+g181raD9Y2fEFJDRz2mpcPCXU9O6L1961eqycsIxjhSEam01dJATYhYiqi8/I477uALX/hCb2J94oknsnz58t7HX3vtNY477rjoRSmEEIPV3a3v41YUSE2lq1ufFub1glwLFEKIoenbndzM7PTpWExHPn3UNLjziYm0d+kzuk8/tp0vnNg2QhGLobI215G0dT0Agcx8PHOPNzokIcaciJLuM844g40bN/Kf//wHl8vFJZdc0vtYe3s7J598MuefL3tBhBAjLBiE7dvB7YbCQjwevWlaV5c+LeygkbFCCCGOQNU0trfvorR951G7kx/qlXUZrNnoAiA9JchdV++Vz99RzLX2ZRRNA8C9/AIwmY0OSYgxJ+K2hLNmzWLWrFn97k9LS+PXv/71cOMSQoih0TTYsweqq6GggB6vws5d0NEhCbcQQgxFUA3xfsPHNHr1/jzFKUUszJx91BVugNoWG/f99cA+77u/WkV66tHL0YVBQiFcb/8DAM1sxn3yeUZHJMSYNKxZAB988AFr1qyhqamJb37zm0ydOpWenh7KysqYNm0aycnJ0YtUCCGOpK5OryPPysIbsrB7N7jbJeEWQoihsihmTIoJs2JmUdZcilMKB3WcqsJtj02k26uvlF5wUgunLeqIcbRiOFI2rsXS0QpA18JTCbtkH5YQsRBR0h0IBLj00kt59dVX0TQNRVH4whe+wNSpUzGZTHzuc5/jhhtu4NZbb41+xEIIcSi3W9/HbbfjMyWyexe0tkJWFtIpVwghBkHVNDRNxWwyoygKi7MX4Av7B1VOvt//+08WG7anApCbEeDmr1THMGIRDS5poCbEiIjodPT222/nX//6Fw8//DA7duxA27cPBMDhcHDxxRfz6quvRjNOIYQYmN+v7+Pu6SGQksGePfpo7swsMMu2NCGEOCpfyM879Rv4uHlL7zmd3WwbUsJdUW/ngWcPrIj/9OuVpCSqMYlXRIe1sZrkbR8CEMgupGeWNEEWIlYiSrr/9re/cf3113PttdeSPsDA25kzZ1JeXh6N+IQQ4vBUFXbsgPp6gpl57NkDjY2QlQ0WSbiFEOKoGntaeKvmHZq8LdR4GvCEeob8GqEw/OiREvxB/bTysjOaWDq7KwbRimjqNyZMSsOEiJmIysubmpqYO3fuYR83m8309Az9Q1sIIYZk714oLyeYkcOeSjP19ZJwCyHEYOzvTr6tfScAqdYUTshdSLI1aciv9cd/5rK1XD+uONfHjZfURD1eEV1KMIBz3T8BUC1WOpZ9weiQhBjTIkq6i4qKKCsrO+zj7733HlOmTBlOXEIIcWQtLbB9O6HEFMprHdTV6Xu4JeEWQogj84Z8bGj6lCav3kCrJKWIYzLnYIlgVFRpZQJ/eCUfAJOicd91lSTYtaMeJ4yV8vEaLF1uALqOXU44Nc3okIQY0yKqI/nyl7/Mo48+yvr163vvU/a1B3788cd57rnnuOKKK6IXpRBCHKynB7ZtIxxUqWh3UVsLGRlgGdY8BiGEGPs0TWNd/Yc0eVsxK2YWZy/guOz5ESXc/oDCzY+WEArr54Bf/0ID86d4YhC1iDbX6hd7v3avWGloLEKMB4M+Rd26dWtvSfmtt97KBx98wMknn8zMmTNRFIUbbriBtrY2ampq+PznP88NN9wQy7iFEONVKATbtxNubqUyPIGaakhPB5vN6MCEEGL0UxSF+Rkz2dRaytKchaQOoVnaoX77Yj67ahIAmDGxh+svrI9ipCJWbHWVJJVtBMCfX0zPjIVGhyTEmDfole5FixZx88034/P5sNlsvPnmmzz55JNMmjSJGTNm4Pf7mTdvHk899RT//Oc/MUvbYCFELJSXo1buZW8on701CmlpYLcbHZQQQoxe3pCPJm9L7+2cxCzOKDx5WAn3JzuSePKNHACsFpWfXVeBzSJl5fHAteZAAzX3qRfCvmpVIUTsDHql+6tf/Sq/+MUveP7553n44Yc544wzuPzyy7n88stjG6EQQuxXX4+2YyfVPelUNllxOSXhFkKII2nsaWFD06eE1DBnFC0jZV+jNNMwEi2Pz8Qtj5Wgafpr/O/KOqYV+aIWs4gdJeDDte5fAKhWG+5l5xodkhDjwqBXuh9++GHef/99UlJSOOuss7j88stpbm6ObXRCCLFfZyfatlLqmq1UNCWTmgIOh9FBCSHE6KRqGtvadvJ2/Qf4wn6SrAmgRWcl+pd/K6S6Sb/ieczUbq7+fGNUXlfEXsqHqzB7OgHoXHw6arLT6JCEGBeG1HZo8eLFfPLJJ/zmN7/hzjvv5I033uBnP/sZixYtGvD5CxfKHhEhRBQEAmilpTTu6Wa3p5CUFEhMNDooIYQYnaLZnfxQ67ak8uzqLAASbGHuva4Ss4x3jhtpB5eWSwM1IUbMkHv9mkwmbrjhBs477zyWLFnCN77xjX7P0TQNRVEIh8PRilMIMV5pGuzaRfPmOnZ2FZAoCbcQQhzW/nJyX9iPRTGzKGsuE1MKo/LaHR4zt/9xYu/t//tSDRNz/FF5bRF79urdJO7cDICvcDLeqfOMDkmIcSOiATurVq3i+uuvx+12c/3113PcccdFPzIhhACorqZ5/W52dWTjSLGQnGR0QEIIMXrV9TTiC/tx2lJYmrOIVFty1F77J08X0dSuj4o4aW4Hl5zWctRjxOjRp4HaioukgZoQI2hISXdzczM33HADf/vb35g3bx7r16+XhFsIETttbbS8u509jUlY0hJIibzRrhBCjAvzMmZiN9uY5pwUlXLy/d7c4OK19RkApCaG+PHXqiRniyOKz4vz3dcAUG0OOk48x+iQhBhXBr0L5/HHH2fGjBm88sor3H///Xz88ceScAshYsfrpXVdKVW7gmiuNFJTjQ5ICCFGn8aeFt5v+BhVUwEwKyZmpU2NasLd7LZwz1MHyspvvaKanPRg1F5fxF7qhrcwez0AdB7/OdTE6FVACCGObtAr3ddddx1nnXUWDz/8MBMnThzEEUIIEaFwmNb3y9j7SROBzCJc0lxVCCH6UDWN0vadlLbvAmBXRyXTXZOi/j6aBnf+aSLubv2U8XPHtXPuCW1Rfx8RW2mrD5SWt6+4yNBYhBiPBp10/+1vf+OSSy6JbTRCCAG0bayk+p1Kepx5pKdLW1whhDiYN+RjQ+OnNPkOdCefnBqbBZGX3slg7SYXABnOIHdctVfKyuOMvbKMhPJtAPgmTsc3abbRIQkx7gw66ZaEWwgxEtrLGql6qwyvI430HJvR4QghxKgSy+7kh6pttnHfX4t6b99zTRXpqaGYvJeInYPHhLVLAzUhDDHopHvFihX97lu9enW04xFCjGPumm4qXi8lEDCRNlW6pgkhxMH2dFbxSfNWgJh0Jz+YqsItjxXT49P3hl94cgvLF3bE5L1E7Ji8HlLffxOAsCORzqVnGR2SEOPSoJNu2ccthIilztYge/61nVBLB6kzYrNqI4QQ8SzLkYFFMVOUnM8xmXOi2iztUH99K5uPyvSLn/mZfm6+vDpm7yViJ3X9m5h9PQB0nnAWaoLM3RTCCINOup988snYRiKEGLe6OjV2vr6bcGU1KdMLUExS+iaEEAA9IS+JlgQAUm3JnFl0CknWxJi+555aBw88V9B7+6dfryQ5QY3pe4oY0LS+DdSWSwM1IYwiHYqEEIbyeKBsVS2hsl2kTspCsQ76WqAQQoxZqqbxWdsOXq9aTbO3tff+WCfcwRDc/GgxgaB+iviVMxtZMqs7pu8pYsNRUYqjagcA3kmz8BfPMDokIcYtObsVQhimpwe2vecmsHk7mbkOtMTYnkwKIUQ8OLQ7eUNPM1kJGSPy3o//M4/PKvQS5JI8Hzf8T+2IvK+IvrRVL/Z+3b5ipaGxCDHeSdIthDCEzweffezD83Ep+cle1LSCQRwlhBBjW2NPMx80fYo/HIh5d/JDbatI5JFX8wAwmzTuu64Ch00bkfcW0WXq6Sb1g7cACCck0bnkc0aHJMS4Jkm3EGLE+f2wdbNK5yc7KTI1oGZL4zQhxPimahql7Tspbd8FI9Cd/FD+gMKPHi0mFNZ7alx7Xj3zJveMyHuL6HO+9zqmgA+AjpPOQXMkGB2SEOOaJN1CiBEVCMBnn0HrJ5VMCpajZudADDvwCiFEPKjzNPQm3JNSJrAgc3ZMu5Mf6jcv5LOnVk/MZk7s4brzG0bsvUWUaRqu1QdKy93SQE0Iw426Rmq///3vKS4uxuFwsGTJEj788MMjPt/tdvOtb32LvLw87HY706ZN4/XXXx+xeIUQgxcMwrZtULe5mYm+HWipqWg2h9FhCSGE4QqScilJKWJJ9gKOzZ43ogn3x2XJPP1mDgA2q8rPvlGBzSJl5fEqYdcWHDV7AOiZOg9/0RSjQxJi3BtVK93PPvssN954I4888ghLlizhwQcf5Mwzz2THjh1kZ2f3e34gEOCMM84gOzubF154gYKCAqqqqnC5XIbEL4Q4vFAISkth73YPk72lWEwqoWSn0WEJIYQhNE1jh3sPk1ImYjNbURSF47Lnj3gcHq+Jmx8tRtP0svLvrKxjaqFvxOMQ0XPwKrc0UBNidBhU0m0ymVCUoc/NDYfDQ3r+Aw88wNe//nWuvvpqAB555BFee+01nnjiCX70ox/1e/4TTzxBW1sb77//PlarFYDi4uIhxymEiK1wGLZvh/KdISb5ynB42wjmFBkdlhBCGMIb8rGhaSNtXjdtPjdLcxZFdJ4VDT9/ppDaFjsAi6Z3ceXZjYbEIaLD1N1B6of/BSCclErX4tOMDkkIMdik+4477uj3y+Dll19m27ZtnHnmmUyfPh2AsrIy3nrrLebMmcMFF1wwpEACgQCffPIJN998c+99JpOJ008/nfXr1w94zD/+8Q+WLl3Kt771LV599VWysrL48pe/zA9/+EPM5oHLsvx+P36/v/d2Z2cnAKqqoqrqkGIWYjRSVRVN00bNz7OqQlkZ7NqpMSG4m8TWKgJZeaAASPmiODrtoP8JEe8ae5rZ0LSptzt5QVIuKBjy8/3OJifPr80CIMEe5qfXVmAyyb+0eOZ891+YggEA3Cedg2qzx/x3rXxGR8O+76CmoWkqmgaapp9DiZEXi3PoQSXdd911V5/bjz32GE1NTXz22We9Cfd+27dvZ8WKFeTn5w8pkJaWFsLhMDk5OX3uz8nJoaysbMBjysvLWb16NZdddhmvv/46u3fv5pvf/CbBYJA777xzwGPuu+8+7r777n73Nzc3EwgEhhSzEKORqqp0dHSgaRomk7FtG1QV6uqgpgYyzW2YunbTkZ2KZgsDQ6uEEeOXhobfHARAwZjVQCGGS9M0drWWs7utEoBkexLH5M0hxZaMh5Ev53Z3Wbj9TxN6b3/v8nLS8zrxjHgkImo0jZKDSsvrTj8Hnzn2P1vyGT18ihbAlKTgC7Wh+gKEw/po1aYmoyMbnzo6OqL+mhHt6f7FL37Bt7/97X4JN8DMmTP59re/zc9//nO+/vWvRyPGw1JVlezsbB577DHMZjOLFi2itraWX/ziF4dNum+++WZuvPHG3tudnZ0UFRWRlZUle8HFmKCqKoqikJWVZWjSrWmwZw/U1kKWvZOMyjpMYRuhJJfk22JI9q+eJIUdckIn4pIv5OODxk00+9oAKEktYmr2JFK1JJSwMT/Tdz4xiRa3Xla+bF4Hl53SgRKWxpbxLHH7JyTU7wXAM2Mh5tzpJI3A71v5jB6mUBBrsxt/YQmqcyKdHjMWCxQXQ1aW0cGNTzabLeqvGVHSXVNT07uHeiBWq5WampohvWZmZiZms5nGxr57iRobG8nNzR3wmLy8PKxWa59S8pkzZ9LQ0EAgEBjwG2a327Hb7f3uN5lMhq8KChEtiqIY+jOtaVBRoe/jTksKkF5ThrnHQyinUH4di4goB/1PiHhjUsx0B3uwKGYWZc1jQko+HpMPJWzMz/QbH6TxxoZ0AFKTQvz4a1WYDNpTLqInbc3LvV+7V1w0oj9b8hkdoVAIa0s9gfwS/JPmEAhb6eiA+fPhkOJfMYJicf4c0SvOmTOHP/zhD9TW1vZ7rKamhj/84Q/MnTt3SK9ps9lYtGgRq1at6r1PVVVWrVrF0qVLBzzmxBNPZPfu3X3q7nfu3EleXl5MrlAIIQanslIfDeZM1cho3Ym1uZZQ5sAXz4QQYizStAP7W+1mGyfkLuL0wmVMTCkwNK6mdiv3PH2grPyOK/eSnRY0NCYxfObOdlI/1M+hQykuuo5dYXRI4mjCIazNtQSzi/BNmkVYsdLQACUl+iq3GFsiWun+9a9/zZlnnsm0adO48MILmTJFn/+3a9cuXnnlFTRN469//euQX/fGG2/kyiuv5Nhjj2Xx4sU8+OCDeDye3m7mV1xxBQUFBdx3330AXH/99fzud7/ju9/9Lv/7v//Lrl27uPfee/nOd74TyV9LCBEFe/fCZ59BSgqk91Rjr9lDKD0XzKNqQqEQQsSMN+Tjg8aNlKQUUZyqT2rIcKQZHRaaBrf/cSId3frn8VlL2vj80najwxJR4Fz3T5RwCICOZV9As8ri06imhrE21RLMKsA7ZS6azU5Drb66PWMGSPHt2BPRWfBJJ53Ehg0buP3223n55Zfxer0AJCQkcOaZZ3L33XcPeaUb4JJLLqG5uZk77riDhoYGFixYwJtvvtnbXG3v3r19lvuLior497//zQ033MC8efMoKCjgu9/9Lj/84Q8j+WsJIYappga2boXEREhTW3FUbEdNTEazyz5BIcT40NDTzIbGT/GrAbqCHgqT87GYBp6oMtJeWJvJui1OADKdQe64cq/RIYloUNU+peXtKy4yNBxxFKqKtamOUGYe3qnz0OwO2togIQFmzQKHnDKNSYp2cP1TBFRVpbm5GcDwxk2R6OzsxOl00t7eLo3UxJigqipNTU1kZ2eP6L/HujrYtAlsNkhP8JK4/WMsXW6CWUObZCDEoTQ0PGafNOkRo5qqqWxr28l2924AXLZUluYsJMWW3O+5RvxM1zTZuODWWfT49AsAD39/F6cs6ByR9xaxlfjZBibe/y0AumcvpvpHfxjR95fP6CHQNKxNtYScGXhnHIOakERPD7S3w8KFUFhodIACwO12k5aWRkdHB6mpqVF5zWHXe5pMJhwOB8nJyXGXcAshoqOhQV/hNpshLTWMY1cZlvZmgjlFRocmhBAxt7+cfH938smpE1mQMQvzKFnhDqtw82PFvQn3F09tloR7DElb/VLv125Z5R69NA1Lcy0hZxreafNRE5IIhaC5GWbOhAJj2z2IGIs4S/74448566yzSExMJCMjg7fffhv2zds+//zzWbt2bTTjFEKMUk1NsGWLvlcwMxNsdRXY6isJZebJpiQhxJgXCAf5T806mn1tWBQzx2cfw6KsuaMm4Qb485vZfLIjBYCCTD8//PLQJsyI0cvsbiFlo37OHXJm0LXwVKNDEodhaalHTXLinTofNSkFTYP6eigqgilTQAYIjG0RnRG///77nHTSSezatYvLL7+8T/fwzMxMOjo6ePTRR6MZpxBiFGpp0RPuUEifJWlpbcRRtYNwSpo0cRFCjAs2s5WSlCJctlTOKFzGBIO7kx9qV42D37ygx6QoGvdeW0lSgnrU40R8cL3zD5SwPozbfcp5YJGmpaORpaUB1ZGor3An630VmprA5dJXuY8wiVmMEREl3bfccgszZ86ktLSUe++9t9/jy5cvZ8OGDdGITwgxSrW1webN4Pfr3TZNni4c5dtAMaEmpRgdnhBCxIw35MMT7Om9PTt9GisKThxw/7aRgiG4+dFiAkH9dO+Ks5o4bma30WGJaFHDuNa8AoCmKLhPvdDoiMQALG2NaDY73mkLCKfqUww69+3umDULkkfXx4aIkYiS7o8++oirr74au92OMkAtREFBAQ0NDdGITwgxCrnd+gq31wu5uUAoiKNiO+buTkJpWUaHJ4QQMdPQ08xb1e/wfuMnhDV9hdGkmEZNh/KDPfJqHqWVSQBMyvfyvS/WGh2SiKKkrR9ga6kDwDN3qTQuHYUs7hY0kxnvtPmEXRmAvljhdsP06ZCdbXSEYqREVINitVr7lJQfqra2lmS5bCPEmNTZqa9wd3ZCfr7eGMS+dxfWphqCWQWyKUkIMSYd2p08QXMQCAdJsIy+ZBtga3kij/0jDwCzSeNn11Vitw1rYI0YZQ5uoCZjwkYfc0craBreaQt6FyRUVW8+O2kSlJQYHaEYSRGtdB9//PG88MILAz7m8Xh48sknOeWUU4YbmxBilOnu1hNut1tPuBUFrE212Kt3679QZC+ZEGIM8oZ8vF33QW/CPTl1IqcVnEiCZXQO1PUFFG5+tJiwql8Eve78euZM6jnqcSJ+WNoaSd70LgDBtGy6F5xkdEjiIObOdpRQEO+UuYQyc3vvr6/Xt+TNmCG9ZsebiM6Q7777bk455RTOOeccvvSlLwGwefNmysvL+eUvf0lzczO33357tGMVQhjI49ET7tZWfayFoui/VBwVpWj2BDRHotEhCiFE1DX0NLOh8VP8agCLYuHY7HlMSB7dZbwPPldAeV0CALNLPFx3Xr3RIYkoc619FUXd10Dt1PPBLBe9RwtTdwdKwId36nyC2QcaK7a1gcOh7+N2jM7rdSKGIvoXumTJEl5//XWuv/56rrjiCgC+//3vAzB58mRef/115s2bF91IhRCG8Xr1PdzNzXrCbTKB4vfhKC9FCfgIZY2ubr1CCBENmqbxWVsZfjWAy5bK0pyFo65Z2qE+3J7Mn/+dA4DNqnLfdZVYJR8bW8IhXG+/CoCmmHCfeoHREYl9TJ4uTF4PvqnzCOYW9d7f06OfSy1cCGlphoYoDBLxx/CKFSvYsWMHmzZtYteuXaiqyuTJk1m0aNGAzdWEEPHJ59MT7oaGAwk3qoq9qgxrWyOBnEKjQxRCiJhQFIXjcxayu6OSuekzRtXs7YF0e03c8lhx7+3vXVzLlAKfoTGJ6Eve/D7WtkYAuhecSCg9x+iQBGDydmPydOCbNIdA7oTe+0MhfdFi5kz9PEqMTxEl3R0dHTid+oy5BQsWsGDBgmjHJYQYBfx+2LoV6ur0PdzmfeebtrpK7LWVBDNyYZSfhAohxFA09DTh9ncyI20KAMnWJBZkzjY6rEG5//8VUddiB+C4GV1ccWaT0SGJGEhb/WLv1+0rVhoai9Apvh7MnW58k2YRKJzU21RW0/R93EVFMGWK9JodzyLawp+dnc3555/PM888Q3e3zHsUYiwKBGDbNqiu1hPu/T3SLO3NOCrLCCenotnsRocphBBRoWoqW1vLeKf+Q7a0ldHkbTU6pCFZs9HJi29nApDoCPPTr1dKo6YxyNJST9KW9wEIZuTimbfU6JDGPcXnxeJuxTdxOv7CyX0y66YmcLn0VW6r1dAwhcEi+ji+8cYb2bZtG5dffjnZ2dmsXLmS559/Hq/XG/0IhRAjLhiE0lKorOybcJu8HhzlpYCGmuw0OkwhhIiKnpCXtYd0J8+wu4wOa9Dau8zc8cTE3ts/uqyawuyAoTGJ2Ehb+wqKpo9+az/1Aqk2M5gS8GFxN+ObMBX/xGl9WpJ3dekr3TNngkxSFhEl3ffddx+7d+9mw4YNfPOb3+STTz7hkksuITs7my996Uu88sorBALyYS9EPAqFYPt2KC+HvLyDrsyGQtgryzB3tsn+MSHEmNHQ08R/qtfR4mvDolhYmrOQRVlzR/3+7f00De5+ciKtHfqH9SkL3Kw8Jb5W6cUghUK41r4CgGYy0yEN1AylBANYWhvxF07BX9x3Bpjfr49XnTFDHxEmxLAKj4477jh++ctfUllZyXvvvcdXv/pV1q1bx8qVK8mRnzAh4k44DGVlsHs35OaCzbbvAU3DXrMHW30Vwcw82ZQkhBgTStt38U79h73dyc8oWkbRKB8HdqjX1qfx1kd6O2Rncoh7vlolH9FjVMqn72Dp0C+odC08mZAr0+iQxq9QEEtLPf7CSfhKZh5oeqP3mqWxEYqL9T9CMJzu5YdaunQpmZmZpKWl8cADD9DZ2RmtlxZCjABVhR07YNcu/aqs/aDt2taWeux7dxJ2ZYJFNiUJIcaGRLM+LHdy6kQWZMyKm9Xt/RrbrPzk6QNdku+4ai9ZrpChMYnYcR3UQM0tDdSMEwphbakjkF+Cb9LsA3vw9mlogKwsfZXbHF8fKSKGhp10V1RU8Oyzz/Lcc8+xefNmTCYTy5cv55JLLolOhEKImFNVPdnesUP/ReFwHHjM1N2Bo7wUzWpDTUgyMkwhhBi2oBrCatJPf4pTi0ixJZPhiL/BuZoGt/9pIp09+t/l88e3cfaSdqPDEjFibawh+bMNAASyC/DMXmx0SONTOIS1uZZgThG+SbP6LUS0temLFrNn9z2XEiKipLu6uprnnnuOZ599lk8++QRFUVi2bBm///3vWblyJVlZWdGPVAgRE5oGe/boZeUZGZCQcOAxJeDHUVGK4vUQknncQog4pmoqn7XtZG93DWcUnozdrO+ficeEG+C5NZm8u0VvaJnlCnDblXuNDknEkGvty71fu5dfiLSmN4AaxtpUSzCrAO+Uuf0muHi9+p9jjoG0+PxYETEUUdI9ceJEFEXh+OOP59e//jUXX3wxeXl50Y9OCBFTmqY3TCst1UdaJB28kK2q2Kt2Ym2pJ5gtCbcQIn71hLx80PgpLb42AGq665nsnHjU40arvY02fv7Mgc/lH3+tCldy2NCYRAyFgrje/gcAmtmCe9l5Rkc0/qgq1qY6Qpl5eKfOQ7P3XcYOhfTxYDNmQKGcMokBRJR0/+IXv+B//ud/KCoqin5EQogRU1WlJ9xOZ/9xFrbGauw1ewil5chIEiFE3KrvaeLDxk341QAWxcJx2fPirlnawcIq3PJYCV6//rl88fJmTp4vfXTGspSP12Dp0rcOdB67nLAz3eiQxhdNw9pcR8iVqSfcjoRDH6a+HoqKYOpU6TUrBhZR0v39738/+pEIIUbU3r2wdau+up2S0vcxs7sVe2UZalJKv6u5QggRD/Ry8h2UufcA4LKlsjR3ESnW+O5N8dQbOWzcqV8lLczy84Mv1RgdkoixtNUv9X4tDdRGmKZhaa4l5EzDO23+gL1tmpv1xYsZMw4asyrEIQaVdP/5z3+O6MWvuOKKiI4TQsRWTY2ecCcm6r8oDqb4evR93KGgjCMRQsSt0vZdvQl3vHYnP9TOagcPvaCv0iuKxr3XVZKUoBodloghW30lSds/BsCfO4GemYuMDmlcsbTUoyY58U6dj5qU0u/xri69Ge2sWf0XMIQ42KCS7quuumrIL6woiiTdQoxCdXV6wm2z6fu4+wiHcVTuwOJukX3cQoi4Ns05iTpPIzPTpsR1Ofl+gZDCjx4tIRjSG2hddXYjx07vNjosEWOuNQc1UFtxkdQujyBLSwOqI1Ff4U529ns8EAC3G+bO1UetCnEkg0q6KyoqYh+JECLmGhv1hNtkgvQBtoTZa8ux1VcSysiVzqhCiLiiairV3XVMSC5AURRsZitnFC5DGSNJyiOv5FFWlQjAlAIv31lZZ3RIIsaUgB/nun8BoFptdJx0rtEhjRuWtkY0mx3vtAWEU/u3IldVfR/3pElQXGxIiCLODCrpnjgxfjt8CiF0zc2webPe8GOgqX6Wlgbse3cSTk1Hs9qMCFEIISJycHfyoBpiilM/Cx4rCffm3Yk8/s9cACxmjZ99owK7TTM6LBFjKR+twtLdAUDX4tMIpxxaniZiweJuQTOZ8U6bT9iVMeBzGhogOxumTwdzfO9aESMkokZqBystLaWqqgr2JeezZs2KRlxCiChqbdUT7mAQcnP7P27ydOEo3wYmM2pi8kAvIYQQo1K9p4kNTZ8SUINYFEvv/O2xwutXuPnREsKqfgHh+gvqmFXsNTosMQIObqDWvlwaqI0Ec0craBreaQsIpQ2wQgG0t+tb9GbNgoSEAZ8iRD8RJ92vvvoqN954I5WVlX3uLykp4YEHHuC882SGoBCjQXs7bNoEPh/k5Q3whFAQR3kpZk8XwRzZxy2EiA+HdidPszk5Pndh3HcnP9SvnyugskGfIjF3koevf6HB6JDECLDV7CFx5yYA/AWT8E6bb3RIY565sx0lFNQT7swBVigArxc8Hli4cOBtekIcTkRJ9+uvv87KlSuZOHEi9957LzNnzgRg+/btPPbYY1x00UX861//4qyzzop2vEKIIejo0Fe4e3ogf6A+QpqGfe8urM21BLMLpEGLECIuHFxODjAltZj5mTMxK2OrzvODbSn89S29Q5PdqnLfdRVYxtZfURxGn1VuaaAWc6buDpSAD+/U+fr50ABCIX2r3rRpUChrFGKIFE3ThrwpaOnSpfj9ftatW0dSUt8ryh6Ph5NOOgmHw8H69eujGWtMdHZ24nQ6aW9vx9WvlbMQ8UdVVZqamnA4stm82YTbDQWHyaetDdUk7NhIODUDzSE1UmJ00tDwmH0khR0oyImngGZvK2vr1mMxWTg2a17cdScfzM90V4+J82+ZTUOrXi5/8+XVfOXMphGOVBhB8fuY+p2zMPd0o9rs7HrozQHHVY0W8f4ZbfJ0Yerpwjd1HoG8gftYaZo+bjUvT1/llnncY5vb7SYtLY2Ojg5SU1Oj8poRtSfesmULV155Zb+EGyApKYmrrrqKLVu2RCM+IUQEvF69S/mREm5zZzuOyu1o9kRJuIUQcSUrIYPjsuZzRuGyuEu4B+u+vxb1JtxLZnZy2RmScI8XqRvewtyjj4PrPP5zozrhjncmbzcmTwe+klkEcicc9nnNzZCaqu/jloRbRCKipNvhcNDW1nbYx9va2nA4HMOJSwgRIY8HKiv15mn5+QMn3Irfh2PPNpSAn7BTNiUJIUa3npCXt+s20Bno6r2vOLWI5DG2f3u/1RudvLIuE4AkR5ifXFslUxzHEWmgNjIUXw/mTjf+klkECicdtoS/q0sfETZrFqTI9Q8RoYg+wlesWMFvfvObAcvHN2zYwEMPPcTpp58ejfiEEENw8Ap3fv5hRm2rKvaqMqztTfo8biGEGMXqPY28Vf0Ojd5mPm7eQgS74uJKW6eFO/90oMT15q9UU5AZMDQmMXLsVTtI2PMZAL4J0/BNnm10SGOS4vdhcbfimzgdf+HkwybcgYDekHb69IGnvwgxWBE1Uvv5z3/O0qVLOemkk1i8eDHTp08HYMeOHXz44YdkZ2dz//33RztWIcQR+HywZQs0NkJGxmESbsBWV4m9poJgRu7hnySEEAbr153c7mRx9oIxM3t7IJoGdz85gdZOvX51+TFuLlzWanRYYgRJA7XYUwI+LO1N+CZMwz9x2mHPhVQV6uuhpET/I8RwRHTGXVJSwpYtW/jOd75De3s7zz77LM8++yzt7e1897vfZfPmzRQXF0c/WiHEgPx++OwzqK3Vm3wcLpe2tDXhqCwjnOpCs9lHOkwhhBiUnpCXNXXrexPuKanFrCg4YcyWk+/3z/fT+c/HaQC4kkPcdU2V5FzjiOLrIfX9NwFQ7Ql0niBTgKJNCQawtDbiL5yCv3jGERcfGhshOxtmzACzTA0QwxTxnO7s7Gx+/etf8+tf/zq6EQkhhiQQgNJS2LtXb5pmNutjLQ5l8npwlJcCGmpSdDoxCiFEtHUEulhT+z4BNYg1TruTR6KhzcpP/1zUe/vOq6vIcg3wYS7GLOf6f2P2eQDoWHoWakKy0SGNLaEglpZ6/IWT8JXMPGIm3d6uN0ybNQsSpNesiIKIk+6BlJeX4/f7e+d2CyFiKxjUE+6KCn0Pt8Wilyf2EwrhKC/F3OUmmCPDJYUQo1eKNYlUWzJhTWVpzsIxv7rNvrLy2x4vpqtHPy0794RWzlzsNjosMcJcq1/s/dq94iJDYxlzQiGsLXUE8kvwTZqtnzAdhterN6VduBDSpdesiJKIyssfeughLr300j73XXXVVUydOpU5c+Zw7LHH0tQkoy2EiKVQCLZvh/JyvaT8sCMsNA179W6sjdUEM/Nkf5gQYtTpCXkJayoAJsXECbnHjoty8v3+viqL9z/TK5By0gLcekW10SGJEeYoLyWhsgwAb8ksfSVWREc4hLW5lmB2Eb5Js8By+JlfoRA0NcGUKVAoaxQiiiJKuv/4xz+Sk5PTe/vf//43f/7zn7n22mv57W9/S3l5OXfffXc04xRCHCQchh07YM8evZumzXb451qb67Dv3UnYlXnEK7tCCGGEun3dybe2bu+9z2G2Y1bGxybKqkY7v/xbQe/tH3+tCmdS2NCYxMhzrTnQQE1WuaNIDWNtqiWYVYB3ytwj9rPRNGho0LfqTZ0qaxQiuiI6A6+qqupTQv7cc89RUlLCww8/DEBDQwN/+ctfohelEKKXqsLOnfqf7GywH6Efmqm7A0fFdjSbHTVhfKwYCSHig6qpbG0rY4e7HIBmXxthNYzZND6SbYCwCjc/Uow3oP+dLz2tiZPmdRodlhhhpp5unPsaqIUTkug4/nNGhzQ2qCrWpjpCmXl4p85FszuO+PSWFn0O96xZR17MECISESXdh87IfOuttzj//PN7bxcXF9PQ0DD86IQQfagq7Nqlr3JnZYHjCL8/lICfhPJSFJ+HULbUSAkhRo+ekJf1DRtp9bcDMMVZzPyMmeNmdXu/J17LZdNuvVlWUbaPmy6tNTokYQDn+29gCvgA6Djh82iORKNDin+ahrW5jpArE+/UeUf9nnZ361WEs2bpibcQ0RZRefm0adN4+eWXYV9peV1dHWeffXbv4zU1NbhcruhFKYRA0/Ry8rIyvbHHEbtpair2vbuwtNYTyswbwSiFEOLI9peTt/rbsZosnJCziIWZc8Zdwr1rbyK/e1Hvyq4oGvddV0miQzU6LDHSNE0aqEWbpmFpriXkTMM7bf5RK/0CAWhrg+nT9S17QsRCRCvdN910E1/+8pdJS0vD4/Ewc+ZMzjzzzN7HV69ezYIFC6IZpxDjmqbpDdNKS8HlgqSjVIpb3C3YaysIpefAOCrVFEKMboFwgA1NnxJUQ6TZneOmO/mhAkGFO/8wnVBYX/u45vONLJzmMTosYYCE3VtxVO8GoGfKPPwTphodUtyztNSjJjnxTp2PmnTkZWtVhfp6KCnR/wgRKxEl3ZdeeikZGRm8/vrruFwuvvnNb2LZ16Cpra2N9PR0vvKVr0Q7ViHGraoqPeF2OiH5KGM7ze5WTI3VqIlJaLYj718SQoiRZDPbODZrHs2+tnFZTr7fH17OZ/de/WLD1EIv/7uyzuiQhEFcq6WBWjRZWhpQHYn6Cney86jPb2jQt+vNmHHEsd1CDFvErYzPOOMMzjjjjH73p6en89JLLw14jBBi6Pbuhc8+01e3j7bPSPH14KjYhldVCae4kMabQgij1XkaMStmchIzAShKzqcoOd/osAyzaVcSf/qXXsNqMav87BsV2KzaUY8TY4/J00nqhv8AEE5MoXPJ6UaHFNcsbY1oNjveaQsIp6Yd9fnt7XrDtNmzj7JlT4goGNb8oNraWt555x2amppYuXIlhYWFhMNhOjo6cDqdmOWSkRDDUlsLW7fqvwycR7tgGw7jqNyBpaOdcH4myNZAIYSBVE1la2sZOzrKsZttfK7wZBIs47v6psdn4ubHilE1/ZLoNy+sZ+ZEr9FhCYM4330NU9APQMeyc6U6bRgs7hY0kxnvtPmEXRlHfb7XCx4PHHOM3idHiFiLqJGapmnceOONlJSUcNlll3HjjTeyc+dOALq7uykuLua3v/1ttGMVYlypr4ctW/SrsIPpS2ivLcdeV0EwM1eGSwohDOUJellTu54dHfo4sAnJBdjMVqPDMtwDzxVQ1aAnVnOmdPLVc+uNDkkYRdNIO6i0vH25lJZHytzRCpqGd+p8QmlZR31+KARNTTBlChQVjUiIQkSWdP/iF7/gN7/5DTfddBP/+c9/+owQczqdXHTRRbz44otHfA0hxOE1NuoJt8k0uCuwlpYG7FU7CDkzwCIntkII49R5GvlPTd/u5Mdkzh63+7f3e/+zFJ75TzYADluYO6/fiWV8f0vGtYQdn2KvqwDAM30hgQLp4hUJc5cbJRTEO2Uuocyjtx7XNH0fd0EBTJ0qaxRi5ERUXv74449zxRVXcO+999La2trv8Xnz5vHGG29EIz4hxp3mZj3hVlXIzj76803dnTjKt4HZgpqYDMjeQCHEyNM0jS2t23tXt9PtTo7PWUSyVWYOd3rM3PZ4ce/tGy+pZWKeD8JSTjxepUkDtWEzdXeg+L14p84nmF0wqGNaWvSGtDNn6pWEQoyUiJLu6upqTjjhhMM+npSURGdn53DiEmJcam3VE+5AYHCzIpVgAEfFdsw93YP+hSOEELHiC+v7U6c6S5iXMROzElFB3Zhz31+LaGjTz/CXzOrkS6c3ITu5xy9zl5uUj1YBEEp20nXcCqNDijsmTxcmrwff1HkEcwdXI97dDeEwLFgAqakxD1GIPiJKurOzs6murj7s45988gkTJkwYTlxCjDvt7bB5s97cIy9vEAdoGra9u7A21+oJt9RICSEMoGoaJkVBURQWZs1lQnI+eUk5Roc1avz3Yxevvqs3dkpOCPPTr1dikmsR45rznX9iCgUB6Dj5PDSrLLkOhcnbjcnTgW/SHAK5g8s3AgFoa4M5cwa3qCFEtEX0sX/RRRfxyCOPUF5e3nufsu+E/6233uKpp57i4osvjl6UQoxxHR36CrfHM/hfBtbGGuw1uwmlZYN5WIMIhBBiyFRNZXNrKe83fNzb28VqskjCfZDWDgt3PXEgKbjlK3vJzwwaGpMwmKbhWvty78325RcaGk68UXw9mDvd+EtmESicNKgFB1XV93EXF8OkSSMSphD9RJR033333eTl5bFgwQKuuOIKFEXh/vvv56STTuLss89m3rx53HLLLdGPVogxqKsLNm0Ct1tf4R7MgrW5ow1HRSmaIwnNIcMlhRAjq7c7ubucup5Gmrz9+7uMd5oGdz05gbYuvbnlioVuzj+pzeiwhMESSz/G3rAXAM+s4wgOcqVWgOL3YXG34ps4HX/h5EFX+DU0QGYmzJgBMs1YGCWipNvpdPLBBx/wgx/8gNraWhwOB2+//TZut5s777yTdevWkZgojVOEOJrubr2k3O3WO2kO5veH4vPiKC9FCQYIp6aNRJhCCNFroO7kOYmZRoc16vzjvXRWfaJ/RqenBLn7mirZBSRIW31guk/7ipWGxhJPlIAPS3sTvglT8U+cxmD3aLjdesO0WbMgQdYohIEirklNSEjgtttu47bbbhvw8YqKCkpKZPyBEIfT0wNbt+qdNAebcBMOY9+7A4u7mWB24QhEKYQQOlVT2dpaJt3JB6GuxcpP/3xgBfOua/aS4QwZGpMwnrmjlZRP1gAQSk2na9EpRocUF5RgAEtrI/6iqfiLZww64fb59MWNY46BjIyYhynEEUW9lceWLVv48pe/zPTp06P90kKMGV6vvoe7oQHy8wf9+wNbXSX22kpC6TmDP0gIIaLgw6ZNvQn3VGcJywtOlIR7AKoKt/2xmG6vXsd63omtnH6s2+iwxCjgevsfKOEwAO6TzwOL1eiQRr9QEEtLPf7CSfhKZg66PjwUgsZGmDIFigbX3FyImBrSSve2bdt4+OGH2bNnD2lpaVx88cVceKHeAGLjxo3cdttt/Pvf/8ZqtXL55ZfHKmYh4prPp69w19frK9yD3V9kaWvCUVVGOMWJZrPHOkwhhOhjmnMSjd4WFmXOpTB5MCMWxqe/rcrig236PKLc9AC3fOXw017EOKKquNa+AoCmKLiXX2B0RKNfKIS1pY5Afgm+SbPBMri0RdMOLGpMnSrDXcToMOik+4MPPmDFihX4fL7e+5599lkeeOABQqEQP/zhD0lJSeH//u//+O53v0veoGYeCTG+BAKwbRvU1Awt4Tb1dOMoLwVFQU2S4ZJCiNhTNZU2v5tMRzoA6Q4X50w4DYtJOhEdTmW9nV/9/cDWn598rZLUpLChMYnRIemzDdiaawHwzDletogdTTikj0TNKcI3adaQqgJaWiA5Wd/HbZNpbGKUGHTSfc899+BwOHj55ZdZtmwZFRUVXH311dxxxx14vV5uvPFGbr31VpxOZ2wjFiJOBYN6wl1VpSfcg7xgC6EgjortmLvcBHPkl7QQIvY8wR4+aNxIe6CT0wpOJM2u/26XhPvwQmH40aPF+AL61p8vn97ECXO7jA5LjBLSQG0I1DDWplqCWQV4p8wdUnVfd7deWj5/PqTKGoUYRQa9KXTDhg1861vf4swzzyQxMZHZs2fzwAMP0NXVxXe+8x1+/vOfS8ItxGGEQnrCXVGhlzsNOuHWNOzVe7A2VhPMHOQ8MSGEGAa9O/k6Wv1uzIoJX9hvdEhx4U+v5bJlTzIAE3J83HhJrdEhiVHC0t5M8qfrAAimZdF9zElGhzR6qSrWxlpCmXl4p85FszsGfWggAK2tMH26PoJViNFk0CvdbrebadOm9blv/+0VK1ZEPzIhxohwGEpLobxc/yVgHULfFGtzHfbqXYTSsoaQqQshxNCF93Un3yndyYdse1UCv39JP8s3KRo/u66SRIdqdFhilHC9/SqKuq+B2inng1l+nw9I07A21xFKy8I7dR6aY/CfPaqq7+MuKYFJk2IapRARGfS/ek3TMB+yAXX/bYdj8FehhBhPwmEoK4M9eyAnZ2h7i8xdbhzlpWg2+5B+8QghxFB5gj2sb9xIm1/vsj3VWcK8jJmYFZmScDSBoMKPHikhFNa/V189t4EFUz1GhyVGCzWMa+3LAGiKCfcp0kBtQJqGpbmWkDMN77T5qAlJQzq8sREyM/VV7sH2yxFiJA3pUtvrr79OQ0ND7+2enh4UReH5559n06ZNfZ6rKAo33HBD9CIVIg7t3Qu7dkF2Ngzl2pQS8OOo2I7i7yEkzVaEEDG2t7uONr8bq8nK4uz5FCTlGh1S3PjdS/nsqkkAYHpRD9+6sN7okMQokrz5faytjQB0zz+RUKb82xqIpaUeNcmJd+p81KSUIR3rdutVhLNmQaKsUYhRakhJ9zPPPMMzzzzT7/5HH320332SdIvxzuPRV7hTUoaWcKOq2Kt2YGmtl+6mQogRMd01GX84wBRnsZSTD8HGnUk88VoOABazys++UYnNqhkdlhhFXKtf6v3aveIiQ2MZrSwtDaiORH2FO3lo/aF8Pr152oIFkJERsxCFGLZBJ90VFRWxjUSIMaayEjo7YcKEoR1na9iLvbaCUHoOSKdgIUQMeII9bGvfxcLMOVhMZkyKwoLMWUaHFVc8PhM3P1qMqukNLv93ZR3TJ3iNDkuMIpaWBpI3vwdAMCOH7vknGB3SqGNpa0Sz2fFOW0A4NW1Ix4ZCeln5tGlQVBSzEIWIikEn3RMnToxtJEKMIW1t+miwzMyhNRw3u1twVJYRTkpBs0mvBCFE9NV6GviwaTNBNYjVZOGYzNlGhxSXfvX3Aqqb9M/pBVO6ueacRqNDEqOM6+1XUDS9oZ771AvlQvohLO4WNJMZ77T5hF1DX6ZuaNAnwkybBiZpPyFGOWmfKESUqapeVh4KQdIQ+oAovh4c5dsgHEZNk/F7Qojo6t+d3MU0Z4nRYcWl97am8PdV2QAk2MLce10lZjnpFwcLhXCtfQUAzWTWu5aLXuaOVtA0vNMW6BNahqilBZKT9X3cQ2lSK4RRJOkWIsoaGqCuTm+eNmihEI6K7Vg62gjmSI2UECK6Du1OPs1ZwlzpTh6RDo+Z2x4v7r1905dqKc6VWeair5RN67C6WwDoWnhyRInlWGXucqOEgnrCHUFjue5uCAZh3jxITY1JiEJEnSTdQkRRIKCvcttsQ7vyaq8tx9awl2Bm3tDq0YUQ4iiavC281/DJvnJy6U4+XD/9cxGN7foH/AlzOrn0tGajQxKjUJ8Gasulgdp+pu4OFL8X79T5BLMLhnx8MKhv4ZszB/LyYhKiEDEhSbcQUVRTA83NUDiEpuOWlnrse3cSdqaDxRrL8IQQ41CSJQllXzn50pyFJEl38oi99ZGLf72v7z1NSQzxk69XynVS0Y+1qYbkresBCGQV4JmzxOiQRgWTpwuT14NvylyCuUOv6lNVqK+HiROhRHbGiDgjSbcQUdLdra9yO51gHmSvFFN3J47yUrBYUROSYx2iEGKcCISD2Mz6RbwkawKn5i8lxZYs5eTD0Oy2cNcTB5rK3npFNbnpQUNjEqOTa80rvV+7l18oXb4Ak7cbk6cD36Q5BPIia87c2Ajp6TBjBlgkgxFxJqJPgWuuuYYNGzYc9vEPP/yQa665ZjhxCRF3Kir0xNvlGtzzlWAAR0Up5p5uQq7MWIcnhBgnaj0NvL53NbWeht77XPZUSbiHQdPgricm4u7Wz/TPOLadL5zQZnRYYjQKBXG98w8ANLMZ98lfMDoiwym+HsydbvwlswgUTopoG53brSfas2dDohTriDgU0W/gp556ij179hz28YqKCp5++unhxCVEXGlthb179RFhg6Jp2PbuwtpcRzCCJiJCCHGosKayqWUb7zV8TEANsqezyuiQxoyX12Ww5lP9impGapA7r94rZeViQCmfrMXSqV+Q6Tp2BWHn0EdhjSWK34fF3Ypv4nT8hZMjSrh9Pn1RY+bMIZxnCTHKxKQ4o66ujoSEhFi8tBCjjqpCeTmEw4O/+mptrMZRvZtQWjaYpUZKCDE8/buTT2JuxgyjwxoTalts3PeXA/tP77qmivTUkKExidEr7aAGau3jvIGaEvBhaW/CN2Ea/omRDdMOh/Wy8qlToUiGu4g4Nuiz/VdffZVXX3219/Zjjz3Gf//7337Pc7vd/Pe//+W4446LXpRCjGL19fqIsJycwT3f3NGGo2I7akISmkMuTgkhhqfW08CHTZsJqkFsJivHSXfyqFFVuO2xiXh8eqOOC5a1cNqiDqPDEqOUrb6KpNKPAPDnTqBn1rFGh2QYJRjA0tqIv2gq/uIZEe9rr6/Xu5RPny5b40V8G3TSXVpayvPPPw+Aoihs2LCBTz75pM9zFEUhKSmJk08+mQceeCD60Qoxyvj9sHs32O1gHUTjccXnxVFeihIKEpIaKSHEMLX7O3iv4WOQ7uQx8f/+k82G7fog4LwMPzdfXm10SGIUc615ufdr9/KLxu8I0FAQS0s9/sJJ+EpmDr677CFaWiA5GWbNGtoYViFGo0En3TfffDM333wzACaTiT/96U98+ctfjmVsQox6NTX6fu5BlTyFw9iryrC0NxHMkRopIcTwpdmdTE6diFkxMzdjhjRLi6LyOjsPPHtgjvBPv15FSqJqaExi9FICfpzr/gmAarHSsexco0MyRiiEtaWOQH4JvkmzI24z3t2tz+SeO1efCiNEvIvoX4Kqyi8dIbq79b3cLtfgSp5sdRXY6yoJZeZJjZQQImK1ngbS7S4SLA4AFmbOQRmvK2oxEgrDzY+W4A/qn9WXf66R42d3GR2WGMVSPl6DpVvfetB13GmEUwY5ymQsCYf0BrE5RfgmzQLLIEoABxAMQlubvsKdnx/1KIUwhJz5CxEBTTswImwwV2AtrY04qnYQTklDs0qNlBBi6MKayqf7upNvaNqEqmmwb2uXiK7H/5nL1vIkAIpzfdzwP7VGhyRGubTVL/Z+3X7aSkNjMYSmYm2qI5hVgHfKXDSbPbKX0fR93BMmwOTJUY9SCMNEnHS/8cYbnHHGGWRkZGCxWDCbzf3+CDFW7R8RlpV19OeaerpxVGwHxYSalDIS4QkhxpjuYA9rat9jV0cFAC5bKqAZHdaYVFqZwMOv6MtrJkXjvusqSLDL91ocnq22nMQdnwLgzy/BO22B0SGNLFXF4m4llJmLd+pcNLsj4pdqbIT0dH08WISV6UKMShEl3S+++CLnnnsujY2NXHrppaiqype+9CUuvfRSEhISmDdvHnfccUf0oxViFAiHYc8evavtUSfjhYI4KrZj7nITShtEhi6EEIeo6a7nPzXv0ObvwGayclLucSzInIVJ9m9HnT+g8KNHSgiF9eqBr3+hgflTeowOS4xyaQc1UGtfMc4aqGka1uZ6wslOfYXbEXkjR7db77k2e/bgR7AKES8iuoZ03333sXjxYt59913a29t5+OGHueaaa1ixYgWVlZUcf/zxlJSURD9aIUaBhgb9z1FHhGka9urdWBurCWYVjK9fwkKIYQtrKltat/eubmfYXRwv3clj6qEX89ldq19NnTGxh+svrDc6JDHKKQEfznX/AkC12uk46RyjQxo5moaluZaQ04U/fwL2hCQiPdPx+fQtewsWgAx3EWNRRJfJS0tLufTSSzGbzVj21X4Eg0EAiouL+eY3v8n9998f3UiFGAX2jwhzOI4+IszaVIt97y59hVtqpIQQQ6RqKg09TQBMd05iecEJknDH0Mc7knnqDf1qqtWicv91FdgsUlYujix1w38x9+hN9jqXnIGalGp0SCPG0lKPmuTEO2UemuNopX+HFw7rZeWTJg1yGowQcSiiTCAxMRHbvoF5LpcLu91Off2Bq8E5OTlUVFREL0ohRonq6sGNCDN3uXFUbEezO4ZVaiWEGL+sJgtLcxbRE/KSn3S00hoxHB6fiVsfK0bT9HW676ysY2qRz+iwRBxwHdRAzb3iIkNjGUmWlgZURyLeafNRk53ga4r4terrIS8Ppk2T4S5i7IroR3v69OmUlpb23l6wYAF/+ctfCIVC+Hw+nnnmGSZMmBDNOIUwXFfX4EaEKX4fjvJSlICXsDNjJEMUQsSx/d3Jd7jLe+9z2VMl4R4Bv/hbIdVNerflhdO6uerzjUaHJOKAfe8uEndvBcBXNBXvlLlGhzQiLG2NaDY73mkLCKemDeu1WlogOVkfD2aPrOG5EHEhoqT7wgsv5NVXX8Xv9wNw6623snbtWlwuF1lZWaxbt44f/ehH0Y5VCMPsHxHW03OUEWGqin3vTqytDYQyckcwQiFEPDu4O/nW1u30hLxGhzRuvLM5ledW640uE+xh7r22ArOstolBcK1+qfdr9zhpoGZxt6CZzHinziPsGt7CQnc3BAJ6p/LBjF8VIp5FVF5+0003cdNNN/XePvfcc1m7di0vvfQSZrOZc845h+XLl0czTiEM1dKijwg7WnMPW10l9ppyghk5YJKxeUKIo6vpruej5s0E1RA2k5XF2QtItES+P1IMnrvbzO1/nNh7+/++VMOEnIChMYn4oPh6cL73OgCqPYGOE882OqSYM3e0gqbhnbaAUHr2sF4rGIS2Nn2FOy8vaiEKMWpFrbvTsmXLWLZsWbReTohRY/+IME078ogwS3szjqodhJNT0WyRz6gUQowP/buTp+3rTi4J90j56Z8n0OzWe9ScNLeDS1a0GB2SiBPOD97C7PMA0LH0TNSEZKNDiilzlxslFNQT7szhVfJpmr6Pe8IEmDx5XBQICBG9pFuIsaq+Xh8RdqQrsSavB0d5Kaiq3lBECCGOQNU03q5bT4uvHYDprknMTZ8hs7dH0Bsb0nhtfToAqYkhfvy1Kjn5F4PWp7R8+dhuoGbq7kDxe/FOnU8wu2DYr9fYCOnpMGOGDHcR40dEv901TePRRx9l8eLFZGZmYjab+/2xyL8iMQb4fPoqd0LCEX4xhELYK8swd7YRypCGR0KIozMpCgVJedhMVk7KPY75GbMk4R5BzW4L9zx1oOHrbVfuJSc9aGhMIn44KraTUKE3FPaWzMQ3aZbRIcWMydOFyevBN3kOwdzhz/Nyu8FshtmzISkpKiEKERciyox/8IMf8MADD7BgwQIuv/xy0tKG17lQiNHqqCPCNA17zR5s9VUEs/KlRkoIcVhhTcUX8vXO2p7mLGFCcj4JFtmOMpI0De7400Q6uvVToM8d1845S9uNDkvEkfGyym3ydmPu7sA7eQ6BvImDOOLIfD69edr8+UfvkSPEWBNR0v3000+zcuVKnnvuuehHJMQo0dmpjwhLSzv8iDBrSz32vTv1Dp4W60iHKISIE91BD+sbNxJSQ5xeuAyryYKiKJJwG+CltzN4e5MLgAxnkDuvlrJyMXgmbzfO9W8CEHYk0bH0TKNDignF14O5ox3f5NkECicNe1EhHNbLyqdO1fdyCzHeRJR0e71eTj/99OhHI8QocfCIsMNdjTV1d2Cv2A5W25hvoCKEiNyh3cm7At2kO1xGhzUu1TTZuO//HShd+vFXq0hLCRsak4gvqe+9icmvj/TrPPFsNEei0SFFneL3YXG34iuegb8wOp3O6uv13jjTph1+IUOIsSyiH/vTTjuNjz76KPrRCDFK7B8Rln2YiRhKMICjYjumnm5CLqmREkL0F9bCfNryGe83fkJQDZFhT+NzRSdLwm0QVYVbHy+mx6ePc7zo5BZOPabD6LBEPNE00tYcKC1vH4Ol5UrAh6W9Cd+EqfgnRidDbmnR92/PmgV2e1TCFCLuRPQv6Q9/+AMffPAB9957L62trdGPSggDhUJ68zRFAcdAlZ+ahr1qJ9bm2mGPzRBCjE3dQQ+ra99nV0cl7OtOvrxgqczfNtBf/p3NR2UpAORn+vnR5dVGhyTijGPPNhx7dwLgnTxHT0rHECUYwNLaiL9wCv7iGVFJuD0eCAT0hNspw13EODao8vKUlBSUQ0pLQqEQt99+O7fffjsOhwOz2dzncUVR6OiQK8gi/hxtRJi1sRp7zR5C6blgli79Qoj+Nrdup93fgc1kZXH2AvKTZLKBkXbXOvj18wdGHd17bSXJCaqhMYn4k7b6xd6v21esNDSWqAsFsbTU4y+chK9kpt5ifJiCQX2Ve/bsI49dFWI8GFTGsHLlyn5JtxBj0dFGhJndrTgqtqMmJqPZpQGSEGJgizLnAnBM5mxZ3TZYMAQ3P1pMIKiv2l1xZiOLZ3YbHZaIMyZPJ6kb3gIgnJhM55IzjA4pekIhrC11BPJL8E2aHZXh2ZqmL2JMnAiTo7MtXIi4Nqh/VU899VTsIxFiFKiqgra2gTtrKj4vjopSTMEAQdnHLYQ4SHfQQ42ngRmuyQA4LHZOzD3W6LAE8Ng/8thWoQ8EnpTv5Xv/U2t0SCIOOd99HVPAD0DHieeMnQvv4RDW5lqCOUX6vPEoTWJpbIT0dJgxIyo5vBBxL6LNGvfccw+fffbZYR/ftm0b99xzz3DiEmLEdXRAZaX+S6LfFdlwGEdlGZb2ZoIZso9bCHFATXc9/6lZx5bW7VR31xkdjjjIZ+WJPPoPva7VbNK477pKHDbN6LBEvDm0gdqKMdJATQ1jbaolmFWAd8pcNFt0upx1dOjbwWfN0huoCSEiTLrvuusutmzZctjHP/vsM+6+++7hxCXEiNo/IszrhZSU/o/b6iqw1VcSysyTWRdCCNjXnXzjwd3JHWlkONKMDkvs4wso/OjRYkJh/SrqtefVM3dSj9FhiTiUsHMz9tpyAHqmLSBQONnokIZPVbE21hLKzMM7dW7UVu59Pujs1Fe4s7Ki8pJCjAkxKfhoa2vDZrPF4qWFiInmZqiuHvgXhKW1EUfVDsIpaWhW+bkWQujl5OsbN9Lu1xuGTndNZm76dEyKXJQbLX7zQgHldfp++lnFHr5xfr3RIYk4NeYaqGka1uY6QmlZeKfOi9qs8XBYLyufMkXfyy2EOGDQSfc777zD2rVre2+/9NJL7N69u9/z3G43zz77LHPnzo1elELE0P4RYSZT/xFhJk8XjvJtoJhQkwZYAhdCjDu1ngY+bNpEUA1hM1lZkr2APOlOPqp8tD2ZP7+ZDYDNqnLfdZVYZV+piIC5y03KR6sACCU76TpuhdEhDY+mYWmuJeRMwzttPmpC9Oq/909+mT5digKFONSgfwWtWbOmt2RcURReeuklXnrppQGfO2vWLH77299GL0ohYqiuTv9FkZ9/yAOhII6K7Zi7OwnmFBoUnRBitFFQesvJl+YslO7ko4zHa+KWx4rRNL2s/LtfrGVqoc/osESccr77L0zBAAAdy86N2r5no1ha6lGTnHinzo/qYkJnJyQm6vu47fH9LRIiJgaddP/gBz/g29/+NpqmkZ2dzSOPPMLKlX1LbBRFITExEcehy4VCjFJeL+zerTf66NNdU9Ow792FtamGYFaBzLoQYpxTNbW3dDw/KYeTco8jNzFLyslHofufKaS2RT/rXzS9iyvOajI6JBGvNA3X6gMLTO7lFxoaznBZWhpQHYn6CneyM2qv6/HoM7nnzQNn9F5WiDFl0El3QkICCQn61fyKigqysrJITIzOHhAhjLJ3r95ls6io7/3Wplrs1bsJpWXJrAshxrnq7jq2tJaxvGBp76p2vpSTj0pvb0rlhbV6c44Ee5h7r63ELNdFRIQSt3+CvWEvAJ6ZxxLIKzY6pIhZ2hrRbHa80xYQTo1ew8dQCFpb9VGreXlRe1khxpyIfhVNnDhREm4R99xuvWP5oSPCzJ3tOCpK0ewJUWsuIoSIP2EtzMbmraxv3Ign1EOZe4/RIYkjcHeZuf2PB5KiH11WQ1F2wNCYRHxz9WmgFr9jwizuFjSTGe/UeYRdGVF7XU3Tt+jtT7ilKFCIw5MlPDEu7R8R5vf37Viu+H04yktRAj5CWQVGhiiEMFB30MP6ho20B/Tu5DNck5mTPt3osMQR3PP0BFo6rAAsm9fBF09tMTokEcfMHW2kfrwGgFBKGl3HLjc6pIiYO1pB0/BOW0AoPTuqr93YqC9cTJ+ul5gLIQ5Pkm4xLjU1QU0NZGYedKeqYq8qw9rWSEAapwkxblV31/Fx8xbpTh5HXl+fxpsb0gFITQrx469VyaqbGBbXun+ghEMAuE85DyxWo0MaMnOXGyUU1BPuzNyovnZHh96hfNYsvS+OJN1CHJkk3WLcOdyIMFtdJfbaSoIZuWAyGxmiGIKCh35I29mX4Z06D1SVnL/+kuTN7wEKbWd9ifYzLhnwuKL7v4Wlo1UfB+dIpOErN+EvngGAtWEv+Y/ehbnbjZqQTN21dxIonHzUWIZ8nKYx4b7rcVSVsfPRAyMZkz9dR/bfHkRRVXxFU6i/9k7UhGTMHa0UPXADlXc8AWb5+I6FvV21fND0KQCZjjSOl+7ko15Tu5V7np7Qe/uOK/eSnRY0NCYR51QV15qXe2+6T42/Bmqm7g4Uvxfv1PkEs6Nbuefz6d3K583TqwVVNaovL8SYJO1FxLhTW6uPCDt4ldvS3oyjagfh5NS4Hwcynjj2fIbZ06kn3IDz/dex11aw5xcvUXH302S89hdsNQPvw6399s+ouPfvVPz0GdrOvoz8x+7ufSzviXtxL7+Q8l+8ROu5V/R57EiGelz6m/+vX1WF4ush748/puZ7v2LPL18m5Mok85U/ARB2ZuCdOh/nu68NKh4xdPlJubhsqcxwTebU/KWScI9ymga3/XEinR79ItTZS9r4/NJ2o8MScS5p24fYmmoB6J57fNyNDTV5ujB5PfgmzyGYWzSIIwYvHNbLyidNguL47SsnxIiTpFuMK/tHhKWkHGhKbvJ6cJSXgqZGdYSGiL201S/RsfTM3tupH/wH96kXgMmMmuykc8kZONf/e8BjD55Paurp7u0AY+5ow1GxnY4Tzwag67jTsLY1Ym2sPmIsQz3OVrOHlE/epvXcq/rcn7z5fXwTpxPI189m2k+/mNSD/g4dx59J2kEjbMTwNXlbUDUNAIvJzGkFJzIvY6aMA4sDz6/J5N0t+ud2pjPI7VfuNTokMQYc3EDNvTy+GqiZvN2YuzvwlcwikDcx6q9fX683TZs+Xa8YFEIMTsT1idu3b+fJJ5+kvLyc9vZ2tH0nLPspisKqVauiEaMQUVNVpe9DmrC/EjEUwl5ZhrmzjWBOdK8Gi9hLLPuEtrO+3Hvb0tpAMPPAzJJgVj6O3VsPe3zeI3eQtP0TAKpv+g0A1rZGQq6MA+XbikIwIwdrS8MRf0aGdFwoRN6ffkr9127vd9ZibW0geNDeu2BmPhZ3C4RDYLbgK5mBvXo3Jm83akLy4L5RYkBhNczm1lJ2d1YxJ306s9KmAmCW7SVxobrJxv3PHFiB/PHXKnGlhA2NScQ/S3szKRvfASDkzKDrmJONDmnQFF8P5o52fJNnEyicFPV24q2tkJgIM2eCXYoChRiSiJLuv/zlL1x99dVYrVamT59OWlr/eX+HJuFCGM3thspKyMjY93tI07DX7MFWX0UwK19mXcQhS1sTIWfk40/qv3EPAM51/yL77w9R/X8PRTG6w8t6+TG6jl1OoKAEa3Pd0A42WwgnpWBpbyEgSXfEuoIe1jd8gjvQCfsScBE/wirc8lgxXr9+geTiU5s5ZUGn0WGJMcD59qso+z4P3KdecKAsbpRT/D4s7lZ8xTPwF06O+jmNx6Pv5V60CFyuqL60EONCRJ8kd911F8cccwxvvPEGmX3aPwsxOg00IszaUo99707Crsy47EoqQLM5UIL+3tuhjFysLfW9e7ytzXWEMo7esbVj2bnkPnkf5i43wfQcLO7W3pVlNA1ra2Of1eeBDOW4xLKNWFsbSPvvcyjhMCavh8k3fIHKu/9MMCOXpM829D7X2lJHyJXZp3GaKRhAld4DEavuruOjpi2EtH3dyXOOIS8xuqN0RGw9/UYOn+zQt4gUZvn5wZdrjA5JjAVqmLS1rwCgKQrtp15gdESDogR8WNqb8E2Yhn/itKjXfYdC0NKidyrPz4/qSwsxbkT0r7Kuro5rrrlGEm4RNxobobr6QMJt6u7AUV6KZrWhJiQZHZ6IkK9oKrb6qt7bnYtPx7X2FVDDmLo7SN3wHzqP/1y/40yeLiztzb23kz9eSzjZqf9xpuMrno7zvTcASPloFcH07N4S8bxH7iBl3+zWgx3tuINV3f5Hdj/4L/b8+p9U3f5H1IQk9vz6n4RT0/DMW4qjsgxbXSUAaf99vs/fwdzRiqYohNJlhNVQhdUwnzRvZX3jRkJaiExHOp8rOlkS7jizq8bBb17Qz/wVRePeaytJSpD2yWL4kresx9raAED3/BMJHbRdabRSggEsrY34C6foEziinHBrmr6Pe8IEmDJFigKFiFREK93z5s2jrm6IJZFCGCQY1EeEmc36HiQl4MdRUYri9RCKs46koq+uxStI3voBPXOWANBx0udxlJcy+aaLQIHWsy/DXzQFgOSNb5Oy8R3qv3Y7Jm83hb/9IUrAD4qJcGoa1d//de/ZRMM1t5D32N1k/PNJ1IQk6r9+Z+97JlRsp/1zlw4Yz5GOy/vjj+laeDLdC0854t9JTUii/mu3Ufjg91HCYfyFk6m77kAX9OQt6+ledKp0sIlAd9BDRZfe2G6Gawpz0qdJs7Q4Ewgp/OiREoIh/b/bFWc1ceyMbqPDEmNE3DVQCwWxtNTjL5yEr2SmfqITZY2NkJam7+OOk0p7IUYlRYtg8/V7773HxRdfzAsvvMAJJ5wQm8hGSGdnJ06nk/b2dlyySWVMqqqCjRuhoADMiopjzzbsNbsIZheOyXncGhoes4+ksAOFsX1JWvH1UHzPNVTe8SSaI/ajncyd7eT/4Vaqf/SHmL/X4Uz88deov+ZWAgUlhsUw0qL5M13ZVYPdbJPV7Tj12xfzePgVfZV7coGXF+7Zjt0Wfz1kxtPndLywtDYw5YbzUDSVYHoOux94tc+2nlEnFMLaUksgrwTvlDkx2SbX0aHv4z72WMg+wkemqqo0NTWRnZ2NSS4IizHA7XaTlpZGR0cHqampUXnNiD5N7r//fpxOJ8uWLWPWrFlMmDAB8yFX1xRF4dVXX41KkEJEqqfnwIgwsxls9dXYa8sJpeWMyYR7vNEciTRediO25treFe1YCqemGZpwmztaaT/ti+Mq4R4OvTv5dopTCkl36BdVi1OkuiVebS1P5LF/6OW+FrPGz66rjMuEW4xOrrWvomj6NgX3qReM7oQ7HMLaXEswpwjfpFkxSbj9fujshHnzjpxwCyEGJ6JPlC1btqAoChMmTKC7u5vS0tJ+z1Fk04cYBSor9V8aRUVgdrdiryxDTUxGszuMDk1ESc/sxUaHMGLCzgw6TzjL6DDiwsHdyet7mjhrwqmYpZQ8bvkCCjc/WkxY1c8trjuvntklPUaHJcaKcAjX2/saqJnMuE853+iIDk8NY22qJZhVgHfKXLQYNNUMh6GhASZPhuLiqL+8EONSREl3ZWVl9CMRIsra2/XS8vR0MPl79H3coaDeCVoIMWYd3J3cbrKxMGuOK2NYfAAAz5ZJREFUJNxx7sHnCiiv07eQzCnxcO159UaHJMaQ5E3vYt3XXLN7wUmE0kfp0q6qYm2sJZSZh3fq3JgtIDQ0QG4uTJ8u7UOEiJZRXDsjRORUFcrLIRCA7Iwwjl07sLhb9H3cQogxKayG2dRayp5OvaN9piOd43OOIdES+/3+InY2lCbz53/r3fptVpX7rqvEKmcvIorSVr/U+3X7aSsNjeWwNE0fg5mWhXfqPDRHYkzeprUVEhL08WAOKQoUImqG9Wvr7bff5rXXXqOqSj/BmThxIueccw6nnHLk7rxCxFpjI9TU6PuQ7LXl2Oor9XnNcslWiDHJHw7wdt0HuAOdAMx0TWG2dCePe91eE7c+fqC+9YaLa5lc4DM0JjG2WJtqSdq6HoBAZj6eOccbHVJ/moaluZaQMw3vtPkxG3Xa06Pv5V64EKS3sBDRFVHSHQgE+NKXvsQrr7yCpmm9Xb/dbje/+tWvuPDCC/nb3/6G1Rr9xg5CHM3+EWFWKyR2NmDfu5Nwajqa1WZ0aEKIGLGZrCRYHHhDPpbkLCBXupOPCT/7axF1Lfqe1eNmdPGVM5uMDkmMMa61r6DsG+TjXn7BqLw4b2mpR01y4p06HzUpJSbvEQpBS4s+Giw/PyZvIcS4FtEny913383LL7/M97//ferr62lra6OtrY2GhgZuuukmXnrpJe65557oRyvEINTUQFMTZCd04SjfBiYzamKy0WEJIaIsrIYJqSHY17xzcfYCzihaJgn3GLFmo5OX3tF7cCQ6wtx7beVozIdEPAuFcL3zDwA0sxn3yecZHVE/lpYGVEeivsKd7IzJe2ga1NdDYaHePE16IQsRfRH9+nrmmWe48sor+fnPf05OTk7v/dnZ2dx///1cccUV/OUvf4lmnEIMisejr3K7koIkVZVi9nRJ4zQhxqCuQDerat/jk+ataPtWqexmm+zfHiPau8zc8cTE3ts3X1ZNQVbA0JjE2JOycS2WjlYAuhaeSniUnS9Y2hrRbHa80xYQTk2L2fs0Nenl5DNn6lWCQojoiyjprq+vZ8mSJYd9fMmSJTQ0NEQc1O9//3uKi4txOBwsWbKEDz/8cFDH/f3vf0dRFC644IKI31vEt8pK6OzQyHbvxNpSRzArTy7ZiuhTwyRu/5jU9W+SuP1jUMNGRzSu7O2u4z817+IOdNLQ04w3LHt8xxJNg7ufnEhrh372f8oCNxed0mp0WGIM6tNAbcVFhsZyKIu7Bc1kxjt1HmFXRszep1Nvg8GsWZAsRYFCxExEe7oLCwtZu3Yt3/jGNwZ8/O2336awMLIu0c8++yw33ngjjzzyCEuWLOHBBx/kzDPPZMeOHWRnH75ksLKykptuuolly5ZF9L4i/rW16SPCCrQa7LW7CbmywCwtbkV0pXy0mpy//hJr24G9pcH0bBovv4mu41YYGttYF1bDbG7dLt3Jx7jX1qfx1kf6qp4rOcQ9X62Sa6ci6qyN1SRt0xd1AjlF9Mw6zuiQepk7WkHT8E5bENPxZX4/uN0wf77eeFYIETsRrXRfeeWVPPfcc3zjG99gx44dhMNhVFVlx44dXH/99Tz//PNcddVVEQX0wAMP8PWvf52rr76aWbNm8cgjj5CYmMgTTzxx2GPC4TCXXXYZd999N5MmTYrofUV8U1WoqNCHc6c1bkezJ6I55ERcRFfKR6speOgHWNr6NnOytDVR8NAPSPlotWGxjXWeQA+ra9/vTbhnuqZwav7xknCPMY1tVn7y9ITe23dcVUWWK2RoTGJs6rPKvfzCUdNAzdzlRgkF8U6ZSygzN2bvEw7r87hLSqC4eBAHCCGGJaJlwFtuuYU9e/bw2GOP8fjjj2Pa90GlqiqapnHllVdyyy23DPl1A4EAn3zyCTfffHPvfSaTidNPP53169cf9rh77rmH7OxsvvrVr7Ju3bpI/koizjU2Ql25j+KuUpSAn1CWtN4UUaaGyfnrLwE4dNFNATQg56+/omvRKWAyGxLiWKVpGh/VbqIn6MVuskl38jFK0+D2P06ks0c/NTlnaRtnLXEbHZYYg5RgAOe6fwKgWqx0LPuC0SEBYOruQPF78U6dTzC7IKbv1dAAubkwY8aoud4gxJgWUdJtNpt56qmnuPHGG3n99df7zOn+/Oc/z7x58yIKpqWlhXA43Kc5G0BOTg5lZWUDHvPuu+/ypz/9iU2bNg3qPfx+P36/v/d2577NLKqqoqpqRHELYwUCsGuHiqtpOwk9jQRyCvelQOOTdtD/RPQk7vi0T0n5oRTA2tZIwo5P6Zm5aERjG/MUmJ09nYrWvRyfcwwJFof8fI9Bz67O4t2tenfmLFeAW66oGrP/neVz2lgpH6/G0qVf0Ok6bgWhVJfh5w0mTxeKtxvv5LkEcgpAi905aWsrOBx6wm2z6dWCw7F/0U3Oo8VYEYuf5WFteJ03b17ECXY0dHV18ZWvfIXHH3+czMzBdZy87777uPvuu/vd39zcTCAgnVHjUUMDdJc3kEMl7tw0NMv4/u+ooeE3BwFQ+q3JikjZO+sH9bxwZz0eszT2Gi5PoIeeoJespAw0NFJSUzg2cT6qAh7k+zvWVDc4+PnfDvSCue26nVidHjyGRhU78jltrMI1L/R+XX/6OYZ/ZisBH2bVg79kAqE0B/hiN4/e7wefTx8NFgjoncuHS1VVOjo60DStt/pViHjW0dER9dccVV2mMjMzMZvNNDY29rm/sbGR3Nz++1r27NlDZWUlX/jCgbKg/VcmLBYLO3bsYPLkyX2Oufnmm7nxxht7b3d2dlJUVERWVhYulysGfysRSx4PuHc1k9tQS2KGE1VJgXHeSHr/yklS2CEnc1FkTs0b1PMSOzz4w46YxzOWVXfX8XHTFkDhjKKTSLImApCkys/0WBRW4SePTMfn17dl/M+KJk6f44Mx/O9IPqeNY6utIHW7Xh3pzy9GnXo8SWHj/hsovh4s7m58k2cRLpiMJYZdA0MhPcmeOROmTYvecBdVVVEUhaysLEm6xZhgs9mi/pqDSrpNJhMmk4menh5sNhsmkwnlKP9SFUUhFBpa8xObzcaiRYtYtWpV79gvVVVZtWoV3/72t/s9f8aMGWzdurXPfbfddhtdXV385je/oaioqN8xdrsdu91+2L+jiC/VZR5MZdtJcSqEkpxy6rKPctD/RHR4px+DanNgChx5RST3L7/E1tpI88pvoNn6f9aIwwurYTa1lvbpTm5WzH1+nuVneux5+vUcPt2ZAkBRtp//+1LtuPjvLD/Txkhb83Lv1+3LL0JRjDv3U/w+LO42fMUzCBROQYnheaim6ZWBRUUwZQqYo9x6RFEUOZcWY0Ysfo4HlXTfcccdKIqCxWLpczsWbrzxRq688kqOPfZYFi9ezIMPPojH4+Hqq68G4IorrqCgoID77rsPh8PBnDlz+hy/f7X60PvF2NPaGKLt3VIyzG5CaZGNqBNisFI+ebs34dYOaaa2fyegsu9Pxut/IXnTOuquvQvfZPksGoyuQDfrGzfiDuh9Nma6pjA7fRomxST7XsewndUOHnpRb3ypKBr3XltBkkP2hYrYUAI+XO++BoBqtdFx0jmGxmJpb8I3YRr+idNi3s2sqQlcLn2V22qN6VsJIQYwqKT7rrvuOuLtaLrkkktobm7mjjvuoKGhgQULFvDmm2/2Nlfbu3evXEUTqGGN2nd2Y2usxjSjIHo1UkIMwNLWRO4TP+29rSalYvZ09t4OpefQeNkNWJvryXrxYUzBAPa6SorvvobWL1xJywVfR7NGv1RprNjbVcvHzVsIaeF93cmPITcxy+iwRIwFQgo/fKSEYEj/nX712Y0smj5Wd3GL0SD1w//2fnZ3LjkDNdlpSBxKMICltRF/0VT8xbFvH76vZzCzZkFyckzfSghxGBHt6b7nnnu46KKLDruavG3bNl588UXuuOOOiIL69re/PWA5OcDatWuPeOxTTz0V0XuK+NK0qY6eTTtJmZgJllHVmkCMNapK/mN3YenWm2p0HreC2m/dS+LOTVjcLYRcmfRMP6Z3TFj3ghPJf+wuEspLUTSVzH88SfKn+qq3v3iGwX+Z0anN7yakhclypHN8zkISLGN3L6844OGX89ixV9+vP6XAy/+urDM6JDHGuQ6aze1efpExQYSCWFrq8RdOwlcyM/p13ofw+8HthnnzIFsmLQphmIgurd11111s2bLlsI9/9tlnA3YIFyIaAs0dNL29HXOiHVNKktHhiDEu/d/PkLTtQwCCadnUX3MrmC30zDyWzqVn0TPz2D5zuQMFk6i84wmavng9mlm/IOSo3k3JXVeS+dJjeicbgaYdKBmfmzGThZlzOCX/eEm4x4nNu5N4/J96g1SLWeNn36jAbpNtBCJ27NW7Sdyln7v6CifjnWrA9J1QCGtLHYH8EnyTZsd80UBV9X3cJSX6HyGEcWJSz9LW1haTrm9C4PfTtLYUT5OHxKLBjYkTIlL2qp1kPff73tt11901uHJEs4XW879KxT1/wTdxGgBKOEzWy49RfPdV2Kt3xzLsUW9vVy3rGj5E3TeH1qyYmOIsxmRgQyMxcrx+hZsfLUbV9G1B37ygjlnFXqPDEmOca/WLvV+7V6wc+W1p4RDW5lqC2UX4Js0CS+w3VtfXQ06OPo9bdmYKYaxBX2J75513+pR2v/TSS+ze3f/E0e128+yzzzJ37tzoRSkE+iVbz6adtHxWj7moUH6BiJhSAj4KHr4NU0ifpdt69uX0zF48pNfwT5hKxV1Pk/nqE/+fvfuOb6u8Gjj+0/Lee8Yj25kkIQMa9i4te+8RAi0vbSltkwAhYYW2dEAHJOy9V2kZJayGDQkjhBBG4sTblm3Jkqx97/vH49gJWY4t69ry+fJJ63st3XucWNI993mec8j5172YtDCJ1V9Tvvgc7CdcQuuPzwHL8FkeEdLCfNa6jo0dWwDY2FHDqPQyo8MSUfbnJ0qoblQzGiZVerj4J41GhyRinMnnJf3dlwDQ4hJw7n9MdAPQwtia6wjmFuMdNSkqnS3a2iAhQa3jTpAJREIYrtdXe2+++Wb3lHGTycSzzz7Ls88+u9PHVlVV8be//S1yUQoBUFNDywcbcSbkk5c+sGughMh7/G/E120EwDdiDC2n/KxvB7LasJ80H/e0Ayhcfh0JdRsxh4LkPfUPUle/Rf38pQSKyiMb/CC0Q3XyzNFUpu3Y1lHEtvfXpfLIa2phabxNY9n8TVjl7VwMsLQPXsXiVUX6OmYfgZYUxWpimoatqY5QTiHe0ZPQ4wc+A+7sBK8Xpk2DzMwBP50Qohd6PVb429/+lpaWFpqbm9F1nTvvvJOWlpbt/tjtdjo7O/nyyy+ZNWvWwEYuhhe7HecH62nwpJCWJ7dsxcBK/vxdsl57AgDNFk/dz27sd/VxX8V4qm94GPux56N3TaNO3LiOimvOIuvlh0ELRyT2wWiLq47XalfhCHQQb47jgMJZTMoaK9PJhxlXp5mr7+q5wXTlabVUFvkNjUkMD5lv9gwStR96UvROrOvYWuoJZebiHT0ZPSFpwE8ZCkFLC4weDcXFA346IUQv9XqkOzExkcTERAA2bdpEXl5e97YQA6qzk/DadTTWhggm5pIx8LOyxDBmcbZRdNf13dvNZ/yCQHFlRI6t2+JoOe1yXNMPpGjFEuIbNmMO+sl/9K+kfvIW9ZdcRzA/tkZ/17d/x9q2rwGkOvkwt+yhUhpb1c2rWeM7OOvwFqNDEsNAQvXXJG78CgBf2Vh8FVXRObGuY22pI5SWgXfMFLTEgS/8qutqHXdpKYwaJd1UhRhM+jTMoGkaK1eu3OX3X3zxRaqrq/sTlxBKOAxff037xjYatHyZJiUGlq5TePcNWJ2tALin7E/7YadE/DS+UZPYdOMjtB59FnrXVVHSN59RuegMMl97QpWcjRHFyQVYTVaqMkdLdfJh7PXV6Tz/jip+mZwQ5sZLNktdDhEV2xZQa49iATWrvQEtOR3vmKloyalROWdzM2RkwPjxYBv4Om1CiL3Qp4+8q666ittvv32X3//HP/7BggUL+hOXEMrGjQS/rWaLv5C4BLO05BYDKuONZ0j9bBUAodRM6uctHrALND0ugeYzf8Xmq1cQyCsBwBzwUfDgHxlxy8+wtQzdnsUdAVf312lxKRxTdjATZTr5sNXqtHLdPT0F8xaeU0NxTsDQmMTwYPZ6SHv/VQDCCUl0zDkyKue12hvREpLUCHdvOl5EgMulRrrHj4eUKC5ZF0L0Tp+ugN5//30OP/zwXX7/0EMPZdWqVf2JSwjVXHLDBppC2Tg8NtKj87klhqm4+mryH/1L93bDvMWE07MH/Lzesfuw8abHaNtmRD15/SdULDqdjDeeVVdRQ0RIC/NJ8xe8WvM/Wryt3fsTLLImZLjSdVh6/wjaXGrY7eBpDk6Y27rH5wkRCWnvv4LF1wlAx35HRWWKt7WtCT0uHu+YqYTTojM9z+8Hh0O1BsvPj8ophRB7qU9Jd3t7O6mpu54qk5KSQmurfKiKfujogHXr6AxYqXGkkJoqPSbFAAoFKbrjGswBVdSp7dBTcO8zN2qn1xMSaTrvd2xecAeBnEIALL5OCu+7mdI/XoG1rSlqsfRVR8DN63XvsNG1BR2dNr/T6JDEIPDiu1ms/EQlHpmpQZZeuFnWmYro0HUyt51afvCJA35Kq8OObrbgHT2ZcMbA37RFFUenqQnKy9UfIcTg1Kc0ZsSIEbz77ru7/P6qVasoKSnpT1xiOAsEYP16dJebOn8OPq9MlRIDK/eZO0msVsW+/EXlNJ/xC0Pi6JywL5tufoz2g07o3pey9n0qF55G+v9eHLSj3ptddaysXYUz4CLeEseBhbMYmxGZ4nNi6GpotXHTQz2FAa+7YAs56SFDYxLDR8LGdSRs/gYAb+UE/OXjBvR8Fmcr6Dre0VMIZeUN6Lm21dgIublqlNsi7feEGLT6lHSfccYZPPbYY9x+++1o2xT8CYfD3HbbbTzxxBOceeaZkYxTDBe6Dt9+C3V1OJIKaGw2kSHF08QASlr/Cdn/eRAA3WKl7rIbo9JHdVe0xBQaL7qaLb/5G8FMdeFm6XRTdNdSSv58JVaH3bDYfmjrdPIPmz8lpIfJTcjmiJIDyE/KNTo0YTBNg2vuKsfVqQpx/GT/Vo7Y12F0WGIYyXxjmzZhhwzsKLfF5cAUCuIdNYlQTsGAnmtbbW0QHw8TJkCC1KgUYlDrU9K9cOFCDj74YH75y19SWFjIAQccwAEHHEBRURG/+tWvOPDAA7n66qsjH62IfbW18N13hLPzqG2wgg4JshxUDBCzp4OiO6/D1DWC3HzKzwZ8NKS3PJPnsHHZEzh+dGz3vtTPVlG54FTS3n9lUIx613ka2OjaAiDVycV2Hn89l/fXpQGQnxng6nNqjA5JDCNmj4u0D7oKqCWl0DHriIE7l9uJye/FO2oywbzoNcbu7ASvVxVOk84uQgx+fUq64+Pj+e9//8s999zDzJkzsdvt2O12Zs6cyb333svKlSuJj5dMSeyltjb46itITsbuScRuR0a5xcDRdQrvW4ata720Z/wM2o4+2+iotqMlp9Iwfwk1v/oToa6ibhZPB8X/vIbiv/0Oi7PN0PhGpBQzMq2MAwpndVUnl8W6Aqob47n18Z4lZjfOqyYtOWxoTGJ4SX/vpe4aHc79j0FPSByQ85g9LsxeD76REwkWlPbiGZERCkFLi+rFLas5hRga+tyAyWw2c8EFF3DBBRdENiIxPHm9KuEOBAjkFFG7UY1wW2V9khgg6e/+h7QPXwMgnJxG/fwlg7Zan3vagWwcPYX8h/5Ielf7m7SP3yDp6zU0XrAQ176HRiWOkBZmffu3jM0YSZzFhslkYnrupKicWwwNoTAsWl6OL6BeS6cf2sz+k1x7fJ4QEaPrZLzeU0DNMUAF1MxeNxa3E+/IiQQKy3rxjMjQdWhogNJSGD06am3HhRD9NDivMMXwEg7Dhg3qtm1BAU1N4HRCWprRgYlYZWuuJf+BP3RvN1ywiFB29Nbh9UU4NYP6n91E7RW/J5SaAYDV5aDk9t9R9M+rsbgGdr3s1urk6x3fsbrliwE9lxi67v1PAZ99pypflub5uOr0OqNDEsNM4refk1C3EYDOMVPwl46K+DlMvk4sznZ8lVUESiqjmvm2tEB6uppWbrNF7bRCiH7q80h3Y2Mj99xzD2vWrMHpdG5XUA3AZDLx+uuvRyJGEeuqq9Wf/HzcnWZqayE1bdAOOoqhLhyi6I7F3b1bHXN/gmvWYUZH1WuufQ+lc8w+FNy/jLRP3gQg/f1XSf7qExouvBr3tAMifs7NrlpWt6wlpIeJt8RRmTYi4ucQQ9/XmxP5+7Oq5Z3ZpHPL/GqSErQ9Pk+ISMrYtoDaAIxym/w+rI5WfOXj8JeMjGrC7XKpIoVVVdLVRYihpk9J9xdffMFBBx2E1+tl7NixrF27lqqqKhwOB3V1dYwcOZLS0uitbRFDWHMzfP01pKejx8VTvxl8fijIMDowEaty/nUfSd+pkdpAXjFN51xldEh7LZyeRd0Vf8D1wasUPPAHLJ4OrM5WSv9yJY4fHUvT2b9GS07t93lCWphP7V+yyaWKYOUlZDMrfx8pliZ2EAiaWLi8nFBY3S298MdN7DPGY3RYYpixuBykfbQSupYNuWZGdumNKeDD2t6Mb8QY/GVjojo6EAiAwwGTJkF+ftROK4SIkD69WyxYsICUlBQ2bNjAypUr0XWd2267jZqaGp544gna29u55ZZbIh+tiC1ut1rHbTJBWhoOBzQ1QaYk3GKAJHy3lpzn7wZAN1uov/QGtMRko8PqG5OJjjlHsfGWJ3FNndu9O+Odf1O58DSSv3ivX4d3Bz28XvdOd8JdlTmaA6Q6udiFvz9byIaaJADGlHZy+Yn1RockhqH0d/6DORgAwDH3WPS4yL1fmYIBrK1N+EtGqS4XUUy4NU2t4y4vV3+EEENPn94x3n33XebPn8+IESMwd73pbJ1efsopp3DWWWfxm9/8JrKRitgSDML69eq2bV4e4bDqFgaq56QQkWb2eii+4xpMmqqibD/uIryjJxsdVr+FMnKovfLP1F+yhHCSmm9oa29mxB+voOCemzB7+zbaaDPbCISDJFjiObBwtlQnF7v06TfJ3PsfVRPBatG4ZX41cTbjW9qJYUbXyXizZ2p5RAuohYJY7Q34SyrxVYwHS3SrvDY2Ql4ejB0b9VMLISKkT0m3pmnkd81tycjIwGKx0NbW07pm0qRJrF69OnJRitii6/D99yrLLiwEk4mWFqRFmBhQ+Q/dSlyzKurUOWoy9uMuNDqkyDGZcM49lo3LnsA9aXb37sy3nqNi0ekkrfu4V4cJ6z3rb+MtcfyocF8OL5lLflLOgIQthr5On5mFK8rRdHVD5ucnNjCuzGt0WGIYSvp6NfENmwHwjJ9OoChCQ8KhEDZ7PYGiCnyVE8Da53JIfdLeDnFxah134sB0PhNCREGfku6Kigo2bdqkDmA2U1FRwcqVK7u//95775GRIXOExS7U18O330JODlit+P0q/05IkBZhYmCkfriSjFUvAhBOSKL+suvBEt0Lp2gIZeVT85u/0XDBIsIJaqpvnL2BslsuI/+B32Py7ToZ6gi4WVm7iuqOmu59mfHpMp1c7NafnyhmS5P6HZkyys1FP240OiQxTG1bQC1io9zhELaWOoJ5pfgqq8Aa3XLhXi94PCrhzsqK6qmFEBHWp6T7iCOO4Kmnnurevuyyy7j77rs57LDDOPTQQ3nggQc488wzIxmniBUOh1rHHR8PSSopaGyEjg5pESYGhrWticL7bu7ebjr3twTzSgyNaUCZTDgOOZFNNz+OZ/yM7t1ZK5+i8uozSNzw2Q5P2eyqZWXtKpwBF+vav0XTpeK02LP31qby6Mo8ABLiNJZdUi03ToUhLM420j5+A4BQagauGQf3/6BaGFtzHcHcYryjJqHHRXftWyikas2OHg0lMfyRJcRw0aek++qrr+axxx4jGAwC8Mtf/pLrr7+e1tZWnE4n1157LTfeeGOkYxVDnd+v1nF3dkJ2NnTVUquvVwm3tAgTEadpFN15HRZPBwAdsw7H+aMfGx1VVARzi9iy4J80nvsbtK5iQnHNtZTdNI+8R/6MKeAjpIX5uPlzPmz+jJAeJi8xm0OK98Nskhej2L0Oj4Wr7+qZvvvr02spL/QbGpMYvtJXvYgpHALAccBP0W1x/TugpmFrqiOUU4h39CT0+OjO+NF1VTituFgl3VJOQ4ihb6/nV+q6jsViYcKECdhsapqNyWTimmuu4ZprrhmIGEUs0DTYsEF9inTdstV1qKtTLcJkNYIYCFkvP0zy+k8ACGbl03DBwuF19WI20374abgn70fRiiUkffM5Jl0n+5VHSfpsFS+ccAKb8tWcxQmZYxifOVqKpYleufmhUpraVWIze0IHZxzaYnRIYrjSNDLffK5703HwCf07nq5ja6knlJmLd/Rk9K6lOtHU0gLp6WpauS26M9qFEANkr4czAoEAWVlZ3H777QMTkYhNW7bApk2quWRX6c32dmkRJgZOfPXX5D31TwB0k4n6+UvRkofnGoZgfimbr15B05m/ROsaAUpsrOHUO//GEa+/yUE505iQNUYSbtErr32cwb/eVbOVUpNC3DSvWmYqCcMkffUxcc2q/Yl7wkyC+aV9P5iuY22pI5SWgXfMFENaSrpcapyiqgpSU6N+eiHEANnrj8n4+HgKCgqIl75Oorfsdvj6a/XpkaCmaIVCqniaySQtwkTkmfw+iu+4tnu6Yesx59BZNWOPz4tpZgttR5/NphsfxVs5Qe3SdeaseptZy35Jwqb1RkcohgC708qS+0Z0by86p4bC7KChMYnhLfONZ7q/dhx6Ur+OZbU3oCWn4x0zFS05+hlvIKAGJMaOVWMUQojY0ad70+effz4PPvgggUAg8hGJ2NLZCevWQTis5kp1abFDa5u0CBMDI++x24ivVx0WvOXjaDn5MqNDMlxHwI072EmgqJzqxffQdMrP0boq8SbUbaR8yfnkPLMcQpJAiZ3TdVhybxntLvV7c+j0dn66f9senyfEQLE67KSueRuAUHo2rn0O7Pux7I1oCUlqhDslvRfPiCxNUyvwysuhoiLqpxdCDLA+9cyZNGkSzz//PBMmTOD888+nvLycxJ00DzzxxAi1bBBDUyikCqe1tUFpz3Qvn09ahImBk/LpKrJeV90VtLh46i+7MeptXgabza5aVresJTUuhUOK98NisdL20wvw7DOXouXXkbB5AyYtTO7zd5H66dvUX7IU/4jRRoctBpkX3snijTVqPVBWapAlF2wZViUSxOCT/vYLmMJhABwH/rTPPbStbU3ocfF4x0wlnGbMaEBTE+Tlwbhx3avwhBAxpE/vTmeccUb319dee+1OH2MymQh3vRGKYWrjRrWWu7Bwu+JVjY3g6oCCAkOjEzHI4myl8K7ru7ebzvgVgaLy3T4nloW0MJ/av2STS/XetpmthLQwlq4rOn/pKDYteYCcf91Lzr/uwRQOk7D5GyoWn0PLCfNoPfa8mOxnLvZevd3GzQ/1TCtfcuEWstNDhsYkhjktTMZbz0NX3Q7HQX0roGZ12NHNFryjJxPOyI5wkL3T3q4KplVVwU7GsIQQMaBPV1Nvvvlm5CMRsaWhAb75BrKytiu96XKrb6WlDa8i0iIKdJ2iu67H6moHwDV1br/X9w1lHQE37zetxhlwwe6qk1ut2E+8BPe0AyhcsYSEmu8whUPkPX0HqWvUqHegWOY6DmeaBlffVY7bq27WHPejVg6b4TA6LDHMJa/9gDh7AwCeSXMI5hbt9TEszlbQdbxjphLKyhuAKPfM6wWPB6ZNU5dMQojY1Ouke9GiRZx++ulMnjyZAw/s+5oZMQx0dMBXX6lkOyWle7euQ12tatctLcJEpGWufIqUz98FIJSWRcPF1w7bOzvVrlrWtKwlpIdJsMQzK28f8pNydvscX/k4qpc+SM7zd5H94gOYdI3EjV9Rce1ZtJx0KW1HnwVmmfM4HD26MpcPv1KV/wuyAiw8u8bokITYroBa+yF7v5zR4nJgCgVVwp1jzNS7UAiam1XhtK5uqkKIGNXrQmq33HILX375Zfd2a2srFouFN954Y6BiE0NRIKASbrcbcra/yG9rU2uWJOEWkRZXt5G8x27r3q6/5DrC6cNzyEDTNb51biKkh8lLzObwkrl7TLi30m1xtJzyc6qvuxd/17R8czBA/uO3U3bjPGyNWwY4ejHYbGqI50+P92QDN86rJi1Zlo4JY1nbmkj59B0Agpl5uKf+aK+eb3Y7Mfm9eEdNJphXPEBR7p6uq+V2xcUwevSwvUcsxLDRr86auq5HLhIx9Ok6fPst1NfvsGA7FIK6OjVQJi3CRCSZggGK/3kN5qAfgLbDT8UzZX+jwzKM2WRmTv40JmaN5YDC2SRaE/b6GL6RE9l0w8O0HnMOeteVYNK3X1B59Rlkvvq4mm8sYl4oDAvurMAfVJcKZx7ezH4TXUaHJQQZb72ASVfvQ46Djtur2hNmjwuz14Nv5ESCBf3o6d1PLS2qk2pVFcTFGRaGECJK+pV0C7Gdmhr47jtVfvMHFURb7NDaKqPcIvJyn76DhC3fAOAvrqT59CuMDinqql21fNX+bfd2ii2Zqp2t394LelwCzWf8gs3X3EUgX12YmgN+Ch6+lRHLLsXWXBuR2MXgdfe/C1i7MRmAsgIfvz5N/s3FIBAObVNAzYzjoON7/VSz143F7cRXUUWgsGwAg9w9l0vdu6yqUom3ECL2SdItIqOtTbUHS07eofSmzwc1W9RuaREmIilp3Udkv/QQAJrVRt1lN6LH7f3I7lAV0sJ83Pw5HzV/xpdtG7D72iN+Du+YqWy88VHajji9e1/y12uoXHQGGa8/rWa4iJjzVXUi/3xOFaYym3RumV9NYrz8WwvjpXz+Lrb2ZgDc+/yIUFZ+r55n8nVicbbjq6wiUFJp2HzuQEBVKx87Vrq4CDGc7FX18urqatasWQOA0+kE4NtvvyVjF8OX06ZNi0SMYrDzetU67mBwh3XcAA2Naom3fLiISDK7nRQtX9K93XLKz/GXjTE0pmhyBly837iGjmBPdfKs+IGZSqInJNJ0zlW4ZhxE4YrribPXY/Z7Kbz/FlI/eZOGi68llC0v8FgRCJpYuLyCUFglJRf/pJEpozxGhyUEAJlvPNv9dfvBvSugZvL7sDpa8ZWPw18y0rCEW9NUB5eKCvVHCDF8mPReLsw2m82YfvAmpev6Dvu23T8U+nR3dHSQnp5Oe3v7Lm8eiN0Ih+GLL2DTJigtBfP2kydcLli7Vq3jTkoyLMphRUfHY/GRHE7ARIxWZtF1iv/2O9I+VoUcPRNmsuW3f9/h9y9WVbtqWd2ylnBXdfLZ+fuQl9i7Ymn9ZfZ6yHv8tu0ufMOJyTSddSXOA346IBezw+J3ehD50+PF3PMfdRNl7IhOnlj6NXFWGeWOJPmd7htbSz0jf30cJl0nkFPI9396fo9dFUwBH9a2ZnwjxuCvGG/o50R9vVpmN2NGbPXj1jSN5uZm8vLyMA+Tz2ER2xwOB5mZmTidTtLS0iJyzF6PdN93330ROaGIMZs2webNUFi4wweZrqviaYEAZGYaFqGIQemrXuxOuEMp6dRfsmTYJNxrWr7ku45qAPISc5idtw8J1uhVJ9QSk2m8YBGuGYdQePcN2NqasHg9FN19A2kfv0HDRdcQysyNWjwislZvSObel9R0XatF45b51ZJwi0Ej463nMXWNFTkOOn7PCXcwgLW1CX/paPzl4wz9nGhvVwXTJkyIrYRbCNE7vU66zzvvvIGNRAw9HR2qcFpGxk5Lb7a2qhZhknCLSLI11ZD/0K3d240XLiKUlWdoTNGUlZCBqQOqMscwvp/F0vrDM2k2G5c9Qf4jfyLjfy9C11rLygWn0njub+jY72jpgTPEeHxmFq2oQNfVv9sVJ9czdoTX6LCEUEIhMt5+AQDdYsF54HF7eHwQq70Bf0klvorxYDGuqIzXCx4P7LMPZA3PbpZCDHvDY2hIDIyWFvVJspPSm8FtWoRJKwwRMaEQxXdci8XXCYDjgJ/i2vdQo6MacL6wv/vr8tQSjiw9kAlZYwxLuLfSklJomHcdNVf+hVB6NgCWThfFdy6m5LbfYHG2Ghqf2Du3PlZCTbOaNbHPaDcXHNNkdEhCdEv99G2sXe8prmkHEsrYzZKaUAibvZ5AUQW+ygk7dFSJplAImpth1Ci1Ck8IMTxJ0i36JhSC2lpISdnpt+0tqqC5LJMXkZTzwj0kfv8lAIH8UhrPucrokAZUSAvxUfNnvFazCn840L0/LW5w9Zhx7zOX7295Eud+R3fvS139FpULTiX1w5WGxiZ6550v0njiDbUsIDEuzM3zq7HIFYIYRDK2qSPh2F0BtXAIW0sdwbxSfJVVYLVFJ8Cd0HVobITiYhg9Wib/CDGcyUeq6JvWVnA4YCfFBbw+1bJbWoSJSEr85jNyXrgHAN1soe7SG9ATYrc6nzPgYmXtO1S7avGFfTR57UaHtFtaSjr1l91A7S/+SChVrSmxup2U/H0BRX9fiMXlMDpEsQtOj4Vr7u7pWXzVGXWU5ft3+xwhosnWVEPKlx8CEMgrxjNh5s4fqIWxNdcRzC3GO2oSelz06l3sjN2uxiaqqmTWnxDDnSTdom8aGtQt251M2WqoVy3CIlTsTwjMXjdFdyzGpGsAtJwwD9+oiUaHNWCqXbWsrH2HjqCbBEs8BxbNZkRKkdFh9YprxsFsvOVJOraZ9p/+4WtULjiVlNVvGRqb2LkbHyiluV1lBPtN7OD0Q1uMDkmI7WS8+Vz31+0Hn7jzgmiahq2pjlBOId7Rk9DjE6Ib5A+43arBy4QJO12FJ4QYZiTpFnvP41EV0tLTd/hWR4fKx9PTZRqViJz8B/9InL0egM4xU2j96QVGhzQgtk4n/6j5M8J6mPzEHI4oOSBq7cAiJZyWSd0Vv6f25zcTSlHvE9aONkr/ehWFdy7G7OkwOkTR5dWPMvjP+2o9fmpSiBvnVct7txhUTMFAd7FG3WLFOfcnOz5I17G11BPKzMU7erLhs6ACAbXEbuxYKCgwNBQhxCAhSbfYe3a7Srx/sJ5b01TxtGBQenKLyEn94L9kvPMfAMIJydTPv36PbWKGqi/bvqHaVYsJmJA5hrmFs6LaDizSXLOPYOOyJ3BNO6B7X8a7L1G58DSSP3/X0NgEtDisLL2vZ1r51efWUJAVNDQmIX4o9ZM3sbraAeiYcTDh9B+U/9Z1rC11hNIy8I6ZgpaYbEygXTRNreMuL4eKCkNDEUIMIpJ0i72jaaqA2k6y6rY2aREmIstqb6TwvmXd243n/45gXrGhMQ2kqszR5CRkcmDR7EFRnTwSwhk51P7yT9TNX0o4Sd2os7W3MOLWX1B49w2YvW6jQxyWdB2uu6cMh1stETpi33Z+sl+b0WEJsYOMN7cpoHboSTt832pvQEtOxztmKlqy8fO4GxshJwfGjTO0S5kQYpCRpFvsnfb2nZYlD4agplYt8ZZiISIitDBFyxdj6XQB4Jx9hOr9HENCWojvnJvRdR2AOIuNg4v2G3LTyffIZKLjRz9m47IncU/er3t3xtsvULnwNJK6CiSJ6Hn2f9m89Zl6H89OC7L4/C0yrVwMOnH11SSvXw2Av7CMznHTt/u+1d6IlpCkRrhTdlzyFm0Oh7oGqqpSxWSFEGIrSbrF3mlqUqPdtu1bcLQ0g6NdWoSJyMl+6SGSv14DQDC7gMbzF8ZUoYCt1cnX2Nfyfcfm7v2mGPoZfyiUlUfNVbfRcNE1hBPUFFBbaxNlv/85Bfffgqmr/7oYWHUtcdzycE/D4KUXbSYrLWRoTELszHaj3AefuN1ngLWtCT0uHu+YqYTTjJ9i5/Op4mnjx0N2ttHRCCEGG0m6Re/5fFBfv0NZcq+3Z8a5TKUSkZCwaT25T98BgG4yUT9/6aCYNhgpmzpqtqtOPtj6bg8okwnHQcezcdnjeKr27d6d+frTVF59BoldN1rEwNA0uPqucjw+9WZ9/Fw7h0xzGh2WEDswBfykd9Xz0GxxOOYe2/09q8OObrbgHT2ZcIbxGW4opMYkRo2C0tJePEEIMexI0i16r7VV3cb9Qe+Lhoad7haiT0w+L0V3XIMpHAag9djz6Rw/fY/PGwq2Vif/uOXzH1QnN/6iMdpCOYVs+d0/aDzvd2hxqrVPXHMdZTfPJ//hP2Hy+4wOMSY9/N88Plqv3qwLs/0sPLvG6JCE2KnUj1/H6lY3hFwzD+2ePm5xtoKu4x09hVBWnsFRqvoIjY1QVASjR8fUhCwhRARJ0i16R9dVaXKbbbtPFKdTDX5nZMgHjYiM/Mf+QnyDmm7trRhPy4mXGB1SRGydTr61OvnErLEcMMSrk/eb2Uz7Yaew8ebH6Ry7DwAmXSfr1ceouOZMEr/9wugIY8rG+nj+8mRPIcKbL6kmNUkzNCYhdiXzjWe6v24/RBVQs7gcmEJBvKMmEcoZHL247HbVzKWqSmraCCF2TZJu0TtOJ7S0bLdoW9NUwh0KScEQERkpa94m8w21hk+LS6D+shvAatvj84aCQDiAq2s6+YFFc6jKHB3T67f3RjC/hM2LltN41pVoNnUTIr5xC2U3XEzu47djCviNDnHIC4ZgwZ0V+IPqY//sI5qYVSWV48XgFF/zHUnffA6Ar7gS7+gpmN1OTH4v3lGTB00XC7dbXQNVVe2w8k4IIbYjSbfonZYWCAQgIaF7V2tXi7CsrN0+U4hesTjsFN59Q/d201lXEigsNzSm/tpalRwgNzGbWfnThu108j0ym2k/6kw23fQInaMmAWDSNXL+8yAVi88haePXRkc4pN31YiFfblLF6yoKffzq1DqjQxJil7YroHbIiZg73Zi9HnwjJxIsGByLpgMBtepu7FgoLDQ6GiHEYCdJt9izYFBNLd9m0XYwCLU1ara5LTYGIoWRdJ2iu67H6nIA4Jp2II6DTzA6qn5xBly8XvcOHQFX974RKUXDezp5LwQKy9l87d00nfZ/aF2zHBLqNlG1+FJVXC8UNDrEIWfdpiTufEFlBRazzrL5m0iM1/f4PCGMYPL7SH/3JQC0uHhc0w/E4nbiq6giUFhmdHjQNdOvsREqKqCy0uhohBBDgSTdYs9aW9X08m3mTjU1qZbd6ca3xRQxIPO1J0j54j0AQunZNFx0zZAuEqCqk6+ize/kU/tXRocz9JgttB17HptueBhvxXgATFqY3BfupWLxucRv3mB0hEOGP2BiwfJyQmH1epr3k0Ymj5TWbGLwSvvwv1g61dKHjn0PxRQM4ausIlBSOWg+F5qaICdHjXJL1xYhRG9I0i32rKFBfdB1fbJ4vWrgOyVFPmxE/8XXfEfe47d3b9dfsmRQ9Fzti+2rk2vkJ+YyK2+q0WENWYGSkVQvvo/mk+ajdb3ZJNR8S8V155Lz/N1qMaXYrdufKeL7OlV0Y3xZJ5ce32B0SELsVubrPQXUXNMOxFc+Dn/JyEGTcDscaoZfVZVqlSqEEL0hSbfYPbcbmpu3K6BWXw+dnSrpFqI/TAE/RXdcizkYAKDtyDPwTJ5jdFh9svPq5DNlOnl/Wa3Yj7+Yr264C1/paABM4TC5z9xJ+fUXEFf7vdERDlqffJ3C/S/nA2CzatwyfxNxVplWLgav+M0bSNy4DgB/UQXO/Y/BXzYGzIPjctXnU5dF48ZBtpTmEELshcHxLiYGL7sdPB5IVgV4nE6ob5AWYSIycp/6Bwk13wLgKxlJ86mXGx1Sn7T5HKysXUVH0E2iJZ6DpDp5xHnLR7Px+gewH3cRulmNeiduWk/FtWeT/e/7QQsbHeKg4vGaWbSiHF1Xv4NXnFzP6FLpfS4Gt63dKwBajzoLf8X4QZNwh0JqWvnIkVA6OGq5CSGGkMHxTiYGp3AYamq6E25Ng9padW27TRFzIfokee0HZL/yKACaLY76n92EHjc0R4Uz4tPIjE8nPzGXw0sOIFeqkw8Mq42Wky+j+rp78Rer6kXmUJC8J/5O2Q0XE9dQbXSEg8YfHiuhtkW9nqaNcXH+0U1GhyTEbpm9HtLeexmAcHwiTWf9alCtYWtshKIiGDN4Bt6FEEOIvG2IXWtrU9XSuqaWt7aqzmHSIkz0l8XloHDFku7t5lMvx186ytCY9lZHwE1Y1wAwm8z8qGCmTCePEl/lBDZd/xD2H5+LblIfY0nfraXi6rPIevkRdYdwGHv7szSeejMXgMT4MDdfUo1FPu3FIJf27stYfKrIX9vRZ6GlD56LDbtdLamrqoK4OKOjEUIMRfIxLHatqQl0HaxW1SKsVhUPsVqNDkwMabpOwb03YXPYAXBPmk37EacbHVWv6brOpo4aXqv9H1+0ru/eH2exyXTyKNLj4mk5/Qo2X3s3/oIRAJiDfvIf/QtlN8/H1lRrdIiGcLgtLL6np63Sb8+sZUR+wNCYhNijUJDM157o3mw5+TJDw9mW263apFZVbdfERQgh9ook3WLnvF5VtbyrJ1hj03aD3kL0WfrbL5D2yZsAhFLSabhkyZCZq6eqk3/eXZ3cFXCj6cN7VNVo3tGT2XTjo7QeeQZ6102PpA2fUrnodDJXPjXsRr1vfGAELQ41FPejyU5OPdhudEhC7J4WJmXN/0io3wSAp2pfvOOmGR0VoJLt1lbVGqyw0OhohBBD2dC40hXRZ7eDywUpKXR2Ql2tmlo1RHIjMUjZGrdQ8NCt3dsNF11LKCPH0Jh6y+nvYGXtO2x291Qnn1s4E7NJXhRG0+MTaD7712xetJxAbjEA5oCPggd+z4g/XI7VPjzaZL38QSYvfaCm5KYlhbjhos1S8FIMbpqGramO1M/e6d7VcuJ8Q0PaStPU2EN5OVRWGh2NEGKok6tFsSNdV424ExLAZKKuXg18p6YaHZgY0kIhiu+4BnNAVVBuP+gE3DMOMjqqPdo6nXxl3TtSnXyQ846bxsabH6P90JO79yWv+4jKhaeT8dbz6r0tRrU4rFz/wIju7WvP30J+VtDQmITYLV3H1lKPFp9I6sevAxBOTqP9yMGx3KipSdWwGTduUNVzE0IMUZJ0ix05HGo+VUYGDoeq2CnTykV/5T63gsSNXwHgLxhB01lXGh1Sr/jDAT5rXUdY16Q6+RCgJyTReP4CNv/uHwSzCwCw+DwU3nMjpbf+Amtb7FXx1nW49u5ynG5VcOPImW0cM7vd6LCE2DVdx9pSRygtg8RN67oLqLUecw5aYrLR0eFwqPo1EyZAUpLR0QghYoEk3WJHzc0QDBK2xlNXB7omLcJE/yRu+JTsF+8HQLdYqL/sBvSERKPD6pUEazwzciczMWusVCcfQjonzmLjssdxHHhc976UL96jcuFppL/z75ga9X7m7Wz+97mqv5GdHmTx+VtkWrkY1Kz2BrTkdLyjp5D97we697ecZPzUcp9PFU8bPx5yhsbqJyHEECBJt9heIKCmlqemdrcIy8w0OigxlJk73RTduRhTV8GxlhPn46ucYHRYu6TrOhs7ttDU2dK9rzSlSKaTD0FaYgoNF1/LlqtuI5ipWmhZOt0ULV9CyV9/jcUx9IuM1TbHccsjpd3bN1y0mczUsKExCbE7VnsjWkIS3jFTSNz4FUnfrQXAPXkOvlGTDI0tHFbTyisrobS0F08QQohekqRbbK+1FTo6CCSkUVOj+lFKizDRHwUP/J64rkJWnWP3ofXY84wOaZeCWoiPmj/jk5Yv+KD5U3whv9EhiQjwTNmfjcuewLH/Md37Utf8j8qFp5H2/qtDdtRb02DRinI6fWrB6UkH2jloH6fRYQmxS9a2JvS4eLxjphJOyyT32eXd32s58VJDYwNVOK2oSFUrl8KxQohIkrcUsb36erBaabKbcTq7O4YJ0Sdp771C+nsvAxBOSqHu0uvBPDgr0vRUJ6/DhIkx6ZXEW+KMDktEiJacRsOl11Pzy1sJpakK31a3k+J/Xk3x3xZg6Rh6a6AffDWPTzaoCpdFOX5+d1aN0SEJsUtWhx3dbME7ejLhjGwszjYyVz4JQCgtk/bDTjE0PrtddWmpqlIDDkIIEUmSdIseHR3Q3IzHlkFtrapWLnd6RV9Z7Q0U3L+se7vx/AWEcgZfo9Ot08lX1r2DK+gm0ZLAQUWzGZ85SqaTxyD39IPYeMuTOGcd3r0v7ePXqVxwKqld/eOHgu/qEvjrU8Xd2zdfUk1K4vDqSS6GDouzFXQd7+gphLLyAMj+z4OY/aqbReuPzzW0zofbrXpyV1VBWpphYQghYpikVKKH3Y7e6aW+PRGfV93xFaJPtDDFdy7G4vUA4NzvaDrmHGV0VDvQdK17OnlY1yhIzOXw0rlSnTzGhVMzqL98GbWX30IoRU3nsbraKbntNxTdcS1m9+Ceoh0MwYI7ywkE1Uf4eUc1MXO82+iwhNgpi8uBKRTEO2oSoRzVUQBdJ2ebqeV2A3tzB4PQ1gZjxkDh4LsvLISIEZJ0CyUUgpoanHoKjU2QIcXTRD9k//sBkjZ8CkAgp5DG835ndEg7ZcLU9b8mJmWNY27hTBIsUp18uHDNOoyNtzyJa3pPv/j0916mcuFppHz2jqGx7c7yfxXyVbVqq1RZ5OUXp9QZHZIQO2V2OzH5vXhHTSaY1zMzI+XTVSRWfw2Aa9oB+CrGGxKfpqlVdSNGqOJpQggxUCTpFkpbG+E2BzUd6apFmOQdoo8SNq7rLo6jm8zUX3o9WtLgmTah6zphTVV3NplMTM+dyMHF+8l08mEqnJ5N7S/+SN2lNxBOUuujbQ47pX/6JYV3LcXcObhGkL/cmMTyF9RwnMWsc8v8ahLihmYhOBHbzB4XZq8H38iJBAu2LwWe+8yd3V+3GDjK3dQE2dmqPZgUjRVCDCRJuoXS2Eh7O9jbrWRmGR2MGKpMvk6K7rgWU1glta0/OR/v2H2MDqvb1urk7zWtRu+qWG01W8lJkKkdw5rJRMf+R7PxlidxT9m/e3fG/16kcuFpJK/9wNDwtvIFTCxYXk5YUzeH5h/XwMTKTqPDEmIHZq8bi9uJr6KKQGHZdt+zOOxkvPEMAMGMHByHnGRIjA6HSrQnTICkJENCEEIMI5J0C+jsJFDTSI0rg4R4sA7O4tJiCMh/5C/EN24BwFtZRcsJlxgdUjeHv4OVtavY7K6jsbOFNr/D6JDEIBPKzKXm13+lft5iwolq+ratrYkRf7icgvtuxtxVo8Aotz1VzMZ6VWxqQoWH+T9tMDQeIXbG5OvE4mzHV1lFoKQSfjCDKOfF+zEHA9B1Y1aPi/7UOp9PFU8bPx5ycqJ+eiHEMCRJtwC7ndbNbtr9yVK1U/RZ6idvkvnWcwBo8YnUXXbjoJivt7U6+et17+AKerqqk88hW0a3xc6YTDgP+Ckbb34C98RZ3bsz33iWikVnkPTVJ4aE9fH6FB58VVV9jrNpLJtfjc34l5cQ2zH5fVgdrfjKx+EvGblDwo2mbV9AzYAbs+GwmlZeWQmlpb14ghBCRIAk3cOdpuH5po769kRS003SIkz0ibW9hYJ7buzebjz71wQLRhgaE9tMJ9+2OvkRpQeQmyhrKMTuhXIKqPnt32k4fwFavBpdjrPXU7bsUvIf/CMmnzdqsbi9ZhatKEfXVQLzi5PrGFXsi9r5hegNU8CHtb0Z34jR+MvG7LTnaOonb5JQ8x0AHTMPxT9idNTjbGhQVcrH7DxEIYQYEPJ2M8zp7Q6a17fismaQkmx0NGJI0jQK71qKtavNUseMg3EeeJzRUQHwfuNqNrvrtqtOHm+JMzosMVSYTDgOPZmNNz+GZ9y07t1Zrz1B5TVnkvjNZ1EJ4/ePlFJnV1NwZ4x1ce5RzVE5rxC9ZQoGsLY24S8Zhb983C6z2W1HuY0ooGa3q3aoVVUQLwVjhRBRJEn3MNe+oRl7Y4iMHElERN9k/vdxUroKTQUzc2m88OodpxQaZELWGJKtSRxUNEeqk4s+C+aVsGXhnTSefRVa1/rTuKYaym6cR96jf8UUGLhR57c/S+OZt9Wi06SEMDdfUo1FPrnFYBIKYrU34C+pVK2/LDsvDGO1N5L5plqCFMzOj/rNWbcbAgG1jjs9PaqnFkIISbqHs3Cnn8bVdQQT0+SOr+iT+C3fkvfE37q3G+ZdRzg1w7B4glqIpk5793Z2QiZHjzhIppOL/jObaT/ydDbd+CidoyYDYNJ1sl9+mIprzybh+y8jfsp2l4Vr7i7v3v7dmbWU5AUifh4h+iwUwmavJ1BUga9ywm7reOS8eB+mcAgA+08vRLdF72Z/MAhtbWpKeWFh1E4rhBDdJOkexprW2XHWuUgtTjU6FDEEmQJ+iu64BnMoCEDrUWfimTTbsHi2Vidf1fgR7X5n936zSd7mROQECsvYfO1dNJ3+C7SupCG+vprypReS+9Q/MAUjkxTrOlx//whanTYADpji5OSD7Ht8nhBREw5ha6kjmFeKr7IKrLZdP1bTyHluBQC6yYT9+HlRC1PX1TruESNg5E5quwkhRDTI1egw5fPqNKyuJy7JhtUmvwZi7+U9+XcSar8HwFc6mpZTfm5IHLqu833H5u7q5PHmODRdMyQWMUyYLbT9+Bw23fAw3soqAEy6Rs6/7qP8unOJr/6636d46YNMXv1IzdBITwlxw8XVkiyIwUMLY2uuI5hbjHfUpD22/Ur74L/E11cD0DHnSALFFVEKVFUqz8pS08oHQUMNIcQwJdnWMFW3vgNfbQuJhcZNBRZDV/IX75P16mMAaLY46n52oyG9VoNaiA+bP2V1y1rCukZhUh5HlB4g7cBEVASKK6lefC/Np/wM3aKu5hNqvqNiyXnkPLsCQqE+Hbe53cYND/RU/1983hZyM/p2LCEiTtOwNdURyinEO3oSenzCHp9iVAE1h0MtMZ8wAZKSonZaIYTYgSTdw1BHB9R91kJqnA9T4p4/LIXYlqWjnaIVS7q3m0+/gkDJyKjHsXU6+RZ3PSZMTM4ax48K9pXq5CK6LFZaf3ohm65/CF/ZGABM4TC5z62gYsl5xHe1R+otXYdr7i6jw6OS+GNmt3H07PYBCV2Ivabr2FrqCWXm4h09GT1hz5msrbmOjFUvAhDILcL5o2OjECj4fKp42rhxkJMTlVMKIcQuSdI9zOg6bPwmBPV1JGTLWm6xl3SdwntuwOpsBcA9eT/aDz/NkFDqO5twBT0kWhI4uGgO46Q6uTCQf8RoNi15gJbj56GbVfXmhM0bqLj2bLL/dR+EezdS/eSbObzzhSqtnJsR4Jrztgxo3EL0mq5jbakjlJaBd8wUtMTe9RnNeeEeTOEwAPbjL47KHO9wWE0rr6xUa7mFEMJoknQPMy0t0PRVKzlWB+GUNKPDEUNMxpvPkbrmfwCEUjOon7fYsKo04zJGUZU5miNKDyBHqpOLwcBqw37SfKqX3I+vuBIAUzhE3lP/oPz6i4ir27Tbp29piuMPj5Z0b19/0WYyUsIDHrYQvWG1N6Alp+MdMxUtuZc37UMhcp6/CwDdbMZ+3MUDG2SXhgZVpXzMmF22DBdCiKiSt6JhJBSC77+HBEcDtngzWKSiiOi9uIZq8h/5c/d2w8WLCWdEb86ew9/Be42rCWkqCTGbTEzMGivTycWg46sYT/UND2M/9nz0rur5iRvXUXHtWWS99DBoOybSYQ0WrSjH61ej5Kcc1MKBUzuiHrsQO2O1N6IlJKkR7pTeN7lOf+9l4ppqAXDufwzBgtIBjFKx2yE5GaqqkHaoQohBQ5LuYaShAeybPeTpTWgyyi32RihI0R3XYg74AGg/5CTc0w6Iyqm3rU5e62lgXfs3UTmvEP2h2+JoOe1yqhffg7+wDABzMED+Y3+l7KZLsDXVbPf4+1/OZ803avSwJNfPb8+sNSRuIX7I2taEHhePd8xUwml7V6RyuwJqJ106ANFtz+OBQEAl3Om9vzcghBADTpLuYcLng+++g/SgHVvAg5aYYnRIYgjJfXYFiZvWA+AvLKPpzF9F5bw7q04+LiP6RduE6CvfqElsuvERWo8+C71rKUbSN59Tueh0Mv/7OGga39YkcPvTRQCYTDo3z68mOVHa3gnjWR12dLMF7+jJhDOy9+q5cQ2bSX/3JQD8BSPomHPUAEWpBINqlHvMGDW1XAghBhOZXzxMbN4M7a0a4/016L0sfiIEQNL61WT/+34AdIuF+stu7FWLmP5y+Dt4r2k17qAHEyYmZY1jbEalFEsTQ44el0Dzmb/CNf0gilYsJa65FnPAT8FDt5L88Vv8n+tBgiF1D/y8o5qYMdZtdMhCYHG2gq7jHTOVUFbeXj8/5/m7Mek6APbj56neXQNE19VsvrIyGDnSsFIjQgixSzLSPQw4nVBdDfm2NqwdbYT2Yj2WGN7MHhdFyxd3Xzi1nHwZvorxA37eOk8jK+vewb21OnnxHMZljpSEWwxp3rH7sPGmx2g7/NTufalff8JzdTOZxwpGFnXyi5PrDY1RCACLy4EpFMQ7ahKhnIK9P0AoSPYL90DXzdrW4y6MfJDbaGqCrCzVHiwKxdGFEGKvSdId43QdNm0CrxfSA80qebLajA5LDAW6TsH9y7C1NgHgGTeN1mPOicqpM+LSsZosFCblqerkCVKdXMQGPSGRpnN/y+YFd+BJV1PKU3Gzgvm8m3Q4ya4Go0MUw5zZ7cTk9+IdNZlgXnGfjpHxvxeJs6vfZccBPyWYWxThKHs4napCeVWVKqAmhBCDkSTdMa65GbZsgbw0H3Et9dImTPRa2nsvk/7BfwEIJ6VSf+n1YB646YHekK/762RbIoeW/IgfFewr1clFTGobPZM5CZ+ygnnd+/K/e4/KhaeR/r8X1R1TIaLM7HFh7nTjGzmxX5XGo1VAzeeDjg41wp2bO2CnEUKIfpOkO4aFQrBxo1pGleKzY+50oSX1sremGNZszXUU3P/77u2GCxYSyu7DFMNe2Fqd/KUtb1Dnaezen2pLlunkImb95cli1jblMZ8VzM9/nkCmWjNr8XooumspJX++EqvDbnSYYhgxe91Y3E58lRMIdFXc74u42o3dN2z9xZW4Zh4WwSh7hMNqWnllpVrLLYQQg5kk3TGssVH9ycnWsTXXodvipLqI2LNwiKLli7H4PAA4fvRjXLOPGJBT/bA6ea1bptaK2PfBulQeejUfgHibxk9+NYpNy57A8aNjux+T+tkqKhecStp7r8iotxhwJl8nFmc7vsoqAiWV/bpWyH1uRffXLSfMU3O/B0BDg6pSPnbsgJ1CCCEiRt6mYpjfrz43431OrE474dQMo0MSQ0D2i/eT9M3nAARyi2k69zcDch6Hv4PXalexxV2PCROTs8czM2/qgJxLiMHC1Wnm6rt6huV+dWodI4t9aMmpNMxfQs2v/kQoXbVmsng6KL7jGopv/y0WZ5uBUYtYZvL7sDpa8ZWPw1/Sv9LfpmCA7BfvA0Cz2mj9yQURjLSH3a7Wb1dVQXz8gJxCCCEiSpLuYcDa3oIpGESPG/g2T2JoS/juS3KfuwsA3WSm/tLrI97Tfet08q3VyZOsXdXJM6Q6uYh9tzxSSkOryhJmjndx9hHN233fPe1ANi57AuecI7v3pX3yJpULTyX1o5VRj1fENlPAh7W9Gd+I0fjLxvR7yDjjreextanfacfBJxDKzo9QpD08HjWoMH48pEszFiHEECFJd4wzhYLYmmvRkiKbOInYY/J1UnzHNZi0MAD24y7CO2ZKxM/T6m9ndctaNF2jMCmPw0ukOrkYHt5Yk85z/8sBIDkhzE3zqnea44RTM6j/2U3UXvF7Ql0zlKwuByV/W0DRPxZhcTmiHbqIQaZgAGtrE/6SUfjLx0VkjnbOM3d2f20/cX6/j/dDwaAa5R47FooGriC6EEJEnCTdMS7O1YrF3SFVy8UeFTx0K3HNtQB4R07EfvxFA3KenIQsRqWXMzl7vFQnF8NGW4eV6+7pmVa+4OwainMDu32Oa99D2bjsSTpmHNy9L/2D/1K58DRS1vxvQOMVMS4UxGpvwF9Sia9ivKq42k/xm78h7ZM3AfCNGINrm9/bSNB1tY67rAxG9m8WvBBCRJ0k3TEuvq1B3b0ewFZPYuhL/fh1Mv73LwDCCUnUXXYjWKwRObau62zs2LJdS7BpORNlOrkYNnQdrr9/BK0dNgAOmurgxANae/XccHoWdVf8gbqf3Ug4Wd08tTpbKf3LlRQuX4LZ4xrQ2EUMCoWw2esJFFXgq5wA1si81+dsW0DtxEsinhU3NUFWlmoPFqGQhRAiaiTpjmEmt4sEZ1P39EQhdsba1kzhPTd1bzedcxXB/JKIHDuoBfmg+VM+afmCD5s/RZMqzGIY+vd7Wfz340wAMlJCLL1o897lIyYTHXOOYuMtT+KaOrd7d8Y7/6Zy4Wkkf/HeAEQtYlI4hK2ljmBeKb7KKrDaInJYk99HztYCarY4Wo89LyLH3crpVOMHVVWqgJoQQgw1knTHMEu7HUugEz0hyehQxGClaRStWILF0wFAx76H4pz7k4gcut3v5LXaVdR0VScvSMpDxrXFcNPYZuPGB0u7t6+7YDO5GaE+HSuUkUPtlX+m/pIlhLvqdNjamxnxxysouOcmzF53xOIWMUgLY2uuI5hbjHfUJPS4yJX9znzjGaxdFfbbDzuFcEZOxI7t80FHhxrhzs2N2GGFECKqJOmOVeEwlsZaQvFyS1jsWtYrj5K87iMAgpl5NFy4qN9TAnVd53vnZl6vexd3sLOrOvl+Mp1cDDu6DtfeXYarU82F/fGcVo6c2c8iaCYTzrnHsnHZE7gnze7enfnWc1QuPJ2kdR/3N2wRizQNW1MdoZxCvKMnocdHtptJzrPLu7+OZAG1cBgaG6GyUq3lFkKIoUqS7ljV1obF2U4wWaaWi52L3/wNuU/9AwDdZKJ+/lK0lP71XwlqIT5o/pTV9h9WJ8+MUNRCDB1PvJ7Du2vVayovM8A159VE7NihrHxqfvM3Gi5YRLhrNpOttZGyWy4j/4HfY/J5I3YuMcTpOraWekKZuXhHT4747LeE79eR+ukqALyVVbin/ihix25oUFXKx46NSHF1IYQwjLyFxarGRtB19AgVwxKxxRTwUXzHNZhDQQDajj6bzgn7RuTYDr8TEyapTi6Gtc1N8fzxsZ7aCDdevJn05HBkT2Iy4TjkRDbd/Die8TO6d2etfIrKq08nccOnkT2fGHp0HWtLHaG0DLxjpqAlRn722/YF1OZHrIBaayskJal+3PGRmwkvhBCGkKQ7Fnm90NhIOLV/o5YiduU9fjvxdRsB8JWNoeXky/p8LF3X0bsKpNnMVubkT5fp5GJYC2uwaHk53oDqGnHaIS38aHLHgJ0vmFvElgX/pPHc36DFqWnDcc11lN10CXmP/BlTwLfHY4jYZLU3oCWn4x0zFS05NeLHN/k6yf73AwBo8Qm0HXNORI7r8ai13FVVkCET9oQQMUCS7lhkt4PbjZ6cYnQkYhBK/uwdsl57EgDNFk/dZTeh2/o2Gr21Ovk3zk3d+zLi02Q6uRjW7nspn0+/Ve+/pXl+rjqjduBPajbTfvhpbLz5MTrHTAHApOtkv/IoFVefScJ3awc+BjGoWO2NaAlJaoS7n0uHdiXrtSexup0AtB1xOuG0/r/3h0LqMmbMGDW1XAghYoEk3bFG16GuDhISIt4jUwx9FmcbRXdd373dfMYvCBRX9OlY21Yn/7Lta3xhfwQjFWJo2rAlkb89ozIFk0nn5ks2kZygRe38wfxSNl+9gqYzf4nWdTMtvnEL5ddfRO4Tf8MUDEQtFmEca1sTelw83jFTI5II70qkC6jpulrHPWIEjBollzFCiNghSXescTjUQqh0mVoufkDXKbz7Bqwdqq2Le8r+tB92Sh8Oo/Ods3q76uQHFs0hwSKL7sTwFgiZWLC8nGBIfbReeEwT08d6oh+I2ULb0Wez6cZH8VZOAMCka+T8+wHKrz2bhE3rox+TiBqrw45utuAdPZlwRvaAnSfxm89JWfsBAJ2jJ+OZOKvfx2xqgsxMtY7bKiVphBAxRJLuWNPcDMGgVB0RO8h4/RlSP1MVZkOpmdTPW7zXwwhBLcgHTWtYY/8STdcoSsqX6uRCdPnnc4Vs2KIqQ48u8fJ/J9UbGk+gqJzqxffQfOrlaFYbAAl1Gylfcj45zyyHrkKKInZYnK2g63hHTyGUlTeg59p2lLvlpEv7PSztdKpDVFVBsnQ7FULEGEm6Y0kgALW1kBr5YiliaIurryb/sb90bzdcch3h9L0bAdF0jddr36XG04AJE1Oyq9i/YIZUJxcC+Py7ZO5+sQAAq0Vn2fxNxNl0o8MCi5XWn5xP9fUP4SsbC4BJC5P7/F1ULDmP+C3fGh2hiBCLy4EpFMQ7ahKhnIIBPZe50032yw8DEE5Mpu2os/p1PJ8POjpg3DjIzY1QkEIIMYhI0h1L7Hb1qZWWZnQkYjAJBSn+59WYA2rNdduhp/Spj6rZZKYibQRJ1kQOKd6PsRmVUp1cCKDTZ2bB8nI0Xb0efnZCPVXlg6tPtr90FJuWPEDLCZegW1RV9YTN31Cx+ByyX7gHwiGjQxT9YHY7Mfm9eEdNJphXPODny3r1MSweFwBtR56BltL3645wWE0rr6iA8vIIBimEEIOIJN2xYmv1EZsNzPLPKnrkPn0HCZs3AOAvqqD5jF/0+rlBLYgr2LMmdUx6BUeUHEC2TCcXotufnyxmc6Nq1TV5pJuLj200OqSds1qxn3gJ1UsewFc6CgBTOETe03dQvvRC4rraCIqhxexxYe504xs5kWBBaVTOuV0BtZMu7dexGhuhoADGjpXLFyFE7JK3t1jhcqn13NLQUmwj6atPyH7pIQB0i5W6n92IHp/Qq+e2+528VrOKdxo+IqipUTCTyUScxTagMQsxlLy/LpVHX1NrZxPiNJbNr8ZqMTqq3fOVj6N66YPYf3oBukldBiRu+oqKa88m6z8PghY2OkTRG+EQ1rYmzJ0ufJUTCBSWReW0SV99QvL61QB4xk+nc/z0Ph0nGFTNVpKS1DruhN59NAkhxJAkSXesaGkBrxcSE42ORAwSZk8HRcuvw6SrdaXNp/wMf9eazt3prk5e+y7uUCdhXcMbGlxTZYUYDDo8Fq5e0TMf9len1lJRODRa5+m2OFpO+TnV192Lv0j9DOZggPzHb6fshnnENWw2OkSxK1oYa1sztpYGwikZdFbNIFBSGbX+Wv1tE6ZpaoygqQkKC2HaNBkvEELEPkm6Y0EopAqopaQYHYkYLHSdwnuXYWtrAsBTtS9tR5+9x6dtV52crdXJ55IWJ8X5hPihZQ+X0timCgnOqurgrMNbjA5pr/lGTmTTDY/Qesw56F1JW9J3X1BxzZlkvvqYypDE4KBpWB12bM11hJNS6JywL54JMwnlFEYt4Ta7O8h69TEAwsmptB15xl493+GAmhpVnXzffWH6dMjKGqBghRBiEJEuiLGgrU19khUMbLVSMXRkr3qF9I9WAhBOTqN+/pI9LpZr9zt5v3E17lAnJkxMzh7PmPQKKZYmxE6s/CSdF95RHQBSEsPcNK96yK5H1ePiaT7jF7imH0jRiqXENdVgDvgpePhPpH7yJg3zFhPMKzE6zOFL07C42jF3ugllZBOoqCKYUwDW6C/1yXrlESxeVeej9eiz0ZJ6d7O/s1NNyEtNhSlToLQU4qTxhRBiGBmilwhiOw0N6i63Ve6hCLA11VJ2/zbtwS5YRCgrf4/P+7JtA+5Qp1QnF2IPWp1Wltzbs3524dk1FOUM/Z7X3jFT2Xjjo7QdcXr3vuSv11C56AwyXn9aFewU0aPrWDrasTXVoFvj8I6fTuekOapYmgEJN7pO7jN3dm/2Zmr51nXbHR0wejTMmQMjR0rCLYQYfiRLG+o8HrUwKj3d6EjEYBAOUXznYiw+tQbbMfcnuGYd1qunzsidzJdtG5icPV56bwuxC7oOS+4bQZtLJT2HTHNw/NxWo8OKGD0hkaZzrsI14yAKV1xPnL0es99L4f23kPrxGzRcvHjAe0APe7qOxe3E7HESTk7HO2Yqwbxi9Lh4Q8NK/vJDkr79AgD3pNl4x0zZ5WM1DVpbwe+HoiKorITs7CgGK4QQg4yMdA91ra0q8U5ONjoSMQjkvHAvSd+tBSCQV0zTOVft8rHtfidftX/bvZ1oTWDfvCmScAuxG/96N4vXV6uWeZmpQZZeuDlay2mjqnP8DDbd/Bjth5zYvS9l3UdULjqN9LdfkFHvAWL2dBDXuAV0He+oyXgm70egpNLwhBsgp5ej3FvXbScmwowZqlCaJNxCiOFORrqHMk1TBdQSE6NWREUMXonffkHOC/cAoJst1F12A1rijjdjdF3n+47NfGb/Cg2NNFsKJSmFBkQsxNDS0GrjpgdHdG8vuWAL2ekhQ2MaSFpiMo0XLMI14xAK774BW1sTFq+HortvIO3jN2i46BpCmblGhxkTzJ1uLB1taInJeCsnEMwv2en7t1EsHe1kvfYEAKHUDNoOP3WHx3i9at12Sopat11SAvHG3ysQQohBQUa6h7L2djXSLVPLhz2z10PRnddi6uqvW3/ieXhHTdrhcYFwkPd/UJ08L1GGIITYE02Dq+8qx+1VTbh/sn8rh+/rMDqsqPBMms3GZU/gOOAn3ftSPn+XygWnkvbuSzLq3Q9mrwdbYw2mgA9f2Vg8k/fDXz52UCXcAFkvPYTZ7wOg9cfnoickdX8vGIT6enA6YdSonnXbknALIUQPGekeypqbIRyWiiSC/IduJa65DoDO0ZOpP+4cfnjJ1uZ38H7jGjxd1cmnZI9ntFQnF6JXHns9lw/WpQGQnxng6nNqjA4pqrSkFBrmXYdrxiEU3HsTNocdS6eL4jsXq1HvCxYSTpcbeL1l8nmxBlsxB+Pwl4wkUFiGlpJmdFg7t4sCatuu2y4s7Fm3LR8pQgixI0m6hyq/X91aThukH9IialI/XEnGqhcBCCckU3fpUrBYIdzzmI0dW1jToka3k6yJzMmfRnZCpnFBCzGEVDfE86fHe1pm3TSvmrTk8G6fE6vc+8xl47InKHjoVtLfexmA1NVvkbjhUxrPX4Br1uFGhziomQI+LO12dKuFYGE+ntxxaGmD+7045bN3SNy0HgDXPnPxVVbhdKrJdjk5MGmS6lhqsRgdqRBCDF6Dcnr5P/7xD8rLy0lISGDWrFl89NFHu3zsXXfdxdy5c8nMzCQzM5PDDjtst4+PGXa76sGRmmp0JMJA1tZGCu+9qXu76bzf7LSfboIlvns6+RElcyXhFqKXQmFYuKIcX0B9XJ5xaDP7TXIZHZahtJR06i+7gdpf/JFQqnovsbqdlPx9IcV/X4jFNTym3e8NU8CPtaUOS0c7wYIReCbOIVBYTjh18C8Py3l2effX9cfOZ8sWCIXUuu3Zs6G4WBJuIYTYk0GXdD/xxBNceeWVXHfddaxZs4YpU6Zw5JFH0tzcvNPHv/XWW5xxxhm8+eabvP/++5SWlnLEEUdQV1cX9dijRtfVKHdcHJgH3T+hiBZNo2j5EiydKgHomHU4zv1/3P3tsNYzEleUnM/BRXPYv2AGcVKdXIheu+c/BXz+XQoAI/J9/Pr0GP5s2UuuGQez8ZYn6dj30O59aR++RuWCU0n55C1DYxs0QkFsLfVYHHaCucV4Js3GO3Yq4fTMITEP2+Kwk7nyKQACqdls3OckRo5U67ZHjZJ120II0VuDLmP785//zLx587jggguoqqrizjvvJCkpiXvvvXenj3/kkUf42c9+xtSpUxk3bhx33303mqbx+uuvRz32qOnoUCVCMzKMjkQYKOvlh0le/wkAwax8Gi5YCCYTuq5T7ajhpS1v0hnydj8+NzFb1m8LsRe+3pzIP55Vlf3NJp1b5leTlKAZHdagEk7LpO6K31P785sJpahRW2tHG6W3XUXRnddi9nQYHaIxQiGs9kasbU0EM/PonDQb79h9CGfkDIlke6usFx/AHAwA0PqT89l3bgKTJskkOyGE2FuDak13IBBg9erVLFy4sHuf2WzmsMMO4/333+/VMTo7OwkGg2RlZe30+36/H7/f373d0aEuCDRNQ9OGyMVUc7Na0x0fv9uqsfo2f0RsSaj+mryn/gmAbjJRd+lSwsmpBMMBPm75gjpPIwDfd2xmYtZYg6MVon/0bf6LlkDQxILl5YTC6t70hT9uZMpot7yf7kLH7MPxjNuHovuWkbrmfwCkv/sySV99QsOFV+Oeur/RIUZHOITV2YopGCKUlYu/sIJQVm7PrDRdXWfouoau6+j64L3ucDp0xjzZM7U8Z9HFWLI0dF0K1ovtaZr6fR4y19FC7MFA/C4PqqTbbrcTDofJz8/fbn9+fj5ff/11r47xu9/9jqKiIg477LCdfn/ZsmUsXbp0h/0tLS0EAoE+Rh5FoRBUV0NCAvh8u32oEwglgUfWWsUUs99HxR3XYAqr/sCNx55Jy8QJOH3NfNrwJZ1BLyZMjMsdRXlGKR7T7n9PhBjsdHT8liAAJqIzSviPp8r4pka1RRo1wsP5p2zEY5FMY7eyU+j49Y1kv/MqIx64DWunG1t7CyP+9EtaDvoxNWdfTjgpxegoB4auYel0YQoG6cxMI5RVQCg1A8wmCNh3fLiuEQw6AR2TaXBNOgwE1IS6wvXvkNrwLQD+/fenPTtD3fQX4gc0TcPpdKLrOmZZ9ihigNPpjPgxB1XS3V+33HILjz/+OG+99RYJCQk7fczChQu58soru7c7OjooLS0lNzeXjKEwXbu5GTo7e1UqNAC0dEKyTAOLKQUP30Zi/WYAvOXjaD/hZzS01fO5fX13dfIphRMojsvDpA2daYxC7MrWEe7kcEJUku5Pv0nmoRdVQUKrReP3l1STaY7friOA2DXffsezcdx+FN1zIylfqFlquW/9h4y1n1B/8bV4Js4yOsTI0TQsHW1YvJ0EM3MIjKggnJ2P1Wrd7QWWGuE2kZCQO2iS7lBIXWKYTFBRAeMffLL7e7bLLycvL8/Q+MTgpWkaJpOJ3NxcSbpFTIgbgHbMgyrpzsnJwWKx0NTUtN3+pqYmCgoKdvvcW2+9lVtuuYWVK1cyefLkXT4uPj6e+J1U/jCbzUPjjaKxUX0iWvf8T2fa5o+IDSmfriLr9acB0OLiqb/sRjZ6G/nUvg6A4uR8ZuROIRgXxhQ2RW1UUIiBZtrmv4HU6TOzcHkFmq7Oc/mJDYwv88k76V4KZ+VTc9XtpL/9AvmP/AWLz4OttYmy319O+6En03T6FegJSUaH2Xe6jqWjHbPXTTgti86KKoI5hWC19fo3xWQyYTKZDU+6NQ3a2sDr7em3nRNuwvTv59UD8vIwn3iiFG4Vu2UymYbOtbQQezAQv8eD6pURFxfH9OnTtyuCtrUo2pw5c3b5vD/84Q/ccMMNvPLKK8yYMSNK0RrA7YamJimgNkxZnK0U3nV993bTmb8iUFROWUoJmfHpTM2uYr/8GcRZbIbGKcRQ9qfHi6lpVjOlpoxyc+GPG40OaegymXAedDwblz2OZ8LM7t2Zrz9N5aIzSFq/2tDw+kTXsbgc2Bq3oFsseMfug2fyHIIFI8A69N57OzqgpkatWJsxQ/3JzQXT/fdBUC3p4MILVbcUIYQQfTaoRroBrrzySs477zxmzJjBzJkz+etf/4rH4+GCCy4A4Nxzz6W4uJhly5YB8Pvf/57Fixfz6KOPUl5eTmOjukBKSUkhJSXG1o7Z7WpqeU6O0ZGIaNN1iu66HqurHYCWSTNpO/hEzIDVbOHQ4v0xd42WRLPYlBCx5N21qTz2uppCmxgXZtn8aqxSE6PfQjmFbPnt38l84xnyHrsNc8BHXEsdZTfPp+3IM2g+5efo8TtfEjaYmN1OLG4H4eR0vKOnEMwrHhJx74zPp5qgJCbC5MlQWrpN+y9NgxUreh48b55RYQohRMwYdEn3aaedRktLC4sXL6axsZGpU6fyyiuvdBdX27Jly3ZD/nfccQeBQICTTz55u+Ncd911LFmyJOrxD5hwGGprIWkIT8cTfZa58ilSPn8XgM6UNO4/8gAqnd9TlTkaoDvhFkL0jdNj4Zq7yru3f316HeUF/t0+R+wFs5n2w07BPWkORXctJWnDpwBkvfoYyZ+/S8O86/COmWJ0lDtl9riwuNrRElPwjZxEIK94yE6N/+G67YoKSEv7wYNeew02bVJfH3GEmm8uhBCiXwZd0g1w+eWXc/nll+/0e2+99dZ229XV1VGKymDt7WrRlRQyGXbi6jaS99ht3dvPHfcTfCmpWE2D8uUrxJB080OlNLWrKbRzJnRw+qEtRocUk4L5JWxetJzM/z5O3pP/wBz0E9+4hbIb59F29Fm0nHQpetyOdVeMYPa6sTha0RKT8ZWPJ1hQipaYbHRYfbJ13XZnp1q3PXKkmjS305bhy3vahHHppdEMUwghYpZctQ8VTU2qMaZt6K0ZE31nCgYo/ufVmINqxO3DmTNpGD+Zg/OnkZ2QaXR4QsSE/36cwYvvZgOQmhTixnnVUjNqIJnNtB91Jp4p+1G4YilJ363FpGtkv/QQKZ+9Q/38JfgqJxgWnsnXidXRih6fgK9sLMGCEWhDuA1IR4dKuLOzYcIElXTvsvlJfT3861/q68JCOPbYaIYqhBAxSy4rhgKfDxoadjIHTMS6rCf/RsIW1Se1OTeXr44/i8NL5krCLUSE2J1Wltxb1r199Tk1FGYHDY1puAgUlrP52rtpOu3/0LqKkMXXb6J86YXkPvVPCEX338Hk92FrqsXiceEvGYl78hz8IycM2YTb54MtW1Tf7cmTYfZsKCnZQ7fRe+5Ry9kALrpIbvQLIUSEyEj3UGC3g8ulKp2IYSNp3UfkvfIYACGLhXUX/oZZJfth2ul8QCHE3tJ1uO7eMhxu9VF42Ix2frJ/m9FhDS9mC23Hnod76o8oWrGExE3rMWlhcv51LymfrqJ+/hL8ZWMHNARTwIfFYQeLFX9RGcGCMsJpQ/fGZiikiqTpulqzXVnZy3v24TDcdZf62myWAmpCCBFBMtI92Om6KqAWH7+LxVciFllcDoqW9xQC3HLixRRMPEQSbiEi6PlV2by5RrVgzEoNsuSCLfI2a5BAyUiqF99H80mXolvUTZCEmm+puO5ccp6/W2WSEWYKBrC21GNxthHMH4Fn4mx8o6cM2YRb19U9+oYGtV579myYMmUvJsm98orqHwZw9NEwYsRAhiuEEMOKjHQPdk4ntLZKb+5hIhAOsrrlC3762MPY2psBcE+Yif/Yi4wOTYiYUmeP4+aHemYPLb1oM1lpkU/sxF6wWmk9/mLc+xxA0fLrSKj5FlM4TO4zd5Ky5m3qL1lCoGRk/88TCmJ12EHTCOUUEigqJ5Sxq6piQ4PLpdZtZ2VBVZVajm3d2yu8O+/s+Xr+/EiHKIQQw5qMdA92zc1qQVbC0OwFKnqvzefgtdpVZL/zEjlrVgEQSkmnYf5SpKqTEJGjaXDNijI8PrW49fgf2Tl0utPosEQXf9kYNl3/IPbjLkI3q3+jxE3rqbj2bLL/fT9o4b4dOBTC2tqIrbWJUEYOnRNn0Tl+OqHM3CGbcPt8anDa74eJE9XodmlpHxLumhp46SX1dWkpHHPMQIQrhBDDlox0D2bBoJpaLgXUYpqu63zXUc3n9q9Ib7Vz9Msvd3+v8cKr1QWhECJiHnktlw/Xq/fVguwAC8+pMTok8UNWGy0nX4Zr2gEUrVhKfN1GzKEgeU/8nZTVb9NwyXUECst7cSAgHMLqbMMU8BPKzsdfVE4oM28PFcUGt23XbZeXq7Xb6en9OODdd6u7UQAXXzyk/26EEGIwkuGzwcxuV70+Uodm5VSxZ4FwkPeaVvOpfR2EQ5z+wr+JCwQAcBx4HK59DzE6RCFiysb6eP78REn39k3zqklN0gyNSeyar3ICm65/CPuPz0U3qUuWpO/WUnH1WWS9/EhPorgzWhirw46tpZ5wUiqdE/bFM2EmoZzd9cwa3HRdrThraFAtwGbNUuu2+5Vwh0Iq6Qb193KRLGcSQohIk5HuwayhQX0ADtGLA7F73pCPN+rewxPqxIyJUz/+irwtmwAI5JfSePavjQ5RiJgSCsPC5RX4gyp5O+vwZuZMcBkdltgDPS6eltOvwD39IApXLCG+cQvmoJ/8R/9C6uq3qJ93HcH8nhspaBoWVztmr4dQehaBiiqCOX1Z5Dy4bF23nZkJ06f3cd32zvz736o/N8BPfgLFxRE4qBBCiG3JSPdg5XKp9dxSQC1mJVjiSYtLIdmaxHHedMa8+hwAutlC3WU3oCckGR2iEDHl7hcLWLsxGYDyAh9XnlZrdEhiL3hHT2bTjY/SeuQZ6F1rsJM2fErlotPJfO1JCIexdLRja6pBt8bhHTeNzklzCBb0ZZHz4LHtuu0JE/qxbntXpICaEEIMuKH7KRTr7HbweiFX1vPGkkA4iMlkwma2YjKZmJk3FUunh7F/PQ+TrqZJtpwwD9/IiUaHKkRM+ao6kX8+XwSA2aSzbH41ifG60WGJvaTHJ9B89q9xzTiYohVLiWupwxzwUfDgH0h772UazltA56TZBPOK0ePijQ63X0IhdSkQDkdo3fbObNoE//2v+rq8HI44IsInEEIIgYx0D1LhsCqgliQjnbFEVSf/H2ta1qLr6mI/3hJH6SN/Ic6upvZ1jplK608vMDhSIWKLP2BiwZ0VhMJqdHTeTxqZMspjdFiiH7zjprHx5sdoP/C47n1J362lfNmlpH7yBrotztD4+mPruu36etUCbGu/7Ygn3AB33aVOCHDJJdIpQwghBoi8uw5GbW3Q3i5Ty2OErut849jIG3Xv4gl5sfvaCWhBANLef5WMd1WblnBiMvWXXg9mWcMvRCT97ZkivqtLBGBcWSeXndBgdEiin8ydbqztLbSc8jM2Lb4Pf77quW7pdFF+4zxG/eIYbE1Db/mA2w1btqip49Onw777Ql7eAHU0CwTgnnvU11YrXCA3fIUQYqBI0j0YNTaqO89DeA2aUALhAO81fcJnrV+hoVOcXMDhJXOJt8RhtTdScP+y7sc2nreAYG6RofEKEWtWb0jmvpfzAbBZNW6Zv4k4q0wrH6rMXg+2xi2YAj58FVV4Ju9H20/P56snvsR+XE/V7fT3XqHqtIlk/fvBnpHcQcznUxPcvF61bnvOHBgxYoAvA154QdWOATjhBCgoGMCTCSHE8CZZ3WDT2amqlg/IPDIRTa2+dj5oWoMn5MWMiSk5VYxKK8dkMoEWpmj5YiydbgCcc46kY/+jjQ5ZiJji8ZlZtKICXVfDhP93Uj1jSn1GhyX6wOTzYnXY0ePi8Y0YQzC/FC0lrfv7Wkoam6+9m/ZDTqLsxouJa6nH6nZSseQ8Ml9/ms1XryCUM/iSylBITSUPh1WSXVkZxY//5ct7vpYCakIIMaBkpHuwaW0FjwdSUoyORPRDWNd4v2k1npCXZGsShxTvz+j0CpVwA9n/eYjkr9cAEMwuoPG8BQZHLETs+eNjJdQ0q2Ja+4x2c8ExTUaHJPaSye/D2lSLxePEX1KJZ/Ic/CMnbJdwb6tj/6P56okvaT3mnO59GateZMJpE8h89fFBM+qt66pJSUODWrc9axZMnRrFhPvbb+H119XXo0bBwQdH6cRCCDE8SdI9mGiaml+WkDBAC7hEtFhMZvbNnUJJciGHl8wlK6FnfX7CpvXkPnMHALrJRN2l16MlpxoYrRCxZ9UXaTz5hur+kBgX5ub51VjkE2/IMAX8WFvqsLjaCRaMwDNpDr7Rkwmn7rnWSTgtk+rrH+S7W58nmJUHgNXZRuXVZ1C54FSs7S1R+Al2ze1WLcDMZpg2Ta3bzs+P8sf+ihU9X8+fLwXUhBBigMm77GDicKiRbplaPiS1+tqp9/SMpOUn5bJfwXTiLLbufSafl6J/Xo0pHFbPOfZ8vOOmGRKvELHK4bZw7d1l3du/OaOWsny/oTGJ3jEFA9ha6rE47ARzi/FMmo137FTC6Vl7fSznQcex7sl1tB1+Wve+zNefpurUCWS88WyEI98zv79n3fb48TBuXIT7be9NIPfdp76Oi4Pzz49yAEIIMfxI0j2YNDerBV7xQ7u36HCztTr5m3Xv8UHTp7iDu25FlP/YX4hv3AKAt6KKlhMviWKkQgwPNz04guZ21TLqR5OcnHao3eiQxJ6EQljtjVjamwlm5dM5aTbecdMIZ+T0awg4nJHDpmWP8/0tTxJKzwbA1t7CyN+eRPk1Z2FxtkXwh9i5UEjVR7Xb1brt2bNh7FgDP+qfeUbd4Ac46STIyTEoECGEGD4k6R4s/H6oq4NUmWY8lPywOnlBUg5x5p33h01Z/RaZXaMrWlwC9ZfdAFbbTh8rhOibVz7M4D/vq1HRtKQQN1y8WVbrDGbhENa2JmxtjYQysumcMIvOqhmEsiLbJ8tx2Cmse3Id7Qcd370v+5VHmXDqBNJX/Tti59mWrqsOoHV1kJnZs27b8G6g2xZQu/RSIyMRQohhQ5LuwaK1VVVVSdt5cRgx+LT62vlv7SrqPE2YMbNPzkTm5G8/nXwri8NO4T03dm83nf1rAoVlOzxOCNF3LQ4r19/f87q6+twa8rOChsYkdkELY21vwdbSQDglg86qfems2ldVGB+g9cWh7Hw2/vFZNt3wMKGuteG21kZG/eonlC29ALPbGbFzbe23bTb39NuO+rrtnVm/Hv73P/X1+PEwd67BAQkhxPAgSfdgoOtQX68WdkkxkyFh63Tyzq3VyUv2Y3R6eXd18u1oGkUrlmJ1OQBwTTsQxzajLUKI/tN1uO6eMhxutUD2iH3bOXa/gZ86LPaSpmFx2LE11xFOTKZzwr54JswkmFsEFsvAn99kou3os/jqyXU49z+me3fOi/cz4bSJpH7w334dfuu67c5OqKpS/bbLysA2WCY1bTvKfcklg+AugBBCDA+S4Q0GLhe0tAyCOWeitzwhLxo6JckFqjp5/K7/7TJfe5KUte8DEErPpuHia+VCR4gIe/btbN76TL0Os9ODLD5/i7zMBhNNw+Jsw9ZUgx6XQOf4GXgmzSaYV2xAJTEI5hbx3V//TfXiewknqxlmcU21jLn8SEbcNB+zx7VXx/vhuu05c1ShtKSkAfoB+sLrhQceUF8nJMC55xodkRBCDBuSdA8GLS3g80FiotGRiN3Qt+nvOjl7PLPy9tnldPKt4mu+I++J27u36+cv7VXLGyFE79W1xLHskdLu7esv3ExWWsjQmEQXXcficmBrrkW3WPGOn45n8hyCBaXG17QwmWj96QWse2ItHbMO796d+9wKqs6YTMonb+7xELoO7e1qslpGBsycCVOmDNJ76E8+qbqkAJx6qmoQLoQQIiok6TZaKKTmoqWkGB2J2IWt1cnfbvgATdegqw93WWrxzqeTdzEF/BTdcQ3mYACAtiPPwDNpdtTiFmI40DRYtKKcTp+amnzCAXYOnha5tbmij3Qds9uJrWkLOuAdPQXP5DkECsvQbTsvNmmUYMEIvv37q2xecAfhxGQA4uurGXvpIZT+8QrM3p13pNi6bttkUv22Z86EgoFbkt5/UkBNCCEMM1g/GoaPtjZ151kKqA1KgXCAdxtVdfJmbys17vpePzf3qX+QUPMdAL6SkTSfevkARirE8PTQq3l8/LXq+lCU42fh2TVGhzTsmT0u4hq3YAqH8Y6ajGfyfgRKKtHjE4wObddMJuwnX8pXj32Ba9qB3bvznvgb48+cSvJn73bv23bd9rhxg3Dd9s588QW8r5Y5MWmS6lsmhBAiaiTpNlpDg7pNbsCaNrF7W6uT13eq6uTTciYyIqW4V89NXvsB2a88CoBmi6P+Zzehx0n/dSEi6fu6BP7yVM9r8qZ51aQkaobGNJyZO93YGrdgCvrxVk7AM2U/AqWj0BOGztKpQEkl39z5Bluuug0tXsWdUPMdY+fNpejPV9GyxYvdDiUlKm+tqhpk67Z3ZdtR7vnzpa6IEEJEmWR6RvJ4VOWV9HSjIxHb0HWdb5yb+KJ1PTo6KdYk5hRMJzO+d/9OFpeDwhVLurebT/s//KWjBjBiIYafYAgWLi8nEFT3js85solZVW6jwxqWzF4PFmcbenwCvrKxBPNL0ZJTjQ6r78xmWk6/go45R1G+9AJSvngPk65T+OifSH/3P3j/eT+Z+8wavNPIf8jjgYcfVl8nJcHZZxsdkRBCDDtD5SMjNtntan5acrLRkYhtfNG6ns9bv0JHpyS5kMNK5vY64UbXKbj3JmwOOwDuSbNpP/y0gQ1YiGFoxb8K+XKTeu+sKPTxq1PrjA5p2DH5vNiaajF3uvGXjMQ9eQ7+yqqhnXBvw182htV/+R9rz/0jYZuaqZS0+Wuyf7If5msWqXnmQ8Hjj0NHh/r6jDPkRr8QQhhAkm6jaBrU1amK5TLNa1CpSBtBnNnGtJyJzMmfttvq5D+U8fYLpHVVvA2lpNNwyZJBXFVHiKFp3aYklv+rEACLWWfZ/E0kxOl7fJ6IDFPAh7W5FovHib+oDM/kOfhGT0JLiZ1kLhDoWrftt2D53VUE3l8D++6rvqlpsGwZzJgBa9YYHeqe3Xlnz9fz5xsZiRBCDFuSDRilvR1aW+WO8yCg6zqtvvbu7bS4FH5cdiij0st3W538h+IaNpP/0K3d2w0XX0soIyfi8QoxnPkDJhYsLycUVq/NS37awOSRnUaHNSyYAn6sLfVYOtoJ5o/AM2kOvtFTCKdlGh1axITD0NQEzc3br9tOnF4F770HN93UUzHtyy9h1ixYsgSCQaND37k1a+CTT9TX06apGwVCCCGiTpJuozQ1qU/3uMHVOmW42Vqd/I26d2nxtnbvt5n3stxBKETRnddiDvgAaD/4BNzTD4p0uEIMe7c9XcT3darA1fiyTuYf12h0SLEvFMRqb8DibCWYU4hn0my8Y6cSTs+KmZlaW/tt19aqZiIzZ8I++0DmtvcTrFZYtEglsVOnqn2hECxdqpLvtWuNCn/XpICaEEIMCpJ0G8HnU1XLpU2YobatTm7CjCfk7fOxcp9bQeLGrwDwF4yg6cwrIxipEALg4/UpPPBKPgBxNo1bLt1EnFWmlQ+YUAhrayPWtiZCGbl0TpyFd9w0whk5MZW8eTzb99ueNQsKC3ezMmjyZPjwQ1i8GCyqPzyffqqy9GXL1Nz0//s/GDkSRo2Cv/991yf3++Hyy2H0aNXKa2uRM58Pjj8exoyBKVPg8MPhu+969wM1N8NRR6nz33WX2peSotZzb8vthiOPhJwcyMjo/feamtRdiVCod/EIIYSQpNsQra2qqElqbBSbGWp0XWeDYyNv1L1HZ8hLijWJQ0v2pzy1pE/HS9zwKdkv3qeObbFQf9mNQ6pFjhBDgcdr4eoVFei6SvauOKme0SU+o8OKTeEQ1rYmbK2NhNOy6Jwwi84J+xLKyoupGhVb12273arf9uzZUF7ey37bcXFqhPvDD6GiQu0Lh9VI+Pjx8PHH8M038NFH8Mc/wrp1Oz2MaeFCle1/840aKb+1Z4kSl1wCGzbA55/DccfBxRf37gdbsED9ML/5jRrCp6uA2g+vOWw2+N3vYOXKHY+xu+/l58N++8GDD/YuHiGEEJJ0R52uqwJqcXExdfEyVGydTr61OnlpciGHl+5FdfIfMHtcFN9xLaauC5uWEy/FV1kV4aiFELc9XEGdXVWQnj7WxXlHNxkdUuzRwljbW7C1NBBOSqNzwr54JswklFMQU59Xu1q33adGItOnwwEHwNFH9/wdbdwIq1fDX/+q6racdho89tgOTzV1dsK996p14ltnDhQUqP9PSIBjjunZP3s2VFf3LqYnn1RTybctoDZt2o6Pi4+HQw7ZcSR7T9+jK4nfduq6EEKI3YqdT9GhwumElpZdf5CJAVXnaaK+swmzycy0nEnMzp+Gzdz76uQ/VPDA77G1qjWlnrHTaD323AhGK4QAePuzdJ5/UyUjifFhbr6kGot8ekWOpmFx2LE11xFOSKSzagaeSbMJ5hb1TJ+OAboODoca3U5N7Vm3nZXVzwOvWgV/+AO8+y6MHav2hUJw1VVw4IGqN/aWLTs8zVJdrU5+882qwNncufD66zs/x223qdHuPWltVUXdtmxRI+SgzhHp+jHTp8MXX/S0IhNCCLFbe1ktSvSb3a7mtCUkGB3JsFSeWkJHwMWI1OI+j25vlfbeK6S//woA4aQU6i9dCubYuUAVYjBwuCwsvruse/t3Z9ZSmhcwNKaYoetYOtoxd7rUNPKK8QRzCsHa9xuRg5XHo/LR1FRVA62kJIJ5aG2tmnI9caJa211aqk4GKhH/6CN1Uk3bfsZAKIRp82Y1zH7LLeq5hx+upqLn5/c87uab1XruXSXkO7PtKHRlZSR+yu1ZrarKXH291KcRQohekLGCaAoGe26xi6jwhwOsbllLIKzauZhMJqbkVPU74ba11FNw/7Lu7cbzFxDKKex3vEKI7d3wwAjsTpUdzZ3s5JSD7UaHNPTpOhaXA1vjFnSzGe+4aXgmzyFYMCLmEu5t122PGQNz5qgcNKIDv0lJqvAZQGKiqsR23XWqkBldn/0ffwyHHgqbNnU/LVxcjG42w1lnqR377KPWh29bBf3WW+HZZ+Hll9V59iQ7WyXEW6ezp6erIf4RIyL4A3fx+dTPK4QQYo8k6Y6m1lY1vVzuCkdFq6+d12pX8X3HZtbYI9jKRQtTtPw6LF4PAM79j6ZjzlGRO74QAoCX3s/k5Q/V3N+05CDXX1wdS0WzDWF2O7E1bUEHvKOn4JmyP4GicvS4eKNDi6hwWK3Zbm6GoiK1JHrChD6u296TyZNVwbOtTjlFTTlfs2b74mdvvaUeu3w56Dp6drZaN/3qq+r7mzapP+PHq+0//1klz6+9tuOStIULd10VfeLEnpsARx6puqUceGBkf+amJrXevLQ0sscVQogYJUl3NDU2qg+pGFojNxip6uTf91QntyUxNmNkxI6f/e8HSNrwKQCBnEIaz/1dxI4thFCa221c/0DP6NxvL/ievMygoTENZWaPC1vDZkzhML6Rk/BMnkOgdCR6fGwtddp23XZKCuy7r1p+3O9127tz8sk9iTPAOeeocuhTp8Ibb8DPfgZlXUsk3G649FJMRx+Nua4O/Y47VHXzSZNUi7Dly6G4WP0Av/61+mEOPlgda9asnnN8/nlP0bUf/gU4nT3bq1fDww/3lGRfvHj7AmuTJ6vh/44ONef+nHN6971XXoETToipAntCCDGQTLquD+smpx0dHaSnp9Pe3k7GQBY3c7vV2q7ExAG61b6jmlq1DKwgvxcPjhH+cICPmz+nvlNVNi5NLmRG3mR+8/exnH90E1NHe9A0uPnhUlZ9ng7onHtUM2cd3rLT4930YClvfppOvT2eZ278in3Cn1B+/YW0hdM5lNcJ5JeixSfiC5ipbY5n1T8+JyMlvNsYW51WFi4vZ0tzPHFWncXnb2HGOPcOj/P4zPzy9krWbUomrMGHyz/f7vtvfZrOHx8rIazBmFIvN19STUqiRovTwmV/Hsljizdgs8iwoOjxy9sr+/Q6uPj3o7E7rZhMkJwQZtE5NVSVq772b3+Wxu1PF6PpEA6buPDHjRw/t22PsezudaDrcOmto1j1hVoGkp0eJBQGTTP1+nVgd1r5+Z9H8cjir7EO4/ucZq8bi7MNLSGJQEEZwfwStKQUo8MaEJ2dqmxKaqqaQh7Rddu743arFlrvv7/rz/eODlVYbWvfbEBLTYW//hXzBRfsXd/zcFgN3X/44Y5J7zvvqIJsAPvvr7YHwty5sGJFz6i8GNY0TaO5uZm8vDzMciNGxACHw0FmZiZOp5O0CM1QlldGtNjtqpJLlBLu4cjh7+C12lWqOjlmpuVMZHb+NNZvSsfpsTB1tJoO/uJ7WXxfl8BLf/ySJ5Z+zb3/yefb2p2P9hw5s52Hr91AUY4fk99H0R3XYgqHyaaNlcf9nWdurea5m9ZzykF25k527jHhBvjzk8VMHuXhlVvXcdMl1fzmnxUEQzs+zmbRuejHTdyz4Jsdvufxmbn27jL+9svveOXWdeRlBLnjebWmPCc9xOQxHfzrney9/0sUMeuL75P6/Dr48+Ubef7m9Tx303rOP7qZq1eUQ1dy/Ls7K7j5EvU6uOPX37HkvjI83j1/tOzudfD0Wzk9CXdakOvOr+Yfi77c4Rh7eh1MHe3mhWH6OjD5OrE11mD2efGNGINn8n74K8bFZMIdDKpOnB0dA7hue3dSUuAvf9luvfYO0tJUkvrKK2okGzC7XJgvugh++lM1Bby3LBa1Rnxnyc22BdQuvXSvfoxea2qCyy6ThFsIIfaCJN3REA5DTY0k3AMs0ZqAruuk2JI4tGR/RqWXYzKZePKNXI6d0zPy9vIHWZxykB2LGTJSwhw9q52X3t/53MMZ49wUZKkprdkvPUR8o2r74q2cQMvx87of9+z/sjnxwN4VeHrlw0xOO0SNKE6q7CQvM8jHX+9YXC/OpjN7gou0pB0T+VWfpzG+rJPKIj8Apx/Wst3PcMR+LTz5Rm6v4hHDQ39eB2nJPb+Drk4LbDMoZzJ17QPcXgsZKSFstj1PoNrV66CmOY5bHinpftyN86o5dIaTlOQd70zt6XVwzOy2Yfc6MPl92JpqsXhc+EsqcU+eg3/kBLTk2CvgqWlqzXZTExQWDvC67T059FC1lnpPjjwSvvwS/dxt2kv++98q8EcfVXey+qq1FZ56Sn2dlaWmvQ+E/Hw488yBObYQQsQoaRkWDe3t6k/+MJrnHSVBLYTNrH6N4y1xHFA4kyRb4na9tz/+OpXzjmrq3m5ojaMop6flUHFugM+/2/1VmtnvI231mwBo8YnUXXaDqhALfPpNMk6PlYP2ce72GHS1PwqFTeRm9CQQRTl+Glr3bkimoTWOwm1/hhw/LQ4bobAaBBlX4eabmiTcXjMpidpeHVvEpv6+DhbcWc5H61XidudV30JXwv2nn2/kittGkhgfpsNj5bZffE+cdfeJw65eB/X2OO54vhCvXyXxJx/UwoFTO9jV0Xb3OrBaYEJFJ9/UJA6L14Ep4MPisIPFir+ojGBBGeG0TKPDGjAOh1q6nJMDU6ao5c1DZlZrRgb6fffhOOQQMhYswNTYqK4RzjoLnn5arbnOy9v74z7wAPjVDSjOO09akwohxCAyVD6ihramJnX32ir3OCLJ7mvn1Zq32dRR070vPT5tu4QboLHNRnb6TuZv95K1vQWLuyehbjz716q1Tpdn3s7huP1bB9W6UasF0pJDNLfHVvsf0Xf9fR3ccmk1b9y2litOruNPj6uR6FAYlr9QyO2/+J7X//ol9y78hgV3VtDu6tuL4b21aazeoBL74hw/vzuzts/xMkxeB6ZgAGtLPRZnG8G8EjwTZ+MbPSVmE+7OTti8WY1yT5miRreLioZQwr0N/5FHon/xBZxxRs/O555To95PP713B9N1NX19q/nzIxeoEEKIfhuCH1NDjNcL9fWqV6aIiK3Vyd/sqk7+rXMT2m6m5CXGafiDPfNhC7MD1Nt7RpbrWuIozA7s/MmaRuGKJaCrUbKOGQfjPPC47m97fGZe+Siz11PLM1LDWM06LY6eGzD19vhdn38XCrMDNGz7M9jjyc0Ibpf4+4Nm4uOGdZ1EsY1+vQ62cfzcNj5an4rDZeHrzUk0O2zdBdAmVXZSkBVgffXu+wnv7HWwsT6BlatVMUuTSefmS6pJ3sPo9LB+HYSCWO0NWNpbCGUX0DlpNt5x0whnZO9dUa4hYtt126NHq3XbI0dGcd32QMnOVtPKn35aDdvTVQPmlFNUMt7a2rvjvP12T9uygw6CsWMHLmYhhBB7TZLugdbaqiqbpsRe8Roj+MMB3mn8mM9b16OjU5pSxMHFczDv5iJzTKmXTQ090+yOnNnOU2/lENbA4bbw8oeZHD1759WWM//7OClffghAMDWLxguv3u6C9pUPMhk3wtu9pnSrPz9RxCOv7Xwt6ZEz23mia53p2o1JNLXb2Heca6/+HuZO7uCr6iQ21qveuo+vzN3uZ2h12jCZoDBr75J5Ebv6+jro8Fi2Gyle+Uk6GSkh0lPCFGQHaHHY+L5OHXdzUzxbmuMpL1Q9gnv7Ovj0myQ2NSQQCquPpHOPambf8TtW9P+hPb0OtlZcj6nXQTiEtbURW2sToYwcOifOonP8dEKZuTGZbGsatLRsv2570qQY/Eg96SRYtw5OPLFn3+OPq1Hvf/1rz8/ftg2YjHILIcSgI/OdB5Kuq16b8fExeTEUbXZfOx80raYz5MNsMrNP9gQq00Zg2sPf7REz23l3bRr7TVSJ7U9/1MqXG5M4+qqJmExw/tHNjClVScIba9J5c00GN1y8mfgt37L40XG8RA2NFHBM+N8kLjHz6p/WdR/7mbdzOPngHUe5N2xJYkLFzke/rzy9jgV3VnDUVROwWXV+f+kmbF2vxL89U0huRpDTD1XPPX7ReNo6bLi9Fg6+YhIzq1z8/lI1Anj9xZv5v7+OIhSG0SU+ls3vqZz7/ueZHDa9fUhOuRQDo6+vA5fXwpV/q8QXMGM26WSmhfjnr7/DZFIVwpdeuJkr/16J2aSj6SauOXcLRTmq+GBvXweuTkt3wl1Z5CXOqvH46zndr4MTFlXR6rLu9evgnS/SOGy6IzZeB1oYq6MVU8BPKCsPf3EFocw8VcQhRm1dt52drRLtgoKY/nHVOu6nn1bJ9s9/rtZ5NzXBccfBuefCbbfBzlqbNjfDs8+qr3NzVf9sIYQQg4r06R7IPt3t7fDee5CZqRLvKIulPt2dIS8vbX4TDY0UWzJz8qeRGd+7Kfsen5mzrh/Lo4s3kJTQu2JKpoCP8uvOI6H2ewBajz6L5jN/1avnhjU4Y8k4Hl/ytSEX+zo6Z944mhsuqGFUsb8XzxDDQV9eB/3R29fB2o1JnLl0HGHNhMWs89h1XzOxsnO7x+joeCw+ksMJmOj9DcyzbxjD0gu3MLLY158fxVhaGGtHOyZfJ6GMXALFFQSz8mO6RojXq0a3U1J6+m0b8BE6oPbY17ihAS65RFU236q4GO6+G446Sm2Hw7BqlVrL/dhjat9vfwu//32UfgohFOnTLWLNQPTpjt1P7cGguRkCgdi7WjBAkjWRsRmVuEOdzMidtEOxtN1JTtD43Vm11LXEMbq0dxffeU/8vTvh9pWOpuWUn/f6fBYzPHn9171+fKTZnVZOOqyxK9GQGRZC6cvroD968zrwBUwsXF5OWFO/p/OPa9gh4e4ru9PK6Ye2DN2EW9OwuNoxd7oJZWQTqKgimFMA1tgtChcMqmTbbIZRo6CiIgankfdWYaGaVv7gg/CLX6gh/7o6OPpouPhiOPBAWLhQzabb1ogRuzqiEEIIA8lI90CNdAcC8M47aop5pEfQe2moj3Tbfe0kWOJIsak2Rlt/Vfc0nby/kr94jxF/vAIAzRbPpusfJFAyckDPGUl9HRUUItpuebiEB19Vb1ATKjw8uvjr7qUW2xpWv9O6jsXlwOzpIJyWpUa2cwrRbUO9YtiuaZoqf+L3q1yzslJNKY/lVVl7NTJYWwsXXQT//e+eD2wyqSnq264NF2KAyUi3iDUDMdItr4yB0tqqyqymphodyZCj6zpft6vq5O83rSGsh6Er2R7ohNvS0U7RiqXd282n/9+QSriFGCo+Wp/SnXDH2TSWza/eacI9bHQl27amLegmE94xU/FMnkOgsCymE26nE7ZsgcREmDEDpk9XRbxjOeHeayUl8Morahp5cvKeH//LX6qp50IIIQaN4XyJM7Dq61XFl5iu+hJ5/nCAj5o/o6GzGYAUWzKarmOJxgWYrlN4zw1YnapFi3vyfrQffloUTizE8OL2mlm0orx7+5en1DFqqE4DjwCzpwNrRzvh5DS8oyYTzC1GT0g0OqwBtXXddnKy6rddWiorsXbLZIJ589SN/G37ev+QrkNNjVrrfdBB0YxQCCHEbkjSPRBcLnU1YdC08qFqh+rkOROoTN1zdfJIyXjzWVLX/A+AUGoG9fMWy3CLEAPglodLqberDGvfcS7OPbLZ6JAMYe50Y+loQ0tMxls5gUBBKXrC7nucD3XbrtseOVKt25YJYXuhtysCGxoGOhIhhBB7QZLugdDSAp2dqnWH2CNd19ng2Mjatq/R0UmxJbNf/nQy4iOzhqI34hqqyX/kz93bDRcvJpyRE7XzCzFcvLkmnWf/p15bSQlhbppXHRstvfaC2evB4mxFS0jCVzaWYMEItKTYrhimadDWpka4CwtVwh3r67YHRGFhZB8nhBAiKiTpjrRwWE3tGrYlV/eehk6Npx4dnREpRUzPnYzNHMVfzVCQojuuxRxQ7bXaDzkJ97QDond+IYaJdpeFxfeWdW8vOKuGkryAoTFFk8nnxeqwo8fF4y8ZRaCwDC0lejcXjeJ0qp7b2dkwYYLKB2XlVR/NnavWeNfV7XzU22RS358714johBBC7IIk3ZHW2qquLgoKjI5kyLCYzMzJn0azt5WK1NKoTSffKveZ5SRuWg+Av7CMpl72496TsAarN6TQ4rCRmxFk+lg3lmE2oifE1tdBc7uNJ9/IpdWpWl4dONXBSQe2Gh1eVJgCPiztdrBa8ZdUECwoI5wa+8uPtl23PXmyrNuOCIsFbrsNTj5ZJdjbJt5bPzv/+le5qyGEEIOMJN2R1tSk/t8qf7W7oqaTf09IDzMxayx0FUzb2hosmpLWryb7Pw+ouCxW6n92E3p8Qr+P+9rHGdz8cClNbT1Vh/OzAiw6u4bD93X0+/hCDAU7ex3QNa38+os2x/zUYlPAj8VpB5OZYMEIAoVlhNMyY35OdSgEzc3qx5R12wPgxBNVW7Bf/GL7Pt0lJSrhlnZhQggx6EhmGEmdnap4iRRQ26UfVicvTi4gMz7dkFjMng6Kli/G1DVS0HLypfjKx/X7uK99nMEvb6/khxP/mtts/PL2Sv56xUZJvEXM29XrAKDTZ+azb1Ni93UQCmJrb0HXdYJ5xSrZTo/9Bcw/XLddWSntvwbMiSfCccepKuUNDeovfO5cGeEWQohBSpLuSLLbwe2GrCyjIxmU7N423m9agzfcU508I86g9Yy6TsF9y7C1qpkJnvHTaT3mnH4fNqzBzQ+XdiUa219p6pgAnWvvLqPFYR3Q4lF+c5B4zTZwJxBiNzQNbn+6eKevg617lj1cyiHTHbG15CIUwuqwgxYimF1IoKicUGbusMg6OzqgvV3WbUeVxSJtwYQQYoiQpDtSNE0VNklMHBYXWHtj63TytW0b0NFJtSUzJ8rVyX8o7d2XSP/wNQDCSanUz18K5v5fIa7ekLLDVNrtmejotHLjg2W7eYwQsU3HRGNbHKs3pDBzvNvocPovHMLqbMUUDBLMziNQWEEoK4/hUJbd51PrthMTZd22EEIIsSuSdEeK261u86cbM1V6MHu/aQ21HtUz1JDq5D9ga66j4IE/dG83XLiIUHZkCt81tO4u4RZCbKvFMcRnY2hhrM42TD4voaw8AsUVBLPyh8UQ77brtisq1J+02C/ELoQQQvSJJN2RoutqtFsKqO2gKCmP+s4m9smZQGXqiKhXJ99OOETRnddi8XkAcPzox7hmHR6RQ39fl8Cdz/cueb/42AYqi3wROe8P6dtML5c5F8IIG+sTuPvfe+4TnJsRjEo8EadpWDrasHg9BDNzCYycSDC7YFi8/29dt93Z2dNvW9ZtCyGEELsX+1cIIup0Xccb9pFkTQSgPK2U3MQckm2JRodGzov3k/TtFwAEcotpOvc3/T6mpsGjK3P50+Ml+INbp5Pqu1jLqpOfFeQXp9QP2FpWHR2PxUdyOAGTpN3CAGENXnwvm+Y2W1ctg+1tfR1MHzvEppZrGhaXA3Oni3B6Np6K8QRzCsE6xEfse6mjQyXcsm5bCCGE2DuSdIuI2lqd3OHv4IjSA4i3qOnWgyHhTvjuS3KeuwsA3WSm/tLr0RJT+nXMpjYb19xdxrtre5YV5Gf6aWqPw4S+XcJh6iortfDsmtgqHiXED1jMsOjsGn55e2VsvA50HYvbidntJJyagXfcNIK5Rei24bGcxOdTU8mTknrWbSf0v7OiEEIIMWxI0i0iZtvq5BaTmTa/g8KkPKPDAsDs9VB8xzWYtDAA9uMvwjtmSr+O+fKHmSy9bwQdnp6X0dlHNHHlaXWs+jx9J326gyyUPt1imDh8Xwd/vWLj0H4d6DpmTwcWt4Nwcjre0VMI5hWjxw+PjDMUUkXSdF2t2a6slHXbQgghRF9I0i36bTBWJ/+h/If/RFxzLQCdoyZhP+6iPh+rw2PhpodKefHd7O59eZkBbp5XzX6TXNCVcBwy3cHqDSm0OGzkZqiptENmZE+ICBjKrwOzx4XF1Y6WmIJv5CQCeSXoCcbP2ImGbfttFxTIum0hhBCivyTpFv3iDwf4sPlTGjtbYJBUJ/+h1I9fJ+N//wIgnJBE/aU3gKVv8X20PoUFyyto3KZK+VGz2lh8/hYyUsLbPdZiJjbaIQnRD0PtdWD2urE429ASkvBVVBHML0FLTDY6rKhxuVTCnZUFVVVq3fYwqA8nhBBCDCj5KBX98mXbBho7W7CYzOyTM5GK1FJjq5P/gLWticJ7burebjrnNwTzS/b6OIGgib8+VcQDr+Sj6+rnS00Kcc25NRy7X5uMAAkxxJl8nVgdrejxCfjKxhLML0VLTjU6rKjZtt/2xIkwYoSs2xZCCCEiRZJu0S+TssbhCXUyOWv8oJpODmqOZNGKpVg8HQB07HsozrnH7vVhNmxJ5Hd3lvNNTVL3vpnjXdx8ySaKcoZoyyMhBAAmnxersxXdasNfMpJA4Qi0lPRePDM2bLtuu7xcrd1OHz4/vhBCCBEVknSLveIPB9jUUcPYjEpMJhNxFhsHFM4yOqydynrlUZLXfQRAMDOPhgsX7dWiRE2D+1/O57aniwiG1CJUm1Xjl6fUcd5RzZiHwLpUIcTOmQI+LA47WKz4i8oIFpQRTss0Oqyo0fWeftv5+Wrddm6urNsWQgghBoIk3aLXWrxtfNBVndxqtjAqvdzokHYpfvMGcp/6BwC6yUT9/KV7NXpVZ4/j6hXlfLS+Z3rp2NJO/r+9+w6PqkofOP6dksmE9DbpjdBrABUQBQvCIoKsUkSlqAguoCg/C4oKiIgFkF0UsbCggsKqoKwiigguAhaaoiIKJLSQnkzaTKbd3x9DJgQCJDHJJJP38zx5Hubec+e+Ew7DvHPOe84L/0ilTZy5XmIWQtQ/ldXiTLYBa0Q8lsh47IEhzSrbLK/bDg6GHj2kblsIIYSob/LfrLgkRVH4veAIv5y1OnmYPsTdYV2QymImZumTqG3Oqd95g+6ktOPl1bpWUeC/O0J49p14ik0a5/OpFO4alMkDw9PReSn1GrsQop7YrGgLcsDhwBYWhSU6EVtQ81qS++y67Y4dnXXbPs1jQXYhhBDCrSTpFhd1/urkMfQI79yoVic/l2HNv/BOTwXAnNCG7OH/qNZ1BUUa5qyM54sfKr5QiAot4/lJaVzehFZfFkKcxWZDa8xBZbNhDY10JtvB4TSn+hCbDXJywG6Xum0hhBDCHRpv5iTcLsecx64M53Tyxro6+bl8939LyOb/AODw8ubUP+aheOkued2OA/488UYi2QUVbYf2yWXm2OP4t3DUa8xCiHpgt6E15qGylGELjaAsOhFbSESzSrbL67ZLSir225a6bSGEEKLhSdItLkhRFMx2M/5evvSO6NH4Vic/h8aYR/Sbz7geZ93+IJaYpIteYypTsXBtLO9tNriOBfrZmDX+GH/rWVCv8Qoh6oHDjrYwH5XZhC0oDEvrLlhDI0GjcXdkDaq4GHJzISjIWbcdHS1120IIIYS7yH/BohKHoqA+MwwS7hNKn8jLCfcJbdTTycE5pBP11jNoC/MAKEq5ivzrh1/0kl9TW/DYskSOplcUNfbpbGTevccwBMtWYEI0KQ4HmqJ81KYSbIEhWJI6YA1rfiuEmc3OqeTe3lK3LYQQQjQWzevTiLiobFMuu7N/pk/kZQTonKt2R/tGuDusagna8hH++78FwBYQwukJT11wDqXNDm99GsnS9dHY7M423l4OHh59ktv7Z8vUSyGaEkVBU1SAuqQQe0AIpnZtsYZFVausxJOcXbcdHw8tW0rdthBCCNFYSNItzlud/EDeIfpEXubusKpNdyqViPdedj1Ov/dp7IGhVbY9nqnj8deT2Penn+tYx6QSXrgvlZbRZQ0SrxCiDigKmmIj6mIjdr9ATG27YQ2PRtF5uzuyBqUokJ/vnE4eGelMtg0GqdsWQgghGhNJups5s72MHzL3k2Fyrk6e4BdD9/DO7g6r+mxWYl57ErXVmTDn9R9BScpV5zVTFPjom1Dmr4rDVOas7VSrFCYOzeAfw9Lxkn8JQjQZ6pJCtIX52H0DMLXuitUQg+Ktd3dYDa68bjswUOq2hRBCiMZM/ntuxrJNuXyXuReTvazJrE5+rvAPX0N/7BAAZdFJZI2edl6bXKOWp/+dwNa9Qa5jcQYzL9yXRkrrkgaNVwhRe+rSYrTGPBwt/DAld8ISEYuib+HusBpcWZlzv21vb+jQARISpG5bCCGEaMwk6W6mskw5fJP+PQoK/l5+9I7o3uhXJz9Xi992E7rxXQAUjZZTk59F0VUe7dq6N5CnlyeQW+jlOjb8mmweu+MkvnrZCkyIpkBtKkFry0Nl98Gc1AFrRCyOFn7VuNKznFu3nZTkXJ1cCCGEEI2bJN3NVJg+hFB9EL7aFnQP79z4Vyc/h7rYSPSyp1EpCgBZI6ZQltDWdb7ErObF1bF8sC3cdSzE38ozE45xXXejW2IWQtSMylyKtiAXh06HJToGJawNin/zyzLL67aLiir225a6bSGEEKLpaFqZlvhLcs35BHkHolGpUavU9I3qiUalaVLTyeHM9mAr5uOVnwVASYfLyRt0h+v0T4d9eWxZIsczK0a9r0kp4JkJxwgLtLklZCFE9anKzGgKckCrpSy2JZaIOKxeZWj0ATSxd6u/rKq6bS+valwohBBCiEZDku5moGJ18t9pHZhESlhHALRNbHS7XOC3nxHww1cA2H0DSJ80G9RqrDZY9kkUr38ShUNxfjT38bYz446TDL8mR0aFhGjkVJYyNMYcUGuwRiVgiYzHHhiCojjAnOXu8BpUed22Tues246PhxbNr3xdCCGE8AhNM+sS1WZRyth+umJ18jK7BUVRmt7o9hlemSeJeOdF1+PTdz+BLSSC1NPePPZaEr+k+rrOdW1VzPP3pZEQIVuBCdGYqawWtAU5KIA1PAZLVIJz278m+j71V0jdthBCCOF5JOn2YBnFuewt3YtFabqrk1ditxG97Ck05lIACvoOofDy/ry/OZwFa2IxW9QAaDUKk4elM2FIBlqNm2MWQlyYzYa2IAccdqxhUViiE7EFhTXLZFtRoKDAWbdtMFTUbavV7o5MCCGEEH+VJN0eSFEUvj18mK2HD6EA/l5+XBnRncAmtjr5ucI+WU6LwwcAsBhi+eWmx3n8pVZ8eyDQ1SYpyswL96XSqWWpGyMVQlyU3YbWmIvKasUaGoElOglbcHizzTDPrtvu3l3qtoUQQghPI0m3Byo0m9lx5AgKYNDG0Ce26a1Ofi6fP38m7OPlAChqDev7vcykZy7HWFzxum7vn8X/3XYSH2/FjZEKIS7IYUdrzENVZsYWYqAsJglbsAE0zXNKytl12+3aQWKi1G0LIYQQnqhpZ2KiSoE+Pgzt2pXTWTZUebF4qZv2VE21qZjo155CpTj31X4/9mHu+GC463x4kIVn7z3G1V0K3RilEOKCHA40hXmozaXYgsKwtOqMNSQCtM3zvyC73Vm3bbNBbCy0bAnBwe6OSgghhBD1pXl+4vEwiqKw/fBhYoOCaBnu3Je6Q1QU/nY4nO/u6P66iHcWoMs+BcCP2l6MPf6s69yAy/OZfdcxgvztboxQCFElhwNNUT7q0mLsgaGUJnXAGhYJ2uY5d/rsuu3wcGjVSuq2hRBCiOZAku4mrqSsjPX793MkOxtfnY4p11yDj07n7rDqjP/3mwn69lMACvFnpO097Gjx1dt5ctxxhvbJa45rLgnRuCkKmqIC1CWF2P2DMbXvgTUsCsXLc96baursuu1u3SAmRuq2hRBCiOZCku4mLC03l4/27qW4rAytWk3/9u09KuHW5mZgeGu+6/EUXiWNJC5rW8T8SWnEhFvcGp8Q4hyKgqbYiLrEiN03EFObFKzh0SjeendH5jYWC2RlSd22EEII0ZxJ0t0ElU8n33bIuTp5mJ8fI3r0wODv7+7Q6ozDZkf93Dx0Zmed9hpGsUZ9O/838iTjB2WikemYQjQq6pJCtIX52H0DMLXqgjU8BkXv4+6w3Ka8bttqlbptIYQQormTpLuJsdrtrN29myPZ2QB0jY3lxk6d0HnQgkSnc7347bnPmJq1C4DjxLEgehH/mXyIdgkmd4cnhDiLurQYTWEeDh9fTC07Yo2IxeHj6+6w3Ka8bruwsGK/7YgIqdsWQgghmjPPydSaCa1aja9Oh1atZnDnzqTExbk7pDr16c5gNqzIYYvZuViaAxXvXbGYtyZl4K2TrcCEaCzUphI0xjwceh/MCW2xRsbjaOHn7rDcqqTEObpdvt+21G0LIYQQAkm6mwZFUbDa7ei0WlQqFYM7d+aqVq0I96Dp5MYSDXNXxrP1Oz17uREdVgB+6TWBm6ckAJJwC9EYqMwmtMZcFC8dZbHJWKIScPgFuDsstyqv2/byctZtJySAb/Md7BdCCCHEOSTpbuRKyspYt28fWrWa2y6/HJVKhU6r9aiEe+cv/sx8I5HMfB2vMpl2HAKgJL49XpPudnd4QghAZTGjKcgBjZay6ASsUYnY/YPcHZZbnVu3nZQEISHujkoIIYQQjY0k3Y3YuauTZxcVYQjwnBEls0XFy/+J4d0vIgAYzKdM5jUAHDpvMqbMbbb7+QrRWKgsZWiMOaBSY42IxxKVgD0gmOa8V5+igNHo/Cnfb1vqtoUQQghxIZJ0N0IOReHbs1YnD/fzY7iHrU7+W5oPjy1L4sgp5+rGBjJ5R3MX2J3nM++YjiU60b1BCtGc2ax45Wc7y1sMMc5kOzC0WSfbnKnbzs0Ff39ISXGOcHvQTo1CCCGEqAeSdDcy5dPJj+bkAJASG8sgD1qd3O6Af38WwZKPorHZncNC3lo7/zPcRki68zUXde9LwbW3uDlSIZopmw1tQQ44bFhDIrHEJGELCmv2w7hn1223aePcb1vqtoUQQghRHZ6RyXkIRVFYu3s3J/LzPXJ18pNZOma8nsTePypWOG6fUMrarvNou2EbALbAUE7f81SzH00TosHZbWiNuaisVmwhBsqik7CFGJp9sm23O0e2LRaIjnZuASZ120IIIYSoCUm6GxGVSsXADh349MAB/t6tm8dMJ1cUWL89lOfejaPUrAFArVK456YMpvf8ljZzFrrapk+c5awXFUI0DIcdrTEPVZkZW3A4lpgkrCERoNG4OzK3OrduOzkZIiOb/XcQQgghhKgFSbrdrKSsjFMFBbSJcC4mFhMczMSrr0blISO9eYVaZq+I56vdFYl0bHgZ8yelclnLfBJnzURtLXO2vWEUJV2udGO0QjQjDgeawjzU5lJsgaFYkjthDY0EDyll+StKS52rkkvdthBCCCHqgny6cqO0nBw+2rcPk9XKhD59iAwMhDMj3p7gm/0BPPlWIrnGihXIb+mbw4w7T+Dn4yD8vaXoT/wJgDmmJVm33e/GaIVoJhQFTWE+alMx9oAQSpPaYw2Lkp0CcG79lZXlHORv08a537afXzUuFEIIIYS4CEm63aCq1ck1HjRnsdSs5qX3Y1n7dbjrWLC/lTl3H6f/ZQUAtPjle0I/XwWAQ+tF+uR5KDq922IWwuMpCppiI+piI3b/IExtu2ENi0LRebs7MrdzOJwj2+V12y1bQmiou6MSQgghhKeQpLuBFZeVsd6DVyf/+UgLHluWxLGMigS6b1cjcyekER5kA0BTVED0G7Nd57NHTqUsvrVb4hWiOVAXG9EUF2D3DcTUuitWQwyKt3zJBVBQ4KzbDguDrl2lblsIIYQQdc8zMr2zjRgB06dD797O4Ytp02DjRudq2A8+CFOnVnmZ+sgRuP9+53BHYCCsXAkdO4LZDLfdBr/9Bj4+YDDAa69Bq1aXjiUvD2bN4vT+TAJD1BgfnMQqi40PP7mOw3+2xtfbi0fH5KFLyYbt22HxYmfMrVrBrFn8mRfKuNmJdDr9JU8YZxAVUoZ3+2SYNYsynT+z5+u47YvxZHnFsaPzJGa/Eu68fsEC2LGDSLsKU6/R2G8d5QopLcObJ15PJL9YS0ftId5Vj8PXko/Dx4/0ibOwxCYD4PvzTrQr3sRYoGCiBe+lPM/YKQF4nekxH20L5c1PI1EUFT07FDLjjuOs2BjFh+s1rGQYyRzBovLmh789Tc/RyRWLkSsKkSuewys/GwCHTk/wlg/x+WM/pyfOwuHjnMvpt287hvcXo3I4MMe1cp3TGHOJW/QQaU//GzSe132FqEvqkiI0hXk4WvhjTu6MxRCDom/h7rAahdJSyM521m137QpxcVK3LYQQQoj64Vnf5//wgzPR7d3b+XjVKmey/McfznMvvQS//lrlpT4PPQQTJzrbPvYYjB9fcXLiRDh0CH76CW6+GSZMqF48S5ZwytCNOzvto8VzTxEyfz7ff59MQV4Ev37wE/tXH+aldyM4+KsD5s6FhQth/XrnkMvy5Ux6Lp7Jg4/xhv1eDk19hatCfnOdm7EkhmIfA136hXJD+H7umx3lvOfGjZCaCuvWkfXS28RvexfdySOukOb8O54R1+bw+Uu/soz7WFT6D46+tI7cm8YS/cYcANQlhUS++hSjyt4h++VVhDx2L1N+mcwHW53TxU9m6fjXR9G8++QhNi34hROZ3gyd0YlX10fzHI/zHb0YGPUzxqlPcud396Oy21z3D/zfBgJ+/BoARaXi+CP/4siC9diCwgj7eDkAKnMpUW/N5eSDC887Zw8MxdS6K4HfflaDjiFE86I2FeOVcRyVtQxzUgdKul5JWXxrSbjP1G2fOgWFhdC6tfO/i+RkSbiFEEIIUX88K+l+/XW4/faKx2vXwr33OlfFCQmBUaPg/ffPuywc0O7fD3fe6Txw661w4gQcPgx6Pdx4Y8W+0b16QVpa9eL56isWmCZz+8A86NgRXWQk0b86eGqchcggf0IC7Yy6IZ/9K/dB27aQmOi8bsQI7J9/we6Dvoz2+xTatmXA6FBOZOo4dvUdODZ9wfINYcybfAqV2QQWC5FhZxLbzZth2DDQaHD4B5KVcgOBu74AINeo5ZdUX4b0yUVjzCM65wBvWsZyLNObosuvxysvE6/ME+gyT2LUhBB9eQzhQTZM7boR4zjB0W3HAfjix2Cu7W4kLNDG2q/D2PenL+m5zrrQkfyH31NG0SbORPAVrbEFh9Hi9z0AeGWeIPLdBa5fT1l8a0ztugOQ338EAWfi9PtpJ+aEtliiE887B2DsNZDgr9dV7+9AiGZEZS7F6/Rx1GYT5vg2lHS5krKkdjh8fN0dmts5HM6R7cxMiIpyvpV37iwLpQkhhBCi/nlW0r1tG/TsWfH4+HHn8rPlEhOdx84RBzgiIiq2ylGpID6+yrb885/O0e5LKShAsdl4b28s3TsUOZ82OprAwnySY+wVIUVbUE5nOAsJy0VHo87NITbEhCbbeU6lgvgIC6lKIqqcHML9zTy3IoqT353Akp7Dtm/OfCmQkeH8RHmGKTgabW6G81SejvAgK1oNeOVlYgsKJSLMwekcHahUWEMj8MrJwBIZj95cwJXKTgD89n6DzlKCPi8dgNO5OgJ9bfxjYSueWZmAxebcz7er4RQ+Ggv3jrPy/W8BAFjDovHKzQCbjZilT6IuMwFQmtwRU8uOrjitYdFoC3LAbsMrNwNrWGSV5wDMSe3wPnEYtan40n8PQjQDqjIzXpkn0ZQUURaXTHGX3pQld8Th6+/u0BqFggLn96g+PnDZZdC9uyyUJoQQQoiG41lFsSdPwpn9ruvFc885R7+3bLloM4eisOvIEXo6HOTm+3LM+AfdSKzTUI5leNMhKYtYTmENCGDGLB2ffGSnLl69o4Uf/+ryFqMOzCfmKSOmVp0pMiRjMzmT65NZOn446I/ZonFd08LbzsrH/0D1CIQF2Sgo1lJmqdj6LOyTt/A56pzab4mIo7h7P7xyTtcuQI0Wu68/2vwcLD4yTCWaL5XFjKYgBzRayqITsEYmYA8IdndYjYbJ5Bzd9vNz1m3HxoK3LNYuhBBCiAbmWSPdLVo4Fz4rFx8Px45VPE5Lcx47xwlAnZkJtjNTtBXFOcp9dtsFC2DdOvj8c+d9LqC4rIxV33/PV6dP41CridedonN0S+fJ9HQchiiOna4oHkxL16GKinSOUJdLT8cRGsbJPB/s4c5zigLHM3UkqdJwhIahqDXcMSgP9Hq8HGWER2o4cNjHOWJ+uiKZ9clPxxbqHDWODLGQXeCFzQ7WkAi0Bblk5qiJCrOAouCVm+kaYc5vfQUzu/yXtLmryLr9IXTGbPKCWzHzzQT+91OQK+EODbQy5e+naJdgwjssANQaHDm5aNQKXloFr5x01KUlhH3yb+evVq3h1D/mYomIxyun4jV75aRjCwoDjRZraOQFz5VTWy04ZKsj0UyprBa02elojHlYDbGUdOqFuXVXSbjPsFohPd25KnmrVhV125JwCyGEEMIdPCvp7tLFueBZuREj4M03wW53LrC2dq2zrvsc2YC9SxfnwmsAH33kHBIpX6F80SJnLfjmzRAUVPnixx+HV14BILWoiNd37iQ1JwcvjYbiq67iqcBlpJ70dS7glp1Nm7934M2Pw5whGTWs3RxMl7Ep8PvvFbXiH3yA5m8D6N62lPeLBsPvv/Pl+7nEGiwkbF+N5m8DuP7yIr7YFQCJidjtCt9lJdM+yQz9+/Prok2s3+KPusiIYf9mCnsNACA00EaHxFL+uyMUe2AIp0M7MkH3DgkRZfj/uAVriAFrRBwAN7X9g617A8ku0BL68Vt8q72Gb/M6sP5/YTzH40zhFa7qUsDH837jtzRfBvXKA6Dwiv54ffoxrWJNtEj7FW1eFiFfvI9KcTh/17dMxJzciZIuvdGn/Y4u3fmag7/6wBXnxc4BaIy5KCoVtpB6nNUgRGNks6LNOY0mPxtbaCSlnXthatcde1BoxboTzdjZddsREc5qo06dpG5bCCGEEO6lUhRFcXcQdWbJEucI9UsvOR/b7fDAA87RaZXK+edp05znNmyADRsoXLSIwMBAjD/8QMADD0BuLgQEwIoVzlV2Tp507iXTsqVzbxlwDpd8/73zzzfeCHffzU8xMXzy5ZcoQLifHyN69CDcYuH4xGfxyTtJeLgKHn0Ue7fLeGBBHG03LSZLE034PTczbXQWfPMNRc+/iqnUgeGyBJgzh0M5oYyfk0jX05uYUfgEUcFmvNu1hDlzOFoQwj1zE5l+aCJtLQc4MPcTbr2+AOx23uu/nFv1G9GoFVJ73YZt+Gg4U5vNtzsYkv82BcVaOmkO8o76Lnyt+Th8fJkZsozkvtFc191I5PJnse/7meIi+E7Vi/vsr2DEOYq2ST2In9qM4JW8OwC4vF0Rs+46hpfWmRDbn5lHWMlxAoLUWIPC8Pv1B8A5up4zZDwF/Ue44jGs+Rcqu52y2GTSJ83B0cLvkucCt39Ki0P7OD3hqQbrWk2JgkKJxoyvXY8KScQ8gs2G1piDymbDGhqBJToJW3B4s9lQWlEcmM1Z6PUGVKqqX7PRCPn5zg0eWrVyTvrRaKpsKoTbORwOsrKyMBgMqJvJv2PhuaQ/C09TUFBAcHAwRqORgICAOnlOz0q6i4vhyith1y7wrd5qvYWFhQQGBpKfn0/QuaPYl2K3O5fA/f57jOnpvL5yJW0jIxnUuTO6M4uyFZequfLutuxacQhfH0dtXtXF3XWX89Pm6tXg40N2vpbbZyaxeemfnDjpLEGPrOWA8J8n9Ty2LInfj1VMp7+sdQFfma8i/dkVVX7gt9hUjHy6HSse/4OEXzYSs3QmAHYfX1LnvY81PLr2r/WMhLkTOH33TCwxSX/5uTyRJN0exGFHW5CLylKGLTSCsuhEbMGGZpdNXizpLq/b9vV1fjcaFyfTyEXjJ0mK8CTSn4WnqY+k27MWUvPzg5dfdu5T3alTvd8uv7CQ4B9/BCDQ359/dOiAf0xMxSrogF8LBy9PP0nqKR2dWpkv8my1kJvrnC4fEuLceLZVK8KDbWxe+udfelqHA1ZvNrBwbQwWq/PNU6txcP+t6dw9OJN09dsXvPZUto6HRp4ivOwUkSvnu45njJtRJwm3xphL/vXDJeEWns1hR1uYj8pcii0oHEvrLlhDIiq9tzR3Vqsz2VarnfXaSUkVk5GEEEIIIRoTz/sEd/319X4Lh8PB9u3b+eabbxg1ahRt27YFwF+nq7L99VcU1U8goaHwt7/V6VNm5Hkx841Edv1a8a1OcoyJF+5LpUOi6ZLXJ0WVkRRRSvRzT6MpdW7pZez9Nwr7DKqT+OyBoRReWbevWYhGw+FAU5SPurQYW1AolqQOzsUNtV7ujqzRcDicS3SYTM7dEZOTnW+FUtIuhBBCiMbK85LuelZcXMy6detITU0FIC0tzZV0N3WffxfMnBXxFJZWdIuxAzN5cOQp9LrqVyGEfvYuvof2AmANjSRj3GP1Eq8QHkNR0BQVoC4pxB4Qgql9D6xhUSheVX+R11wZjc6f0FDo2NGZdDezmfZCCCGEaIIk6a6B1NRU1q1bR3FxMV5eXgwePJiuXbu6O6y/rLBEw9y34/hsV6jrWESwhXkT07iyU81G6fVHfyP8o9cAUFRqTv1jLg5fmfMpRJUUBU2xEXWxEbtfIKY2KVgNMSiyHV4lJhPk5Dh3a+zSReq2hRBCCNG0SNJdDQ6Hg//973988803ABgMBoYPH054eLi7Q/vLvvvVnyfeSCQjr2JEbVDPPJ4af5wgP3uNnktlNhH92pOo7M7rcoeMw9S2W53HLIQnUJcUoi3Mx+4bgKl1F6zhMSh6H3eH1ajYbJCV5fxzVBS0bw+Bge6OSgghhBCiZiTproa0tDRXwt2tWzcGDRqEl1fTrrEss6hY/GEMb39esbS5fwsbT48/zuDe+bV6zoj3FuGdcRwAU1IHsv8+qc7iFcJTqEuL0RTm4fDxxdSyI5bIOBR9i2pc2XycW7edlOTcLEIWShNCCCFEUyRJdzW0bNmS3r17ExER4RHTyX8/5sOjryVx+FTFqFrPDoU8NzGNqFBrrZ7Tb882greuB8Ch05P+j7my0rIQZ1GbStAYc3HoW2BOaIs1Mt6197yoUFjo3G/77LptlapixFsIIYQQoqmRrKgKDoeDnTt3kpKSgp+f80PxgAED3B3WX2Z3wMqNEfzzw2hsdudWYDovBw+NOMWYgVlVbbtdLdqCHKKWP+t6nHnn/2GJSqirsIVo0lRmE9qCHBSdN2VxrbFExuPwq5s9Hz2J2ezcAszH5/y6bYfD3dEJIYQQQtReo9zB/tVXXyUxMRG9Xk/Pnj354YcfLtr+gw8+oF27duj1ejp37szGjRtrfe/i4mJWrVrFli1bWLduHYpSjVW77XbYvh2++Qb27HE+djO7HXYd8GPLvmB+OOjH8Uwddz3XhoVrY10Jd9v4Uj6Yc5Bxg2qRcDvstDi4m4AdnxO7aDraogIAinpcQ8E1w+rhFQnRtKjKzGgzT6IpMVIWm0RJl96YW3WShPscNhukpztHt5OSoHdvaNVKFkoTQgghhOdodCPda9euZfr06SxbtoyePXuyePFiBg4cyKFDhzAYDOe137lzJ6NHj2b+/PncdNNNvPfeewwbNoy9e/fSqVOnGt376NGjrFu3jpKSEry8vEhJSUF1qc1f162DadPg5MmKYwYDPPwwXHddje5fV9Z9HcS0BXGczKpYHE2FgoLztahUCnffmMn9t6aj86r+VmDl/H/8mohVC/DKqzzf09bCn9P3PCkb5opmTWUpQ2PMAZUaa2Q8lqgE7IEh7g6r0Smv2y4trdhvOyxM3j6EEEII4XlUSrWGchtOz549ufzyy3nllVfgzFTvuLg47r//fmbMmHFe+1GjRlFSUsKnn37qOtarVy9SUlJYtmzZJe9XWFhIYGAg//3vf9mzZw+cWZ18xIgRhIWFXfzidetg+HC40K/wxRcbPPFe93UQwx9tiTOi8z+9Bvtb+ecDR7msXXGtnt//x6+J+dejVT67Apx64EWKLnfPlw3CSUGhRGPG165HVUUfEPVDZbU4p5ErClZDzJlkO1SyyCoUFjoT7tBQ56j2pfbbdjgcZGVlYTAYUNe2DkaIRkT6tPAk0p+FpykoKCA4OBij0UhAQN3MUGxUI90Wi4U9e/bw+OOPu46p1Wr69+/Prl27qrxm165dTJ8+vdKxgQMH8vHHH9fo3jt27ECv11d/dXK73TnCfbHvLJ56CjZtarAP3YoCuh2BrL1I1YDe7KDvl0ZUX9buBn4/7YAq03mniFULKerRD9QX+QQthCex2dAW5IDDhjU0Ckt0IrbgcEm2q2A2OxdEO3u/bb3e3VEJIYQQQtSvRpV05+TkYLfbiYiIqHQ8IiKC33//vcprMjIyqmyfkZFRZfuysjLKyspcj41GI5z5lu7666+nU6dOlJSUXDrY7dtRnz2lvOqbwddfX/q56lDfSzWwAj/W/vkvOT6el0nJV5soSuxY+5uIv0QByvwcFBWrZZy7nqlsdlQOO5bAMMyG1lh8w6BQDYVGd4fW6FjPbIwQEwMJCRAQ4EzCzeZLX+twOCgsLESn08koivAI0qeFJ5H+LDxNQYFzraq6nBDeqJLuhjB//nzmzJlz3vEXX3yRF1980S0xeZx3Z7k7AiGEEEIIIYSotdzcXAIDA+vkuRpV0h0WFoZGoyEzM7PS8czMTCIjI6u8JjIyskbtH3/88UrT0QsKCkhISOD48eN19ksVwp0KCwuJi4vjxIkTdVaHIoQ7SZ8Wnkb6tPAk0p+FpzEajcTHxxMSUncL4TaqpFun09GjRw+2bNnCsGHObaccDgdbtmxh6tSpVV7Tu3dvtmzZwoMPPug6tnnzZnr37l1le29vb7yr2IsmMDBQ3iiERwkICJA+LTyK9GnhaaRPC08i/Vl4mrosl2hUSTfA9OnTGTduHJdddhlXXHEFixcvpqSkhLvuuguAsWPHEhMTw/z58wGYNm0a/fr1Y+HChQwePJg1a9awe/du3njjDTe/EiGEEEIIIYQQzV2jS7pHjRpFdnY2Tz/9NBkZGaSkpLBp0ybXYmnHjx+v9K3DlVdeyXvvvceTTz7JE088QevWrfn4449rvEe3EEIIIYQQQghR1xpd0g0wderUC04n37Zt23nHRowYwYgRI2p1L29vb2bNmlXllHMhmiLp08LTSJ8Wnkb6tPAk0p+Fp6mPPq1S6nItdCGEEEIIIYQQQrjIZnpCCCGEEEIIIUQ9kaRbCCGEEEIIIYSoJ5J0CyGEEEIIIYQQ9aRZJN2vvvoqiYmJ6PV6evbsyQ8//HDR9h988AHt2rVDr9fTuXNnNm7c2GCxClEdNenTb775JldffTXBwcEEBwfTv3//S/4bEKKh1fR9utyaNWtQqVQMGzas3mMUorpq2p8LCgqYMmUKUVFReHt706ZNG/nsIRqVmvbpxYsX07ZtW3x8fIiLi+Ohhx7CbDY3WLxCXMz//vc/hgwZQnR0NCqVio8//viS12zbto3u3bvj7e1Nq1atWLlyZY3u6fFJ99q1a5k+fTqzZs1i7969dO3alYEDB5KVlVVl+507dzJ69Gjuuece9u3bx7Bhwxg2bBi//PJLg8cuRFVq2qe3bdvG6NGj2bp1K7t27SIuLo4BAwZw6tSpBo9diKrUtE+XS0tL4+GHH+bqq69usFiFuJSa9meLxcINN9xAWloaH374IYcOHeLNN98kJiamwWMXoio17dPvvfceM2bMYNasWRw8eJDly5ezdu1annjiiQaPXYiqlJSU0LVrV1599dVqtU9NTWXw4MFce+217N+/nwcffJAJEybwxRdfVP+mioe74oorlClTprge2+12JTo6Wpk/f36V7UeOHKkMHjy40rGePXsqkyZNqvdYhaiOmvbpc9lsNsXf3195++236zFKIaqvNn3aZrMpV155pfLWW28p48aNU26++eYGilaIi6tpf37ttdeUli1bKhaLpQGjFKL6atqnp0yZolx33XWVjk2fPl3p06dPvccqRE0Byvr16y/a5tFHH1U6duxY6dioUaOUgQMHVvs+Hj3SbbFY2LNnD/3793cdU6vV9O/fn127dlV5za5duyq1Bxg4cOAF2wvRkGrTp89VWlqK1WolJCSkHiMVonpq26efeeYZDAYD99xzTwNFKsSl1aY/b9iwgd69ezNlyhQiIiLo1KkTzz33HHa7vQEjF6JqtenTV155JXv27HFNQT969CgbN27kxhtvbLC4hahLdZEfaushrkYjJycHu91OREREpeMRERH8/vvvVV6TkZFRZfuMjIx6jVWI6qhNnz7XY489RnR09HlvHkK4Q2369Lfffsvy5cvZv39/A0UpRPXUpj8fPXqUr7/+mjvuuIONGzdy+PBhJk+ejNVqZdasWQ0UuRBVq02fvv3228nJyeGqq65CURRsNhv33XefTC8XTdaF8sPCwkJMJhM+Pj6XfA6PHukWQlT2/PPPs2bNGtavX49er3d3OELUWFFREWPGjOHNN98kLCzM3eEI8Zc5HA4MBgNvvPEGPXr0YNSoUcycOZNly5a5OzQhamXbtm0899xzLF26lL1797Ju3To+++wz5s6d6+7QhHAbjx7pDgsLQ6PRkJmZWel4ZmYmkZGRVV4TGRlZo/ZCNKTa9OlyCxYs4Pnnn+err76iS5cu9RypENVT0z595MgR0tLSGDJkiOuYw+EAQKvVcujQIZKTkxsgciHOV5v36KioKLy8vNBoNK5j7du3JyMjA4vFgk6nq/e4hbiQ2vTpp556ijFjxjBhwgQAOnfuTElJCRMnTmTmzJmo1TLmJ5qWC+WHAQEB1RrlxtNHunU6HT169GDLli2uYw6Hgy1bttC7d+8qr+ndu3el9gCbN2++YHshGlJt+jTAiy++yNy5c9m0aROXXXZZA0UrxKXVtE+3a9eOAwcOsH//ftfP0KFDXSuKxsXFNfArEKJCbd6j+/Tpw+HDh11fHgH88ccfREVFScIt3K42fbq0tPS8xLr8SyXnulVCNC11kh/Weqm3JmLNmjWKt7e3snLlSuW3335TJk6cqAQFBSkZGRmKoijKmDFjlBkzZrja79ixQ9FqtcqCBQuUgwcPKrNmzVK8vLyUAwcOuPFVCFGhpn36+eefV3Q6nfLhhx8qp0+fdv0UFRW58VUIUaGmffpcsnq5aExq2p+PHz+u+Pv7K1OnTlUOHTqkfPrpp4rBYFCeffZZN74KISrUtE/PmjVL8ff3V95//33l6NGjypdffqkkJycrI0eOdOOrEKJCUVGRsm/fPmXfvn0KoCxatEjZt2+fcuzYMUVRFGXGjBnKmDFjXO2PHj2qtGjRQnnkkUeUgwcPKq+++qqi0WiUTZs2VfueHp90K4qiLFmyRImPj1d0Op1yxRVXKN99953rXL9+/ZRx48ZVav+f//xHadOmjaLT6ZSOHTsqn332mRuiFuLCatKnExISFOC8n1mzZrkpeiHOV9P36bNJ0i0am5r25507dyo9e/ZUvL29lZYtWyrz5s1TbDabGyIXomo16dNWq1WZPXu2kpycrOj1eiUuLk6ZPHmykp+f76bohahs69atVX42Lu/H48aNU/r163feNSkpKYpOp1NatmyprFixokb3VCkyz0MIIYQQQgghhKgXHl3TLYQQQgghhBBCuJMk3UIIIYQQQgghRD2RpFsIIYQQQgghhKgnknQLIYQQQgghhBD1RJJuIYQQQgghhBCinkjSLYQQQgghhBBC1BNJuoUQQgghhBBCiHoiSbcQQgghhBBCCFFPJOkWQgghamj27NmoVCp3h3FJ11xzDddcc427w3Ap/73l5OTU2XMmJiZy0003XbLdtm3bUKlUbNu2zXVs/PjxJCYmVmqnUqmYPXt2ncUnhBBCSNIthBDCYyxduhSVSkXPnj3dHUqTkpiYiEqlcv0YDAauvvpq1q9f7+7Q3G7nzp3Mnj2bgoICd4cihBCiiZKkWwghhMdYvXo1iYmJ/PDDDxw+fLje7vPkk09iMpnq7fndISUlhXfffZd3332Xhx9+mPT0dG655RaWLVvm7tDqRN++fTGZTPTt2/ei7UwmE08++aTr8c6dO5kzZ44k3UIIIWpNkm4hhBAeITU1lZ07d7Jo0SLCw8NZvXp1vd1Lq9Wi1+vr7fndISYmhjvvvJM777yTRx99lB07duDr68vLL798wWtsNhsWi6VB46wttVqNXq9Hrb74Rx+9Xo9Wq22wuIQQQng+SbqFEEJ4hNWrVxMcHMzgwYMZPnz4BZPuNWvW0KNHD/z9/QkICKBz587885//dJ23Wq3MmTOH1q1bo9frCQ0N5aqrrmLz5s2uNlXVdJtMJh544AHCwsLw9/dn6NChnDp16rwa4fJrDx8+zPjx4wkKCiIwMJC77rqL0tLS8+JdtWoVPXr0wMfHh5CQEG677TZOnDhxXrs33niD5ORkfHx8uOKKK9i+fXutf5cAkZGRtG/fntTUVADS0tJQqVQsWLCAxYsXk5ycjLe3N7/99hsAX3/9NVdffTW+vr4EBQVx8803c/DgwSqfOycnh5EjRxIQEEBoaCjTpk3DbDZXarNixQquu+46DAYD3t7edOjQgddee+2C8X755ZekpKSg1+vp0KED69atq3S+qpruqpz99zV79mweeeQRAJKSklzT79PS0ujXrx9du3at8jnatm3LwIEDL3ofIYQQzYck3UIIITzC6tWrueWWW9DpdIwePZo///yTH3/8sVKbzZs3M3r0aIKDg3nhhRd4/vnnueaaa9ixY4erzezZs5kzZw7XXnstr7zyCjNnziQ+Pp69e/de9P7jx49nyZIl3Hjjjbzwwgv4+PgwePDgC7YfOXIkRUVFzJ8/n5EjR7Jy5UrmzJlTqc28efMYO3YsrVu3ZtGiRTz44INs2bKFvn37VpruvHz5ciZNmkRkZCQvvvgiffr0YejQoVUm59VltVo5ceIEoaGhlY6vWLGCJUuWMHHiRBYuXEhISAhfffUVAwcOJCsri9mzZzN9+nR27txJnz59SEtLq/K1m81m5s+fz4033si//vUvJk6cWKnNa6+9RkJCAk888QQLFy4kLi6OyZMn8+qrr573fH/++SejRo1i0KBBzJ8/H61Wy4gRIyp9UVIbt9xyC6NHjwbg5Zdfdk2/Dw8PZ8yYMfz888/88ssvla758ccf+eOPP7jzzjv/0r2FEEJ4EEUIIYRo4nbv3q0AyubNmxVFURSHw6HExsYq06ZNq9Ru2rRpSkBAgGKz2S74XF27dlUGDx580fvNmjVLOfu/0D179iiA8uCDD1ZqN378eAVQZs2add61d999d6W2f//735XQ0FDX47S0NEWj0Sjz5s2r1O7AgQOKVqt1HbdYLIrBYFBSUlKUsrIyV7s33nhDAZR+/fpd9LUoiqIkJCQoAwYMULKzs5Xs7Gzlp59+Um677TYFUO6//35FURQlNTVVAZSAgAAlKyur0vUpKSmKwWBQcnNzXcd++uknRa1WK2PHjj3vtQ8dOrTS9ZMnT1YA5aeffnIdKy0tPS/OgQMHKi1btjwvdkD56KOPXMeMRqMSFRWldOvWzXVs69atCqBs3brVdWzcuHFKQkJCpec79+/rpZdeUgAlNTW1UruCggJFr9crjz32WKXjDzzwgOLr66sUFxefF78QQojmSUa6hRBCNHmrV68mIiKCa6+9Fs5MER41ahRr1qzBbre72gUFBVFSUnLREdCgoCB+/fVX/vzzz2rff9OmTQBMnjy50vH777//gtfcd999lR5fffXV5ObmUlhYCMC6detwOByMHDmSnJwc109kZCStW7dm69atAOzevZusrCzuu+8+dDqd6/nGjx9PYGBgtV/Dl19+SXh4OOHh4XTt2pUPPviAMWPG8MILL1Rqd+uttxIeHu56fPr0afbv38/48eMJCQlxHe/SpQs33HADGzduPO9eU6ZMqfL3dHZbHx8f15+NRiM5OTn069ePo0ePYjQaK10fHR3N3//+d9fjgIAAxo4dy759+8jIyKj276AmAgMDufnmm3n//fdx5upgt9tZu3Ytw4YNw9fXt17uK4QQoumRpFsIIUSTZrfbWbNmDddeey2pqakcPnyYw4cP07NnTzIzM9myZYur7eTJk2nTpg2DBg0iNjaWu+++25Uwl3vmmWcoKCigTZs2dO7cmUceeYSff/75ojEcO3YMtVpNUlJSpeOtWrW64DXx8fGVHgcHBwOQn58PZ6ZMK4pC69atXclw+c/BgwfJyspy3RugdevWlZ7Py8uLli1bXjTus/Xs2ZPNmzfz1VdfsXPnTnJycnjnnXcqJb+cqW0+97Vzpo75XO3btycnJ4eSkpJKx8+NNTk5GbVaXWkq+o4dO+jfv7+rRjw8PJwnnngCziThZ2vVqtV5NfZt2rSBM7Xo9WXs2LEcP37cVT//1VdfkZmZyZgxY+rtnkIIIZoeWZ5TCCFEk/b1119z+vRp1qxZw5o1a847v3r1agYMGACAwWBg//79fPHFF3z++ed8/vnnrFixgrFjx/L222/Dma2ljhw5wieffMKXX37JW2+9xcsvv8yyZcuYMGFCncWt0WiqPF4+aupwOFCpVHz++edVtvXz86uzWADCwsLo37//Jdudm4TXhXMT5iNHjnD99dfTrl07Fi1aRFxcHDqdjo0bN/Lyyy/jcDjqPIbaGDhwIBEREaxatYq+ffuyatUqIiMjq/V7FEII0XxI0i2EEKJJW716NQaDocoFttatW8f69etZtmyZK1nU6XQMGTKEIUOG4HA4mDx5Mq+//jpPPfWUa2Q6JCSEu+66i7vuuovi4mL69u3L7NmzL5h0JyQk4HA4SE1NrTSK+1f2Ck9OTkZRFJKSklyjthe6N2dGxq+77jrXcavVSmpq6gVX2K4r5fc/dOjQeed+//13wsLCzptq/eeff1YaMT98+DAOh4PExEQA/vvf/1JWVsaGDRsqzQgon1J/rsOHD6MoSqXk/Y8//gBwPWdtnfuFwNk0Gg233347K1eu5IUXXuDjjz/m3nvvveAXKkIIIZonmV4uhBCiyTKZTKxbt46bbrqJ4cOHn/czdepUioqK2LBhAwC5ubmVrler1XTp0gWAsrKyKtv4+fnRqlUr1/mqlG8PtXTp0krHlyxZUuvXdsstt6DRaJgzZ45r9LucoiiuOC+77DLCw8NZtmxZpT2zV65cWWmF8/oSFRVFSkoKb7/9dqX7/fLLL3z55ZfceOON511z7hck5b+nQYMGwVmzAM5+3UajkRUrVlQZQ3p6OuvXr3c9Liws5J133iElJYXIyMi/9PrKvzC40O9yzJgx5OfnM2nSJIqLi2XVciGEEOeRkW4hhBBN1oYNGygqKmLo0KFVnu/Vqxfh4eGsXr2aUaNGMWHCBPLy8rjuuuuIjY3l2LFjLFmyhJSUFNq3bw9Ahw4duOaaa+jRowchISHs3r2bDz/8kKlTp14wjh49enDrrbeyePFicnNz6dWrF998841rtPVio6UXkpyczLPPPsvjjz9OWloaw4YNw9/fn9TUVNavX8/EiRN5+OGH8fLy4tlnn2XSpElcd911jBo1itTUVFasWFGjmu6/4qWXXmLQoEH07t2be+65B5PJxJIlSwgMDKy0R3m51NRUhg4dyt/+9jd27drFqlWruP32212j8gMGDHDNSChPZt98800MBgOnT58+7/natGnDPffcw48//khERAT//ve/yczMvGCSXhM9evQAYObMmdx22214eXkxZMgQVzLerVs3OnXqxAcffED79u3p3r37X76nEEIIzyIj3UIIIZqs1atXo9frueGGG6o8r1arGTx4MJs2bSI3N5c777wTvV7P0qVLmTx5Mm+//TajRo3i888/R612/pf4wAMPkJaWxvz583nggQf45ptvePbZZ1m4cOFFY3nnnXeYMmUKn332GY899hgWi4W1a9cCoNfra/X6ZsyYwUcffYRarWbOnDk8/PDDbNiwgQEDBlT6omHixIksXbqU9PR0HnnkEbZv386GDRuIi4ur1X1rqn///mzatInQ0FCefvppFixYQK9evdixY8d5C68BrF27Fm9vb2bMmMFnn33G1KlTWb58uet827Zt+fDDD1GpVDz88MMsW7aMiRMnMm3atCrv37p1a9auXcvGjRuZMWMGVquVtWvXumYg/BWXX345c+fO5aeffmL8+PGMHj2a7OzsSm3Gjh0LZ0a9hRBCiHOplHPnrAkhhBCiTuzfv59u3bqxatUq7rjjDneHI+rJP//5Tx566CHS0tLOW5VeCCGEkJFuIYQQog6YTKbzji1evBi1Wk3fvn3dEpOof4qisHz5cvr16ycJtxBCiCpJTbcQQghRB1588UX27NnDtddei1ardW1JNnHixAab5i0aTklJCRs2bGDr1q0cOHCATz75xN0hCSGEaKRkerkQQghRBzZv3sycOXP47bffKC4uJj4+njFjxjBz5ky0WvmO29OkpaWRlJREUFAQkydPZt68ee4OSQghRCMlSbcQQgghhBBCCFFPpKZbCCGEEEIIIYSoJ5J0CyGEEEIIIYQQ9USSbiGEEEIIIYQQop5I0i2EEEIIIYQQQtQTSbqFEEIIIYQQQoh6Ikm3EEIIIYQQQghRTyTpFkIIIYQQQggh6okk3UIIIYQQQgghRD2RpFsIIYQQQgghhKgn/w/TJPK0yxWalwAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Number of pro forecasts: 50\n" + ] + } + ], "source": [ "# Set up the plot\n", "plt.figure(figsize=(10, 8))\n", "plt.plot([0, 1], [0, 1], linestyle='--', color='gray', label='Perfectly calibrated')\n", "\n", "# Plot calibration curves for bot_team_median and pro_median\n", - "plot_calibration_curve(df_top_bot_pro_forecasts, 'bot_team_median', 'Bot Team Median', 'blue')\n", - "plot_calibration_curve(df_top_bot_pro_forecasts, 'pro_median', 'Pro Median', 'red')\n", + "plot_calibration_curve(df_top_bot_pro_forecasts_binary, 'bot_team_median', 'Bot Team Median', 'blue')\n", + "plot_calibration_curve(df_top_bot_pro_forecasts_binary, 'pro_median', 'Pro Median', 'red')\n", "\n", "# Customize the plot\n", "plt.xlabel('Assigned Probability', fontsize=12)\n", "plt.ylabel('Fraction that Resolved \\'Yes\\'', fontsize=12)\n", - "plt.title(f'Calibration Curve: Bot Team Median vs Pro Median\\n(only overlap: {len(df_top_bot_pro_forecasts)} questions)', fontsize=14)\n", + "plt.title(f'Calibration Curve: Bot Team Median vs Pro Median\\n(only overlap: {len(df_top_bot_pro_forecasts_binary)} questions)', fontsize=14)\n", "plt.legend(fontsize=10)\n", "plt.grid(True, alpha=0.3)\n", "\n", @@ -1563,8 +11904,7 @@ "# Show the plot\n", "plt.tight_layout()\n", "plt.show()\n", - "print(f\"Number of pro forecasts: {len(df_top_bot_pro_forecasts)}\")\n", - "print(f\"Number of bot forecasts: {len(df_bot_forecasts)}\")" + "print(f\"Number of pro forecasts: {len(df_top_bot_pro_forecasts_binary)}\")" ] }, { @@ -1574,22 +11914,206 @@ "outputs": [], "source": [ "# Map resolution to 0 and 1\n", - "df_top_bot_pro_forecasts_all['resolution'] = df_top_bot_pro_forecasts_all['resolution'].map({'yes': 1, 'no': 0})" + "df_top_bot_pro_forecasts_all_binary['resolution'] = df_top_bot_pro_forecasts_all_binary['resolution'].map({'yes': 1, 'no': 0})" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 84, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
bot_question_idtitleresolutionscheduled_close_timeactual_close_timetypeoptionsrange_minrange_maxpro_question_idquestion_weightbot_team_medianpro_median
231264Will the bubble in the Magnificent Seven pop b...0.02025-01-20 03:27:002025-01-20 03:27:00binaryNaNNaNNaN312701.00.10.013
531276Will the USDA-posted recall by Pork Dynasty In...1.02025-01-21 11:42:002025-01-21 11:42:00binaryNaNNaNNaN312821.00.60.45
831288Will Eric Adams be Mayor of New York City on t...1.02025-01-22 20:19:002025-01-22 20:19:00binaryNaNNaNNaN312941.00.90.95
1031318Will the S&P 500 index go up in January 2025?1.02025-01-23 23:23:002025-01-23 23:23:00binaryNaNNaNNaN<NA>1.0NaNNaN
1331334At the end of March 2025, will Wikipedia still...1.02025-01-24 14:23:002025-01-24 14:23:00binaryNaNNaNNaN313381.00.750.9
\n", + "
" + ], + "text/plain": [ + " bot_question_id title \\\n", + "2 31264 Will the bubble in the Magnificent Seven pop b... \n", + "5 31276 Will the USDA-posted recall by Pork Dynasty In... \n", + "8 31288 Will Eric Adams be Mayor of New York City on t... \n", + "10 31318 Will the S&P 500 index go up in January 2025? \n", + "13 31334 At the end of March 2025, will Wikipedia still... \n", + "\n", + " resolution scheduled_close_time actual_close_time type options \\\n", + "2 0.0 2025-01-20 03:27:00 2025-01-20 03:27:00 binary NaN \n", + "5 1.0 2025-01-21 11:42:00 2025-01-21 11:42:00 binary NaN \n", + "8 1.0 2025-01-22 20:19:00 2025-01-22 20:19:00 binary NaN \n", + "10 1.0 2025-01-23 23:23:00 2025-01-23 23:23:00 binary NaN \n", + "13 1.0 2025-01-24 14:23:00 2025-01-24 14:23:00 binary NaN \n", + "\n", + " range_min range_max pro_question_id question_weight bot_team_median \\\n", + "2 NaN NaN 31270 1.0 0.1 \n", + "5 NaN NaN 31282 1.0 0.6 \n", + "8 NaN NaN 31294 1.0 0.9 \n", + "10 NaN NaN 1.0 NaN \n", + "13 NaN NaN 31338 1.0 0.75 \n", + "\n", + " pro_median \n", + "2 0.013 \n", + "5 0.45 \n", + "8 0.95 \n", + "10 NaN \n", + "13 0.9 " + ] + }, + "execution_count": 84, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_top_bot_pro_forecasts_all_binary.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 83, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA90AAAMWCAYAAADs4eXxAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdd3hU1dbH8e9MeiOhpUIIvXcQkV6kSlcUFEEUe9fXa73gtSAqXjsqXkDFSieAoFJEEKVXIdTQIQk9IX3O+8fJDAlJIIQkk/L7PA8PZ845mVkzmZnMmr33WhbDMAxEREREREREpMBZnR2AiIiIiIiISGmlpFtERERERESkkCjpFhERERERESkkSrpFREREREREComSbhEREREREZFCoqRbREREREREpJAo6RYREREREREpJEq6RURERERERAqJkm4RERERERGRQqKkW0SKvVGjRmGxWIiOjnbsi46OxmKxMGrUqCzndu7cGYvF4oQo8yan+yIixV9O7y3Tpk3DYrEwbdo0p8UlxVtO7/krVqzAYrEwbtw4p8YmIkVHSbeIFIgNGzZw7733Urt2bXx8fPDy8qJmzZqMGDGCX3/91dnhFZmS+iH84sWLfPDBB3Tp0oXKlSvj5uZGhQoVaN++PW+99RaxsbHODrFI2X+Pmf9ZrVYCAgLo0KEDU6dOve7byO2Loyu5PKar/SvJxo0b57gfzz77bK7n/etf/3KcpySmaNkTysz/ypUrR+vWrfnvf/9LampqkceU+bV766235nrepEmTHOddy2tQRCQ/XJ0dgIiUbDabjWeffZb//ve/uLq60rVrV/r374+bmxv79+9n4cKFTJ8+nf/85z+88sorBXa7YWFh7Ny5E39//wK7zqIwfvx4nn/+ecLCwpwdisOWLVsYMGAABw8epFq1avTv35+goCDOnz/PX3/9xQsvvMD48eM5duwYPj4+zg63SHXr1o327dsDkJaWxuHDh5k3bx6jR4/mn3/+4Z133inSeMaOHZtt3/vvv8+5c+dyPFYauLq6Mn36dN566y1cXbN+bElLS+Prr7/G1dWVtLS0Io9t0KBB3HjjjYSEhBT5bRcn9957L1WqVMEwDA4fPszs2bN5+umnWbZsGZGRkU6JydXVlcjISOLi4qhUqVK24//73/+c9ry54YYb2LlzZ45xiUjppKRbRK7Lyy+/zH//+1+aNWvGzJkzqVmzZpbjiYmJfPzxx5w6dapAb9fNzY169eoV6HUWhZCQkGL1Af3IkSP06NGDuLg4Jk6cyBNPPIGLi0uWczZt2sSjjz7qlFErZ+vevTvPP/98ln3R0dE0atSIjz76iP/85z94eXkVWTw5jeROmzaNc+fOldpR3t69exMZGcmCBQsYOHBglmOLFi3ixIkT9O/fn/nz5xd5bP7+/iXui7/CcN9993HjjTc6Lr/++us0b96cBQsWsGLFCjp37lzkMdmfN9OnT+fJJ5/Mcmzr1q1s2LDBac8bb2/vEvn3S0TyT9PLRSTf9u7dy9tvv03FihVZvHhxtoQbwMvLi//7v//j1VdfdezbvXs3zz33HC1atKBixYp4enpSp04dnn/+eeLj4/N021ebmpuUlMTzzz9PeHg4np6e1K9fn48++gjDMLKcl3k6eGRkJO3atcPPz4+IiAgAUlJS+Oijj+jZsydVq1bFw8ODwMBABg8ezKZNm7Jc16hRo7jnnnsAuOeee3Kc5nulNd1Tp06lTZs2+Pr64uvrS5s2bXKcpp55PeD69eu5+eab8fPzw9/fn0GDBl3TevGXXnqJmJgYXnzxRZ5++ulsCTdA8+bN+f333ylXrly2279cbr+XiIgIIiIiOHv2LI8++ihVq1bF1dWVadOm0a1bN6xWKwcPHswxxscffxyLxZJtmcLKlSvp168flSpVwsPDg9q1a/Pyyy9z8eLFPN///IiIiKBu3bokJydz4cKFbMcjIyPp0qUL/v7+eHl50bRpU957770sI2rTpk2jevXqAHz11VdZnisrVqwokDhTUlJ47733aNGiBT4+Pvj5+dGhQ4cck4xrfU3a1zcnJyfz4osvEh4ejpeXFy1btuS3334D4Ny5czzyyCOEhobi6elJ27ZtWbt27TXfj8GDBxMQEMCUKVOyHZsyZQrly5dn0KBBuf58TEwMTz31FLVq1cLDw4NKlSoxZMgQtm/fnuP5q1atolOnTvj4+FCxYkVuv/12Dh8+nOO5uS0nmTNnDsOGDaNWrVp4e3vj7+9Phw4dmDVrVrbryPya2bt3L4MGDaJ8+fL4+PjQvXt3tmzZkodHyRxttlgsrFy5Msfj7733HhaLhcmTJzv2LV++nN69exMaGoqHhwdBQUF06NCBL774Ik+3mZvQ0FAGDx4MwLp16yDTcoEVK1Ywbdo0WrRogbe3d5aE/ODBg9x7772EhYXh7u5OlSpVuPfeezl06NA1x3DTTTdRr169HJeCTJkyBRcXF0aOHJnrz1+4cIGxY8fSsGFDvLy8CAgIoGfPnqxatSrH83fs2MEtt9zieC/u06dPrs+x3N5Dly9fzujRo6lbt67j70CrVq1y/X1YLBY6d+7MyZMnGTlyJJUqVcLLy4sbb7yxwN5HRKRgaKRbRPJt2rRppKen88ADDxAUFHTFcz08PBzbs2fP5n//+x9dunShc+fO2Gw2/vrrLyZMmMDvv//OypUrcXNzu67Yhg4dyqZNmxgyZAgAs2bN4vHHHyc6OpqJEydmO3/GjBn88ssv3HLLLTz88MOcP38egNOnT/Pkk0/SoUMH+vTpQ/ny5dm/fz/z58/n559/ZuXKlbRu3RqAgQMHcvbsWebNm8eAAQNo1qxZnuN9/PHH+eijjwgLC+Pee+91xHzPPfewadMmPvjgg2w/s27dOt5++226dOnCAw88wKZNm5g7dy7btm1j+/bteHp6XvE2L168yA8//ICXl9cV18ySMVXzeiUnJ9O1a1fi4+Pp378/rq6uBAUFMWLECJYtW8a3337Liy++mOVn0tLS+OGHHwgNDaVbt26O/ZMmTeKRRx4hICCAfv36ERgYyPr163njjTdYvnw5y5cvx93d3XF+586d+f3331m+fPl1j7odPHiQqKgoqlSpQmBgYJZj7733Hs888wwVKlRg+PDh+Pj4MH/+fJ555hn++OMPZs+ejcVioVmzZjzxxBN88MEHNG3aNMsIrv0Ln+uRnJxMr169WLFiBc2aNePee+8lNTWVhQsXMmDAAD766CMeffRRx/n5fU3efvvtbNu2jf79+5OYmMi3337LLbfcwurVq7n//vtJSUnhtttuIzY2lh9//JFevXpx4MCBaxod9vT0ZNiwYUyePJmTJ0863mtOnjzJwoULuf/++3N9ru/bt4/OnTs7ZnQMHDiQmJgYZs2axZIlS1i6dClt2rRxnL906VJ69+6N1Wrl9ttvJzQ0lKVLl9KuXTvKly+f55hfeOEF3N3dad++PSEhIcTGxjJ//nxuvfVWPvzwQx577LFsPxMdHc2NN95Iw4YNGT16NPv27WPevHl06dKFnTt3XvU9dsSIEUyZMoXp06fTsWPHbMe/+eYbPDw8uO222wBYuHAh/fr1IyAggAEDBjji3LJlC9988w33339/nu/vlVxeW+Cdd95h+fLlDBgwgB49eji+6Nu9ezft27cnNjaWfv360bBhQ7Zv386UKVOIjIxk1apV1KlT55pu+5577uFf//oXGzZsoGXLlpDxZdS3335Lz549CQ0NzfHnTp8+TceOHdmxYwft2rXjwQcf5Pz5847fx4wZM7K8Zrdv3067du2Ij49n8ODB1K5dm7Vr19KuXTuaNm2a53gnTJjA3r17ufHGGxk0aBBnz55l8eLFPPDAA0RFReX4t+vs2bO0b98ef39/RowYQUxMDD/++CM9e/Zkw4YNNGrU6JoeMxEpJIaISD517tzZAIzffvvtmn7uyJEjRnJycrb9r776qgEY06dPz7J/5MiRBmAcOHDAse/AgQMGYIwcOTLLuZ06dTIAo27dusbZs2cd+8+ePWvUrVvXsFgsxrp16xz7p06dagCG1Wo1fv3112wxJSUlGUeOHMm2f/v27Yavr6/RvXv3LPvt1zd16tQc73tO9+X33383AKN+/fpZYj59+rRRp04dAzBWrlzp2L98+XIDMADjhx9+yHL9I0aMMADj+++/z/H2M1uxYoUBGO3bt7/quZnZb3/s2LHZjuX2e6lWrZoBGD179jQuXryY5dj58+cNLy8vo0GDBtmuLzIy0gCMZ5991rFvx44dhqurq9G0aVMjLi4uy/njx483AOPdd9/Nst/+vFi+fHme7qP999itWzdj7NixxtixY42XXnrJGDlypFG+fHkjMDAw2/N+7969hqurqxEYGGgcOnTIsT8pKclo3769ARhff/31VR+ra2V/bDN78cUXDcB45ZVXDJvN5th//vx5o1WrVoa7u7tx9OhRx/5rfU3aH8/27dsb8fHxjv0//vijARgBAQHGbbfdZqSmpjqOTZgwwQCMiRMn5ul+jR071vFcXr9+vQEYb7/9tuP422+/bQDGhg0bjO+//z7H5+RNN91kuLi4GIsXL86yPyoqyvDz8zMaN27s2Jeenm7UqFHDsFgsxh9//OHYb7PZjOHDhztec5nl9nrft29ftvtz4cIFo3Hjxoa/v7+RkJDg2G9/HgDGW2+9leVnXn75ZQMwxo8ff9XHy2azGeHh4Ub58uWNpKSkLMe2bdtmAMatt97q2Dd48GADMDZv3pztui5/XeXG/n62Zs2aLPuPHz9uBAUFGYDx+++/G0am36ePj4+xdevWbNfVpUsXAzA+//zzLPs/+eQTAzC6du2ap5jsv5Px48cbx48fN1xdXY2HH37Ycfynn34yAGPWrFnGmjVrcnwN2n/fkydPzrL/5MmTRtWqVY3KlSsbiYmJjv3218Plr5MXXnjB8bvN/J6f23vo/v37s92f1NRU4+abbzZcXFyMgwcPZjlmv+6HH37YSE9Pd+z/8ssvDcB44IEH8vSYiUjhU9ItIvlWr149AzB27dpVINd36tQpAzBGjRqVZX9+ku7LP/wYhmF88803BmA8+uijjn32D2iDBg265nj79etnuLu7GykpKdmu71qS7tGjRxuA8eOPP2Y7/9tvvzUAY/To0Y599g9sHTt2zHa+/djTTz991fh/+OEHAzDuuOOOPN3fy28jP0n3li1bcrzOYcOGORKozIYOHZotMXj88cezfRFhl56eblSuXNlo2bJllv0HDx40du7cmSXZuRL77zGnf66ursajjz5qnDx5MsvP/Oc//zEAY8KECdmub/Xq1dkSh8JKutPT043y5csbNWvWzJJw282fP98AjI8++uiq153ba9L+OrMnVJlv283NzQCyJQiHDh0yAOPuu+/O0/3KnHQbhmE0adLEqF+/vuN4/fr1jaZNmxqGYeSYdG/cuDHbayezp59+2gCMbdu2GUamL7/69euX7dzo6GjDxcUlz0l3biZOnGgAxooVKxz77M+D6tWrZ0mcMh8bPHhwnq7fnuTNmjUry/7nnnvOAIy5c+c69tmT7qioqDxdd07s72f33nuvMXbsWOPf//63MXr0aCMgIMAAjAEDBjjOtf8+n3rqqWzXc/DgQQMwGjRokO05m56e7vhbk/nLrNxkTroNwzD69+9vlC9f3pEk9+rVy6hcubKRkpKSY9IdGxtruLi45Jrkf/jhhwZgREZGZom9SZMm2c69cOGC47HIS9Kdm1mzZhmAMW3atCz77V9iXLhwIcv+1NRUw9XV1WjRokWerl9ECp+ml4tIkTMMg6lTpzJt2jS2b9/OuXPnsNlsjuPHjh277tvo0KFDrvsuX4tNRjXZ3GzevJm3336bVatWceLEiWwFxeLi4q6rOJo9npymPXfp0sURw+Xs0yUzq1KlCmRMOSxuPD09ady4cY7HRowYwffff88333xDixYtADh//jyRkZE0btw4yxTNv/76C8AxPfhybm5u7Nq1K8u+8PDwfMVsrzZPRqX+48ePM3fuXJ555hkWLVrExo0bHVOlr/R7bNu2LZ6enjn+HgtaVFQUZ86cITQ0NEstBTt7+7fMj1F+X5OXL6GwWq0EBgZy8eLFbI+5/TWS39f36NGjefLJJ1mzZg0AO3fuzHHZhZ39eXLy5Mkc6w/Y7/+uXbto1KiRY+10Tu8d1apVo2rVqnmulxATE8Nbb73Fzz//zMGDB0lMTMxyPKfHoFmzZlitWUvtXOvrecSIEYwfP55vvvnGsabaZrPx3XffUbFiRfr06eM494477mD27NnceOONDB8+nG7dutGhQ4d8VdT+3//+59j29fWlfv363HnnnTzyyCPZzs3pvdb+uujUqVO26ehWq5WOHTuya9cuNm/eTNWqVa8pttGjRzN//nzmzJlDx44d+eWXX3jiiSdyXcK0bt060tPTSU5OzvF5s2fPHsh43txyyy2O5429y0Fmvr6+NGvWLM/rqy9cuMC7777L3Llz2bdvHwkJCVmO5/S8qVOnDr6+vln22ZfuFMe/AyJllZJuEcm34OBgdu3axdGjR6lbt26ef+7xxx/n448/pmrVqvTv35+QkBDHmu9XX32V5OTk644tp/WP9n3nzp3L0/kAf/75J127dgWgR48e1K5dG19fXywWC3PnzmXLli3XHe/58+exWq1Urlw5x7gsFotjjXlm9sJmmdnXXqenp1/1doODgwE4evRoPiO/NoGBgbn2ju7RowdBQUH88MMPvPvuu7i4uDBz5kwSExMZMWJElnNPnz4NwBtvvFEkcdtZrVbCwsJ45JFHOH78OG+88QYff/wxL730EmT8HsnluWSxWAgKCiqSx9r++OzYsYMdO3bkel7mD/T5fU3m9hy80nMzv1Xw77rrLp577jlHQTV3d3fuvPPOXM+3Pw4LFy5k4cKFuZ5nfxzs7wuXr9O3CwoKylPSffr0aVq3bs2hQ4do164d3bt3JyAgABcXFzZv3sy8efNyfDyv9/UMUL9+fVq2bMmiRYs4c+YM5cuXZ8WKFRw5coSHH344S6J52223MXfuXN577z0+++wzPvnkEywWC126dGHixInXVJNizZo1WaqXX0lOr48rvXbI9IVNTu+DV9O3b1+CgoKYMmUK+/fvx2azMXr06FzPtz9vVq9ezerVq3M971qeN3mRkpJC586d2bhxI82bN2fEiBFUrFgRV1dXoqOj+eqrr/L8vCHjuZPX542IFD4l3SKSb+3atWPFihUsXbrUkZheTUxMDJ988glNmjRhzZo1eHt7O46dOHEix5G5/Dh58mS2kbaTJ09CRpufy+WWDL7xxhskJyfzxx9/ZBvJ+Ouvv/JcWfhKypUrh81mIzY2NtsHt5iYGAzDyPWD1fVo3bo17u7urF+/nvPnz+f5NuyjcTn1t83pCw273B5jABcXF4YNG8b777/Pb7/9Rs+ePfnmm2+wWq0MHz48y7n2OM+fP4+fn1+eYi5o9uJb9srMmeM6efIk1apVy3K+YRicPHmyUH6Pl7PfxpAhQ5g5c+ZVzy+q1+T1qlixIgMGDODHH3+EjMKFFStWzPV8++NwedG43NjfF2JiYnI8bn//uJr//e9/HDp0iNdee42XX345y7G33nqLefPm5el68mvEiBE8+eST/PTTTzzwwAN88803jv2XGzBgAAMGDODChQusXr3aUVCvV69e7Nq1i4CAgAKPL6f3gcyvnZycOHEiy3nXwtXVlbvvvpuJEyeyY8cObrjhhisWF7PfxjPPPMO777571esvqOfNvHnz2LhxI/feey9ffvlllmM//PADX331VZ6uR0SKJ7UME5F8GzVqFC4uLnzxxReOKau5sX9Dv3//fgzDoHv37lk+3AP88ccfBRZbTtdl39e8efM8X8++ffuoUKFCtoT74sWLbNy4Mdv59kq81zLCYI8npymI9n3XMuqUV97e3txxxx0kJibmWBU3s7S0NMd0Y3sV55xGbXOaup9X9qRg+vTpHD58mN9//50uXboQFhaW5Tx7wmufPuwMZ86cgYypu3ZX+j3+/fffJCUlZfk95ue5khf169enXLlyrF+/Pk+jykX1miwIo0eP5sKFC1y4cOGKo5Vkep7Yp6NfjX0JQ073+eDBg7m2Dbvcvn37ICOhvVxRPJ7Dhg3D1dWV6dOnk5iYyOzZs6lVq9YVR6L9/Pzo1asXX3zxBaNGjeLkyZP8/fffhR6rnf11sXLlymxtHQ3DcLRBy+/74OjRox3LQ672vGndujUWi+Wanzc5tRKLj4/P85ISZz9vRKRwKekWkXyrVasWzz33HHFxcfTu3ZsDBw5kOycpKYn33nvPsTbOPgL4559/ZklYjhw5wgsvvFBgsb322mtZRl3PnTvH66+/jsViuWJv1stVq1aNM2fOZJmmm56ezrPPPpvjFw0VKlQAyPMHdMARz6uvvppl+uS5c+cco4zXEvO1eOONN6hcuTJvvPEGH374YZbfid3WrVvp3LmzI7a6devi5+fH/PnzHVMxyRjRef311/MdS4sWLWjQoAFz5szh888/xzCMHEfnHn74YVxdXXnsscdy7N979uzZbMn/oUOH2LVrV4H08E5KSuLTTz8FyNKaafjw4bi6uvLee+9lWXuZkpLCv/71L8j4osqufPnyWCyWa3qu5IWrqysPPfQQBw8e5Nlnn80x8d6+fbtjZK6oXpMFoUePHsydO5e5c+dy8803X/HcG264gTZt2vD99987Rsczs9ls/P77747L7du3p3r16ixYsCBLAmUYBi+++GKevxyxP56XJ2HfffcdixYtytN1XI/AwEB69OjB6tWref/99zl//jx33XVXtvNWrlyZ432yPy+u1nKwIIWHh9OlSxd27NiRrR/7F198wc6dO+nates1r+e2q1evHj///DNz5sy54pIEMpbdDB06lD///JN33nkn25cAZHyJZn8vCQ8Pp2PHjmzdupVvv/02y3lvvvlmntdV5/a8+f3337P0VheRkknTy0Xkurz++uskJSXx3//+l7p169K1a1caNWqEm5sbBw4c4LfffuPUqVOOZCwkJIQhQ4Ywa9YsWrVqRbdu3Th58iQLFiygW7dujm/7r1edOnVo1KhRlj7dR44c4emnn6ZVq1Z5vp7HHnuMX375hfbt2zN06FA8PT1ZsWIFR48epXPnztlGNdu2bYuXlxfvv/8+Z86ccazTvnyaaWYdO3bkscce46OPPnLEbBiGI+bHH388x767BaFKlSr88ssvDBw4kCeeeIL//ve/dOvWjaCgIM6fP8/atWtZt24d5cqVc6wHdXd357HHHuPNN9+kRYsWjumpkZGRdOrU6bp+hyNGjOCFF17g7bffxtvb2/H7y6xRo0Z8+umnPPTQQ9StW5c+ffpQs2ZNLly4wP79+/n9998ZNWoUn332meNn7r777nz16f7tt99ISkqCjCTtxIkT/Pzzzxw5coRmzZrx8MMPO86tWbMmEyZM4JlnnqFJkyYMHToUHx8fIiMjiYqKYsCAAVmSH19fX1q3bs3KlSsZMWIEtWvXxmq1MmLEiGzT06/Vq6++ysaNG/nwww9ZuHAhHTt2JDAwkKNHj7Jt2za2bNnCmjVrCAwMLLLXZEGwWq05jgTm5vvvv6dLly7ccccdvP/++7Ro0QIvLy8OHTrEmjVriI2Ndfx+rVYrX3zxBX369KF79+6OPt3Lli3j+PHjNGnShK1bt171NkeMGMGECRN47LHHWL58OdWqVWPLli0sXbqUwYMHM3v27Ot6DPJixIgRLFq0iLFjx0LGevjLPf744xw7doz27dsTERGBxWJh1apVrF27lhtvvDHHwmCFadKkSbRv354xY8YQGRlJgwYN2LFjB/Pnz6dy5cpMmjTpuq6/V69eeT73008/JSoqiueee45vvvmGtm3bEhAQwOHDh1m/fj179uzh+PHjjpkhn3zyCe3atePuu+9m7ty5jj7d69ato0OHDnkaqe7Xrx8RERG8/fbbbN++nUaNGhEVFcWCBQsYNGhQnpaKiEgx5uzy6SJSOqxbt84YPXq0UatWLcPLy8vw8PAwIiIijOHDh2frf33hwgXjmWeeMSIiIgwPDw+jdu3axmuvvWakpKQYgNGpU6cs5+enZVhiYqLx3HPPGVWrVjXc3d2NunXrGh9++GG2djR5afkzc+ZMo0WLFoa3t7dRqVIlY+jQoca+fftyjMswDGPhwoVG69atDS8vr2y9fXP7GcMwjClTphitW7c2vL29DW9vb6N169bGlClTsp2Xn5ZdV5OQkGC8//77RqdOnYxKlSoZrq6uRkBAgNG2bVvjjTfeyNa3Nz093Rg3bpzj8a1Tp47xwQcfGPv378+1ZVi1atWuGsehQ4cMq9VqAMawYcOueO7atWuNO+64wwgNDTXc3NyMSpUqGS1atDCef/55Y+fOnVnOzW+f7sv/+fj4GM2aNTNef/31XNuPzZs3z+jUqZPh5+dneHh4GI0bNzYmTpyYpWe1XVRUlNGnTx8jICDAsFgs1xSjXU59ug3DMNLS0ozPP//caNeunVGuXDnDw8PDCA8PN3r16mVMmjQpS3/ta31N2h/P3OLJ7Xed03Xl5vKWYVeSW59uI6Pf/csvv2w0atTI8PLyMnx9fY3atWsbw4cPN2bPnp3t/JUrVxodO3Y0vLy8jAoVKhi33XabcfDgwRzvc27vH5s3bzZ69OhhlC9f3vDz8zM6depk/Pbbbzmef7XX7LU8ZnYXL140ypUrZwBG27Ztczznhx9+MIYOHWrUrFnT8Pb2Nvz9/Y2mTZsaEyZMyNaCKje59enOif33eaXnd3R0tHHPPfcYISEhhqurqxESEmLcc889RnR0dJ7iMXJoGXYlufXpNjIew7ffftto2bKl4ePjY3h5eRnVq1c3Bg4caHz99dfZXs/btm0z+vTpY/j6+hp+fn5G7969jW3btuX4nn+lPt1DhgwxKleu7Pgb8MMPP+R6/pWeG3l9zxWRomExcpo3IyIiIiIiIiLXTWu6RURERERERAqJkm4RERERERGRQqKkW0RERERERKSQKOkWERERERERKSRKukVEREREREQKiZJuERERERERkUKipFtERMo8wzBo2bIlPXr0uK7r6dy5MxaLJcu+FStWYLFYGDdu3HVGWbJFR0djsVgYNWqUs0PJ0W+//YbFYmHRokXODkVEREoZJd0iIlLmff3112zcuJH//Oc/zg6lRIuIiCAiIsLZYeRL9+7dad++Pc899xzp6enODkdEREoRJd0iIlKm2Ww2xo0bR4cOHbjxxhudHU6pFRYWxs6dOxk/fryzQ8nVc889x44dO/jhhx+cHYqIOMttt8GaNea2zQaPPQY1a0KtWvDxx7n/3KJF0KIFNGsGjRrBV19dOrZuHbRrB02bmseXLctbLFOmQOPG4OoK779/5XP//tu8/jp1oGtXOHr06seSkqBlSzh3Lm/xSL4p6RYRkTLt559/Jjo6mrvvvtvZoZRqbm5u1KtXj5CQEGeHkqtevXpRqVIlPvvsM2eHIiLOsHYtnD4Nbdual6dPh3/+gd27zWPvvAM7dmT/OcOAu+6CadNg82ZYsAAeeAAuXDCPDRoEr74KW7bATz/BqFGQmHj1eFq2NM8fPvzK59lscOedZmK+ezf06QNPPnn1Y56eMGIETJx4zQ+VXBsl3SIiUqZNnToVi8XCkCFDsh3bsGEDjz76KI0aNcLf3x8vLy8aN27MW2+9RWpqaqHFdPjwYYYNG0aFChXw9fWlU6dOrFy5knHjxmGxWFixYoXj3GnTpmGxWJg2bVq267nSevIDBw5w3333ER4ejoeHByEhIYwaNYqDBw9mO3fjxo3ceuutjnMrV65M69ateeONNyDTeu2DBw9y8OBBLBaL45/9tq+0pvvgwYPce++9hIWF4e7uTpUqVbj33ns5dOhQtnPt6+ZTU1MZN24cEREReHh4UKdOHT799NNs5yclJTFx4kSaNm2Kv78/Pj4+REREMHToULZs2ZLlXDc3NwYOHMiqVavYu3fvFX5DIlIqff551gT3xx9hzBhwcYEKFeD22+H773P+WYsFzp41t8+fh4oVwcMDTp2C2Fjo3t08VqcOBATAzz9fPZ6mTaF+fbBeJWXbsMEcDe/Sxbz8wAMQGWmOZF/pGMAdd8DkyeaXA1JoXJ0dgIiIiLMYhsHy5cupW7cu5cuXz3Z88uTJREZG0rFjR/r06cPFixdZsWIFL7zwAuvWrWPWrFkFHtPx48dp27YtR48epWfPnrRo0YKdO3dy880308X+oek6/f333/Ts2ZOEhARuueUWateuTXR0NN9++y0///wza9asoUaNGgBs3ryZm266CRcXFwYMGEC1atU4e/Ys//zzD1988QUvvfQSAQEBjB07lvczpj8+aR9FyUiSr2T37t20b9+e2NhY+vXrR8OGDdm+fTtTpkwhMjKSVatWUadOnWw/N2zYMNauXUvv3r1xcXHhp59+4pFHHsHNzY0xY8Y4zhs5ciQ//fQTTZo04Z577sHDw4PDhw+zfPly1q1bR9OmTbNcb9u2bfnyyy9ZtmwZtWrVuu7HWkRKkBUr4KmnLl0+dAiqVbt0OSIC/vor+89ZLGaCPngw+PjAmTMweza4u0OlShASYo5YDx1qTjWPioLo6IKL+/I4/fygXDk4duzKx2rUgOBg8PIyR/AbNSq4mCQLJd0iIlJm7dy5k9OnT9O7d+8cj7/44ot88sknuLi4OPYZhsF9993HlClTWL16Ne3atSvQmF544QWOHj3K66+/zksvveTY/8UXX/DAAw9c9/WnpqZyxx13YLPZWLt2Lc2bN3ccW7VqFZ07d+aJJ54gMjISgG+++Ybk5GTmzp3LgAEDslzXqVOnAAgICGDcuHGO0fZrqdT+4IMPEhsby+eff87999/v2P/pp5/yyCOP8NBDD7F06dJsP3fkyBG2b99OuXLlAHjiiSdo1KgREydOdCTd586dY8aMGbRs2ZK///47y+8xPT2dCxcuZLveVq1aAbB69eos8YhIGXDkCAQFXfvPpaXB66+biXbHjmZi3b8/bNtmJt3z5sG//gXjx0PDhtC+vTn6XFwEB5v3XUl3odH0chERKbOOHDkCQFAuH7LCw8OzJGoAFouFRx55BDLaTBWklJQUfvzxRwIDA3nmmWeyHLvvvvuoXbv2dd/GggULiI6O5v/+7/+yJNwA7du3Z8CAASxatIjz589nOebl5ZXtuipWrHhdsRw6dIjly5fToEGDLKPTZCTj9erVY9myZRw+fDjbz44fP96RcAPUrVuXdu3aERUV5UimLRYLhmHg6emJ9bLpmS4uLgQEBGS7Xvtzwf7cEJEyxNv70rRrgPBwyLzkJjra3He5zZvNkeOOHc3LrVtDlSqwaZN5uWlTWLzYvDx9unluw4YFF/flcV64YBZHCw298jG7pCRztFsKjZJuEREpszKP1OYkJSWF9957jxtuuIFy5cphtVqxWCy0bNkSgGPHjhVoPFFRUSQlJdGqVSs8PT2zHLNarQUyqv5XxtTIqKgoxo0bl+3fiRMnsNls7N69G4ChQ4ditVoZNGgQo0eP5vvvv+do5qq412Hz5s0AdOrUKVt/c6vVSseMD7D28zKz/w4yq1KlCgBnM9ZVlitXjj59+rB69WpatGjBm2++yZ9//nnF9fgVKlQAIC4u7rrum4iUQE2amFO/7W67zVzvnJ5uFlj78UdzXfflqlaF48dh507z8t69sG8f1K1rXj5+/NK5kyebU9C7djUvf/wxvPDC9cXdsiWkpsLy5eblzz+Hfv3MQmlXOgbmfdu3z6ySLoWmGM1rEBERKVr20dukzCMbmdx6661ERkZSp04dbr/9dgIDA3Fzc+Ps2bN88MEHJCcnF2g85zLatgQGBuZ4PLcR+Wtx+vRpAL799tsrnpeQkABAmzZtWLFiBW+++SbfffcdU6dOBaB169ZMmDDhutaZ20fTc7tf9krnl4+6k5FQX841Y7pm5j7bM2bMcMRun65frlw57rnnHt588028vb2zXEdiRkXhy/eLSBlw662wZMmlomcjRphTxWvXNtdtP/30peR0/nzz35dfmlPSv/jCXLNttZoVwz/++NKo+BdfwLffmsXK6teHOXPM6wOzOnpGDY1spk2Dl18214jPnQvvvmsWQWveHD77zBwx/89/zNucPt0skpaUZI5if/ONeR1XOgawapU5Mp/xhaMUDiXdIiJSZlWuXBkyJaKZrVu3jsjISHr27MnChQuzTDP/66+/+OCDDwo8Hn9/fwBiYmJyPH7y5Mls++zTptPS0rIdO5dD71V7shoZGcktt9ySp7g6dOjAzz//TGJiIn///TeRkZF8+umn9O3bl+3btzuKrl0reyw53S+AEydOZDkvP7y9vXn99dd5/fXXOXDgAMuXL+ezzz7jgw8+IDExkc8//zzL+fbngv25ISJlyD33wE03wbhx5mi0iwt88knO5/bvb/6zGzbM/JeTsWPNfznZuhUmTMj52KhR5r+cPPhg1stt25rXlZMrHZs0yVxvLoVK08tFRKTMatiwIVarlajM0wkz7Nu3D4C+fftmW9f9xx9/FEo8derUwdPTk/Xr12cbfbfZbPz555/ZfsZedT2nKd+b7OsJM2nTpg0Aa9asueb4vLy86Ny5MxMnTuTFF18kMTGRX3/91XHcxcUlyyjz1TRr1gyAlStXYlzWrsYwDFauXJnlvOtVvXp1Ro8eze+//46vry/z58/Pdo79udBYUy1Fyh5fX/jvf+HAgaK7zVWrzIrizpCUBJ06wc03O+f2yxAl3SIiUmYFBATQpEkT1q9fj81my3KsWkaLlVWrVmXZv2PHDsaPH18o8Xh4eDB06FBiYmKYOHFilmNffvmlY511Zi1btsRisfDDDz9kSdT37NmT42j8gAEDCA8P57333nMktZmlpqZmuc9r1qzJcfq9fXQ689rzChUqEBcXl+t0/cuFh4fTpUsXduzYwZQpU7Ic++KLL9i5cyddu3alatWqebq+y8XGxrJ9+/Zs+8+cOUNycnK2dfNktFMjY525iJRB3bqVnSrenp7w0EPOjqJM0PRyEREp0wYNGsTYsWP566+/uOmmmxz7b7jhBm644QZ++uknjh8/zo033sihQ4eYP38+ffv2ZebMmYUSz1tvvcXSpUt5+eWXWbVqFc2bN2fnzp0sWrSIHj168Msvv2Q5PzQ0lGHDhvHdd9/RsmVLevXqRUxMDHPmzKFXr17Zeol7eHgwc+ZMevfuTadOnejatSuNGzfGYrFw8OBB/vjjDypWrMiuXbsAmDBhAsuXL6djx45Ur14dT09PNm7cyNKlS6lRowaDBg1yXHfXrl1Zv349vXv3pkOHDri7u9OxY0dHQbScTJo0ifbt2zNmzBgiIyNp0KABO3bsYP78+VSuXJlJkybl+7E8evQozZs3p2nTpjRp0oSwsDBOnTrFvHnzSE1N5dlnn832M7/++ivly5e/YswiIiLXQkm3iIiUaffddx+vvfYa06dPz5J0u7i4sGDBAp5//nkWL17MunXrqF27Nu+++y69e/cutKQ7JCSEP//8k+eee44lS5awcuVKWrZsya+//sqyZcuyJd1kjIJXqlSJH3/8kU8++YS6devyxRdfEBoami3pJqMI2pYtW3jnnXdYtGgRq1evxsPDg7CwMAYOHMiwTOsSH3roIfz9/fn777/5/fffMQyD8PBwXnzxRZ566qks661feeUVzpw5w4IFC/jjjz9IT09n7NixV0xg69aty/r163n11VdZvHgxCxcupHLlytxzzz2MHTvWMeMgPyIiIhg3bhzLli3jt99+49SpU1SqVIkWLVrwxBNP0KtXryznR0dHs3r1ap544okcR8FFRETyw2JcvohKRESkjBkxYgQLFy7k4MGD+DlrbV0ejBs3jldffZXly5fTuXNnZ4dT6rz88su8/fbb7Ny5k5o1azo7HBERKSW0pltERMq8119/ncTERD766CNnhyJOcubMGT766CMeeughJdwiIlKgNL1cRETKvGrVqvHVV1/l2rpKSr8DBw7w1FNP8dhjjzk7FBERKWWUdIuIiABDhw51dgjiRC1atKBFixbODkNEREqhYjW9fOXKlfTr14/Q0FAsFgtz58696s+sWLGCFi1a4OHhQa1atZg2bVqRxCoiIlLUxo0bh2EYWs8tIiJSghSrpDshIYGmTZvyySef5On8AwcO0LdvX7p06cLmzZt58sknue+++1iyZEmhxyoiIiIiIiJyNcW2ernFYmHOnDkMHDgw13P+9a9/sXDhQrZv3+7Yd8cdd3D27FkWL15cRJGKiIiIiIiI5KxEr+les2YN3bt3z7KvZ8+ePPnkk7n+THJyMsnJyY7LNpuN06dPU7FiRSwWS6HGKyIiIiIiIsWXYRhcuHCB0NBQrNaCmRheopPuEydOEBQUlGVfUFAQ58+fJzExES8vr2w/M378eF599dUijFJERERERERKksOHD1OlSpUCua4SnXTnxwsvvMDTTz/tuHzu3DnCw8M5cOAAAQEBTo1NpCDYbDbi4uKoVKlSgX07J+JMek5LaXPdz2mbDY4dg927ISkJ3N0LI0yRPLEZBnGGQSWLBatmjebN9u1Y8zAIaJs/Hzp0KJKQyrq0tDS++OILLly4gNVq5c0338TPz6/Arr9EJ93BwcHZeqqePHmScuXK5TjKDeDh4YGHh0e2/QEBAUq6pVSw2WykpKQQEBCgBEVKBT2npbS5rud0QgLs2QPR0VCuHFSrVlhhiuSJzTBISUoiwNNTSXdehYfDpEkQE5PzcYsFqlSBPn3AxaWooyuzBgwYwPr16+natStvvvlmgS49LtGfXtq2bcvSpUuz7Pv1119p27at02ISERERKXCGAcePw7p1sH8/BAZC+fLOjkpE8sPFBZ59Nudj9kTv/feVcBeyuLg4Dh065LjcsGFD7r777gId4bYrVkl3fHw8mzdvZvPmzZDREmzz5s2OB+OFF17g7rvvdpz/4IMPsn//fp577jl27drFp59+yk8//cRTTz3ltPsgIiIiUqCSk+Gff8yEOynJHCXLYdaeiJQgLVqAaw6TjqtUgZkzYfBgZ0RVZmzbto3Jkyfz448/cuHCBcf+wiqsXayml69fv54uXbo4LtvXXo8cOZJp06Zx/PjxLN9GVK9enYULF/LUU0/xwQcfUKVKFb788kt69uzplPhFREREClRcHOzaZU5DrVwZvL2dHZGIFIQFCyAtzdzu1g2aNYNOnTSlvJClpqayePFiNm7cCEBoaGiR3G6xSro7d+7MldqGT5s2Lcef2bRpUyFHBunp6aSmphb67YhcL5vNRmpqKklJSVddK+jm5oaL3thFRIqftDRz3fbu3WbhtCpV9EFcpLQwDJg9+9LlBx80CyK2b6/XeSGKi4tj5syZjppgHTt2pFOnTkVSL6ZYJd3FkWEYnDhxgrNnzzo7FJE8MQwDm83GhQsX8jRFJiAggODgYPWpFxEpLs6dg6goOHrUXLddCOsLRcSJNmwA++zdVq3MJSMnTjg7qlJt27ZtLFiwgJSUFHx8fBg8eDA1atQosttX0n0V9oQ7MDAQb29vJSZS7BmGQVpaGq6urld8vhqGwcWLF4nJqJwZEhJShFGKiEg2NhscOWIm3BcvQmhozms+RaRkmzXr0vaQIc6MpMzYt28fKSkpREREMHjw4EIplnYleie/gvT0dEfCXbFiRWeHI5IneU26AUdrvZiYGAIDAzXVXETEWS5eNKeSHzwIPj7mdHIRKX1On4bly83tChWgc2dnR1Qm9OnTh+DgYG644QantB8tVtXLixv7Gm5vFS2RUsz+/FbNAhERJ7C3Alu7Fg4cMIulqRWYSOk1f/6lAmr9+oGbm7MjKpW2bt3KrFmzHPXC3N3dufHGG52ScKOR7rzRlHIpzfT8FhFxkuRkM9Het8/84F216qUevSJS+thsMGfOpcuDBjkzmlIpNTWVn3/+2VFou06dOjRu3NjZYSnpFhERESly58/D3r1qBSZSlqxdaxZIBLjxRi0jKWBxcXHMmDHDUa+oU6dONGzY0NlhgaaXS36MGzeOoKAgLBYLc+fOLbTbKezrv5oVK1ZgsVgcleunTZtGQECA4/i4ceNo1qyZ0+LLq8vvh4iIOFFamjmyvWePubazShUl3CJlhQqoFZqtW7fyxRdfEBMTg4+PDyNGjKBz585Om05+ueIRhRS4UaNGYbFYsFgsuLu7U6tWLf7zn/+QZl9Dkk87d+7k1Vdf5fPPP+f48eP07t37umMtKcnr7bffzu7du4vktpQoi4iUQufPw6ZNsH272ZM3NFQ9eUXKithYWLnS3K5UCTp0cHZEpcby5cuZM2cOqampRERE8MADDxRpO7C80PTyUqxXr15MnTqV5ORkFi1axCOPPIKbmxsvvPDCNV9Xeno6FouFffv2ATBgwIAytxbYy8vLUe07v1JSUnB3dy+wmEREpASw2cwppbt2mVXKQ0IuFVISkbJh3jxITze3BwxQO8ACVKdOHVavXk379u3p2LFjsRndzqz4RSQFxsPDg+DgYKpVq8ZDDz1E9+7dmT9/PgDJyck8++yzhIWF4ePjQ5s2bVixYoXjZ+1TqefPn0+DBg3w8PBg9OjR9OvXDwCr1Zol6f7yyy+pX78+np6e1KtXj08//TRLLEeOHGHYsGFUqFABHx8fWrVqxd9//820adN49dVX2bJli2Nkftq0adnuS9euXXn00Uez7IuNjcXd3Z2lS5fm+hhERkbSunVrPD09qVSpEoMyFaz45ptvaNWqFX5+fgQHBzN8+HDHGpCcXD693O7zzz+natWqeHt7M3ToUM6dO+c4NmrUKAYOHMgbb7xBaGgodevWveptR0dH06VLFwDKly+PxWJh1KhRANhsNsaPH0/16tXx8vKiadOmzJw5M0s8ixYtokGDBnh7e9OlSxeio6NzvU8iIlLILl6ErVth40bzcpUq+rAtUtakp4N9yaTVqgJqBeD06dOO7bCwMJ544oliNZ38cnrXz6eUlJRcj1mtVlwz/UG90rkWiwW3TK0Ccju3IEZHvby8OHXqFACPPvoo//zzDz/88AOhoaHMmTOHXr16sW3bNmrXrg3AxYsXmTBhAl9++SUVK1YkJCSEzp07c88993D8+HHH9X777bf8+9//5uOPP6Z58+Zs2rSJMWPG4OPjw8iRI4mPj6dTp06EhYUxf/58goOD2bhxIzabjdtvv53t27ezePFifvvtNwD8/f2zxX7ffffx6KOPMnHiRDw8PACYPn06YWFhdO3aNcf7u3DhQgYNGsRLL73E119/TUpKCosWLXIcT01N5bXXXqNu3brExMTw9NNPM2rUqCznXM3evXv56aefiIyM5Pz589x77708/PDDfPvtt45zli5dSrly5fj111/zdNtVq1Zl1qxZDBkyhKioKMqVK+cYYR8/fjzTp0/ns88+o3bt2qxcuZK77rqLypUr06lTJw4fPsyQIUN46KGHeOCBB9iwYQPPPPNMnu+PiIgUEMOAkyfN0e0zZyAoCDL+folIGbNmDZw4YW7fdBMEBzs7ohLLXp1869at3HfffQRnPJZ+fn7ODu2KlHTn0/jx43M9Vrt2bYYPH+64/O677+baA7latWqOUUyADz74gIsXL2Y7b+zYsfmO1TAMli5dypIlS3jsscc4dOgQU6dO5dChQ4SGhgLw7LPPsnjxYqZOncqbb74JGU/qTz/9lKZNmzquyz7SG5zpzWLs2LFMnDiRwYMHA1C9enX++ecfPv/8c0aOHMl3331HbGws69ato0KFCgDUqlXL8fO+vr64urpmuc7LDR48mEcffZR58+YxdOhQyBh5tq9dz8kbb7zBHXfcwauvvurYl/m+jB492rFdo0YNPvzwQ1q3bk18fDy+vr55emyTkpL4+uuvCQsLA+Cjjz6ib9++TJw40XF/fHx8+PLLL7N8cXK127Y/ToGBgY7HPDk5mTfffJPffvuNtm3bOn521apVfP7553Tq1IlJkyZRs2ZN3n77bVxdXalXrx7btm1jwoQJebo/IiJSAJKTzWJp+/aZo9pqBSZStmUuoJbxeVmu3eXVyQ8fPnzF/KE4UdJdii1YsABfX19SU1Ox2WwMHz6ccePGsWLFCtLT06lTp06W85OTk6lYsaLjsru7O02aNLnibSQkJLBv3z7uvfdexowZ49iflpbmGLHevHkzzZs3dySS+eHp6cmIESOYMmUKQ4cOZePGjWzfvt0xXT4nmzdvzhLT5TZs2MC4cePYsmULZ86cwWazAXDo0CEaNGiQp7jCw8MdCTdA27ZtsdlsREVFOd4EGjdunG2mQn5ue+/evVy8eJGbb745y/6UlBSaN28OGYXubrjhhizH7Qm6iIgUgVOnICrKHNVSKzAROXECVq82t4OCoF07Z0dUIm3dupUFCxaQmpqKj48PgwcPLnbF0q5ESXc+XakY2eVrCZ599tlcz718lPaJJ54ogOhMXbp0YdKkSbi7uxMaGuqY8h4fH4+LiwsbNmzA5bKqqZlHeL28vK5aLC0+Ph6AyZMn06ZNmyzH7Nd9vcXH7O677z6aNWvGkSNHmDp1Kl27dqVatWq5nn+l201ISKBnz5707NmTb7/9lsqVK3Po0CF69ux5xeUA+eHj41Mgt21/rBcuXJgl0Sdj/b6IiDhRWhocPAi7d5vbVaqoMrmImAXUMgZXGDhQ7wvXyD6dfNOmTZAxo3bw4MF5npVaXCjpzqdrWWNdWOdejY+PT5Zp3HbNmzcnPT2dmJgYOlxnu4KgoCBCQ0PZv38/d955Z47nNGnShC+//JLTp0/nONrt7u5Our2a4xU0btyYVq1aMXnyZL777js+/vjjK57fpEkTli5dyj333JPt2K5duzh16hRvvfUWVatWBWD9+vVXjeFyhw4d4tixY45p+n/99RdWq9VRMC0neblt+/Mg8+NiL2h36NAhOnXqlON1169fP9vo/19//XXN90tERK7B+fPm6PaRIxAQAOXKOTsiESkO0tIuFVBzcTGrlss12bx5syPh7tSpU7GtTn41SrrLoDp16nDnnXdy9913M3HiRJo3b05sbCxLly6lSZMm9O3b95qu79VXX+Xxxx/H39+fXr16kZyczPr16zlz5gxPP/00w4YN480332TgwIGMHz+ekJAQNm3aRGhoKG3btiUiIoIDBw6wefNmqlSpgp+fX64jt/aCaj4+Plkqkedk7NixdOvWjZo1a3LHHXeQlpbGokWL+Ne//kV4eDju7u589NFHPPjgg2zfvp3XXnvtmu43GdPeR44cybvvvsv58+d5/PHHGTp06BXXl+TltqtVq4bFYmHBggX06dMHLy8v/Pz8ePbZZ3nqqaew2Wy0b9+ec+fOsXr1asqVK8fIkSN58MEHmThxIs8//zxjxoxh48aNOVaDFxGRAnB5K7DQUFUmF5FLVq0y+3OD2Zc7MNDZEZU4LVu25MiRIzRr1ozq1as7O5x8K3lfE0iBmDp1KnfffTfPPPMMdevWZeDAgaxbt47w8PBrvq777ruPL7/8kqlTp9K4cWM6derEtGnTHC8Md3d3fvnlFwIDA+nTpw+NGzfmrbfeckw/HzJkCL169aJLly5UrlyZ77//PtfbGjZsGK6urgwbNgxPT88rxtW5c2dmzJjB/PnzadasGV27dmXt2rUAVK5cmWnTpjFjxgwaNGjAW2+9xbvvvnvN971WrVoMHjyYPn360KNHD5o0aZKtXdrl8nLbYWFhvPrqqzz//PMEBQU52qW99tprvPLKK4wfP5769evTq1cvFi5c6Hisw8PDmTlzpuM+f/bZZ47CeCIiUoDUCkxErmb27EvbKqCWJ6mpqaxYscJRhNpqtTJo0KASnXADWAzDMJwdhDOdP38ef39/zpw5k60Hc1JSEgcOHKB69epXTfCkaERHR1OzZk3WrVtHixYtnB1OsWQYBmlpabi6ul51TT56nksJYLPZiImJITAwsEROKZNSxt4KLCoKTp82R66u8b3TZhjEJCUR6OmJVVXNpYTT8zkXx46Z08kNw5wFM3eu2aM7J+npZsG1Dh2gfPmijrTYiI2NZcaMGcTGxtKyZUtuueUWp8Rx9uxZypcvz7lz5yhXQMuF9JWslAipqamcOnWKl19+mRtvvFEJt4iIFL2UFNi7V63AROTq5swxE26AQYNyT7gFgC1btrBw4UJHdfKGDRs6O6QCpaRbSoTVq1fTpUsX6tSpw8yZM50djoiIlDVqBSYieZWWBvbCti4u0K+fsyMqtlJTU1m0aBGbN2+GElyd/GqUdEuJ0LlzZ8r4SggREXEGeyuwPXvUCkxE8mbFCvOLOoAuXaBSJWdHVCydOnWKH3/8kdiMYnOdO3emQ4cOpXIpmZJuERERkZzYW4EdPmyus6xc2dkRiUhJoAJqeeLq6kp8fDw+Pj4MGTKkxBdLuxIl3SIiIiKZ2VuBRUVBQgKEhakyuYjkzeHDkNEth6pVoVUrZ0dUrNhsNsdItr+/P3fccQcVKlQoddPJL1f6xu5FRERE8isxEbZtM1uBGYZagYnItbl8lLsUTpXOr9jYWD7//HOioqIc+8LDw0t9wo1GukVEREQyWoHFxMCuXeZazKCga24FJiJlXEoKREaa225uKqCWSebq5EuXLqVOnTp5am1bWijpFhERkbItJQX27zfbgVmtEB6uVmAicu2WLYOzZ83trl0hIMDZETnd5dXJa9SowaBBg8pUwo2SbhERESnTTp82124fP25WGPbxcXZEIlJSZZ5aPmSIMyMpFmJjY5kxYwaxsbFYLBY6depUaquTX03Zu8cihSg6OhqLxeL4Nm/FihVYLBbO2r/1FBGR4iE9HfbtMwsexcWZa7eVcItIfh04YNaCAKheHZo3d3ZETnXu3DkmT55MbGwsvr6+3H333XTq1KlMJtwo6S466elmy77vvzf/T08v3NsbNWoUFovF8a9ixYr06tWLrVu3XvP1DBw48IrnZL6dnP6NGzfuOu9NwRg3bhwWi4VevXplO/bOO+9gsVjo3Llzgd7mTTfdxPHjx/H39y/Q6xURketw4QJs3gxbt4K7O4SGqve2iFyfzKPcgwaV+SUq/v7+NGnShBo1avDAAw8QERHh7JCcStPLi8Ds2fDEE3DkyKV9VarABx8Ubuu+Xr16MXXqVABOnDjByy+/zC233MKhQ4cK9HaOHz/u2P7xxx/597//naUqYXGqSBgSEsLy5cs5cuQIVapUceyfMmUK4eHhBX577u7uBAcHF/j1iohIPthscOyYWSwtPh5CQsxiRyIi1yMpCRYuNLc9PKBvX2dH5BSxsbF4eXk5Pvv36tULq9VaZke3M9MjUMhmz4Zbb82acIPZ/vPWW7N+KVbQPDw8CA4OJjg4mGbNmvH8889z+PBhYmNjHeds27aNrl274uXlRcWKFbn//vuJj4+HjJHhr776innz5jlGrVesWJHtduy3ERwcjL+/PxaLJcu+H374gfr16+Pp6Um9evX49NNPs/z8v/71L+rUqYO3tzc1atTglVdeITU11XF83LhxNGvWzJEY+/r68vDDD5Oens7bb79NcHAwgYGBvPHGG1d9TAIDA+nRowdfffWVY9+ff/5JXFwcfXN4g/zyyy+vGPvatWtp3rw5np6etGrVik2bNmU5fvn08lOnTjFs2DDCwsLw9vamcePGfP/991l+pnPnzjz++OM899xzVKhQgeDg4GIzW0BEpMRKTITt22HDBjP5rlpVCbeIFIzffoPz583t7t2hDM5w3LJlC5MnT2b27NnYbDYAXF1dlXBn0Eh3IUpPN0e4DSP7McMwZ508+SQMGFD4s9ri4+OZPn06tWrVomLFigAkJCTQs2dP2rZty7p164iJieG+++7j0UcfZdq0aTz77LPs3LmT8+fPO0bMK1SocE23++233/Lvf/+bjz/+mObNm7Np0ybGjBmDj48PI0eOBMDPz49p06YRGhrKtm3bGDNmDH5+fjz33HOO69m3bx8///wzixcvZt++fdx6663s37+fOnXq8Pvvv/Pnn38yevRounfvTps2ba4Y0+jRo3nuued46aWXIGOU+84777zm2OPj47nlllu4+eabmT59OgcOHOCJJ5644m0nJSXRsmVL/vWvf1GuXDkWLlzIiBEjqFmzJjfccIPjvK+++oqnn36av//+mzVr1jBq1CjatWvHzTfffE2Pv4iIACdPqhWYiBSey3tzlyEpKSn8/PPPjnpGFouFlJQUPPU+m4WS7nxo1QpOnLj6ecnJZm2W3BgGHD4MwcHmTJSrCQ6G9evzHueCBQsc0zsSEhIICQlhwYIFjm+cvvvuO5KSkvj666/xySge8/HHH9OvXz8mTJhAUFAQXl5eJCcn53uK9NixY5k4cSKDM96Aqlevzj///MPnn3/uSLpffvllx/kRERE8++yz/PDDD1mSbpvNxpQpU/Dz86NBgwZ06dKFqKgoFi1ahNVqpW7dukyYMIHly5dfNem+5ZZbePDBB1m5ciUtW7bkp59+YtWqVUyZMuWaYv/uu++w2Wz873//w9PTk4YNG3LkyBEeeuihXG87LCyMZ5991nH5scceY8mSJfz0009Zku4mTZowduxYAGrXrs3HH3/M0qVLlXSLiFyLy1uBVa1q/i8iUlD27jXrQwDUqgVNmjg7oiJzeXXyzp070759e41u50BJdz6cOGFODy8oV0rMr0eXLl2YNGkSAGfOnOHTTz+ld+/erF27lmrVqrFz506aNm3qSLgB2rVrh81mIyoqiqCgoOu6/YSEBPbt28e9997LmDFjHPvT0tKyFBb78ccf+fDDD9m3bx/x8fGkpaVRrly5LNcVERGBn5+f43JQUBAuLi5ZXtRBQUHExMRcNS43Nzfuuusupk6d6hgtb3LZG2ReYt+5cydNmjTJ8k1e27Ztr3jb6enpvPnmm/z0008cPXqUlJQUkpOT8fb2znLe5fGEhITk6b6JiEgGtQITkaIwa9al7cGDy0wBtc2bN7No0SJSU1Px9fVlyJAhZb5Y2pUo6c6HvA76Xm2k265SpbyPdF8LHx8fatWq5bj85Zdf4u/vz+TJk3n99dev7crywb42fPLkydlGn10y5tOvWbOGO++8k1dffZWePXvi7+/PDz/8wMSJE7Oc73bZujuLxZLjPvsakqsZPXo0bdq0Yfv27YwePTpfsefHO++8wwcffMD7779P48aN8fHx4cknnyQlJSXLeddz30REyrT0dDh4EHbvhtRUs3KpKpOLSGFITIRFi8xtT0/o08fZERWJtLQ0Vq1aRWpqKjVq1GDw4MFZBvEkOyXd+ZDXKd7p6RARYY6K57Su22IxPwscOFA0nwcsFgtWq5XExEQA6tevz7Rp00hISHC8UFavXu2Yrk1G9e30fPY3CwoKIjQ0lP379+e4ZpqMImbVqlVzrK8GOHjwYL5u71o0bNiQhg0bsnXrVoYPH57teF5ir1+/Pt988w1JSUmO0e6//vrrire7evVqBgwYwF133QUZ0+Z3795NgwYNCuR+iYiUaRcumMn2oUNmIaPKlZ0dkYiUZkuWQEKCud2zJxSjjj2FydXVldtuu43du3fTvn17LGVkdP96aMJ9IXJxMduCQfaZJvbL779feAl3cnIyJ06c4MSJE+zcuZPHHnuM+Ph4+vXrB8Cdd96Jp6cnI0eOZPv27SxfvpzHHnuMESNGOKaWR0REsHXrVqKiooiLi8tSVTwvXn31VcaPH8+HH37I7t272bZtG1OnTuW9996DjPXKhw4d4ocffmDfvn18+OGHzJkzpxAejeyWLVvG8ePHCQgIyFfsw4cPx2KxMGbMGP755x8WLVrEu+++e8XbrF27Nr/++it//vknO3fu5IEHHuDkyZOFcv9ERMoMwzDbhKxdaxZLCQkpk9WDRaSIlaECaps3b2bt2rWOy0FBQXTo0EEJdx4p6S5kgwfDzJkQFpZ1f5Uq5v7CfH0uXryYkJAQQkJCaNOmDevWrWPGjBl07twZAG9vb5YsWcLp06dp3bo1t956K926dePjjz92XMeYMWOoW7curVq1onLlyqxevfqaYrjvvvv48ssvmTp1Ko0bN6ZTp05MmzaN6tWrA9C/f3+eeuopHn30UZo1a8aff/7JK6+8UsCPRM58fHxyTbjzEruvry+RkZFs27aN5s2b89JLLzFhwoQr3ubLL79MixYt6NmzJ507dyY4OJiBAwcW+H0TESkzEhNh2zazFVh6ulqBiUjR2LUL/vnH3K5XD0rprMWUlBTmzp3LvHnzWLJkiQaL8sliGDlNfC47zp8/j7+/P2fOnMmWgCUlJXHgwAGqV69+3WXv09Phjz/Mei4hIdChg5aYSeEwDIO0tDRcXV3z9O1jQT7PRQqDzWYjJiaGwMBAVUSVrEpoKzCbYRCTlESgpydWjRJJCVdmn89vvAH22Zkvvnh9I2np6Wal5g4doHz5AgvxesXExDBz5sws1cnLwuj22bNnKV++POfOnctW3Dm/tKa7iLi4QMYAs4iIiFwPeyuwffvM9VpqBSYiRSkhwVzPDeDtba7nLmU2b97MwoULSUtLU3XyAqCkW0REREoOtQITEWdbvBguXjS3e/cude9DkZGRbNy4EUDVyQuIkm4REREp/uytwPbsMXtyhoWBqz7GiEgRM4zsvblLmUqVKpWp6eRFQX+tREREpHi7vBVYpUrOjkhEyqodO8z3I4CGDSGjzW5Jl5iYiJeXFwA33ngj1atXJzg42NlhlRpKukVERKR4Mgw4etScTn7hglmJVJXJRcSZMrcJGzLEmZEUiJSUFBYtWsSRI0cYM2YMHh4eWCwWJdwFTEm3iIiIFD+JieZU8gMHwMvL7LWpKY4i4kwXLlwqoObrCz16ODui6xITE8OMGTOIi4vDYrEQHR1N3VIycl/cKOkWERGR4iUmBnbuNIumBQaWmFZgIlLKLVpk1pQA6NOnxL43GYbB5s2bWbRoEWlpafj5+TFkyBCqVavm7NBKLSXdIiIiUjykppqtwPbuNS9XqaJWYCJSPBhG1qnlJbSAmn06+ZYtWwCoWbMmgwYNUnXyQqakW0RERJzvzBnYtctsBVaxojl1U0SkuNiyBfbtM7ebNoVatZwdUb4sWbKELVu2YLFY6NKlC+3bt1d18iKgr4+lROjcuTNPPvmk43JERATvv/++U2MSEZECkJ5urtteuxZiY81WYEq4RaS4KSUF1Lp06UJISAgjR45UO7AipKS7qKSnw4oV8P335v/p6YV6c6NGjcJisWCxWHB3d6dWrVr85z//IS0trUBvJzo6GovFgouLC0ePHs1y7Pjx47i6ujoKMxSkdevWcf/99xfodYqISBGLj4fNm80RJFdX9d4WkeLp7Fn47Tdz298funVzdkR5lpKS4phKDuDr68uYMWO0fruIKekuCrNnQ0QEdOkCw4eb/0dEZP3GrBD06tWL48ePs2fPHp555hnGjRvHO++8k+O5KSkp13VbYWFhfP3111n2ffXVV4SFhV3X9eamcuXKeHt7F8p1i4hIIbO3Avv7bzh8GIKDISDA2VGJiORs4UKwf1bu2xc8PJwdUZ7ExMQwefJk5s6dy/bt2x37Nbpd9JR0F7bZs+HWW+HIkaz7jx419xdi4u3h4UFwcDDVqlXjoYceonv37syfPx8yRsIHDhzIG2+8QWhoqKM9wLZt2+jatSteXl5UrFiR+++/n/j4+Kve1siRI5k6dWqWfVOnTmXkyJHZzt2+fTu9e/fG19eXoKAgRowYQVxcnON4QkICd999N76+voSEhDBx4sRs13H59PL33nuPxo0b4+PjQ9WqVXn44YezxD1t2jQCAgJYsmQJ9evXx9fX1/GlhIiIFKGkJNi+Hdavh7Q0s1iaem+LSHFVAguoGYbBpk2bmDx5MnFxcfj5+eHn5+fssMo0Jd2FKT0dnnjCfLFezr7vyScLfaq5nZeXV5YR7aVLlxIVFcWvv/7KggULSEhIoGfPnpQvX55169YxY8YMfvvtNx599NGrXnf//v05c+YMq1atAmDVqlWcOXOGfv36ZTnv7NmzdO3alebNm7N+/XoWL17MyZMnGTp0qOOc//u//+P3339n3rx5/PLLL6xYsYKNGzde8fatVisffvghO3bs4KuvvmLZsmU899xzWc65ePEi7777Lt988w0rV67k0KFDPPvss3l+/ERE5DrFxMC6dWb/7UqVzH8acRGR4mzDBjh40Nxu2dKcrVqMpaSkMHfuXObPn09aWho1a9bkgQce0HRyJ9PCqfxo1QpOnLj6ecnJkGkENxvDuDStLi/TVIKDzZGBa2QYBkuXLmXJkiU89thjjv0+Pj58+eWXuLu7AzB58mSSkpL4+uuvHW0DPv74Y/r168eECRMICgrK9Tbc3Ny46667mDJlCu3bt2fKlCncdddduF02evHxxx/TvHlz3nzzTce+KVOmULVqVXbv3k1oaCj/+9//mD59Ot0y1st89dVXVKlS5Yr38fIia6+//joPPvggn376qWN/amoqn332GTVr1gTg0Ucf5T//+U+eH0cREcmny1uBVa2qVmAiUjKUoFHumJgYZsyYQVxcnKqTFzNKuvPjxAlzenhBuVJifh0WLFiAr68vqamp2Gw2hg8fzrhx4xzHGzdu7Ei4AXbu3EnTpk2z9Olr164dNpuNqKioKybdAKNHj+amm27izTffZMaMGaxZsyZb4bYtW7awfPlyfHOoTLtv3z4SExNJSUmhTZs2jv0VKlRwTH/PzW+//cb48ePZtWsX58+fJy0tjaSkJC5evOhY++3t7e1IuAFCQkKIiYm54vWKiMh1OnMGoqLg2DG1AhORkuX0aVi2zNwuX96sy1SMnTlzxjGdfMiQIRrdLkaUdOdHcHDezrvaSLddpUp5H+m+Bl26dGHSpEm4u7sTGhqK62UVYTMn1wWhcePG1KtXj2HDhlG/fn0aNWrE5s2bs5wTHx/vGDm/XEhICHvtoyDXIDo6mltuuYWHHnqIN954gwoVKrBq1SruvfdeUlJSHEn35aPuFosFI6ep/yIicv3S083ZXFFR5t9DVSYXkZImMtKsPQHQrx9kGqwqLgzDcIxk161bl/79+1OnTp0C/5wv10d//fIjr1O809PNdR9Hj+a8rttiMQvIHDgALi4FHqaPjw+1atXK8/n169dn2rRpJCQkOF6oq1evxmq1XnWk2W706NE8/PDDTJo0KcfjLVq0YNasWURERGT7EgCgZs2auLm58ffffxMeHg4Z39rt3r2bTp065XidGzZswGazMXHiRKwZ0xV/+umnPN9vEREpYPHxZrJ9+DD4+ZlfLouIlCQ2G8yZc+nyoEHOjCZHJ0+eZOHChQwZMgR/f38Amjdv7uywJAdaUFWYXFzggw/M7cvXUtgvv/9+oSTc+XHnnXfi6enJyJEj2b59O8uXL+exxx5jxIgRV51abjdmzBhiY2O57777cjz+yCOPcPr0aYYNG8a6devYt28fS5Ys4Z577iE9PR1fX1/uvfde/u///o9ly5axfft2Ro0a5Uimc1KrVi1SU1P56KOP2L9/P9988w2fffZZvh8HERHJp8tbgQUFqRWYiJRM69Zd6j7Upo1Zi6KYMAyDjRs38uWXX3L48GGWLFni7JDkKpR0F7bBg2HmTHNaXWZVqpj7i1FBBm9vb5YsWcLp06dp3bo1t956K926dePjjz/O83W4urpSqVKlHEexAUJDQ1m9ejXp6en06NGDxo0b8+STTxIQEOBIrN955x06dOhAv3796N69O+3bt6dly5a53mbTpk157733mDBhAo0aNeLbb79l/Pjx+XgEREQk3+ytwDZsuNQKrBhOxRQRyZNZsy5tF6PP6/bq5JGRkaSlpVGrVi369u3r7LDkKixGGV/Uev78efz9/Tlz5gwBl30bn5SUxIEDB6hevTqenp7Xd0Pp6fDHH3D8OISEQIcOxWaEW0oXwzBIS0vD1dU1T9UqC/R5LlIIbDYbMTExBAYGXnHWizhRTIw5nTw21hzd1nvJFdkMg5ikJAI9PbGqqrCUcKXy+RwXB337mp/fK1aEhQsLtyZFerpZqLlDB7NgWy5OnjzJjBkzOHXqFBaLha5du9KuXTtVJy9gZ8+epXz58pw7d45y5coVyHVqTXdRcXGBzp2dHYWIiEjBUSswESmN5s0zE2GAAQOKRRHIgwcPMn36dNLS0lSdvARy/jNIRERESp6zZ2HXLrUCE5HSJT0d5s41ty2WYlNALTQ0lAoVKlCuXDkGDhyo6uQljJJuERERybvMrcCSktQKTERKl7/+MpeDAtx0k7ks1ElOnTpF+fLlsVqtuLm5cffdd+Pt7a3p5CWQ5oCJiIhI3sTHw9atsGmTmWhXqaKEW0RKl2JQQM1enfyzzz5j1apVjv0+Pj5KuEso/aUUERGRKzMMc+Rn5064cAGCg1WZXERKn5MnwZ7kBgZCu3ZFHkJKSgoLFy5k69atABw9ehTDMJRsl3BKuvPAZrM5OwSRQqPnt4hcUVIS7NkDBw6Ah4c5uq0PfyJSGs2bB/bPRQMHFvlMnpNxccz49ltHdfJu3bpx0003KeEuBZR0X4G7uztWq5Vjx45RuXJl3N3d9aSXYi+vLcMMwyAlJYXY2FisVivuGrUSkcvFxprF0tQKTERKu7S0SwXUrFazankRMQyDTXFx/Pzjj6Slp+Pn58ett95KeHh4kcUghUtJ9xVYrVaqV6/O8ePHOXbsmLPDEckTwzCw2WxYrdY8fUnk7e1NeHi4+h+LyCWpqebI9p495mW1AhOR0m71aoiJMbfbtze/aCwi5xITWXTkCOmGQe3atRk4cCDe3t5FdvtS+JR0X4W7uzvh4eGkpaWRbu/XJ1KM2Ww2Tp06RcWKFa+aSLu4uFx1RFxEyhh7K7Djx6FCBbUCE5GyYfbsS9tDhhTpTQd4e9O7ShWSwsO5qVs3fS4rhZR054HFYsHNzQ03NzdnhyJyVTabDTc3Nzw9PTV6LSJ5l54OR46YCXdSEoSGqjK5iJQNx47Bn3+a2yEhcOONhXpzhmGw6fBhgvz8CCtfHoCWlSpBy5aqmVFK6a+piIhIWZeQALt3Q3Q0lCtnFksTESkr5s41uzSQUUDNxaXQbio5LY2FW7ey7dgxAry8eKBjRzw1SFLqKekWEREpq+ytwHbtgnPn1ApMRMqetDSzajmYyXYhFlA7ef48MzZs4FRCAhaLhZbVquHh6nqpYrqUWkq6RUREyqKkJNi3z/zn4WEWS9O0RhEpa37/HU6dMrc7dYJKlQr8JuzTyX/evp00m41ynp4MadGC8AoVCvy2pHhS0i0iIlLWxMZCVBScPGlW6PXycnZEIiLOkbmA2uDBBX71aenpzN+6lW1HjwJQOzCQgc2a4a1ZRWWKkm4REZGy4vJWYOHhagUmImXX4cPw99/mdpUqcMMNBX4TLlYryampWCwWutWty001a6o6eRmkpFtERKQsOHvWHN0+ehQqVlQrMBGROXMubQ8aVGBfQhqGgc0wcLFasVgsDGjWjFPx8VTVdPIyS0m3iIhIaWazmaM5UVGQmAhhYWoFJiKSkgKRkea2qyv0718gV5uclsaCrVuxWiwMbNYMi8WCt7s73kq4yzT91RURESmt7K3ADh4EPz+1AhMRsVu+HM6cMbe7doWMftnX40RGdfLTGdXJ29WsSWC5ctcfq5R4SrpFRERKG3srsKgoc1q5WoGJiGRVgAXUDMNg46FD/LxjB+kZ1clvbdFCCbc4KOkWEREpTZKTYe9e2L/fTLTVCkxEJKvoaNiwwdyuVg1atsz3Vdmnk28/dgxUnVxyoaRbRESktIiLg127ICYGAgPVCkxEJCeXj3Ln84tJwzD4bu1aDp0+bVYnr1ePm2rUUHVyyUZJt4iISEmXlnapFZjNZo5uqxWYiEh2ycmwcKG57e4Ot9yS76uyWCx0ql2b+Vu3MqR5c1Unl1wp6RYRESnJzp0zR7fVCkxE5OqWLjXfNwG6dwd//2v68eS0NGLOn3ck2DUqV+bRzp1xdXEpjGillFDSLSIiUhKpFZiIyLWbNevS9jUWULNXJ49PTuaBDh2o4OMDoIRbrkp/nUVEREqazK3AfH3VCkxEJC/27YMtW8ztGjWgadM8/ZhhGGw4dIjFmaqTJ6WmFm6sUqoo6RYRESkpDANOnDCnk589C0FB4OHh7KhEREqGzAXUhgzJUwG15NRUFmzbpurkcl2UdIuIiJQE9lZg+/apFZiIyLVKSrpUQM3DA/r0ueqPnDh3jhkbN3I6IQFrRnXytqpOLvmgpFtERKS4UyswEZHr88svEB9vbvfoAX5+V/2RrUePcjohgXKentzasiVVy5cv/DilVFLSLSIiUlylpUF0tLl+W63ARETyL3MBtSFD8vQj3erVwwK0q1VL08nluugvt4iISHF07hxs2ABbt4K3N4SEKOEWEcmPqCjYscPcrlMHGjbM8bTj584xd/NmbDYbAC5WKzc3aKCEW66bRrpFRESKE5sNjhwxp5OrFZiIyPW7SgG1y6uTV/TxoUPt2kUfp5Ra+isuIiJSXKgVmIhIwUpIgJ9/Nre9vaFXryyHk1NTidy2jR0Z1cnrBAbSqlo1Z0QqpZiSbhEREWeztwKLioLTpyE4WK3AREQKwpIlcPGiud2zJ/j4OA4dP3eOmRs2cPriRVUnl0KlpFtERMSZLm8FFh6uVmAiIgXBMHItoLbj2DHmbN5Mus2Gv5cXt7ZoQRVVJ5dCoqRbRETEWTK3Aqtc2Zz6KCIiBeOff8wZRAANGkC9eo5DQeXKYbVYqBkUxMCmTfFSsTQpREq6RUREipq9FdiePZCebq7ddnFxdlQiIqVL5gJqgwdzMSXFUYm8kq8vY9q3p5Kvr6aTS6FT7xEREZGidO4cbNwI27aBl5fZCkwJt4hIwYqPN9dzA4aPDxvq1eP9pUs5eOqU45TKfn5KuKVIaKRbRESkKNhbgUVFmUV9QkPVCkxEpLAsWgRJSQDsa92aBXv3ArD16FGqVazo5OCkrNFfexERkcJ28eKlVmA+PmoFJiJSmAwjy9TyX+vXx2qx0L1+fW6sXt2poUnZpKRbRESksGRuBXbmDAQFqRWYiEghM7ZuxZIxsn2oalWSIyK4R9XJxYmUdIuIiBSG5GSzDdi+feDmBlWrqhWYiEgRuPDdd5TL2D7WtSsPdOig6uTiVEq6RURECtqpU2YrsJMn1QpMRKQonTuH36pVAKT5+NDmvvuwKOEWJ1PSLSIiUlAytwJLS1MrMBGRImAYBluOHKFecDCeCxdiSU4GwLV/f7NLhIiTKekWEREpCOfPm2u3jxyB8uXBz8/ZEYmIlHrJqalEbt3KjuPH2X3iBLfNno1jIc/gwc4NTiSDkm4REZHrYbPB0aPmdHK1AhMRKTLHz51jxoYNnLl4EavFQoOTJ7FER5sHW7QAVSqXYkKfCkRERPIrcyswb2+1AhMRKQKGYbD+4EGW/PMP6TYb/l5e3NqiBVXefffSSRrllmJESbeIiMi1MgyzSNquXWoFJiJShJIyppP/c/w4AHWDghjQtCleFy/CsmXmSQEB0LWrcwMVyURJt4iIyLXI3ArM1VWtwEREipDNMDhy5gxWi4Xu9etzY/XqWCwW+PFHSE01T+rXD1SxXIoRJd0iIiJ5deqUWSztxAm1AhMRKSKGYZiJNeDt7s5tLVsCUKV8efMEmw1mz770A5paLsWMkm4REZGrSUsz123v3q1WYCIiRcg+nbx2YCDNqlaFzMm23fr1cPiwuX3DDeYMJJFiREm3iIjIldhbgR0+bLYCK1fO2RGJiJQJmauT74uNNftwu7llP1Gj3FLMKekWERHJyeWtwMLC1ApMRKQIGIbBuoMH+eWy6uQ5JtxxcbB8ubldsSJ07lzk8YpcjT49iIiIXE6twEREnCLX6uS5FUaLjIT0dHO7f399OSrFkp6VIiIidvZWYFFRcPo0BAaCp6ezoxIRKRNS09OZ/McfnL54EavFws3169PGXp08JzYbzJljblssMHBgkcYrkldKukVERABSUmDvXrUCExFxEjcXFxqGhrLt6FFubdGCsMsLpl3ur7/g2DFzu21bcxmQSDGkpFtEREStwEREnCIpNZWUtDTKeXkB0LlOHW6qWTPn9duXUwE1KSGUdIuISNllbwW2Z49agYmIFLFjZ88yc+NGvNzcuOemm3B1ccFqteJptV79h2Ni4I8/zO3KlaF9+0KPVyS/lHSLiEjZdHkrsMqVnR2RiEiZYBgG66Kj+WXnTtJtNgwvL84nJVHBxyfvVzJv3qUCagMHqoCaFGt6doqISNlibwUWFQUJCWoFJiJShJJSU5m/ZQs7T5wAoF5QEP2vVJ08J2lpMHeuuW21woABhRStSMHQpwwRESk7EhPNVmDR0WoFJiJSxOzTyc/ktTp5bv780+w0AdCuHQQHF0q8IgVFSbeIiJR+mVuBnToFQUFqBSYiUoQMw2Dxjh2cuXiRAC+vvFUnz03mAmpDhhRYjCKFRUm3iIiUbikpsH+/2Q7MaoXwcLUCExEpYhaLhUHNmrFi9256NWx4bdPJMzt+HFavNreDg81WYSLFnJJuEREpvU6fNke3jx+HSpXgWor0iIjIdTl29iyHTp/mxho1ACjv48Og5s2v70rnzjVnL5FRQE0dJ6QEUNItIiKlT3q6uW57zx5ITVUrMBGRImQYBmujo/nln3+wGQaB5cpRo1Kl67/itDSzajmY7+kqoCYlRB6a4BWtTz75hIiICDw9PWnTpg1r16694vnvv/8+devWxcvLi6pVq/LUU0+RlJRUZPGKiEgxc+ECbNoEW7eCuzuEhirhFhEpIkmpqczYsIHFO3ZgMwzqBQcT6u9fMFf+xx8QF2dud+yoVo9SYhSrke4ff/yRp59+ms8++4w2bdrw/vvv07NnT6KioggMDMx2/nfffcfzzz/PlClTuOmmm9i9ezejRo3CYrHw3nvvOeU+iIiIk9hscOwY7NoF8fEQEgJubs6OSkSkzDiaUZ38bEZ18h4NGnBDRMS1VyfPzaxZl7ZVQE1KkGKVdL/33nuMGTOGe+65B4DPPvuMhQsXMmXKFJ5//vls5//555+0a9eO4cOHAxAREcGwYcP4+++/izx2ERFxosREcyr5gQPg5QVVqzo7IhGRMmXDwYOO0e0ALy9ubdmSsICAgruBI0fgr7/M7bAwuOGGgrtukUJWbKaXp6SksGHDBrp37+7YZ7Va6d69O2vWrMnxZ2666SY2bNjgmIK+f/9+Fi1aRJ8+fYosbhERcbKTJ2HtWrM6eaVKULGisyMSESlzXF1csBkG9YODeaBjx4JNuAHmzLm0PWiQ2Y1CpIQoNiPdcXFxpKenExQUlGV/UFAQu3btyvFnhg8fTlxcHO3bt8cwDNLS0njwwQd58cUXc72d5ORkkpOTHZfPnz8PgM1mw2azFdj9EXEWm82GYRh6PkupketzOiXFHNm2twKrUsX8317VVqSYshmG+ZzWc1VKuLT0dKxWK4Zh0DgsDF8PD2pUqoTFYinY53dqKpbISCyA4eqK0a9f6XqvN4xL//T5zekK4zN0sUm682PFihW8+eabfPrpp7Rp04a9e/fyxBNP8Nprr/HKK6/k+DPjx4/n1VdfzbY/NjaWlJSUIohapHDZbDbOnTuHYRhY9S2wlAI5PqcvXICjR82WYOXKgaenmYSLlAA2w+BcaioGYFXPeCmBDMNg+5EjbD98mAEtW5JssWAAfn5+xGYa3CoonsuWEXD6NABJHTtyztsbSlPhZHuSd/q0/pYVA+fOnSvw6yw2SXelSpVwcXHh5MmTWfafPHmS4ODgHH/mlVdeYcSIEdx3330ANG7cmISEBO6//35eeumlHBOOF154gaefftpx+fz581StWpXKlSsTUNDTYEScwGazYbFYqFy5spJuKRWyPKcNAw4dMke3U1PNdX2qTC4ljM0wsACVPT2VdEuJk5SayvwtW4jK+Mx+JDaW2mFhhfp8tkRGOrY9bruNQE/PQrkdp0lPN/+vUAGUjzidu7t7gV9nsUm63d3dadmyJUuXLmXgwIGQ8UFr6dKlPProozn+zMWLF7MlFS4ZH76MXKaceHh44OHhkW2/1WpVgiKlhsVi0XNaShWLxYI1IQHr3r1m0u3vDzl0tRApKSwWC9aMfyIlxdGzZ5m5YQNnExMd1clbVatGbHJy4T2fDx6E9evN7fBwrK1aQWl73Vgsl/7ps5vTFcbn52KTdAM8/fTTjBw5klatWnHDDTfw/vvvk5CQ4KhmfvfddxMWFsb48eMB6NevH++99x7Nmzd3TC9/5ZVX6NevnyP5FhGREs4wzL6sJ06oFZiIiBMYhsHa6Gh++ecfszq5tze3tWhBaEBA4dcmyFxAbfDg0pdwS5lQrJLu22+/ndjYWP79739z4sQJmjVrxuLFix3F1Q4dOpTlm4eXX34Zi8XCyy+/zNGjR6lcuTL9+vXjjTfecOK9EBGRApOYCLt3Q3S0uW5brcBERIrcXwcO8Ms//wBQPziY/k2b4lkUX34mJ4N9arm7O9xyS+HfpkghsBi5zcMuI86fP4+/vz9nzpzRmm4pFWw2GzExMQQGBmp6uZRsJ0/Crl3YTp8mxt+fwHLlNBVXSgWbYRCTlESg1nRLCZGUmsr/Vq+mVbVq3BARgSXT87ZQn88//wz24si9e8NrrxXs9RcX6enmbK4OHaB8eWdHU+adPXuW8uXLc+7cOcqVK1cg11msRrpFRERISYH9+2HfPnMaYViYqrmKiBQhwzDYExND7cBALBYLnm5uPNixIy5F/WX+7NmXtocMKdrbFilASrpFRKT4OH0aoqLg+HGoWBF8fUtXL1YRkWIuKTWVeVu2sOvECfo0akTriAiAok+49+2DTZvM7Ro1oGnTor19kQKkpFtERJwvPd2sULtnj7mGLywMXPUnSkSkKGWuTu5itWaZRl7kVEBNShF9ohEREee6cMEslmZvBVapkrMjEhEpUwzD4O8DB/h1505shkF5b29uzahO7hRJSbBwobnt4QF9+jgnDpECoqRbREScwzDg6FFzOvmFC2oFJiLiBIkpKczfsoVdJ09CUVcnz82vv5p/FwB69IACKmYl4ixKukVEpOglJppTyQ8cMFuBVamiqYMiIk4QGx9PVEwMLlYrPRo0oHW1as6dVs5lBdQGD3ZmJCIFQkm3iIgUrZgY2LkTTp2CoCAz6RYREacIr1CBvo0aEeLv77zp5Jnt3g3btpnbdepAo0bOjkjkuinpFhGRopG5FRhA1aqgXvIiIkUqMSWFn7dvp0Pt2lT28wOgZbVqzg7rkstHuZ096i5SAJR0i4hI4TtzBnbtytoKTEREitTRM2eYuXEjZxMTiUtIYEz79s6fSp7ZxYvw88/mtpcX9Orl7IhECoSSbhERKTxqBSYi4nQ5VSe/pXHj4pVwAyxZAgkJ5navXvqCVkoNffIREZHCER9vViY/fBj8/NQKTETECRJTUpi3ZQtRGdXJG4SE0K9JE+dWJ8+NCqhJKaWkW0RECpZhwLFj5nTyCxcgOFitwEREnODsxYtMW7OGc4mJxas6eU7++ccssgnQoAHUr+/siEQKjJJuEREpOImJsHevWTBNrcBERJyqnKcn/l5eWC0Wbm3RonhUJ8+NRrmlFFPSLSIiBSMmxhzdjotTKzARESdJTEnB3dUVF6sVq9XKbS1a4OriUjynk9vFx5vruQF8fKBHD2dHJFKglHSLiMj1SU01R7b37jUvqxWYiIhTHMmoTl4vOJheDRsC4FsSvgBdvNicKQXQpw94ezs7IpECpaRbRETy78wZs1jasWNqBSYi4iSGYfDXgQP8llGdfPfJk3SpWxePktAtwjBg1qxLlzW1XEqhEvBKFBGRYic93axKHhWlVmAiIk6UW3XyEpFwA2zfbraVBGjcGGrXdnZEIgWuhLwaRUSk2IiPh9274dAhtQITEXEi+3Rye3Xyng0a0Kq4VifPTeYCakOGODMSkUKjpFtERPLm8lZgQUHg7u7sqEREyqSUtDS+W7uWxNRUynt7c1vLloT4+zs7rGtz/jz88ou57ecH3bs7OyKRQqGkW0REri4pyZz+d+AAeHioFZiIiJO5u7rSt3Fj/jl+nH5NmhTv6uS5WbTIXKIE0Levul5IqaWkW0REriwmxly7HRurVmAiIk505MwZ0tLTichY1tMwNJQGISElazq5nQqoSRmipFtERHKmVmAiIsVC5urkXm5uPNCxI34ZX4CWyIQbYPNmc/YUQPPmUKOGsyMSKTRKukVEJLuzZ82122oFJiLiVJdXJ4+oWBF3Fxdnh3X9MhdQ0yi3lHJKukVE5JLMrcCSktQKTETEiUpFdfKcnD0Lv/1mbvv7Q9euzo5IpFDpk5SIiJji481iadHRUK6cWSxNRESKXObp5DbDoIK3N7eWxOrkuVmwwFzCBNCvn1mgU6QUU9ItIlLWXd4KLDhYrcBERJzs5Pnz2AyDhiEh9GvSBI+SWJ08J4aRdWr5oEHOjEakSCjpFhEpy9QKTESk2DAMA4vFgsVioU+jRlSvVIkmYWElfzp5ZuvXw6FD5nbr1lCtmrMjEil0SrpFRMqq2FhzdFutwEREnMowDNbs38/hM2cY2rIlFosFd1dXmpbGZT4qoCZlkJJuEZGyJjXVHNnes8e8rFZgIiJOk5iSwtwtW9idUZ086uRJ6gUHOzuswnHqFCxfbm5XqACdOzs7IpEioaRbRKQssbcCO37c/MCjVmAiIk5zeXXyXg0bUjcoyNlhFZ7ISEhLM7f794fSsk5d5CqUdIuIlAXp6XDkiJlwJyVBaKhagYmIOIl9OvnSXbtKZ3XynNhsMGfOpcsDBzozGpEipU9cIiKlnVqBiYgUK4u2b2f9wYMANAwNpV/jxqWnOnlu/v4bjh41t9u21d8iKVOUdIuIlFaGYU4j37ULzp1TKzARkWKiWZUqbD16lJvr16dleHjpqk6eGxVQkzJMSbeISGmUlAR798L+/WYrsKpV1QpMRMRJDMPg5IULBJcrB0BY+fI82bUrXmXli9DYWFi50tyuVAk6dHB2RCJFSkm3iEhpExsLUVFw8qTZCszLy9kRiYiUWRdTUpi7eTP74+K4r317R+JdZhJugHnzzNoiZKzlVk0RKWP0jBcRKS1SU81127t3m5fDw9UKTETEiQ6fOcPMDRs4n5SEi9VKXKbR7jIjPf1SATWrVQXUpExS0i0iUhqcPWuObh89ChUrqhWYiIgTGYbBn/v3s8xendzHh9tatCC4NFcnz82aNebMK4CbbjLri4iUMUq6RURKMpsNDh82E+7ERAgL07Q9EREnsk8n3xMTA0Cj0FBuKQvVyXMza9al7SFDnBmJiNPok5mISEmVkGBOJT94EPz81H5FRKQY2HLkCHtiYnCxWundsCEtykp18pycOAGrV5vbQUHmSLdIGaSkW0SkpFErMBGRYqtN9erExcfTulq1sjmdPLN588wZWQCDBoGLi7MjEnEKVdgRESlJkpLgn39gwwazcFrVqkq4RUSc6GJKCot37CA1ozq31WKhX5MmSrjT0mDuXHPbxQUGDHB2RCJOo5FuEZGSwt4KLCYGAgPVCkxExMkyVydPt9no27ixs0MqPlatMv9ugdmXu3JlZ0ck4jRKukVEijt7K7A9e8xpelWrqhWYiIgT5VSdvGW1as4Oq3iZPfvStgqoSRmnpFtEpDg7d85cu330KFSoYBZMExERp8mxOnmTJnioc8QlR4+arcLA7KrRpo2zIxJxKr07iIgUR2oFJiJS7Bw/d44f1q3jfFKSqpNfydy5ZtFPgIEDNTtLyjx9ghMRKW4ytwLz9VUrMBGRYsLb3Z3U9HQq+PhwW8uWBJcr5+yQip/UVLNqORkF1Pr3d3ZEIk6npFtEpLgwDLOn6a5dcPas2dPUw8PZUYmIlGmp6em4ZbS68vfy4q42bajo66vp5Ln5/Xc4fdrc7tIFKlZ0dkQiTqe5HiIixUFystkKbN06c7tqVSXcIiJOduj0aT5evpyoEycc+0IDApRwX0nmAmqDBzszEpFiQ+8YIiLOFhdnjm6rFZiISLFgGAZ/7tvH0qgoDMNg1d691AkK0trtqzl0CNauNbfDw6FVK2dHJFIsKOkWEXGWtDSzFdju3WoFJiJSTORWnVwJdx7MmXNpe9Ag/U0TyaCkW0TEGdQKTESk2Dl0+jSzNm5UdfL8SEmB+fPNbTc36NfP2RGJFBtKukVEipLNBkeOmAm3WoGJiBQbp+LjmbZmDYZhUNHHh1tVnfzaLFtmfqEM0K0bBAQ4OyKRYkOf9EREiopagYmIFFsVfX1pER5OSmoqfZs0UbG0a2RRATWRXOndRESksNlbgUVFmW1UgoNVmVxEpBg4dPo0Fby98fX0BKBPw4ZYLBZNJ79GLtHRWDZtMi9Urw7Nmzs7JJFiRUm3iEhhSk6GvXth3z5wdzeruerDnIiIUxmGwep9+1gWFUVEhQrcdeONWC0WrCr8lS/e9rXcZIxy6++cSBZKukVECkvmVmCVK4O3t7MjEhEp8y6mpDBn0yb2xsYC4OvhQbrNhtXFxdmhlUxJSXj9/LO57eEBffs6OyKRYkdJt4hIQbO3AtuzB9LTzbXb+jAnIuJ0h06fZubGjVxISsLVaqV3o0Y0r1pV08mvx9KlWOPjze2bbwYVnxPJRkm3iEhBOnfOLJZ25AiUL69WYCIixUDm6eT26uS3tWxJkBLE62aZNevSBRVQE8mRkm4RkYJgbwUWFQUXL0JoqFqBiYgUE6np6Ww+fBjDMGgcGqrq5AVlzx4s27YBYNSqhaVxY2dHJFIs6d1GROR6Xbx4qRWYj49agYmIFDPurq7c1rIlR8+e1XTygpSpTZgxeLAeV5FcKOkWEcmvzK3AzpyBoCC1AhMRKQbs08ldrVZurFEDgKBy5TSdvCAlJsKiRQDYPD2hd29nRyRSbCnpFhHJj/R0M9net8+cRl61qlqkiIgUAwnJyczdvJm9sbFYLRZqBwZS0dfX2WGVPkuWQEICAEnduuGpx1gkV0q6RUTyY/9+M+muVEmtwEREiomDp04xa9OmLNXJK/j4ODus0inT1PKLAwfi6dRgRIo3Jd0iItfqxAlzDXeFCkq4RUSKAcMwWLVvH8tVnbxo7NoF//wDgFGvHmn16jk7IpFiTUm3iMi1uHABduww+25rKp2IiNMZhsGP69cTdfIkAE3CwujbuDHuqk5eeDK1CTMGDXJqKCIlgd6NRETyKjXV/Gb/wgVVKBcRKSYsFgvVKlZkX2wsfRo1opmqkxeu+HhYvNjc9vGBnj2dHZFIsaekW0QkLwwD9uyBo0chLExF00REnMgwDBKSk/H1NFcS31i9OvWCgiiv9duFb/Fis3I5QK9eZuKdlOTsqESKNauzAxARKRGOHDGT7sBAs1q5iIg4RUJyMt+uXcu0NWtITkuDjNFuJdxFwDCyFFBjyBBnRiNSYuiTo4jI1Zw5Azt3mkXTvLycHY2ISJl18NQpZm3cyIXkZFytVo6dPUv1SpWcHVbZsWOHWUgUoFEjqFPHTMRF5IqUdIuIXElSkvkhIzkZQkOdHY2ISJnkqE6+axcGUMnXl1tbtFB18qKWqYAagwc7MxKREkVJt4hIbmw2sy1KTAxUrersaEREyqSE5GTmbN7MvthYUHVy57lwAX75xdz29YUePZwdkUiJoXcrEZHcREfDgQMQHAxWlcAQEXGGJTt2sC82FlerlT6NG9OsShVVJ3eGhQvNWV8AfftCRhE7Ebk6Jd0iIjmJiTFHuQMCwMPD2dGIiJRZPRo04EJyMr0bNiRQ08md4/ICappaLnJNNHQjInK5hASzH7dhgD7giYgUqYTkZNZFRzsu+3p6MrJtWyXczrRlC+zfb243awY1azo7IpESRSPdIiKZpaWZCffZs1ClirOjEREpUzJXJ/dyd6eRClgWDyqgJnJdlHSLiNgZBuzdC4cPQ1gYaM2giEiRMAyDVXv3sjwqylGdPNDPz9lhCZhfQi9dam77+0O3bs6OSKTEUdItImJ37JjZf7RSJVBVXBGRInF5dfKmVarQp1EjVScvLhYsgJQUc/uWW1TnRCQf9G4mIgJw7hzs3Gl+mPDxcXY0IiJlQubp5K5WK30bN6aZWjQWH4YBc+ZcujxokDOjESmxlHSLiCQnm+u4ExK0jltEpAglpaVxITmZSr6+3NaypaaUFzcbNsDBg+Z2y5YQEeHsiERKJCXdIlK22WzmlPLjx5Vwi4gUAcMwHH226wYFMaRFC+oEBmo6eXGUuYDakCHOjESkRFPLMBEp2w4fNtugBAWBi4uzoxERKdWiT53is5UrOZeY6NjXKDRUCXdxdPo0LF9ubpcvD126ODsikRJLSbeIlF1xceY6bl9f8PR0djQiIqWWYRis3LOHr9esIebCBZZHRTk7JLmayEizjSZA//7g5ubsiERKLH2tKCJl08WLsGOH+YGicmVnRyMiUmrlVp1cijGbDWbPvnRZBdRErouSbhEpe9LTISrKnDqnddwiIoUmOqM6ebyqk5csa9fC0aPmdps2+lspcp2UdItI2bN/Pxw4AKGhYNUqGxGRwrDn5Em+X7cOA1SdvKRRATWRApXnpHvlypXZ9nXs2LGg4xERKVwnTpij3BUran2aiEghiqhUiUA/P4L9/enTqJGKpZUUcXFg/9xfsSLo877Idcvzu1/nzp2xWCwYhgGAxWIhPT29MGMTESlY58+b67hdXc3iaSIiUqCOnztHULlyWC0W3FxcuOemm/DQF5wly7x55jIsgAEDzL+ZInJd8vwqOnDgQOFGIiJSmFJSzErl8fEQFubsaEREShWbYbBq715WREXRuW5dOtauDaCEu6RJT4c5c8xti0UF1EQKSJ6T7mrVqhVuJCIihcUwYM8esyhMWJj5QUJERApEQnIyszdtYn9cHABnL17EMAwseq8tedasMZdhAdx0E4SEODsikVKhwOaLGIbB8uXLSU5Opn379vipUIaIFBdHjsDevRAYqGlyIiIFKDoujlmbNqk6eWmRuU3Y4MHOjESkVMnXp8+XXnqJP//8k+XLl0NGwt2jRw+WLVuGYRiEh4ezdOlSatasWdDxiohcm9On4Z9/wMcHvLycHY2ISKmQeTq5AVT29eVWVScv2U6cgFWrzO2gIGjXztkRiZQa+eqVM2vWLG644QbH5ZkzZ7J06VJef/11FixYQHp6OuPGjSvIOEVErl1ioplwp6RA+fLOjkZEpNQ4nZDAyj17MIBmVatyX/v2SrhLunnzwGYzt1VATaRA5evVdPToUWrVquW4PHv2bBo0aMALL7wAwEMPPcSkSZMKLkoRkWuVnm62BouNhSpVnB2NiEipUsnXl76NGmGxWDSdvDRISzOTbgCr1Uy6RaTA5Guk29XVleTkZMiYWr506VJ69erlOB4UFERcRjENERGniI42/wUFmR8gREQk32yGwco9ezh69qxjX/PwcCXcpcWqVRATY2536GD+7RSRApOvT6KNGjVi+vTpnDlzhqlTp3Lq1Cn69u3rOH7w4EEqVapUkHGKiORdTAzs2gX+/uDh4exoRERKtPjkZL79+2+WR0Uxc8MGUtLSnB2SFDQVUBMpVPmaXv7vf/+bfv36ORLrdu3a0aVLF8fxhQsX0rp164KLUkQkr+LjzXXcFguUK+fsaERESrQDcXHMzqhO7ubiQue6dXHXWt/S5dgxs1UYQGgo3HijsyMSKXXy9a558803s3HjRn799VcCAgK4/fbbHcfOnDlDx44dGaC1ICJS1FJTYedOOHtW67hFRK6DzTD4Y88eft+921Gd/LaWLamsYmmlz5w5YBjm9sCB4OLi7IhESp18f1XZoEEDGjRokG1/+fLl+e9//3u9cYmIXBvDgH374PBhCAszR7pFROSaJael8dP69ezPqM/TrGpVejdsqBHu0igtDebPN7ddXKB/f2dHJFIqXde7519//cXy5cuJiYnh4Ycfpnbt2ly8eJFdu3ZRp04dfH19Cy5SEZErOXYM9uyBypXV5kRE5Dq4u7jgarXi5uJC38aNaaqZQ6XXihVw6pS53bkzqCaTSKHI1yfTlJQU7rjjDubNm4dhGFgsFvr160ft2rWxWq306NGDp556ipdeeqngIxYRudzZs+Y6bg8P8PZ2djQiIiWOzTCw2Wy4urhgsVgY0KwZCcnJmk5e2qmAmkiRyFf18ldeeYUFCxYwadIkoqKiMOzrQABPT09uu+025tl7/YmIFKbkZHMd98WLULGis6MRESlx4pOTmf7330Ru3er4TOft7q6Eu7Q7fBjWrjW3q1QBFUEWKTT5Srq///57HnroIe6//34qVKiQ7Xj9+vXZv39/QcQnIpI7mw2iouD4cQgJcXY0IiIlzoG4OD5fuZIDcXHsPHGCMxcvOjskKSqXj3Jb85UWiEge5Gt6eUxMDI0bN871uIuLCxf1pi0ihe3QIdi/H4KCVG1VROQa2AyDlRnVyQEq+/lxW4sWVPDxcXZoUhRSUiAy0tx2c4N+/ZwdkUiplq+ku2rVquzatSvX46tXr6ZWrVrXE5eIyJXFxZnTyv38wNPT2dGIiJQY8UlJzN60iQMZBbSaVa1Kn0aNcNOXl2XH8uVmPRSALl2gfHlnRyRSquVrHsnw4cP5/PPPWbNmjWOfJaM9z+TJk/npp5+4++67Cy5KEZHMLl6EHTvM6eUBAc6ORkSkxDAMg+lr13Lg1CncXFwY2KwZA5o2VcJd1syadWl7yBBnRiJSJuR5pHvbtm2OKeUvvfQSf/31Fx07dqR+/fpYLBaeeuopTp8+zZEjR+jTpw9PPfVUYcYtImVVWpo5wn3qFISHOzsaEZESxWKx0KN+fX755x+GtGihYmllUXQ0bNxobkdEQIsWzo5IpNTL80h3y5YteeGFF0hKSsLd3Z3FixczdepUatSoQb169UhOTqZJkyZMmzaNyMhIXPSNqYgUhv37zbXcoaGQMcNGRERyF5+UxIG4OMflGpUrc3/Hjkq4y6rMBdQGDdLfUpEikOeR7nvvvZd33nmHGTNmMGnSJG6++Wbuuusu7rrrrsKNUETE7vhx2L0bKlQwC7+IiMgV7Y+LY/amTaSmp/NAhw6OQmlWJVplU1ISLFhgbru7wy23ODsikTIhzyPdkyZN4s8//8TPz49evXpx1113ERsbW7jRiYjYnT8P//xjJtu+vs6ORkSkWLMZBit27+abv/4iITmZAC8vRw9uKcOWLjX/ngJ07w7+/s6OSKRMuKbq5TfccAMbNmzggw8+YOzYsfz888+89dZbtGzZMsfzW2iNiIgUhJQUM+GOj4cqVZwdjYhIsXZ5dfLmVavSW9XJhcumlquAmkiRueaWYVarlaeeeor+/fvTpk0bHnzwwWznGIaBxWIhPT29oOIUkbLKMGDPHjh2DMLCnB2NiEixZp9OnpCcjJuLC7c0bkwTfVkpAHv3wpYt5nbNmtCkibMjEikz8tWne+nSpTz00EOcPXuWhx56iNatWxd8ZCIiAIcPmx8UAgPBNV9vWSIiZcbukydJSE4m0M+P21q2pJKW44hd5lHuwYNVQE2kCF3TJ9jY2Fieeuopvv/+e5o0acKaNWuUcItI4Tl92mwP5uMDXl7OjkZEpNi7uX59vN3daVujhqaTyyWJibBwobnt6Ql9+zo7IpEyJc+F1CZPnky9evWYO3cuEyZMYP369Uq4RaTwJCaa67hTU6F8eWdHIyJSLB2Ii+On9etJt9kAcLFa6Vi7thJuyeqXXyAhwdzu0UMFSUWKWJ5Huh944AF69erFpEmTqFatWuFGJSJlW3o67NoFMTFQtaqzoxERKXZshsHK3bv5fc8eANZGR9O2Rg1nhyXF1eVTy0WkSOU56f7++++5/fbbCzcaERGA6GjzX0gIWPM8IUdEpEyIT0pi1qZNRGeqTt5KAyKSm127YMcOc7tuXWjY0NkRiZQ5eU66lXCLSJE4edL8gFC+PLi7OzsaEZFiRdXJ5ZqpgJqI0+U56e7atWu2fcuWLSvoeESkLIuPN9dxW63g5+fsaEREipUNBw+yYNs2AFUnl7xJSIDFi81tb2/o1cvZEYmUSXlOurWOW0QKVWqqWan83DnQqI2ISDbVKlbEzcWFRqGh9G7USMXS5OoWL4aLF83tXr3MbiAiUuTynHRPnTq1cCMRkbLLMMxe3IcPQ1iYpr6JiGQ4l5iIf0bLxEq+vjzcqRMB3t7ODktKAsNQATWRYkIVikTE+Y4ehT17oHJlcM3zd4EiIqWWzTBYHhXFh8uWcTCjYBqghFvy7p9/ICrK3G7QAOrVc3ZEImWWPt2KiHOdPWtOK/f0NNebiYiUcReSkpidqTr53thYqlWs6OywpKSZNevS9pAhzoxEpMxT0i0izpOUZH4Tn5hoTisXESnj9sfGmtXJU1JUnVzyLz4efvnF3PbxgR49nB2RSJmmpFtEnMNmg9274cQJFU4TkTLPZhj8vns3K/fsAVUnl+u1aJH5xTZA376QURdARJxDSbeIOEd0NOzfD0FBoAq8IlLGRZ044Ui4W4SH06thQ1Unl/wxjKxTy1VATcTpil0htU8++YSIiAg8PT1p06YNa9euveL5Z8+e5ZFHHiEkJAQPDw/q1KnDokWLiixeEcmH2FizuEu5cuZabhGRMq5ecDDNq1ZlULNm9GvSRAm35N/WrbBvn7ndpAnUquXsiETKvGI10v3jjz/y9NNP89lnn9GmTRvef/99evbsSVRUFIGBgdnOT0lJ4eabbyYwMJCZM2cSFhbGwYMHCQgIcEr8IpIHCQnmOm6bDfz9nR2NiIhT2AyDNfv20bJaNTzd3LBYLPRv2tTZYUlpoAJqIsVOnpJuq9WKJR99c9PT06/p/Pfee48xY8Zwzz33APDZZ5+xcOFCpkyZwvPPP5/t/ClTpnD69Gn+/PNP3NzcAIiIiLjmOEWkiKSlwa5dcPo0VK3q7GhERJziQlISCzdu/H/27ju+qbr7A/gn3YsOuikFyqbQwV4WFVTcCsijOBgucPz0EfVxo6iPuH3cghM3IMsBqCAIKKLsvXf3TGfaJvf+/jhNU6BAmya5GZ/369WXN2mbHDAk99zv+Z6DrJISZJaUYGzfvladZxGdRq8Hli+X49BQYMQIrSMioqYm3dOmTTvtw2DhwoXYuXMnRo4ciW7dugEA9uzZg19++QW9evXCtdde26xAampqsHHjRjz22GP193l5eeGiiy7CunXrGv2d77//HoMHD8Y999yDxYsXIzo6GjfeeCMeeeQReJ+hLKu6uhrV1dX1t0tLSwEAiqJAUZRmxUzkjBRFgaqqzvd6VlXgwAHg6FEgPt5yH9E5KKoqr2m+XsgNHMrPx6ItW1BRUwM/b290i4uDCkDl65ts4ccf4VVTAwBQr7gCqr+/3T9r+R5tA6pq+XK28zcPZI9z6CYl3c8888xJt2fNmoW8vDzs2LGjPuE22717N4YPH442bdo0K5CCggKYTCbExsaedH9sbCz27NnT6O8cOnQIv/32G2666SYsWbIEBw4cwN13343a2lo8/fTTjf7OjBkzMH369NPuz8/PR03dmxSRK1MUBXq9HqqqwsvLido2FBVJ0h0aCphM8kXUBIqqQl9bCxWAF1cDyUUpqoqNhw5h05EjAICw4GBc0qsXWoeEIM/cZZqoJVQVUfPn1zdsKrjiCpgc8Nrie7QN1NQAOp2cKzEf0Zxer7f5Y1q1p/uVV17Bvffee1rCDQA9evTAvffei5dffhl33HGHLWI8I0VREBMTg1mzZsHb2xt9+/ZFZmYmXnnllTMm3Y899himTp1af7u0tBSJiYmIjo7mXnByC4qiQKfTITo62nmS7tJSICsL8PMD+O+MmklRVegARAcE8ISOXFK5wYAFW7bgaFERAKB3YiJ6d+yI+OBgvqbJdjZuhNexYwAAtU8fRDZynm4PfI9uodpaoKQESEoC2rfnRBcn4OfnZ/PHtCrpPnHiRP0e6sb4+vrixIkTzXrMqKgoeHt7Izc396T7c3NzERcX1+jvxMfHw9fX96RS8h49eiAnJwc1NTWN/oX5+/vD39//tPu9vLycJ0EhaiGdTuc8r+maGtnHXVHBedxkNZ1OB6+6LyJX4+PtjaLKSvh5e+PK1FT0bNMGeQYDX9NkWwsX1h/qRo92aJ8AvkdbyWgEsrMl4e7VCzhLfkWOY4/zZ6sesVevXnjvvfeQmZl52vdOnDiB9957DykpKc16TD8/P/Tt2xcrVqyov09RFKxYsQKDBw9u9HeGDh2KAwcOnFR3v2/fPsTHx9vlCgURNZOqAvv2AZmZwBkunhERuaOGe7SD/Pxwfd++uCMjAykJCZrGRW6quBgwn0OHhwPDh2sdEZ2L0SjnR4mJQHIyE243Z9VK9xtvvIGRI0eia9euGDVqFDrXzf/bv38/Fi1aBFVV8eWXXzb7cadOnYoJEyagX79+GDBgAP73v/+hoqKivpv5+PHjkZCQgBkzZgAA7rrrLrzzzju4//778X//93/Yv38/XnjhBdx3333W/LGIyNaOH5dZoXFxgI9TTSgkIrKbMoMB8zdtQnpiItLrJjUkRERoHRa5sx9+kCQOAK66SrZzkfMymSThTkgAUlKARqpwyb1YdRZ83nnnYf369XjqqaewcOFCVFVVAQACAwMxcuRITJ8+vdkr3QBw/fXXIz8/H9OmTUNOTg7S09OxbNmy+uZqx44dO2m5PzExET///DMeeOABpKamIiEhAffffz8eeeQRa/5YRGRLhYXA7t1ASAgQEKB1NEREDnEwPx8LNm9GZU0NCioq0LNNG/hyjybZk6KcVFqO0aO1jIbORVGkz018PJCaynMkD6FTWzijQlEU5OfnA4BzNW5qotLSUoSFhaG4uJiN1MgtKIqCvLw8xMTEaPfvsaoK2LBBGoM0c5IB0akUVUWewYAYNukhJ6YoClbt24c1Bw4AAGJDQzG2Tx9EhoSc/rN8TZMtrV8P3HOPHA8YALz3nkOfnq/nZlBVWeGOjAR69waCg7WOiBpRUlKCiIgI6PV6hIaG2uQxW1zv6eXlhYCAAISEhLhcwk1EdmAySeO0/HzZp0RE5ObM5eTm7uR927fHpcnJ8OEKNznCggWWY65yOy9zwh0RAaSlMeH2MFZnyRs2bMCll16KoKAgREZG4vfffwfq5m1fc801WLVqlS3jJCJXcfgwcOSIlE3xQhwRuTlDbS1mrlmDo0VF8PP2xpjevXFlSgoTbnKMggLAfM4dGQlccIHWEdGZZGcDYWGScLdqpXU05GBWnRH/+eefOO+887B//37cfPPNJ3UPj4qKgl6vx8yZM20ZJxG5gtxcYO9euYrLJi5E5AECfH3RJzERsaGhuDMjA73YnZwc6fvvpcIMAK6+mk1LnVVODhAUJAl3WJjW0ZAGrEq6H3/8cfTo0QO7du3CCy+8cNr3L7zwQqxfv94W8RGRqygrA3bulNVtXsElIjdWZjCgpLKy/vYFXbvitqFDG92/TWQ3JhOwaJEc63TAqFFaR0SNyc2V7uTp6bIoQR7JqqT7n3/+waRJk+Dv7w9dIw0TEhISkJOTY4v4iMgV1NZKp/LSUiA6WutoiIjs5mB+Pj5YvRrzNm6EsW6F0cvLix3KyfH++ku6YAPA4MFsXOqMCgoAb29Z4Y6M1Doa0pBVNSi+vr4nlZSfKjMzEyG82kvkGVQV2L8fOHFC5k2ycykRuaFTu5O3CghAVW0tWjHZJq2wgZpzKyyUc6T0dC5IkHUr3YMGDcJ3333X6PcqKirw6aef4vzzz29pbETkCjIzgQMH5AOFe8mIyA2VGQz4/K+/6hPuvu3b4/ahQ9GK83VJK7m5wNq1chwTA5x3ntYRUUPFxVIFmJICxMVpHQ05AavOkKdPn47zzz8fV1xxBcaNGwcA2Lp1Kw4dOoRXX30V+fn5eOqpp2wdKxE5m+JiYNcuIDBQGoQQEbmZg/n5WLB5MyprauDn44OrUlPRi2W8pLXFiy0N1K65hhe9nYleDxgMUlLOxopUx6p/oQMHDsSSJUtw1113Yfz48QCABx98EADQqVMnLFmyBKmpqbaNlIici8EgCbfBwA8VInJLqqritz17UFlTg7jQUFzXpw+bpZH2jEZJugFpXnrttVpHRGZlZUBFBZCaCiQmah0NORGrL4sNHz4ce/fuxZYtW7B//34oioJOnTqhb9++jTZXIyI3oijAnj1S3ta2rdbREBHZhU6nw3V9+uDvI0cwont3zt4m5/Dnn/L5CwBDhwKxsVpHRABQXi6r3L16Ae3aaR0NORmrkm69Xo+wuhlz6enpSE9Pt3VcROTMjhyRr7g46cpJROQmDuTlIbe0FEM7dwYARAQHY2TPnlqHRWQxf77leMwYLSMhs8pKoKQESE4GOnZkU1k6jVWN1GJiYnDNNdfg66+/Rnl5ue2jIiLnlZ8vq9yhoTJ3kojIDSiKghV79uCrv//G8j17cKSwUOuQiE6XnS0r3YBc+B48WOuIqKpKOpV36wZ06sSEmxplVdI9depU7Ny5EzfffDNiYmIwZswYzJs3D1VVVbaPkIicR0WF7ONWVaCu2oWIyNWVVlVh9l9/YW1dd/J+7dujbXi41mERnW7RIvkMBmQvN6vNtGUwyGJEly5A166yx56oEVa9MmbMmIEDBw5g/fr1uPvuu7Fx40Zcf/31iImJwbhx47Bo0SLU1NTYPloi0o7RKCvcRUXcP0ZEbuNAXh5mrlmDY0VF8PPxwXV9+uCKlBTu3ybnYzRK0g1Iss0GatqqqZG99Z07A927M+Gms2rRfIH+/fujf//+ePXVV7Fu3TrMmTMH3333HebOnYvQ0FAUFxfbLlIi0o6qAgcPAkePAm3asHSKiNzC6v37sXLvXgBAXGgoxvbti9bBwVqHRdS41auljBkAhg0DoqK0jshz1dZKqX/HjkCPHqw4oHOy2VC/wYMHIyoqChEREXj99ddRWlpqq4cmIq1lZwP79skHvK+v1tEQEdlEaEAAUFdOPjI5mavb5NzYQM05GI1AVhaQlAT07MkZ6dQkLX6VHD58GHPmzMHcuXOxdetWeHl54cILL8T1119vmwiJSFt6vezj9vMDuAJERC6u2miEf91JcnpiIqJCQtA2IkLrsIjO7sQJYP16OU5IAAYM0Doiz2Q0ApmZMoM7OZkLEdRkViXdx48fx9y5czFnzhxs3LgROp0OGRkZePfddzFmzBhER0fbPlIicrzqakm4Kyo4j5uIXJqiKFi5bx+2nTiBycOGIcjPDwCYcJNrWLjQcjxqFPcPa8FkkoQ7IQFISeEEF2oWq5Lu9u3bQ6fTYdCgQXjjjTcwduxYxMfH2z46ItKOokhJeXY2E24icmmlVVWYv3kzjhUVAQB2ZWejX/v2WodF1DS1tcD338uxjw9w9dVaR+R5FEVKyuPjgdRUoG5rClFTWZV0v/LKK/jXv/6FxMRE20dERM7h+HFpnhYbywYhROSyDuTlYeGWLaisqYGfjw+uTk1FzzZttA6LqOlWrgTMzYkvvBBo3VrriDyLqkrCHRUlCXdgoNYRkQuyKul+8MEHbR8JETmPwkIZD9aqFa/mEpFLUhQFv+3diz8OHgTYnZxc2YIFlmM2UHMsVZWS8ogIIC2NvW3Iak1Kuj///HOrHnz8+PFW/R4RaaiyUvZx19ZyHAkRuazV+/fXJ9zsTk4u68gRYMMGOW7XDujbV+uIPEt2NhAWJgl3q1ZaR0MurElJ98SJE5v9wDqdjkk3kasxmYC9e4GCAu7jJiKXNqhjR+zNzcV5nTuznJxcV8MGaqNHAzqdltF4lpwcIChIEu6wMK2jIRfXpKT78OHD9o+EiLR36JBcVY+LY2dUInIpiqJgR1YWUhISoNPpEODrizszMqBjkkKuqroa+PFHOfbzA668UuuIPEdurnQnT0+X0nKiFmpS0t2eHT6J3F9OjnQrb91aPtyJiFxEw+7k1UYj+nfoANRV3RG5rBUrAL1ejkeMAMLDtY7IMxQUSAPZtDQgMlLraMhNWNVIraFdu3bh6NGjQF1ynpycbIu4iMiRysqAnTvlQyYkROtoiIiabH9eHhZu3oyq2lr4+fggmBcNyV2wgZrjFRZK87T0dCA6WutoyI1YnXQvXrwYU6dOxZEjR066PykpCa+//jqu5gxBItdQWyuN08rKuI+biFzGqd3J48PCcF2fPuxOTu7h4EFgyxY57thRVl3JvoqL5ZwoPV222RHZkFVJ95IlSzBmzBi0b98eL7zwAnr06AEA2L17N2bNmoXRo0fjxx9/xKWXXmrreInIllQV2L9fxmEkJLBBCxG5hIbl5ADQv0MHXNKjB7uTk/touMrNBmr2p9cDBoNc3EhI0DoackM6VVXV5v7S4MGDUV1djTVr1iD4lCvKFRUVOO+88xAQEIB169bZMla7KC0tRVhYGIqLixHOvTLkBhRFQV5eHmJiYuB1rmZox48DmzbJnqXAQEeFSNQsiqoiz2BATEAAvHjiSQCOFhZi9rp18PPxwdWpqUh2se7kfE3TWRkMwKWXAuXl0sxr2TKnHlfl8q/nsjL5Sk0F2MeKAJSUlCAiIgJ6vR6hoaE2eUyr2hNv27YNEyZMOC3hBoDg4GBMnDgR27Zts0V8RGQvxcXA7t0yDoMJNxG5kPaRkbg6LQ13ZmS4XMJNdE6//CIJNwBccolTJ9wur7xcVrmTk2UOOpGdWJV0BwQEoKiupKsxRUVFCAgIaElcRGRPBoM0Tquulm7lREROTF9VhS/Xr0d+WVn9femJidy/Te6JDdQco7ISKCmRhLtjR5bwk11ZlXQPHz4cb775ZqPl4+vXr8dbb72Fiy66yBbxEZGtKQqwZw+Ql8dGIUTk9Pbn5mLm6tU4mJ+PH7ZtgxW74ohcx969wI4dcty1K9Czp9YRuSeDQTqVd+sGdOrEhJvszqpGai+//DIGDx6M8847DwMGDEC3bt0AAHv37sXff/+NmJgYvPTSS7aOlYhs4cgR4PBhSbjPteebiEgjJkXBylO6k1+bns7Z2+Te2EDN/gwGWXjo2lW+eC5EDmBV0p2UlIRt27ZhxowZWLp0KebMmQPUzem+//778eijjyImJsbWsRJRS+XlySp3eLg0ZyEickL6qirM37QJx4uLAXYnJ09RWSlN0wDptcIpQLZXUwPk5gJdugDduzPhJoexek53TEwM3njjDbzxxhu2jYiI7KOiQuZxqypgo06MRES2ll9Whk///BNVtbXwd9Hu5ERW+fln+awGJOEOCdE6IvdSWwtkZ8v+7R49AF7EIweyOuluzKFDh1BdXV0/t5uInITRKAl3SQnQtq3W0RARnVFkcDCiQkJgVBRc16cPm6WR55g/33I8erSWkbgfoxHIygKSkmSfvI9NUyCic7KqpuKtt97CDTfccNJ9EydORJcuXdCrVy/069cPeXl5toqRiFpCVYEDB2Qmd3w894cRkdMpraqCSVEAAF5eXri+Xz/cOmQIE27yHLt2yfYvQLppcwHLdoxGIDMTSEyUv1tfX60jIg9kVdL90UcfITY2tv72zz//jM8//xx33nkn3n77bRw6dAjTp0+3ZZxEZK2sLGDfPiAqild2icjp7MvNxQerV2P57t319wX7+3P/NnmWUxuokW2YTJJwJyQAKSnsZ0OaseoM/OjRoyeVkM+dOxdJSUl4//33AQA5OTn44osvbBclEVlHrwd275YPGa4YEZETMSkKftuzB38eOgQAOFZUBKPJxGSbPE95uaWBWnAwcMklWkfkHhRFFh7i4yXhDgjQOiLyYFYl3afOyPzll19wzTXX1N/u0KEDcnJyWh4dEVmvulrK1SoquI+biJyKvqoK323ahBN13ckHdOiAi9mdnDzV0qUyxgoALr8cCArSOiLXp6qScEdFAamp/DslzVlVXt61a1csXLgQqCstz8rKwmWXXVb//RMnTiA8PNx2URJR8ygKsH+/dOmMj9c6GiKievtyczFz9WqcKC6Gv48Pxvbti8t69WLCTZ5JVdlAzdZUVUrKIyKAtDRW+pFTsGql+6GHHsKNN96IiIgIVFRUoEePHhg5cmT993/77Tekp6fbMk4iao6CAuDwYSA2liMxiMhpVNXUYMHmzag2GtEmLAzX9emDCJ4Qkyfbvl2anQKyItuli9YRub7sbCAsTBLuVq20joYIsDbpvuGGGxAZGYklS5YgPDwcd999N3zqGjQVFRWhdevWuOWWW2wdKxE1RWGhdCoPDub+JSJyKoF+frgqNRXHiopYTk4ENlCzuZwcKSVPS5PEm8hJ6NRTN2h7mNLSUoSFhaG4uJgl8eT6Kiuh/P038srKEBMfDy+OByM3oKgq8gwGxAQE8DXtgvbl5sLX2xtJUVFah+I0+JomAEBpKXDZZdKDpVUr2dvtghfLneb1nJsL+PkBvXsDkZHaxUEur6SkBBEREdDr9QgNDbXJY7ZoflBmZiZWr16NvLw8jBkzBm3btoXJZIJer0dYWBi8eQWbyHFMJmDvXqC4WBqHEBFpyKQoWLFnD9YdOoRgPz9MGTYMIS6YUBDZzU8/ScINAFde6ZIJt9MoKJDtdGlpTLjJKVnVSE1VVUydOhVJSUm46aabMHXqVOzbtw8AUF5ejg4dOuDtt9+2daxEdDaHDsk+7rg4gCsnRKQhfVUVPlu3DuvqxoH1SkhAgK+v1mEROQ9VZWm5rRQWyt9nWhoQHa11NESNsirpfuWVV/Dmm2/ioYcewq+//nrSCLGwsDCMHj0a8xt2YiQi+8rJkVXuyEiAJ7ZEpKFTu5P/q29fXNqzJ/dvEzW0ebNcKAeAPn2ApCStI3JNJSVAba3M4Y6L0zoaojOyqrz8ww8/xPjx4/HCCy+gsLDwtO+npqZi6dKltoiPiM6ltBTYuRPw8QFCQuRqLxGRg6mqil93765f3W4TFobr+vZFBOfjEp2Oq9wtp9cDVVWywp2QoHU0RGdlVdJ9/PhxDBky5IzfDw4ORmlpaUviIqKmqKkBdu8Gysv5gUNEmquo2586MCkJF/foAW8vqwrqiNxbSQmwYoUch4UBw4drHZHrKSsDKipkzFpiotbREJ2TVUl3TEwMjh8/fsbvb9y4Ee3atWtJXER0LqoK7N8PZGZKws193ESkAUVV4aXTQafT4YqUFPRq0wZdYmO1DovIef3wg5REA8DVV0vHbWq68nJZ5e7VC2C+QS7CqkvQo0ePxgcffIBDdSVkAKCrO+H/5Zdf8Nlnn2Hs2LG2i5KITnfiBHDgABATI6XlREQOZFIU/LprF+Zs2FDf28XPx4cJN9HZqCqwcKHl9qhRWkbjeiorpVIgORno2JELDuQyrEq6p0+fjvj4eKSnp2P8+PHQ6XR46aWXcN555+Gyyy5DamoqHn/8cdtHS0SiqAjYtQsIDgYCA7WOhog8jLk7+Z+HDmFfbi4ON9LfhYgasWEDcOyYHPfvz5Xa5jAYpFN5t25Ap05MuMmlWJV0h4WF4a+//sJ//vMfZGZmIiAgAL///jtKSkrw9NNPY82aNQhi4xQi+6iqkoS7pgaIiNA6GiLyMPtyc/HBKd3JO0ZFaR0WkWtoON1nzBgtI3EtBgOQlwd06QJ07QqwXwS5GKtrUgMDA/Hkk0/iySefbPT7hw8fRhLHHxDZlskko8Hy84G2bbWOhog8iElRsGLPHnYnJ7JWYSGwcqUct24NnH++1hG5hpoaIDdXEu7u3Zlwk0uy+at227ZtuPHGG9GtWzdbPzQRHTkiX7Gx/NAhIodatGVLfcI9MCkJtw4dyoSbqDm+/14unqOugZqvr9YROb/aWiA7W/Zv9+gBeHtrHRGRVZq10r1z5068//77OHjwICIiIjB27FiMqmsAsWnTJjz55JP4+eef4evri5tvvtleMRN5prw8YM8eGS/i7691NETkYQZ17IjDBQW4IiUFPeLjtQ6HyLUoCrBokRzrdMC112odkfMzGoGsLCApCejZk01jyaU1+dX7119/Yfjw4TAYDPX3zZkzB6+//jqMRiMeeeQRtGrVCg8//DDuv/9+xPMDmch2ystlH7dOB4SGah0NEXkAk6Igq6QEia1bAwASwsNx/4gR8OVKE1HzrV8vIz4BYNAgbhE7F6NR/r4SE6VTOasCyMU1Oel+9tlnERAQgIULFyIjIwOHDx/GpEmTMG3aNFRVVWHq1Kl44oknEBYWZt+IiTxNbS2we7eMyOCHNBE5QEllJeZv2oTs0lLcPnQo4uo+25lwE1mJDdSazmSShDshAUhJYXUfuYUmbwpdv3497rnnHowcORJBQUHo2bMnXn/9dZSVleG+++7Dyy+/zISbyNZUFTh4EDh+HIiP53gMIrK7vbm5mLlmDU6UlMDHywvl1dVah0Tk2vLzgTVr5Dg6GjjvPK0jcl6KIgl3fLwk3AEBWkdEZBNNXukuKSlB165dT7rPfHv48OG2j4yIZC/T/v3yIc29TERkRyZFwfI9e/AXu5MT2dbixZYGatdcw8/zM1FVOe+JjgZSUwG+95AbafK/elVV4X1KWZn5dgCvQhHZXkmJ7OP29+cHDxHZVUllJb7btAmZJSVAXXfyi3v0gDenJBC1jMkELFwox15ebKB2JqoqK9wREUBaGhAcrHVERDbVrEttS5YsQU5OTv3tyspK6HQ6zJs3D1u2bDnpZ3U6HR544AHbRUrkSaqrZR93ZSX3cROR3e3IykJmSQkCfH1xTVoausfFaR0SkXv480+ZMQ0AQ4cC/LfVuOxsmc6Slga0aqV1NEQ2p1NVVW3KD3o182q3TqeDyVxK48RKS0sRFhaG4uJihIeHax0Okexn2rEDOHBAEu5mNi5SVBV5BgNiAgLgxT3g5Ab4mrY/RVXx6+7dGNChA8vJHYCvaQ/ywAOW/dxvvAFkZGgdkc21+PWckyN7t/v0kZVuIo2VlJQgIiICer0eoTaaGtTkle7Dhw/b5AmJ6ByOHQMOHwZiY5udcBMRNUVJZSV+378fl/fqBV9vb3jpdBiZnKx1WETuJScH+OMPOY6NBYYM0Toi55ObK9vo0tOZcJNba3LS3b59e/tGQkRAQQGwZ4+UVrFXAhHZwd6cHCzauhWG2lr4+/jg0p49tQ6JyD0tWiTVawAwahQvpJ+qoED+TtLSgMhIraMhsiu2TyRyFpWVwM6d0nSF4/eIyMZO7U6eEB6OQUlJWodF5J6MRkm6AUksr7lG64icS2GhNE9LT5du5URujkk3kTMwGqVxWlERkJiodTRE5GZO7U4+KCkJF7E7OZH9rFkjK7kAMGwYE8uGSkqA2lpJuNlYjjwEk24iZ3DokOzljo8H2FSHiGzoSEEB5mzcCENtLbuTEznKggWW49GjtYzEuej1QFWVlJQnJGgdDZHDMOkm0lp2NrBvH9C6NeDrq3U0RORmIoKDoasrJ7+uTx+Eszs5kX2dOAGsWyfHCQnAwIFaR+QcysqAigogJYVVfeRxmHQTaam0FNi1S5LtkBCtoyEiN2Fe1QaAsMBATBg8GFEhISwnJ3IE815u1DVQ4787oLxcVrl79QLYnJk8kFXvArfeeivWr19/xu///fffuPXWW1sSF5H7q6mRhLu8HIiK0joaInITe3Jy8OZvv2FvTk79fbGhoUy4iRyhthb4/ns59vYGrrpK64i0V1kp+7iTk4GOHbmNjjySVZ/An332GQ4ePHjG7x8+fBizZ89uSVxE7k1Vgf37gawsNhEhIpswKQp+3rkTczZsgKG2FhuOHtU6JCLPs2qVNEUFgOHDOQrLYJBO5d26AZ06MeEmj2WX8vKsrCwEBgba46GJ3MPx48CBA0BMDODDXR5E1DKndicf3LEjRnTvrnVYRJ6HDdQsDAYgLw/o2lW+WG1DHqzJZ/uLFy/G4sWL62/PmjULy5cvP+3nSkpKsHz5cvTv3992URK5k6IiGQ8WHAzw4hQRtdCenBws3rq1fh/3tWlp6MYKGiLHO3oU+OcfOW7XDujXT+uItFNTA+TmAl26AN27M+Emj9fkpHvXrl2YN28eAECn02H9+vXYuHHjST+j0+kQHByMYcOG4fXXX7d9tESurqpK9nHX1nIfNxG1WI5ejzkbNgDsTk6kvYULLcejR3tuKXVtrUxm6dgR6NFD9rYTebgmJ92PPfYYHnvsMQCAl5cXPv74Y9x44432jI3IvZhMwJ49UmrFURlEZANxYWHo1749fL29MaJ7dzZLI9JKdTXwww9y7OsLXHml1hFpw2iUfjVJSUDPntxCR1THqn8JiqLYPhIid3f4MHDkCBAfzzIrIrLa3pwcJISHIyQgAABwea9e0HnqihqRs1i5UkZiAcCIEUB4uNYROZ454U5MlE7ldWMLicjK7uVE1Ey5ucDevUBEBODnp3U0ROSCTIqCZTt34tsNG7BgyxYoqgrUbe0iIo3Nn285HjNGy0i0oSiScCckACkpgL+/1hERORWrk+6lS5fi4osvRmRkJHx8fODt7X3aFxFB5nDv3i2r261aaR0NEbmg4spKfPLHH1h/+DAAIC40FGpd0k1EGjt0CNi8WY6TkoD0dK0jcixFkbFgcXGScNdV4RCRhVVJ9/z583HllVciNzcXN9xwAxRFwbhx43DDDTcgMDAQqampmDZtmu2jJXI1tbWScJeUANHRWkdDRC5od3Y2Zq5ejSy9HgG+vrihf39ckpzM/dtEzsKTG6ipqjRNCwuThJuNHIkaZdWe7hkzZmDAgAFYu3YtiouL8f777+PWW2/F8OHDceTIEQwaNAhJSUm2j5bIlaiqzOI+flzKrTzpQ5iIWsykKPh19+761e224eEYw+7kRM7FYAB+/FGO/f2BK67QOiLHUVUgM1P2r7drJ6NQiahRVl0m37VrF2644QZ4e3vDp64rYW1tLQCgQ4cOuPvuu/HSSy/ZNlIiV5OZCezfLyvc7N5JRM1kUhQcyMsDAAzu2BEThwxhwk3kbJYvB8rK5Pjii4HQUK0jchzzCndqKhAYqHU0RE7NqkwgKCgIfnXNoMLDw+Hv74/s7Oz678fGxuJw3ZV5Io9UUiJl5QEBLLUiIqv4+fhgbN++KKmqQrfYWK3DIaLGNGygNnq0lpE4Vk6OnN+kpUniXXeBkIgaZ9VKd7du3bBr16762+np6fjiiy9gNBphMBjw9ddfo127draMk8h1GAzArl1AVRUQGal1NETkIszdydcdOlR/X2xoKBNuIme1fz+wfbscd+kie5o9QW6ulNKnp8tUFiI6J6uS7lGjRmHx4sWorq4GADzxxBNYtWoVwsPDER0djTVr1uDRRx+1daxEzk9RgH375ApwXJzW0RCRi2jYnXz57t3QV1VpHRIRncuCBZZjT2mgVlAAeHtLSTkXFoiaTKfaaObImjVrsGDBAnh7e+OKK67AhRdeaIuHtbvS0lKEhYWhuLgY4eHhWodDru7QIWDbNtnHrdHIDEVVkWcwICYgAF6ecAJAbs/dX9O7s7OxeOtWVBuNCPT1xbXp6ejK1W235u6vaY9QWQlcdhlQUSH7mZcuBUJCtI7KvgoLZXEhPf2khQVFUZCXl4eYmBh4caoCuYGSkhJERERAr9cj1EZ9GmzW3SkjIwMZGRm2ejgi15OfD+zdK01UOKOSiM7htO7kERG4rk8fhLEhEZHz++UXSbgBYORI90+4S0pkDOopCTcRNQ1bKhPZQkWF7ONWFGkoQkR0FoqqYva6dTheXAwAGNKxI4Z3787Z20Su4tTScnem10ufmrQ0GYFKRM1m1ae7qqqYOXMmBgwYgKioKHh7e5/25cMRSeQpjEZgzx6gqAhgSSgRNYGXToce8fEI9PXFuP79cXFyMhNuIlexe7dcaAeAHj2A5GStI7KfsjJZWOjVC0hM1DoaIpdlVWb8n//8B6+//jrS09Nx8803I4KdC8lTqSpw8CBw9CjQpo1nNFEhIquYFAVlBkP9rO1BSUlIadMGIdyOQuRaPGWVu7xcVrl79QLat9c6GiKXZlXSPXv2bIwZMwZz5861fUREriQ7W7qVR0YCvr5aR0NETqq4ogLfbdqEaqMRd2RkwN/HBzqdjgk3kaspLweWLZPj4GDZz+2OKiuB4mKgZ0+gY0cuKhC1kFVJd1VVFS666CLbR0PkSvR6KTHz83P/BipEZLVTu5MXlpejDadlELmmZctkfzMg3cvrKlfcisEgncq7dwc6dWLCTWQDVm0gGzFiBP755x/bR0PkKmpqJOEuLweiorSOhoickNFkwtIdOzB340ZUG41oGxGBycOGMeEmclWq6v6l5QYDkJcHdOkCdO0KsNcEkU1Y9S/pvffew19//YUXXngBhYWFto+KyJmpqpSUZ2ZybAYRNaq4ogKf/Pkn/j5yBKjrTj5x8GCOAyNyZTt3yuc/IPucu3bVOiLbqqkBcnOBzp1llZsJN5HNNKm8vFWrVtCdUlpiNBrx1FNP4amnnkJAQAC8vb1P+r5Op4Ner7dttETO4PhxaZ4WFwewSz8RNeLX3buRrdcj0NcX16anoysnGxC5vvnzLcdjxmgZie3V1kqfmo4dpSP7Kef1RNQyTcoYxowZc1rSTeSRCgulrDwkBGADJCI6g8tTUqACuLRnT65uE7mD0lLgl1/kOCQEuPhirSOyHaMRyMoCkpKkcRoXFIhsrkn/qj777DP7R0Lk7KqqZC5nTQ33cRPRSYorKrA7JwdDOnUCAIT4++P6fv20DouIbGXJEqC6Wo6vuMJ9LrwbjbJdLjFR5o1zEguRXVi1WePZZ5/Fjh07zvj9nTt34tlnn21JXETOxWQC9uwB8vO5j5uITrIrOxsz16zBr7t3Y2dWltbhEJGtuWsDNZNJEu6EBCAlBfD31zoiIrdlVdL9zDPPYNu2bWf8/o4dOzB9+vSWxEXkXA4fBo4cAeLj2ViEiIAG3cnn1XUnT4yIQNuICK3DIiJb27oVOHRIjtPTZYyWq1MUSbjj4yXhdpeVeyInZZdNG0VFRfDz87PHQxM5Xm4usHcvEBEhM7mJyOMVV1Rg3qZNyK5rGDqkUycM79YN3rwoR+R+3K2BmqrKHu7oaCA11T1njRM5mSYn3atXr8aqVavqby9YsAAHDhw47edKSkowZ84cpKSk2C5KIq2UlcmIEC8voFUrraMhIiewJycHi7ZsQbXRiEBfX4xKT0cXdicnck8lJcCKFXIcFgYMH651RC2jqrLCHREBpKUBwcFaR0TkEZqcdK9cubK+ZFyn02HBggVY0HB/SwPJycl4++23bRclkRZqa6VTeWkp0Lat1tEQkZPQ6XT15eRj+vRhd3Iid/bjj9JAFQCuvNL19z1nZ8vFg7Q0LiYQOVCTk+7//Oc/uPfee6GqKmJiYvDBBx9gzCklNjqdDkFBQQjgvhBydaoK7N8PnDghDUY4Mo/Io5kUpb50vFtsLMb1749O0dEsJydyZ6c2UBs1SstoWi4nR0rJ09Ik8SYih2ly0h0YGIjAuqv5hw8fRnR0NIK4B4TcVWYmcOCA7HfivEoij7YrKwvL9+zBhMGD61e1u7KcnMj9bdwIHDsmx/36AR06aB2R9XJzZZU+PV1Ky4nIoay6RN++fXsm3OS+iotlHndgIJuLEHkwo8mEJdu3Y96mTSiurMSfBw9qHRIROVLDBmquPCasoADw9pamaZGRWkdD5JG4hEfUkMEgCbfBIGXlROSRiioq8F2D7uRDO3XChd26aR0WETlKURGwcqUcR0QAF16odUTWKSyUMvn0dCAmRutoiDwWk24iM0UB9uyREiw2TiPyWLuysvD9tm3sTk7kyb7/HjAa5fjqqwFfX60jar6SEmkKm54OxMVpHQ2RR2MHGCKzI0fkKy5OyrDINTzyCLBtmxwrCvDyy8A11wDXXgvMmXPm37vnHuCGG4AbbwRuv10uuJgdOwbcequUE44fDzS1rLi5v6eqwJQpwAUXnHz/mjUyC3bUKODhh4Hycrm/sFAe13wiSDa3IzMT8zZtqu9OPnnYMCbcRJ5GUYCFCy23XbGBml4PVFVJSTkr94g0x6SbCADy84G9e4HQUNcfB+JJduyQkW6pqXJ7yRLg8GHpNjt7NvDFF2dOfF98Efj2W+Drr4GbbgLqRiICAF54QU6yFiyQJLfh986mub/31VenV1VUVgLPPQe89pqc9EVFAR9/LN+LjJSusz/91LR4qNm6xcUhNjQUQzt1OqlxGhF5kL//loaqADBokOtVv5WVARUVQK9eQGKi1tEQEZNuIsgH065dcmWbIzRcy4IFwMiRltu//ior3N7e8v/y4ouBn39u/HcbzictL7eMhSsqkvnsl10mt0eMkC0Hx4+fPZbm/t7Bg8DvvwMTJ558/59/At26Wbrkjh178p9h5MiTR9hQix0uKICiqgAAX29v3D50KC7q0YPjwIg8lSs3UCsvl1Xu5GSgfXutoyGiOlbv6d69ezc+/fRTHDp0CMXFxVDrTljMdDodVqxYYYsYiezHaJSy4qIiXg12RRs3Snm4WU4OEB9vud2mDbB9+5l/f9o0eQwAePNN+W9urqwom0fF6XRAbKw89tleI835PaMR+O9/gaeeAk5N7HJyTt5716aNdJ41GuWxu3eXcXbl5UBIyNn/fuisjCYTftm1C/8cPYoLu3XDsC5dAAA+3F5C5Lny84HVq+U4MhIYNkzriJquslImsPTsCXTsaLmYTESasyrp/uKLLzBp0iT4+vqiW7duiGhk3t+pSTiR01FVWW08elQSG344uZ68vJaNP3n2Wfnvjz8Cb70lX44wa5Z0wk1KArKymve7Pj6ySl9QwKS7BYoqKjBv40bklJYCdQk4EREWLwbM7wfXXmu5kOrsDAbp+9G9O9CpE89piJyMVe8kzzzzDHr37o2lS5ciKirK9lEROUJ2NrBvn+yZdcWupAQEBADV1ZbbcXHy/9W8xzsrq2kdW6+8EpgxQzq9xsbKiYt5ZVlVZRX7XI/TnN/btElWtOfOlZO7igrgqquAzz+Xn1+/3vKzWVnyGm144ldTw94DLbCzrjt5TV138tG9e6MzR+kQkckELFokxzqdJN2uwGCQi9Bdu8oXt8YQOR2r/lVmZWXh1ltvZcJNrkuvl33cfn5AcLDW0ZC1unSRSgWziy6SEyaTSf4f//orcMklp/9eWZmUEJqtWiV7wMPCgNatZU/10qXyvRUrZLapuUR82jTL7NaGzvV7DX30kayu//CDHAcHy3FEBDB4sGx5OHJEfnbevJP/DIWFltJ1ahajyYSftm/Hd5s2ocZoRLvWrTFl2DAm3EQk1q2TC6IAMHToyduVnFVNjVzg7dxZVrmZcBM5JatWulNTU5HV3JJIImdRXS0Jd0WF63UkpZMNHw789RcwcKDcvvxy+X9rbnxz001yIgJI07LVq2UfdXm5jBqrrpYTlIgI4I03LOV4jz8uncc//VQS4qeftjzn7t0yaqwxZ/u9556TvYHnn3/2P1NwMPDkk8CDD8rFg06dTu6Cvm6djBjjiVWzFVVUYHNdY7vzOnfGhV27wot/j0Rk5moN1GprpbqrY0egRw+OOyVyYjrVis3Xf/zxB8aOHYvvvvsOQ4YMsU9kDlJaWoqwsDAUFxcjPDxc63DI3hQF2LkT2L9fEm43/IBSVBV5BgNiAgLg5e57uiorZS72p58CjhjtVFwMPPEE8N579n+uM7n9dokhKUm7GBzMlq/prSdOINjPj6vbpCmPep92FTk5wNVXy3lCbKzs7Xbm/dxGo4w1S0qS0WAabpNTFAV5eXmIiYnhhUxyCyUlJYiIiIBer0doaKhNHtOqd5OXXnoJYWFhyMjIQHJyMtq1awfvU5IXnU6HxYsX2yRIIps5fhw4dEg+UN0w4fY4QUHA1Kly4mFe0baniAhtE+7CQuC66zwq4W4Jo8mEX3bvRlrbtkiou6iaxuoWImrM4sWScMMFGqiZE+7ERBkNxr40RE7PqneUbdu2QafToV27digvL8euXbtO+xkdr9ySsykslL2yISHSgIvcw4ABWkfgOJGRwKWXah2FS2jYnfxAXh7uueACzt0mosYZjZYGat7ewDXXaB3RmZlMknAnJAApKWyqSeQirEq6j5gb/BC5ispK2etbWyudoInIbTXsTh7k54fLe/Viwk1EZ7Z2raW55nnnSRNMZ6QoknDHx0vCzQUEIpfhxLUzRDZiMgF798pcY5aWErkto8mEn3ftwoa6jvbtWrfGmN69EeqI/f5E5LoWLLAcjxmjZSRnpqoyQjI6WsZiBgVpHRERNUOLku7ff/8dP/30E47WneC0b98eV1xxBc4/V3deIkc6dEjGL8XFseMzkZuqrKnBF3/9hZzSUoDdyYmoqTIzZSoEALRpAwwapHVEp1NViTMiAkhL46hTIhdkVdJdU1ODcePGYdGiRVBVtb7rd0lJCV577TWMGjUK33zzDXzZ2IG0lpMD7NsnM5T9/LSOhojsJNDXF60CAlBqMGBUejq7kxNR0yxaJEkt6hqoOeOFuuxsICxMEu5WrbSOhoisYNU7y/Tp07Fw4UI8+OCDyM7ORlFREYqKipCTk4OHHnoICxYswLPPPmv7aImao6xMxoN5e0vzNCJyK0aTCTVGI1DXvPPa9HRMzshgwk1ETWM0At9/L8fe3jIyzNnk5EgpeVqaJN5E5JKsSrq//vprTJgwAS+//DJiY2Pr74+JicFLL72E8ePH44svvrBlnETNU1srjdPKytg4jcgNFZaX4+M//sBP27dDrVulCvLz4/5tImq6VatksgkAXHCB850v5OZKd/L0dCktJyKXZVXSnZ2djYEDB57x+wMHDkROTo7VQb377rvo0KEDAgICMHDgQPz9999N+r1vv/1WVjuuvdbq5yY3oKpSUp6VJR0+Ob6ObM1kAjZsAJYtk/+aTFpH5FF2ZGVh1tq1Mg4sPx9lBoPWIRGRK2rYQG30aC0jOV1Bgay+p6bKuEgicmlWJd1t27bFqlWrzvj933//HW2t7BI9Z84cTJ06FU8//TQ2bdqEtLQ0jBw5Enl5eWf9vSNHjuChhx5CRkaGVc9LbuTECeDAAenw6cMG/WRjv/0GXHUVMGUK8OST8t+rrpL7ya6MJhN+2r4d8zdtQo3RiHatW2NyRgZXt4mo+Y4fB8yLOomJQP/+WkdkUVgoCwhpac47voyImsWqpHvChAmYO3cupkyZgr1798JkMkFRFOzduxd33XUX5s2bh4kTJ1oV0Ouvv4477rgDkyZNQnJyMj744AMEBQXhk08+OePvmEwm3HTTTZg+fTo6duxo1fOSmyguBnbvlv1PPBEnW/vtN+A//wFOvQiYlyf3M/G2G31lJT7588/6cWDnde6MCYMGMeEmIus0XOUeNcp5GqiVlMgWuZQUmbpCRG7BqmXAxx9/HAcPHsSsWbPw4Ycf1o9kURQFqqpiwoQJePzxx5v9uDU1Ndi4cSMee+yx+vu8vLxw0UUXYZ15nEMjnn32WcTExOC2227DmjVrrPkjkTswGGQfd3W1jP0gsiWTCXj11bP/zGuvAeefLyWBZDOKqmLpli3QV1UhyM+P3cmJqGVqaoAffpBjX1+pVnIGej1QVSUr3AkJWkdDRDZkVdLt7e2Nzz77DFOnTsWSJUtOmtN9+eWXIzU11apgCgoKYDKZTmrOBgCxsbHYs2dPo7+zdu1afPzxx9iyZUuTnqO6uhrV1dX1t0vrZroqigJFUayKm5yAosgKd24u0LatZfyHB1JUFaqqQvHgvwO72LwZXufY5oLcXCibNwN9+zoqKo8xtFs37Dh2DKN690ZoQABf3+TS+D6tsd9+g1dJCQBAHT4cani49ucNZWVAebmscCckyHmNizAvuvE8mtyFPV7LLdrwmpqaanWCbQtlZWW45ZZb8OGHHyKqiR0nZ8yYgenTp592f35+PmpqauwQJTlETg5w5Ih09/Tw/4+KqkJfWwsVgBebyNlMQHY2wpvwc6XZ2TCwsVeL6SsrUVpVhcTISCiqipBWrXBJWhoMAP9+yeXxfVpbrb/7Dn51x0VXXIFard9TDAagogJo1w4ICDh9C5OTUxQFer0eqqrWV78SuTK9Xm/zx3SqLlNRUVHw9vZGbm7uSffn5uYirpF9LQcPHsSRI0dwVYOyIPOVCR8fH+zduxedOnU66Xcee+wxTJ06tf52aWkpEhMTER0djfDwppxSk9PJzwcyM2V+ZatWWkejOUVVoQMQHRDAkzlbio9v0o+FVlQgNCDA7uG4s51ZWfhx2zZAp8Md552H8KAgvqbJrfB9WkOHD8OrrjpS7dABEYMGaTvlpLJSVriTk4FOnVxy4oqiKNDpdIiOjmbSTW7Bz8+vCT/VPE1Kur28vODl5YXKykr4+fnBy8sLunO8Keh0OhiNxmYF4+fnh759+2LFihX1Y78URcGKFStw7733nvbz3bt3x/bt20+678knn0RZWRnefPNNJCYmnvY7/v7+8Pf3P+OfkVxMRYWUlet0knQTUPfvz6vui2ykd29ZgTjHiojXq6/KNocpU2S+KjWZ0WTCsl27sLFuy1K71q3h5+0NL52Or2lyO3xNa2ThwvpD3ejR0Gl57mcwAEVFQPfuQOfOztPMzQo6nY7n0uQ27PE6blLSPW3aNOh0OvjUjV8y37aHqVOnYsKECejXrx8GDBiA//3vf6ioqMCkSZMAAOPHj0dCQgJmzJiBgIAA9OrV66TfN69Wn3o/uSGjURqnlZTIPm4ie/r993Mm3PW++AJYswZ45hmA70VNUlhejnmbNiG3rs9GRufOuKBrV3h5eXHfKxHZhsEA/PSTHPv5AVdcoW0seXlA167yxWSVyK01Kel+5plnznrblq6//nrk5+dj2rRpyMnJQXp6OpYtW1bfXO3YsWO8ikbS8OTAAZmzmZDgkuVY5ELy8oD//tdyOzQUqEsOAQCxscADDwDZ2cD770tfgSNHgFtvBSZMAO64Q07wqFE7MjPxw7ZtqDGZEOTnh9G9e6NTdLTWYRGRu1m+3PLeffHF2lXI1dRIRVSXLrLKzfNaIrenU9XmLyE8++yzGD169BlXk3fu3In58+dj2rRptojRrkpLSxEWFobi4mLu6XYlmZnAxo1AeDgQHKx1NE5FUVXkGQyI4V5B21AU4N57gb//ltvDhwMvvABs2QIUFABRUVJ6bh4TduiQrHDv2mV5jM6d5b7u3bX5Mzi5n3fuxF+HD6N969YY06cPWp2yJ56vaXI3fE1r5NZbgW3b5Pjjj2U0l6PV1gJZWUDHjlIJ5eNU7ZWsoigK8vLyEBMTw4UxcgslJSWIiIiAXq9HaGioTR7Tqn8ZzzzzDLaZ37QasWPHjkY7hBPZhF4v+7j9/Zlwk/19/bUl4Y6JAZ54Qk6S+vUDLr1U/ttwLnfHjsAnnwB33WU5mTpwQFa8Z82SbRGEhtd7L+rRA5f36oXxgwadlnATEdnEgQOWhLtTJ0CL6TtGoyTcSUlAz55ukXATUdPY5XJUUVGRXbq+EaG6WlYQKypkhZHInvbtA95913L7mWeaVo7o4wPcdpvs7e7aVe4zmSTpnjhRTv482PbMTHz999/10ya8vbzQv0MHrpAQkf3Mn285HjPG8dvSjEap0ktMlE7lvr6OfX4i0lSTL7GtXr0aq1atqr+9YMECHGjkxLGkpARz5sxBSkqK7aIkQl2Z7759sm+WjdPI3gwG4MknpRQQAG6+GRgwoHmP0aULMHu2rHx/8okk3nv2ALfcAtx5p/zXg1Y6ak0m/LxzJzYeOwYA2HT8OPq1b691WETk7qqqgCVL5DggALj8csc+v8kkCXdCApCSwskWRB6oyWd7K1eurC8Z1+l0WLBgARYsWNDozyYnJ+Ptt9+2XZREgDRNO3RImlY1LOclsoe335bXGyCr1Xffbd3j+PoCkycDw4YBTz8tj1lbKyvoq1YB06cDHTrYNHRndFp38i5d0KeRsY5ERDb3889SIQcAl1wChIQ47rkVRRLu+HhJuLmFhsgjNbmW7z//+Q/y8/ORl5cHVVXxwQcfID8//6SvgoICVFZWYseOHRg4cKB9IyfPUlAg+7hDQviBRfb3xx/AnDly7O8PPP98y7uP9+gBfPmllJeby6h37gRuuknuN5laHreT2p6ZiVlr1iC3tBRBfn64eeBADO/WjeXkROQYDReJxoxx3POqquzhjo6WPeRBQY57biJyKk1e6Q4MDERgYCAA4PDhw4iJiam/TWRXlZWSnBiN8sFFZE9FRcCzz1pu33+/NEezBT8/6YR+/vmyP/zoUelT8L//yar300/Lfj83svbAAazYswcAztidnIjIbvbssUyT6NZN9lM7gqrKCnd4uHRJZ+NXIo9m1TKDoihYvnz5Gb//ww8/4MiRIy2Ji0iY98AWFUlZOZE9qSrw3HNAYaHcHjoUGDvW9s+TkgJ89ZWscpub+WzZAowbJyvsdQ3G3EH3uDj4+fhgWJcu7E5ORI6nVQO17GxpvJmeDrRq5ZjnJCKnZVXS/dBDD+Gtt9464/ffffddPProoy2Ji0gcOgQcOSJ7oViKSvY2fz6wZo0cR0QA06bZ7wQtIAB44AHpaG5uDGgwAK+8IvvHs7Ls87wOkF9WVn8cFRKC+y68EBeynJyIHK2iQvZzA1LaPXKkY543J0eeLy2taRMviMjtWXUGtG7dOlx88cVn/P6IESOwxnziSmStnBxg714gMpKjNcj+jhwB3njDcnvaNHnt2Vvv3sA335y8or5hA3DDDbIPscE8a2dXazLhh23b8P7q1ThqrhYAEMxOvUSkhWXLZIsaAFx6qWNKvHNzpRdIerpcvCUisjbpLi4uRquzlMqEhISgsMEJF1GzlZbKPm4fH8d2GSXPVFsr48Gqq+X22LFARobjnj8wEHjkEeD996WqA3W9DF54AbjvPjmJc3IF5eX4eO1abDp2DKqqIkuv1zokIvJkqnpyafno0fZ/zoICma6SmuqYi7ZE5DKsSrrbtWuHP/7444zfX7NmDdpyjjJZq6ZGOpWXlwNRUVpHQ57ggw+kdwAg47vuv1+bOPr3l1XvUaMs961bB1x/PfDDD0676l3fnbysDMF+frhl4EAMtlXzOSIia+zcCezbJ8c9ewLdu9v3+QoL5T06LQ2IibHvcxGRy7Eq6R43bhy++eYbvPXWW1AaNPwxmUx48803MWfOHNx44422jJM8haoC+/dLx8+4OMc1PCHPtWED8PnncuzjI+PBtGz2FRICPPGEzAk3n7iVl8s876lTZSXFSZjLyRds3oxakwkdIiMxedgwdOSUASLSWsMxYfZe5S4pkYqplBQ5dyEiOoVOVZu/dFJdXY0rrrgCv/32G6Kjo9GtWzcAwN69e5Gfn48LLrgAS5cuhb8L7OMrLS1FWFgYiouLER4ernU4dPw4sGmTlGVxJJ1VFFVFnsGAmIAAePGixdmVlkrHcHP59n33AePHax2VRVkZ8NprwI8/Wu4LDQX+8x9pCKTx/99tJ05g4ZYtAIBhXbrg/K5d7fKa42ua3A1f03ZWViZ7uKur5ULm0qX2O6fQ62U7UFqa2418bCpFUZCXl4eYmBg2zCS3UFJSgoiICOj1eoSGhtrkMa36l+Hv749ffvkFH3/8MQYMGICCggIUFBRgwIAB+OSTT7B8+XKXSLjJyRQVySzN4GAm3GR/qgrMmGFJuPv1A26+WeuoTtaqlczzfu01y/7A0lLZf/7II/JvRkMpCQno1749bh44ULqTM3kgImewZImlR8fll9vvnKKsTDqk9+rlsQk3ETWNVSvd7oQr3U6iqgrYuBEoLgbatNE6GpfGFZQm+vFHSWhRt3r89dfOXRZYUiLjxMzjbwAgPBx47DFgxAiHhFBrMmH1/v0Y2qkTAhw4UYCvaXI3fE3bkapKH4xDh+T2t98CnTvb/nnKy+V9uVcvoGNHzSuPtMSVbnI3TrPSTWRTJpOMBsvPd+6kh9zHiRPAyy9bbj/+uPO/9sLDgf/+F3jpJTlGXSL+yCOyB7ykxK5PX1Bejo/WrsXaAwfw47Ztdn0uIiKrbd1qSbjT0uyTcFdWyiJBcrLHJ9xE1DQ+1v5iTk4OPv74Y2zatAl6vf6khmoAoNPpsGLFClvESO7uyBH5io0FeIWU7M1olBnc5tmtV10FXHSR1lE13YgRMtt7xgxg5Uq57+efpSHcE08Aw4bZ/Cm3nTiBH7dvR63JhGA/P/Rp187mz0FEZBP2bqBmMEin8u7dgU6dmHATUZNYlXRv27YNF1xwAaqqqtCtWzds374dycnJKCkpQWZmJjp16oRE7m2hpsjLk1FNYWEA+wCQI3z6KWBeqU1IAB56SOuImq91a1mp//ln+W9pqZwETp0KXHkl8OCDsh+8hWpNJizdsQObjx8HAHSIjMTo3r3RSsvu7kREZ1JSAixfLsehobbfemMwyHlL167yxYUCImoiq94tHn30UYSEhGDv3r1Yvnw5VFXFm2++iePHj2POnDkoLi7Giy++aPtoyb2Ul0vjNJ1OPhyJ7G37duCjj+TY2xt47jlp3OeKdDrpzjt3LpCRYbn/xx9lP+Off7bo4YsrKvDR2rX1Cff5XbrglkGDmHATkfP66SegpkaOr7zStuMfa2qk8WbnzrLKzYSbiJrBqneMP/74A5MnT0a7du3qGyaYy8vHjh2Lm266CQ8//LBtIyX3UlsL7N4tV6XNs4iJ7KmiQrp+m0xy+7bbgNRUraNquago4PXXpSlcSIjcl5cn48/++1/5c1vB39cXVbW1CPb3xy2DBuECdicnImemqvYrLa+tBbKzZf92jx5y0ZaIqBmsSroVRUFsbCwAIDw8HN7e3ihqMLomJSUFGzdutF2U5F5UFTh4UJpZxcdzPxQ5xquvApmZcpyaCtx6q9YR2Y5OJ6s6c+YAgwZZ7l+4ELjhBuCff5r0MKYGvTmC/Pwwrn9/TMnIQMeoKHtETURkOxs3AkePynHfvkCHDrZ5XKMRyMoCkpKAnj0BH6vbIRGRB7Mq6U5KSsLhw4flAby8kJSUhOXmPTQA/vzzT47fojPLygL275cVOn54kSMsXw788IMcBwUBzz7rnq+92Fjg7belG3tQkNyXnQ3cdZd0Pa+qOuOvFpSXY9aaNdhSV04OAPFhYQhhOTkRuQJ7rHIbjXKxNjFROpU7cFQiEbkXq5LuSy65BPPmzau/fdddd+Gjjz7CRRddhBEjRmD27Nm48cYbbRknuYuSEtnH7e9vSQqI7Ck3F3jhBcvt//wHaNtWy4jsS6eTE85vvwX69bPcP28eMG4csGXLab+y7cQJzFqzBnllZVi9f/9JK95ERE6vqAj47Tc5Dg8HLryw5Y9pMknCnZAApKSw2SsRtYhVSfcTTzyBb775BrW1tQCAf//733j22WdRWFgIvV6Pp556Cs8//7ytYyVXV10t+7grK4HISK2jIU+gKMDTT0t3bwC4+GLgiiu0jsox2rQB3nsPePhhSzOhEyeAO+6QPeAGA2pNJny/dSsWbtmCWpMJSZGRuHXIEHizQRARuZIffpBVaQC4+mrAz69lj6coknDHx0vCzYofImohnaqqanN+QVVVlJWVwc/PDwFu8CZUWlqKsLAwFBcXsyTenhQF2LEDOHBAVhnZhMRuFFVFnsGAmIAANr76/HPgrbfkODYW+OYbz+yUf/y4NFrburX+LmNiIhaPGoUdrVsDAM7v2hXDunRxytcMX9PkbviatiFFkeqeEyfk9sKFUg5uLVWVhDsyEujd23UnXDiQoijIy8tDTExMfYNlIldWUlKCiIgI6PV6hNrovLHZ/zJqamrQunVrvGU+kSVqimPHgMOHJfFhwk2OsGePrPSiruR6+nTPTLgBOQGdNQv497/rV4B8jh/HqLffxqUrV2J8nz64oGtXnvwTkev55x9Lwj1ggG0S7vBwIC2NCTcR2Uyzk25/f3/ExcXBn3tbqKkKCiQBatWKJVrkGAYD8NRTlnLDW245eX+zJ/L2Bm6+Gfj6a+nAC8BLVTHw99+R9O9/y9YPIiJXM3++5XjMmJY9VnY2EBYGpKfLOQsRkY1YVQMyceJEfP7556ipqbF9ROReKiuBnTulIUlYmNbRkKd4802prACA7t2le7eHKygvR3FlpYzR+fhjKPfcA9XciffQIWDiRGDmTJlHS0TkCgoKgN9/l+PISOD8861/rJwcafCalsbzFSKyOatm5qSkpGDRokXo2bMnJk6ciA4dOiAwMPC0nxttq5EN5JqMRlk9KypqWbkXUXOsWSOdugHpNvv88x4/5mXbiRP4cft2RIWE4NYhQ+Dj4wOvSZOAjAxpNLd3r1wY+/BDOYGdPh3o0kXrsImIzm7xYnnvQl0DNWtHQebmyudFejoQEWHTEImIYG3SPW7cuPrjp556qtGf0el0MJnfCMkzHToke7nj42VPLZG9FRbKDG6zBx6QlV0PVWsyYemOHdhcN3s7wMcHNSYTfMx9FTp3BmbPBj75BPj4Yzl53bdPyvHvuAOYMME955kTkeszmYBFi+RYpwNGjbLucQoKZPtNaionqxCR3Vh1NrVy5UrbR0LuJTtbTt5bt/b4VUZyEFWVhLu4WG5nZLR8f58LKygvx7yNG5FXVgYAuKBrV2Q01p3cxwe4805g2DDpcH7ggFSpvP++ZdU7KUmbPwQR0Zn89ZecawDA4MEyJrG5CgvlsyM9HYiJsXmIRERmTU66H3/8cdxwww1ITU3F+S3ZM0Pur7QU2LVLku2QEK2jIU8xbx7wxx9y3Lq1NFLz0AqLrSdO4Kft21FrMiHY3x9jevdGUlTU2X+pe3cZsfbhh7L6rSjy7/imm4ApU+S/nDxARM6iYQM1a7YzlpRID4v0dCAuzqahERGdqsmN1F588UXs2LGj/nZhYSG8vb3x22+/2Ss2ckU1NXKiXl4OnOskn8hWDh2S5mlmTz8tibcHUhQFfx8+jFqTCUmRkZiSkXHuhNvMzw+45x4pNzeX5dfUyKzzO+6Q7SJERFrLzQXWrpXjmBjgvPOa9/t6PVBVJSXlCQl2CZGIqKEWTbBXVdV2kZDrU1Vg/34gK4tXjclxamqAJ58Eqqvl9r/+BQwdqnVUmvHy8sJ1ffpgeLduuHnQIIRYM6avVy/gyy9lb7e5WmDbNmDcOODbb2UVnIhIK4sXW96Hrrmmeb0nysqAigp5n2OTVyJykBYl3UQnOX5c9oPGxLD5EjnO++9L/wAA6NgRuO8+rSNyuK0nTmD1/v31tyOCgxvfv90cAQHA/fdLubn5xLS6Gnj1VSk3P3HCBpETETWT0WhpoOblBVx7bdN/t7xcVrmTk4H27e0WIhHRqZh0k20UFcl4sOBgoJHxcUR28fffwBdfyLGvr4wHs2Zl10XVmkxYvHUrFm3ZgpV79+K4uYmcLaWnA19/Ddxwg+W+TZtk1fu776TChYjIUf74A8jLk+PzzgNiY5v2e5WV0mgzOVku0Hpozw8i0kazliOPHDmCTZs2AQD0ej0AYP/+/QgPD2/05/v06WOLGMnZVVXJPu7aWu7jJsfR66Xbttk99wBdu2oZkUPll5Vh3qZNyG/QnTzhDO/FLRYYCDz0EHDBBdIhPitL/t2/+CKwcqU0reOWEiJyhAULLMdNbaBmMEin8u7dgU6dmHATkcPp1CZuzPby8oLulDcpVVVPu6/h/a4wp7u0tBRhYWEoLi4+48UDOguTSfZ6Hj4sJaheLJ7QmqKqyDMYEBMQ0LLyYmemqsAjjwDmRo4DBgDvvOMxr7+G3clD/P0xuindyW2lokKa1jU88Q0OBqZOBa6+2i4nsx7xmiaPwte0lbKyZA+3qgLx8VJmfq6pCgaDrIx37Qr06OExnxOOpCgK8vLyEBMTAy/+/ZIbKCkpQUREBPR6PUJDQ23ymE1e6f70009t8oTkZg4fBo4elQ8/vtGSo/zwgyXhDguTFW8Pef0t2bED/xw5AgBIiorC6N69EeLv77gAgoOBxx8Hhg8HnntOughXVMjxb79JU7voaMfFQ0SeY9Eiy5aWa689d8JdUyPvUV26yCq3h3xOEJHzaXLSPWHCBPtGQq6ntFQap4WHy6ghIkc4flyaeZk9/rg07/MQCeHh2ADg/K5dW94srSUGDQLmzAFee00ugqBur+W//gU8/DBw2WUs4SQi2zEapWs5IMn2Ndec/edra4HsbNm/3aPHuRN0IiI74iU/sl5+vuzrbNVK60jIUxiNsn+4slJuX301MGKE1lHZXYV5HBqAtLZtcdf55+P8rl21L0sNCZGZ6G+8AURGyn1lZcC0aZJ4FxZqGx8RuY/ff7e8p5x//tl7yBiNUoqelAT07MmJKkSkOSbdZB2jUUYGhYRoHQl5ko8/BnbskOPERGnu5cZqjEYs3rIFM9esQWVNTf390c52oSsjA5g7V1a3zVatklXv5cu1jIyI3EVTG6gZjUBmpnxGJCfLZAsiIo0x6SbrFBYCJSWAjZoLEJ3Tli2SdKOutPC554CgIK2jspv8sjJ8tHYttpw4gXKDAYcKCrQO6ezCwuT/ySuvABERcp9eDzz6KPDYY/J+QURkjePHgfXr5TghQZpnNsZkkoQ7IQFISQEc2e+CiOgsmHSTdbKzZb8mS7bIEcrLpWRZUeT2HXcAvXppHZXdbD1xAh+uXYv88nKE+Ptj/KBB6NWmjdZhNc2FF8qqd8Oy/19/lVXvVau0jIyIXNXChZbj0aMbb4imKJJwx8dLwh0Q4NAQiYjOhkk3NV9FhXQDDQvTOhLyFK+8IvvzACAtDZg0SeuI7MJcTr5oyxbUmkzoGBWFycOGoYOjxoHZSkQE8NJLwAsvWN4niopkO8C0adKEkYioKWpqLM0afXyAq646/WdUVT4joqOB1FS3roIiItfEpJuar6BAEm/u5yZH+OUX4Kef5Dg4GHj2WbftQrtq3z5sOXECOgAXdO2KmwYOdOw4MFu75BLpcD5smOW+JUuA66+XTudEROeyciVQXCzHF14ItG598vdVVVa4w8PlomxwsCZhEhGdDZNuah5FkQZqvIpMjpCTA8yYYbn9yCOyV89NDevSBYkRERg/aJBzdCe3hagoGSs2fbrlQl1+PnD//bIHvLxc6wiJyJk1bKA2Zszp38/Oloqa9HROUyEip8Wkm5qnuFjKRMPDtY6E3J3JJKXIZWVy+5JLTu6O7QZqjEZsOHoUqqoCAAJ8fTFpyBDXKyc/F50OuOIK2es9ZIjl/sWLZdXb3CCJiKihI0eAjRvluH17oG/fk7+fkyOLAGlp3PJGRE6NSTc1T26urHZzBAfZ2xdfAJs2yXFcnHTAdoeV3zrm7uQ/bd+ODUeP1t+vc6M/42liYoA33wSefNJSApqbC9xzD/Dii5b560REaGRMWMP3x9xc6U6enm6ZmEBE5KSYdFPTGQzSqIRjwsjedu8G3n9fjnU6KU12o7LBLcePn9Sd3OnmbtuTTgdcey3w7bdA//6W+7/7Dhg3znKhhYg8W3W1pZ+Hnx9w5ZWW7xUUSG+P1FQgMlKzEImImopJNzVdYaHsv/SkBIEcr6pKVkJNJrk9ceLpJYUuqsZoxKItW7B469b67uRThg1DB088aYyPB959V/bpm0f7ZGYCkyfLHnCDQesIiUhLK1YAer0cjxhhKR8vLJTmaWlpUj1DROQCmHRT05i7g/r6ulWJLzmhN94AzOXWPXoAd96pdUQ2kVdXTr61rjv5hd264eaBAxHsyt3JW8rLCxg7Vla9e/eW+1QV+OYb4MYbgW3btI6QiLQyf77l2NxAraQEqK2VOdxxcZqFRkTUXEy6qWn0euk4zAZqZE+//27ZwxcQIN2t3aR/QFVNDQrqysnHDx6MYV26uPf+7eZo2xaYOROYOlX2aALAsWPA7bcDb70lZaZE5DkOHAC2bpXjjh1lVVuvl0qo1FS3nmJBRO6JSTc1TX4+UFNjKQMlsrWCAkmyzaZOBTp00DKiFjN3JQeA9pGRGN2nj+eWk5+Ll5esbn/1laxioW5E4eefQ3fLLfDZs0frCInIUU5toFZeDlRUAL16AYmJWkZGRGQVJt10brW1UlrOvdxkL6oKPPuslA4CwPnnA6NGaR1Vi5jLyfPNI88A9GrTxrPLyZuiQwfgo4+A//u/+ioH3eHDiJwyBbr335f3IyJyXwYDsGSJHPv7y+eBXg8kJ8vYMCIiF8Skm86tsFA+8Ni1nOxlzhzgzz/lODJSGqm5cOn1luPH8eGaNcjS6/Hzrl1ah+N6vL2BCROAL7+Uff0AdCYTdJ98AowfD+zdq3WERGQvv/wiK9uoa6BmNErC3bGjS38uEJFnY9JN55adLR903t5aR0Lu6MAB2bdr9swzLjtztWF3cqOioFN0NEalp2sdluvq1An49FMokydDNb//7N8vifdHH8nJOBG5l4YN1M4/H+jeXd4LmHATkQtj0k1nV14O5OWxgRrZR3U18NRT0i8AkDnNgwdrHZVVTu1OPrxbN9w0YADLyVvKxwe4/XYUfvgh1C5d5D6TCfjgA2DSJODgQa0jJCJb2bsX2LlTjpOSgMsvB7p2lZ4PREQujO9idHYFBdK8JDhY60jIHb37rqxcom5V8957tY7IKlklJfhwzRrkl5ejlb8/JgwejAx2J7cpY5cuUGfPBm67zVJ1s3s3cPPNwGefWea6E5HrathA7aabZHsJE24icgN8J6MzM5mA48eZcJN9/PUX8PXXcuznB/z3v5ZxUS4mLjQU8WFh6BQdjcnDhqE9u5Pbh68vcNddwCefyP5O1DV6fOcdGS925IjWERKRtSoqgKVL5TgwEHjgAW5rIyK3waSbzqyoCCguZmk52V5JiezdNrv3XqBzZy0jaraC8nKYFAUA4OXlhRsHDGA5uaP07Al88YXs7Tavgm3fLitjX30lo8aIyLUsXQpUVsrxTTcBrVtrHRERkc0w6aYzy82VUU4+PlpHQu5EVWVVu6BAbg8aBNxwg9ZRNZmqqth8/Dhmrl6NX3fvrr8/wNeX5eSO5O8P3HefNFRr107uq64G3ngDmDwZOHFC6wiJqKlqa2WKhdldd2kZDRGRzTHppsZVVUnX8rAwrSMhd7N4MbBypRyHhcmKt4vs2asxGrF461Z8X9edvOFqN2kkNVW2KYwbZ+luvHmzXMiZN4+r3kTOzmQCVq8GDh+W2/37A336aB0VEZFNucaZLjleQQFQVgaEhGgdCbmTY8eAV1+13H7qKSAqSsuImiyvtBQfNtKd3NtFLhi4tYAA4MEHgZkzgYQEuc9gAF56SbYuZGdrHSERNUZRgMxMYO1ay32TJ2sZERGRXfBskU6nqvIhGBDAuZhkO0Yj8OSTkgwBwKhRwAUXaB3VOZnLyT9cuxYF7E7u3Pr0Ab75BrjuOst9f/8tq96LFsl7GxE5B1UFsrKkadqKFXJfaKhLbTciImoqJt10upISoLCQDdTItmbNAnbtkuN27YCpU7WOqEkqamrw886dMCoKu5O7gqAg4NFHZRxdXJzcV1EBPP88cP/90quCiLRlvrgfHi5zuc0N1G65hRNTiMgtMemm0+XlSVMTdmEmW9m8WWYpAzIC5rnnZHXDBYT4++Pq1NT6cnJ2J3cRAwcC334LXHON5b4//wSuvx748UeuehNpydwzJi0NmD3bcj9Ly4nITTHpppPV1MjV51attI6E3EV5OTBtmqWh1eTJMvLJSamqis3HjuFQfn79fclt2rCc3BWFhEjfgDffBKKj5b7ycmne9+CDlg76ROQ4OTlSkZKWJtVP27fL/YMHAykpWkdHRGQXTLrpZIWFQGmp7KsisoWXXrI0surdG5gwQeuIzqjGaMSiLVvw/bZtWLB5Myqqq7UOiWxh6FAZR3T55Zb7Vq+WVe+ff+aqN5Gj5OZKFV16OhARIc0PzaZM0TIyIiK7YtJNJ8vKkrnc7MhMtrBsGbB0qRyHhADPPivl5U7I3J18W2YmdDodBnXsiCA/P63DIlsJDZXX36uvAq1by316PfDEE7IHvLhY6wiJ3FtBgbz/p6YCkZFAUREwd658LyICGDtW6wiJiOyGmRVZlJbKfm42UCNbyM4GZsyw3H70USA+XsuIGqWqKjYdO2bpTh4QgAmDBuG8zp1ZTu6OLrhATvQvvthy34oVwL/+ZZkfT0S2VVgoFSVpaUBMjNz3+eeWaRbjx7tMnw8iImsw6SaLggKgqooffNRyJpPs466okNuXXQZceqnWUZ3GpChYtGULfti2DUZFQefoaEzOyGB3cncXHi4XhF58UZo5AbLS/fDDsgdcr9c6QiL3UVIizVlTUiwTBVT15NJyNlAjIjfHpJuE0QgcPy4lwEQtNXu2dCwHZHX7kUe0jqhRXjoddHVfI7p3x43sTu5ZLrpIVr0bzotfulT2eq9dq2VkRO5Br5eL+ampQEKC5f41a4A9e+R42DCgRw/NQiQicgQm3SSKiuRqtHnVh8haO3daVjC8vGQfrRNdzFFVFUaTCQCg0+lwea9emDRkCMvJPVVkJPDKKzLGzjy1oaAA+Pe/genTpds5ETVfWZlUO/XqBSQmnvy9Dz6wHHOVm4g8AJNuEjk58l8fH60jIVdWWSnluXVJLSZOlI7lTsLcnXzuxo1Q6zpW+/n4IDEiQuvQSEs6nWyBmDtXOp2b/fCDrHr/9ZeW0RG5nvJyWeVOTgbatz/5ewUFwPz5chwVBYwZo0mIRESOxKSbJFHKyWEDNWq5N94Ajh2T4+Rk4M47tY6oXm5pKWatWYNtmZk4kJ+PzJISrUMiZxMdDfzvf9KPIDhY7svNBe69F3jhBUuPAiI6s8pK6ZGQnAx07CgXtRr67DOgpkaOJ06UEWJERG6OSTfJVefycstJJpE1Vq4EFi6U48BA4PnnnaJywtyd/KO1a1FYUYFWAQGYOHgw2nJ1mxqj0wFXXy1zvQcOtNy/YAEwbhywYYOW0RE5N4NBOpV37w506nR6wq0oJzdQc6ILs0RE9sSk29MpCpCZKUkS97OStfLzJck2e/BBoF07LSMCGpSTN+xOPmXYMLQzz2kmOpO4OOCdd2TUnXmiQ1YWMGWK7AGvqtI6QiLnYjDI2NEuXYCuXaWnx6lWrgQOHJDjESPkZ4mIPACTbk9XUiJXpVlaTtZSFGk4ZR6zdOGFwDXXaB0VAGDexo3Ylpl5UnfyID8/rcMiV6HTAdddB3zzDdCnj+X+OXOAG28EtmzRMjoi51FTI1sxOneWVe7GEm6AY8KIyGMx6fZ0eXkyLoyJCFnr228tjaaio4EnnnCaqokLunZFRFAQJg4ezO7kZL22baXb8kMPWfafHj8O3HGH7AE3GLSOkEg7tbVAdrbs3+7RA/D2bvzncnIsW5BiY53m4iwRkSMw6fZk1dVSWh4aqnUk5Kr27wfeftty++mnNa2aqDYacaigoP52QkQE7rngApaTU8t5eQE33AB8/bXMHAYAVQW+/BK4+WZgxw6tIyRyPKNRtl0kJQE9e569j8enn8rPA8Ctt/JiPxF5FCbdnqygQOZommfTEjVHdTXw5JOyygFIue2gQZqFk1taig/XrMHXf/+NHHOpOwDvM5U5ElmjfXvgww+B+++3JA1HjkgS8e67lq7MRO7OaJQL94mJ0qnc1/fMP6sowKxZcqzTSZUIEZEH4dmop1JVuTrt63vmvVdEZ/POO8DBg3LcpQtwzz2ahKGqKjYePVrfnTzIzw9GRdEkFvIQ3t7ALbfIKndystynKLKSN348sGeP1hES2ZfJJAl3QgKQknLusV+//CIXpwBg5EhZGSci8iDMtjxVaal0nGYDNbLGunXSXAqQ1b7nn9dk1mq10YiFmzfjx+3bYVQUdImJwZRhwzgOjByjY0fgk0+Au++2lNUeOABMmCCreuZSWiJ3Yp56Eh8vCXdAwLl/hw3UiMjDMen2VPn50vynKR+WRA0VFwPPPGO5fd99Mo/Vwczl5NuzsqDT6XBR9+4Y178/u5OTY/n4SGn5F1/ImCTUrQLOmiXJt3k8EpE7MFfJRUdLb4OgoHP/TmYm8MMPctymDXDllXYPk4jI2TDp9kTmfVjcy03NparAc8/JmDkAGDIEuP56TULZm5uLwooKtAoIwMTBgzGU3clJS126ALNny15Vc/fmvXulyVrDBlJErkpV5dwhPBxISwOCg5v2ex9/LBeiAOD228/ebI2IyE0x6fZEhYUyn5tdy6m5Fi4EVq+W4/BwYNo0zcaDnde5M4Z16YIpw4axOzk5B19fKZ397DMpPUfdRc533wVuuw04fFjrCImsl50NhIUB6elNv2hvNErjQdRNALj9druGSETkrJh0e6LsbPnw49Vmao4jR4DXX7fcnjYNiIpy2NPnlpZi3saNqK1bMfHS6XBht24sJyfn06OHNFmbONHSqHLnTuCmm+R+86ofkavIyZFS8rQ0SbybaulS4MQJOb78cul0TkTkgZh0e5qKCiA3l6vc1Dy1tcBTT0kfAAAYMwYYNswhT92wO/mu7Gys2rfPIc9L1CJ+fsC990ppbfv2cl9NDfC//wF33gkcP651hERNk5srjTLT04HmNqls2EBtyhSbh0ZE5CqYdHuaggJJvENCtI6EXMmsWcDu3XLcvj3wwAMOedpqoxELTulOPlSDpm1EVktJAb76Sla5zVsxtm4FbrgB+PZb6QRN5KwKCqRHQWoqEBnZvN89ehRYskSO27UDLr3ULiESEbkCJt2eRFFkdaWpzU+IAGDjRtmjirr5xM8/75Cu9zmlpZi1Zg12mLuT9+jB7uTkmgIC5ELVrFlA27ZyX3U18OqrMm4sK0vrCIlOV1gozdPS0oCYmOb//kcfye8DJzcYJCLyQEy6PUlRkXw1Zz8WebayMtm7bT5xuusu2a9qZ3tycvDR2rUoqqhAaEAAJg0ejKGdOrE7Obm23r1lvv2//mW5b8MGWfVesMDy74xIayUlsq0oJQWIi2v+79fWytYK1F2svfVWm4dIRORKmHR7krw8Oanz9dU6EnIFqgrMmCH7+QCgTx/gllsc8tTxYWHw8/ZGl5gYTB42DInsTk7uIjAQ+M9/gPffB+Lj5b7KSuCFF4D/+z9pWEWkJb0eqKqSkvKEBOse44cfpGkrAFx9tcznJiLyYEy6PYXBICWMbKBGTbV0KfDLL3LcqhXw7LN2LQ8sNzdpAxAWGIjbzzuP5eTkvvr3l1XvUaMs9/31l8y9/+EHrnqTNsrKgPJyoFevlnUaZwM1IqKTMOn2FAUF8mHa1Nma5NkyM4GXXrLcfuwx60oMm8DcnfzN337D3garfK2Dg1lOTu4tJAR44gng7bcte2YrKoDp04GpU+V9m8hRystllbtnT0vHfWscOmS5YNuxI3DRRTYLkYjIVTHp9gSqKkmUn5+ley7RmRiNso+7okJuX3EFcMkldnmqU7uT7zKXIxJ5ksGDgTlzgCuvtNy3Zo3s/V62jKveZH+VlUBxMZCcLIlyS84VZs2yHN9xh2VWPRGRB+M7oSfQ62XFJDxc60jIFXz2mYw0AmQ/38MP2+VpTu1OfnGPHrg2Pd0uz0Xk9Fq1Ap55BnjtNctoptJS4MknZQ94UZHWEZK7MhikU3n37kCnTi1LuGtqgE8/lWNfX2DSJJuFSUTkyph0e4L8fOkk6oAxT+TiduwAPvxQjr28ZB+3jWe6m8vJT+1OPoTdyYmA88+XVe+RIy33rVwpq97Ll2sZGbkjg0GarHbpAnTt2vJV6UWL5PEA6VcQG2uTMImIXB2TbndXWwucOGHzxIncUGWlrKqZTHL7tttkPquNnSguxo/bt8OkKOxOTtSY8HDgv/+VvgrmCqWSEuDRR4HHH5djopaqqZHpFJ07yyq3LcrAP/jAcjx5cssfj4jITTDpdneFhVKiyK7ldC6vvioXaADpXHvbbXZ5msTWrTGgQwdc3KMHu5MTnc2IEcDcucCFF1ru++UX6XC+erWWkZGrq62VkV4dOwI9ethmMsW+fVKVAciqecPXLRGRh2PS7e6ys+XqtR1HPZEbWLEC+P57OQ4KAp5/HvDxsclDq6qKTceOnTQS7LJevVhOTtQUrVsDL78s/ybNF08LC6W7+TPPyFQKouYwGmWEaFKSdCq30Xv9SQ3U7ryTjVuJiBpg0u3OysqkdIwN1Ohs8vKklNXsoYeAtm1t8tDVtbWYv3kzfti2DQs2b4bCLsxEzafTAZdeKqveGRmW+3/8UVa9//xTy+jIlRiNMs0kMVE6lfv62uZxDQZLAzU/P2DCBNs8LhGRm2DS7c4KCmSfblCQ1pGQs1IUWS0rLZXbI0YAV11lk4fO0esxa80a7MzKgpdOh84xMeC6B1ELREUBr78u/2bNfTry8oD77pMLZ+XlWkdIzsxkkoQ7IQFISQH8/W332PPnWzrsjx0rr1UiIqrHpNtdmUyyPzc4WOtIyJl9/TXw999yHBMjTZpaWBKoqio2HD2Kj/74A0WVlQgNCMDEIUNYTk5kCzqdzPOeMwcYNMhy/8KFwA03AP/8o2V05KwURRLu+HhJuG09zWTmTMsxG6gREZ2GSbe7KioCiotZWk5ntm8f8O67cqzTAdOnA2FhLXrIaqMRCzZvxk+ndiePiLBNzEQkYmOBt9+WC2XmaqacHOCuu6TreVWV1hGSs1BV2cMdHQ2kptq++m3nTmDNGjlOTgbOO8+2j09E5AaYdLurnBz5oLVVgxRyLwaDjAerrZXbN98M9O/f4ofVAcjW6+Gl07E7OZG96XTA6NHAt98C/fpZ7p83T1a9N2/WMjpyBqoqK9zh4TIC0h7Vbw0bqE2ezAZqRESNYNLtjqqqJOlu4aolubG33gIOHZLjrl1ldcxKqqpCrWuQ5ufjg7F9+7KcnMiR2rQB3nsPePhhS9lwZqZ0kH79dbnIRp4pO1vOBdLTgVatbP/4lZXA7NlyHBAA3HKL7Z+DiMgNMOl2RwUF0lDH3GiHqKG1a6ULMiCNdP77X+k2awVzd/K/Dh+uvy82NJTl5ESO5uUlncy/+UZWNFG3yvn118CNNwLbt2sdITlaTo6Ukqel2e8i/Ny5gF4vxzfcAPC9n4ioUUy63Y25lCwggCVedLqiIuDZZy23779fZrVaIbtBd/Lf9uxBRXW17eIkIuskJkq577//bbmYduwYcNttsge8pkbrCMkRcnPlomp6un0TYTZQIyJqEibd7qakBCgsZGk5nU5Vgeees4x1GTpURrs0+2FU/HPkCD5u0J18/ODBCLbl+Bkisp63t/Rp+PproGdPuU9RpAz45puB3bu1jpDsqaBAXgOpqUBkpP2eZ+tW4K+/5Dg1FRg40H7PRUTk4ph0u5u8PGmOxQSITjV/vqXDbEQEMG1as6shqmtrMX/TJizZsQMmRUHX2FhMYXdyIufUoQPw8cfAvfcCvr5y36FDwMSJskJpbqRI7qOwUC6wpqXJGEh7arjKPWUKq+uIiM6CSbc7qamR2dz2aJZCru3IEeCNNyy3n3662SsgJkXBR3/8gZ3Z2fDS6XBJcjJu6NcPgexOTuS8fHwkyf7iC6BbN7nPZAI+/BCYMAHYv1/rCMlWSkrkQkpKChAXZ9/nKi8HvvxSjoODgZtusu/zERG5OCbd7qSgACgtBUJDtY6EnEltLfDEE4B5z/XYsVbNUfX28kKfdu0QFhiISUOGYHDHjuxOTuQqOneW8vI775TSYwDYt0+6TX/8MWA0ah0htYReL5NLUlOBhAT7P9833wBlZXI8bhzPO4iIzoFJt7tQVRkN4usrXWyJzN5/H9i7V46TkqR5WhNV19aiqKKi/vagpCRMGTYMbVlOTuR6fHwk6Z49W5JwQJLt998Hbr3VMkaQXEtZmaw89+oljfQc4dTSciIiOitmZ+6irEz2c4eHax0JOZMNG6SsFHUn3M8/b5njew7Zej1mrlmDr//+G9V1q2A6nQ4B5r2hROSauncHPv8cmDTJcpF21y5psvb551J+Ts7PaJQu5WVl0jCvfXvHPO+GDcDGjXLct698ERHRWTHpdhf5+VJaFhiodSTkLEpLZe+2qsrtu++27Ok8i4bdyYsrK2FUFJRWVdk/XiJyHD8/4J57gE8+kYZrqOsL8tZbwB13AEePah0hnYnJJBfZs7PlQnu/fkDHjo5rZMYxYUREzcak2x0YjdJALSRE60jIWagqdDNmyCoIAPTvL6tY53Bqd/JusbGYnJGBaDbnI3JPvXoBX30le7vNSdu2bcCNN8q+XUXROkIyUxTp3ZKZKZ/3/fsDAwYA8fGOS7hLS+V1AUjT1nHjHPO8REQujkm3Oygqkq6lnM1NdQKWLYNu+XK5ERoKPPPMOff6m8vJG3Ynv57dyYncn7+/9Hr48EPLnuDqauC112S/7okTWkfo2RRFRoEdPy7bg/r1AwYNkoZpPj6OjeWrrwBzn4+bb+bFfiKiJmLS7Q6ys+Uqt6M/fMk5nTiB0IbjwR5/HIiNPeevrdy7F8WVlexOTuSp0tOBr78GbrjBct+mTbKa+d13lq0q5BiqChQXS7Lt5yd7pwcPlgsjWvTWUFXggw8st1laTkTUZEy6XV1FhZQQc5WbIFsNdNOmwcu8B/uqq4CLLmrSr16dmor0xERMzshgd3IiTxUYCDz0kCRXbdrIfVVVwIsvyh7wnBytI3R/qirVa8eOyQX19HRJttu3l+RbK+vXy9YDQFba09K0i4WIyMUw6XZ1hYWSeAcHax0JOYNPPoFu+3YAgJqQICfPZ5Ct12P1/v31t0MCAnBNWhrLyYlISpi/+QYYPdpy399/A9dfDyxezFVveyktlWRbVWXm9pAh0iTN31/ryLjKTUTUAky6XZmiyF67wEDHNVEh57VtG/DxxwAA1dsb6nPPNXoxpmF38pV792J3drYGwRKR0wsOlu0p77xj2aJSUQE89xzw73/L1AyyjfJySbZra2X81+DBMkvdWSaSFBcDc+bIcXg48K9/aR0REZFLYdLtyoqLZaWbpeVUUQE89VT9fN3yCROAlJTTfsxQW4vvTulO3iEyUoOAichlDBokCddVV1nu++MPSbyWLOGqd0tUVMiebYNBRjoOGSL/dbbqtS++kBgBYPx4IChI64iIiFwKO2+5srw8SbJYDkyvvipjZACoqamouOUWnHrKllVSgu82bUJxZSW8dDpc3KMHBiYlsVkaEZ1bSAjw9NPA8OHAf/8ro6vKyoBp04DffgMeewzgBbymq6qSi+Z+fkCnTrJfOzRU66gaxwZqREQtxpVuV1VdDWRlOe+HNDnO8uXADz/IcXAw1OnTT+tkv/nYMXzy558ndScfxO7kRNRcGRmy6n3ZZZb7Vq2SVe9ff9UyMtdgMMi2ML1eSvYHD5aqJGf+LF+7Fti9W44zMoDkZK0jIiJyOU6ZdL/77rvo0KEDAgICMHDgQPz9999n/NkPP/wQGRkZiIiIQEREBC666KKz/rzbKCiQhiutWmkdCWkpJ0dWncwefhho2/a0Hwvy968vJ2d3ciJqkbAw2df9yiuA+b1Er5fV7scek87bdLLqaqlGKi4G2rWTZLtDB9fYHjZzpuWYq9xERFZxuqR7zpw5mDp1Kp5++mls2rQJaWlpGDlyJPLy8hr9+VWrVmHcuHFYuXIl1q1bh8TERFxyySXIrCu1dUuqKqvcfn6Al9P9LyRHURTgmWekxBMALr4YuOKK+m/X1u3vBoBusbGYOHgwru/Xj93Jicg2LrwQmDsXGDHCct+vv8qq96pVWkbmPGpr5fO6oABISJD98enpcrHCFSqNCgqAefPkODISGDNG64iIiFyS02Vsr7/+Ou644w5MmjQJycnJ+OCDDxAUFIRPPvmk0Z//6quvcPfddyM9PR3du3fHRx99BEVRsGLFCofH7jClpdI1Njxc60hIS19+CWzYIMexsbLCpNNBVVXsOH4c76xcCb15XjeA9pGRLCcnItuKiABeegl44QXLqm1RkYwrfOop+bzyREajVCLl5gIxMZJs9+4NREW5RrJtNns2UFMjxxMnAgEBWkdEROSSnKqRWk1NDTZu3IjHHnus/j4vLy9cdNFFWLduXZMeo7KyErW1tWjdunWj36+urkZ1dXX97dK6EwJFUaAoSov/DA6Rlyelav7+7Brrqfbsge6996ADoOp0so+7VSsYamrww7Zt2JOTAwDYePQoLujWTetoiVpEUVWoqgqF73fO6+KLgd69oZsxA7rVq+W+pUuhbtgA9YkngKFDtY7QMYxGaZBmNALR0UBSkvzXXJVWd56hKIq8pp35vENVoZs5E+ZLBMrtt9fHT9SQS7yeiZrBHq9lp0q6CwoKYDKZEGueB1onNjYWe/bsadJjPPLII2jTpg0uuuiiRr8/Y8YMTJ8+/bT78/PzUWO+muvMjEbgyBG52mwe30GexWBA1JNPwsdoBABU3Hgjynv2RH5eHpbv2IHSqip46XQY2LkzeiQmIo+vE3JxiqpCX1sLFYCXK60SepqQEOD55xHw888IffNNeJWXQ5efD92//43KK65A2b33Qg0J0TpK+1AU2epTWytN0eLipBpNp5MS7dN+XIFer4eqqvBy0m1ifmvXovX+/QCA6qFDURweLhf9iU7hCq9noubQ6/U2f0ynSrpb6sUXX8S3336LVatWIeAMJVCPPfYYpk6dWn+7tLQUiYmJiI6ORrgrlGvn5QGVlfKB7u2tdTSkAd2bb0J39CgAQO3eHYF3342dWVn4dfdumBQFYYGBuLBnT/SMiWGCQm5BUVXoAEQHBPA17QquvRYYMgTq889DV1elFvTTTwjcsAHqU08BAwdqHaHtKIqU01dWSul4UpJs9/E5++mVoijQ6XSIjo522iRFN3du/bHvvfciJiZG03jIebnC65moOfzs0P/IqZLuqKgoeHt7Izc396T7c3NzERcXd9bfffXVV/Hiiy9i+fLlSE1NPePP+fv7w9/f/7T7vby8XOONIidHrpyf4wOd3NSaNcB338mxvz90zz+PLTk5WLZzJwCge2wsrkxLQ5nJBC+djgkKuQ1d3euZr2kXERsLvPUWsHgx8MYbQEUFdLm50N17L3DddcB99wFBQVpHaT1VlU7k5eVA69YyRis+HvD1bfJD6HQ65z33yM0FFi2S45gYeI0ezcatdFZO/XomaiZ7vI6d6l+Gn58f+vbte1ITNHNTtMGDB5/x915++WU899xzWLZsGfr16+egaDVQXi4fhK6wIk+2V1gIPPus5fYDDwAdOiC1bVu0CQvDyORk/KtfPwQ246SPiMhudDpZ9f72W2DAAMv9330HjBsHbNyoZXTWUVUZiXbsmFSb9e4t47/atWtWwu30Pv1USuUB4NZbZVoKERFZzamSbgCYOnUqPvzwQ8yePRu7d+/GXXfdhYqKCkyaNAkAMH78+JMarb300kt46qmn8Mknn6BDhw7IyclBTk4OysvLNfxT2ElBgZSwBQdrHQk5mqpKwl1cDAAoGzAAyujRAABfb2/cNnQoBnXsyO7kROR84uOBd94BHnnE0v06M1NmPr/2muv0J9HrJdkGgLQ0YMgQmbXtbgmpogCzZllu33GHltEQEbkFp0u6r7/+erz66quYNm0a0tPTsWXLFixbtqy+udqxY8eQnZ1d//Pvv/8+ampqcN111yE+Pr7+69VXX9XwT2EHJhNw4oRrl+OR9ebNA/74AwBQFRqKD4YNw9qDB+u/zXIuInJqXl7A2LGy6t27t+X+b74BbrwR2LpVy+jOrqxMkm2TCUhJkZXtTp3cd3zWr78CHJhk6AAASkpJREFUhw/L8SWXAB07ah0REZHLc8qNwffeey/uvffeRr+3atWqk24fOXLEQVFprLhYmrWwkYnnOXQIePPN+psLrroKhlat4M99/UTkatq2BWbOlOT73Xdl/OWxY7KaetNNwJQpMg7TGZSXy7ae4GCgRw8gMdEzKs1mzrQcT5miZSRERG6Dy2OuIjdXSozdac8YnVtNjcy4rZstv37AABSkpuLWIUMwMClJ6+iIiJrPy0tWt7/6SlaOUVfS/MUXwM03A3WNITVTWQkcPw5UVQHdukkZeffunpFwZ2UB338vx/HxwJVXah0REZFbYNLtCgwGIDtbZn+SRzG+/TZ0dXNS86Kjcfymm3BnRgYSIiK0Do2IqGU6dAA++gj4v/+zXFA+fFgad733nqWRl6MYDLKNq6xMyscHDwZ69gRatXJsHFr6+GMpoweA227jhX4iIhth0u0KCgrkJMCTPvgJ+Ptv+HzzDQDA6O2NnIcfxpghQxDobk17iMhzeXsDEyYAX34pJdyo62HyySfA+PHA3r32j8GcbJeUAO3bS7KdkgKEhdn/uZ2JyQR8+KEce3mxgRoRkQ0x6XZ2qionA/7+Mn6FPENJCfDMM/U3K26/HanDh7M7ORG5p06dZEzVlCmAuV/F/v2SeH/0EWA02v45a2qknLqoSEZ+DRokXck9tZJo2TIpqweAyy6TvxMiIrIJJt3OTq+XRi6edsXdQxlqazF/40ZUTZ8O5OXJnQMGIOy227QOjYjIvnx8gNtvBz7/HOjSRe4zmYAPPgAmTQIaTGxokdpa2bKVnw/ExUmynZ4OREZ69sXtDz6wHE+erGUkRERuh0m3s8vLk6vx7jqahOpllZRg5po18FmyBIFr1sidYWHA9OlS6kdE5Am6dpXE+7bbpPwcAHbvliZrn31m2XPcXEYjkJMjjUmjooCBA4G+fYHoaM9OtgFZ4V6yRI4TE4HLL9c6IiIit8IzeWdWWyul5Wyg5tZUVcX6w4fx8R9/QHf8OC5butTyzSeekBNCIiJP4usL3HWX7O02z4murQXeeUdWw5szLtRolAvY2dlA69bAgAFA//5AbCwvaJp99JF0kAfk79d8sYOIiGyCnzbOrKAAKC1lAzU3ZqitxbyNG7Fs507AaMRNP/4Iv5oa+eY11wDDh2sdIhGRdnr2lFFi48dbEuTt22Wm91dfWRLFxphM8jmalSWfo/37S8IdH8+ksiGjUZJu1DW243YmIiKbY9LtzLKz5QOQJwduqcxgwMw1a7A7JwdeOh0m7dqFyMOH5ZuJicCDD2odIhGR9vz9gfvuk8TQ3Nyruhp44w3Ze3zixMk/ryjSCyUzU7Zm9esn+7YTEvh52pgff5QLEwBw1VXy90RERDbFpNtZlZVJOVx4uNaRkJ2E+PsjJiQE4UFBmBIWhrYLF8o3vL2B554DgoK0DpGIyHmkpgJffw2MG2fZg715M3DDDcDcubKyXVws+5P9/IA+fWT8V2KipSM6nY4N1IiI7I5Jt7MqKACqqph4uRlDbS1q6kbf6HQ6XJuejsm9eyP65ZctZZJ33AH06qVtoEREziggQKqAZs60rMgaDMDLL8te5Lw86UQ+eLDM3Pbz0zpi53b4MPDLL3LcoQNwySVaR0RE5JaYdDsjk0nK5Zhwu5XMkhLMXL0aP23fDlVVAQCBfn4IeOMNS2lferqMxiEiojPr0wf45hvpfWG2fbvM+f7tNybbTfXhh0Dd5xHuvJON5YiI7ITvrs6oqEhK5Fha7hZUVcVfhw7hkz/+QElVFY4VF6Oqtla++fPPljEtwcHAs89yzyER0bmUl8uc7bvvBj79VErIUbc16447ZOTVqXu96WQ1NcDHH8uxjw8v+BIR2RGTbmeUkyNXnrkHzeVV1dRg7oYN+HnXLiiqih5xcZickYEgPz/5/zxjhuWHH30UaNNGy3CJiJxbRQVw7JiUlCcnA0OGABMnAjt2nNx1e9ky2abz+eeWlVw62eLFUo4PAKNGAXFxWkdEROS2mHQ7m8pK6VoeFqZ1JNRCmcXFmLVmDfbk5sJLp8NlPXtibN++CPD1lS0E06bJag0AjBwJXHaZ1iETETmnqippkFZRAXTtKnu2u3cHQkLk+6Gh0t18yRLLxUu9HpgwQUrQc3I0Dd8pzZxpOWYDNSIiu2LS7WwKC+WkwnwiQS7JpCiYu3EjSqqqEB4UhNuGDsWApCTozB13v/gC2LRJjuPiZJWbiIhOZjBImbheD3TsKMl2z56SZDfmsstk1fuWWyz3/fCD/M6333LV22z/fmDFCjnu3Bm48EKtIyIicmtMup2JosjJRUCAZRwKuSRvLy9ck5aG5Ph4TM7IQJuG+/N37wbef1+OdTrZx92qlWaxEhE5nepqmbNdXCyzuQcPlpFhTel1EhEhZeWLFgExMXJfUZGMGvvXv2QvuKebNctyPHkyG6gREdkZ32WdSUmJrHSztNwlZRYXY19ubv3tjtHRlnJys6oq4IknpLwckL2IffpoEC0RkROqqZFpDgUFMhJs0CCZ6tC6dfMf65prgJ07geuvt9z33Xey6r1ggU3DdinV1dJ8DpAu7xMnah0REZHbY9LtTPLyAKMR8PfXOhJqhvru5H/+ifmbN6OoouLMP/zGG9IECJAmQHfe6bA4iYicltEo+67z8oDYWEm2+/QBoqJaVvkVFSVl5XPnApGRcl9+PjBmDHDTTbIC7mnmz5cL/ID8PURFaR0REZHbY9LtLMyldCwzdimndifvFBUlnckbs2qVZXUlIAB47jmg4So4EZGnMRqB3FxJuCMjgYEDgX79pCzcltusxo6VVe9rr7Xc9/XXsur944+2ex5X0LCB2pQpWkZCROQxmHQ7i8JCmS96puYw5HQyi4sxs647ubeXFy7r1ev0cnKzggLg+ecttx98EGjf3qHxEhE5DZNJVpyzs2Wfdv/+8hUXZ7/9xbGxcuHzyy8te8NzcoCrrpIZ1Xq9fZ7XmezeDaxeLcc9egAZGVpHRETkEZh0OwNVlT1sPj5sZuIizOXk+qoqRAQF4dYhQzCgQwdLd/KGFAWYPl327APA+eefvNpCROQpFEUuQmZmAsHBkmgPGCBjvry97f/8Op2Ule/cCVx+ueX+zz6Tud6//GL/GLTUcJX7zjvZtJWIyEGY4TmDsjK54t+UrqzkFEqqqqCoKnrExeHOU7uTn2ruXGDdOjmOjASeeoonOkTkWRRF9k8fPy7ba/r1k33bCQlywdnR2rSRsvJPPrFUmJ04AYwcKd28y8ocH5O9VVUBs2fLcUAAMH681hEREXkMJt3OID9fZpEGBmodCZ2F2mC+68U9emB0795nLic3O3AAeOsty+3p03lxhYg8h6pKlc+JE5Jc9+0r478SE7XvaaHTSVn59u3AxRdb7p81S8aTrVypZXS2N3eupeLqX/+yriM8ERFZhUm31oxGORkJCdE6EjoDc3fyL/76C4qiAHVzuFMSEhovJzerrgaefFJG4AAyI3bQIAdFTUSkIVWVPdLmaQ1paZJst28vY6qcSbt2wM8/A++/LyXvAHDkCDB8OHDffcDZJlK4EjZQIyLSDJNurRUVyZVnNlBzSlU1NZhT1538cGEhdmRlNf2X331XVroBoFMn4N577RYnEZHTKCuTZNtkkhXjIUOAjh2lpNlZ6XSSiG7bJn03zN5+W+aE//GHltG13LZtlm1OKSm8AExE5GBMurWWnS0f9lrsaaOzOlHXnXxvXXfyy3v1QkpCQtN++a+/ZBwNIKs6//0v568TkXsrL5dku7paRnENGQJ07uxaW6c6dgR++w14801L3AcOSJfvhx6SfdGuqOEq9+TJ7CtCRORgTLq1VFEh40rCwrSOhBpQVRXrDh3Cpw26k982dCj6n6k7+alKSoBnnrHc/r//kxNPIiJ3VFEhDdKqqoBu3STZ7tbNUqrtary8pKx8yxb5s6CuXP6114A+fYD167WOsHkqKmRMGgAEBQE336x1REREHodJt5YKCoDKStc9MXFTv+7ejV927YKiqkiOj8edGRmIb+qFEVWVVe2CArk9aBBw/fV2jZeISBNVVdKTpLxcttAMHgwkJwOtWmkdmW107SozrV95xVKptGePJOKPPy4r+q7g22+B0lI5HjeOF/qJiDTApFsriiJzSgMDWeblZPq0a4dAX19c3qsXruvT5+zdyU+1eLGl421YmKx4c/Y6EbkTg0GSbb1eGqMNHiz7hN0xmfP2lrLyTZtkpjjqPr9nzJCxZ5s2aR3huX3wgeV48mQtIyEi8ljMBrRSXAwUFrrnSYqLUVUVmcXF9bejQkJw/4gRTS8nNzt6FHj1Vcvtp54CoqJsHC0RkUaqq4GsLPn8atdOku20NCAiQuvI7C85GfjzT6lkMl+I3bEDGDhQLq7W1modYeM2bQI2bJDjPn3kQgERETkck26t5OZKZ1dnG53iYczdyT/+4w8cLSysv9+/uY3tjEZJsg0GuT1qFHDBBTaOlohIA7W10vSzsBCIj5dtM+npMufZkyq1fHykrHzDBvnzo+69f/p0Sb63b9c6wtOxgRoRkVNg0q0Fg0FOYDgmTFMNu5N7eXmhpCVdaWfNAnbtkuN27YCpU20WJxGRJoxGafaZmwtER0ti2aePVPB4cvKWmirN1KZNk/JzANi8GejdW8rOa2qkgWanTtJE8513zvxY1dUyTrJLFynRNzc5MxiAa6+VfeVpacDFF1tGUJ5LXh5w6aXy/B9+KPeFhMh+7obKy4GRI+X/Z3h407+XmwsMGCCvDyIiahIm3VooLJSmJu7SbMbFnKk7eVrbttY94ObNwKefyrG3N/D88641IoeIqCGjURKrnBxZzR44UPYzx8SwR4WZn5+scK9fDyQlyX0mk6yE9+gB/PMPsG8f8Pff0oht585GH0b32GNyAWPfPlkpb7hF6c47gb17ga1bgWuuAW6/vWmxPfqoVCM8/LA090RdA7VTzzl8fYFHHgGWLz/9Mc72vdhYaSb3+edNi4eIiJh0O5yqSgM1Pz+evGjAXE5u7k7eMz4ek5vTnfxUZWVSVm4+sZkyRfb+ERG5GpMJyM+3VGL17y8rmnFx/Lw6k759gWHDgMsus/wdHToEbNwI/O9/0rfl+uuBb7457Vd1lZXAJ5/IPnFz5UBcnPw3IAC4/HLL/YMGAUeONC2muXOllLxhA7U+fU7/OX9/YPjw01eyz/U91CXxDUvXiYjorPgp6mh6vZzUnOmDjOxqT24u9ubmwtvLC1ekpGBMnz7wb0538lO99JKsBqHupGb8eJvFSkTkEIoiYw7NEzX69ZMkr00bS/k0ndmaNcDLLwN//CHzyVFXLfDQQ8D558ts7GPHTvs17yNHpJLghRfk7zwjA1ixovHnePNNWe0+l8JC2YN/7JiskAPyHLbuH9O3L7Btm2UUGRERnVUzu0VRixUUyH6vgACtI/FI6W3bIr+sDCkJCdavbpstWyZfqNsvN306T1CJyHWoqnQiLyuTxKxHD2mU1pILkZ7oxAkpue7VS7YbJSZK8gtIIv7339J4TVFOrhgwGqE7elSqo158UX734oulFD021vJzL7wg+7nPlJA3puEqdMeOtvhTnszHR7rWZ2WxPw0RURNwpduRamvlw5l7uR2mqqYGP27fDkPdOBedTodLkpNbnnBnZUnDHLNHH5WTVSIiZ6eqQEmJrIZ6eUmVzuDB0gSSCXfzBQVZJlcEBsoe+KeflkZmqPvs/+cfYMQI4PDh+l8zJSRA9fICbrpJ7ujdW/aHN+yC/uqrwIIFwNKl8jznEhkpCbG5nD0sTP5/t2tnwz9wHYOB/UuIiJqISbcjFRZKeTmvCjuEuTv5xqNH8ZMtR7mYTHJCVVEhty+7TDrFEhE5O73eUuqclgYMHQp06CB7eMk6qanS8Mxs7FgpOd+06eTmZ6tWyc/OnAmoKtTISNk3/fPP8v3Dh+WrRw+5/frrkjz/+uvpW9Iee+zMXdF79bJcBBg5Uvbon3++bf/Mubmy3zwx0baPS0Tkpph0O1JOjnxIsQTZrlRVxZ8HD9Z3J28dFIQh5hUHW5g9W8oAAVndfuQR2z02EZE9lJUBR4/KRcOUFFnZ7tSJW51s4brrLIkzANxyC9C9u5SU//YbcPfdQPv28r3ycmDKFOguuwxemZlQ339fupunpMiIsJkzgYQEqYp78EGpSLjwQnmsgQMtz7F1q6XpWkOqKhdWzDZuBL780lLBMG3ayQ3WUlPltVBaCrRtK7E35XvLlgGjRrHBHhFRE+lU1dx22TOVlpYiLCwMxcXFCLdnc7PyctnbFRgIBAfb73k8XFVNDRZt3Yp9ubkAgJ7x8bgqNbVlzdIa2rkTuPVWOXH18pL53OnptnlsG1FUFXkGA2ICAuDlybN0yW3wNd0C5eVAUZGUJrdvL8lTSIjWUbmX8nIZobVu3Zk/30tLpbGaeW42AKVVK+B//4PXpEnNm3tuMkmju/XrT096166VhmyAVDGsXWvVH+mcMjLk88+8Kk8eTVEU5OXlISYmBl68EENuoKSkBBEREdDr9Qi1UYUy/2U4SkGBlCMz4bab3NJSzFyzBvvqupNf3qtXy7uTN1RZKePBTCa5PWmS0yXcRERA3fvV8eNAVRXQtaskhd27M+G2h5AQ4I03TtqvfZrQUElSly2TlWwAXmVl8LrtNuDqq6UEvKm8vWWPeGPJTcMGalOmNOuP0WS5ucBddzHhJiJqBibdjmAyyckPE267ahUQAEVV0TooCLcNHYr+HTpAZ8tVsddft+yF7NkTuOMO2z02EZEtGAxSmlxWJl2rBw+W9ys28LSvESNkL/W5jBwJ7NgBteF4yR9/lP9HX38t5eHWKiwE5s2T49atpezdHmJjgRtvtM9jExG5KSbdjlBcLF+czW1zNUZj/XGQnx9uHjAAd2ZktLw7+alWrgQWLZLjwEDgueekQywRkTMwJ9slJVJGPniw7Mm19XshtVx4ONRPP0XxZ59BNe/LLi6WLuZjxgB5edY97uzZQHW1HE+YwP36REROhEm3I+TmytVrJmk2dby4GO/9/ju2HD9ef19MaKjtysnN8vOB55+33H7wQfuMXyEiaq6aGhlhWFQk+7UHDZKu5BERWkdG51A9ciTUbduAceMsdy5cKKve333XvAdTVSlfN5s82XaBEhFRizHptreqKjkh4mqDzZi7k39W1538r8OHodirH6CiAM88Y+kGe+GFwDXX2Oe5iIiaqrZW9gHn50sX60GDZN52ZGTzmnKRtiIjpaz8u++AqCi5r6BAxo6NGycl403x+++WsWUXXAB062a/mImIqNmYdNtbYaF0NmXzGpuorKnBt//8g19374aiqujZpg0mDR5sv47G334rHWIBIDoaeOIJntASkXaMRhk/mZsrSdrAgUDfvvL+xPcm1zVmjEzHGD3act+338qq9/ffn/v3G44B4yo3EZHTYdJtT6oqe+z8/XkyZAPHi4sxc/Vq7MvLg7eXF65IScGY3r1tX05utn8/8PbbltvPPMN9+USkDZNJ9vpmZ0vp+IABQP/+0tSKI3rcQ0yMrHh//bVle0BurlRXTZgg+/Ubk5cHLFggx9HRMj+biIicCj+p7amkRFa6mai1mL6qCrPXrUOpwYDWwcG4fehQ9Gvf3rbdyRsyGIAnn5QSTkAa3AwcaJ/nIiI6E5NJyo0zM6UDef/+knDHx8voKHIvOp2Ule/cCVx5peX+zz+X7ujLllnuM5mAVauAf//b8lk1aZJc6CciIqfCzl72lJcnTW74AdhiYYGBGNKxI4oqK3FVSor9VrfN3nkHOHhQjrt0Ae65x77PR0TUkKJIR+vyctn3m5wse7ft/d5HziE+XsrKP/8cuP9+6SuSmQlcdhlw++3A+ecDjz0m1XQNscknEZFTYtJtLzU18gEZGqp1JC7reHExQvz8EFE33/zCusYwdlvdNvvzT9lLB8gFk+efB/z87PucRESo25ZUUgKUlsqs5b59JQHje5Dn0emkrHzECOC224BffpH7P/pIvhrzf/8nr5eGe8OJiEhzLC+3l8JCOWlq1UrrSFyOqqr4o647+XebNsFoMgF1ybbdE+7iYmD6dMvt//s/oFMn+z4nEZE52T52TJKt9HSZtd2+PRNuT9e2rZSVz5oF1F2EPqt//1tKz4mIyGlwpdtesrJkvx333DVLZU0NFm3Zgv15eQCA1sHB9hsHdipVBZ57zjKiZcgQ4PrrHfPcROS5Skvlgl9oKJCaCiQkAIGBWkdFzkSnA+64Qy7kN5zrfSpVBY4fB9askdFhRETkFJh020NZmcxOZQO1ZjleXIzvNm5EqcEAby8vXNazJ/q0a2f/1W2zBQuA1avlODwcmDaNXeeJyH7Ky4GiIlm97NkTSEwEgoK0joqcWVMvQmdn2zsSIiJqBibd9pCfD1RWyugOOidVVfHnoUP4bc8eKKqK1sHBGNu3L+IcuR/+yBHg9dctt6dNkxm4RES2VlEhFTVBQUC3btL8KiRE66jIFcTH2/bniIjIIZh025rJJKVdPIFqMkVVsSsrC4qqolebNrgyNRX+Pg58adbWAk89BVRXy+0xY4Bhwxz3/ETkGaqqZPyXvz/QubPs12azTWqOjAzZ452Z2fiqt04n38/I0CI6IiI6AybdtlZYKM1w4uK0jsRleHt54bo+fXC4sBC9ExMdV05uNnMmsHu3HLdvDzzwgGOfn4jcm8EgybaPD5CUJO8z3H5E1vD2Bt58E7juOkmwGybe5s/O//2P/WSIiJwMu5fbWm6u/NeRK7UuRlVV/HHgAFbt3Vt/X0RwsGP3b5tt3AjMni3HPj7Af/8LBAQ4NgYick/V1bIiWVwsJeSDB0ujNCbc1BKjRwPffScN9xpq21bu57gwIiKnw8zQliorpXkJT6jO6NTu5N3j4hAXFqZNMKWlsnfbvFIwZQrQvbs2sRCR+6itld4eqiqJUfv2QGQkGzOS7YweDVxzjXQpz86WPdwZGVzhJiJyUky6bamgQLrRtm6tdSRO6VhREeZv2nRSd/JYrfYzqiowY4alMqFvX+CWW7SJhYjcg9EonwNGoyRBHTpIQ00m22QP3t4cC0ZE5CKYdNuKokgZYWAgT7BOoaoq/jx4ECv27oWqqogMDsZ1ju5OfqolS4Bff5XjVq2A6dO5QkBE1jEapZ9HbS0QEyP7tmNiAC/u4CIiIiIm3bZTXi779rQqlXZi323ahF11M0M16U5+qsxM4OWXLbcff5yN74io+UwmmbNdVWVJtmNjeQGPiIiITsKk21ZUVVa72UDtNF1iYrA3NxeX9eypTbO0hoxGGQ9WUSG3r7gCuPhi7eIhItejKJJsV1RI+XivXnLhju//RERE1AieIZDNqaqKUoMBYYGBAID0xEQkRUXV39bUZ58B27bJcUIC8PDDWkdERK5CUWQkZFmZNEbr0UP2bvv6ah0ZEREROTEm3WRT5u7kOaWlmDJsGIL8/ADAORLuHTuADz+UYy8v4NlngZAQraMiImenqoBeL1/h4UCfPkCbNkDd+xsRERHR2TDpJptp2J3cx8sLWSUl6BwTo3VYoqICePJJ2YMJALfdBqSlaR0VETkzVZXRgiUl0q8jLU0qZAICtI6MiIiIXAiTbmqxxrqTj+3bV7txYI157TXgxAk5TkmRpJuI6EzKyqQ5ZkiIvGe0bSvTKYiIiIiaiUk3tUhlTQ0Wbt6MA/n5AICUNm3w/+3deVxU5f4H8M8M26Cyw4ALi+KuCIaGmHsoqWlmKlniUl7qp5bl1TK1gNQocytzafFqpSVXQ683l1RcMvFec82uWyiopYCg7PvM8/vjgcFhUUBgYPi8X695vc4585w534MHnO95nvN9hhu6Onlp0dHAzp1yuUkTYOFCFjwiovJlZsoiaU2aAJ07y2S7aVNDR0VEREQNGDMPeiSHLl9G7J07MFUqMbRrV3R3dTVsdfLSEhOBxYtL1ufMkV+iiYjul50t59pWqYAOHQBXV8DKytBRERERkRFg0k2P5MmOHZGanY2ATp3q13ByFFUaDg+Xz2QCwJNPAk8/beioiKg+ycmRybaZGeDpCbi5yee3iYiIiGoIk26qkuz8fJy5eRO927SBQqGAyswML/r5GTqs8n33HXDihFxWq4F584D61AtPRIaTmwskJ8tHTdzd5cvOztBRERERkRFi0k2VduPuXWw7fRoZubkwNzFBTw8PQ4dUscuXgdWr5bJCIXu82XtFRPn5MtkGZK+2mxtgb88bckRERFRrmHTTQwkhcOzqVRy8rzq5m729ocOqWG6unB6soECuT5gA9Oxp6KiIyJAKCmSyrdUCzZsDHh6AoyOTbSIiIqp1TLrpgcpUJ2/ZEsO9vOpXdfLSPv0UiIuTy+3bA//3f4aOiIgMpbBQJtuFhYCLi0y2nZwApdLQkREREVEjUY8zJzK0m3fvYmvRcPJ6W528tF9+Af75T7lsYSErl5ubGzoqIqprhYVy6q+8PMDZWSbbzs5MtomIiKjOMemmCmmFQGZuLhyaNsVYX9/6V528tLt3gfffL1l/4w2gdWtDRkREdU2jAe7dk1XJHR2Bbt1kD7eJiaEjIyIiokaKSTfp0QoBZVFPtruDA4J69kRrBweY1+fh5AAghEy4796V6336AGPGGDoqIqorWq1MtrOyZGG0zp3ls9v1/W8XERERGT1+GyGd6ykp+PdvvyGoRw84WVkBADo4Oxs6rMr54Qc5tByQX7jffZcFkogaAyGA1FQgPV3+7nfoIJNtPlZCRERE9QSTboIQAr9cvYpDRdXJD12+jHE9ehg6rMqLiwNWrChZf+89wMHBkBERUW0TAkhLky8bG6B7d6BFC1nLgYiIiKgeYdLdyGXl5WHH2bO66uTdiqqTNxgFBXJ6sLw8uT52rBxaTkTGKz1dDiW3tga8vYGWLQGVytBREREREZWLSXcjdj0lBT+cPo2MvDyYKpUY1rUrfOp7dfLS1q4FLl+Wy61bAzNnGjoiIqotmZmybkOzZkDXrkCrVkCTJoaOioiIiOiBmHQ3UvHJyfjmv/+FEAKOzZphzGOP1f/q5KWdPAl8+61cNjUFFi1ibxeRMcrKksm2paUskNaqlUy8iYiIiBoAJt2NlJu9PVrZ2sKuSRMM9/Kq/9XJS0tLk89uCyHXp0+XBZSIyHhkZwMpKbIoWsuWQPv2gK2toaMiIiIiqpIGlmnRo/jr3j242NjARKmEUqnEBD8/mJmYNKzh5CgqoBQRASQlyfWePYEXXzR0VERUU3JzgeRkOYKlTRvA1VXWbWhoo3GIiIiImHQ3Drrq5Jcuwa91awR26QIADa93u9iuXcCBA3LZ2hoICwOUSkNHRUSPKi9PJtsmJoC7O+DmJqcB02pLbrIRERERNTANNOuiysrKy8P2s2dxtag6eXZ+PoQQDa93u9iffwJLlpSsz5sHNJS5xImofPn5MtkG5DByd3c57V9D/TtFREREdB8m3UbMKKqT36+wEHj3XfmcJwCMGAEEBBg6KiKqrsJCmWxrNEDz5oCHB+DoyGSbiIiIjAqTbiMkhMAvsbE4dPkyBADHZs0w9rHHoG7oz0OuXw+cPy+XW7UCZs82dEREVB2FhbJAWkGBHKnSujXg5MTHRIiIiMgoMek2Qum5uTh29SoEgG4tWzbM6uSl/fabTLoB+bznwoVA06aGjoqIqkKjkVN/5eYCarVMttVq+TtNREREZKQaeCZG5bGxtMRIb2/kFRbCp1WrhjucvFhmphxWrtXK9alTAS8vQ0dFRJWl1cpkOztbDh/38pI93A39ZiARERFRJfAbjxEQQuBobCxa2dqijZMTAKBz8+aGDqvmLF0K/PWXXO7WDZgyxdAREVFlaLXAvXvyxpmDA9C5M+DiApiZGToyIiIiojrDpLuBu786eVNzc0wfMACW5uaGDqvm7N8P/PijXG7aVA4rZ+8YUf0mBJCaCqSnA3Z2gK+vLJRmTH+biIiIiCqJ2UsDFl9UnTyzqDp5QKdOxpVwJyQAH3xQsv7WW3I6ISKqn4QA0tLky8YG8PEBWrQAVCpDR0ZERERkMEy6G6Di4eSH769O7usLtZWVoUOrORoNEBoKZGTI9cGDgWHDDB0VEVUkPV0OJbe2lo+BtGwJWFoaOioiIiIig2PS3cAUaDSIPHkSV+/cAQB4t2qFYV27Nvzq5KVt2gScOiWXnZ2Bd97h3L1E9VFmpiyS1rQp0KWLnM6PMwsQERER6RhZpmb8TJVKNDU3h6lSieFeXvBxdTV0SDXv0iVg7Vq5rFAA4eGy94yI6o+sLJlsW1oCHToAbm5As2aGjoqIiIio3mHS3QAIIVCg0cDc1BQKhQLDvbzQp21bOBnTcPJiubnA/PlAYaFcnzgR6NHD0FERUbGcHCAlRRZF8/QE3N15U4yIiIjoAZh013NZeXmIOnMGpkolnu/ZEwqFAuampsaZcAPAypXA9etyuWNH4NVXDR0REaHohlhyspw9wN0d8PAAbG0NHRURERFRvcekux4rXZ38TkYG1Mbco3T0KLBtm1y2sAAWLeJ8vkSGlpcnk22lUg4hd3eX04CxxgIRERFRpTDproe0QuCX+6qTOzVrhjHGVp28tJQU4P33S9ZnzZI9aURkGAUFwJ07chqwli1lsu3gwGSbiIiIqIqYdNczxcPJryUnAwB8WrXCUGOsTn4/IWSxtHv35Hq/fsDo0YaOiqhxKiyUPduFhYCLC9C6NeDoKHu6iYiIiKjKjDiTa3iEEIg8eRI3790z7urkpf3zn0BMjFx2cADefZe9aUR1rbBQjjgpKADUaplsq9VMtomIiIgeEZPuekShUCCwc2f8eP48nu3e3biHkxe7ehX49NOS9dBQ+bwoEdUNjUZO/ZWbCzg5yWTb2RkwMTF0ZERERERGgUm3gWXl5eGv1FS0d3YGALS0s0NI375QNIae3vx8YMECWagJAIKCgN69DR0VUeOg1cpkOztbjjDp2lUOJzfmR1mIiIiIDIDfrgwoPjkZP5w5g5yCAkx94gm42NgART3ejcKaNcAff8jlNm2A114zdERExk8IWT8hMxOwtwc6dQKaN+dMAURERES1hEm3AZRXndyksT03+d//Aps2yWUzM2DxYkClMnRURMZLCCAtTb5sbYHu3WWybWFh6MiIiIiIjBqT7jqWmZeH7Y2tOnlpqalAWFjJ+owZQLt2hoyIyLilpcnfOxsbwNtbTgHGm1xEREREdcL4ulfHjgWOH5fLWq0csuzpCbRtC3z2WYW7Ka9elc8Tt28P9OwJ/O9/8o3cXGDUKLnd2xsYPBiIja1cLHfvyuM/+ywwbhxuHzqEz3/+GdeSk2FmYoJnvL3xjI+PTLiPHgWee062nTNHDv0sVtF7KSnAxInAW28Bv/1Wcs5LlgDPPCPjjoysOL4bN4CXXpLTc02cKIuaFYuJAYKDgeefByZPBq5cqdY54/Rp/feFAD74QM7/C8gv/tu2Vf2cCwsrFw9RY5aRAVy/LouleXkB/v7y7yETbiIiIqI6Y1xJ94kTMunz95frmzYBFy7IhPHECeDjj0uS6VIs33wTCAmRbd9+WyaaxUJCgMuXgXPnZDI7dWrl4lm1ShYn2r4dCA2FfUQEsrOz4dSsGf7Wp0/JdGDZ2cDChcCyZbKtoyOwfv3D33NwAFq1Aq5dA7p1k9t27wbi4oCoKODrr4Fvv9VPpu/3wQcyqY2KkolseLjcnp4up+0KCwO2bAFmzpQFz6pxzliwQD9B3rkTOHhQLisUsnJ5Vc/Z2xvYtaty8RA1RpmZ8qZaXh7QubO8odiuHdCkiaEjIyIiImp0jCvp/vxz4IUXStYjI4G//U1OfWNvL6tjf/99md2cAJiePQtMmCA3PPcccPOm7NFWqYBhw0rmje7VC4iPr1w8Bw7IzwKALl1g7uKC54TA1D594HT/dGAxMUCHDoCHh1wfOxb46aeHvwcAOTmyCnix/ftlD7eJiRxKOniwfvtid+8CFy8CQ4fK9SefBBIT5Xn/+afc19NTvte9u3zv0qUqnzMcHYFTp+T6zZvA0qUlbdu1Ax57rOrnHBgobxQQkb7sbJls5+TI0Tm9ewMdOwJNmxo6MiIiIqJGy7iS7sOHAT+/kvUbNwB395J1Dw+5rRRXAFpn55KpchQKwM2t3Lb45BPZ2/0wqakQhYXYdPUqCjQa+bEtWqCzQlH2+e2EBDlVT7EWLYDkZNlD/KD3ANnLfedOyfDrhARZHOn+9gkJZeNLTJS9xvefs7OzbOvmJp8BPXdOvnfkCJCVBdy69dBzRmGhTLRLH7+wUPZ65+TI7V26yFd1zrljR3lD5P7h6ESNWW6uvFmWkSFvlvn7y9+v+2/uEREREZFBGFf1rj//lIljbfngA5nsRUc/sJlWCBy/ehV+Wi2u3rmDY7GxGNChQ+3ElJQkv1gnJwPNmtXMZzZrBnz0EbB6tew58/KSU3qZmFT/M7/6qmRov6sr0L8/cPt29T7L1LTmz5moIcrNlb8HpqbyBqO7O2BnZ+ioiIiIiOg+xpV0N2kiv4QWc3OTRYSKn/GOj5fbSrkJQJmYKHtSTU1lsa8bN/TbLl0qhzQfOPDA5yIz8/IQdf484pKT0VOphJ+1NXoXD9O+dUu/B7eYi4ucQqvYrVuyt9jU9MHvoagQWX5+ybQ/Li4ymS1+xruiYzo7y6Jk959zYmJJ2x495AuQnx8YKBPvB7G1lYl5cnJJb/etW7KX/B//kOsmJvJ57YQE4MyZ6p1zcUyc6ogaq/x8+XsGyLoOHh7yEZrix2CIiIiIqN4wruHl3brJgmfFxo4FvvxSVu69e1c+4x0UVGa3OwA03bqVzBv9ww/yi2zbtnJ9+XL5LPj+/TKxvN877+iqosdlZODzmBjEFVUnz+zTB09dvCiHk//vf3IYuK9v2bj9/eXz0sXPim/dCgwZ8vD3UDRkXoiSHv6AAGDHDnnOaWky5vvbF7O3l89N79kj16OjAbVa9kIDJV/oUdRL3aNHyXuffVZxVfSAAPnzA+Q5JyXJn51WK7eFhMhCa49yzikpJcPhiRqTggJ5U+3OHXlzqlcvWRfBwYEJNxEREVE9ZVw93WPGyIJbAQFyPTgY+PVXWbBLoQBmzZJDpVFURXvnTplQA8hesQLWr78uh5BbWwMbNsh2f/4J/P3vspd34EC5zcKipCf23DnA1xfnLlzAv65cgQDg1KwZxvr6wv7xx4H33pMVws3MZA9vcW/tunWy93bMGFnkaMECeRyNRj6TWVxJ/EHvoaiXKycHUBbdPxk2TFZsHz1arr/4YsnNgyNHgJ9/lpXJAWDePPlZGzbI44SGlnzuunWyJ7p4qqH33it578oV+Vx1eV57Tf+c27SRleNR1Ltubf3w83rYOR8/DgwYUHLORMausLCkroGzM9C6NeDkxN8BIiIiogZAIYQQhg6ixmRmymq9x49Xulpveno6bGxscO/ePdiW7sV+GI1G9jT9979Iu3ULn2/ciA4uLhjq5VW2WFptmTJF9mhv3gxYWtb+8TQaecyNGx/+hf+nn4D58+Vy06ayx7tFi0ePYepU+bmtWz/6ZxkhrRBIys2FWqWCkr2fDZtGI0d25OXJZNvDQ45IeZT6Cg2QVqtFUlIS1Go1lLzRQEaA1zQZE17PZGxSU1NhZ2eHtLQ0WBd3GD4i4+rpbtYMWLFCzlPdtWutH+5eejrsfv0VAGBjZYX/69wZVi1b6j97XJtSUuRweXt74K+/Snq0a5OJCfDNNw9vl5AARESUrM+dWzMJd0qKHB3AhJuMmUYD3LsnCxk6OclHZ+6fYYGIiIiIGgzj+wb35JO1fgitVoujR4/iyJEjCAoKQoeiyuRW5ua1fmw9Dg7AU0/V7TErQ6ORQ8yLp/R66qmS+cAfVX09Z6KaoNXKZDszU17rnTvLZ7fNzAwdGRERERFVk/El3bUsMzMTUVFRiIuLAwDEx8frkm4q8u23wOnTctnFBXj7bUNHRFS/CSHnuU9PlyNXfH2B5s2Bur6RR0REREQ1jkl3FcTFxSEqKgqZmZkwMzPD8OHD4e3tbeiw6pcLF4C1a+WyUimLx1lZGToqovpJCFmTIS0NsLEBfHyAli05HR4RERGREWHSXQlarRY///wzjhw5AgBQq9UYM2YMnJycDB1a/ZKTI6uOazRyfdIkoHt3Q0dFVD+lp8uh5NbW8pntli3rphgiEREREdUpJt2VEB8fr0u4u3fvjqFDh8KMz1iWtXw5cOOGXO7cGXjlFUNHRFT/ZGYCd+/Kiv5dugCurkCTJoaOioiIiIhqCZPuSmjTpg38/f3h7OzM4eQVOXwY2L5dLqtU+nOSExGQlSWr7zdpAnToALi5yRkXiIiIiMioMSsqh1arRUxMDHx8fNCs6EvxkCFDDB1W/ZWcDCxaVLL+978D7u6GjIio/sjJkb8jFhZAu3Yy2a6hOR+JiIiIqP6rlzPYr169Gh4eHlCpVPDz88OJEyce2H7r1q3o2LEjVCoVvLy8sHv37mofOzMzE5s2bUJ0dDSioqIghHj4ThoNcPQocOQIcOpUyTPNxkyjAU6eBPbsAWbNkpWXAWDAAGDUKENHR2R4ubnAn3/KImmtWwP+/kDXrky4iYiIiBqZetfTHRkZiVmzZmHdunXw8/PDypUrERgYiMuXL0OtVpdpHxMTg/HjxyMiIgJPP/00vvvuO4waNQqnT59G165dq3Tsa9euISoqCllZWTAzM4OPjw8UCsWDd4qKAmbOlF+ui6nVwOzZwKBBVTp+g3HwILB0KZCUpL/dykoWUnvYz4zImOXlyZ5tpVL2aru7y2nAiIiIiKhRUohKdeXWHT8/P/Ts2ROfffYZUDTU29XVFa+99hrmzp1bpn1QUBCysrLw448/6rb16tULPj4+WLdu3UOPl56eDhsbG/z73//GqVOngKLq5GPHjoWjo+ODd46KAsaMkdP+lGfJEuNLvA8eBN56q+L3jfGcGxitEEjKzYVapYKSN0DqTn6+TLaFkJXI3d0BBwfehKoBWq0WSUlJUKvVUCrr5QAtoirhNU3GhNczGZvU1FTY2dkhLS0N1jU0QrFe9XTn5+fj1KlTeOedd3TblEolAgICcPz48XL3OX78OGbNmqW3LTAwEDt27KjSsY8dOwaVSlX56uQajezhftA9i3ffBfbuNZ4v3UIAx449uM2yZUD//oCJSV1FRWRYhYUy2S4sBJo3Bzw8ACcn4/m9JyIiIqJHUq+S7uTkZGg0Gjg7O+ttd3Z2xqVLl8rdJyEhodz2CQkJ5bbPy8tDXl6ebj0tLQ0oukv35JNPomvXrsjKynp4sEePQnn/kPLyDyZ7hhuTxERo9+6VUyGRQWgBpGu1MFcq62fRBmOi0ciXo6MskuboKIeVF/1doZqh1WqRnp4Oc3Nz9qKQUeA1TcaE1zMZm9SiWlU1OSC8XiXddSEiIgLh4eFlti9ZsgRLliwxSExGJzTU0BEQERERERFVW0pKCmxsbGrks+pV0u3o6AgTExMkJibqbU9MTISLi0u5+7i4uFSp/TvvvKM3HD01NRXu7u64ceNGjf1QiQwpPT0drq6uuHnzZo09h0JkSLymydjwmiZjwuuZjE1aWhrc3NxgX4OFcOtV0m1ubg5fX19ER0djVNG0U1qtFtHR0ZgxY0a5+/j7+yM6OhpvvPGGbtv+/fvh7+9fbnsLCwtYWFiU2W5jY8M/FGRUrK2teU2TUeE1TcaG1zQZE17PZGxq8nGJepV0A8CsWbMwadIk9OjRA48//jhWrlyJrKwsTJkyBQAwceJEtGzZEhEREQCAmTNnon///li2bBmGDx+OLVu24OTJk/jiiy8MfCZERERERETU2NW7pDsoKAh37tzBe++9h4SEBPj4+GDv3r26Ymk3btzQu+vQu3dvfPfdd1iwYAHmzZuHdu3aYceOHVWeo5uIiIiIiIioptW7pBsAZsyYUeFw8sOHD5fZNnbsWIwdO7Zax7KwsEBoaGi5Q86JGiJe02RseE2TseE1TcaE1zMZm9q4phWiJmuhExEREREREZEOJ9MjIiIiIiIiqiVMuomIiIiIiIhqCZNuIiIiIiIiolrSKJLu1atXw8PDAyqVCn5+fjhx4sQD22/duhUdO3aESqWCl5cXdu/eXWexElVGVa7pL7/8En379oWdnR3s7OwQEBDw0N8BorpW1b/TxbZs2QKFQoFRo0bVeoxElVXV6zk1NRXTp09H8+bNYWFhgfbt2/O7B9UrVb2mV65ciQ4dOsDS0hKurq548803kZubW2fxEj3Izz//jBEjRqBFixZQKBTYsWPHQ/c5fPgwHnvsMVhYWKBt27bYuHFjlY5p9El3ZGQkZs2ahdDQUJw+fRre3t4IDAxEUlJSue1jYmIwfvx4vPzyyzhz5gxGjRqFUaNG4ffff6/z2InKU9Vr+vDhwxg/fjwOHTqE48ePw9XVFUOGDMFff/1V57ETlaeq13Sx+Ph4zJ49G3379q2zWIkepqrXc35+PgYPHoz4+Hhs27YNly9fxpdffomWLVvWeexE5anqNf3dd99h7ty5CA0NxcWLF7F+/XpERkZi3rx5dR47UXmysrLg7e2N1atXV6p9XFwchg8fjoEDB+Ls2bN44403MHXqVPz000+VP6gwco8//riYPn26bl2j0YgWLVqIiIiIctuPGzdODB8+XG+bn5+feOWVV2o9VqLKqOo1XVphYaGwsrISX3/9dS1GSVR51bmmCwsLRe/evcVXX30lJk2aJJ555pk6ipbowap6Pa9du1a0adNG5Ofn12GURJVX1Wt6+vTpYtCgQXrbZs2aJZ544olaj5WoqgCI7du3P7DNW2+9Jbp06aK3LSgoSAQGBlb6OEbd052fn49Tp04hICBAt02pVCIgIADHjx8vd5/jx4/rtQeAwMDACtsT1aXqXNOlZWdno6CgAPb29rUYKVHlVPeafv/996FWq/Hyyy/XUaRED1ed63nnzp3w9/fH9OnT4ezsjK5du+KDDz6ARqOpw8iJyleda7p37944deqUbgj6tWvXsHv3bgwbNqzO4iaqSTWRH5rWQlz1RnJyMjQaDZydnfW2Ozs749KlS+Xuk5CQUG77hISEWo2VqDKqc02X9vbbb6NFixZl/ngQGUJ1rulffvkF69evx9mzZ+soSqLKqc71fO3aNRw8eBAvvvgidu/ejdjYWEybNg0FBQUIDQ2to8iJyleda/qFF15AcnIy+vTpAyEECgsL8eqrr3J4OTVYFeWH6enpyMnJgaWl5UM/w6h7uolI34cffogtW7Zg+/btUKlUhg6HqMoyMjIQHByML7/8Eo6OjoYOh+iRabVaqNVqfPHFF/D19UVQUBDmz5+PdevWGTo0omo5fPgwPvjgA6xZswanT59GVFQUdu3ahYULFxo6NCKDMeqebkdHR5iYmCAxMVFve2JiIlxcXMrdx8XFpUrtiepSda7pYkuXLsWHH36IAwcOoFu3brUcKVHlVPWavnr1KuLj4zFixAjdNq1WCwAwNTXF5cuX4enpWQeRE5VVnb/RzZs3h5mZGUxMTHTbOnXqhISEBOTn58Pc3LzW4yaqSHWu6XfffRfBwcGYOnUqAMDLywtZWVkICQnB/PnzoVSyz48aloryQ2tr60r1csPYe7rNzc3h6+uL6Oho3TatVovo6Gj4+/uXu4+/v79eewDYv39/he2J6lJ1rmkAWLJkCRYuXIi9e/eiR48edRQt0cNV9Zru2LEjzp8/j7Nnz+peI0eO1FUUdXV1reMzICpRnb/RTzzxBGJjY3U3jwDgypUraN68ORNuMrjqXNPZ2dllEuvim0qybhVRw1Ij+WG1S701EFu2bBEWFhZi48aN4sKFCyIkJETY2tqKhIQEIYQQwcHBYu7cubr2x44dE6ampmLp0qXi4sWLIjQ0VJiZmYnz588b8CyISlT1mv7www+Fubm52LZtm7h9+7bulZGRYcCzICpR1Wu6NFYvp/qkqtfzjRs3hJWVlZgxY4a4fPmy+PHHH4VarRaLFi0y4FkQlajqNR0aGiqsrKzE999/L65duyb27dsnPD09xbhx4wx4FkQlMjIyxJkzZ8SZM2cEALF8+XJx5swZcf36dSGEEHPnzhXBwcG69teuXRNNmjQRc+bMERcvXhSrV68WJiYmYu/evZU+ptEn3UIIsWrVKuHm5ibMzc3F448/Lv7zn//o3uvfv7+YNGmSXvt//vOfon379sLc3Fx06dJF7Nq1ywBRE1WsKte0u7u7AFDmFRoaaqDoicqq6t/p+zHppvqmqtdzTEyM8PPzExYWFqJNmzZi8eLForCw0ACRE5WvKtd0QUGBCAsLE56enkKlUglXV1cxbdo0ce/ePQNFT6Tv0KFD5X43Lr6OJ02aJPr3719mHx8fH2Fubi7atGkjNmzYUKVjKgTHeRARERERERHVCqN+ppuIiIiIiIjIkJh0ExEREREREdUSJt1EREREREREtYRJNxEREREREVEtYdJNREREREREVEuYdBMRERERERHVEibdRERERERERLWESTcRERERERFRLWHSTUREVEVhYWFQKBSGDuOhBgwYgAEDBhg6DJ3in1tycnKNfaaHhweefvrph7Y7fPgwFAoFDh8+rNs2efJkeHh46LVTKBQICwursfiIiIiYdBMRkdFYs2YNFAoF/Pz8DB1Kg+Lh4QGFQqF7qdVq9O3bF9u3bzd0aAYXExODsLAwpKamGjoUIiJqoJh0ExGR0di8eTM8PDxw4sQJxMbG1tpxFixYgJycnFr7fEPw8fHBt99+i2+//RazZ8/GrVu3MHr0aKxbt87QodWIfv36IScnB/369Xtgu5ycHCxYsEC3HhMTg/DwcCbdRERUbUy6iYjIKMTFxSEmJgbLly+Hk5MTNm/eXGvHMjU1hUqlqrXPN4SWLVtiwoQJmDBhAt566y0cO3YMTZs2xYoVKyrcp7CwEPn5+XUaZ3UplUqoVCoolQ/+6qNSqWBqalpncRERkfFj0k1EREZh8+bNsLOzw/DhwzFmzJgKk+4tW7bA19cXVlZWsLa2hpeXFz755BPd+wUFBQgPD0e7du2gUqng4OCAPn36YP/+/bo25T3TnZOTg9dffx2Ojo6wsrLCyJEj8ddff5V5Rrh439jYWEyePBm2trawsbHBlClTkJ2dXSbeTZs2wdfXF5aWlrC3t8fzzz+Pmzdvlmn3xRdfwNPTE5aWlnj88cdx9OjRav8sAcDFxQWdOnVCXFwcACA+Ph4KhQJLly7FypUr4enpCQsLC1y4cAEAcPDgQfTt2xdNmzaFra0tnnnmGVy8eLHcz05OTsa4ceNgbW0NBwcHzJw5E7m5uXptNmzYgEGDBkGtVsPCwgKdO3fG2rVrK4x337598PHxgUqlQufOnREVFaX3fnnPdJfn/n+vsLAwzJkzBwDQunVr3fD7+Ph49O/fH97e3uV+RocOHRAYGPjA4xARUePBpJuIiIzC5s2bMXr0aJibm2P8+PH4448/8Ouvv+q12b9/P8aPHw87Ozt89NFH+PDDDzFgwAAcO3ZM1yYsLAzh4eEYOHAgPvvsM8yfPx9ubm44ffr0A48/efJkrFq1CsOGDcNHH30ES0tLDB8+vML248aNQ0ZGBiIiIjBu3Dhs3LgR4eHhem0WL16MiRMnol27dli+fDneeOMNREdHo1+/fnrDndevX49XXnkFLi4uWLJkCZ544gmMHDmy3OS8sgoKCnDz5k04ODjobd+wYQNWrVqFkJAQLFu2DPb29jhw4AACAwORlJSEsLAwzJo1CzExMXjiiScQHx9f7rnn5uYiIiICw4YNw6effoqQkBC9NmvXroW7uzvmzZuHZcuWwdXVFdOmTcPq1avLfN4ff/yBoKAgDB06FBERETA1NcXYsWP1bpRUx+jRozF+/HgAwIoVK3TD752cnBAcHIzffvsNv//+u94+v/76K65cuYIJEyY80rGJiMiICCIiogbu5MmTAoDYv3+/EEIIrVYrWrVqJWbOnKnXbubMmcLa2loUFhZW+Fne3t5i+PDhDzxeaGiouP+/0FOnTgkA4o033tBrN3nyZAFAhIaGltn3pZde0mv77LPPCgcHB916fHy8MDExEYsXL9Zrd/78eWFqaqrbnp+fL9RqtfDx8RF5eXm6dl988YUAIPr37//AcxFCCHd3dzFkyBBx584dcefOHXHu3Dnx/PPPCwDitddeE0IIERcXJwAIa2trkZSUpLe/j4+PUKvVIiUlRbft3LlzQqlUiokTJ5Y595EjR+rtP23aNAFAnDt3TrctOzu7TJyBgYGiTZs2ZWIHIH744QfdtrS0NNG8eXPRvXt33bZDhw4JAOLQoUO6bZMmTRLu7u56n1f63+vjjz8WAERcXJxeu9TUVKFSqcTbb7+tt/31118XTZs2FZmZmWXiJyKixok93URE1OBt3rwZzs7OGDhwIFA0RDgoKAhbtmyBRqPRtbO1tUVWVtYDe0BtbW3xv//9D3/88Uelj793714AwLRp0/S2v/baaxXu8+qrr+qt9+3bFykpKUhPTwcAREVFQavVYty4cUhOTta9XFxc0K5dOxw6dAgAcPLkSSQlJeHVV1+Fubm57vMmT54MGxubSp/Dvn374OTkBCcnJ3h7e2Pr1q0IDg7GRx99pNfuueeeg5OTk2799u3bOHv2LCZPngx7e3vd9m7dumHw4MHYvXt3mWNNnz693J/T/W0tLS11y2lpaUhOTkb//v1x7do1pKWl6e3fokULPPvss7p1a2trTJw4EWfOnEFCQkKlfwZVYWNjg2eeeQbff/89ZK4OaDQaREZGYtSoUWjatGmtHJeIiBoeJt1ERNSgaTQabNmyBQMHDkRcXBxiY2MRGxsLPz8/JCYmIjo6Wtd22rRpaN++PYYOHYpWrVrhpZde0iXMxd5//32kpqaiffv28PLywpw5c/Dbb789MIbr169DqVSidevWetvbtm1b4T5ubm5663Z2dgCAe/fuAUVDpoUQaNeunS4ZLn5dvHgRSUlJumMDQLt27fQ+z8zMDG3atHlg3Pfz8/PD/v37ceDAAcTExCA5ORnffPONXvKLomebS587ip5jLq1Tp05ITk5GVlaW3vbSsXp6ekKpVOoNRT927BgCAgJ0z4g7OTlh3rx5QFESfr+2bduWeca+ffv2QNGz6LVl4sSJuHHjhu75+QMHDiAxMRHBwcG1dkwiImp4WJ6TiIgatIMHD+L27dvYsmULtmzZUub9zZs3Y8iQIQAAtVqNs2fP4qeffsKePXuwZ88ebNiwARMnTsTXX38NFE0tdfXqVfzrX//Cvn378NVXX2HFihVYt24dpk6dWmNxm5iYlLu9uNdUq9VCoVBgz5495bZt1qxZjcUCAI6OjggICHhou9JJeE0onTBfvXoVTz75JDp27Ijly5fD1dUV5ubm2L17N1asWAGtVlvjMVRHYGAgnJ2dsWnTJvTr1w+bNm2Ci4tLpX6ORETUeDDpJiKiBm3z5s1Qq9XlFtiKiorC9u3bsW7dOl2yaG5ujhEjRmDEiBHQarWYNm0aPv/8c7z77ru6nml7e3tMmTIFU6ZMQWZmJvr164ewsLAKk253d3dotVrExcXp9eI+ylzhnp6eEEKgdevWul7bio6Nop7xQYMG6bYXFBQgLi6uwgrbNaX4+JcvXy7z3qVLl+Do6FhmqPUff/yh12MeGxsLrVYLDw8PAMC///1v5OXlYefOnXojAoqH1JcWGxsLIYRe8n7lyhUA0H1mdZW+IXA/ExMTvPDCC9i4cSM++ugj7NixA3/7298qvKFCRESNE4eXExFRg5WTk4OoqCg8/fTTGDNmTJnXjBkzkJGRgZ07dwIAUlJS9PZXKpXo1q0bACAvL6/cNs2aNUPbtm1175eneHqoNWvW6G1ftWpVtc9t9OjRMDExQXh4uK73u5gQQhdnjx494OTkhHXr1unNmb1x40a9Cue1pXnz5vDx8cHXX3+td7zff/8d+/btw7Bhw8rsU/oGSfHPaejQocB9owDuP++0tDRs2LCh3Bhu3bqF7du369bT09PxzTffwMfHBy4uLo90fsU3DCr6WQYHB+PevXt45ZVXkJmZyarlRERUBnu6iYiowdq5cycyMjIwcuTIct/v1asXnJycsHnzZgQFBWHq1Km4e/cuBg0ahFatWuH69etYtWoVfHx80KlTJwBA586dMWDAAPj6+sLe3h4nT57Etm3bMGPGjArj8PX1xXPPPYeVK1ciJSUFvXr1wpEjR3S9rQ/qLa2Ip6cnFi1ahHfeeQfx8fEYNWoUrKysEBcXh+3btyMkJASzZ8+GmZkZFi1ahFdeeQWDBg1CUFAQ4uLisGHDhio90/0oPv74YwwdOhT+/v54+eWXkZOTg1WrVsHGxkZvjvJicXFxGDlyJJ566ikcP34cmzZtwgsvvKDrlR8yZIhuREJxMvvll19CrVbj9u3bZT6vffv2ePnll/Hrr7/C2dkZ//jHP5CYmFhhkl4Vvr6+AID58+fj+eefh5mZGUaMGKFLxrt3746uXbti69at6NSpEx577LFHPiYRERkX9nQTEVGDtXnzZqhUKgwePLjc95VKJYYPH469e/ciJSUFEyZMgEqlwpo1azBt2jR8/fXXCAoKwp49e6BUyv8SX3/9dcTHxyMiIgKvv/46jhw5gkWLFmHZsmUPjOWbb77B9OnTsWvXLrz99tvIz89HZGQkAEClUlXr/ObOnYsffvgBSqUS4eHhmD17Nnbu3IkhQ4bo3WgICQnBmjVrcOvWLcyZMwdHjx7Fzp074erqWq3jVlVAQAD27t0LBwcHvPfee1i6dCl69eqFY8eOlSm8BgCRkZGwsLDA3LlzsWvXLsyYMQPr16/Xvd+hQwds27YNCoUCs2fPxrp16xASEoKZM2eWe/x27dohMjISu3fvxty5c1FQUIDIyEjdCIRH0bNnTyxcuBDnzp3D5MmTMX78eNy5c0evzcSJE4GiXm8iIqLSFKL0mDUiIiKqEWfPnkX37t2xadMmvPjii4YOh2rJJ598gjfffBPx8fFlqtITERGxp5uIiKgG5OTklNm2cuVKKJVK9OvXzyAxUe0TQmD9+vXo378/E24iIioXn+kmIiKqAUuWLMGpU6cwcOBAmJqa6qYkCwkJqbNh3lR3srKysHPnThw6dAjnz5/Hv/71L0OHRERE9RSHlxMREdWA/fv3Izw8HBcuXEBmZibc3NwQHByM+fPnw9SU97iNTXx8PFq3bg1bW1tMmzYNixcvNnRIRERUTzHpJiIiIiIiIqolfKabiIiIiIiIqJYw6SYiIiIiIiKqJUy6iYiIiIiIiGoJk24iIiIiIiKiWsKkm4iIiIiIiKiWMOkmIiIiIiIiqiVMuomIiIiIiIhqCZNuIiIiIiIiolrCpJuIiIiIiIiolvw/9YbmK38yJwcAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Number of pro forecasts: 50\n", + "Number of bot forecasts: 241\n" + ] + } + ], "source": [ "# Set up the plot\n", "plt.figure(figsize=(10, 8))\n", "plt.plot([0, 1], [0, 1], linestyle='--', color='gray', label='Perfectly calibrated')\n", "\n", "# Plot calibration curves for bot_team_median and pro_median\n", - "plot_calibration_curve(df_top_bot_pro_forecasts_all, 'bot_team_median', 'Bot Team Median', 'blue')\n", - "plot_calibration_curve(df_top_bot_pro_forecasts, 'pro_median', 'Pro Median', 'red')\n", + "plot_calibration_curve(df_top_bot_pro_forecasts_all_binary, 'bot_team_median', 'Bot Team Median', 'blue')\n", + "plot_calibration_curve(df_top_bot_pro_forecasts_binary, 'pro_median', 'Pro Median', 'red')\n", "\n", "# Customize the plot\n", "plt.xlabel('Assigned Probability', fontsize=12)\n", @@ -1605,13 +12129,13 @@ "# Show the plot\n", "plt.tight_layout()\n", "plt.show()\n", - "print(f\"Number of pro forecasts: {len(df_top_bot_pro_forecasts)}\")\n", - "print(f\"Number of bot forecasts: {len(df_bot_forecasts)}\")" + "print(f\"Number of pro forecasts: {len(df_top_bot_pro_forecasts_binary)}\")\n", + "print(f\"Number of bot forecasts: {len(df_top_bot_pro_forecasts_all_binary)}\")" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 80, "metadata": { "colab": { "base_uri": "https://localhost:8080/" @@ -1619,7 +12143,27 @@ "id": "lPPgorXB7omi", "outputId": "24571b16-50b7-4e51-cd3d-420c15c7fe42" }, - "outputs": [], + "outputs": [ + { + "ename": "ValueError", + "evalue": "The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[80], line 2\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;66;03m# Calculate confidence scores for bot_team_median and pro_median\u001b[39;00m\n\u001b[0;32m----> 2\u001b[0m bot_confidence \u001b[38;5;241m=\u001b[39m \u001b[43mcalculate_confidence\u001b[49m\u001b[43m(\u001b[49m\u001b[43mdf_top_bot_pro_forecasts\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mbot_team_median\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mdf_top_bot_pro_forecasts\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mresolution\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 3\u001b[0m pro_confidence \u001b[38;5;241m=\u001b[39m calculate_confidence(df_top_bot_pro_forecasts[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mpro_median\u001b[39m\u001b[38;5;124m'\u001b[39m], df_top_bot_pro_forecasts[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mresolution\u001b[39m\u001b[38;5;124m'\u001b[39m])\n\u001b[1;32m 5\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mBot team confidence score: \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mbot_confidence\u001b[38;5;132;01m:\u001b[39;00m\u001b[38;5;124m.4f\u001b[39m\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m)\n", + "File \u001b[0;32m~/metaculus/aib-analysis/functions.py:824\u001b[0m, in \u001b[0;36mcalculate_confidence\u001b[0;34m(predictions, outcomes)\u001b[0m\n\u001b[1;32m 813\u001b[0m \u001b[38;5;250m\u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 814\u001b[0m \u001b[38;5;124;03mCalculates over- or under-confidence for a set of predictions.\u001b[39;00m\n\u001b[1;32m 815\u001b[0m \n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 821\u001b[0m \u001b[38;5;124;03m float: Confidence score (positive for overconfidence, negative for underconfidence).\u001b[39;00m\n\u001b[1;32m 822\u001b[0m \u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 823\u001b[0m \u001b[38;5;66;03m# Bin predictions into 10 equally spaced bins\u001b[39;00m\n\u001b[0;32m--> 824\u001b[0m bins \u001b[38;5;241m=\u001b[39m \u001b[43mpd\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcut\u001b[49m\u001b[43m(\u001b[49m\u001b[43mpredictions\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mbins\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;241;43m10\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[1;32m 826\u001b[0m \u001b[38;5;66;03m# Calculate mean prediction and actual outcome for each bin\u001b[39;00m\n\u001b[1;32m 827\u001b[0m grouped \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mDataFrame({\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mprediction\u001b[39m\u001b[38;5;124m'\u001b[39m: predictions, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124moutcome\u001b[39m\u001b[38;5;124m'\u001b[39m: outcomes})\u001b[38;5;241m.\u001b[39mgroupby(bins)\n", + "File \u001b[0;32m~/.local/lib/python3.12/site-packages/pandas/core/reshape/tile.py:246\u001b[0m, in \u001b[0;36mcut\u001b[0;34m(x, bins, right, labels, retbins, precision, include_lowest, duplicates, ordered)\u001b[0m\n\u001b[1;32m 243\u001b[0m x_idx, _ \u001b[38;5;241m=\u001b[39m _coerce_to_type(x_idx)\n\u001b[1;32m 245\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m np\u001b[38;5;241m.\u001b[39miterable(bins):\n\u001b[0;32m--> 246\u001b[0m bins \u001b[38;5;241m=\u001b[39m \u001b[43m_nbins_to_bins\u001b[49m\u001b[43m(\u001b[49m\u001b[43mx_idx\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mbins\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mright\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 248\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(bins, IntervalIndex):\n\u001b[1;32m 249\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m bins\u001b[38;5;241m.\u001b[39mis_overlapping:\n", + "File \u001b[0;32m~/.local/lib/python3.12/site-packages/pandas/core/reshape/tile.py:363\u001b[0m, in \u001b[0;36m_nbins_to_bins\u001b[0;34m(x_idx, nbins, right)\u001b[0m\n\u001b[1;32m 360\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m x_idx\u001b[38;5;241m.\u001b[39msize \u001b[38;5;241m==\u001b[39m \u001b[38;5;241m0\u001b[39m:\n\u001b[1;32m 361\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mCannot cut empty array\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 363\u001b[0m rng \u001b[38;5;241m=\u001b[39m (\u001b[43mx_idx\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmin\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m, x_idx\u001b[38;5;241m.\u001b[39mmax())\n\u001b[1;32m 364\u001b[0m mn, mx \u001b[38;5;241m=\u001b[39m rng\n\u001b[1;32m 366\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m is_numeric_dtype(x_idx\u001b[38;5;241m.\u001b[39mdtype) \u001b[38;5;129;01mand\u001b[39;00m (np\u001b[38;5;241m.\u001b[39misinf(mn) \u001b[38;5;129;01mor\u001b[39;00m np\u001b[38;5;241m.\u001b[39misinf(mx)):\n\u001b[1;32m 367\u001b[0m \u001b[38;5;66;03m# GH#24314\u001b[39;00m\n", + "File \u001b[0;32m~/.local/lib/python3.12/site-packages/pandas/core/indexes/base.py:7467\u001b[0m, in \u001b[0;36mIndex.min\u001b[0;34m(self, axis, skipna, *args, **kwargs)\u001b[0m\n\u001b[1;32m 7464\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_is_multi \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_values, np\u001b[38;5;241m.\u001b[39mndarray):\n\u001b[1;32m 7465\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_values\u001b[38;5;241m.\u001b[39m_reduce(name\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mmin\u001b[39m\u001b[38;5;124m\"\u001b[39m, skipna\u001b[38;5;241m=\u001b[39mskipna)\n\u001b[0;32m-> 7467\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mnanops\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mnanmin\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_values\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mskipna\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mskipna\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/.local/lib/python3.12/site-packages/pandas/core/nanops.py:147\u001b[0m, in \u001b[0;36mbottleneck_switch.__call__..f\u001b[0;34m(values, axis, skipna, **kwds)\u001b[0m\n\u001b[1;32m 145\u001b[0m result \u001b[38;5;241m=\u001b[39m alt(values, axis\u001b[38;5;241m=\u001b[39maxis, skipna\u001b[38;5;241m=\u001b[39mskipna, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwds)\n\u001b[1;32m 146\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m--> 147\u001b[0m result \u001b[38;5;241m=\u001b[39m \u001b[43malt\u001b[49m\u001b[43m(\u001b[49m\u001b[43mvalues\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maxis\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43maxis\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mskipna\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mskipna\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwds\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 149\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m result\n", + "File \u001b[0;32m~/.local/lib/python3.12/site-packages/pandas/core/nanops.py:404\u001b[0m, in \u001b[0;36m_datetimelike_compat..new_func\u001b[0;34m(values, axis, skipna, mask, **kwargs)\u001b[0m\n\u001b[1;32m 401\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m datetimelike \u001b[38;5;129;01mand\u001b[39;00m mask \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 402\u001b[0m mask \u001b[38;5;241m=\u001b[39m isna(values)\n\u001b[0;32m--> 404\u001b[0m result \u001b[38;5;241m=\u001b[39m \u001b[43mfunc\u001b[49m\u001b[43m(\u001b[49m\u001b[43mvalues\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maxis\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43maxis\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mskipna\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mskipna\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mmask\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmask\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 406\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m datetimelike:\n\u001b[1;32m 407\u001b[0m result \u001b[38;5;241m=\u001b[39m _wrap_results(result, orig_values\u001b[38;5;241m.\u001b[39mdtype, fill_value\u001b[38;5;241m=\u001b[39miNaT)\n", + "File \u001b[0;32m~/.local/lib/python3.12/site-packages/pandas/core/nanops.py:1098\u001b[0m, in \u001b[0;36m_nanminmax..reduction\u001b[0;34m(values, axis, skipna, mask)\u001b[0m\n\u001b[1;32m 1093\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m _na_for_min_count(values, axis)\n\u001b[1;32m 1095\u001b[0m values, mask \u001b[38;5;241m=\u001b[39m _get_values(\n\u001b[1;32m 1096\u001b[0m values, skipna, fill_value_typ\u001b[38;5;241m=\u001b[39mfill_value_typ, mask\u001b[38;5;241m=\u001b[39mmask\n\u001b[1;32m 1097\u001b[0m )\n\u001b[0;32m-> 1098\u001b[0m result \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mgetattr\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43mvalues\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mmeth\u001b[49m\u001b[43m)\u001b[49m\u001b[43m(\u001b[49m\u001b[43maxis\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1099\u001b[0m result \u001b[38;5;241m=\u001b[39m _maybe_null_out(result, axis, mask, values\u001b[38;5;241m.\u001b[39mshape)\n\u001b[1;32m 1100\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m result\n", + "File \u001b[0;32m~/.local/lib/python3.12/site-packages/numpy/_core/_methods.py:49\u001b[0m, in \u001b[0;36m_amin\u001b[0;34m(a, axis, out, keepdims, initial, where)\u001b[0m\n\u001b[1;32m 47\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_amin\u001b[39m(a, axis\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mNone\u001b[39;00m, out\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mNone\u001b[39;00m, keepdims\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[1;32m 48\u001b[0m initial\u001b[38;5;241m=\u001b[39m_NoValue, where\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m):\n\u001b[0;32m---> 49\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mumr_minimum\u001b[49m\u001b[43m(\u001b[49m\u001b[43ma\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maxis\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43;01mNone\u001b[39;49;00m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mout\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mkeepdims\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43minitial\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mwhere\u001b[49m\u001b[43m)\u001b[49m\n", + "\u001b[0;31mValueError\u001b[0m: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()" + ] + } + ], "source": [ "# Calculate confidence scores for bot_team_median and pro_median\n", "bot_confidence = calculate_confidence(df_top_bot_pro_forecasts['bot_team_median'], df_top_bot_pro_forecasts['resolution'])\n", @@ -2608,6 +13152,15 @@ "top_bot_team" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "df_bot_forecasts.columns" + ] + }, { "cell_type": "code", "execution_count": null, @@ -2681,7 +13234,7 @@ "provenance": [] }, "kernelspec": { - "display_name": "usr", + "display_name": "Python 3", "language": "python", "name": "python3" }, diff --git a/bootstrapped_h2h_bot_vs_pros.csv b/bootstrapped_h2h_bot_vs_pros.csv index e772a70..c536929 100644 --- a/bootstrapped_h2h_bot_vs_pros.csv +++ b/bootstrapped_h2h_bot_vs_pros.csv @@ -1,46 +1,47 @@ ,2.5% CI,10% CI,Median,90% CI,97.5% CI -hlb-bot,0.0,0.0,0.0,0.0,0.0 -HunchexBot,-1.6,-1.2,-0.5,0.1,0.4 -tombot37,-2.8,-2.2,-1.2,-0.1,0.5 -Panshul42,-5.5,-4.4,-2.0,0.6,1.8 -predictomatic,-8.8,-6.4,-2.3,0.6,1.4 -lookahead,-6.0,-4.7,-2.5,-0.7,0.1 -ProfessorSP,-12.5,-9.2,-3.7,1.3,3.2 -lostandfound,-11.8,-9.5,-5.1,-1.6,-0.1 -silicoqr,-11.6,-9.0,-5.5,-2.3,-0.4 -jkraybill_bot,-12.2,-10.0,-6.1,-2.1,-0.2 -karamazov,-12.0,-10.3,-7.2,-4.6,-3.3 -estr.ai,-17.4,-14.2,-8.5,-3.0,-0.0 -pgodzinai,-18.4,-15.5,-8.8,-2.7,0.4 -mf-bot-4,-18.8,-15.4,-9.5,-2.9,-0.1 -MWG,-16.7,-14.4,-9.8,-5.3,-3.1 -tombot61,-18.6,-16.4,-11.8,-7.5,-5.4 -bot_median,-18.4,-16.4,-12.2,-7.8,-5.3 -Cassie,-22.5,-19.4,-13.0,-6.8,-3.3 -SaraBase,-22.1,-19.5,-13.5,-8.2,-5.5 -Unwrapped80T,-23.8,-20.2,-13.7,-7.8,-4.7 -annabot,-19.5,-17.4,-13.8,-9.7,-7.7 -twsummerbot,-21.9,-19.3,-13.9,-8.5,-5.4 -manticAI,-23.7,-20.5,-14.1,-8.3,-5.2 -VeritasAI,-24.3,-20.8,-14.3,-9.2,-6.5 -Bot_Pepa,-24.4,-21.2,-15.0,-9.4,-5.1 -GreeneiBot2,-23.3,-20.6,-15.2,-9.4,-5.8 -histerio,-23.7,-20.7,-15.4,-10.2,-7.2 -biak_bot,-42.2,-32.2,-15.9,-6.1,0.2 -archipelago,-27.3,-23.1,-16.2,-8.7,-5.4 -RyansAGI,-26.4,-23.5,-17.1,-10.9,-7.9 -RonanMcGovern,-30.5,-25.5,-17.8,-10.1,-6.7 -Grizeu_Bot,-28.0,-24.8,-17.9,-11.3,-8.4 -Jay_Bailey_Bot,-27.5,-24.5,-18.1,-12.1,-9.2 -mmBot,-29.1,-25.5,-18.8,-12.2,-9.2 -mf-bot-1,-29.9,-26.3,-18.8,-11.6,-7.7 -acm_bot,-27.6,-25.0,-19.5,-14.0,-11.0 -SeidrBot,-28.4,-25.2,-19.6,-13.9,-10.7 -mf-bot-5,-31.6,-28.2,-19.8,-12.4,-9.0 -SynapseSeer,-34.0,-28.8,-20.0,-11.9,-7.4 -gnosis-ai,-33.5,-29.4,-20.4,-11.2,-6.8 -000_bot,-35.9,-31.1,-23.5,-15.8,-12.3 -bestworldbot,-35.0,-31.4,-24.0,-17.0,-13.0 -HSeldon,-36.6,-31.9,-24.3,-17.2,-13.0 -mf-bot-3,-50.9,-44.7,-34.2,-24.3,-19.4 -InstitutPelFutur,-50.3,-45.7,-36.7,-27.8,-23.3 +Grizeu_Bot,-9.7,-5.4,4.4,15.9,22.2 +RPM_bot,-0.1,0.3,1.4,2.8,3.7 +X_bot,-0.4,-0.3,0.2,0.7,1.2 +andrewsiah,0.0,0.0,0.0,0.0,0.0 +cobyj-bot,0.0,0.0,0.0,0.0,0.0 +acm_bot,-16.3,-11.3,-0.2,14.8,22.5 +jonahsingerbot,-1.4,-1.1,-0.6,-0.3,-0.1 +bean_bot,-1.6,-1.3,-0.7,-0.3,-0.1 +CumulativeBot,-2.9,-2.3,-1.0,0.2,1.0 +swingswish,-2.4,-1.9,-1.1,-0.5,-0.3 +jkraybill_bot,-8.5,-6.2,-1.1,4.6,7.5 +KevinTestBot,-5.8,-3.9,-1.4,0.4,1.1 +SynapseSeer,-6.3,-4.6,-1.5,1.9,3.9 +pianobot,-8.0,-5.9,-2.6,-0.2,0.1 +twsummerbot,-13.4,-10.3,-2.9,4.6,9.2 +CatrachoCaster,-8.6,-6.8,-3.4,-0.3,1.1 +annabot,-8.4,-6.5,-3.4,-0.6,0.9 +cookics_bot_TEST,-12.1,-9.7,-4.2,0.1,2.1 +GreeneiBot2,-17.4,-13.2,-4.9,3.6,7.4 +krm-bot,-10.6,-8.6,-5.3,-2.6,-1.6 +4Shadower,-12.8,-9.8,-5.3,-1.8,-1.1 +metac-o1,-22.7,-18.5,-6.7,8.5,16.1 +MWG,-18.3,-14.9,-8.3,-2.2,1.3 +ajf-bot,-22.3,-17.2,-8.8,-1.4,2.5 +bot_median,-22.7,-18.3,-9.0,2.1,8.9 +Bot_Pepa,-20.9,-16.3,-9.0,-1.2,2.7 +manticAI,-22.1,-17.7,-9.5,-0.7,4.9 +ProfessorSP,-20.7,-16.8,-10.1,-4.7,-2.4 +wunderplumb,-22.4,-19.1,-12.0,-5.8,-3.3 +metac-perplexity,-29.1,-24.0,-12.0,0.8,8.0 +laylaps,-21.0,-17.8,-12.8,-8.1,-5.8 +NextWorldLab,-28.4,-24.0,-13.6,-2.8,4.0 +pgodzinai,-31.7,-25.6,-14.0,-4.1,1.9 +metac-Gemini-Exp-1206,-28.1,-23.3,-14.0,-2.7,3.2 +metac-deepseek-r1,-30.7,-25.2,-14.6,-4.9,0.5 +minefrac1,-29.8,-24.8,-14.9,-3.1,4.1 +metac-Llama-3.1,-32.9,-26.8,-15.1,-3.3,3.2 +metac-claude-3-5-sonnet-latest,-32.6,-26.6,-15.9,-3.5,3.2 +metac-claude-3-5-sonnet-20240620,-35.3,-29.9,-18.2,-4.3,2.8 +metac-o1-preview,-38.9,-32.4,-19.3,-6.9,0.3 +mmBot,-36.2,-30.9,-21.1,-11.7,-7.1 +VeritasAI,-33.5,-28.9,-21.3,-14.4,-11.1 +metac-grok-2-1212,-41.8,-35.2,-23.4,-10.4,-3.8 +metac-exa,-40.4,-34.4,-23.4,-13.8,-7.9 +metac-gpt-4o,-41.7,-34.7,-23.8,-11.3,-5.3 +InstitutPelFutur,-43.6,-37.9,-26.5,-14.9,-6.6 diff --git a/functions.py b/functions.py index f549a43..42435d8 100644 --- a/functions.py +++ b/functions.py @@ -9,32 +9,52 @@ from datetime import datetime import random import math +import ast -def convert_baseline_to_forecasts(df): - """ - Converts baseline scores to forecasts based on resolution. - - Args: - df (pandas.DataFrame): DataFrame with columns 'bot_question_id', 'resolution', and 'score'. +def extract_forecast(df): + # Extract the forecast from whichever column it's in + df['forecast'] = df['probability_yes'].combine_first( + df['probability_yes_per_category'].combine_first( + df['continuous_cdf'] + ) + ) + return df +def process_forecasts(df): + """ + Process a dataframe of forecasts by: + 1. Extracting the non-null forecast value + 2. Sorting by created_at to get chronological order + 3. Taking the last forecast for each (forecaster, question_id) pair + 4. Dropping unused columns + + Parameters: + ----------- + df : pandas DataFrame + DataFrame containing forecast data + Returns: - pandas.DataFrame: DataFrame with an additional 'forecast' column. + -------- + pandas DataFrame + Processed DataFrame with last forecasts """ - result_df = df.copy() - - def score_to_forecast(score, resolution): - if resolution == 'yes': - return 2 ** (score/100 - 1) - else: - return 1 - 2 ** (score/100 - 1) - - score_columns = ['score'] - #score_columns = [col for col in score_columns if col not in ['bot_question_id', 'resolution', 'pro_question_id']] - - for col in score_columns: - result_df['forecast'] = result_df.apply(lambda row: score_to_forecast(row[col], row['resolution']), axis=1) - - return result_df + # Extract the forecast value + df['forecast'] = df['probability_yes'].combine_first( + df['probability_yes_per_category'].combine_first( + df['continuous_cdf'] + ) + ) + + # Sort by created_at to ensure chronological order + df = df.sort_values(by='created_at') + + # Take the last forecast for each (forecaster, question_id) pair + df = df.groupby(['question_id', 'forecaster']).last().reset_index() + + # Drop the original forecast columns as they're now redundant + df = df.drop(['probability_yes', 'probability_yes_per_category', 'continuous_cdf'], axis=1) + + return df def add_is_median(df): """ @@ -264,21 +284,106 @@ def single_bootstrap(df): return output_df -def calculate_median_forecast(df, bots): +def get_median_forecast_multiple_choice(row, forecasts): + """ + Given a row (with 'options' and 'resolution') and a list of forecasts (each a list of floats), + returns the median probability assigned to the resolution option. + """ + options = row['options'] + resolution = row['resolution'] + + try: + resolution_idx = options.index(resolution) + #print(f"Resolution '{resolution}' found at index {resolution_idx} in options {options}") + except ValueError: + #print(f"Resolution '{resolution}' not found in options {options} — returning np.nan") + return np.nan # Resolution not found in options + + probs = [] + for f in forecasts: + if isinstance(f, list) and len(f) > resolution_idx: + try: + val = float(f[resolution_idx]) + probs.append(val) + except (ValueError, TypeError): + continue + + if not probs: + #print(f"NO PROBS collected for multiple-choice question {row.get('bot_question_id')} — returning np.nan") + return np.nan + + return np.nanmedian(probs) + +def get_median_forecast(row, bots): """ - Calculates the median forecast for a given set of bots. + @BEN: Check + Calculates the median forecast for a given set of bots, handling different question types properly. + Args: - df (pandas.DataFrame): DataFrame with bot forecast columns. + df (pandas.DataFrame): DataFrame with bot forecast columns and question metadata. bots (list): List of bot column names. - + Returns: pandas.Series: Median forecast for each row. """ - return df[bots].median(axis=1) + q_type = row['type'] + + forecasts = [] + for bot in bots: + f_raw = row.get(bot) + if f_raw is not None: + if isinstance(f_raw, str): + try: + f = ast.literal_eval(f_raw) + forecasts.append(f) + except (ValueError, SyntaxError): + continue + else: + forecasts.append(f_raw) # Already parsed float or list + + if not forecasts: + return np.nan + + if q_type == 'numeric': + forecasts = [f for f in forecasts if isinstance(f, list)] + + if not forecasts: + return np.nan + + cdfs_array = np.array(forecasts, dtype=float) + mean_cdf = np.mean(cdfs_array, axis=0) + + return mean_cdf + + elif q_type == 'binary': + probs = [] + for f in forecasts: + try: + val = float(f) + probs.append(val) + except (ValueError, TypeError): + print(f' Invalid forecast: {f} — error {e}') + continue + + if not probs: + print(f" >>> NO PROBS collected for binary question {row.get('bot_question_id')} — returning np.nan") + return np.nan + + print(f" >>> Collected {len(probs)} forecasts: {probs}") + return np.nanmedian(probs) + + elif q_type == 'multiple_choice': + return get_median_forecast_multiple_choice(row, forecasts) + + else: + raise ValueError(f"Unknown question type: {q_type}") + def calculate_weighted_scores(df_bot_team_forecasts, teams): """ + @BEN: check + Calculates weighted scores for each team based on their forecasts and question weights. Args: @@ -288,32 +393,76 @@ def calculate_weighted_scores(df_bot_team_forecasts, teams): Returns: pandas.Series: Weighted scores for each team. """ - # Initialize a dictionary to store the weighted scores for each team - team_scores = {team: 0 for team in teams} + team_scores = {team: 0.0 for team in teams} - # Iterate through each row (question) in the dataframe for _, row in df_bot_team_forecasts.iterrows(): + q_type = row['type'] resolution = row['resolution'] + options = row.get('options') + range_min = row.get('range_min') + range_max = row.get('range_max') question_weight = row['question_weight'] - # Calculate the baseline score for each team for team in teams: forecast = row[team] - # Calculate the baseline score based on the resolution - if resolution == 'yes': - baseline_score = np.log2(forecast / 0.5) - elif resolution == 'no': - baseline_score = np.log2((1 - forecast) / 0.5) - else: - # Skip if resolution is neither 0 nor 1 + if forecast is None or (isinstance(forecast, float) and np.isnan(forecast)): continue - # Calculate the weighted score and add it to the team's total - weighted_score = baseline_score * question_weight - team_scores[team] += weighted_score + baseline_score = None + + try: + if q_type == 'binary': + forecast_val = float(forecast) + baseline_prob = 0.5 + if resolution == 'yes': + p_team = forecast_val + elif resolution == 'no': + p_team = 1 - forecast_val + else: + continue # Skip if invalid resolution + + elif q_type == 'multiple_choice': + pmf = [float(p) for p in forecast] + options = [str(opt) for opt in options] + resolution_idx = options.index(str(resolution)) + p_team = pmf[resolution_idx] + baseline_prob = 1 / len(pmf) + + elif q_type == 'numeric': + cdf = [float(p) for p in forecast] + pmf = [cdf[0]] + [cdf[i] - cdf[i-1] for i in range(1, len(cdf))] + pmf.append(1 - cdf[-1]) + + resolution = float(resolution) + if range_min is None or range_max is None: + continue + bin_edges = np.linspace(range_min, range_max, 200) + resolution_idx = np.searchsorted(bin_edges, resolution, side='right') + + if resolution_idx >= len(pmf): + continue # Skip if out of bounds + + p_team = pmf[resolution_idx] + baseline_prob = 1 / len(pmf) # bins = 201 because of extra appended bin + + else: + continue # Unknown question type + + if p_team <= 0 or baseline_prob <= 0: + continue # Avoid log(0) issues + + baseline_score = np.log2(p_team / baseline_prob) + + if q_type == 'numeric': + baseline_score /= 2 # Numeric scores are halved + + weighted_score = baseline_score * question_weight + team_scores[team] += weighted_score + + except (ValueError, TypeError, IndexError): + continue # Be robust to bad/missing data - # Convert the dictionary to a pandas Series for easier handling return pd.Series(team_scores) def calculate_t_test(df_input, bot_list, weight_col='question_weight'): @@ -425,22 +574,100 @@ def calculate_t_test(df_input, bot_list, weight_col='question_weight'): def calculate_head_to_head(row, a, b): """ - Calculates the head-to-head score for two forecasters. If positive, a did better than b; if negative, a did worse than b. + @BEN: Check... + + Calculates the head-to-head score for two forecasters. + Positive if 'a' did better than 'b', negative if 'b' did better than 'a'. Args: - row (pandas.Series): Row of the DataFrame containing 'resolution' and forecaster columns. - a (str): Column name for the first forecaster. - b (str): Column name for the second forecaster. + row (pandas.Series): Row containing 'resolution', 'type', and forecast columns. + a (str): Column name for first forecaster. + b (str): Column name for second forecaster. Returns: float: Head-to-head score. """ - if (row['resolution'] == 'yes') | (row['resolution'] == 1): - return 100* np.log(row[a] / row[b]) - elif (row['resolution'] == 'no') | (row['resolution'] == 0): - return 100* np.log((1 - row[a]) / (1 - row[b])) - else: - return np.nan + q_type = row['type'] + resolution = row['resolution'] + options = row['options'] + range_min = row.get('range_min') + range_max = row.get('range_max') + + forecast_a = row[a] + forecast_b = row[b] + + if q_type == 'binary': + if (resolution == 'yes') or (resolution == 1): + return 100 * np.log(forecast_a / forecast_b) + elif (resolution == 'no') or (resolution == 0): + return 100 * np.log((1 - forecast_a) / (1 - forecast_b)) + else: + return np.nan + + elif q_type == 'multiple_choice': + # Parse forecast_a if it's a string + if isinstance(forecast_a, str): + forecast_a = ast.literal_eval(forecast_a) + options = ast.literal_eval(row['options']) if isinstance(row['options'], str) else row['options'] + resolution_idx = options.index(str(row['resolution'])) + forecast_a = forecast_a[resolution_idx] + + # Parse forecast_b if it's a string + if isinstance(forecast_b, str): + forecast_b = ast.literal_eval(forecast_b) + options = ast.literal_eval(row['options']) if isinstance(row['options'], str) else row['options'] + resolution_idx = options.index(str(row['resolution'])) + forecast_b = forecast_b[resolution_idx] + + # Now both are floats with the prob assigned to the correct bin + return 100 * np.log(forecast_a / forecast_b) + + elif q_type == 'numeric': + # Ensure both forecasts are Python lists + if isinstance(forecast_a, str): + forecast_a = ast.literal_eval(forecast_a) + elif isinstance(forecast_a, np.ndarray): + forecast_a = forecast_a.tolist() + + if isinstance(forecast_b, str): + forecast_b = ast.literal_eval(forecast_b) + elif isinstance(forecast_b, np.ndarray): + forecast_b = forecast_b.tolist() + + if not forecast_a or not forecast_b: + return np.nan + + cdf_a = forecast_a + cdf_b = forecast_b + + pmf_a = [cdf_a[0]] + [cdf_a[i] - cdf_a[i-1] for i in range(1, len(cdf_a))] + pmf_a.append(1 - cdf_a[-1]) + + pmf_b = [cdf_b[0]] + [cdf_b[i] - cdf_b[i-1] for i in range(1, len(cdf_b))] + pmf_b.append(1 - cdf_b[-1]) + + bin_edges = np.linspace(range_min, range_max, 200) + + if resolution == "below_lower_bound": + resolution_idx = 0 + elif resolution == "above_upper_bound": + resolution_idx = len(pmf_a) - 1 # i.e., 200 + else: + try: + resolution_val = float(resolution) + resolution_idx = np.searchsorted(bin_edges, resolution_val, side='right') + except ValueError: + print(f"Bad resolution value: {resolution}") + return np.nan + + p_a = pmf_a[resolution_idx] + p_b = pmf_b[resolution_idx] + + if p_a <= 0 or p_b <= 0: + print(f"Invalid PMF values: p_a={p_a}, p_b={p_b}") + return np.nan + + return 100 * np.log(p_a / p_b) def plot_head_to_head_distribution(df_forecasts, col='head_to_head', vs=('Bot Team', 'Pros')): """ @@ -557,6 +784,9 @@ def plot_calibration_curve(df, column_name, label, color): Returns: None """ + # Filter to binary questions in case the DataFrame has other types (0 or 1 INT or 'yes'/'no' STR) + df = df[df['resolution'].isin(['yes', 'no', 1, 0])] + y_true = df['resolution'] y_pred = df[column_name] weights = [1.0 for _ in y_true] @@ -927,3 +1157,187 @@ def compute_bucket_forecast_value(row): # Apply the function to each row and overwrite forecast_value (currently contains cdf, which we no longer need) df['forecast_values'] = df.apply(compute_bucket_forecast_value, axis=1) return df + +def parse_options_array(options_str): + """ + Parse options string that looks like an array into an actual array. + + Args: + options_str: String representation of options array (e.g. '["0","1","2-3","4-6",">6"]') + + Returns: + List of option strings + """ + if not isinstance(options_str, str): + return options_str # Already parsed or None + + try: + # First try using eval (safer than literal_eval for this specific case) + options_array = eval(options_str) + return options_array + except: + # If that fails, try custom parsing + # Strip brackets and split by comma + cleaned = options_str.strip('[]') + # Split by comma, but respect quotes + import re + # Match items in quotes with commas inside + parts = re.findall(r'"([^"]*)"', cleaned) + if parts: + return parts + + # Simple fallback: just split by comma and strip quotes + return [p.strip().strip('"\'') for p in cleaned.split(',')] + +def calculate_peer_score_numeric(row, bot_col, pro_col='pro_median'): + """Calculate peer score for numeric questions""" + try: + # Check if bot didn't provide a forecast + if pd.isna(row[bot_col]): + return np.nan + + resolution_value = row['resolution'] + + # Get the CDF values + bot_cdf = row[bot_col] + pro_median_cdf = row[pro_col] + + # Handle special cases + if resolution_value == 'below_lower_bound': + # Use first point in CDF + if isinstance(bot_cdf, (list, np.ndarray)) and len(bot_cdf) > 0: + bot_prob = bot_cdf[0] + else: + return np.nan + + if isinstance(pro_median_cdf, (list, np.ndarray)) and len(pro_median_cdf) > 0: + pro_median_prob = pro_median_cdf[0] + else: + return np.nan + + elif resolution_value == 'above_upper_bound': + # Use (1 - last point in CDF) + if isinstance(bot_cdf, (list, np.ndarray)) and len(bot_cdf) > 0: + bot_prob = 1 - bot_cdf[-1] + else: + return np.nan + + if isinstance(pro_median_cdf, (list, np.ndarray)) and len(pro_median_cdf) > 0: + pro_median_prob = 1 - pro_median_cdf[-1] + else: + return np.nan + + else: + # Convert to float if it's a numeric resolution + try: + resolution_float = float(resolution_value) + + # Convert CDF to PMF + if isinstance(bot_cdf, (list, np.ndarray)) and isinstance(pro_median_cdf, (list, np.ndarray)): + # Convert CDFs to PMFs + bot_pmf = np.diff(np.concatenate([[0], bot_cdf])) + pro_pmf = np.diff(np.concatenate([[0], pro_median_cdf])) + + # Use nominal_location_to_cdf_location to find the appropriate bucket + cdf_location = nominal_location_to_cdf_location(resolution_float, row) + + # Find the appropriate bucket index + bucket_index = min(int(cdf_location * (len(bot_pmf) - 1)), len(bot_pmf) - 1) + + # Get probabilities + bot_prob = bot_pmf[bucket_index] + pro_median_prob = pro_pmf[bucket_index] + else: + return np.nan + except: + return np.nan + + # Ensure non-zero probabilities + bot_prob = max(bot_prob, 1e-10) + pro_median_prob = max(pro_median_prob, 1e-10) + + # Calculate peer score and divide by 2 for continuous questions + return np.log(bot_prob / pro_median_prob) / 2 + + except Exception as e: + # Print the specific error for debugging + return np.nan + +def calculate_peer_score_binary(row, bot_col, pro_col='pro_median'): + """Calculate peer score for binary questions""" + if row['resolution'] == 'yes': + return np.log(row[bot_col] / row[pro_col]) + else: # resolution is 'no' + return np.log((1 - row[bot_col]) / (1 - row[pro_col])) + +def parse_cdf_string(cdf_string): + """Parse CDF string into numpy array""" + return np.array([float(x) for x in cdf_string.strip('[]').split(',')]) + +def calculate_peer_score_multiple_choice(row, bot_col, pro_col='pro_median'): + """Calculate peer score for multiple choice questions""" + # Check if bot didn't provide a forecast (NaN) + if pd.isna(row[bot_col]): + return np.nan + + # Get the resolution value and options + resolution_value = row['resolution'] + options = row['options_parsed'] if 'options_parsed' in row else row['options'] + + # Find the index of the resolution in options array + resolution_str = str(resolution_value) + + try: + resolution_index = options.index(resolution_str) + + # Get the forecasts + bot_pmf_raw = row[bot_col] + pro_pmf_raw = row[pro_col] + + # Parse string representations of arrays if needed + if isinstance(bot_pmf_raw, str): + bot_pmf = [float(x) for x in bot_pmf_raw.strip('[]').split(',')] + else: + bot_pmf = bot_pmf_raw + + if isinstance(pro_pmf_raw, str): + pro_pmf = [float(x) for x in pro_pmf_raw.strip('[]').split(',')] + else: + pro_pmf = pro_pmf_raw + + # Get the probabilities at the correct index + bot_prob = bot_pmf[resolution_index] + pro_prob = pro_pmf[resolution_index] + + # Calculate peer score + return np.log(bot_prob / pro_prob) + except Exception as e: + # If any error occurs, return NaN + return np.nan + +def calculate_peer_score(row, bot_col, pro_col='pro_median'): + """Calculate peer score based on question type""" + if row['type'] == 'binary': + return calculate_peer_score_binary(row, bot_col, pro_col) + elif row['type'] == 'multiple_choice': + return calculate_peer_score_multiple_choice(row, bot_col, pro_col) + elif row['type'] == 'numeric': + return calculate_peer_score_numeric(row, bot_col, pro_col) + else: + # Unknown question type; return NaN + return np.nan + +def calculate_all_peer_scores(df, all_bots, pro_col='pro_median'): + """Calculate peer scores for all bots""" + # Create a new DataFrame to store peer scores + df_peer = df.copy() + + # Calculate peer score for each bot + for bot in all_bots: + df_peer[bot] = 100 * df.apply(lambda row: calculate_peer_score(row, bot, pro_col), axis=1) + + # Calculate peer score for bot_team_median + df_peer["bot_team_median"] = 100 * df.apply( + lambda row: calculate_peer_score(row, 'bot_median', pro_col), axis=1) + + return df_peer diff --git a/scores/bots_score_data_q4.csv b/scores/bots_score_data_q4.csv index 9b1039f..739d5ee 100644 --- a/scores/bots_score_data_q4.csv +++ b/scores/bots_score_data_q4.csv @@ -1,67312 +1,52551 @@ question_id,question_title,created_at,user_id,score,score_type,forecaster,is_bot,resolution,scheduled_close_time,actual_close_time,question_weight,cp_reveal_time,post_id -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,182315,1.94667400741648,peer,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,182315,0.0138659192782547,relative_legacy,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,182315,41.47867468467504,baseline,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,182315,95.60566524124027,spot_baseline,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,182315,5.753578387410653,spot_peer,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,185690,0.0272033980677426,relative_legacy,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,185690,6.552327165701713,spot_peer,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,185690,63.65288346151328,baseline,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,185690,3.5537757737313638,peer,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,185690,96.71686075326276,spot_baseline,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,185698,67.80719051126377,spot_baseline,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,185698,0.583844397853047,peer,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,185698,28.478862619663357,baseline,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,185698,-14.228501713426509,spot_peer,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,185698,-0.0011060151779561,relative_legacy,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,185699,0.0170451479380221,baseline,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,185699,1.5295256389556797e-05,relative_legacy,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,185699,95.60566524124027,spot_baseline,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,185699,0.0010257822540009,peer,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,185699,5.753578387410653,spot_peer,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,187708,26.636335876971454,baseline,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,187708,-0.4132142096700818,spot_peer,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,187708,-0.5174749296479274,peer,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,187708,-0.0162328322931484,relative_legacy,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,187708,87.02660703959828,spot_baseline,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,188909,73.11832415721999,spot_baseline,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,188909,60.308946519894256,baseline,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,188909,-8.874559935843099,peer,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,188909,-0.1475718946098794,relative_legacy,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,188909,-10.410756352552228,spot_peer,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,189585,2.3945148485565197,peer,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,189585,-0.004470893520175,relative_legacy,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,189585,87.1729292876544,baseline,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,189585,3.5930064123011154,spot_peer,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,189588,88.91589112903932,baseline,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,189588,3.7555404020379934,peer,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,189588,0.0134987058674106,relative_legacy,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,189588,3.5930064123011154,spot_peer,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,189869,85.84189724068088,baseline,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,189869,0.0506749936354596,relative_legacy,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,189869,98.5500430304885,spot_baseline,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,189869,5.958816677253383,peer,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,189869,7.870053963980276,spot_peer,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,190710,5.325050076382883,spot_peer,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,190710,0.0191418884390898,relative_legacy,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,190710,90.13146951224908,baseline,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,190710,4.200072627480343,peer,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,190710,95.0095094173686,spot_baseline,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,190772,65.15259316863312,baseline,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,190772,3.804952320307829,peer,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,190772,0.0302164062913047,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,190772,97.08536543404836,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,190772,6.817215441785817,spot_peer,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191046,1.3346277256260266,peer,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191046,0.0008255390675651,relative_legacy,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191046,51.691919769980935,baseline,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191046,3.5930064123011154,spot_peer,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191284,-2.013964682394153,spot_peer,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191284,-0.0637339696557503,relative_legacy,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191284,84.79969065549501,spot_baseline,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191284,70.28723160504407,baseline,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191284,-2.6615021278008064,peer,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191471,-0.0417290622849928,relative_legacy,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191471,-1.7802644645835792,peer,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191471,84.79969065549501,spot_baseline,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191471,-2.013964682394153,spot_peer,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191471,46.26283100480061,baseline,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191935,97.08536543404836,spot_baseline,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191935,0.0380973061318661,relative_legacy,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191935,4.949428329625295,peer,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191935,6.817215441785817,spot_peer,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191935,83.37052403679199,baseline,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191975,6.32220875632501,spot_peer,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191975,0.0174558068758655,relative_legacy,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191975,2.216800443536839,peer,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191975,96.39672687552437,spot_baseline,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,191975,42.22265351818422,baseline,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192418,-0.3857853114371865,relative_legacy,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192418,-25.15477741127516,spot_peer,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192418,-25.88945883695537,peer,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192418,52.60688116675877,spot_baseline,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192418,51.55802386983467,baseline,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192459,8.808555425305096,spot_peer,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192459,0.0638829155648507,relative_legacy,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192459,99.85565831303312,spot_baseline,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192459,7.444771337114487,peer,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192459,94.10439183082198,baseline,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192472,94.11063109464314,spot_baseline,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192472,0.0097415377429446,relative_legacy,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192472,4.678918991131749,spot_peer,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192472,3.469443711669733,peer,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192472,88.81075231692732,baseline,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192924,-0.0407232266690897,relative_legacy,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192924,46.70065843782161,baseline,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192924,-2.013964682394153,spot_peer,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,192924,-1.6985277836331842,peer,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,193275,-0.014680805276801,peer,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,193275,89.2196710465485,spot_baseline,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,193275,-0.0232056853438092,relative_legacy,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,193275,65.50522965586974,baseline,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,193275,1.1632025210610768,spot_peer,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,204737,74.84612330040356,spot_baseline,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,204737,0.8809834375506296,baseline,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,204737,-0.1082248427000477,peer,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,204737,-0.0012641910895534,relative_legacy,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,204737,-9.168780984744677,spot_peer,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,208405,92.62219158142892,baseline,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,208405,6.5070336250766125,peer,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,208405,0.0514549617139018,relative_legacy,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,208405,98.5500430304885,spot_baseline,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,208405,7.870053963980276,spot_peer,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,215725,0.0008255390675651,relative_legacy,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,215725,57.24002152212639,baseline,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,215725,1.4881494578862562,peer,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,215725,3.5930064123011154,spot_peer,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,218666,-4.109060256062839,spot_peer,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,218666,81.88505608954335,spot_baseline,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,218666,-0.0796776338755263,relative_legacy,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,218666,74.97806519736227,baseline,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,218666,-3.459434530945437,peer,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,218945,74.04524225140642,baseline,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,218945,-7.941503895425864,spot_peer,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,218945,-0.1535328139059967,relative_legacy,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,218945,-8.391084327602691,peer,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,219459,92.5999418556223,spot_baseline,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,219459,0.0008255390675651,relative_legacy,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,219459,11.018960268303394,baseline,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,219459,3.5930064123011154,spot_peer,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,219459,0.2897503424650534,peer,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,219659,67.80719051126377,spot_baseline,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,219659,-0.504009224902287,peer,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,219659,-14.228501713426509,spot_peer,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,219659,-0.0076162265704186,relative_legacy,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28922,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-21 13:48:16.734821+00,219659,2.308789383298743,baseline,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28997 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,182315,-0.0009296848269732,relative_legacy,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,182315,92.5999418556223,spot_baseline,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,182315,40.21493124014253,baseline,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,182315,-0.2931642733113553,peer,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,182315,-0.0033108092038478,spot_peer,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,185690,98.18526532897408,spot_baseline,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,185690,2.227420693986721,peer,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,185690,4.006406523796245,spot_peer,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,185690,64.65228428523235,baseline,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,185690,0.0287108832904994,relative_legacy,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,185698,-0.0033108092038478,spot_peer,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,185698,-0.0004460136870517,relative_legacy,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,185698,92.5999418556223,spot_baseline,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,185698,-0.2087813142920036,peer,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,185698,28.69981478918006,baseline,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,185699,97.08536543404836,spot_baseline,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,185699,0.515561369396861,peer,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,185699,3.216785708763657,spot_peer,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,185699,0.0086049051048252,relative_legacy,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,185699,19.59038523473431,baseline,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,187708,28.616680481139767,baseline,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,187708,-0.0023448821927678,relative_legacy,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,187708,91.9912088677308,spot_baseline,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,187708,-0.3460652040491504,peer,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,187708,-0.4403217046986292,spot_peer,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,188107,30.379598532124596,baseline,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,188107,2.509810755043684,spot_peer,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,188107,0.5842662259501904,peer,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,188107,96.10058683841363,spot_baseline,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,188107,0.0105921733050158,relative_legacy,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,188909,-9.968309829753093,peer,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,188909,-11.523108731334236,spot_peer,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,188909,62.29723501981379,baseline,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,188909,-0.1391676424284735,relative_legacy,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,188909,76.55347463629771,spot_baseline,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,189585,-0.0128912954633778,relative_legacy,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,189585,87.17249341731716,baseline,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,189585,-0.492036254990869,peer,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,189585,-0.0033108092038478,spot_peer,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,189588,95.60566524124027,spot_baseline,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,189588,0.0154010906355464,relative_legacy,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,189588,1.5914778694982106,peer,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,189588,89.94841157580399,baseline,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,189588,2.1545053343047824,spot_peer,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,189869,3.3224170408665104,peer,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,189869,0.0410484237098839,relative_legacy,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,189869,98.5500430304885,spot_baseline,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,189869,85.84312065261865,baseline,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,189869,4.268281324679811,spot_peer,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,190710,97.96595517158244,spot_baseline,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,190710,3.2966152490428016,peer,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,190710,3.848963227344067,spot_peer,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,190710,93.00821582694606,baseline,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,190710,0.0381858870159098,relative_legacy,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,190772,0.0318290571839512,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,190772,2.4615025164952598,peer,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,190772,66.30078617574196,baseline,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,190772,98.5500430304885,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,190772,4.268281324679811,spot_peer,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191046,-0.0033108092038478,spot_peer,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191046,-0.0046650213447365,relative_legacy,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191046,51.72270823689197,baseline,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191046,-0.380437199444566,peer,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191284,76.752066846908,baseline,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191284,-0.0033108092038478,spot_peer,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191284,-0.0090389842374432,relative_legacy,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191284,-0.4426827798976394,peer,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191471,-0.0033108092038478,spot_peer,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191471,50.57339517358908,baseline,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191471,-0.373062068707034,peer,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191471,-0.0042919631027398,relative_legacy,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191471,92.5999418556223,spot_baseline,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191935,97.08536543404836,spot_baseline,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191935,83.5736563131877,baseline,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191935,3.216785708763657,spot_peer,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191935,0.0281387421659725,relative_legacy,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191935,2.3581365916713164,peer,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191975,0.0009637805824175,relative_legacy,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191975,-0.1440003825594862,peer,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191975,93.05481192478548,spot_baseline,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191975,0.3232415219706324,spot_peer,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,191975,38.73547184168425,baseline,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192418,-9.471371389046435,peer,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192418,79.90873060740036,spot_baseline,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192418,-9.11436229289226,spot_peer,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192418,-0.1340142139267008,relative_legacy,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192418,78.33188732929699,baseline,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192459,4.5485970767392745,peer,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192459,94.1234674490212,baseline,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192459,0.0554504906415343,relative_legacy,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192459,5.205585717814158,spot_peer,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192459,99.85565831303312,spot_baseline,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192472,-0.0129415467588438,relative_legacy,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192472,-0.0033108092038478,spot_peer,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192472,92.5999418556223,spot_baseline,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192472,-0.484933320541368,peer,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192472,87.4736355148142,baseline,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192924,98.5500430304885,spot_baseline,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192924,54.13263089845265,baseline,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192924,0.0278232624206848,relative_legacy,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192924,1.9568763809601029,peer,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,192924,4.268281324679811,spot_peer,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,193275,-0.0082024763167812,relative_legacy,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,193275,92.5999418556223,spot_baseline,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,193275,68.57464269391835,baseline,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,193275,-0.0033108092038478,spot_peer,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,193275,-0.4368590835438909,peer,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,204737,1.3422162458540865,baseline,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,204737,94.11063109464314,spot_baseline,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,204737,0.0001505820995974,relative_legacy,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,204737,0.0154204320207754,peer,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,204737,1.08121667705174,spot_peer,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,208405,0.0199032686898449,relative_legacy,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,208405,95.60566524124027,spot_baseline,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,208405,90.3082952452935,baseline,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,208405,1.930853488586,peer,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,208405,2.1545053343047824,spot_peer,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,215725,57.27639409023078,baseline,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,215725,-0.4166926796683824,peer,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,215725,-0.0064677053541696,relative_legacy,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,215725,-0.0033108092038478,spot_peer,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,218666,86.6444570049516,baseline,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,218666,0.0256965762371384,relative_legacy,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,218666,2.217796361306963,peer,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,218666,98.5500430304885,spot_baseline,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,218666,4.268281324679811,spot_peer,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,218945,-0.0485428666768938,relative_legacy,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,218945,-2.7653792569991262,spot_peer,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,218945,85.77535778176738,baseline,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,218945,88.75252707415875,spot_baseline,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,218945,-3.0601002483446726,peer,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,219459,3.568471712452966,spot_peer,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,219459,0.3535143588907274,peer,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,219459,0.0054745335808356,relative_legacy,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,219459,97.57524537533226,spot_baseline,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,219459,11.611328839170756,baseline,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,219659,-24.486434251570564,spot_peer,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,219659,-0.8619596272618177,peer,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,219659,2.059526590865438,baseline,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,219659,58.496250072115615,spot_baseline,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28923,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-21 13:48:16.753062+00,219659,-0.0120720471805237,relative_legacy,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28998 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,182315,3.8507452724742746,peer,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,182315,9.50583941572022,spot_peer,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,182315,91.07326619029126,spot_baseline,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,182315,39.60069472507121,baseline,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,182315,-0.0025246057214838,relative_legacy,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,185690,4.996272251599166,spot_peer,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,185690,84.79969065549501,spot_baseline,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,185690,-0.0458284289898222,relative_legacy,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,185690,55.86245070319189,baseline,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,185690,3.368175020933732,peer,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,185698,-0.5537812971100688,peer,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,185698,-0.9312669614325488,spot_peer,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,185698,-0.0457685274320181,relative_legacy,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,185698,23.7473245617475,baseline,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,185699,2.3789087592914195,peer,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,185699,11.689155925125045,spot_peer,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,185699,20.813199970314525,baseline,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,185699,0.0056637182843105,relative_legacy,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,185699,94.11063109464314,spot_baseline,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,187708,9.174340879729227,spot_peer,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,187708,28.73273313485977,baseline,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,187708,2.652540485436269,peer,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,187708,-0.0021896601481338,relative_legacy,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,187708,90.61209529971,spot_baseline,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,188909,67.80719051126377,spot_baseline,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,188909,-0.1714096101029284,relative_legacy,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,188909,57.13852440506679,baseline,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,188909,-3.5626867884642843,peer,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,188909,-7.218264779433194,spot_peer,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,189585,4.996272251599166,spot_peer,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,189585,7.49960887275312,peer,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,189585,79.82933790432024,baseline,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,189585,-0.0592102989093477,relative_legacy,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,189588,0.0276314250798066,relative_legacy,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,189588,88.47463216060208,baseline,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,189588,10.603243346294416,spot_peer,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,189588,13.916982061577867,peer,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,189869,0.0120533294728479,relative_legacy,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,189869,80.6612156549244,baseline,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,189869,11.022995283770252,peer,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,189869,10.603243346294416,spot_peer,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,190710,90.29647677839374,baseline,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,190710,95.0095094173686,spot_baseline,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,190710,12.3352870103762,spot_peer,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,190710,0.0393675391307194,relative_legacy,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,190710,14.81641858038747,peer,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,190772,11.689155925125045,spot_peer,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,190772,94.11063109464314,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,190772,0.0159067555504964,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,190772,63.43847357858397,baseline,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,190772,8.082149238227958,peer,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191046,10.603243346294416,spot_peer,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191046,0.0041137218027149,relative_legacy,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191046,5.750403869606014,peer,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191046,51.88960838921266,baseline,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191284,10.603243346294416,spot_peer,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191284,76.75173415054661,baseline,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191284,10.097594133964702,peer,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191284,0.0120533294728479,relative_legacy,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191471,0.0041137218027149,relative_legacy,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191471,5.581218453694397,peer,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191471,92.5999418556223,spot_baseline,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191471,10.603243346294416,spot_peer,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191471,50.62366885227703,baseline,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191935,12.721600492263915,peer,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191935,0.0379847755727992,relative_legacy,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191935,12.76381532140396,spot_peer,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191935,82.48241228437175,baseline,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191935,95.60566524124027,spot_baseline,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191975,39.39298493138673,baseline,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191975,87.28944096926128,spot_baseline,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191975,6.785952825228395,spot_peer,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191975,2.776393680446766,peer,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,191975,-0.0198521186324647,relative_legacy,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192418,-8.13883428378036,peer,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192418,-0.2714766208908107,relative_legacy,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192418,-11.181946108935184,spot_peer,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192418,62.29303509201767,spot_baseline,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192418,61.08054067887852,baseline,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192459,-88.98987576471538,baseline,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192459,-116.96611668903142,peer,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192459,-1.7486669920726847,relative_legacy,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192459,-94.34164716336323,spot_baseline,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192459,-123.77397850634868,spot_peer,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192472,-0.2191616936256942,relative_legacy,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192472,-7.218264779433194,spot_peer,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192472,-4.264058763749657,peer,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192472,64.29262617522664,baseline,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192472,67.80719051126377,spot_baseline,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192924,0.0041137218027149,relative_legacy,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192924,50.95101447622653,baseline,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192924,92.5999418556223,spot_baseline,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192924,10.603243346294416,spot_peer,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,192924,5.623138043430749,peer,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,193275,4.048514617953412,peer,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,193275,84.1570637395517,spot_baseline,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,193275,63.23459818180061,baseline,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,193275,4.534339622774537,spot_peer,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,193275,-0.0511886525159537,relative_legacy,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,204737,-0.4236028935786888,peer,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,204737,1.7812462341151911,baseline,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,204737,-0.0097150395011867,relative_legacy,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,204737,-13.9111484529591,spot_peer,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,208405,10.603243346294416,spot_peer,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,208405,12.85858619467552,peer,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,208405,87.03137743703152,baseline,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,208405,0.0140025930301984,relative_legacy,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,215725,57.30705352486982,baseline,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,215725,10.603243346294416,spot_peer,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,215725,0.0041137218027149,relative_legacy,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,215725,6.530532184432545,peer,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,218666,4.250176963278683,peer,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,218666,89.8401859992193,spot_baseline,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,218666,8.619477577954154,spot_peer,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,218666,-0.0852352612634711,relative_legacy,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,218666,73.07371725865016,baseline,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,218945,65.45145873454666,baseline,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,218945,-0.2192598585923505,relative_legacy,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,218945,-7.218264779433194,spot_peer,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,218945,67.80719051126377,spot_baseline,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,218945,-4.293920662479275,peer,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,219459,1.1500271641500528,peer,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,219459,11.019593889801293,baseline,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,219459,0.0007631583583552,relative_legacy,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,219459,10.603243346294416,spot_peer,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,219459,92.5999418556223,spot_baseline,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,219659,1.7751865342473538,baseline,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,219659,-0.0153484054821939,relative_legacy,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,219659,-0.7737079945552631,peer,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,219659,48.54268271702416,spot_baseline,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28924,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-21 13:48:16.76831+00,219659,-21.06596475530963,spot_peer,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,28999 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,182315,0.0253225019349108,relative_legacy,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,182315,26.298064938963904,baseline,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,182315,5.696118062983777,peer,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,182315,60.40713236688608,spot_baseline,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,182315,9.533747656675995,spot_peer,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,185690,8.161920600423855,spot_peer,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,185690,7.800167941873496,peer,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,185690,38.55181670651479,baseline,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,185690,0.0260977193707311,relative_legacy,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,185690,58.496250072115615,spot_baseline,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,185698,-16.208095287105245,peer,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,185698,-0.2595048447332084,relative_legacy,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,185698,-9.49078820212049,baseline,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,185698,-14.949375785690735,spot_peer,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,185698,26.303440583379377,spot_baseline,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,185699,22.382483942293195,baseline,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,185699,5.842505411374785,peer,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,185699,65.99245584023782,spot_baseline,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,185699,13.543464989676083,spot_peer,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,185699,0.0424282125477001,relative_legacy,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,187708,-1.2735875910554029,peer,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,187708,-7.619722015126423,spot_peer,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,187708,36.513259345252976,spot_baseline,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,187708,-0.0537383538568442,relative_legacy,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,187708,11.750070260785796,baseline,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,188107,8.672843787822822,peer,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,188107,79.35491225325737,spot_baseline,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,188107,23.136405013002857,spot_peer,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,188107,25.587961751342124,baseline,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,188107,0.0842622109714488,relative_legacy,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,188909,34.49970933360241,baseline,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,188909,-0.0908126561569191,relative_legacy,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,188909,31.034012061215048,spot_baseline,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,188909,0.7477508002579083,peer,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,188909,-11.55328699330953,spot_peer,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,189585,1.0162303392752938,spot_peer,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,189585,-0.0354424414625105,relative_legacy,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,189585,6.24653958163866,peer,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,189585,45.698779436195295,baseline,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,189588,-6.659238205217313,spot_peer,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,189588,-1.1718216090103677,peer,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,189588,-0.1360646535812725,relative_legacy,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,189588,35.614720935847494,baseline,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,189869,28.105367253922587,peer,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,189869,27.045224696940583,spot_peer,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,189869,0.2756682337213071,relative_legacy,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,189869,73.86745803127805,baseline,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,190710,3.933928310825992,spot_peer,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,190710,50.051101049657085,baseline,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,190710,9.26858317267723,peer,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,190710,52.60688116675877,spot_baseline,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,190710,0.0042945219893031,relative_legacy,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,190772,-0.157792736569457,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,190772,-5.40637907907884,peer,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,190772,-11.55328699330953,spot_peer,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,190772,31.034012061215048,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,190772,20.972138137029287,baseline,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191046,8.161920600423855,spot_peer,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191046,0.0185305942256309,relative_legacy,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191046,32.70984596813431,baseline,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191046,6.506252388656089,peer,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191046,58.496250072115615,spot_baseline,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191284,40.234565665272186,baseline,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191284,1.0162303392752938,spot_peer,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191284,4.558085581601592,peer,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191284,-0.0394727917086109,relative_legacy,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191471,-0.131972460591979,relative_legacy,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191471,16.985180447963547,baseline,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191471,-4.504865623554609,peer,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191471,-11.55328699330953,spot_peer,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191471,31.034012061215048,spot_baseline,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191935,36.48846007214783,baseline,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191935,42.22330006830476,spot_baseline,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191935,0.9165764148279928,peer,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191935,-0.0940835258495721,relative_legacy,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191935,-3.520469864629688,spot_peer,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191975,-0.1673546660331163,relative_legacy,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191975,-25.09734665156897,spot_peer,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191975,12.167855658825246,spot_baseline,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191975,4.842049852829631,baseline,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,191975,-8.60164025922405,peer,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192418,-0.3680285889292782,relative_legacy,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192418,-18.368429656606995,peer,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192418,-23.961268402473813,spot_peer,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192418,13.48601727024487,baseline,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192418,13.750352374993504,spot_baseline,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192459,-1.383262067358803,relative_legacy,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192459,-94.34164716336323,spot_baseline,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192459,-92.96639987828172,peer,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192459,-89.0062740812274,baseline,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192459,-101.56077829218336,spot_peer,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192472,-0.1360939516115984,relative_legacy,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192472,-6.659238205217313,spot_peer,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192472,-1.0991970181088937,peer,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192472,35.96456297390024,baseline,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192924,8.161920600423855,spot_peer,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192924,0.0150771652251602,relative_legacy,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192924,6.156707828217305,peer,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192924,31.868682096259835,baseline,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,192924,58.496250072115615,spot_baseline,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,193275,3.71158711686639,peer,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,193275,36.59208720159309,baseline,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,193275,0.8681653697101894,spot_peer,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,193275,-0.0424566531857001,relative_legacy,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,193275,48.33643607133495,spot_baseline,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,204737,0.0139100786162116,relative_legacy,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,204737,36.916636176674224,spot_peer,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,204737,3.593954478920383,baseline,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,204737,1.386635088069458,peer,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,208405,60.913942574962434,baseline,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,208405,0.1172862016697822,relative_legacy,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,208405,17.398712782711232,peer,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,208405,14.846267432529457,spot_peer,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,215725,21.125246120660183,spot_peer,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,215725,15.344554996794146,peer,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,215725,0.1339397518214973,relative_legacy,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,215725,47.40135439719994,baseline,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,218666,17.90771480754653,spot_peer,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,218666,18.488464879879643,peer,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,218666,61.49240916735217,baseline,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,218666,72.07162425211312,spot_baseline,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,218666,0.1391951491973216,relative_legacy,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,218945,-0.7490401424201163,peer,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,218945,-0.1337364703747658,relative_legacy,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,218945,36.73019777822775,baseline,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,218945,-6.659238205217313,spot_peer,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,218945,37.85116232537298,spot_baseline,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,219459,76.55347463629771,spot_baseline,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,219459,21.125246120660183,spot_peer,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,219459,0.0207922509247383,relative_legacy,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,219459,2.8433733500274885,peer,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,219459,9.11029606190787,baseline,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,219659,14.846267432529457,spot_peer,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,219659,2.767488269940631,baseline,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,219659,67.80719051126377,spot_baseline,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,219659,0.0031033082505714,relative_legacy,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28932,"Will Nippon Steel acquire US Steel before January 1, 2025?",2024-10-21 14:05:11.369529+00,219659,0.6586297042436221,peer,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,0.5283,2024-10-22 14:30:00+00,29007 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,182315,27.29408152354069,peer,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,182315,56.84091988282768,spot_peer,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,182315,0.2899953336450494,relative_legacy,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,182315,22.04623932628624,baseline,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,182315,50.58909297299573,spot_baseline,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,185690,-51.45731728297583,spot_baseline,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,185690,-6.777370555630169,peer,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,185690,-16.51200913736954,spot_peer,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,185690,-33.93172718888021,baseline,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,185690,-0.1991069021405063,relative_legacy,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,185698,-5.889368905356857,spot_baseline,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,185698,-10.005964263493563,peer,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,185698,-25.291648823543227,baseline,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,185698,-0.1936853451239089,relative_legacy,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,185698,16.24311154306514,spot_peer,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,187708,24.14420737273663,spot_peer,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,187708,0.0767847133171888,relative_legacy,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,187708,9.851068334586044,peer,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,187708,1.6746061138322137,baseline,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,187708,5.102400302446689,spot_baseline,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,188107,20.47650356738788,spot_peer,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,188107,-1.0454163207407568e-14,baseline,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,188107,0.0598748248386326,relative_legacy,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,188107,8.5984934687931,peer,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,188107,-3.203426503814918e-14,spot_baseline,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,188909,-47.33809305256244,spot_peer,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,188909,-94.34164716336323,spot_baseline,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,188909,8.914155651994792,peer,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,188909,-20.57808453331807,baseline,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,188909,-0.0192124085276353,relative_legacy,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,189585,39.38392427194616,spot_peer,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,189585,18.475141748715927,peer,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,189585,-13.197143328079068,baseline,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,189585,0.130473069110396,relative_legacy,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,189588,-16.51200913736954,spot_peer,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,189588,-0.1983568657632376,relative_legacy,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,189588,-6.712215940092322,peer,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,189588,-32.87237832578868,baseline,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,189869,55.36992069847664,spot_peer,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,189869,42.28533067057883,baseline,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,189869,0.6416045947374157,relative_legacy,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,189869,56.80155865411647,peer,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,190710,-16.48843847417821,spot_baseline,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,190710,8.624295792352454,spot_peer,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,190710,-15.701614394356689,baseline,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,190710,0.1107571670447467,relative_legacy,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,190710,18.112171674994293,peer,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,190772,-0.2887256781666212,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,190772,-13.18247979450542,peer,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,190772,-64.38561897747249,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,190772,-25.80512189037413,spot_peer,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,190772,-43.591092477248665,baseline,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191046,-55.3242345065393,peer,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191046,-173.6965594166206,spot_baseline,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191046,-104.37993539974616,spot_peer,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191046,-0.8603349278918259,relative_legacy,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191046,-97.08045612935268,baseline,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191284,-36.52107079053096,peer,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191284,-82.88455945722482,baseline,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191284,-100.0,spot_baseline,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191284,-51.405426268458285,spot_peer,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191284,-0.6312009284940857,relative_legacy,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191471,-32.4980055639,spot_peer,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191471,-40.37521924743557,baseline,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191471,-0.2977621083437576,relative_legacy,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191471,-73.69655941662059,spot_baseline,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191471,-14.609660697890302,peer,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191935,-51.405426268458285,spot_peer,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191935,-37.89158148570605,peer,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191935,-86.57501668400235,baseline,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191935,-100.0,spot_baseline,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191935,-0.6491153979181067,relative_legacy,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191975,-8.824451278597891,spot_baseline,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191975,9.865713951208772,peer,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191975,14.133317690907733,spot_peer,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191975,0.0348065844385348,relative_legacy,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,191975,-4.36182402980962,baseline,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192418,-6.2864689750092815,peer,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192418,-50.47971199302657,baseline,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192418,-16.51200913736954,spot_peer,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192418,-0.2204832683091609,relative_legacy,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192459,-7.983613764646489,spot_peer,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192459,-39.592867633113926,spot_baseline,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192459,1.745108762916338,peer,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192459,-37.35948503054232,baseline,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192459,-0.1102926477781154,relative_legacy,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192472,-16.51200913736954,spot_peer,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192472,-49.03306529692321,baseline,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192472,-51.45731728297583,spot_baseline,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192472,-0.2222445612381354,relative_legacy,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192472,-6.541523668776223,peer,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192924,0.4235963099124368,relative_legacy,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192924,31.71002590367577,baseline,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192924,37.66352192745336,peer,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192924,62.524737000827166,spot_peer,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,192924,58.496250072115615,spot_baseline,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,193275,29.438415023996804,peer,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,193275,0.2705228728313424,relative_legacy,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,193275,10.58763746904658,baseline,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,193275,30.548903198722098,spot_peer,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,193275,14.01242239090704,spot_baseline,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,204737,4.467117414467108,baseline,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,204737,84.8325837759178,spot_peer,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,204737,0.0493162708373056,relative_legacy,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,204737,89.53026213333065,spot_baseline,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,204737,4.327609908910511,peer,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,208405,-51.405426268458285,spot_peer,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,208405,-103.7902175480122,baseline,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,208405,-100.0,spot_baseline,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,208405,-0.7762420682258129,relative_legacy,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,208405,-47.70919253819121,peer,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,215725,-15.200309344505014,spot_baseline,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,215725,-9.41606109377717,baseline,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,215725,0.0264243740663289,relative_legacy,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,215725,9.550227869539247,spot_peer,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,215725,9.758261457401725,peer,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,218666,23.4705415988479,peer,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,218666,17.53137287624885,spot_peer,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,218666,0.1832227447800906,relative_legacy,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,218666,-5.527832481186996,baseline,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,218666,-4.097178105630618,spot_baseline,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,218945,-76.12131404128833,spot_baseline,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,218945,-73.67076045631863,baseline,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,218945,-24.204396539161124,peer,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,218945,-0.4591832198222821,relative_legacy,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,218945,-34.240965981895094,spot_peer,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,219459,-0.0144811071227235,relative_legacy,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,219459,-0.2696971949986912,peer,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,219459,-38.332863955150586,spot_baseline,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,219459,-4.561958634831098,baseline,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,219459,-7.077898804923806,spot_peer,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,219659,39.38392427194616,spot_peer,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,219659,26.303440583379377,spot_baseline,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,219659,1.1046369453625768,baseline,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,219659,1.7200132630479148,peer,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28933,"Will the CBOE S&P 500 3-Month Volatility Index (VXVCLS) be higher Year-over-Year on October 30, 2024?",2024-10-21 14:05:11.376208+00,219659,0.0144907716935974,relative_legacy,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29008 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,182315,8.16098708533146,peer,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,182315,21.412480535284764,spot_baseline,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,182315,0.0159366633498795,relative_legacy,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,182315,18.025768388070357,spot_peer,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,182315,9.343370071395304,baseline,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,185690,-38.05428591053158,spot_peer,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,185690,-0.4651890426020317,relative_legacy,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,185690,-23.884654075084907,peer,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,185690,-56.70405927238937,spot_baseline,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,185690,-37.413882553387324,baseline,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,185698,0.0491195354435082,relative_legacy,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,185698,29.827138106382176,spot_peer,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,185698,11.76221415255996,baseline,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,185698,9.240325648673462,peer,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,185698,37.85116232537298,spot_baseline,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,185699,18.268650170011867,peer,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,185699,65.99245584023782,spot_baseline,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,185699,50.02984130127556,spot_peer,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,185699,0.1625878532760646,relative_legacy,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,185699,24.00848906401381,baseline,MWG,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,187708,-12.088689164253328,baseline,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,187708,-23.34571031813875,spot_peer,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,187708,-36.21579396758951,spot_baseline,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,187708,-0.1939436366933146,relative_legacy,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,187708,-7.857212525036132,peer,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,188107,0.0647430536881609,relative_legacy,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,188107,10.767379298665826,peer,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,188107,13.77997987389424,baseline,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,188107,32.4493396476122,spot_peer,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,188107,41.50374992788439,spot_baseline,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,188909,30.66091371329485,baseline,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,188909,21.412480535284764,spot_baseline,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,188909,18.025768388070357,spot_peer,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,188909,28.846671720934005,peer,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,188909,0.1412361836905712,relative_legacy,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,189585,21.537000525908752,spot_peer,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,189585,-0.2273246765689002,relative_legacy,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,189585,-13.10274626973253,baseline,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,189585,2.135276881477229,peer,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,189588,-34.28763704997669,spot_peer,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,189588,-32.915507360691834,baseline,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,189588,-0.4114900895870316,relative_legacy,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,189588,-20.910020709254816,peer,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,189869,73.86957917960136,baseline,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,189869,63.53160100854007,spot_peer,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,189869,62.40987482512515,peer,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,189869,0.578214914797735,relative_legacy,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,190710,-0.8849720009741198,relative_legacy,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,190710,-83.65012677171204,spot_baseline,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,190710,-57.39893343609126,spot_peer,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,190710,-45.49199095191405,peer,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,190710,-79.73673566126406,baseline,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,190772,32.94941577268928,baseline,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,190772,27.454670070738683,peer,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,190772,0.2294783475138514,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,190772,37.5026066508748,spot_peer,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,190772,48.54268271702416,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191046,48.54268271702416,spot_baseline,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191046,21.914921669660327,peer,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191046,0.2015808893343957,relative_legacy,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191046,37.5026066508748,spot_peer,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191046,27.18943291521993,baseline,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191284,36.08280051284952,peer,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191284,40.23420765220517,baseline,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191284,0.2392752569936874,relative_legacy,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191284,37.5026066508748,spot_peer,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191471,2.6536964293920247,spot_peer,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191471,2.1886683854058586,peer,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191471,-0.0666108949671893,relative_legacy,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191471,0.0,spot_baseline,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191471,0.0,baseline,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191935,50.58909297299573,spot_baseline,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191935,0.2770018218907961,relative_legacy,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191935,40.30755954166981,peer,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191935,38.971729560756,spot_peer,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191935,43.90974628100165,baseline,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191975,-7.326799619764842,peer,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191975,-24.58251158015705,spot_baseline,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191975,-0.1936646041514451,relative_legacy,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191975,-13.058889368713794,baseline,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,191975,-14.99414854179275,spot_peer,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192418,-38.44803083975065,peer,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192418,-72.31433020320124,baseline,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192418,-73.69655941662059,spot_baseline,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192418,-0.7899974040195,relative_legacy,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192418,-50.25324317494272,spot_peer,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192459,-173.3251137069713,baseline,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192459,-129.18917713694273,spot_peer,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192459,-183.65012677171205,spot_baseline,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192459,-114.937350512829,peer,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192459,-1.8278114526150304,relative_legacy,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192472,-25.153876699596427,spot_baseline,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192472,-0.3271342004544613,relative_legacy,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192472,-4.206608847524234,peer,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192472,-24.00020234391288,baseline,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192472,-15.404332953459951,spot_peer,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192924,-16.414590434519628,baseline,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192924,-0.2322913082349201,relative_legacy,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192924,-9.65552620292468,peer,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192924,-32.19280948873623,spot_baseline,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,192924,-20.457599956722557,spot_peer,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,193275,13.275628791633723,spot_peer,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,193275,14.795788138710142,spot_baseline,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,193275,11.375513600560453,baseline,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,193275,-0.033218668898859,relative_legacy,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,193275,13.734797636663094,peer,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,204737,52.60688116675877,spot_baseline,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,204737,2.759413113567288,baseline,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,204737,2.0978566238622234,peer,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,204737,40.42030462242549,spot_peer,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,204737,0.0143990252919657,relative_legacy,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,208405,-0.6054743045547137,relative_legacy,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,208405,-25.266975815107187,peer,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,208405,-50.78402805799695,baseline,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,208405,-20.457599956722557,spot_peer,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,208405,-32.19280948873623,spot_baseline,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,215725,-0.1734044708908039,relative_legacy,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,215725,-9.424483587268403,baseline,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,215725,-4.049020221469806,peer,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,215725,-15.200309344505014,spot_baseline,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,215725,-8.258642692311424,spot_peer,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,218666,40.16436223454877,peer,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,218666,39.26306991761966,spot_peer,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,218666,40.47177758951501,baseline,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,218666,50.99491463043107,spot_baseline,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,218666,0.2770430522077498,relative_legacy,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,218945,-0.5784617266591432,relative_legacy,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,218945,-22.830931484095835,peer,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,218945,-50.20626286263735,baseline,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,218945,-51.45731728297583,spot_baseline,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,218945,-34.28763704997669,spot_peer,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,219459,4.079059147266856,peer,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,219459,35.00678880875782,spot_peer,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,219459,0.0261873151364077,relative_legacy,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,219459,45.06614090095651,spot_baseline,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,219459,5.363438058072846,baseline,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,219659,-100.0,spot_baseline,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,219659,-69.13654727145946,spot_peer,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,219659,-2.9887396481280604,peer,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,219659,-0.0529332539800432,relative_legacy,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28934,"Will Doug Pederson cease to be the Jacksonville Jaguars head coach before January 1, 2025?",2024-10-21 14:05:11.380973+00,219659,-4.322951848308245,baseline,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29009 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,182315,4.436900496172687,peer,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,182315,10.431762848884864,baseline,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,182315,9.248147305924457,spot_peer,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,182315,0.0149487257669241,relative_legacy,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,182315,23.878685958711674,spot_baseline,RyansAGI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,185690,-38.38285081309118,spot_peer,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,185690,-0.4199567589309607,relative_legacy,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,185690,-42.4687669312563,spot_baseline,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,185690,-28.037675222628,baseline,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,185690,-24.750058991207425,peer,annabot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,185698,-0.182584040829345,relative_legacy,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,185698,-67.94704940187896,spot_peer,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,185698,-12.72708600969607,baseline,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,185698,-83.65012677171204,spot_baseline,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,185698,-11.3309471156944,peer,RonanMcGovern,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,187708,-0.0037320934069252,relative_legacy,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,187708,17.376706773670666,spot_baseline,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,187708,4.580360603604869,spot_peer,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,187708,1.8275501656356996,peer,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,187708,5.8979943001295005,baseline,twsummerbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,188107,30.611385902765,baseline,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,188107,91.07326619029126,spot_baseline,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,188107,0.2441901363844119,relative_legacy,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,188107,57.48730020793962,spot_peer,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,188107,19.64959986403472,peer,Cassie,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,188909,-0.0890295969370709,relative_legacy,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,188909,2.743467112566119,peer,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,188909,-18.806758658099103,spot_peer,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,188909,-15.200309344505014,spot_baseline,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,188909,9.260100286389246,baseline,silicoqr,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,189585,-7.309454078755087,peer,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,189585,-31.005715922510237,spot_peer,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,189585,-0.2709396394912171,relative_legacy,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,189585,-6.14526577756738,baseline,mf-bot-1,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,189588,-1.5392069981756695,relative_legacy,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,189588,-44.835753015764375,spot_peer,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,189588,-132.99250389805903,baseline,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,189588,-101.88327291070608,peer,mf-bot-3,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,189869,0.6132660606600686,relative_legacy,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,189869,58.58330438860237,spot_peer,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,189869,54.87820801546248,peer,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,189869,80.6654091591745,baseline,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,190710,15.38245870524468,spot_peer,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,190710,30.933116733726223,baseline,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,190710,32.42345622705313,spot_baseline,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,190710,19.43194293867144,peer,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,190710,0.0958472490709947,relative_legacy,Bot_Pepa,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,190772,-12.54812426022975,baseline,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,190772,-0.270374049901078,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,190772,-18.44245711374277,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,190772,-21.134304442776617,spot_peer,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,190772,-13.483246426479568,peer,Jay_Bailey_Bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191046,0.1652074671199326,relative_legacy,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191046,17.463439640091416,peer,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191046,29.89322172369058,baseline,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191046,30.588948808397223,spot_peer,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191046,53.60529002402098,spot_baseline,archipelago,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191284,-42.64972104385467,baseline,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191284,-51.45731728297583,spot_baseline,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191284,-0.6087640359097072,relative_legacy,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191284,-44.835753015764375,spot_peer,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191284,-35.10476374098884,peer,000_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191471,0.1906511700600673,relative_legacy,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191471,19.15140693825989,peer,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191471,58.496250072115615,spot_baseline,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191471,34.10018094623565,spot_peer,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191471,32.133475752762365,baseline,HSeldon,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191935,81.55754288625727,spot_baseline,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191935,0.5527430673444914,relative_legacy,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191935,52.190995447571,peer,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191935,50.65593925807488,spot_peer,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191935,76.01329290380973,baseline,pgodzinai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191975,-0.3409439549452445,relative_legacy,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191975,-59.80055381967549,spot_baseline,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191975,-21.405303879136163,peer,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191975,-50.825382857999536,spot_peer,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,191975,-25.52420252854239,baseline,jkraybill_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192418,-0.92627143975512,relative_legacy,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192418,-72.33482950584072,baseline,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192418,-55.85048361025272,peer,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192418,-73.69655941662059,spot_baseline,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192418,-60.8013591407304,spot_peer,InstitutPelFutur,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192459,53.56867233916198,peer,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192459,0.5617819858605383,relative_legacy,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192459,50.0657870712017,spot_peer,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192459,80.73549220576041,spot_baseline,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192459,77.45415459771039,baseline,biak_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192472,-45.33553168458808,peer,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192472,-0.7859473981341153,relative_legacy,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192472,-50.92994766099679,spot_peer,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192472,-57.39257000759704,baseline,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192472,-59.94620704162715,spot_baseline,bestworldbot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192924,0.1767778135930834,relative_legacy,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192924,26.95449068508711,spot_peer,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192924,19.043789778759358,peer,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192924,48.54268271702416,spot_baseline,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,192924,32.43861862449544,baseline,acm_bot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,193275,30.163264242250563,baseline,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,193275,0.0980145406096226,relative_legacy,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,193275,36.737106564852944,spot_baseline,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,193275,18.436092523899365,peer,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,193275,18.479238795153773,spot_peer,histerio,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,204737,2.50825719777438,peer,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,204737,0.0288170214771359,relative_legacy,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,204737,40.78452777834125,spot_peer,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,204737,67.80719051126377,spot_baseline,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,204737,4.200648171464975,baseline,SynapseSeer,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,208405,-21.00673691406126,peer,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,208405,-44.835753015764375,spot_peer,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,208405,-24.824831215044977,baseline,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,208405,-51.45731728297583,spot_baseline,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,208405,-0.4578352916077059,relative_legacy,mf-bot-4,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,215725,37.85116232537298,spot_baseline,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,215725,23.48204457781521,baseline,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,215725,12.480217236696724,peer,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,215725,19.279022140594492,spot_peer,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,215725,0.0908829368048453,relative_legacy,estr.ai,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,216863,81.76132224045283,baseline,tombot61,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,216863,84.79969065549501,spot_baseline,tombot61,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,216863,0.6041918420166671,relative_legacy,tombot61,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,216863,56.81310211913675,peer,tombot61,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,216863,52.98348504275239,spot_peer,tombot61,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,218666,26.57590099047525,baseline,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,218666,15.697470718012932,peer,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,218666,18.31853833068537,spot_peer,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,218666,0.0649924195289991,relative_legacy,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,218666,36.513259345252976,spot_baseline,GreeneiBot2,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,218945,-41.47278205397419,baseline,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,218945,-33.48999817377087,peer,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,218945,-0.6270807384412805,relative_legacy,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,218945,-43.440282414577496,spot_baseline,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,218945,-39.08030414615898,spot_peer,SeidrBot,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,219459,0.2872052366957242,peer,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,219459,1.636516804348196,baseline,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,219459,-0.0046711317054651,relative_legacy,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,219459,13.750352374993504,spot_baseline,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,219459,1.9769919433380003,spot_peer,karamazov,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,219659,44.36066514756145,spot_baseline,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,219659,-0.0011077232348223,relative_legacy,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,219659,1.1345160540031265,baseline,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,219659,0.3414797570377949,peer,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28935,"On October 31, 2024, will Nvidia's market capitalization be larger than Apple's?",2024-10-21 14:05:11.388765+00,219659,23.952210080357407,spot_peer,lostandfound,True,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29010 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,182315,76.55347463629771,spot_baseline,RyansAGI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,182315,14.512681569196108,spot_peer,RyansAGI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,182315,0.054139158039562,relative_legacy,RyansAGI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,182315,6.784575898418718,peer,RyansAGI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,182315,33.48438500749432,baseline,RyansAGI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,185690,0.0540284227981512,relative_legacy,annabot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,185690,49.163618150126034,baseline,annabot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,185690,11.362659838834912,peer,annabot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,185690,12.98008648797468,spot_peer,annabot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,185690,74.416109557041,spot_baseline,annabot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,185698,37.85116232537298,spot_baseline,RonanMcGovern,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,185698,11.781120918976072,baseline,RonanMcGovern,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,185698,-4.037123925371814,peer,RonanMcGovern,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,185698,-13.238765319908635,spot_peer,RonanMcGovern,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,185698,-0.0768263880879004,relative_legacy,RonanMcGovern,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,185699,-0.0915222691655091,relative_legacy,MWG,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,185699,20.321009114274887,baseline,MWG,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,185699,-8.571134083997983,spot_peer,MWG,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,185699,-3.460153691205831,peer,MWG,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,185699,44.36066514756148,spot_baseline,MWG,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,187708,69.42116077678907,spot_baseline,twsummerbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,187708,0.0214347870831199,relative_legacy,twsummerbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,187708,3.405102334402873,peer,twsummerbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,187708,23.87958187395836,baseline,twsummerbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,187708,9.398464421692282,spot_peer,twsummerbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,188107,12.805472614594157,baseline,Cassie,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,188107,0.3705503193924733,peer,Cassie,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,188107,1.5647702291265384,spot_peer,Cassie,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,188107,-0.0027780824176063,relative_legacy,Cassie,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,188107,58.496250072115615,spot_baseline,Cassie,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,188909,44.36066514756148,spot_baseline,silicoqr,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,188909,-21.458964115125177,peer,silicoqr,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,188909,-0.4049614234584775,relative_legacy,silicoqr,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,188909,14.719185689650637,baseline,silicoqr,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,188909,-8.571134083997983,spot_peer,silicoqr,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,189585,0.0798122456021726,relative_legacy,mf-bot-1,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,189585,72.09154973368166,baseline,mf-bot-1,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,189585,14.512681569196108,spot_peer,mf-bot-1,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,189585,14.306889431502306,peer,mf-bot-1,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,189588,-247.39311883324123,spot_baseline,mf-bot-3,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,189588,-1.9928853137242457,relative_legacy,mf-bot-3,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,189588,-135.56008433325536,peer,mf-bot-3,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,189588,-217.77283696398635,spot_peer,mf-bot-3,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,189588,-135.2263529668249,baseline,mf-bot-3,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,189869,0.0769705296843001,relative_legacy,VeritasAI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,189869,13.955189995217838,peer,VeritasAI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,189869,14.512681569196108,spot_peer,VeritasAI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,189869,66.68790565201168,baseline,VeritasAI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,190710,69.59938131099001,spot_baseline,Bot_Pepa,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,190710,66.46434521242762,baseline,Bot_Pepa,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,190710,9.526257243208768,spot_peer,Bot_Pepa,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,190710,9.496406740460824,peer,Bot_Pepa,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,190710,0.0134037157120216,relative_legacy,Bot_Pepa,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,190772,0.0568693441529255,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,190772,51.06513105380179,baseline,Jay_Bailey_Bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,190772,11.709799413602322,peer,Jay_Bailey_Bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,190772,13.288427329850988,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,190772,74.84612330040356,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191046,0.0585267245638679,relative_legacy,archipelago,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191046,42.8466921228626,baseline,archipelago,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191046,9.547112193852737,peer,archipelago,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191046,14.512681569196108,spot_peer,archipelago,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191284,63.45002403677836,baseline,000_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191284,14.512681569196108,spot_peer,000_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191284,13.723278638301723,peer,000_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191284,0.0769705296843001,relative_legacy,000_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191471,76.55347463629771,spot_baseline,HSeldon,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191471,42.10494444613108,baseline,HSeldon,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191471,0.0578529233298511,relative_legacy,HSeldon,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191471,14.512681569196108,spot_peer,HSeldon,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191471,9.131911910729547,peer,HSeldon,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191935,54.63814279898936,baseline,pgodzinai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191935,1.9700302004252468,peer,pgodzinai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191935,1.5647702291265384,spot_peer,pgodzinai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191935,-0.0888503974005631,relative_legacy,pgodzinai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191935,58.496250072115615,spot_baseline,pgodzinai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191975,53.87036957326636,spot_baseline,jkraybill_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191975,24.05437244254008,baseline,jkraybill_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191975,-0.0463481146393925,relative_legacy,jkraybill_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191975,-1.7522118660989237,spot_peer,jkraybill_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,191975,-0.3429034478218928,peer,jkraybill_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192418,14.512681569196108,spot_peer,InstitutPelFutur,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192418,14.411802448105368,peer,InstitutPelFutur,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192418,75.15473524587665,baseline,InstitutPelFutur,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192418,0.0798122456021726,relative_legacy,InstitutPelFutur,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192459,78.24085649273731,spot_baseline,biak_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192459,73.86392689035628,baseline,biak_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192459,0.0957421134061809,relative_legacy,biak_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192459,15.722616717112444,spot_peer,biak_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192459,15.47907664022762,peer,biak_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192472,14.38000679719669,peer,bestworldbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192472,0.0798122456021726,relative_legacy,bestworldbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192472,14.512681569196108,spot_peer,bestworldbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192472,73.44113570369882,baseline,bestworldbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192924,67.80719051126377,spot_baseline,acm_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192924,-23.584945247095728,peer,acm_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192924,-1.95991954285158,baseline,acm_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192924,-0.4137834750232961,relative_legacy,acm_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,192924,8.24116896749596,spot_peer,acm_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,193275,51.16552282272918,baseline,histerio,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,193275,-1.5151082191841836,spot_peer,histerio,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,193275,-0.1283408670460034,relative_legacy,histerio,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,193275,-0.9000907697978456,peer,histerio,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,193275,54.20103555366092,spot_baseline,histerio,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,204737,28.81556671911249,baseline,SynapseSeer,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,204737,8.770529123430977,peer,SynapseSeer,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,204737,30.285294704810617,spot_peer,SynapseSeer,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,204737,0.1036435905971227,relative_legacy,SynapseSeer,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,208405,19.96732149901358,peer,mf-bot-4,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,208405,20.425620931949425,spot_peer,mf-bot-4,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,208405,79.74036982788834,baseline,mf-bot-4,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,208405,0.1573198502541148,relative_legacy,mf-bot-4,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,215725,58.496250072115615,spot_baseline,estr.ai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,215725,-0.0447163481823993,relative_legacy,estr.ai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,215725,36.31172556993092,baseline,estr.ai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,215725,3.729730613314032,peer,estr.ai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,215725,1.5647702291265384,spot_peer,estr.ai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,216863,1.5647702291265384,spot_peer,tombot61,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,216863,-0.094336128507135,relative_legacy,tombot61,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,216863,1.609807673076672,peer,tombot61,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,216863,56.41524147491176,baseline,tombot61,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,216863,58.496250072115615,spot_baseline,tombot61,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,218666,41.359408240917496,spot_baseline,GreeneiBot2,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,218666,-9.644761055155849,peer,GreeneiBot2,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,218666,37.13823361077423,baseline,GreeneiBot2,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,218666,-10.72318176983559,spot_peer,GreeneiBot2,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,218666,-0.2469672340810214,relative_legacy,GreeneiBot2,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,218945,14.512681569196108,spot_peer,SeidrBot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,218945,74.18844553444377,baseline,SeidrBot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,218945,0.0798122456021726,relative_legacy,SeidrBot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,218945,14.411802448105366,peer,SeidrBot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,219459,61.66713604484944,spot_baseline,karamazov,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,219459,3.838450234517069,spot_peer,karamazov,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,219459,7.339607492921998,baseline,karamazov,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,219459,0.4634850068919149,peer,karamazov,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,219459,0.0018643016273495,relative_legacy,karamazov,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,219659,-0.0012990346401598,relative_legacy,lostandfound,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,219659,3.309345223607613,baseline,lostandfound,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,219659,0.0019574203257163,peer,lostandfound,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,219659,1.5647702291265384,spot_peer,lostandfound,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28936,"Will US airline passenger volume for the Veterans Day weekend of 2024 be up year over year, according to the TSA?",2024-10-21 14:05:11.393086+00,219659,58.496250072115615,spot_baseline,lostandfound,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29011 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,182315,16.529067300779285,spot_peer,RyansAGI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,182315,4.88406867938582,baseline,RyansAGI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,182315,10.903652934746193,peer,RyansAGI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,182315,0.058135571522509,relative_legacy,RyansAGI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,182315,11.103131238874395,spot_baseline,RyansAGI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,185690,-32.19280948873623,spot_baseline,annabot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,185690,-0.1492489959830981,relative_legacy,annabot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,185690,-21.278956093719597,baseline,annabot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,185690,-14.481740585755658,spot_peer,annabot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,185690,-2.979186625019361,peer,annabot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,185698,57.14346807210536,spot_peer,RonanMcGovern,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,185698,-51.7858145213251,baseline,RonanMcGovern,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,185698,-32.1684139554831,peer,RonanMcGovern,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,185698,-0.5351768451333674,relative_legacy,RonanMcGovern,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,185698,67.80719051126377,spot_baseline,RonanMcGovern,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,185699,-47.39311883324123,spot_baseline,MWG,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,185699,-0.2074186040688994,relative_legacy,MWG,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,185699,-22.603300405907174,baseline,MWG,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,185699,-8.15245981806691,peer,MWG,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,185699,-25.36899387039772,spot_peer,MWG,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,187708,-13.225686138039404,baseline,twsummerbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,187708,-18.43126591050944,spot_peer,twsummerbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,187708,-0.139414213942964,relative_legacy,twsummerbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,187708,-3.7565429794212375,peer,twsummerbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,187708,-37.70696490798233,spot_baseline,twsummerbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,188107,-0.3111379719596712,relative_legacy,Cassie,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,188107,-31.13187599631825,baseline,Cassie,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,188107,-50.11525750256772,spot_peer,Cassie,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,188107,-81.94277543581791,spot_baseline,Cassie,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,188107,-16.045522683899282,peer,Cassie,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,188909,40.05379295837288,spot_baseline,silicoqr,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,188909,37.26503916520156,spot_peer,silicoqr,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,188909,-0.0450558255051382,relative_legacy,silicoqr,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,188909,-17.172802709262914,baseline,silicoqr,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,188909,4.491058577575865,peer,silicoqr,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,189585,-132.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,189585,-70.2531754970603,peer,mf-bot-1,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,189585,-124.48040741805352,baseline,mf-bot-1,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,189585,-86.10694924361667,spot_peer,mf-bot-1,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,189585,-1.077964665318901,relative_legacy,mf-bot-1,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,189588,-14.481740585755658,spot_peer,mf-bot-3,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,189588,-32.19280948873623,spot_baseline,mf-bot-3,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,189588,0.2574536244059079,relative_legacy,mf-bot-3,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,189588,9.078904475606052,baseline,mf-bot-3,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,189588,27.601421703077783,peer,mf-bot-3,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,189869,-14.481740585755658,spot_peer,VeritasAI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,189869,-0.1390879705881944,relative_legacy,VeritasAI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,189869,-28.044414270340464,baseline,VeritasAI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,189869,-1.937466161652384,peer,VeritasAI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,190710,34.02808390040315,peer,Bot_Pepa,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,190710,18.903382439001685,spot_baseline,Bot_Pepa,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,190710,22.11601349870776,spot_peer,Bot_Pepa,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,190710,0.3501751509530311,relative_legacy,Bot_Pepa,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,190710,18.072325330860853,baseline,Bot_Pepa,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,190772,33.34237337251918,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,190772,0.3017748940202217,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,190772,29.66019808938583,peer,Jay_Bailey_Bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,190772,22.946768871087315,baseline,Jay_Bailey_Bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,190772,32.45797088292929,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191046,0.1791171959786098,relative_legacy,archipelago,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191046,14.675376133006804,baseline,archipelago,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191046,26.303440583379377,spot_baseline,archipelago,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191046,27.41632058542132,spot_peer,archipelago,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191046,20.286344120566625,peer,archipelago,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191284,-0.1390879705881944,relative_legacy,000_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191284,-2.089297063785435,peer,000_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191284,-14.481740585755658,spot_peer,000_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191284,-32.19280948873623,spot_baseline,000_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191284,-26.682337011366883,baseline,000_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191471,-0.1072673055476856,relative_legacy,HSeldon,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191471,-9.440090288247704,spot_peer,HSeldon,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191471,-13.854754640438856,baseline,HSeldon,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191471,-0.4309458962854435,peer,HSeldon,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191471,-25.15387669959645,spot_baseline,HSeldon,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191935,-6.709472630448149,peer,pgodzinai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191935,-0.205228381345101,relative_legacy,pgodzinai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191935,-19.78204767246921,spot_peer,pgodzinai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191935,-37.0548948718,baseline,pgodzinai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191935,-39.592867633113926,spot_baseline,pgodzinai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191975,36.321349196996735,spot_peer,jkraybill_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191975,38.73625408359956,spot_baseline,jkraybill_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191975,14.535601381802229,peer,jkraybill_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191975,0.115708711389954,relative_legacy,jkraybill_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,191975,12.815135978884184,baseline,jkraybill_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192418,-21.75914350726268,spot_baseline,InstitutPelFutur,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192418,-7.00860555586097,spot_peer,InstitutPelFutur,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192418,-0.0310610146313538,relative_legacy,InstitutPelFutur,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192418,6.811737536967902,peer,InstitutPelFutur,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192418,-21.3673923597581,baseline,InstitutPelFutur,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192459,29.51433879245202,baseline,biak_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192459,30.804602277130368,spot_peer,biak_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192459,0.4638057756047861,relative_legacy,biak_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192459,42.1918982267448,peer,biak_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192459,31.034012061215048,spot_baseline,biak_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192472,48.54268271702416,spot_baseline,bestworldbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192472,55.19826522010384,peer,bestworldbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192472,43.34522416757134,spot_peer,bestworldbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192472,46.68290236318377,baseline,bestworldbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192472,0.6379711348802037,relative_legacy,bestworldbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192924,0.0338056389806476,relative_legacy,acm_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192924,9.864195111162342,peer,acm_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192924,18.425144963159585,spot_peer,acm_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192924,13.750352374993504,spot_baseline,acm_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,192924,-1.26564452226709,baseline,acm_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,193275,-10.428933559916596,spot_peer,histerio,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,193275,-0.084350877625677,relative_legacy,histerio,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,193275,2.3503749477321287,peer,histerio,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,193275,-26.53445665209948,spot_baseline,histerio,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,193275,-25.407189836067232,baseline,histerio,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,204737,23.59351097151026,baseline,SynapseSeer,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,204737,78.24085649273731,spot_baseline,SynapseSeer,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,204737,64.61660310200006,spot_peer,SynapseSeer,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,204737,21.69742020507335,peer,SynapseSeer,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,204737,0.2159905867299376,relative_legacy,SynapseSeer,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,208405,-0.2330200227591437,relative_legacy,mf-bot-4,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,208405,-2.3108269012627063,spot_peer,mf-bot-4,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,208405,-39.95319388654312,baseline,mf-bot-4,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,208405,-15.200309344504996,spot_baseline,mf-bot-4,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,208405,-9.076209500591911,peer,mf-bot-4,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,215725,17.44214736711571,peer,estr.ai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,215725,18.425144963159585,spot_peer,estr.ai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,215725,0.1360908158304763,relative_legacy,estr.ai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,215725,13.750352374993504,spot_baseline,estr.ai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,215725,8.5406723068414,baseline,estr.ai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,216863,-1.501460541377783,relative_legacy,tombot61,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,216863,-101.1455460639184,peer,tombot61,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,216863,-115.83409673030071,spot_peer,tombot61,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,216863,-167.55663633321396,baseline,tombot61,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,216863,-173.6965594166206,spot_baseline,tombot61,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,218269,-0.7993831127350026,relative_legacy,tombot37,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,218269,-100.0,spot_baseline,tombot37,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,218269,-50.10502701654396,peer,tombot37,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,218269,-98.4938066157478,baseline,tombot37,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,218269,-63.04878227448167,spot_peer,tombot37,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,218666,-0.0808297453658573,relative_legacy,GreeneiBot2,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,218666,2.2900402110078826,spot_baseline,GreeneiBot2,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,218666,10.216672462862665,spot_peer,GreeneiBot2,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,218666,1.9537229073182532,peer,GreeneiBot2,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,218666,-23.88608185623505,baseline,GreeneiBot2,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,218945,-0.1364425786682786,relative_legacy,SeidrBot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,218945,-31.2118217798414,baseline,SeidrBot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,218945,-1.274135642820651,peer,SeidrBot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,218945,-14.481740585755658,spot_peer,SeidrBot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,218945,-32.19280948873623,spot_baseline,SeidrBot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,219459,40.7805930047768,spot_baseline,karamazov,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,219459,37.785611214963794,spot_peer,karamazov,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,219459,5.175766281147981,peer,karamazov,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,219459,0.0325292877534454,relative_legacy,karamazov,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,219459,4.85384030326517,baseline,karamazov,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,219659,1.5823031520282107,baseline,lostandfound,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,219659,0.0063500565287992,relative_legacy,lostandfound,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,219659,1.9315130240727372,peer,lostandfound,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,219659,26.303440583379377,spot_baseline,lostandfound,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28937,"Will the Warren Buffett Indicator exceed 205% before November 15, 2024? -",2024-10-21 14:05:11.519658+00,219659,27.41632058542132,spot_peer,lostandfound,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29012 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,182315,44.36066514756148,spot_baseline,RyansAGI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,182315,8.411478580909838,spot_peer,RyansAGI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,182315,4.2238224673475,peer,RyansAGI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,182315,20.012468773465542,baseline,RyansAGI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,182315,0.0269370621058305,relative_legacy,RyansAGI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,185690,14.059313917518844,peer,annabot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,185690,38.69116769611496,baseline,annabot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,185690,0.1329777808094767,relative_legacy,annabot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,185690,58.496250072115615,spot_baseline,annabot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,185690,18.525585250350208,spot_peer,annabot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,185698,52.60688116675877,spot_baseline,RonanMcGovern,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,185698,9.88195843537245,baseline,RonanMcGovern,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,185698,-0.0205990950063423,relative_legacy,RonanMcGovern,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,185698,14.311701945033557,spot_peer,RonanMcGovern,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,185698,0.2879844075486563,peer,RonanMcGovern,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,185699,0.6051879558227994,peer,MWG,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,185699,-0.0249418940936978,relative_legacy,MWG,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,185699,33.34237337251918,spot_baseline,MWG,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,185699,16.647988552824557,baseline,MWG,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,185699,0.5278162547602628,spot_peer,MWG,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,187708,-40.52558162720284,baseline,twsummerbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,187708,-112.65804965651432,spot_baseline,twsummerbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,187708,-103.93647441170052,spot_peer,twsummerbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,187708,-0.5428824606383177,relative_legacy,twsummerbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,187708,-36.9221905766608,peer,twsummerbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,188107,6.3673364084009405,spot_peer,Cassie,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,188107,41.50374992788437,spot_baseline,Cassie,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,188107,16.022511163986724,baseline,Cassie,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,188107,2.997056849766477,peer,Cassie,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,188107,0.0116714848544515,relative_legacy,Cassie,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,188389,40.05379295837288,spot_baseline,Panshul42,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,188389,0.0346866442187169,peer,Panshul42,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,188389,5.329882384813715,spot_peer,Panshul42,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,188389,0.2606683535673906,baseline,Panshul42,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,188389,-0.0002802893807704,relative_legacy,Panshul42,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,188909,-35.0233853797523,peer,silicoqr,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,188909,-72.67450858718932,spot_peer,silicoqr,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,188909,-0.5500753406261588,relative_legacy,silicoqr,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,188909,-68.96598793878495,spot_baseline,silicoqr,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,188909,-23.949989292058063,baseline,silicoqr,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,189585,-52.00081381083567,peer,mf-bot-1,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,189585,-0.782590502960012,relative_legacy,mf-bot-1,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,189585,-46.36305056099161,spot_peer,mf-bot-1,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,189585,-42.72411814381387,baseline,mf-bot-1,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,189588,-0.2452091455579791,relative_legacy,mf-bot-3,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,189588,0.0,spot_baseline,mf-bot-3,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,189588,0.0002399717935366,baseline,mf-bot-3,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,189588,-13.313161844923291,peer,mf-bot-3,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,189588,-23.32887752210546,spot_peer,mf-bot-3,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,189869,0.1820640404023823,relative_legacy,VeritasAI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,189869,18.525585250350208,spot_peer,VeritasAI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,189869,18.157352259659923,peer,VeritasAI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,189869,50.95905464591796,baseline,VeritasAI,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,190710,28.987778206250848,spot_peer,Bot_Pepa,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,190710,30.003548971406055,peer,Bot_Pepa,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,190710,73.11832415721999,spot_baseline,Bot_Pepa,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,190710,0.3379552939344787,relative_legacy,Bot_Pepa,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,190710,69.96150451062357,baseline,Bot_Pepa,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,190772,30.60420300946438,baseline,Jay_Bailey_Bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,190772,44.36066514756148,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,190772,8.411478580909838,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,190772,0.0424220821750512,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,190772,7.557019637929099,peer,Jay_Bailey_Bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191046,32.72661128649634,baseline,archipelago,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191046,11.138958190933524,peer,archipelago,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191046,0.1089354634023848,relative_legacy,archipelago,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191046,18.525585250350208,spot_peer,archipelago,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191046,58.496250072115615,spot_baseline,archipelago,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191284,0.1735430083246507,relative_legacy,000_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191284,17.34400598123546,peer,000_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191284,48.48317506905808,baseline,000_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191284,58.496250072115615,spot_baseline,000_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191284,18.525585250350208,spot_peer,000_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191471,12.33126687829219,peer,HSeldon,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191471,21.242210625046823,spot_peer,HSeldon,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191471,0.1288062412110627,relative_legacy,HSeldon,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191471,62.29303509201767,spot_baseline,HSeldon,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191471,34.37455668155138,baseline,HSeldon,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191935,28.688114778816157,spot_baseline,pgodzinai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191935,-0.0765346424561429,relative_legacy,pgodzinai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191935,-2.8023372645400317,spot_peer,pgodzinai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191935,27.73730815316809,baseline,pgodzinai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191935,-0.2681210124165266,peer,pgodzinai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191975,36.139407091247776,spot_baseline,jkraybill_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191975,-0.0105820439607006,relative_legacy,jkraybill_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191975,17.212427540207706,baseline,jkraybill_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191975,1.5846832476116168,peer,jkraybill_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,191975,2.529112808120592,spot_peer,jkraybill_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192418,13.504917571998217,baseline,InstitutPelFutur,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192418,-11.930096408763117,peer,InstitutPelFutur,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192418,-0.2354608542382521,relative_legacy,InstitutPelFutur,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192418,13.750352374993504,spot_baseline,InstitutPelFutur,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192418,-13.490407348755786,spot_peer,InstitutPelFutur,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192459,-0.0637420635139077,relative_legacy,biak_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192459,31.034012061215048,spot_baseline,biak_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192459,0.6333832570141836,peer,biak_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192459,-1.1238318842272228,spot_peer,biak_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192459,29.521109560053866,baseline,biak_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192472,5.352221016546872,peer,bestworldbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192472,3.7538852616355625,spot_peer,bestworldbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192472,36.46971637205655,baseline,bestworldbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192472,0.0004482417436022,relative_legacy,bestworldbot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192924,-0.4229947126190887,relative_legacy,acm_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192924,-26.520502445693385,peer,acm_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192924,37.85116232537298,spot_baseline,acm_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192924,-19.14160390046821,baseline,acm_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,192924,3.7538852616355625,spot_peer,acm_bot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,193275,3.114949599712201,peer,histerio,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,193275,33.733612376836966,baseline,histerio,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,193275,34.027740476625425,spot_baseline,histerio,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,193275,-0.0312975768843665,relative_legacy,histerio,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,193275,1.018201055647763,spot_peer,histerio,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,204737,12.649906760111376,peer,SynapseSeer,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,204737,0.152034729114917,relative_legacy,SynapseSeer,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,204737,39.61466535489007,spot_peer,SynapseSeer,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,204737,26.95857017309369,baseline,SynapseSeer,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,204737,87.97057662822883,spot_baseline,SynapseSeer,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,208405,71.99427492839538,baseline,mf-bot-4,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,208405,0.3650461326285191,relative_legacy,mf-bot-4,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,208405,31.44565161979599,spot_peer,mf-bot-4,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,208405,31.92694795117208,peer,mf-bot-4,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,215725,-31.895028056330165,baseline,estr.ai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,215725,-0.5590579987511256,relative_legacy,estr.ai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,215725,-35.91232104861216,peer,estr.ai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,215725,-60.14693625126493,spot_peer,estr.ai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,216863,0.1994307927584793,relative_legacy,tombot61,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,216863,18.525585250350208,spot_peer,tombot61,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,216863,56.44082093985945,baseline,tombot61,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,216863,19.92233074959657,peer,tombot61,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,216863,58.496250072115615,spot_baseline,tombot61,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,218269,-2.836980626630257,peer,tombot37,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,218269,26.303440583379377,spot_baseline,tombot37,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,218269,-4.508587788535951,spot_peer,tombot37,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,218269,25.91694576687575,baseline,tombot37,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,218269,-0.1121706163556362,relative_legacy,tombot37,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,218666,3.553173713822261,peer,GreeneiBot2,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,218666,9.918451424383656,spot_peer,GreeneiBot2,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,218666,46.46682670034443,spot_baseline,GreeneiBot2,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,218666,-0.0193758746218209,relative_legacy,GreeneiBot2,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,218666,32.44851856295676,baseline,GreeneiBot2,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,218945,47.56634097819133,baseline,SeidrBot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,218945,13.198555084908488,peer,SeidrBot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,218945,0.1061276602953348,relative_legacy,SeidrBot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,218945,11.403740451697155,spot_peer,SeidrBot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,218945,48.54268271702416,spot_baseline,SeidrBot,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,219459,3.354727266493622,peer,karamazov,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,219459,27.316068691930283,spot_peer,karamazov,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,219459,8.424967938915435,baseline,karamazov,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,219459,0.0345001345380104,relative_legacy,karamazov,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,219459,70.78192485066899,spot_baseline,karamazov,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,219659,0.0034154006005965,relative_legacy,lostandfound,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,219659,0.6964903456189784,peer,lostandfound,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,219659,2.919753542133122,baseline,lostandfound,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,219659,48.54268271702416,spot_baseline,lostandfound,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28938,"Will Tesla deliver more than 450,000 vehicles in Q4 2024? ",2024-10-21 14:05:11.526493+00,219659,11.403740451697155,spot_peer,lostandfound,True,yes,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,2024-10-22 14:30:00+00,29013 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,182315,1.4045514754373931,peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,182315,50.58909297299573,spot_baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,182315,-0.0615730320414725,relative_legacy,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,182315,4.144804650905656,spot_peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,182315,28.452068837083228,baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,185690,53.60529002402098,spot_baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,185690,0.003097188899007,relative_legacy,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,185690,2.25431227916069,baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,185690,6.307565149455349,spot_peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,185690,0.277554764534565,peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,185698,0.0003857060828419,relative_legacy,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,185698,9.814622219353428,spot_peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,185698,0.3831031786060214,baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,185698,0.0642778462622158,peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,185698,58.496250072115615,spot_baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,185699,16.88357271309338,peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,185699,48.29766096943234,baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,185699,0.1562726872837495,relative_legacy,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,185699,33.17393277801137,spot_peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,185699,91.07326619029126,spot_baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,187708,-24.77076964597035,baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,187708,-63.03939299681623,spot_baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,187708,-0.4743686955393133,relative_legacy,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,187708,-77.3323657090293,spot_peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,187708,-30.97288046769563,peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,188107,53.60529002402098,spot_baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,188107,0.0053007828277649,relative_legacy,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,188107,12.486339975241194,baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,188107,6.307565149455349,spot_peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,188107,1.2939474246629936,peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,188909,0.0029751779442764,relative_legacy,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,188909,52.60688116675877,spot_baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,188909,12.738274266417644,baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,188909,1.1712034264863376,peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,188909,5.591657268982206,spot_peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,189585,2.677428617254983,spot_peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,189585,-0.0902411982867402,relative_legacy,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,189585,1.968347039966824,peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,189585,42.60199312148512,baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,189588,66.97392909258961,baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,189588,22.762533559423005,spot_peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,189588,19.947578225179008,peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,189588,0.1548666364204802,relative_legacy,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,189869,78.40080134910237,baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,189869,27.450125398347488,peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,189869,0.2439740436903549,relative_legacy,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,189869,28.67547292217632,spot_peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,190710,47.86253126931324,baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,190710,4.144804650905656,spot_peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,190710,-0.0723170007942378,relative_legacy,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,190710,4.60900932755777,peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,190710,50.58909297299573,spot_baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,190772,39.846031777468525,baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,190772,11.184818090045226,spot_peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,190772,60.40713236688608,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,190772,6.52503341051987,peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,190772,-0.00635489780268,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,191046,7.429734214305513,peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,191046,31.921049500344424,baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,191046,16.491020957722856,spot_peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,191046,0.0404957708089575,relative_legacy,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,191471,0.2050081352047815,relative_legacy,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,191471,22.6996384367498,peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,191471,28.67547292217632,spot_peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,191471,84.79969065549501,spot_baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,191471,67.98222300764338,baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,191935,23.972468707339356,spot_peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,191935,33.49500979402505,baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,191935,0.0823674330643162,relative_legacy,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,191935,9.82085436937254,peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,191935,78.24085649273731,spot_baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,192418,-78.29767544305182,spot_peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,192418,-78.05336048045976,peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,192418,-64.38561897747249,spot_baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,192418,-1.1846079438169046,relative_legacy,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,192418,-62.9549607809903,baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,192472,-28.07497108871077,baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,192472,-22.270370363802375,spot_peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,192472,-52.04806512146392,peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,192472,-0.8356647480443608,relative_legacy,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,192472,13.750352374993504,spot_baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,192924,0.0896819020675539,relative_legacy,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,192924,12.729181008464389,peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,192924,22.762533559423005,spot_peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,192924,45.53322728049084,baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,193275,38.71718212773276,baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,193275,46.25758880422043,spot_baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,193275,1.0389047521088592,spot_peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,193275,-0.1067306893506905,relative_legacy,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,193275,0.1442473934686796,peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,195286,-0.0044516996743095,relative_legacy,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,195286,2.0763599302639544,baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,195286,37.85116232537298,spot_baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,195286,-4.988913329681747,spot_peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,195286,-0.2546200988363598,peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,204737,-8.196859388203695,peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,204737,11.103131238874395,spot_baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,204737,3.6319205284739975,baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,204737,-0.1457020509610662,relative_legacy,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,204737,-24.168557122581326,spot_peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,208405,22.762533559423005,spot_peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,208405,19.722317944520217,peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,208405,0.154191106682869,relative_legacy,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,208405,66.41695443145203,baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,216863,65.20809718215662,baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,216863,67.80719051126377,spot_baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,216863,16.491020957722856,spot_peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,216863,0.0957358622271408,relative_legacy,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,216863,17.398860077964972,peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,218269,16.491020957722856,spot_peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,218269,0.1079467087684996,relative_legacy,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,218269,18.60549711845021,peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,218269,67.80719051126377,spot_baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,218269,66.556183126396,baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,218666,23.48258581633141,baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,218666,-0.3233217023396418,relative_legacy,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,218666,-13.392375395492564,peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,218666,-9.877142796979566,spot_peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,218666,31.034012061215048,spot_baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219459,45.06614090095651,spot_baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219459,3.827330176111893,baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219459,-0.0103419315108054,peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219459,-0.0019512566110791,relative_legacy,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219459,0.1845784539039207,spot_peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219659,-0.0749982260938932,relative_legacy,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219659,-73.69655941662059,spot_baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219659,-5.316919153901859,peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219659,-84.97407418142122,spot_peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219659,-4.623266065331624,baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219886,-18.99918539236807,peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219886,-20.99921545410997,spot_peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219886,-0.3695650275959758,relative_legacy,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219886,13.321734207474272,baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219886,15.52311162992791,spot_baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219991,22.762533559423005,spot_peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219991,0.0751675700328832,relative_legacy,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219991,10.789436563907753,peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219991,38.65165292303449,baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,219991,76.55347463629771,spot_baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,220077,0.0397813343006893,relative_legacy,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,220077,16.491020957722856,spot_peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,220077,6.309639250680873,peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28958,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-22 12:32:18.032212+00,220077,27.415353366074687,baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29037 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,182315,-78.58985380027706,baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,182315,-139.59286763311397,spot_baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,182315,-90.16519883574924,spot_peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,182315,-52.93814097833839,peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,182315,-0.7714266911658961,relative_legacy,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,185690,-1.449956969511509,spot_baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,185690,-0.0613596822867213,baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,185690,8.779949173098546,spot_peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,185690,0.0052720529120526,relative_legacy,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,185690,0.4332142877103612,peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,185698,-16.160656256575148,peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,185698,-25.153876699596427,spot_baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,185698,-8.198032793666666,spot_peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,185698,-25.43120395145645,baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,185698,-0.2499249028922522,relative_legacy,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,187708,17.73102793131859,baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,187708,41.59190285191628,spot_peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,187708,44.36066514756145,spot_baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,187708,15.506829547584994,peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,187708,0.1798115388497736,relative_legacy,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,188107,7.965775345608212,peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,188107,36.92945787293443,spot_peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,188107,0.0930212376017412,relative_legacy,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,188107,8.863410097942909,baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,188107,37.85116232537296,spot_baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,188389,0.0232384047795222,baseline,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,188389,0.1282435849766292,peer,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,188389,2.1479727410451708,spot_baseline,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,188389,11.356973835647938,spot_peer,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,188389,0.0013300098145996,relative_legacy,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,188909,47.49827228204432,spot_peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,188909,10.857428821357306,peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,188909,0.1323943799260192,relative_legacy,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,188909,52.60688116675877,spot_baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,188909,12.800724330370707,baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,189585,28.135649727023743,peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,189585,36.92945787293445,spot_peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,189585,37.85116232537298,spot_baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,189585,33.217722641770955,baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,189585,0.3162687209216462,relative_legacy,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,189588,44.58728166215236,spot_peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,189588,0.4092000967853182,relative_legacy,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,189588,34.908941931102675,peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,189588,48.54268271702416,spot_baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,189588,42.47032909863546,baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,189869,19.66720245774061,spot_peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,189869,13.540824169833492,peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,189869,12.71297513274688,baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,189869,0.1047581659526476,relative_legacy,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,189869,13.750352374993504,spot_baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,190710,0.5817638173984565,relative_legacy,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,190710,60.75818105144201,baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,190710,64.15460290875237,spot_baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,190710,55.76935207497642,spot_peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,190710,49.39460480880397,peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,190772,-20.620782615382527,peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,190772,-51.45731728297583,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,190772,-27.037926995708663,spot_peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,190772,-34.002746637816166,baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,190772,-0.3294896377589681,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191046,26.303440583379377,spot_baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191046,9.688001335088613,peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191046,0.1053974167509654,relative_legacy,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191046,8.877361401879552,baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191046,28.65837808000233,spot_peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191471,-21.29570904304488,spot_peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191471,-21.598277684320312,peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191471,-0.3502264921200396,relative_legacy,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191471,-34.851860741353754,baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191471,-43.440282414577496,spot_baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191935,-3.808356088300312,peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191935,-0.0907454101865251,relative_legacy,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191935,-5.766548061279931,spot_peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191935,-21.75914350726266,spot_baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191935,-9.342828622669847,baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191975,0.0247403868088838,relative_legacy,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191975,5.421394796872111,peer,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191975,11.729590750364023,spot_peer,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191975,2.6682042652505698,spot_baseline,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,191975,1.986512939369474,baseline,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,192418,31.034012061215048,spot_baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,192418,32.046659771711404,spot_peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,192418,30.350787785853377,baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,192418,27.911841672663545,peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,192418,0.2895518730099896,relative_legacy,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,192472,-51.45731728297583,spot_baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,192472,-27.037926995708663,spot_peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,192472,-0.5171965861803154,relative_legacy,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,192472,-32.27715134504217,peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,192472,-50.323933378037445,baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,192924,19.66720245774061,spot_peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,192924,13.750352374993504,spot_baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,192924,8.186018475173036,baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,192924,10.003261269547256,peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,192924,0.0941447166560038,relative_legacy,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,193275,0.049295041937301,relative_legacy,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,193275,6.763871687536329,spot_baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,193275,14.663121087508246,spot_peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,193275,7.934667385529908,peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,193275,5.6398936830740665,baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,195286,-9.636735844100096,baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,195286,-6.275515630668136,peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,195286,-114.5920392357197,spot_peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,195286,-173.6965594166206,spot_baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,195286,-0.0837088894345795,relative_legacy,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,204737,0.0043871366223121,relative_legacy,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,204737,2.2832690640984605,peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,204737,9.81848387796036,spot_peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,204737,0.0,spot_baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,204737,0.0,baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,208405,37.85116232537298,spot_baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,208405,36.92945787293445,spot_peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,208405,0.3156107569456718,relative_legacy,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,208405,32.83677486642166,baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,208405,27.83529825304949,peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,216863,-73.69655941662059,spot_baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,216863,-70.8849393259339,baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,216863,-42.96683057785867,spot_peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,216863,-47.75824524969889,peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,216863,-0.7270569028463522,relative_legacy,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,218269,-72.36597675362411,baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,218269,-42.96683057785867,spot_peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,218269,-48.504347116485874,peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,218269,-0.7346970521193145,relative_legacy,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,218269,-73.69655941662059,spot_baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,218666,26.927514092472347,baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,218666,0.2501392490142579,relative_legacy,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,218666,24.89102620721757,peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,218666,11.458729957443673,spot_peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,218666,2.2900402110078826,spot_baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219459,-2.719763399068565,peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219459,-32.07957729321665,spot_peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219459,-58.49625007211565,spot_baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219459,-4.968117800572927,baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219459,-0.0360078222598725,relative_legacy,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219659,-51.45731728297583,spot_baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219659,-27.037926995708663,spot_peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219659,-1.6508181887215745,peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219659,-3.2778822966649748,baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219659,-0.018870781723389,relative_legacy,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219886,-5.560091645268209,peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219886,-0.1368778772896083,relative_legacy,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219886,-12.759062598809091,baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219886,-14.867271186638964,spot_baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219886,-0.8302301311998403,spot_peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219991,-51.45731728297583,spot_baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219991,-27.037926995708663,spot_peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219991,-26.24131601426829,baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219991,-0.2465263495412765,relative_legacy,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,219991,-15.276220676094011,peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,220077,-1.0687694066816986,spot_peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,220077,-6.1476683024989365,baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,220077,-15.200309344505014,spot_baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,220077,-1.6919053341043333,peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28959,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-22 12:32:18.040274+00,220077,-0.0582546170165655,relative_legacy,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29038 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,182315,-94.34164716336323,spot_baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,182315,-53.170522153124814,baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,182315,-4.001735727581646,peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,182315,-0.0902548490405878,relative_legacy,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,182315,2.695760288627332,spot_peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,185690,0.6567623792857071,peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,185690,17.48284746483024,spot_peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,185690,-3.134608315234673,baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,185690,0.0078284746698419,relative_legacy,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,185690,-73.69655941662059,spot_baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,185698,0.1255406858235945,relative_legacy,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,185698,10.9361508717503,peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,185698,6.595594180188196,spot_peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,185698,-12.589170417334,baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,185698,-88.8968687611256,spot_baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,187708,-22.107794882473275,peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,187708,-46.82955720124943,spot_peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,187708,-163.48674065474708,spot_baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,187708,-66.59704482029218,baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,187708,-0.3338418419403667,relative_legacy,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,188107,-0.259710961006487,peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,188107,5.31193378033726,spot_peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,188107,-90.68905956085187,spot_baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,188107,-0.0207317557846495,relative_legacy,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,188107,-21.997770717625404,baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,188389,-1.7400010512407338,peer,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,188389,-200.0,spot_baseline,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,188389,-72.98225539507277,spot_peer,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,188389,-4.716929194551927,baseline,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,188389,-0.0251797110181321,relative_legacy,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,188909,33.34237337251918,spot_baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,188909,0.2820861747500179,relative_legacy,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,188909,94.1497064201992,spot_peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,188909,21.55535756913739,peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,188909,8.148793036279889,baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,189585,-51.45731728297583,spot_baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,189585,-45.15013543014249,baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,189585,33.41175104698025,spot_peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,189585,18.1108838950206,peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,189585,0.1855789636896284,relative_legacy,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,189588,33.41175104698025,spot_peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,189588,0.1852626241187929,relative_legacy,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,189588,18.05118673491038,peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,189588,-45.00506614568015,baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,189869,-100.0,spot_baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,189869,-1.3570467372117518,spot_peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,189869,-92.45690529048444,baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,189869,-14.00516979076297,peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,189869,-0.2404770265918443,relative_legacy,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,190710,-0.4109902776607579,relative_legacy,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,190710,-27.43537382926357,peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,190710,-118.44245711374276,spot_baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,190710,-112.25451583506415,baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,190710,-14.566495126566528,spot_peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,190772,0.0477454239157,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,190772,6.517557635535871,peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,190772,-45.63058237760841,baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,190772,-68.96598793878492,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,190772,20.8711291565393,spot_peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191046,13.979687125009828,spot_peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191046,0.7980293941451722,peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191046,-38.86576688698922,baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191046,-78.58751946471523,spot_baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191046,-0.0197376773794646,relative_legacy,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191471,-0.2110722086951487,relative_legacy,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191471,-80.29411355323262,baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191471,-11.477711539560586,peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191471,-1.3570467372117518,spot_peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191471,-100.0,spot_baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191935,-25.819745632240085,baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191935,-59.94620704162715,spot_baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191935,0.0900421847939617,relative_legacy,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191935,8.603105856554993,peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191935,27.33156604461045,spot_peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191975,-18.392388985949857,baseline,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191975,47.20999495151427,spot_peer,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191975,21.606091338498285,peer,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191975,-32.19280948873623,spot_baseline,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,191975,0.2623270730150384,relative_legacy,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,192418,-58.63935959205045,baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,192418,0.1406443689530559,relative_legacy,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,192418,13.449873576251058,peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,192418,-59.94620704162715,spot_baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,192418,27.33156604461045,spot_peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,192472,-57.97679421137954,baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,192472,-35.30246699098878,spot_peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,192472,0.148216746439049,relative_legacy,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,192472,-147.39311883324118,spot_baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,192472,14.21898441531152,peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,192924,4.364386775353391,peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,192924,-43.90747342900679,baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,192924,17.48284746483024,spot_peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,192924,0.0240504854504457,relative_legacy,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,192924,-73.69655941662059,spot_baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,193275,-62.14883767462704,spot_baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,193275,-53.70013699105045,baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,193275,0.0898218703478865,relative_legacy,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,193275,11.001670188080055,peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,193275,25.75392725776231,spot_peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,195286,-0.0457305472364442,relative_legacy,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,195286,-54.14236119303078,spot_peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,195286,-173.6965594166206,spot_baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,195286,-9.801229855557978,baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,195286,-3.1888108152580976,peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,204737,-220.45094547788773,spot_peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,204737,-405.8893689053567,spot_baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,204737,-134.3844939575981,baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,204737,-75.35294822484184,peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,204737,-1.0716533854921362,relative_legacy,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,208405,-12.968189185004375,peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,208405,-0.2358082110536492,relative_legacy,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,208405,-1.3570467372117518,spot_peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,208405,-86.75437307679323,baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,208405,-100.0,spot_baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,216863,-173.6965594166206,spot_baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,216863,-167.1099074766444,baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,216863,-54.14236119303078,spot_peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,216863,-67.55383369917654,peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,216863,-0.950957600178364,relative_legacy,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,218269,47.20999495151427,spot_peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,218269,-31.621784104558685,baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,218269,-32.19280948873623,spot_baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,218269,0.41234039833454,relative_legacy,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,218269,33.746997977309334,peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,218666,0.3896154047377039,relative_legacy,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,218666,-27.928375747886857,spot_baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,218666,32.38395018217721,peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,218666,-33.2863076357789,baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,218666,50.26440451647386,spot_peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219459,0.0127761436390626,relative_legacy,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219459,-73.69655941662059,spot_baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219459,17.48284746483024,spot_peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219459,-6.259352021791071,baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219459,1.1701001732392178,peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219659,-24.41521370634678,spot_peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219659,-1.7560577575987373,peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219659,-0.0257524494943858,relative_legacy,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219659,-8.555383510370673,baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219659,-132.19280948873626,spot_baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219886,0.5569422528906857,relative_legacy,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219886,45.26800772464687,peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219886,-7.777169925925768,spot_baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219886,64.69774773352852,spot_peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219886,-6.674439082921043,baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219991,-67.88826117006447,baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219991,-132.19280948873626,spot_baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219991,-0.2719432123443919,relative_legacy,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219991,-17.191840547899613,peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,219991,-24.41521370634678,spot_peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,220077,-40.46556528933622,baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,220077,-3.3999186755390323,peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,220077,-100.0,spot_baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,220077,-1.3570467372117518,spot_peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28960,Will the Botswana Democratic Party win the 2024 general election?,2024-10-22 12:32:18.047163+00,220077,-0.074647933080219,relative_legacy,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29039 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,182315,-8.926733809708741,spot_baseline,RyansAGI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,182315,-7.451088294843503,baseline,RyansAGI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,182315,33.64052697330866,spot_peer,RyansAGI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,182315,0.1537749099178287,relative_legacy,RyansAGI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,182315,25.399279740295142,peer,RyansAGI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,185690,-0.0103746029492444,peer,annabot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,185690,0.182529006939288,spot_peer,annabot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,185690,0.0024605404963094,relative_legacy,annabot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,185690,-2.37953638426477,baseline,annabot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,185690,-55.63933485243852,spot_baseline,annabot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,185698,26.303440583379377,spot_baseline,RonanMcGovern,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,185698,0.2812971400693591,relative_legacy,RonanMcGovern,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,185698,14.853878135465518,baseline,RonanMcGovern,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,185698,58.87421289288634,spot_peer,RonanMcGovern,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,185698,22.106433496289103,peer,RonanMcGovern,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,185699,-44.48996950195206,baseline,MWG,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,185699,-11.696752583372644,peer,MWG,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,185699,-0.2374427637093832,relative_legacy,MWG,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,185699,-40.206989557385256,spot_peer,MWG,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,185699,-112.02942337177116,spot_baseline,MWG,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,187708,-62.59342817774623,spot_baseline,twsummerbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,187708,-26.014364354116427,baseline,twsummerbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,187708,-4.798354847574744,spot_peer,twsummerbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,187708,-3.8326490851312944,peer,twsummerbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,187708,-0.0931871257744283,relative_legacy,twsummerbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,188107,-8.066715742996113,baseline,Cassie,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,188107,16.976151721709385,spot_peer,Cassie,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,188107,0.0331604468366591,relative_legacy,Cassie,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,188107,3.6124882889018433,peer,Cassie,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,188107,-32.19280948873621,spot_baseline,Cassie,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,188909,-39.592867633113926,spot_baseline,silicoqr,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,188909,0.0149761701903927,relative_legacy,silicoqr,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,188909,11.675844634995808,spot_peer,silicoqr,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,188909,2.254675618414614,peer,silicoqr,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,188909,-9.729216233342084,baseline,silicoqr,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,189585,-52.334212751630666,peer,mf-bot-1,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,189585,-54.64905693615165,spot_peer,mf-bot-1,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,189585,-0.9291197393052958,relative_legacy,mf-bot-1,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,189585,-116.03009629538693,baseline,mf-bot-1,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,189585,-132.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,189588,13.750352374993504,spot_baseline,mf-bot-3,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,189588,12.040496824766205,baseline,mf-bot-3,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,189588,0.3512598866391471,relative_legacy,mf-bot-3,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,189588,49.88303727062461,spot_peer,mf-bot-3,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,189588,41.1236171786984,peer,mf-bot-3,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,189869,0.685654684655491,relative_legacy,VeritasAI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,189869,65.92769838845506,peer,VeritasAI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,189869,74.80311647503636,spot_peer,VeritasAI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,189869,44.88171526120072,baseline,VeritasAI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,190710,-12.029423371771175,spot_baseline,Bot_Pepa,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,190710,-11.414101392580186,baseline,Bot_Pepa,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,190710,0.1256155879091681,relative_legacy,Bot_Pepa,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,190710,25.08130663806344,peer,Bot_Pepa,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,190710,31.41821910047576,spot_peer,Bot_Pepa,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,190772,35.1090500683245,peer,Jay_Bailey_Bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,190772,0.3703951729539798,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,190772,57.13747733352693,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,190772,15.82083888764553,baseline,Jay_Bailey_Bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,190772,23.87868595871165,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191046,-32.19280948873623,spot_baseline,archipelago,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191046,16.976151721709364,spot_peer,archipelago,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191046,0.033160446836659,relative_legacy,archipelago,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191046,5.2925582280586605,peer,archipelago,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191046,-15.441332087902444,baseline,archipelago,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191471,29.533222903453773,peer,HSeldon,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191471,0.224799204263042,relative_legacy,HSeldon,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191471,40.03431869084436,spot_peer,HSeldon,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191471,0.0,baseline,HSeldon,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191471,0.0,spot_baseline,HSeldon,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191935,-364.38561897747246,spot_baseline,pgodzinai,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191935,-318.232054569608,baseline,pgodzinai,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191935,-200.003564660916,peer,pgodzinai,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191935,-220.9576412210087,spot_peer,pgodzinai,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191935,-2.951496213751791,relative_legacy,pgodzinai,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191975,0.0934456377137498,relative_legacy,jkraybill_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191975,26.19670220693009,spot_peer,jkraybill_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191975,-11.874114636377463,baseline,jkraybill_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191975,13.223841186675452,peer,jkraybill_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,191975,-19.319478076515946,spot_baseline,jkraybill_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,192418,-25.15387669959645,spot_baseline,InstitutPelFutur,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,192418,-24.61324456133277,baseline,InstitutPelFutur,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,192418,16.143396944303937,peer,InstitutPelFutur,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,192418,0.0026178473050479,relative_legacy,InstitutPelFutur,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,192418,22.01780201921732,spot_peer,InstitutPelFutur,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,192472,-32.75231604296888,peer,bestworldbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,192472,-0.6516062839747875,relative_legacy,bestworldbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,192472,40.03431869084436,spot_peer,bestworldbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,192472,-90.16204845381004,baseline,bestworldbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,192472,0.0,spot_baseline,bestworldbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,192924,-9.063410912261032,baseline,acm_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,192924,-15.200309344504996,spot_baseline,acm_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,192924,29.14706540620231,spot_peer,acm_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,192924,0.1199142701023007,relative_legacy,acm_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,192924,14.595395044038549,peer,acm_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,193275,-49.116511020255246,spot_peer,histerio,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,193275,-24.07988171116941,baseline,histerio,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,193275,-0.0099201832369874,relative_legacy,histerio,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,193275,15.062114163927056,peer,histerio,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,193275,-124.46850959549018,spot_baseline,histerio,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,195286,-132.19280948873623,spot_baseline,Unwrapped80T,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,195286,-0.056999409726951,relative_legacy,Unwrapped80T,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,195286,-54.64905693615165,spot_peer,Unwrapped80T,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,195286,-9.802160946717011,baseline,Unwrapped80T,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,195286,-4.501782945227103,peer,Unwrapped80T,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,204737,-0.6329827443441883,relative_legacy,SynapseSeer,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,204737,-126.27426559401268,spot_peer,SynapseSeer,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,204737,-43.36741476215033,peer,SynapseSeer,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,204737,-232.19280948873623,spot_baseline,SynapseSeer,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,204737,-77.33682954103664,baseline,SynapseSeer,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,208405,32.71700465514892,baseline,mf-bot-4,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,208405,37.85116232537298,spot_baseline,mf-bot-4,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,208405,55.95616815503194,peer,mf-bot-4,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,208405,67.14529268581845,spot_peer,mf-bot-4,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,208405,0.5580296631868452,relative_legacy,mf-bot-4,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,216863,43.611077724553446,peer,tombot61,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,216863,49.88303727062461,spot_peer,tombot61,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,216863,0.3756414261205315,relative_legacy,tombot61,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,216863,13.238383712700312,baseline,tombot61,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,216863,13.750352374993504,spot_baseline,tombot61,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,218269,13.750352374993504,spot_baseline,tombot37,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,218269,13.514097695405432,baseline,tombot37,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,218269,44.7192746250376,peer,tombot37,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,218269,49.88303727062461,spot_peer,tombot37,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,218269,0.3851022083065844,relative_legacy,tombot37,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,218666,-1.2911447676693424,relative_legacy,GreeneiBot2,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,218666,-78.54541212670348,peer,GreeneiBot2,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,218666,-90.03972219398518,spot_peer,GreeneiBot2,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,218666,-181.6037165157405,spot_baseline,GreeneiBot2,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,218666,-153.7958644635511,baseline,GreeneiBot2,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219459,-100.0,spot_baseline,karamazov,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219459,-31.59088996701666,spot_peer,karamazov,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219459,-2.7329930597040493,peer,karamazov,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219459,-8.49378472097494,baseline,karamazov,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219459,-0.0335338992063928,relative_legacy,karamazov,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219659,-0.838229344281432,peer,lostandfound,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219659,-0.005585162843461,relative_legacy,lostandfound,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219659,-12.75099576497468,spot_peer,lostandfound,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219659,-73.69655941662063,spot_baseline,lostandfound,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219659,-4.842905652017566,baseline,lostandfound,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219886,-129.7892159431853,spot_baseline,SaraBase,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219886,-111.38786688664136,baseline,SaraBase,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219886,-49.5072273371992,peer,SaraBase,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219886,-52.92747804386392,spot_peer,SaraBase,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219886,-0.8827626415375351,relative_legacy,SaraBase,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219991,-26.625859989332938,baseline,HunchexBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219991,-0.06769248205173,relative_legacy,HunchexBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219991,-0.8560812369274999,peer,HunchexBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219991,3.1779078171753468,spot_peer,HunchexBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,219991,-51.45731728297583,spot_baseline,HunchexBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,220077,26.303440583379377,spot_baseline,mmBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,220077,10.64861179267838,baseline,mmBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,220077,22.227412146639,peer,mmBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,220077,0.2699750401104356,relative_legacy,mmBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28985,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be less than -2.0 percentage points?,2024-10-22 12:57:36.113796+00,220077,58.87421289288634,spot_peer,mmBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29064 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,182315,-12.696346519629598,baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,182315,-13.219395133322909,peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,182315,-14.478602261140216,spot_peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,182315,-0.2270772401247361,relative_legacy,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,182315,-15.200309344505014,spot_baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,185690,0.0,spot_baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,185690,0.0,baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,185690,0.0,relative_legacy,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,185690,-0.1472009865290783,peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,185690,-3.6132990839268593,spot_peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,185698,0.0535324590884834,relative_legacy,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,185698,11.8040036456813,baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,185698,7.0620819586109365,peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,185698,31.085400317635717,spot_peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,185698,48.54268271702416,spot_baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,185699,83.18772411916731,spot_baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,185699,47.52817616587167,baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,185699,55.849954109922486,spot_peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,185699,0.4031298745823617,relative_legacy,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,185699,31.706396958605502,peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,187708,0.1889407869297049,relative_legacy,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,187708,39.43042406020896,spot_peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,187708,25.360797999928604,baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,187708,16.424643397988568,peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,187708,60.21717907533793,spot_baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,188107,-41.50374992788443,spot_baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,188107,-33.28051280551679,spot_peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,188107,-0.2260159855416674,relative_legacy,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,188107,-16.303120310989762,baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,188107,-13.39925308704256,peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,188909,-14.133402797558936,peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,188909,-56.29219153479463,spot_peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,188909,-18.20242591988785,baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,188909,-0.2379126325581418,relative_legacy,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,188909,-73.69655941662059,spot_baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,189585,26.626975456366647,peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,189585,42.634008152426375,baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,189585,0.3113069553491834,relative_legacy,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,189585,31.085400317635717,spot_peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,189588,23.03507944337738,baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,189588,15.18861146044971,spot_peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,189588,12.401979584829975,peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,189588,0.1150718105938318,relative_legacy,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,189869,-7.400058144377692,spot_baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,189869,-8.902920067643016,spot_peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,189869,-0.1762102564906171,relative_legacy,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,189869,-8.922414160052325,peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,189869,-6.842053561013796,baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,190710,-16.44445178955317,peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,190710,-16.79611552088376,spot_peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,190710,-0.2783076775059935,relative_legacy,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,190710,-17.51653324973578,baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,190710,-18.44245711374277,spot_baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,190772,-5.889368905356857,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,190772,-3.911187589090453,baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,190772,-5.680711319257108,peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,190772,-0.108262312914872,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,190772,-7.82306726882818,spot_peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191046,-0.3992748449222326,relative_legacy,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191046,-56.29219153479463,spot_peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191046,-25.79825890118025,peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191046,-33.30288041992599,baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191046,-73.69655941662059,spot_baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191284,67.80719051126377,spot_baseline,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191284,41.644177263627725,peer,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191284,0.5190362848888486,relative_legacy,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191284,44.85582518203962,spot_peer,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191284,62.68507228710999,baseline,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191471,-0.1636754833385893,relative_legacy,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191471,-9.99420009235464,spot_peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191471,-9.0014456828879,peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191471,-7.183777929907992,baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191471,-8.926733809708741,spot_baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191935,87.97057662822883,spot_baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191935,51.38946997679717,peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191935,76.8284482602233,baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191935,0.6533482767807764,relative_legacy,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,191935,59.26877548947786,spot_peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,192418,-0.3459819510855034,relative_legacy,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,192418,-21.59349213323205,spot_peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,192418,-24.61949249348368,baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,192418,-21.555924618131456,peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,192418,-25.153876699596427,spot_baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,192472,0.0,spot_baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,192472,-8.052075433768287,baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,192472,-3.6132990839268593,spot_peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,192472,-9.401163531199314,peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,192472,-0.1800491962598505,relative_legacy,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,192924,-0.160133618042986,relative_legacy,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,192924,-14.478602261140216,spot_peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,192924,-9.073213090536107,baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,192924,-8.984707583033853,peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,192924,-15.200309344505014,spot_baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,193275,71.36958148433591,spot_baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,193275,47.40225085542168,spot_peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,193275,8.385343895388143,peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,193275,17.566000122367218,baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,193275,0.0615644198348982,relative_legacy,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,195286,0.4887312836142848,peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,195286,0.0044935322479009,relative_legacy,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,195286,-3.6132990839268593,spot_peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,195286,1.0171368357352533,baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,195286,0.0,spot_baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,204737,50.58909297299573,spot_baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,204737,10.685824981134004,peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,204737,17.00886975870522,baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,204737,0.1038866675727138,relative_legacy,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,204737,32.548190801181214,spot_peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,208405,50.944809709788125,baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,208405,38.20029018972758,spot_peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,208405,0.3950876677363427,relative_legacy,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,208405,32.632689217790606,peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,215725,-73.69655941662059,spot_baseline,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,215725,-0.782596916267803,relative_legacy,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,215725,-56.29219153479463,spot_peer,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,215725,-67.40554778018395,baseline,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,215725,-52.96459040583614,peer,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,216863,-26.18345549565913,peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,216863,-26.62497781320474,spot_peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,216863,-0.4089076854586626,relative_legacy,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,216863,-31.002506179942845,baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,216863,-32.19280948873623,spot_baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,218269,0.0,spot_baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,218269,-0.099597354672713,relative_legacy,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,218269,-3.4566709758850034,peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,218269,0.0,baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,218269,-3.6132990839268593,spot_peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,218666,0.3821714161359259,relative_legacy,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,218666,31.750760534166787,peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,218666,35.695106268544855,spot_peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,218666,48.24310212416049,baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,218666,54.99155536219554,spot_baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,218945,-53.53317329965558,spot_baseline,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,218945,-0.6148764660558154,relative_legacy,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,218945,-51.46168609501364,baseline,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,218945,-41.14334059353125,peer,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,218945,-41.87924122735642,spot_peer,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219459,23.44301568928315,spot_peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219459,1.936202685723976,peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219459,3.215127039160646,baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219459,0.0190173281676661,relative_legacy,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219459,37.85116232537298,spot_baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219659,-100.0,spot_baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219659,-0.0728470641719384,relative_legacy,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219659,-5.018351981806203,peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219659,-75.09410207917121,spot_peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219659,-6.664027403902124,baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219886,34.40219919824732,spot_peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219886,45.64319386118891,baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219886,0.3453794994204912,relative_legacy,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219886,28.858168335621464,peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219886,53.18280809562725,spot_baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219991,13.750352374993504,spot_baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219991,7.1808114713867885,baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219991,3.074206019699872,peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219991,-0.0003392689331614,relative_legacy,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,219991,6.215563208394148,spot_peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,220077,-37.88852144029101,baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,220077,-29.612912507499185,peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,220077,-0.4494184530195967,relative_legacy,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,220077,-40.39540267760864,spot_peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28986,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to -2.0 and less than or equal to -1.0 percentage points?,2024-10-22 12:57:36.121713+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29065 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,182315,23.878685958711674,spot_baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,182315,-0.690543365588901,peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,182315,0.1723435514574738,spot_peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,182315,-0.1057988742096786,relative_legacy,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,182315,19.96776082117012,baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,185690,-0.5134909459130981,peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,185690,-0.0029045912878993,relative_legacy,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,185690,-11.864847236569624,spot_peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,185690,0.3046333580236744,baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,185690,7.0389327891398015,spot_baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,185698,-39.592867633113926,spot_baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,185698,-14.050445533659278,peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,185698,-12.272303347444083,baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,185698,-0.2018266769681685,relative_legacy,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,185698,-45.197632629536336,spot_peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,185699,0.2389230786143673,relative_legacy,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,185699,39.03085957482311,spot_peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,185699,20.59059000778567,peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,185699,43.77684944144578,baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,185699,78.24085649273731,spot_baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,187708,64.89255594531211,spot_baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,187708,29.48938715730498,spot_peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,187708,0.1663951672453423,relative_legacy,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,187708,12.63894908329945,peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,187708,27.82056295153636,baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,188107,-0.0463656979345235,relative_legacy,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,188107,-2.866361567120018,peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,188107,-7.067470624221298,spot_peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,188107,5.510131108402276,baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,188107,13.750352374993504,spot_baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,188909,-8.926733809708741,spot_baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,188909,-2.215761092107699,baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,188909,-5.801996462838136,peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,188909,-0.0865170853857908,relative_legacy,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,188909,-23.27723392497009,spot_peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,189585,0.2691030519813552,relative_legacy,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,189585,27.156988413186006,peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,189585,59.54696065628845,baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,189585,31.57279134942417,spot_peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,189588,1.905577627834256,spot_peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,189588,-0.0950655293830463,relative_legacy,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,189588,23.02413399280289,baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,189588,0.7258949111852211,peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,189869,22.727598278895893,peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,189869,54.08613681462059,baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,189869,0.1971168627850727,relative_legacy,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,189869,24.917256357112148,spot_peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,190710,-2.914634565951651,spot_baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,190710,-2.770700266718229,baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,190710,-18.669939265664784,peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,190710,-18.979737108661507,spot_peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,190710,-0.3706934676799722,relative_legacy,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,190772,-12.263041455706864,baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,190772,-20.563973415213493,peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,190772,-0.3378581639599996,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,190772,-30.079149353499204,spot_peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,190772,-18.44245711374277,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191046,-15.200309344505014,spot_baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191046,-27.76163609375565,spot_peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191046,-13.47582150245465,peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191046,-7.680098394490484,baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191046,-0.2017838502024624,relative_legacy,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191284,8.843453104535028,peer,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191284,0.006210145593927,relative_legacy,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191284,10.15998185666772,spot_peer,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191284,34.99176836256815,baseline,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191284,37.85116232537298,spot_baseline,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191471,-43.440282414577496,spot_baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191471,-34.995783278586686,baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191471,-39.78587326493888,peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191471,-47.947795609884224,spot_peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191471,-0.6391884070616706,relative_legacy,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191935,17.3769872452211,peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191935,45.94403062982791,baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191935,20.707488172210823,spot_peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191935,0.1347873681397376,relative_legacy,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,191935,52.60688116675877,spot_baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,192418,26.303440583379377,spot_baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,192418,1.905577627834256,spot_peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,192418,2.316123354416188,peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,192418,-0.0891852738925208,relative_legacy,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,192418,25.75069250368059,baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,192472,-12.113927539633996,baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,192472,-0.4670148680314439,relative_legacy,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,192472,-25.401599418454488,peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,192472,-27.76163609375565,spot_peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,192472,-15.200309344505014,spot_baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,192924,0.0,spot_baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,192924,0.0,baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,192924,-16.89633291654231,spot_peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,192924,-0.1864093738970852,relative_legacy,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,192924,-10.493246313312213,peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,193275,-0.0122364968947129,relative_legacy,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,193275,31.9540541377786,baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,193275,6.888804353614665,peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,193275,35.49340452813726,spot_peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,193275,73.29203821082574,spot_baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,195286,0.0289233717184327,relative_legacy,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,195286,37.82470547424401,spot_peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,195286,1.8457531496475263,peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,195286,4.052474140519398,baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,204737,41.40165364174517,spot_peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,204737,14.03691040763713,peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,204737,0.1894198039890444,relative_legacy,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,204737,27.60095729816008,baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,204737,81.55754288625727,spot_baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,208405,50.9565802664904,baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,208405,21.048054132670934,peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,208405,0.185741111381667,relative_legacy,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,208405,24.917256357112148,spot_peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,215725,0.2804107341207636,relative_legacy,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,215725,28.58723885153045,peer,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,215725,31.57279134942417,spot_peer,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,215725,62.06687825623357,baseline,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,215725,67.80719051126377,spot_baseline,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,216863,48.54268271702416,spot_baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,216863,46.76076771461842,baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,216863,17.80236648502027,spot_peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,216863,17.488955910717106,peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,216863,0.1215326824787482,relative_legacy,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,218269,-27.51114826057814,peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,218269,-14.947790041790462,baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,218269,-27.76163609375565,spot_peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,218269,-0.4955712225014492,relative_legacy,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,218269,-15.200309344505014,spot_baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,218666,56.169272139830895,spot_baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,218666,23.25391384559289,spot_peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,218666,50.98510193497665,baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,218666,0.1624936472356531,relative_legacy,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,218666,20.52383742917984,peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,218945,-54.96104870592741,peer,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,218945,-55.162275059971854,spot_peer,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,218945,-0.870996426169756,relative_legacy,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,218945,-52.36848681186619,baseline,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,218945,-53.53317329965558,spot_baseline,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219459,48.54268271702416,spot_baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219459,4.123441105232462,baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219459,1.5107754182541435,peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219459,0.0216618646225255,relative_legacy,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219459,17.80236648502027,spot_peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219659,-3.4684869250292434,baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219659,-53.67843651022409,spot_peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219659,-0.0473900146711177,relative_legacy,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219659,-3.6062327974354655,peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219659,-51.45731728297583,spot_baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219886,53.16684113151503,spot_baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219886,45.63011666244137,baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219886,0.1392369722553076,relative_legacy,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219886,21.10775205147049,spot_peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219886,17.437316750047813,peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219991,0.0449891227703688,relative_legacy,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219991,5.174522030206691,peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219991,19.932349748040934,baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219991,10.15998185666772,spot_peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,219991,37.85116232537298,spot_baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,220077,-15.200309344505014,spot_baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,220077,-0.1570304038903613,relative_legacy,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,220077,-27.76163609375565,spot_peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,220077,-8.527032012931691,peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28987,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than -1.0 and less than 0 percentage points?,2024-10-22 12:57:36.128546+00,220077,2.1154597999506706,baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29066 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,182315,-0.2630254938605487,relative_legacy,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,182315,-7.470737084831177,baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,182315,-17.467501955350617,spot_peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,182315,-12.672243268524497,peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,182315,-8.926733809708741,spot_baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,185690,-19.26450779423959,spot_baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,185690,-24.843853754542465,spot_peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,185690,-0.0198522032734482,relative_legacy,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,185690,-0.8392805432557324,baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,185690,-1.082351197257848,peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,185698,2.48771051388742,peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,185698,0.0008344522002761,relative_legacy,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,185698,8.160841444188094,baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,185698,7.6704204503007825,spot_peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,185698,26.303440583379377,spot_baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,185699,81.55754288625727,spot_baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,185699,47.09609347666461,spot_peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,185699,55.29136662418193,baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,185699,33.272865146867886,peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,185699,0.3855975741310923,relative_legacy,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,187708,0.2640881178459384,relative_legacy,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,187708,37.720679160641,baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,187708,50.32046550465415,spot_peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,187708,22.45904628609666,peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,187708,86.07642026288279,spot_baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,188107,24.28565238961633,spot_baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,188107,2.808727649092962,peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,188107,10.089272196036577,baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,188107,-0.007347875841718,relative_legacy,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,188107,6.230660247018709,spot_peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,188389,-15.300239243809049,spot_peer,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,188389,-3.74146632269317,peer,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,188389,-1.4680026348465591,baseline,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,188389,-0.0794103582574149,relative_legacy,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,188389,-5.889368905356857,spot_baseline,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,188909,-32.19280948873623,spot_baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,188909,-0.1449933471770927,relative_legacy,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,188909,-34.068634796127895,spot_peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,188909,-8.433866900951326,peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,188909,-8.025482928785452,baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,189585,-28.250468892773156,baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,189585,-28.04499799052272,peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,189585,-0.4811487430334099,relative_legacy,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,189585,-34.068634796127895,spot_peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,189588,9.05489453784384,peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,189588,7.6704204503007825,spot_peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,189588,0.0320876849632432,relative_legacy,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,189588,23.03055263893942,baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,189869,54.08701224289789,baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,189869,30.641080144410605,spot_peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,189869,31.458321785087,peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,189869,0.3278678428268924,relative_legacy,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,190710,2.856915219677092,spot_baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,190710,-0.1865865677790041,relative_legacy,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,190710,-5.478435096139921,peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,190710,2.7187058774291257,baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,190710,-9.059469350940748,spot_peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,190772,-13.177665561174498,spot_peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,190772,-1.941685518163846,baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,190772,-0.1713237792025139,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,190772,-7.464623374320702,peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,190772,-2.914634565951651,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191046,-15.200309344505014,spot_baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191046,-0.18511215703615,relative_legacy,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191046,-9.747076248215492,peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191046,-21.94391053738256,spot_peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191046,-7.020140783090401,baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191284,44.87543796644093,baseline,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191284,23.53887278545972,spot_peer,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191284,24.773910415880387,peer,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191284,0.2357569679558756,relative_legacy,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191471,-39.592867633113926,spot_baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191471,-30.072594497766797,peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191471,-31.92867147971729,baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191471,-39.348826865434575,spot_peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191471,-0.5010804615482963,relative_legacy,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191935,18.700600821407008,baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191935,4.180554836627713,spot_peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191935,5.931419801524297,peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191935,-0.01062753961905,relative_legacy,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191935,21.412480535284764,spot_baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191975,36.21425508467185,spot_baseline,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191975,0.1023575383877454,relative_legacy,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191975,28.00958892129582,baseline,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191975,14.742122200354382,spot_peer,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,191975,13.341916818588109,peer,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,192418,0.0,baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,192418,-11.097975102018076,spot_peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,192418,-6.828578555437828,peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,192418,-0.2060757372671686,relative_legacy,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,192418,0.0,spot_baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,192472,-8.926733809708741,spot_baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,192472,-17.467501955350617,spot_peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,192472,-71.65736052065286,baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,192472,-0.9177306147647228,relative_legacy,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,192472,-59.0756828081638,peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,192924,-13.01299407074562,baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,192924,-14.859759783465144,peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,192924,-26.623860809989917,spot_peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,192924,-0.2659779694589781,relative_legacy,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,192924,-21.75914350726266,spot_baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,193275,68.52674065168416,spot_baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,193275,-0.0154870842614249,relative_legacy,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,193275,37.798174828826376,spot_peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,193275,5.930449969703474,peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,193275,19.03377139591557,baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,195286,2.814735918376388,peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,195286,49.409475696729466,spot_peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,195286,4.928341819657199,baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,195286,0.0327726622191449,relative_legacy,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,204737,26.303440583379377,spot_baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,204737,0.0008344522002761,relative_legacy,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,204737,8.953390225764718,baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,204737,2.737380291051647,peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,204737,7.6704204503007825,spot_peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,208405,66.68782330636996,baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,208405,40.63955459117752,peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,208405,43.525521330852406,spot_peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,208405,0.4697129831934961,relative_legacy,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,215725,67.80719051126377,spot_baseline,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,215725,0.4104696862869904,relative_legacy,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,215725,62.132584990198914,baseline,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,215725,37.28475143798411,spot_peer,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,215725,37.26595499855272,peer,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,216863,7.6704204503007825,spot_peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,216863,0.0396640874615501,relative_legacy,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,216863,25.343771401484545,baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,216863,11.198681594128198,peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,216863,26.303440583379377,spot_baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,218269,-51.45731728297583,spot_baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,218269,-47.8145134486523,spot_peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,218269,-50.62262840555504,baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,218269,-0.7093514141097798,relative_legacy,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,218269,-43.63264388995599,peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,218666,49.98629580353616,baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,218666,29.470614456462787,peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,218666,0.2916123884622656,relative_legacy,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,218666,25.2886232939891,spot_peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,218666,50.99491463043107,spot_baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,218945,-51.45731728297583,spot_baseline,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,218945,-0.7095728289502047,relative_legacy,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,218945,-47.8145134486523,spot_peer,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,218945,-43.66254386859669,peer,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,218945,-50.132225937710885,baseline,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219459,3.658245296979599,peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219459,0.0426864380748179,relative_legacy,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219459,6.503070527341641,baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219459,43.525521330852406,spot_peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219459,76.55347463629771,spot_baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219659,-132.19280948873626,spot_baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219659,-0.1082691940940575,relative_legacy,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219659,-105.42202103023992,spot_peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219659,-7.205826738593364,peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219659,-9.030124650812008,baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219886,-2.325007656241193,spot_peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219886,-0.088247884453436,relative_legacy,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219886,10.55234369057412,baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219886,0.1550392434435953,peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219886,12.295096152819692,spot_baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219991,37.85116232537298,spot_baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219991,0.0712730532085069,relative_legacy,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219991,20.099561392731356,baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219991,15.910110946106006,spot_peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,219991,9.317414151011812,peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,220077,7.6704204503007825,spot_peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,220077,-0.1520910520040536,relative_legacy,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,220077,-6.774192925151266,peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,220077,-1.8957843953731623,baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28988,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than or equal to 0 percentage points and less than or equal to 1.0 percentage points?,2024-10-22 12:57:36.135843+00,220077,26.303440583379377,spot_baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29067 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,182315,42.22330006830476,spot_baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,182315,36.087513660003424,spot_peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,182315,31.92429898405056,peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,182315,0.4542868662320575,relative_legacy,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,182315,35.368020701062974,baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,185690,-0.983126868111954,peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,185690,-1.6978616895146406,baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,185690,-38.64683470820732,spot_baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,185690,-0.0169786168951464,relative_legacy,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,185690,-21.719108061583764,spot_peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,185698,5.905959720087613,spot_peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,185698,0.0907385182866926,relative_legacy,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,185698,0.0,spot_baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,185698,10.625516307680693,peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,185698,11.428156043555148,baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,185699,-4.77753758464388,baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,185699,2.562899010937187,peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,185699,24.707870264464187,spot_peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,185699,26.303440583379377,spot_baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,185699,0.039707782521016,relative_legacy,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,187708,-158.02517905976046,spot_peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,187708,-229.3358942690592,spot_baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,187708,-0.9978579964615096,relative_legacy,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,187708,-101.90317549488704,baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,187708,-68.98666802079553,peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,188107,8.103485698826793,peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,188107,5.826644461928152,baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,188107,15.734822012408635,spot_peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,188107,0.0696795056120224,relative_legacy,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,188107,13.750352374993504,spot_baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,188909,34.536732556785175,spot_peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,188909,0.0733463781656362,relative_legacy,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,188909,40.05379295837285,spot_baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,188909,9.027659190932054,peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,188909,10.11774962421468,baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,189585,0.7022817692874055,relative_legacy,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,189585,49.53862516616925,peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,189585,59.577076060764135,baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,189585,54.3750839860541,spot_peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,189588,24.707870264464187,spot_peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,189588,23.020492255070074,baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,189588,0.335916845896583,relative_legacy,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,189588,23.044685996321423,peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,189869,-0.357008951607803,relative_legacy,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,189869,-47.57943806485596,baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,189869,-27.92649279971579,peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,189869,-30.87614387359416,spot_peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,190710,-40.11739773846816,spot_peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,190710,-64.38561897747249,spot_baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,190710,-0.4901834272128922,relative_legacy,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,190710,-61.318244354946174,baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,190710,-37.87653669964959,peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,190772,-17.03129893945496,peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,190772,-0.2400930927055747,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,190772,-31.66926786190106,baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,190772,-27.9710221864036,spot_peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,190772,-47.39311883324123,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191046,-51.45731728297583,spot_baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191046,-0.2102036217983366,relative_legacy,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191046,-30.87614387359416,spot_peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191046,-12.60931962795262,peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191046,-23.59424632773224,baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191284,0.8264223681088515,relative_legacy,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191284,58.06366782662828,peer,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191284,70.76980050236779,baseline,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191284,76.55347463629771,spot_baseline,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191284,60.626998110873934,spot_peer,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191471,-36.94407043845918,spot_peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191471,-59.94620704162715,spot_baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191471,-0.3862923500958752,relative_legacy,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191471,-48.40609887475156,baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191471,-28.757239903784495,peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191935,63.858255243457634,baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191935,52.62461225632146,peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191935,73.11832415721999,spot_baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191935,58.1715249643342,spot_peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,191935,0.7439058707380669,relative_legacy,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,192418,-4.959343457125727,spot_peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,192418,-15.200309344505014,spot_baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,192418,-14.88699852083088,baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,192418,-0.0224948639605844,relative_legacy,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,192418,-4.195231498690919,peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,192472,0.0616395399791925,peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,192472,-8.810940754114162,baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,192472,-0.4749412883401526,spot_peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,192472,0.036934868366672,relative_legacy,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,192472,-8.926733809708741,spot_baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,192924,-17.10571900919026,spot_peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,192924,-32.19280948873623,spot_baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,192924,-19.26900040116996,baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,192924,-0.1266812639359896,relative_legacy,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,192924,-8.404335150288473,peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,193275,-7.266277627418628,baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,193275,1.1579196894310488,peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,193275,0.0437515799921705,relative_legacy,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,193275,48.54126648881343,spot_peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,193275,59.64581395589856,spot_baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,195286,0.053163664183279,relative_legacy,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,195286,72.09714173161582,spot_peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,195286,5.811594063498325,baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,195286,4.468488157523501,peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,204737,2.8352646024097594,peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,204737,0.0,baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,204737,-0.0146708634583836,relative_legacy,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,204737,5.905959720087613,spot_peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,204737,0.0,spot_baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,208405,-100.0,spot_baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,208405,-65.57484327515674,spot_peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,208405,-87.04367445029217,baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,208405,-0.7645382111415243,relative_legacy,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,208405,-56.66885845080777,peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,215725,-29.526693545560573,baseline,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,215725,-14.817869379635594,peer,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,215725,-0.1776470805269923,relative_legacy,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,215725,-17.10571900919026,spot_peer,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,215725,-32.19280948873623,spot_baseline,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,216863,-17.10571900919026,spot_peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,216863,-32.19280948873623,spot_baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,216863,-15.847611153315576,peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,216863,-0.1855461007268937,relative_legacy,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,216863,-31.029293595788246,baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,218269,66.7239619456767,baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,218269,55.63856634986678,peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,218269,0.7920157687447081,relative_legacy,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,218269,54.3750839860541,spot_peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,218269,67.80719051126377,spot_baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,218666,40.30959454266875,spot_peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,218666,48.12989415475651,spot_baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,218666,0.5321100080062205,relative_legacy,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,218666,40.59660607154326,baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,218666,36.20187783352608,peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,218945,-15.094793410962897,baseline,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,218945,-4.300551493988419,peer,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,218945,-15.200309344505014,spot_baseline,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,218945,-4.959343457125727,spot_peer,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,218945,-0.0245506313169274,relative_legacy,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219459,92.5999418556223,spot_baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219459,72.09714173161582,spot_peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219459,0.068692924048572,relative_legacy,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219459,6.055832055997257,peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219459,7.86677033546921,baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219659,-0.0751005696573519,relative_legacy,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219659,-4.596243002479311,peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219659,-6.9255211041481415,baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219659,-100.0,spot_baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219659,-65.57484327515674,spot_peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219886,-62.16659501406583,spot_baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219886,-0.4296189978375493,relative_legacy,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219886,-38.531221590768176,spot_peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219886,-53.35568827714863,baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219886,-32.266157069095335,peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219991,-4.016676850847349,baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219991,2.1132910410980625,peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219991,0.6163387363714624,spot_peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219991,-7.400058144377692,spot_baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,219991,0.0088123597394453,relative_legacy,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,220077,-30.87614387359416,spot_peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,220077,-0.2746360323615321,relative_legacy,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,220077,-33.43457104450265,baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28989,Will RCP's polling bias for Trump based on national polls in the month before the 2024 election be greater than 1.0 percentage points?,2024-10-22 12:57:36.142858+00,220077,-18.780789649932995,peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,0.4308,2024-10-23 14:30:00+00,29068 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,182315,18.572815096029288,spot_peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,182315,18.54482840294403,peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,182315,0.1698646918296665,relative_legacy,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,182315,78.91048295690791,baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,182315,94.11063109464314,spot_baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,185690,0.0,relative_legacy,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,185690,3.3796970279682266,baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,185690,6.045189436578723,spot_peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,185690,0.2668841469231332,peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,185690,76.55347463629771,spot_baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,185698,20.69538877866383,spot_peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,185698,0.0685909855626258,relative_legacy,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,185698,6.687128079114289,peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,185698,30.167551215236543,baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,185698,97.08536543404836,spot_baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,185699,70.67245837393385,baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,185699,92.5999418556223,spot_baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,185699,0.1426770725155369,relative_legacy,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,185699,17.49488716851357,spot_peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,185699,15.713941634050489,peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,187708,-7.666092953993222,spot_peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,187708,25.835298343453047,baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,187708,-2.8179803646362886,peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,187708,-0.0711678095638476,relative_legacy,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,187708,57.33745264459444,spot_baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,188107,-1.407784505114998,peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,188107,61.66713604484944,spot_baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,188107,-4.576717234695028,spot_peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,188107,-0.0501042455800812,relative_legacy,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,188107,27.142127861265944,baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,188389,24.600780205916365,baseline,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,188389,0.0411745534639292,relative_legacy,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,188389,4.444856649373979,peer,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,188389,15.525707913175816,spot_peer,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,188389,89.8401859992193,spot_baseline,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,188909,2.346306133895734,spot_peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,188909,0.7597092951573904,peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,188909,71.36958148433591,spot_baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,188909,-0.0083589090221642,relative_legacy,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,188909,18.105302762028774,baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,189585,-13.94145910881397,spot_peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,189585,-0.2216808614795055,relative_legacy,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,189585,-9.56772155803851,peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,189585,42.65264294491688,baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,189588,67.01420302044704,baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,189588,8.24017917268004,peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,189588,0.0244362289674023,relative_legacy,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,189588,6.045189436578723,spot_peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,189869,18.99688903104967,peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,189869,0.1728103154231291,relative_legacy,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,189869,17.49488716851357,spot_peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,189869,85.62296633346175,baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,190710,87.97057662822883,spot_baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,190710,0.1333121828954157,relative_legacy,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,190710,83.89088955222746,baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,190710,16.15916078023702,peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,190710,14.191678317623834,spot_peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,190772,45.422199314151285,baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,190772,67.80719051126377,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,190772,-0.0383788690519835,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,190772,-0.1955804562895621,spot_peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,190772,1.5131379575257728,peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191046,0.81291070458345,peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191046,31.66233773420791,baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191046,-0.0221526726698248,relative_legacy,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191046,-0.1955804562895621,spot_peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191284,70.76953736844933,baseline,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191284,8.2337698786333,peer,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191284,76.55347463629771,spot_baseline,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191284,0.0244359109733483,relative_legacy,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191284,6.045189436578723,spot_peer,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191471,61.88214065315486,baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191471,7.490978687967408,peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191471,6.045189436578723,spot_peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191471,76.55347463629771,spot_baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191471,0.020210118014144,relative_legacy,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191935,38.01030870222116,baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191935,87.97057662822883,spot_baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191935,0.0641004542361841,relative_legacy,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191935,6.748631882272545,peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,191935,14.191678317623834,spot_peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192418,-0.1888141671938102,relative_legacy,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192418,-7.340235861421529,peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192418,-9.621615083913593,spot_peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192418,53.48230002078839,baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192418,54.59683691052925,spot_baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192459,24.748188594892056,peer,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192459,99.85565831303312,spot_baseline,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192459,0.2506942247710536,relative_legacy,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192459,96.8052756282812,baseline,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192459,22.67208655642194,spot_peer,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192472,74.96358743219041,baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192472,67.80719051126377,spot_baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192472,0.0183041049034966,relative_legacy,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192472,-0.1955804562895621,spot_peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192472,7.783711206931255,peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192924,6.045189436578723,spot_peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192924,4.906452686892244,peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192924,0.0173224712099171,relative_legacy,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,192924,45.860541437112985,baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,193275,-0.0805498867431843,relative_legacy,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,193275,-2.013000260275531,spot_peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,193275,65.26012175965195,spot_baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,193275,59.99864247620798,baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,193275,0.6206930826115135,peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,195286,0.0048245458079305,relative_legacy,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,195286,11.92914380245579,spot_peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,195286,0.7006319584737518,peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,195286,4.961305780898084,baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,204737,21.740485841136284,spot_peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,204737,7.833396549352702,peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,204737,0.0833357832734118,relative_legacy,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,204737,33.96866477663943,baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,208405,59.07364351641017,baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,208405,2.723466414799307,peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,208405,-0.1955804562895621,spot_peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,208405,-0.0517406619047315,relative_legacy,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,215725,70.2859232944597,baseline,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,215725,0.0244362289674023,relative_legacy,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,215725,6.045189436578723,spot_peer,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,215725,8.23370460178206,peer,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,216863,76.55347463629771,spot_baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,216863,0.0244359109733483,relative_legacy,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,216863,6.045189436578723,spot_peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,216863,73.80327592468255,baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,216863,8.259741685942348,peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,218269,0.1838236624662786,relative_legacy,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,218269,91.14257791096888,baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,218269,92.5999418556223,spot_baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,218269,19.9157373682634,peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,218269,17.49488716851357,spot_peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,218666,-0.4089453378180105,peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,218666,-0.0944085118972862,relative_legacy,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,218666,-0.711577408713244,spot_peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,218666,62.80746676063685,baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,218666,67.08403358815619,spot_baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,218945,-11.840628057971209,peer,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,218945,-0.2502573326348342,relative_legacy,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,218945,47.03363675844863,baseline,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,218945,-13.94145910881397,spot_peer,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,218945,48.54268271702416,spot_baseline,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219459,0.0106264165475257,relative_legacy,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219459,7.429497493073398,baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219459,87.44691179161411,spot_baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219459,1.1921685794762389,peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219459,13.818025724181885,spot_peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219659,67.80719051126377,spot_baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219659,-0.0048656789696782,peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219659,-0.0055270547245074,relative_legacy,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219659,4.74742325326926,baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219659,-0.1955804562895621,spot_peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219886,-202.88408958242263,spot_peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219886,-216.2557248227158,spot_baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219886,-2.488749307112616,relative_legacy,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219886,-173.54337142581994,peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219886,-185.6085756472684,baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219991,0.0154163755075155,relative_legacy,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219991,6.045189436578723,spot_peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219991,76.55347463629771,spot_baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219991,4.357659316329159,peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,219991,41.84792809426479,baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,220077,-0.1955804562895621,spot_peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,220077,-0.0330890814105609,relative_legacy,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,220077,1.042974441531758,peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28990,"Will Spotify remove rapper Diddy's songs from Diddy's Spotify page before January 1, 2025?",2024-10-22 12:57:36.321273+00,220077,39.082491531706296,baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29069 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,182315,-93.4042300262529,spot_peer,RyansAGI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,182315,-77.80776681120096,peer,RyansAGI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,182315,-147.39311883324126,spot_baseline,RyansAGI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,182315,-1.2124815002045957,relative_legacy,RyansAGI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,182315,-123.685995048405,baseline,RyansAGI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,185690,0.0,spot_baseline,annabot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,185690,0.5214057271311667,peer,annabot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,185690,11.67989829132232,spot_peer,annabot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,185690,-0.0042172525326534,relative_legacy,annabot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,185690,0.0,baseline,annabot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,185698,0.0586912419557951,relative_legacy,RonanMcGovern,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,185698,8.221983149426713,baseline,RonanMcGovern,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,185698,31.034012061215048,spot_baseline,RonanMcGovern,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,185698,9.180339269195168,peer,RonanMcGovern,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,185698,33.80564019477956,spot_peer,RonanMcGovern,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,185699,-22.20008742459361,baseline,MWG,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,185699,-8.732198263129616,spot_peer,MWG,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,185699,-28.63041851566411,spot_baseline,MWG,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,185699,-0.2306447540540856,relative_legacy,MWG,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,185699,-5.954776237671031,peer,MWG,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,187708,-36.429886245485584,baseline,twsummerbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,187708,-79.58592832197745,spot_baseline,twsummerbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,187708,-21.24575984187339,peer,twsummerbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,187708,-0.4011683981160062,relative_legacy,twsummerbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,187708,-45.06099958954865,spot_peer,twsummerbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,188107,30.25627700204313,spot_baseline,Cassie,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,188107,13.502400762302328,baseline,Cassie,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,188107,33.25115290662085,spot_peer,Cassie,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,188107,0.0978200160751229,relative_legacy,Cassie,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,188107,14.39442847197119,peer,Cassie,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,188389,-0.071450237861795,relative_legacy,Panshul42,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,188389,3.660996883009098,spot_peer,Panshul42,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,188389,0.1194238174867329,peer,Panshul42,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,188389,-4.667660742722737,baseline,Panshul42,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,188389,-11.24747292584125,spot_baseline,Panshul42,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,188909,-27.988242592196094,spot_peer,silicoqr,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,188909,-14.173855052317226,baseline,silicoqr,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,188909,-0.1587736626851881,relative_legacy,silicoqr,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,188909,-7.365837585786915,peer,silicoqr,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,188909,-55.63933485243852,spot_baseline,silicoqr,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,189585,-28.32226856567751,baseline,mf-bot-1,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,189585,-8.321665487087188,peer,mf-bot-1,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,189585,-0.2406493482747733,relative_legacy,mf-bot-1,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,189585,-11.272009843853532,spot_peer,mf-bot-1,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,189588,-73.69655941662063,spot_baseline,mf-bot-3,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,189588,-34.587485477960655,peer,mf-bot-3,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,189588,-64.5964663211188,baseline,mf-bot-3,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,189588,-40.86216586746529,spot_peer,mf-bot-3,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,189588,-0.6050069445360082,relative_legacy,mf-bot-3,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,189869,-25.0066673709473,spot_peer,VeritasAI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,189869,-21.643209466293897,peer,VeritasAI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,189869,-0.4017200404423566,relative_legacy,VeritasAI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,189869,-47.58095555248001,baseline,VeritasAI,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,190710,-2.781843154307376,baseline,Bot_Pepa,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,190710,0.0509408738627366,relative_legacy,Bot_Pepa,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,190710,9.601905538663184,spot_peer,Bot_Pepa,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,190710,11.074712367515875,peer,Bot_Pepa,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,190710,-2.914634565951651,spot_baseline,Bot_Pepa,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,190772,-67.11136734596005,baseline,Jay_Bailey_Bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,190772,-100.0,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,190772,-59.61524028055776,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,190772,-40.33188869584456,peer,Jay_Bailey_Bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,190772,-0.7096157740863551,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191046,-11.272009843853532,spot_peer,archipelago,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191046,-32.19280948873623,spot_baseline,archipelago,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191046,-4.318214399605028,peer,archipelago,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191046,-12.83860329827026,baseline,archipelago,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191046,-0.1659230123567378,relative_legacy,archipelago,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191284,37.85116232537298,spot_baseline,000_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191284,34.991203385390456,baseline,000_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191284,38.66593692226426,spot_peer,000_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191284,0.423885035341782,relative_legacy,000_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191284,38.18124235470951,peer,000_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191471,37.85116232537298,spot_baseline,HSeldon,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191471,32.82447240762158,peer,HSeldon,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191471,30.623284678142408,baseline,HSeldon,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191471,0.30841947678351,relative_legacy,HSeldon,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191471,38.66593692226426,spot_peer,HSeldon,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191935,3.643526964577368,baseline,pgodzinai,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191935,17.673271698359827,spot_peer,pgodzinai,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191935,7.211131474152245,peer,pgodzinai,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191935,0.0026102537221441,relative_legacy,pgodzinai,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191935,8.406426478847456,spot_baseline,pgodzinai,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191975,59.72269037546685,spot_peer,jkraybill_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191975,67.38578961552555,spot_baseline,jkraybill_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191975,37.93523069299144,peer,jkraybill_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191975,0.3787868226946738,relative_legacy,jkraybill_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,191975,42.85867361582846,baseline,jkraybill_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192418,55.303915331291705,peer,InstitutPelFutur,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192418,0.645332191769732,relative_legacy,InstitutPelFutur,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192418,53.38488083959065,spot_peer,InstitutPelFutur,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192418,57.3120928030402,baseline,InstitutPelFutur,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192459,96.82805947993135,baseline,biak_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192459,83.7029142474582,peer,biak_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192459,99.85565831303312,spot_baseline,biak_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192459,1.0397959110899224,relative_legacy,biak_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192459,82.87212825746238,spot_peer,biak_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192472,71.36958148433588,spot_baseline,bestworldbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192472,51.94130947017952,baseline,bestworldbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192472,0.5898061863411536,relative_legacy,bestworldbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192472,62.562940308750456,spot_peer,bestworldbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192472,51.71469453288925,peer,bestworldbot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192924,0.096276010513044,relative_legacy,acm_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192924,15.76881139190824,baseline,acm_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192924,17.82668732121125,peer,acm_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192924,30.432972704414787,spot_peer,acm_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,192924,26.303440583379377,spot_baseline,acm_bot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,193275,-49.66119098639141,peer,histerio,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,193275,-0.7851089499925842,relative_legacy,histerio,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,193275,-92.68652953697844,spot_baseline,histerio,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,193275,-54.40109137953304,spot_peer,histerio,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,193275,-86.31607100731749,baseline,histerio,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,195286,0.0161242577359709,relative_legacy,Unwrapped80T,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,195286,38.66593692226426,spot_peer,Unwrapped80T,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,195286,2.295014699756091,peer,Unwrapped80T,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,195286,2.236759327380541,baseline,Unwrapped80T,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,195286,37.85116232537298,spot_baseline,Unwrapped80T,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,204737,0.0211480259312963,relative_legacy,SynapseSeer,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,204737,7.08812917103272,peer,SynapseSeer,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,204737,13.750352374993504,spot_baseline,SynapseSeer,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,204737,21.48323107119574,spot_peer,SynapseSeer,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,204737,4.769918316177142,baseline,SynapseSeer,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,208405,30.432972704414787,spot_peer,mf-bot-4,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,208405,28.62985299935021,peer,mf-bot-4,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,208405,22.941848878813783,baseline,mf-bot-4,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,208405,0.2683901458022402,relative_legacy,mf-bot-4,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,215725,-0.6060339751420624,relative_legacy,estr.ai,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,215725,-36.2824246584828,peer,estr.ai,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,215725,-40.86216586746529,spot_peer,estr.ai,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,215725,-73.69655941662063,spot_baseline,estr.ai,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,215725,-67.70569760316143,baseline,estr.ai,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,216863,-40.86216586746529,spot_peer,tombot61,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,216863,-38.497567690930026,peer,tombot61,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,216863,-71.06376336116342,baseline,tombot61,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,216863,-73.69655941662063,spot_baseline,tombot61,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,216863,-0.6366527002271393,relative_legacy,tombot61,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,218269,-111.44318970401623,peer,tombot37,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,218269,-173.6965594166206,spot_baseline,tombot37,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,218269,-1.6368769433900892,relative_legacy,tombot37,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,218269,-112.15730443934537,spot_peer,tombot37,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,218269,-171.01314339455283,baseline,tombot37,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,218666,-5.889368905356857,spot_baseline,GreeneiBot2,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,218666,-49.50015192852061,baseline,GreeneiBot2,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,218666,7.481064569238928,spot_peer,GreeneiBot2,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,218666,-0.422608735943378,relative_legacy,GreeneiBot2,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,218666,-23.14519040583376,peer,GreeneiBot2,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,218945,0.5420699762719456,relative_legacy,SeidrBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,218945,47.81431753523476,peer,SeidrBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,218945,47.29714743729631,baseline,SeidrBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,218945,46.28847120093278,spot_peer,SeidrBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,218945,48.54268271702416,spot_baseline,SeidrBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219459,-200.84315124431575,spot_peer,karamazov,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219459,-298.0891177052295,spot_baseline,karamazov,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219459,-0.2596473370301914,relative_legacy,karamazov,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219459,-16.99561333215026,peer,karamazov,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219459,-25.32670354302358,baseline,karamazov,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219659,5.13111845493491,peer,lostandfound,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219659,84.79969065549501,spot_baseline,lostandfound,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219659,72.13795525268313,spot_peer,lostandfound,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219659,5.996115042687605,baseline,lostandfound,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219659,0.0527413565253867,relative_legacy,lostandfound,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219886,-0.1712836094152214,relative_legacy,SaraBase,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219886,-23.51443287452956,spot_baseline,SaraBase,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219886,-5.084749210965248,spot_peer,SaraBase,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219886,-2.7789652563480685,peer,SaraBase,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219886,-20.182358750278777,baseline,SaraBase,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219991,48.54268271702416,spot_baseline,HunchexBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219991,25.038962980089597,peer,HunchexBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219991,26.727800102522476,baseline,HunchexBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219991,0.2059827505367359,relative_legacy,HunchexBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,219991,46.28847120093278,spot_peer,HunchexBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,220077,24.39275218145296,peer,mmBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,220077,38.66593692226426,spot_peer,mmBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,220077,37.85116232537298,spot_baseline,mmBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,220077,25.34140972951339,baseline,mmBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28991,"Will Spirit Airlines file for bankruptcy before January 1, 2025?",2024-10-22 12:57:36.325573+00,220077,0.1927872885707936,relative_legacy,mmBot,True,yes,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29070 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,182315,-1.2633093008222391,relative_legacy,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,182315,-89.74873168865851,spot_peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,182315,-183.4673204803308,baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,182315,-82.85830017553968,peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,182315,-218.44245711374276,spot_baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,185690,-100.0,spot_baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,185690,-5.236027799117142,spot_peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,185690,-4.458600937492318,baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,185690,-0.2361843937047148,peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,185690,-0.0010609904654385,relative_legacy,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,185698,107.85641368142356,spot_peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,185698,18.19990311819545,baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,185698,0.4186520821654678,relative_legacy,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,185698,32.72258241470048,peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,185698,58.496250072115615,spot_baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,185699,2.856915219677092,spot_baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,185699,0.5688895101344411,relative_legacy,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,185699,2.260262552900901,baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,185699,48.7292893802243,peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,185699,68.1558641860722,spot_peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,187708,42.76907857400796,peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,187708,95.16395023419628,spot_peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,187708,0.5494530001845243,relative_legacy,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,187708,19.10369773229444,baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,187708,40.70807754505008,spot_baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,188107,-151.4573172829758,spot_baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,188107,-68.27099049083725,baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,188107,-0.3379458679047143,relative_legacy,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,188107,-20.92741609403169,peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,188107,-41.95256614575133,spot_peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,188389,-7.3157182582735585,spot_peer,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,188389,-27.188816547242915,baseline,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,188389,1.4013251998175718,peer,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,188389,-0.0223547829893981,relative_legacy,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,188389,-102.91463456595166,spot_baseline,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,188909,16.349873228287958,spot_baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,188909,77.78354662836284,spot_peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,188909,0.243331037906779,relative_legacy,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,188909,19.166834670586045,peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,188909,4.182152342140291,baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,189585,4.796837363621324,peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,189585,-0.0555316843552909,relative_legacy,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,189585,13.532367753201736,spot_peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,189585,-64.81611710085738,baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,189585,-73.69655941662059,spot_baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,189588,48.54268271702416,spot_baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,189588,1.015727447655054,relative_legacy,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,189588,82.34002853711644,peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,189588,42.52996309586183,baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,189588,100.75420632247264,spot_peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,189869,-47.58163932541174,baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,189869,0.1400106410485567,relative_legacy,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,189869,19.75667025621085,peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,189869,29.40082008836065,spot_peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,190710,-78.58751946471523,spot_baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,190710,-75.08245440261781,baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,190710,10.042502139528631,spot_peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,190710,-0.1114358969193597,relative_legacy,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,190710,1.905463572422502,peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,190772,-34.581138578889124,peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,190772,-104.6452503424655,baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,190772,-0.5596563061547565,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,190772,-44.93657729446848,spot_peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,190772,-155.6393348524385,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191046,-78.58751946471523,spot_baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191046,0.3245730628634642,peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191046,-0.0419939376323127,relative_legacy,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191046,-39.42457236332077,baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191046,10.042502139528631,spot_peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191284,84.88575398731373,spot_peer,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191284,71.93509713293015,peer,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191284,0.8588610025972218,relative_legacy,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191284,24.315912411544453,baseline,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191284,26.303440583379377,spot_baseline,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191471,-155.6393348524385,spot_baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191471,-44.93657729446848,spot_peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191471,-0.7045687294050279,relative_legacy,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191471,-42.89150980931058,peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191471,-126.04906335100848,baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191935,37.86650667157837,spot_peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191935,0.1566368534779134,relative_legacy,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191935,14.727800157364763,peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191935,-17.213877729860187,baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191935,-39.592867633113926,spot_baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191975,-47.25959776485927,spot_baseline,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191975,18.754108884376887,peer,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191975,-34.03966296872663,baseline,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191975,32.396035109147064,spot_peer,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,191975,0.169414691168846,relative_legacy,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,192418,-65.87790284328511,peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,192418,-170.2146356815873,baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,192418,-57.82101848091028,spot_peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,192418,-1.0317149631823102,relative_legacy,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,192472,-205.8893689053569,spot_baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,192472,-0.4069108906300014,relative_legacy,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,192472,-80.79167817502012,spot_peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,192472,-20.077954573442117,peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,192472,-108.71469502147824,baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,192924,-0.5925932182130929,relative_legacy,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,192924,-57.82101848091028,spot_peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,192924,-38.16130609924566,peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,192924,-104.21465453815668,baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,192924,-173.6965594166206,spot_baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,193275,29.40082008836065,spot_peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,193275,-51.45731728297583,spot_baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,193275,0.1376734711544146,relative_legacy,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,193275,-49.1023565123244,baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,193275,19.778739302439657,peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,195286,-5.236027799117142,spot_peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,195286,-0.3235256595016478,peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,195286,-0.00276557689899,relative_legacy,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,195286,-5.993831312490834,baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,195286,-100.0,spot_baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,204737,-564.3856189774723,spot_baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,204737,-1.7046108606313473,relative_legacy,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,204737,-197.02458576971935,baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,204737,-336.5908921237848,spot_peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,204737,-118.82742602504436,peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,208405,0.1389388441632501,relative_legacy,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,208405,-45.00109261805672,baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,208405,29.40082008836065,spot_peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,208405,18.83798429427371,peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,208405,-51.45731728297583,spot_baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,215725,-100.0,spot_baseline,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,215725,-91.9477529293961,baseline,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,215725,-12.720831616596602,peer,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,215725,-0.3063284186509436,relative_legacy,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,215725,-5.236027799117142,spot_peer,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,216863,13.532367753201736,spot_peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,216863,-71.08844050241612,baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,216863,-0.0647077030156228,relative_legacy,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,216863,5.497265536858753,peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,216863,-73.69655941662059,spot_baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,218269,-32.19280948873623,spot_baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,218269,0.3562059246435947,relative_legacy,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,218269,35.78819016695088,peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,218269,43.14669874088504,spot_peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,218269,-31.70214114901545,baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,218666,-7.579144192320232,baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,218666,0.5948441128072586,relative_legacy,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,218666,52.489059665579866,spot_peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,218666,53.08468376275445,peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,218666,-19.099722506091386,spot_baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,218945,-183.65012677171205,spot_baseline,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,218945,-72.64254029749758,peer,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,218945,-64.92322583986119,spot_peer,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,218945,-1.125730071376933,relative_legacy,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,218945,-179.2908628437041,baseline,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219459,-4.970253162916101,baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219459,24.37830318856616,spot_peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219459,0.0259155144537444,relative_legacy,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219459,2.0233644097833468,peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219459,-58.49625007211565,spot_baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219659,-173.6965594166206,spot_baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219659,-57.82101848091028,spot_peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219659,-4.15691082559851,peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219659,-0.0585670746376175,relative_legacy,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219659,-12.431000085069185,baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219886,20.841159765907065,peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219886,0.1685473991725365,relative_legacy,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219886,31.8422272401432,spot_peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219886,-41.229455741305,baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219886,-48.03574574918451,spot_baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219991,-100.0,spot_baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219991,-5.236027799117142,spot_peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219991,-55.40619924195387,baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219991,-0.1331683798599567,relative_legacy,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,219991,-5.743625577723708,peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,220077,-42.49962849078712,baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,220077,13.532367753201736,spot_peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,220077,4.845496124200386,peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,220077,0.0125689871112047,relative_legacy,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28992,"Will the USDA-posted recall of Pork Dynasty Inc.'s Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before December 31, 2024?",2024-10-22 12:57:36.329389+00,220077,-73.69655941662059,spot_baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29071 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,182315,22.109931407180905,baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,182315,26.303440583379377,spot_baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,182315,30.13904908312334,spot_peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,182315,21.810059930299527,peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,182315,0.1565421142380606,relative_legacy,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,185690,-18.20418135358089,spot_peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,185690,-0.020326785109788,relative_legacy,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,185690,-41.50374992788438,spot_baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,185690,-1.8610122965325544,baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,185690,-0.8162685397389003,peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,185698,37.85116232537298,spot_baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,185698,38.37201330097281,spot_peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,185698,11.783843571447186,baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,185698,12.36317120627245,peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,185698,0.1015391992038426,relative_legacy,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,185699,0.3529101116066473,relative_legacy,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,185699,48.54268271702416,spot_baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,185699,45.994547579641335,spot_peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,185699,38.177837843151536,peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,185699,44.15349539585824,baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,187708,0.1150679681114242,relative_legacy,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,187708,29.395897902869443,spot_baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,187708,14.066623743835358,baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,187708,14.868576420397988,peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,187708,32.34382081433002,spot_peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,188107,1.5340194475447662,peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,188107,4.289565031373007,spot_peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,188107,-0.0647696685314486,relative_legacy,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,188107,-4.493857255354085,baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,188107,-9.95356735509144,spot_baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,188389,18.3855240612025,baseline,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,188389,55.18851034717248,spot_baseline,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,188389,17.403121359957836,peer,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,188389,0.1668067616972122,relative_legacy,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,188389,50.73269959780386,spot_peer,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,188909,-0.1104680312606966,relative_legacy,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,188909,-16.84181517357876,spot_peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,188909,-10.166785925101731,baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,188909,-4.021687835896971,peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,188909,-39.592867633113926,spot_baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,189585,-40.59375490040477,peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,189585,-64.82094010440167,baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,189585,-0.7222831129163174,relative_legacy,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,189585,-41.15608948875672,spot_peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,189585,-73.69655941662059,spot_baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,189588,12.035357817932118,baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,189588,13.750352374993504,spot_baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,189588,14.81822515860792,peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,189588,21.189307449904287,spot_peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,189588,0.0477756428464626,relative_legacy,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,189869,59.72920510673509,spot_peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,189869,62.7010690542682,baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,189869,51.75240830897128,peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,189869,0.5311116620283763,relative_legacy,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,190710,48.89212349621581,spot_peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,190710,43.77827304286708,peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,190710,52.60688116675877,spot_baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,190710,0.4012048805479623,relative_legacy,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,190710,50.302818057379866,baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,190772,-0.0060228924971393,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,190772,8.09849876181619,peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,190772,3.8137856321264,baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,190772,5.658352836636751,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,190772,15.420105165796953,spot_peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191046,-16.0894038631496,baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191046,-0.1817897088029869,relative_legacy,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191046,-11.565933465144989,spot_peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191046,-32.19280948873623,spot_baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191046,-6.752638249740115,peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191284,38.8607110473808,peer,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191284,0.3529101116066473,relative_legacy,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191284,44.87453107062412,baseline,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191284,45.994547579641335,spot_peer,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191471,-7.23586500366958,baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191471,0.5721899091627327,peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191471,-0.1297844199932744,relative_legacy,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191471,-8.926733809708741,spot_baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191471,5.021647430456155,spot_peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191935,0.4386218363847904,relative_legacy,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191935,53.0909572182992,spot_peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191935,42.90669570641831,peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191935,51.03003564769725,baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191935,58.496250072115615,spot_baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191975,13.758402742933336,spot_peer,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191975,-0.0263828086446026,relative_legacy,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191975,7.610843206735117,peer,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191975,2.6310968884842385,baseline,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,191975,3.327615487429864,spot_baseline,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192418,-129.56866885109952,baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192418,-1.377167815142674,relative_legacy,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192418,-85.94491170225461,peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192418,-132.19280948873626,spot_baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192418,-82.8610720370251,spot_peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192459,-132.88765640913363,peer,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192459,-131.20430247372929,spot_peer,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192459,-200.0,spot_baseline,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192459,-2.028506285248864,relative_legacy,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192459,-194.0362056620695,baseline,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192472,-64.38561897747249,spot_baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192472,-52.27912146114055,baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192472,-0.6003169974224746,relative_legacy,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192472,-29.479949707779305,peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192472,-34.51784160032086,spot_peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192924,-1.3916402714559912,peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192924,-9.140441259930911,baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192924,0.5488930595115743,spot_peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192924,-0.1278858795811219,relative_legacy,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,192924,-15.200309344505014,spot_baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,193275,28.758395563246037,spot_peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,193275,0.1279729794257258,relative_legacy,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,193275,24.36690809668629,spot_baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,193275,23.701978958770688,peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,193275,22.895097514693767,baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,195286,0.037922870587359,relative_legacy,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,195286,4.065016849715574,baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,195286,3.5734014921594275,peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,195286,59.72920510673509,spot_peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,204737,-564.3856189774723,spot_baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,204737,-198.45385735073177,baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,204737,-137.43054339743267,peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,204737,-1.9999988338374477,relative_legacy,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,204737,-390.9935344597212,spot_peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,208405,-25.300590992238742,spot_peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,208405,-0.5217149939157119,relative_legacy,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,208405,-44.982414760310185,baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,208405,-51.45731728297583,spot_baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,208405,-26.320353512357624,peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,215725,59.72920510673509,spot_peer,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,215725,62.388451734331575,baseline,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,215725,67.80719051126377,spot_baseline,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,215725,0.5301601651252225,relative_legacy,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,215725,51.45244358942251,peer,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,216863,46.84071062996298,baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,216863,0.375320205763214,relative_legacy,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,216863,48.54268271702416,spot_baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,216863,45.994547579641335,spot_peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,216863,41.69042539255352,peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,218269,37.2819322790825,baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,218269,37.85116232537298,spot_baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,218269,0.2911038746474128,relative_legacy,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,218269,35.61173303581599,peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,218269,38.37201330097281,spot_peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,218666,0.0942390273776424,relative_legacy,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,218666,18.92030787753184,spot_peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,218666,17.59544755210549,baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,218666,21.077436437942936,peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,218666,10.56780778945372,spot_baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,218945,-1.058025548509733,relative_legacy,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,218945,-62.60826193045766,peer,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,218945,-100.0,spot_baseline,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,218945,-97.49639640578214,baseline,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,218945,-59.90916390184922,spot_peer,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219459,98.40424260970237,spot_baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219459,6.940879204965406,peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219459,8.361468563324186,baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219459,0.0812720552649378,relative_legacy,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219459,81.54341579922725,spot_peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219659,-41.15608948875672,spot_peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219659,-73.69655941662059,spot_baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219659,-0.0549035716564262,relative_legacy,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219659,-2.96991107217256,peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219659,-5.3278225926532015,baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219886,20.41155575151152,baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219886,28.340559608047045,spot_peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219886,20.72580593342093,peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219886,23.780842954562036,spot_baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219886,0.1353378689743016,relative_legacy,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219991,20.109534405787272,peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219991,38.37201330097281,spot_peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219991,37.85116232537298,spot_baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219991,21.087989995193738,baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,219991,0.1751080221450484,relative_legacy,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,220077,-32.19280948873623,spot_baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,220077,-0.2207936799493983,relative_legacy,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,220077,-18.569852505893063,baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,220077,-11.565933465144989,spot_peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28993,"Will North Korea test a nuclear weapon before January 1, 2025?",2024-10-22 12:57:36.33316+00,220077,-8.220692271597589,peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29072 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,182315,51.76307697567093,peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,182315,48.90467539458261,spot_peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,182315,0.3502560199853066,relative_legacy,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,182315,74.84612330040356,spot_baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,182315,62.97945204556488,baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,185690,-0.4454232840313841,peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,185690,-0.3355176471836678,baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,185690,-0.0263383430633177,relative_legacy,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,185690,-9.780760114520715,spot_peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,185690,-7.400058144377692,spot_baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,185698,20.87067383874932,peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,185698,84.79969065549501,spot_baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,185698,28.772146816141326,baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,185698,0.1351510894196219,relative_legacy,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,185698,56.0068827535335,spot_peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,185699,0.4441666216220892,relative_legacy,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,185699,51.326932480926125,spot_peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,185699,78.24085649273731,spot_baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,185699,60.04445953407272,peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,185699,72.53679333520674,baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,187708,34.008414490624304,baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,187708,69.24271980897078,spot_baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,187708,0.1222186477374507,relative_legacy,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,187708,44.90645725908486,spot_peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,187708,25.96071034430228,peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,188107,0.043529862969181,relative_legacy,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,188107,55.25410230287789,spot_baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,188107,19.517626606034977,peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,188107,25.48499570047852,baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,188107,34.9251049811498,spot_peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,188389,35.15879674205823,spot_peer,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,188389,79.56691494283824,baseline,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,188389,67.18591056009059,peer,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,188389,0.5114779781313245,relative_legacy,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,188389,55.58161550616397,spot_baseline,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,188909,1.1443646052879373,peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,188909,-0.1119858593963571,relative_legacy,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,188909,1.4598629342970313,baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,188909,5.658352836636751,spot_baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,188909,-0.4631416911997816,spot_peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,189585,42.69820517129515,baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,189585,37.494439636280894,peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,189585,0.1360701875498112,relative_legacy,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,189585,30.136279842263747,spot_peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,189588,23.27809072597709,peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,189588,-0.058956012959959,relative_legacy,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,189588,23.048623167233504,baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,189588,14.267827507104808,spot_peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,189869,54.09223937633308,baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,189869,46.66151554411268,peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,189869,0.2610596887409696,relative_legacy,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,189869,37.23848720121464,spot_peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,190710,-426.5344566521,spot_baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,190710,-408.2149552276067,baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,190710,-308.847346321758,spot_peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,190710,-287.11335941670205,peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,190710,-4.359523933741684,relative_legacy,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,190772,26.303440583379377,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,190772,16.90853907883484,peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,190772,17.75984466101562,baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,190772,14.267827507104808,spot_peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,190772,-0.0515071936349787,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191046,30.136279842263747,spot_peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191046,17.85733459474495,peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191046,0.0211636964848387,relative_legacy,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191046,48.54268271702416,spot_baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191046,23.18625325903421,baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191284,-59.219982062853184,peer,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191284,-75.85395427932605,spot_peer,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191284,-92.44311492586576,baseline,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191284,-100.0,spot_baseline,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191284,-1.2041290173325652,relative_legacy,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191471,-332.1928094887361,spot_baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191471,-269.5159478791513,baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191471,-187.92485783507988,peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191471,-241.53138644165983,spot_peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191471,-2.960072758254271,relative_legacy,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191935,47.671832198597166,spot_peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191935,73.11832415721999,spot_baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191935,52.98314081883401,peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191935,64.20725588828088,baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,191935,0.3518559934616787,relative_legacy,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192418,-50.441887433433706,spot_peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192418,-37.22141130333079,peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192418,-0.914278284969617,relative_legacy,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192418,-64.38561897747249,spot_baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192418,-63.11882794688061,baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192459,78.39723091870773,baseline,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192459,0.5022560300778286,relative_legacy,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192459,80.73549220576041,spot_baseline,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192459,65.37271075528518,peer,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192459,53.10693953637359,spot_peer,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192472,13.750352374993504,spot_baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192472,-1.596280917634072,relative_legacy,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192472,-87.34945368941091,peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192472,5.31077399346647,spot_peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192472,-131.55719734575092,baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192924,8.275898384743197,baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192924,5.31077399346647,spot_peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192924,9.07283939122976,peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192924,-0.1270602264548876,relative_legacy,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,192924,13.750352374993504,spot_baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,193275,53.76193483332868,baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,193275,0.2596260784952295,relative_legacy,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,193275,35.57810964960897,spot_peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,193275,47.4156457083211,peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,193275,56.169272139830895,spot_baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,195286,43.88215849478815,spot_peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,195286,0.010590637134251,relative_legacy,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,195286,4.103085892442578,baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,195286,2.649407531907571,peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,204737,48.54268271702416,spot_baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,204737,-0.0013436893832266,relative_legacy,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,204737,12.805801528624578,peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,204737,17.16348305146382,baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,204737,30.136279842263747,spot_peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,208405,-0.5690352099280848,relative_legacy,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,208405,-27.471227739323854,spot_peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,208405,-28.096348711613796,baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,208405,-13.634298980496409,peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,208405,-32.19280948873623,spot_baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,215725,-29.64288537125865,baseline,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,215725,-27.471227739323854,spot_peer,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,215725,-13.911792876285402,peer,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,215725,-0.5740827068190771,relative_legacy,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,215725,-32.19280948873623,spot_baseline,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,216863,0.3719094993944696,relative_legacy,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,216863,65.44421048617609,baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,216863,67.80719051126377,spot_baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,216863,55.91247260311882,peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,216863,43.88215849478815,spot_peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,218269,66.80994993127312,baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,218269,67.80719051126377,spot_baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,218269,43.88215849478815,spot_peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,218269,0.3843293303566824,relative_legacy,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,218269,57.25282362753232,peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,218666,-2.20536472792324,baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,218666,-0.304226507463636,relative_legacy,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,218666,31.59646285614162,spot_peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,218666,6.679859378317408,peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,218666,50.58909297299573,spot_baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,218945,-41.21710639184826,spot_peer,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,218945,-51.45731728297583,spot_baseline,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,218945,-0.7798763892550429,relative_legacy,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,218945,-27.344388864061425,peer,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,218945,-49.579986091172266,baseline,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219459,87.97057662822883,spot_baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219459,4.967067934549941,peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219459,7.475227764755946,baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219459,0.0321598408387535,relative_legacy,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219459,58.26941726870155,spot_peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219659,3.2465822762026115,peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219659,67.80719051126377,spot_baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219659,5.0214672475716045,baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219659,43.88215849478815,spot_peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219659,0.0129226582120616,relative_legacy,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219886,56.59029263496686,peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219886,0.4110275452426075,relative_legacy,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219886,69.50833088019887,baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219886,80.95296905917256,spot_baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219886,53.26211663555854,spot_peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219991,-23.26980176429976,baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219991,-41.50374992788438,spot_baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219991,-34.11489903289738,spot_peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219991,-0.4337298574171775,relative_legacy,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,219991,-14.108093356084373,peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,220077,-100.0,spot_baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,220077,-75.85395427932605,spot_peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,220077,-53.221707147659785,baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,220077,-0.7354942303675276,relative_legacy,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28994,"Will Travis Kelce and Taylor Swift officially announce their engagement before January 1, 2025?",2024-10-22 12:57:36.336803+00,220077,-35.362324564713425,peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29073 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,182315,0.2931082413212194,relative_legacy,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,182315,28.703175759629165,peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,182315,34.09904209171489,spot_peer,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,182315,18.903382439001717,spot_baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,182315,15.918680985352468,baseline,RyansAGI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,185690,-1.46926548253058,baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,185690,-32.19280948873623,spot_baseline,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,185690,-0.0029059485421474,relative_legacy,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,185690,-2.330058748119671,spot_peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,185690,-0.1274258048422581,peer,annabot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,185698,0.8316756406439254,peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,185698,-0.0174533280196644,relative_legacy,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,185698,-16.06471627521344,spot_peer,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,185698,-51.45731728297583,spot_baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,185698,-7.073760246818502,baseline,RonanMcGovern,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,185699,-15.200309344505014,spot_baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,185699,0.0059184795543833,relative_legacy,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,185699,7.591294483526962,peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,185699,-12.288898585552865,baseline,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,185699,9.7847677765369,spot_peer,MWG,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,187708,0.2363368525373024,relative_legacy,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,187708,20.51286236815538,peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,187708,15.46644645982144,baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,187708,42.74759129051343,spot_peer,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,187708,31.034012061215048,spot_baseline,twsummerbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,188107,3.828623687167212,peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,188107,-7.230933528704433,baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,188107,0.0059184795543833,relative_legacy,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,188107,-15.200309344505014,spot_baseline,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,188107,9.7847677765369,spot_peer,Cassie,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,188389,9.7847677765369,spot_peer,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,188389,-1.2051167948967978,baseline,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,188389,21.376871028711253,peer,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,188389,-15.200309344505014,spot_baseline,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,188389,0.1654893775187406,relative_legacy,Panshul42,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,188909,2.856915219677092,spot_baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,188909,22.658691051806088,spot_peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,188909,0.053044210291871,relative_legacy,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,188909,0.7458778232194652,baseline,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,188909,5.455275028613089,peer,silicoqr,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,189585,-15.200309344505014,spot_baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,189585,9.7847677765369,spot_peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,189585,-13.374301976303515,baseline,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,189585,8.570766154360834,peer,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,189585,0.005889684293083,relative_legacy,mf-bot-1,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,189588,8.530306743725502,peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,189588,-15.200309344505014,spot_baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,189588,9.7847677765369,spot_peer,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,189588,-13.31897673216052,baseline,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,189588,0.0059184795543833,relative_legacy,mf-bot-3,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,189869,35.002069363203155,baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,189869,0.4994802079604332,relative_legacy,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,189869,47.60788801799811,spot_peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,189869,44.76880539095487,peer,VeritasAI,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,190710,-13.167140358638964,spot_peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,190710,-45.39477291883614,baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,190710,-12.06752854414221,peer,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,190710,-47.39311883324123,spot_baseline,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,190710,-0.292700438413552,relative_legacy,Bot_Pepa,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,190772,-7.701493765922946,peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,190772,-0.1852474951850722,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,190772,-29.4062034341686,baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,190772,-43.440282414577496,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,190772,-10.3489601564329,spot_peer,Jay_Bailey_Bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191046,-16.06471627521344,spot_peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191046,-23.666452999347975,baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191046,-0.1608361861725632,relative_legacy,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191046,-8.233403060984868,peer,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191046,-51.45731728297583,spot_baseline,archipelago,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191284,-47.56854385148201,baseline,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191284,-14.871812474814975,peer,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191284,-16.06471627521344,spot_peer,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191284,-51.45731728297583,spot_baseline,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191284,-0.3262895828190675,relative_legacy,000_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191471,-48.667292675474044,baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191471,-22.116881991858023,spot_peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191471,-0.3573508258314398,relative_legacy,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191471,-18.505262823261106,peer,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191471,-59.94620704162715,spot_baseline,HSeldon,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191935,0.2834436740283044,relative_legacy,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191935,16.349873228287958,spot_baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191935,14.381420008867376,baseline,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191935,32.27851416149079,spot_peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191935,28.573986189678763,peer,pgodzinai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191975,55.62151456578261,spot_peer,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191975,0.3550574166416433,relative_legacy,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191975,26.659278318978654,baseline,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191975,49.09123662539714,spot_baseline,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,191975,29.472030193852653,peer,jkraybill_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192418,-88.8968687611256,spot_baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192418,-42.75729638225069,spot_peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192418,-87.17003712990422,baseline,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192418,-41.51542983474145,peer,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192418,-0.6985085571972196,relative_legacy,InstitutPelFutur,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192459,-178.412807511883,baseline,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192459,-110.31176298226936,spot_peer,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192459,-107.86306376738816,peer,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192459,-1.6151028435596224,relative_legacy,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192459,-183.65012677171205,spot_baseline,biak_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192472,-68.84323749652322,baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192472,-28.03821900802735,peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192472,-0.5098227245560254,relative_legacy,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192472,2.68835813787904,spot_peer,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192472,-25.153876699596427,spot_baseline,bestworldbot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192924,5.157193792980208,peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192924,-9.15717582534202,baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192924,9.7847677765369,spot_peer,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192924,-15.200309344505014,spot_baseline,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,192924,0.0059184795543833,relative_legacy,acm_bot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,193275,6.226273857122161,peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,193275,5.585934054453531,spot_peer,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,193275,-21.089678249861837,spot_baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,193275,-0.0404272323525851,relative_legacy,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,193275,-20.71658296723273,baseline,histerio,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,195286,-1.022777899075799,peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,195286,-0.0164589306562557,relative_legacy,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,195286,-51.45731728297583,spot_baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,195286,-16.06471627521344,spot_peer,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,195286,-3.1733722399004125,baseline,Unwrapped80T,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,204737,-0.2951703297175817,relative_legacy,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,204737,-50.67328918482391,spot_peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,204737,-35.50588533337469,baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,204737,-18.667804222293064,peer,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,204737,-100.0,spot_baseline,SynapseSeer,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,208405,-0.5050586584103023,relative_legacy,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,208405,-28.3182255079943,peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,208405,-31.920214771731416,spot_peer,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,208405,-73.69655941662059,spot_baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,208405,-64.3784485496139,baseline,mf-bot-4,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,215725,0.3909067984508586,relative_legacy,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,215725,39.37492380014865,spot_peer,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,215725,24.24163710768436,baseline,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,215725,26.303440583379377,spot_baseline,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,215725,36.894353067095786,peer,estr.ai,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,216863,-2.330058748119671,spot_peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,216863,-0.1456001028961432,relative_legacy,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,216863,-1.372934728015449,peer,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,216863,-32.19280948873623,spot_baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,216863,-31.07722480587336,baseline,tombot61,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,218269,-31.728585649234585,baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,218269,-32.19280948873623,spot_baseline,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,218269,-1.1637204975433384,peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,218269,-2.330058748119671,spot_peer,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,218269,-0.1432461423241763,relative_legacy,tombot37,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,218666,5.102400302446689,spot_baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,218666,21.515783944345728,baseline,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,218666,37.56694772940138,peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,218666,24.259612753177567,spot_peer,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,218666,0.3887595666454004,relative_legacy,GreeneiBot2,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,218945,-25.52160053057799,peer,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,218945,-65.06248097633917,baseline,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,218945,-66.65762662748085,spot_baseline,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,218945,-0.4782891499309082,relative_legacy,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,218945,-26.90179788573273,spot_peer,SeidrBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219459,23.99451687742094,spot_peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219459,0.4019997848047822,baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219459,4.730571477835651,spot_baseline,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219459,0.0228378489338047,relative_legacy,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219459,1.954046686740144,peer,karamazov,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219659,-7.505293603020685,baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219659,-0.0577438950844653,relative_legacy,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219659,-3.855307316394829,peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219659,-50.67328918482391,spot_peer,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219659,-100.0,spot_baseline,lostandfound,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219886,-20.705216423860065,baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219886,-24.086121439547416,spot_baseline,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219886,3.4496157301395347,spot_peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219886,2.7919376136663034,peer,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219886,-0.0704668625154786,relative_legacy,SaraBase,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219991,0.2990127979245452,relative_legacy,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219991,26.303440583379377,spot_baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219991,39.37492380014865,spot_peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219991,27.277161147495804,peer,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,219991,18.721599108769368,baseline,HunchexBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,220077,-7.237576777501262,peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,220077,-25.64473467466418,baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,220077,-2.330058748119671,spot_peer,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,220077,-0.1627996143972282,relative_legacy,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -28995,Will the Schwab Trading Activity Index be lower for October 2024 than it was for September 2024?,2024-10-22 12:57:36.469713+00,220077,-32.19280948873623,spot_baseline,mmBot,True,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,2024-10-23 14:30:00+00,29074 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,182315,46.27235950257022,spot_peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,182315,73.11832415721999,spot_baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,182315,0.0136788068688131,relative_legacy,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,182315,55.81504595210556,peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,182315,60.67513242208614,baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,185690,0.003299157226289,relative_legacy,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,185690,55.478108116620085,spot_peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,185690,85.9969548221026,spot_baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,185690,2.638515479203142,peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,185690,3.905738639162678,baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,185698,19.47062841938912,peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,185698,28.533792217290998,baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,185698,60.19797626985184,spot_peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,185698,0.0352482448937306,relative_legacy,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,185698,92.5999418556223,spot_baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,185699,24.04329366976264,peer,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,185699,92.5999418556223,spot_baseline,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,185699,60.19797626985184,spot_peer,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,185699,34.521859941601065,baseline,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,185699,0.043455143400899,relative_legacy,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,187708,22.964019393946185,peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,187708,78.74324645168679,spot_baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,187708,50.2930991265136,spot_peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,187708,32.60367335317435,baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,187708,-0.0082035173284915,relative_legacy,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,188107,15.682458009181394,peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,188107,50.73032275312355,spot_peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,188107,-0.0049225042583807,relative_legacy,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,188107,79.35491225325737,spot_baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,188107,23.288753314824994,baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,188389,24.99012088205613,baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,188389,0.0309554469703694,relative_legacy,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,188389,16.947453814133656,peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,188389,60.19797626985184,spot_peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,188389,92.5999418556223,spot_baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,188909,5.851297483828423,baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,188909,-0.0072214349997712,relative_legacy,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,188909,4.014564370167338,peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,188909,69.59938131099001,spot_baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,188909,43.756990899141314,spot_peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,189585,0.1185867496650828,relative_legacy,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,189585,65.36071776583154,peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,189585,74.35405248030986,baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,189585,54.62229407635465,spot_peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,189588,60.19797626985184,spot_peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,189588,1.523666713495034,baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,189588,1.0041630304903928,peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,189588,0.0021494201441399,relative_legacy,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,189869,-101.82096880351588,baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,189869,-1.5677217711831006,relative_legacy,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,189869,-64.3427461832634,peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,189869,-132.19280948873626,spot_baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,189869,-100.48568746619864,spot_peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,190710,9.312607286145576,spot_peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,190710,-0.4489230804372754,relative_legacy,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,190710,21.412480535284764,spot_baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,190710,20.177937087025214,baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,190710,25.251458985880856,peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,190772,-57.50974042939637,peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,190772,-86.6825525156904,baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,190772,-132.19280948873626,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,190772,-100.48568746619864,spot_peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,190772,-1.3443559899729711,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191026,8.54631250459752,peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191026,-0.0007013075098695,relative_legacy,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191026,12.65206501799469,baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191026,78.24085649273731,spot_baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191026,49.93398674968905,spot_peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191046,-0.0903337896708826,relative_legacy,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191046,60.40713236688608,spot_baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191046,37.18629754057396,spot_peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191046,33.45115343800511,baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191046,26.55722709391816,peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191471,18.903382439001717,spot_baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191471,-0.3413437605870476,relative_legacy,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191471,11.937772301506737,baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191471,13.356318631474856,peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191471,7.519083818984074,spot_peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191935,0.0185356157000963,relative_legacy,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191935,60.68053678032815,peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191935,51.12619655980001,spot_peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191935,68.66143857148357,baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,191935,79.90873060740036,spot_baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192418,60.19797626985184,spot_peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192418,69.16152776307253,peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192418,0.1775478481671838,relative_legacy,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192418,79.35724453648086,baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192459,-896.5784284662086,spot_baseline,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192459,-646.8746658914648,spot_peer,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192459,-7.786848790920973,relative_legacy,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192459,-517.1357514943741,peer,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192459,-721.2342163581127,baseline,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192472,-77.47400873692072,spot_peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192472,-96.64189869551748,baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192472,-62.23894610414654,peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192472,-100.0,spot_baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192472,-1.627026111292571,relative_legacy,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192924,54.62229407635465,spot_peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192924,39.96807560360701,peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192924,0.0509018594366402,relative_legacy,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,192924,50.354997035181526,baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,193275,43.62959743019205,spot_peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,193275,51.94467445243222,baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,193275,-0.0207198869756123,relative_legacy,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,193275,69.42116077678904,spot_baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,193275,47.02223738904048,peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,195286,-5.042127909500202,peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,195286,-73.69655941662059,spot_baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,195286,-6.802920235458066,baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,195286,-58.67209819254413,spot_peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,195286,-0.1402096902832215,relative_legacy,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,204737,29.691856145773244,peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,204737,64.45115636867564,spot_peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,204737,0.075974065524202,relative_legacy,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,204737,41.77576134395935,baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,208405,48.72783264910994,spot_peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,208405,-0.0001507315977478,relative_legacy,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,208405,0.3810158376468633,peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,208405,0.5978337803414108,baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,216863,-77.47400873692072,spot_peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,216863,-61.53438990659111,peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,216863,-100.0,spot_baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,216863,-96.0361679582684,baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,216863,-1.616861513970163,relative_legacy,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,218269,67.80719051126377,spot_baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,218269,66.57876749325125,baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,218269,59.24564439283534,peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,218269,-0.0053055607156758,relative_legacy,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,218269,42.47591852429012,spot_peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,218666,80.80696769597365,baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,218666,54.39287240219944,spot_peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,218666,0.1477443574343797,relative_legacy,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,218666,84.478735007906,spot_baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,218666,70.50220888833579,peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219459,-38.332863955150586,spot_baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219459,-0.1675059169333129,relative_legacy,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219459,-5.491781168174721,baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219459,-4.358108707804648,peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219459,-33.39384470789258,spot_peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219659,-16.836460678745127,baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219659,-0.2441833716808671,relative_legacy,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219659,-130.1529011877885,spot_peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219659,-12.23644686552686,peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219659,-173.6965594166206,spot_baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219886,62.6428873037903,baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219886,56.14187643086749,spot_peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219886,0.1029959964776722,relative_legacy,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219886,86.92555143326767,spot_baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219886,53.53291411928311,peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219991,25.40343858452025,peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219991,48.72783264910994,spot_peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219991,35.04846940800337,baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219991,-0.0164110074889877,relative_legacy,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,219991,76.55347463629771,spot_baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,220077,54.62229407635465,spot_peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,220077,0.0194898989445067,relative_legacy,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,220077,84.79969065549501,spot_baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,220077,27.156624976078472,peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29021,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-23 13:06:24.891797+00,220077,37.80220523725344,baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29109 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,182315,48.54268271702416,spot_baseline,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,182315,40.31314730605711,baseline,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,182315,80.98386671594167,spot_peer,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,182315,0.767678055412302,relative_legacy,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,182315,63.11437718628557,peer,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,185690,-22.60036748888269,spot_baseline,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,185690,-1.0359961603161734,baseline,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,185690,30.17694069574758,spot_peer,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,185690,0.0215596171181535,relative_legacy,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,185690,1.3466870814069616,peer,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,185698,48.54268271702416,spot_baseline,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,185698,29.967732852004357,peer,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,185698,0.5093444880271544,relative_legacy,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,185698,80.98386671594167,spot_peer,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,185698,23.42560893365932,baseline,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,185699,-0.071983988448038,relative_legacy,MWG,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,185699,-38.51300222020612,baseline,MWG,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,185699,-100.0,spot_baseline,MWG,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,185699,-25.098133842117043,spot_peer,MWG,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,185699,-11.634891816281783,peer,MWG,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,187708,-40.4982336961476,baseline,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,187708,-96.01597354682087,spot_baseline,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,187708,-11.574835563942068,peer,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,187708,-0.0719300259614793,relative_legacy,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,187708,-22.25293481447737,spot_peer,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,188107,-25.098133842117043,spot_peer,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,188107,-0.0312908834034098,relative_legacy,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,188107,-100.0,spot_baseline,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,188107,-30.425296022108306,baseline,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,188107,-8.953475447166035,peer,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,188389,-139.59286763311394,spot_baseline,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,188389,-40.96237731743738,baseline,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,188389,-53.37344521744992,spot_peer,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,188389,-16.942773699124512,peer,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,188389,-0.1422248479080076,relative_legacy,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,188909,-64.83305610759426,spot_peer,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,188909,-0.0643825805761749,relative_legacy,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,188909,-14.115785523556076,baseline,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,188909,-5.907488956502189,peer,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,188909,-155.6393348524385,spot_baseline,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,189585,0.0971924961147089,relative_legacy,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,189585,23.326482504413296,spot_peer,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,189585,-28.24288619875105,baseline,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,189585,14.91092658088318,peer,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,189588,0.0131885365342767,relative_legacy,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,189588,65.10167546101204,spot_peer,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,189588,1.0438975059831752,peer,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,189588,0.4350464840994656,baseline,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,189869,-1.4014811303950072,relative_legacy,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,189869,-178.84831184978816,baseline,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,189869,-232.19280948873623,spot_baseline,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,189869,-99.2667601243164,peer,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,189869,-119.50384561096936,spot_peer,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,190710,58.496250072115615,spot_baseline,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,190710,55.17246210012866,baseline,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,190710,88.09222317217305,spot_peer,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,190710,0.9697636562424962,relative_legacy,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,190710,81.14037879400074,peer,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,190772,-162.35264399084951,baseline,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,190772,-90.86854527569224,peer,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,190772,-130.35917146662422,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,190772,-1.2487610141353658,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,190772,-247.39311883324123,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191026,-78.58751946471523,spot_baseline,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191026,-9.80637573902221,spot_peer,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191026,-12.708640710794622,baseline,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191026,-1.8833844364108183,peer,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191026,0.01383207282731,relative_legacy,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191046,-8.412522911550031,baseline,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191046,-15.200309344504996,spot_baseline,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191046,16.775436768346186,peer,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191046,0.2766492821458709,relative_legacy,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191046,35.461704359919466,spot_peer,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191471,68.48002084277474,spot_peer,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191471,31.034012061215048,spot_baseline,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191471,19.620915480318992,baseline,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191471,40.41756389588315,peer,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191471,0.5668592383668288,relative_legacy,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191935,-0.7721282398542243,relative_legacy,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191935,-125.15387669959644,spot_baseline,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191935,-48.46775089334342,peer,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191935,-122.53755121620208,baseline,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191935,-43.061816154003246,spot_peer,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191975,40.88756104583104,spot_peer,jkraybill_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191975,27.569460644117424,peer,jkraybill_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191975,-7.602683885676085,spot_baseline,jkraybill_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191975,0.32844172598818,relative_legacy,jkraybill_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,191975,-5.947730268370321,baseline,jkraybill_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192049,-48.08868155327804,spot_peer,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192049,-0.0648002575805716,peer,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192049,-0.1781318977456061,baseline,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192049,-132.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192049,-0.0007882462046648,relative_legacy,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192418,1.0293655016120145,relative_legacy,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192418,82.9514854922365,peer,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192418,65.62141111926604,baseline,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192418,100.98781971894942,spot_peer,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192472,20.727008337132062,baseline,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192472,21.412480535284736,spot_baseline,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192472,61.6087883186691,spot_peer,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192472,0.6462292540458557,relative_legacy,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192472,57.80408555970885,peer,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192924,-51.45731728297583,spot_baseline,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192924,0.0620018303285268,relative_legacy,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192924,2.364871216263575,peer,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192924,-30.575572114479797,baseline,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,192924,9.568702658250343,spot_peer,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,193275,2.4977329374711097,baseline,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,193275,3.4215715337912984,spot_baseline,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,193275,48.76055113978261,spot_peer,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,193275,33.00715349866786,peer,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,193275,0.4112951501436726,relative_legacy,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,195286,-7.263285373663455,peer,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,195286,-0.0825390461175041,relative_legacy,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,195286,-16.15136947927289,baseline,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,195286,-77.72865265437063,spot_peer,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,195286,-173.6965594166206,spot_baseline,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,204737,0.4558443321186052,relative_legacy,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,204737,12.21228332720902,baseline,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,204737,66.80469444992464,spot_peer,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,204737,28.688114778816157,spot_baseline,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,204737,26.61965249512188,peer,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,208405,-0.5393708977394411,baseline,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,208405,-6.313488596679297,spot_peer,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,208405,-73.69655941662063,spot_baseline,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,208405,-0.0010673160709572,relative_legacy,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,208405,-0.0391004698588835,peer,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,216863,-124.98172609116544,peer,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,216863,-119.50384561096936,spot_peer,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,216863,-232.19280948873623,spot_baseline,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,216863,-223.02714744267064,baseline,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,216863,-1.8006508062032751,relative_legacy,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,218269,-48.08868155327804,spot_peer,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,218269,-53.68251011475645,peer,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,218269,-129.82211404635947,baseline,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,218269,-132.19280948873623,spot_baseline,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,218269,-0.8410460880186034,relative_legacy,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,218666,4.747692078766075,spot_peer,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,218666,-55.79346042512134,baseline,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,218666,-0.2239530932180476,peer,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,218666,-0.1309668628915024,relative_legacy,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,218666,-58.20799921880349,spot_baseline,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219459,-66.87332679871578,spot_peer,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219459,-0.1006525510218526,relative_legacy,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219459,-22.70763586542136,baseline,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219459,-9.806751847042014,peer,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219459,-158.4962500721156,spot_baseline,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219659,0.0678615684987093,relative_legacy,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219659,35.461704359919466,spot_peer,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219659,-1.4858640197106103,baseline,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219659,3.445397682833379,peer,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219659,-15.200309344504996,spot_baseline,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219886,20.58198601731885,peer,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219886,34.07872650751705,spot_peer,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219886,-17.136841831198144,spot_baseline,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219886,-12.34988164638067,baseline,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219886,0.2563719880832062,relative_legacy,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219991,-23.698932540548977,baseline,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219991,9.568702658250343,spot_peer,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219991,0.1096657644217074,relative_legacy,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219991,2.0798768591080834,peer,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,219991,-51.45731728297583,spot_baseline,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,220077,-0.1018127163911899,relative_legacy,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,220077,-25.098133842117043,spot_peer,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,220077,-100.0,spot_baseline,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,220077,-44.59680352304821,baseline,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29022,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-23 13:06:24.897222+00,220077,-13.578936670105575,peer,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29110 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,182315,73.10984002733589,baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,182315,87.97057662822883,spot_baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,182315,0.0059801965172433,relative_legacy,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,182315,1.1175252724232465,peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,182315,2.873200559496363,spot_peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,185690,0.0117241254683611,peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,185690,0.032111783397564,spot_peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,185690,-0.0001762919202187,relative_legacy,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,185690,83.99595874895317,spot_baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,185690,3.880091743484868,baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,185698,27.14165279370561,baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,185698,86.39384504239716,spot_baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,185698,0.5920569883029105,peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,185698,0.0048755470593558,relative_legacy,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,185698,1.7461401608642309,spot_peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,187708,-0.0237449820089848,relative_legacy,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,187708,-1.5201705555890974,peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,187708,-2.534479967737914,spot_peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,187708,34.37297593199039,baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,187708,80.4053558967353,spot_baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,188107,29.480358207132383,baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,188107,92.5999418556223,spot_baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,188107,0.0198737101249678,relative_legacy,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,188107,1.6779521835284217,peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,188107,6.182307997619844,spot_peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,188389,2.5313425374406195,peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,188389,10.435488096443656,spot_peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,188389,0.0320299537189816,relative_legacy,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,188389,28.91055037374425,baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,188389,98.5500430304885,spot_baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,188909,2.325823768991328,baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,188909,23.878685958711674,spot_baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,188909,-0.0589369168528047,relative_legacy,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,188909,-4.160489096174038,peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,188909,-42.9401975459086,spot_peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,189585,-0.0207379387434811,relative_legacy,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,189585,0.6066258041226444,spot_peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,189585,-0.8045382345479267,peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,189585,74.44931179380151,baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,189588,1.6104595711887144,baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,189588,0.00137027685306,relative_legacy,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,189588,0.1093224957820734,peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,189588,6.182307997619844,spot_peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,189869,1.7461401608642309,spot_peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,189869,0.1558604184839411,peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,189869,-0.0060862318567564,relative_legacy,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,189869,66.54628783021225,baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,189869,86.39384504239716,spot_baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,190772,61.808981333109486,baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,190772,94.11063109464314,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,190772,3.9472477220756654,peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,190772,7.262160796434672,spot_peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,190772,0.048258922551171,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191026,-1.7108874556208864,spot_peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191026,-0.3321719405657868,peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191026,-0.0053887735313731,relative_legacy,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191026,81.55754288625727,spot_baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191026,13.189557666708716,baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191046,32.34634716526759,baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191046,58.496250072115615,spot_baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191046,-10.81445552671095,peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191046,-18.19528474025391,spot_peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191046,-0.1532314539043887,relative_legacy,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191471,-0.4448121463508761,peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191471,0.6066258041226444,spot_peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191471,-0.0114358056595455,relative_legacy,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191471,53.67544961814634,baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191471,84.79969065549501,spot_baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191935,89.53026213333065,spot_baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191935,88.80490744526807,baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191935,2.785482267569112,peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191935,0.0254864736670908,relative_legacy,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191935,3.988076282743589,spot_peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191975,3.2872232339052827,peer,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191975,5.346694829555791,spot_peer,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191975,0.0351374763807876,relative_legacy,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191975,77.04042958483268,baseline,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,191975,91.4309382447932,spot_baseline,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192049,5.956113391938101,baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192049,90.68905956085185,spot_baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192049,0.3338016161496267,peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192049,4.816393989023968,spot_peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192049,0.0040628963916333,relative_legacy,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192418,0.0064482260539421,relative_legacy,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192418,1.1842500766399464,peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192418,2.873200559496363,spot_peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192418,75.42316608368786,baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192418,87.97057662822883,spot_baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192459,80.36881420726758,baseline,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192459,99.85565831303312,spot_baseline,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192459,0.1016372617152767,relative_legacy,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192459,11.368752384435195,spot_peer,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192459,8.0856754333279,peer,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192472,-5.287835623122056,spot_peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192472,-0.1005654805248658,relative_legacy,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192472,-6.722260560968287,peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192472,74.17565259377498,baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192924,50.46584514143243,baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192924,0.6066258041226444,spot_peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192924,-0.0091194257935746,relative_legacy,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,192924,-0.3544953977995095,peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,193275,2.7766987216855425,peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,193275,5.091027972908212,spot_peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,193275,0.0296310341093844,relative_legacy,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,193275,91.07326619029126,spot_baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,193275,70.3890766815748,baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,195286,7.93980304782392,baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,195286,0.0883344520697358,peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,195286,0.6066258041226444,spot_peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,195286,0.0002788761332629,relative_legacy,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,204737,4.091870140923017,peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,204737,10.435488096443656,spot_peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,204737,0.0539092753559764,relative_legacy,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,204737,42.19170249628189,baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,208405,0.901359542617321,baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,208405,91.07326619029126,spot_baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,208405,0.0006209008868534,relative_legacy,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,208405,5.091027972908212,spot_peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,208405,0.0502798421938217,peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,216863,-5.287835623122056,spot_peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,216863,-0.0999022674701428,relative_legacy,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,216863,-6.66310430625524,peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,216863,73.5599609402335,baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,216863,76.55347463629771,spot_baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,218269,84.79969065549501,spot_baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,218269,83.30363891431983,baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,218269,-0.0209846649894114,relative_legacy,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,218269,0.6066258041226444,spot_peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,218269,-0.7524400067071387,peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,218666,4.871379327570011,spot_peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,218666,3.5780599413177807,peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,218666,0.0365802385667455,relative_legacy,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,218666,87.16243933543261,baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,218666,90.76598278532894,spot_baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219459,10.558693342152482,baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219459,73.69655941662059,spot_baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219459,-1.0792562227251643,peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219459,-7.329981563040585,spot_peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219459,-0.0154683060658523,relative_legacy,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219659,-0.0076898727657101,relative_legacy,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219659,-0.4904562892258466,peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219659,-5.287835623122056,spot_peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219659,7.546813479947609,baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219659,76.55347463629771,spot_baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219886,67.55419274011778,baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219886,93.73745264577788,spot_baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219886,0.0476086850591784,relative_legacy,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219886,6.995409844580604,spot_peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219886,4.054122744180046,peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219991,-2.943452676066112,peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219991,-5.287835623122056,spot_peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219991,-0.0432154624183273,relative_legacy,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219991,35.514915115114604,baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,219991,76.55347463629771,spot_baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,220077,74.84612330040356,spot_baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,220077,33.39279030482079,baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,220077,-3.3767272537810715,peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,220077,-0.0493674689813792,relative_legacy,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29023,Will the New York Yankees win the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:24.901039+00,220077,-6.5082640679692245,spot_peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29111 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,182315,-10.993662654810842,peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,182315,60.40713236688608,spot_baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,182315,50.236512479833976,baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,182315,-0.1527797427970424,relative_legacy,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,182315,-11.849016286343607,spot_peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,185690,9.52138111451339,spot_peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,185690,0.0049063623004917,relative_legacy,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,185690,0.4421931824893234,peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,185690,4.203804421187299,baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,185690,90.3038270112912,spot_baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,185698,64.15460290875237,spot_baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,185698,0.7731681959026047,peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,185698,-9.170294251007345,spot_peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,185698,25.068623893496227,baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,185698,0.0091774023723231,relative_legacy,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,187708,-4.607020064655814,peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,187708,63.04054714823233,spot_baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,187708,-0.0639127467041141,relative_legacy,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,187708,-9.966630254441853,spot_peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,187708,27.31515218829703,baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,188107,2.231028461387916,peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,188107,0.0294078146799495,relative_legacy,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,188107,28.51479417536698,baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,188107,7.291564513155671,spot_peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,188107,87.18436485093177,spot_baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,188389,-0.0151299151745975,relative_legacy,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,188389,73.11832415721999,spot_baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,188389,-0.9900290503099636,peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,188389,-2.76295432434734,spot_peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,188389,22.04716702417905,baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,188909,-7.856582217709906,spot_peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,188909,-0.012100654136787,relative_legacy,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,188909,65.99245584023782,spot_baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,188909,-0.7574860412703236,peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,188909,6.516331385469236,baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,189585,-0.3074811778076182,spot_peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,189585,-0.0197691777917943,relative_legacy,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,189585,-1.2406138867625376,peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,189585,67.21468645761453,baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,189588,87.97057662822883,spot_baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,189588,0.1339793798501276,peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,189588,0.0013993842843473,relative_legacy,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,189588,7.85355500481078,spot_peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,189588,1.5287324393563346,baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,189869,79.90873060740036,spot_baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,189869,0.0095324954546181,relative_legacy,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,189869,2.090882732882441,spot_peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,189869,0.8783128541546982,peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,189869,61.551717715034485,baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,190710,77.09077074926216,baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,190710,2.1280069482739457,peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,190710,3.269466989693543,spot_peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,190710,81.55754288625727,spot_baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,190710,0.0241378359004626,relative_legacy,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,190772,56.78227175792361,baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,190772,6.726494606178654,spot_peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,190772,86.39384504239716,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,190772,3.945513562559743,peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,190772,0.0521992356772978,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191026,71.36958148433591,spot_baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191026,11.54265192038373,baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191026,-0.0107970451565933,relative_legacy,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191026,-4.012969629245391,spot_peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191026,-0.6793002256778239,peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191046,-13.21493029493948,spot_peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191046,-0.1086756289232303,relative_legacy,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191046,32.41721237433002,baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191046,-7.778353044416391,peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191046,58.496250072115615,spot_baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191471,0.898672922771476,spot_peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191471,78.24085649273731,spot_baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191471,49.57049738721561,baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191471,0.0761027612035931,peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191471,-0.000600605560642,relative_legacy,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191935,3.4344044764960238,peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191935,0.041701205514361,relative_legacy,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191935,82.51417043725762,baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191935,83.18772411916731,spot_baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191935,4.434733625255426,spot_peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191975,0.092797218863362,relative_legacy,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191975,74.03604566504028,baseline,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191975,90.0979482691263,spot_baseline,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191975,9.374217336417418,spot_peer,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,191975,7.052695755745826,peer,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192049,80.73549220576041,spot_baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192049,0.0009756594567224,relative_legacy,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192049,0.1871901594460682,peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192049,2.681858562246525,spot_peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192049,5.452708163081272,baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192418,76.77319468531856,baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192418,6.990199025267241,peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192418,0.0914808213505867,relative_legacy,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192418,89.53026213333065,spot_baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192418,8.96843072805802,spot_peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192472,-0.0231622009347933,relative_legacy,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192472,-1.4524355485087077,peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192472,74.4839376607081,baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192472,-0.3074811778076182,spot_peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192924,42.50420574557323,baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192924,71.36958148433591,spot_baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192924,-4.012969629245391,spot_peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192924,-2.848542954575897,peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,192924,-0.0408885395595626,relative_legacy,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,193275,1.0751058785562202,peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,193275,80.4053558967353,spot_baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,193275,2.4458744775765267,spot_peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,193275,62.93740124386644,baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,193275,0.0122941909228854,relative_legacy,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,195286,0.0012919526372965,relative_legacy,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,195286,0.2138620885746402,peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,195286,2.090882732882441,spot_peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,195286,79.90873060740036,spot_baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,195286,7.479985337250933,baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,204737,0.0636336714797379,relative_legacy,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,204737,92.5999418556223,spot_baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,204737,11.162662442934264,spot_peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,204737,39.81553605378638,baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,204737,4.612619178449814,peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,208405,5.586980249437096,spot_peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,208405,0.8339741332983213,baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,208405,0.000423128875795,relative_legacy,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,208405,0.0501158191177427,peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,216863,0.0249325101432069,relative_legacy,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,216863,3.269466989693543,spot_peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,216863,2.1657680829592545,peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,216863,78.38595049893377,baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,216863,81.55754288625727,spot_baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,218269,-0.3074811778076182,spot_peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,218269,76.55347463629771,spot_baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,218269,-1.4965283691848257,peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,218269,-0.0234839196159637,relative_legacy,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,218269,75.21797056642727,baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,218666,76.2136169901112,spot_baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,218666,73.29414934628767,baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,218666,-0.0264305902410379,relative_legacy,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,218666,-1.6706169826868085,peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,218666,-0.5504141523424582,spot_peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219459,82.10298589546805,spot_baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219459,0.0055380339248215,relative_legacy,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219459,3.659354032558848,spot_peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219459,11.763409563539952,baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219459,0.5123407518342911,peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219659,3.761480082127308,baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219659,-0.0401329618270879,relative_legacy,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219659,-27.97220479538392,spot_peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219659,-2.766906324850108,peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219659,37.85116232537298,spot_baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219886,4.035365809518484,spot_peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219886,59.5495281562367,baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219886,82.62901772667826,spot_baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219886,0.02918059586771,relative_legacy,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219886,2.288553941341912,peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219991,-0.4133497126795197,peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219991,76.55347463629771,spot_baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219991,-0.3074811778076182,spot_peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219991,35.87941407452591,baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,219991,-0.0057383799594801,relative_legacy,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,220077,-2.76295432434734,spot_peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,220077,73.11832415721999,spot_baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,220077,32.63808280905218,baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,220077,-0.0206955128414397,relative_legacy,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29024,Will the New York Yankees win the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:24.904834+00,220077,-1.4963156432213138,peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29112 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,182315,87.97057662822883,spot_baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,182315,10.39647928793246,spot_peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,182315,7.934550608846195,peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,182315,0.1068400365941517,relative_legacy,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,182315,73.21637199454683,baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,185690,81.96681834964556,spot_baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,185690,0.2908489073598848,peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,185690,6.104944660507685,spot_peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,185690,3.848476960786489,baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,185690,0.0034761291347294,relative_legacy,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,185698,-6.627369967885676,spot_peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,185698,64.15460290875237,spot_baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,185698,-0.0045143465950562,relative_legacy,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,185698,-0.6887261554850093,peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,185698,22.008185165562644,baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,187708,32.27702804225842,baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,187708,-0.0024945041494523,relative_legacy,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,187708,73.11832415721999,spot_baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,187708,-0.2200300412256738,spot_peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,187708,-0.5193294482204258,peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,188107,25.485064010713355,baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,188107,0.2063644941773323,peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,188107,1.321478481848757,spot_peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,188107,75.27485914071337,spot_baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,188107,0.0080805097136477,relative_legacy,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,188389,63.22682154995129,spot_baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,188389,-0.0287132229320464,relative_legacy,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,188389,-2.4308058837839206,peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,188389,19.300302617554284,baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,188389,-7.29055553319687,spot_peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,188909,-27.02814974878367,spot_peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,188909,-2.7526424851039173,peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,188909,3.6499136217451498,baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,188909,35.61438102252753,spot_baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,188909,-0.0376679653013225,relative_legacy,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,189585,2.2354431053140504,spot_peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,189585,67.21213460052564,baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,189585,1.0428150552169375,peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,189585,0.0116247338919701,relative_legacy,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,189588,0.0815325095658882,peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,189588,5.812391272815222,spot_peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,189588,1.3903452374610905,baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,189588,0.0006153060322962,relative_legacy,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,189588,81.55754288625727,spot_baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,189869,-0.0686278324783968,relative_legacy,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,189869,50.83295572807075,baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,189869,-5.03397071174307,peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,189869,-5.313657934588233,spot_peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,189869,65.99245584023782,spot_baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,190710,74.84612330040356,spot_baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,190710,70.81324266157631,baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,190710,0.0425701350755871,peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,190710,-0.0056786256040618,relative_legacy,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,190710,1.0150146604668937,spot_peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,190772,84.79969065549501,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,190772,0.066635445131203,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,190772,55.77284345592026,baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,190772,4.738841068325251,peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,190772,8.129904532558765,spot_peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191026,65.07645591169023,spot_baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191026,10.52532794634052,baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191026,-5.96842203894991,spot_peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191026,-0.9790368546392124,peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191026,-0.0115256650167654,relative_legacy,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191046,37.30580405863842,baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191046,-2.782161320372504,peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191046,-0.0353606223955414,relative_legacy,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191046,-4.016471019505782,spot_peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191471,2.2354431053140504,spot_peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191471,0.0127592243861202,relative_legacy,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191471,0.7748287897463665,peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191471,48.53952485851517,baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191471,76.55347463629771,spot_baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191935,1.3931538305437234,peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191935,76.55347463629771,spot_baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191935,75.93396075018144,baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191935,2.2354431053140504,spot_peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191935,0.0101064546275407,relative_legacy,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191975,2.9915492835787125,peer,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191975,79.63208717826272,spot_baseline,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191975,4.436060071422952,spot_peer,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191975,69.21039530023799,baseline,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,191975,0.0383817860496878,relative_legacy,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192049,0.1658530228781373,peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192049,0.0020770275614808,relative_legacy,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192049,5.281583083144672,baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192049,2.2354431053140504,spot_peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192418,64.19577126788592,baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192418,74.84612330040356,spot_baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192418,1.0150146604668937,spot_peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192418,-0.0770425470686996,peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192418,-0.0028265157444225,relative_legacy,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192472,47.27683672659301,baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192472,48.54268271702416,spot_baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192472,-19.042472435576663,peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192472,-0.2626225423877861,relative_legacy,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192472,-17.786895883909683,spot_peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192924,67.80719051126377,spot_baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192924,40.41675476842426,baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192924,-3.0349249676852046,peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192924,-4.016471019505782,spot_peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,192924,-0.0393733618412559,relative_legacy,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,193275,2.0109635662678222,peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,193275,0.0271504832414204,relative_legacy,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,193275,62.50487691622855,baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,193275,3.681144351932569,spot_peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,193275,78.5759774427011,spot_baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,195286,-0.3549810144708179,peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,195286,6.34646422582883,baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,195286,-0.0043981599939432,relative_legacy,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,195286,-4.016471019505782,spot_peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,204737,17.958766824879756,spot_peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,204737,0.1074020568327785,relative_legacy,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,204737,42.55905318606053,baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,204737,7.428918756630793,peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,208405,0.0001286723909351,relative_legacy,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,208405,3.4415972058931628,spot_peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,208405,0.0306348687651875,peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,208405,0.770914676845589,baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,208405,78.24085649273731,spot_baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,216863,78.40385908637711,baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,216863,4.88453897673681,peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,216863,5.812391272815222,spot_peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,216863,81.55754288625727,spot_baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,216863,0.0583239071187972,relative_legacy,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,218269,3.4415972058931628,spot_peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,218269,76.88997014553848,baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,218269,0.026688934214508,relative_legacy,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,218269,2.645436639623767,peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,218269,78.24085649273731,spot_baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,218666,3.4415972058931628,spot_peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,218666,75.38789635249952,baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,218666,0.026439546282436,relative_legacy,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,218666,78.24085649273731,spot_baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,218666,2.5221490529104917,peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219459,55.25410230287789,spot_baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219459,-1.86074296508387,peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219459,-12.98951927156134,spot_peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219459,-0.0241147231208046,relative_legacy,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219459,7.916791742726511,baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219659,8.129904532558765,spot_peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219659,0.0124008972113239,relative_legacy,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219659,8.501880302569656,baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219659,0.841300846232091,peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219659,84.79969065549501,spot_baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219886,53.21592555685743,baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219886,73.83960382637414,spot_baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219886,0.2955464581271533,spot_peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219886,-0.0060832174798577,relative_legacy,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219886,-0.5640294002020153,peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219991,37.7309718286474,baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219991,1.7562957955790643,peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219991,79.90873060740036,spot_baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219991,0.0286019323807646,relative_legacy,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,219991,4.633807016004113,spot_peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,220077,69.59938131099001,spot_baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,220077,-2.735398644654576,spot_peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,220077,31.089515210483405,baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,220077,-1.662280018624676,peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29025,Will the New York Yankees win the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:24.908551+00,220077,-0.01830418252065,relative_legacy,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29113 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,182315,0.7382932915670599,peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,182315,3.810521093284833,spot_peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,182315,-0.0134275273299955,relative_legacy,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,182315,60.90250012885002,baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,182315,73.11832415721999,spot_baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,185690,8.960269400897271,spot_peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,185690,0.0021821357092516,relative_legacy,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,185690,0.4181038408953745,peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,185690,3.8140244797239378,baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,185690,80.32270364349274,spot_baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,185698,18.56538320905768,baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,185698,-2.387187090919085,peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,185698,-0.0445319492101691,relative_legacy,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,185698,-16.74568448945332,spot_peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,185698,44.36066514756145,spot_baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,187708,1.9574048970694735,peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,187708,77.06176466562032,spot_baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,187708,0.0119788476557148,relative_legacy,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,187708,6.629324034329128,spot_peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,187708,34.83621445727553,baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,188107,1.6879789388183457,peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,188107,77.68058586979973,spot_baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,188107,0.0105272097712101,relative_legacy,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,188107,26.95196012616639,baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,188107,7.071662400181419,spot_peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,188389,21.989317959390263,spot_peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,188389,7.09227529324918,peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,188389,35.138883152924315,baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,188389,0.0852112005507617,relative_legacy,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,188389,98.5500430304885,spot_baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,188909,-34.94275459030131,spot_peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,188909,-3.651078342775144,peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,188909,1.9677740179589949,baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,188909,18.903382439001717,spot_baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,188909,-0.0565839107878839,relative_legacy,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,189585,-6.641454877307303,spot_peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,189585,-2.8034752072365183,peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,189585,59.328322165464094,baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,189585,-0.0635032724743784,relative_legacy,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,189588,6.265994239824575,spot_peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,189588,1.329415788148586,baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,189588,0.1057259561225263,peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,189588,0.000162634537565,relative_legacy,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,189869,4.537899527702592,peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,189869,79.90873060740036,spot_baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,189869,61.55321187046142,baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,189869,8.664358150514632,spot_peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,189869,0.0404458477943953,relative_legacy,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,190710,76.2136169901112,spot_baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,190710,0.0108322183242123,relative_legacy,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,190710,2.9967714863259567,peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,190710,6.023061265289734,spot_peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,190710,72.19678070595258,baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,190772,11.008209042887602,spot_peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,190772,83.18772411916731,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,190772,5.515391871296628,peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,190772,0.0583048543169694,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,190772,54.75191200269219,baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191026,78.24085649273731,spot_baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191026,12.65507213199002,baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191026,0.0068260727310603,relative_legacy,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191026,1.0203191544426633,peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191026,7.472148340403673,spot_peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191046,0.0140801150047445,spot_peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191046,-1.426929893414003,peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191046,37.37577497109943,baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191046,-0.0355383934807449,relative_legacy,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191471,46.40685640491904,baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191471,0.6951209042953695,peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191471,3.810521093284833,spot_peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191471,-0.0070428474557814,relative_legacy,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191471,73.11832415721999,spot_baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191935,4.724624446577835,peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191935,0.0299107315215445,relative_legacy,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191935,78.24085649273731,spot_baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191935,7.472148340403673,spot_peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191935,77.6080276552404,baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191975,4.560984855513416,peer,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191975,7.5919914683594545,spot_peer,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191975,78.40851427347569,spot_baseline,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191975,0.0316243712356426,relative_legacy,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,191975,74.57805458882643,baseline,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192049,0.0010611876637906,relative_legacy,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192049,6.265994239824575,spot_peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192049,0.4360271556795654,peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192049,5.393621396862639,baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192418,64.20619999848117,baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192418,74.84612330040356,spot_baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192418,1.8475154029295395,peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192418,0.0006231735880172,relative_legacy,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192418,5.04556579497741,spot_peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192472,-24.6216479266125,spot_peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192472,32.53301137381111,baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192472,33.34237337251918,spot_baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192472,-0.4082367784788051,relative_legacy,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192472,-28.03143614738321,peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192924,0.0140801150047445,spot_peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192924,-0.0380776882905144,relative_legacy,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192924,40.46011946398225,baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192924,-1.6007663580588842,peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,192924,67.80719051126377,spot_baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,193275,6.991378238866883,spot_peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,193275,62.72308080114076,baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,193275,3.2948980166344928,peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,193275,0.0220786114354591,relative_legacy,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,193275,77.56827017390599,spot_baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,195286,-0.0051010597618089,relative_legacy,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,195286,6.345751629600356,baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,195286,0.0140801150047445,spot_peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,195286,0.0017341447884466,peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,204737,42.22330006830476,spot_baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,204737,-0.1398560827780481,relative_legacy,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,204737,-9.044980253509948,peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,204737,18.366438786163435,baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,204737,-18.273490211045942,spot_peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,208405,5.04556579497741,spot_peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,208405,9.559472635834944e-07,relative_legacy,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,208405,74.84612330040356,spot_baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,208405,0.0497818099883186,peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,208405,0.7428665313815423,baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,216863,81.55754288625727,spot_baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,216863,6.886913689212421,peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,216863,9.842942407325726,spot_peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,216863,0.0615762750514307,relative_legacy,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,216863,78.43574959206894,baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,218269,75.25450339949157,baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,218269,76.55347463629771,spot_baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,218269,6.265994239824575,spot_peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,218269,3.476811635819756,peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,218269,0.0133232305289421,relative_legacy,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,218666,82.21182747293444,spot_baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,218666,0.0680238985312249,relative_legacy,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,218666,10.3106302837567,spot_peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,218666,79.38634380361175,baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,218666,7.407729931402354,peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219459,3.334676115605606e-06,relative_legacy,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219459,0.4743614831696922,peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219459,10.559483217373124,baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219459,73.69655941662059,spot_baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219459,4.223848299906024,spot_peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219659,-1.5363303373445805,baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219659,-0.0893963037064191,relative_legacy,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219659,-6.0097096993967165,peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219659,-15.200309344505014,spot_baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219659,-59.320347328175096,spot_peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219886,-2.5968188333751665,spot_peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219886,64.15460290875237,spot_baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219886,-3.9980858495410634,peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219886,46.236791210232354,baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219886,-0.0745072179907697,relative_legacy,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219991,76.55347463629771,spot_baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219991,1.8555889916533064,peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219991,0.0100915464804816,relative_legacy,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219991,6.265994239824575,spot_peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,219991,36.44681105072627,baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,220077,62.29303509201767,spot_baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,220077,-2.8286078829196875,peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,220077,27.85015947955794,baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,220077,-0.0540749132760689,relative_legacy,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29026,Will the New York Yankees win the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.092393+00,220077,-3.927482457078164,spot_peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29114 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,182315,92.5999418556223,spot_baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,182315,0.0636007743706311,relative_legacy,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,182315,4.807314827213186,peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,182315,77.20060754267907,baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,182315,6.939838910465671,spot_peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,185690,3.18483564593381,spot_peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,185690,87.3419503434857,spot_baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,185690,0.1494407661830754,peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,185690,4.167591811627775,baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,185690,0.0012251536474797,relative_legacy,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,185698,-3.9164674618408544,peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,185698,20.470438512101683,baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,185698,71.36958148433591,spot_baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,185698,-0.0555695999950324,relative_legacy,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,185698,-8.221857778727596,spot_peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,187708,-0.4788500184314904,spot_peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,187708,-0.54112157694879,peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,187708,37.68309722656325,baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,187708,-0.0085311200323001,relative_legacy,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,187708,82.21182747293444,spot_baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,188107,1.5266039233384996,peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,188107,0.0192742084468408,relative_legacy,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,188107,32.01193089037227,baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,188107,89.78857823473092,spot_baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,188107,4.932098968347831,spot_peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,188389,9.8272288899768,spot_peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,188389,0.0444431595072017,relative_legacy,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,188389,96.64304673062982,spot_baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,188389,3.3342020735684077,peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,188389,34.98077579700653,baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,188909,78.24085649273731,spot_baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,188909,-0.0067467936918422,relative_legacy,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,188909,-0.3566365478642839,peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,188909,8.224685365413155,baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,188909,-3.3147254586225814,spot_peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,189585,-4.519771979678657,spot_peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,189585,-0.0032237126486183,relative_legacy,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,189585,-0.0701117733925845,peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,189585,74.27275292520547,baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,189588,-0.0771763756268676,peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,189588,1.330875290705732,baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,189588,-0.0014215033861675,relative_legacy,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,189588,-4.519771979678657,spot_peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,189869,2.5077446897217746,spot_peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,189869,0.0123456333059843,relative_legacy,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,189869,1.0128641099110156,peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,189869,86.39384504239716,spot_baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,189869,66.54949159290283,baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,190710,-1.53294144433684,peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,190710,78.27133273889082,baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,190710,82.53786038929313,spot_baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,190710,-0.2460130763318671,spot_peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,190710,-0.0228740731276061,relative_legacy,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,190772,4.747622100745399,spot_peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,190772,58.96983242381516,baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,190772,89.53026213333065,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,190772,0.0337079098628555,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,190772,2.5438235979790886,peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191026,0.8863260925375542,peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191026,0.0100011576287279,relative_legacy,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191026,14.731340228723788,baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191026,91.07326619029126,spot_baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191026,5.849560979440659,spot_peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191046,-24.523724982686403,spot_peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191046,26.649973729059568,baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191046,-14.009778858201768,peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191046,48.54268271702416,spot_baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191046,-0.1950384668588684,relative_legacy,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191471,-1.1801154419739517,peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191471,51.80826700175733,baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191471,81.55754288625727,spot_baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191471,-0.0173397177729882,relative_legacy,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191471,-0.9461084294111995,spot_peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191935,2.5077446897217746,spot_peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191935,1.2567448799501526,peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191935,0.0141124968552652,relative_legacy,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191935,86.39384504239716,spot_baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191935,85.69540603724685,baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191975,4.630299158429778,peer,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191975,0.0619127201721404,relative_legacy,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191975,92.80228340925204,spot_baseline,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191975,71.86292922972201,baseline,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,191975,7.084341462947216,spot_peer,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192049,1.3692767189827244,spot_peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192049,0.0942514398364937,peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192049,6.092076747826583,baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192049,1.2093872991693431e-05,relative_legacy,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192418,-3.02171539005102,peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192418,-0.0433952472471093,relative_legacy,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192418,79.90873060740036,spot_baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192418,68.5630956223499,baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192418,-2.1236104233602147,spot_peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192459,12.121520722086515,spot_peer,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192459,0.1200572612009753,relative_legacy,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192459,8.927891472906778,peer,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192459,80.46036632074389,baseline,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192459,99.85565831303312,spot_baseline,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192472,0.0744515385427754,relative_legacy,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192472,5.752760656215585,peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192472,92.5999418556223,spot_baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192472,90.47838803681282,baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192472,6.939838910465671,spot_peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192924,-4.519771979678657,spot_peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192924,45.70860059393184,baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192924,-0.0453727478617027,relative_legacy,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,192924,-3.209865979313006,peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,193275,72.61196086296093,baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,193275,2.076373542339023,peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,193275,88.12730614292485,spot_baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,193275,3.7456987785398894,spot_peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,193275,0.0262542913942564,relative_legacy,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,195286,1.3692767189827244,spot_peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,195286,1.2093872991693431e-05,relative_legacy,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,195286,0.1236573766928781,peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,195286,7.934785937088943,baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,204737,0.0629827739358884,relative_legacy,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,204737,4.632952091971736,peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,204737,43.13627337707788,baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,204737,11.189113426094966,spot_peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,208405,1.3692767189827244,spot_peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,208405,1.121612868249651e-05,relative_legacy,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,208405,0.0137681278023052,peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,208405,0.8409364558559009,baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,216863,0.0550760660397648,peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,216863,-0.0015573473245585,relative_legacy,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,216863,81.58744857977324,baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,216863,84.79969065549501,spot_baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,216863,1.3692767189827244,spot_peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,218269,-4.519771979678657,spot_peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,218269,76.55347463629771,spot_baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,218269,-6.02385809723461,peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,218269,75.27450765635915,baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,218269,-0.0826471918452823,relative_legacy,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,218666,0.7437325933468291,peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,218666,0.007665578607008,relative_legacy,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,218666,82.94317717489034,baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,218666,85.75829553841481,spot_baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,218666,2.0538659687849323,spot_peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219459,1.3692767189827244,spot_peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219459,0.1511385908934709,peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219459,84.79969065549501,spot_baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219459,0.0001478582548184,relative_legacy,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219459,12.150675473857502,baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219659,48.54268271702416,spot_baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219659,4.951024183473569,baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219659,-2.5123818781827296,peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219659,-0.0368318291205576,relative_legacy,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219659,-24.523724982686403,spot_peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219886,-3.7180508620445023,spot_peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219886,-0.0497808786598152,relative_legacy,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219886,77.67609492039661,spot_baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219886,55.98267467739698,baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219886,-3.532366174820229,peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219991,76.55347463629771,spot_baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219991,-2.517147419418292,peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219991,-0.0355197845996867,relative_legacy,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219991,36.69995607740217,baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,219991,-4.519771979678657,spot_peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,220077,0.2180881725092005,spot_peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,220077,-0.0041657643533887,relative_legacy,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,220077,-0.2175369679498044,peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,220077,37.21131795063856,baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29027,Will the New York Yankees lose the 2024 World Series in baseball in exactly 4 games?,2024-10-23 13:06:25.096754+00,220077,83.18772411916731,spot_baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29115 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,182315,-305.88936890535683,spot_baseline,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,182315,-71.30210549015023,spot_peer,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,182315,-0.9052453827900012,relative_legacy,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,182315,-255.20480071308648,baseline,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,182315,-59.12503749979081,peer,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,185690,24.645097989030223,spot_peer,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,185690,1.2704009993166707,peer,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,185690,-8.227149515104683,baseline,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,185690,0.001215429395711,relative_legacy,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,185690,-171.31188522118384,spot_baseline,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,185698,-147.39311883324126,spot_baseline,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,185698,41.69801562999819,spot_peer,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,185698,-63.32365304103464,baseline,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,185698,-0.0238488041475365,relative_legacy,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,185698,2.245681392013261,peer,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,187708,-91.3428618144702,baseline,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,187708,7.431729701348547,spot_peer,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,187708,5.674902862901707,peer,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,187708,0.0087743318349718,relative_legacy,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,187708,-195.45570292388328,spot_baseline,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,188107,-218.44245711374276,spot_baseline,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,188107,-8.956708551489205,spot_peer,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,188107,-0.8606305628338464,peer,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,188107,-0.075071492203889,relative_legacy,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,188107,-79.8525506680768,baseline,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,188389,-1.3415683111265932,relative_legacy,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,188389,-206.60221319953965,baseline,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,188389,-91.81657926711333,peer,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,188389,-255.59736518217872,spot_peer,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,188389,-564.3856189774725,spot_baseline,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,188909,-112.02942337177116,spot_baseline,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,188909,0.0752283175049981,relative_legacy,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,188909,7.31766296509017,peer,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,188909,66.91061131339093,spot_peer,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,188909,-11.894036308481136,baseline,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,189585,22.27466376124186,peer,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,189585,22.944941216905708,spot_peer,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,189585,0.2067897446273387,relative_legacy,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,189585,-152.67615559373402,baseline,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,189585,-173.6965594166206,spot_baseline,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,189588,-173.6965594166206,spot_baseline,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,189588,0.4325853424994573,peer,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,189588,22.944941216905708,spot_peer,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,189588,-3.196845846080528,baseline,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,189588,-5.405783843200236e-05,relative_legacy,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,189869,19.308089780788382,peer,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,189869,-133.80065962149726,baseline,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,189869,22.944941216905708,spot_peer,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,189869,0.1776670420379171,relative_legacy,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,189869,-173.6965594166206,spot_baseline,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,190710,-189.96950942043145,spot_baseline,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,190710,-180.30576678414272,baseline,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,190710,0.075156684697569,relative_legacy,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,190710,12.874438006280812,peer,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,190710,11.343118961956016,spot_peer,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,190772,-4.51321707675972,peer,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,190772,-8.956708551489205,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,190772,-0.1393472459450375,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,190772,-143.9799471613329,baseline,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,190772,-218.44245711374276,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191026,-173.6965594166206,spot_baseline,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191026,0.0235590714792353,relative_legacy,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191026,4.306512317831337,peer,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191026,-28.09713009449336,baseline,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191026,22.944941216905708,spot_peer,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191046,83.40299817826653,spot_peer,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191046,-48.77341563843907,baseline,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191046,47.94692934106956,peer,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191046,0.5922432429954698,relative_legacy,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191046,-88.8968687611256,spot_baseline,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191284,-132.19280948873623,spot_baseline,000_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191284,-100.44311436958564,baseline,000_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191284,0.4908563724763462,relative_legacy,000_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191284,52.53509724051746,spot_peer,000_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191284,41.92274221819816,peer,000_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191471,-0.0539230929930922,relative_legacy,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191471,1.5044920828644186,peer,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191471,-0.006966918270147,spot_peer,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191471,-130.92026044777612,baseline,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191471,-205.8893689053569,spot_baseline,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191935,-194.3416471633633,spot_baseline,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191935,8.225997299579312,spot_peer,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191935,-192.771493516354,baseline,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191935,10.526026503503102,peer,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191935,0.0400592629741446,relative_legacy,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191975,-74.78912223393456,spot_peer,jkraybill_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191975,-1.1055791029529989,relative_legacy,jkraybill_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191975,-305.776278768247,baseline,jkraybill_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191975,-74.29747979425939,peer,jkraybill_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,191975,-310.78032895345143,spot_baseline,jkraybill_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192049,-332.1928094887362,spot_baseline,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192049,-90.0551799032427,spot_peer,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192049,-0.1110146282694558,relative_legacy,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192049,-24.379916081493064,baseline,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192049,-6.453543003803463,peer,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192418,8.858861293649792,peer,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192418,-166.7835829110471,baseline,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192418,0.0255456923821317,relative_legacy,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192418,8.225997299579312,spot_peer,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192418,-194.3416471633633,spot_baseline,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192472,-100.0,spot_baseline,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192472,75.48700537569331,spot_peer,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192472,78.46510699981556,peer,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192472,0.961586833027582,relative_legacy,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192472,-97.88572853003387,baseline,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192924,-9.759051227503496,peer,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192924,-138.74129348737225,baseline,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192924,-0.2083198663588627,relative_legacy,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192924,-18.760041331362626,spot_peer,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,192924,-232.19280948873623,spot_baseline,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,193275,-204.69210473874924,spot_baseline,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,193275,-0.0653105136423014,relative_legacy,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,193275,-171.46750702031642,baseline,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,193275,0.8466242283842086,spot_peer,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,193275,2.054604152789623,peer,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,195286,0.94728062933677,peer,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,195286,-0.0101295743111817,relative_legacy,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,195286,-18.18258726742603,baseline,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,195286,8.225997299579312,spot_peer,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,195286,-194.3416471633633,spot_baseline,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,204737,-464.38561897747246,spot_baseline,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,204737,-1.175334273576205,relative_legacy,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,204737,-79.49104246308065,peer,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,204737,-184.30222661029865,spot_peer,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,204737,-204.50238399434588,baseline,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,208405,0.2122904047186284,peer,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,208405,15.848531578247856,spot_peer,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,208405,-0.0012680758981764,relative_legacy,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,208405,-2.375038898244314,baseline,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,208405,-183.65012677171205,spot_baseline,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,215725,-164.38561897747246,spot_baseline,estr.ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,215725,19.96980173714428,peer,estr.ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,215725,0.2021240296383107,relative_legacy,estr.ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,215725,-101.12113653245756,baseline,estr.ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,215725,29.583189105341607,spot_peer,estr.ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,216863,-198.22383989683624,baseline,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,216863,1.8213576688852144,peer,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,216863,-0.0752764212090032,relative_legacy,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,216863,-0.006966918270147,spot_peer,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,216863,-205.8893689053569,spot_baseline,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,218269,-232.19280948873623,spot_baseline,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,218269,-17.05874703559514,peer,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,218269,-228.3647076484681,baseline,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,218269,-18.760041331362626,spot_peer,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,218269,-0.3323921132961096,relative_legacy,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,218666,-1.6385533308500804,peer,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,218666,-204.37987707668563,baseline,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,218666,-0.1223650536464069,relative_legacy,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,218666,-3.493983662054516,spot_peer,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,218666,-210.78032895345152,spot_baseline,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,218945,-225.15387669959645,spot_baseline,SeidrBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,218945,-219.1110272363281,baseline,SeidrBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,218945,-0.261735930240955,relative_legacy,SeidrBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,218945,-13.741624445363907,spot_peer,SeidrBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,218945,-11.951269168173734,peer,SeidrBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219459,5.292499018190795,peer,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219459,-22.710968388216624,baseline,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219459,0.0396148814366331,relative_legacy,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219459,33.782022827425,spot_peer,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219459,-158.4962500721156,spot_baseline,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219659,-73.69655941662063,spot_baseline,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219659,0.1118454925700276,relative_legacy,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219659,94.2400797887858,spot_peer,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219659,9.879720966726085,peer,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219659,-7.565654970419256,baseline,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219886,9.233791207422492,spot_peer,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219886,-139.04889713052057,baseline,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219886,0.0288231978523512,relative_legacy,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219886,8.107202331967294,peer,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219886,-192.9280950923099,spot_baseline,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219991,-173.6965594166206,spot_baseline,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219991,22.944941216905708,spot_peer,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219991,13.300921030408704,peer,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219991,-84.39324925681781,baseline,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,219991,0.1140261618962003,relative_legacy,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,220077,-53.01726330809789,baseline,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,220077,30.450376622532,peer,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,220077,62.33843002039088,spot_peer,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,220077,0.3535013520965044,relative_legacy,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29028,Will the New York Yankees lose the 2024 World Series in baseball in exactly 5 games?,2024-10-23 13:06:25.100521+00,220077,-118.44245711374272,spot_baseline,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29116 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,182315,81.55754288625727,spot_baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,182315,5.225039503271221,peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,182315,68.09547473998964,baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,182315,0.052000102229683,relative_legacy,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,182315,6.17574195880334,spot_peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,185690,-0.0003268294417195,relative_legacy,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,185690,-1.0877792403461342,spot_peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,185690,-0.0410679895683808,peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,185690,3.449378735929221,baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,185690,71.36958148433591,spot_baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,185698,71.36958148433591,spot_baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,185698,-0.0606253224958005,relative_legacy,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,185698,17.066424185721168,baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,185698,-4.027900831041863,peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,185698,-1.0877792403461342,spot_peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,187708,-0.0153418998915384,relative_legacy,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,187708,-0.5280336664302837,peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,187708,-0.8372136039926642,spot_peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,187708,33.993888553857964,baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,187708,71.72102990195957,spot_baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,188107,76.27031555798145,spot_baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,188107,2.406205908498786,spot_peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,188107,0.0052396298763266,relative_legacy,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,188107,0.804919229844319,peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,188107,28.505636984809502,baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,188389,15.018284892525326,spot_peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,188389,34.746132347549874,baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,188389,0.0696705937887079,relative_legacy,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,188389,5.42928096646002,peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,188389,93.9602720356044,spot_baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,188909,60.40713236688608,spot_baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,188909,-0.936170141451574,peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,188909,6.485140328766477,baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,188909,-8.903472529503837,spot_peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,188909,-0.013615199473519,relative_legacy,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,189585,-10.265838709505957,spot_peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,189585,-3.3770695263460246,peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,189585,-0.067028769856075,relative_legacy,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,189585,59.37464097107128,baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,189588,0.0513515089277035,peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,189588,0.0007129850427313,relative_legacy,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,189588,1.406748620375738,baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,189588,2.608084565763219,spot_peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,189869,1.390826064928655,spot_peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,189869,0.9702386385094316,peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,189869,57.65564385104005,baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,189869,-0.004928143655448,relative_legacy,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,189869,74.84612330040356,spot_baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,190710,73.11832415721999,spot_baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,190710,0.1589892715521751,spot_peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,190710,0.3654090112579737,peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,190710,-0.0184067525482596,relative_legacy,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,190710,69.4576897947921,baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,190772,3.120873169151444,peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,190772,5.000218959802155,spot_peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,190772,0.0294075407026376,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,190772,52.70933034817155,baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,190772,79.90873060740036,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191026,86.55229591399637,spot_baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191026,1.5654345823536977,peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191026,9.736758051253132,spot_peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191026,0.0199460844695165,relative_legacy,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191026,14.001239406323574,baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191046,-0.040585217129272,relative_legacy,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191046,-3.627590821070066,spot_peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191046,37.32750540709991,baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191046,-2.1960339592546103,peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191284,36.88361803301789,baseline,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191284,-17.362248348163835,spot_peer,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191284,-13.563602685344586,peer,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191284,-0.2047864953429836,relative_legacy,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191471,47.643164142178726,baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191471,1.390826064928655,spot_peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191471,-0.0034752172935025,relative_legacy,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191471,0.6689005525851186,peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191471,74.84612330040356,spot_baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191935,76.55347463629771,spot_baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191935,3.010970740774116,peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191935,2.608084565763219,spot_peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191935,75.935578402079,baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191935,0.0150289878697453,relative_legacy,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191975,64.20769228399863,baseline,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191975,6.6440294543765805,peer,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191975,0.073877299690613,relative_legacy,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191975,8.867484354237202,spot_peer,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,191975,85.33303508579907,spot_baseline,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192049,74.84612330040356,spot_baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192049,0.0013534255304277,relative_legacy,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192049,5.591738159348921,baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192049,1.390826064928655,spot_peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192049,0.1212549431872264,peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192418,58.20309338963678,baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192418,-3.627590821070066,spot_peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192418,-0.0637482082829786,relative_legacy,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192418,-3.187392667826184,peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192418,67.80719051126377,spot_baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192472,44.36066514756145,spot_baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192472,-20.34382356941265,spot_peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192472,43.52342561513471,baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192472,-20.446481778472997,peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192472,-0.30082320786818,relative_legacy,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192924,1.3623249899099004,peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192924,0.0074829831321697,relative_legacy,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192924,2.608084565763219,spot_peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192924,45.78771878528313,baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,193275,77.56827017390599,spot_baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,193275,2.7783040950092124,peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,193275,65.73561389274748,baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,193275,0.0180851441528635,relative_legacy,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,193275,3.331584450522297,spot_peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,195286,-0.3179215345177748,peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,195286,6.343350310783736,baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,195286,-0.0046427148019475,relative_legacy,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,195286,-3.627590821070066,spot_peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,204737,67.80719051126377,spot_baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,204737,-0.0312603926675819,relative_legacy,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,204737,-1.7297997358909991,peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,204737,-3.627590821070066,spot_peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,204737,30.033484824255645,baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,208405,0.0051117936698382,peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,208405,2.721007859788998e-05,relative_legacy,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,208405,0.1589892715521751,spot_peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,208405,0.9487802670830504,baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,208405,73.11832415721999,spot_baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,215725,14.048435605672012,spot_peer,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,215725,8.532482291720054,peer,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,215725,0.1062130774478638,relative_legacy,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,215725,57.02652719149929,baseline,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,216863,73.72401897044246,baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,216863,2.608084565763219,spot_peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,216863,0.0146296033610197,relative_legacy,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,216863,2.8473337073800726,peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,216863,76.55347463629771,spot_baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,218269,76.55347463629771,spot_baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,218269,0.0150289878697453,relative_legacy,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,218269,3.010970740774116,peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,218269,75.31390213891395,baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,218269,2.608084565763219,spot_peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,218666,71.34852119660977,baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,218666,-0.0151083942892234,relative_legacy,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,218666,0.4065396746960085,spot_peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,218666,0.6867011022757689,peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,218666,73.4655433479005,spot_baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,218945,70.48719644563528,spot_baseline,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,218945,68.62785712819984,baseline,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,218945,-1.7168768764252909,spot_peer,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,218945,-1.445651850468072,peer,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,218945,-0.0440336070356695,relative_legacy,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219459,0.0077333457749662,relative_legacy,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219459,11.371062875941387,baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219459,0.6574248434885537,peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219459,4.605373396779389,spot_peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219459,79.35491225325737,spot_baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219659,48.54268271702416,spot_baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219659,5.020200808204861,baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219659,-0.0252603721402969,relative_legacy,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219659,-1.7760296169681888,peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219659,-17.362248348163835,spot_peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219886,0.0951549709545666,relative_legacy,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219886,63.96362346673399,baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219886,11.300967933171616,spot_peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219886,8.088113927244251,peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219886,88.74628825800656,spot_baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219991,76.55347463629771,spot_baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219991,2.608084565763219,spot_peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219991,0.0075626216924829,relative_legacy,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219991,1.151697514903678,peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,219991,37.53381150546554,baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,220077,-0.0562982795271472,relative_legacy,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,220077,-3.5250113234926728,peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,220077,-7.558915568290411,spot_peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,220077,27.895979982453905,baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29029,Will the New York Yankees lose the 2024 World Series in baseball in exactly 6 games?,2024-10-23 13:06:25.104354+00,220077,62.29303509201767,spot_baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29117 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,182315,78.24085649273731,spot_baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,182315,3.9362321568164185,peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,182315,4.569310137817355,spot_peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,182315,0.0472583372052207,relative_legacy,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,182315,65.38154295463094,baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,185690,8.823122533736756,spot_peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,185690,0.4224318667241217,peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,185690,4.093849435500768,baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,185690,0.0067180618547635,relative_legacy,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,185690,84.197311892718,spot_baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,185698,62.29303509201767,spot_baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,185698,19.89080854299076,baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,185698,-6.819852679134204,spot_peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,185698,-0.0242552026165845,relative_legacy,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,185698,-1.8639045075719851,peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,187708,-10.775174632939812,spot_peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,187708,-0.0759500458973695,relative_legacy,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,187708,27.31389957500257,baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,187708,-5.4132873937454695,peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,187708,56.754544764374685,spot_baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,188107,70.19186470670054,spot_baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,188107,-0.008482292693094,relative_legacy,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,188107,-1.1788905511709196,spot_peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,188107,-0.6554229564736369,peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,188107,27.20546893649117,baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,188389,14.606739962829227,spot_peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,188389,0.0806697541818932,relative_legacy,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,188389,5.780722340226547,peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,188389,35.37561930112903,baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,188389,92.2958964236172,spot_baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,188909,65.99245584023782,spot_baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,188909,-4.177905282608506,spot_peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,188909,-0.0051382208682487,relative_legacy,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,188909,-0.4621737485983205,peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,188909,7.1578616184065496,baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,189585,-0.124470376470368,relative_legacy,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,189585,-8.634315191479562,peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,189585,51.41053453823582,baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,189585,-9.531332930015102,spot_peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,189588,67.80719051126377,spot_baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,189588,1.2208882908729148,baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,189588,-2.8819095400835195,spot_peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,189588,-0.071477922164236,peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,189588,-0.0004269808054615,relative_legacy,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,189869,56.32545109663282,baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,189869,0.7986566431686548,peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,189869,0.002153898088686,relative_legacy,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,189869,0.9110452664993568,spot_peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,189869,73.11832415721999,spot_baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,190710,77.90495528374585,spot_baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,190710,4.329425738344318,spot_peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,190710,0.0461096645273742,relative_legacy,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,190710,74.09064183423371,baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,190710,3.958465110279061,peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,190772,1.3969401223313354,peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,190772,0.012302674690758,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,190772,2.144955859191282,spot_peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,190772,49.91711231581484,baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,190772,74.84612330040356,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191026,79.07720378619997,spot_baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191026,0.7901690166255046,peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191026,0.0098117408425328,relative_legacy,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191026,12.792587629351443,baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191026,5.166588929535762,spot_peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191046,37.28179954967158,baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191046,-1.7459797402571529,peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191046,-0.0263988375396782,relative_legacy,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191046,-2.8819095400835195,spot_peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191284,26.303440583379377,spot_baseline,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191284,-32.521880641176104,spot_peer,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191284,-25.10967886957389,peer,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191284,-0.3535523550575833,relative_legacy,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191284,19.98573440861348,baseline,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191471,48.78091187568732,baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191471,0.0231821488691383,relative_legacy,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191471,3.3642636167612774,spot_peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191471,2.084383303474761,peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191471,76.55347463629771,spot_baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191935,79.90873060740036,spot_baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191935,5.760425173079713,spot_peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191935,5.404839410589568,peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191935,0.0650553250850016,relative_legacy,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,191935,79.26407491121873,baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192049,-0.0313206807419738,peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192049,0.0005627763208171,relative_legacy,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192049,-0.3378221822876674,spot_peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192049,5.427364417667973,baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192049,71.36958148433591,spot_baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192418,60.40713236688608,spot_baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192418,-8.166673204255392,spot_peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192418,-0.1042303509266217,relative_legacy,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192418,51.86023893835218,baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192418,-7.177774012378327,peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192472,0.9110452664993568,spot_peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192472,0.4410171514173134,peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192472,71.85093645799202,baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192472,-0.0016372440831461,relative_legacy,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192472,73.11832415721999,spot_baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192924,5.48857407726585,peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192924,50.75844480366974,baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192924,0.0718816183505341,relative_legacy,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,192924,9.253312315422656,spot_peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,193275,60.6662713422003,baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,193275,-1.0754219832874372,peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,193275,-1.0944740753052296,spot_peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,193275,-0.0209793237797288,relative_legacy,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,193275,70.31006996041599,spot_baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,195286,-0.274956976223818,peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,195286,6.342662897424821,baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,195286,-2.8819095400835195,spot_peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,195286,-0.0025634456715709,relative_legacy,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,204737,19.073149022534903,spot_peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,204737,0.1149901680033924,relative_legacy,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,204737,8.359900039255495,peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,204737,43.8342753409608,baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,208405,0.8817426831197523,baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,208405,-2.8819095400835195,spot_peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,208405,-0.0349796071679366,peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,208405,-7.985506711420597e-06,relative_legacy,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,215725,-1.111003473482762,peer,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,215725,-0.0200491552359728,relative_legacy,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,215725,42.91553409186264,baseline,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,215725,-1.602013540232182,spot_peer,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,215725,69.59938131099001,spot_baseline,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,216863,58.496250072115615,spot_baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,216863,-0.1411340894343852,relative_legacy,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,216863,-9.531332930015102,spot_peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,216863,56.347660419212886,baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,216863,-9.87085276015118,peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,218269,0.1131855539670668,relative_legacy,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,218269,83.44841258654918,baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,218269,9.253312315422656,spot_peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,218269,8.993053139532227,peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,218269,84.79969065549501,spot_baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,218666,81.55754288625727,spot_baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,218666,79.34281433669334,baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,218666,6.593349034172024,peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,218666,6.937927167028731,spot_peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,218666,0.0811344915783195,relative_legacy,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,218945,5.997004618085504,spot_peer,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,218945,5.643426031781223,peer,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,218945,0.0683168859194159,relative_legacy,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,218945,78.16513599047117,baseline,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,218945,80.24000401148393,spot_baseline,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,219459,78.24085649273731,spot_baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,219459,0.6206045198305838,peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,219459,11.211689381787217,baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,219459,0.0081469881455874,relative_legacy,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,219459,4.569310137817355,spot_peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,219659,-16.639689386246474,spot_peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,219659,5.084119707020177,baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,219659,-0.0230203414930834,relative_legacy,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,219659,-1.752643380058444,peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,219659,48.54268271702416,spot_baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,219886,76.97378926344504,spot_baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,219886,55.47934990836061,baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,219886,3.664431997297011,spot_peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,219886,2.7090994795439736,peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,219886,0.0285679776301174,relative_legacy,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,220077,4.569310137817355,spot_peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,220077,0.0248266075353088,relative_legacy,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,220077,1.863329760321489,peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,220077,35.06069771742077,baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29030,Will the New York Yankees lose the 2024 World Series in baseball in exactly 7 games?,2024-10-23 13:06:25.108002+00,220077,78.24085649273731,spot_baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,0.333333,2024-10-24 14:30:00+00,29118 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,182315,40.600024660274144,baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,182315,-0.0557228361829668,relative_legacy,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,182315,21.158069945212382,peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,182315,8.789818246488988,spot_peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,182315,48.54268271702416,spot_baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,185690,0.0020170716801466,relative_legacy,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,185690,77.98900393400471,spot_baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,185690,29.767414846163007,spot_peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,185690,1.5419170079886022,peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,185690,3.818027454281108,baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,185698,12.871101249966513,peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,185698,26.46289440290839,baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,185698,99.85565831303312,spot_baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,185698,0.0538637299029424,relative_legacy,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,185698,45.345247172573735,spot_peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,185699,0.0686207284641461,relative_legacy,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,185699,76.55347463629771,spot_baseline,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,185699,28.744741952920723,spot_peer,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,185699,40.71725617694028,baseline,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,185699,20.366530753576896,peer,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,187708,13.270344567546047,peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,187708,30.474155967847008,baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,187708,62.48027652529473,spot_baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,187708,-0.0122269475467351,relative_legacy,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,187708,18.71897776103682,spot_peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,188107,10.006137504653188,spot_peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,188107,-0.0664678398726137,relative_legacy,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,188107,50.25003405291832,spot_baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,188107,7.016495062195537,peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,188107,20.427898744094367,baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,188389,27.8884405000842,baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,188389,12.314491790252852,peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,188389,22.64227003794267,spot_peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,188389,67.98741477466231,spot_baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,188389,0.0056390599928987,relative_legacy,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,188909,15.88075226042567,spot_peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,188909,58.496250072115615,spot_baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,188909,-0.011071334117533,relative_legacy,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,188909,6.413326037743007,baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,188909,2.0971491990066222,peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,189585,-0.0401978224873439,relative_legacy,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,189585,23.635010991679067,peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,189585,43.11702624320934,baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,189585,22.513878044009378,spot_peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,189588,28.744741952920723,spot_peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,189588,0.0001117107772544,relative_legacy,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,189588,0.5327744874660371,peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,189588,1.4015655587914804,baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,189869,38.32107116902408,peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,189869,0.206809200000733,relative_legacy,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,189869,65.32501275034315,baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,189869,34.61935670869324,spot_peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,190710,10.247683509551193,spot_peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,190710,50.58909297299573,spot_baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,190710,0.0081265282780888,relative_legacy,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,190710,48.16398017594823,baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,190710,29.1389779787841,peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,190772,29.606422404869733,baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,190772,12.20509769478384,peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,190772,-0.1004057198361383,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,190772,44.36066514756145,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,190772,5.810543623404718,spot_peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191026,-0.0277949498589584,relative_legacy,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191026,50.58909297299573,spot_baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191026,10.247683509551193,spot_peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191026,2.379417852832705,peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191026,8.184333655974191,baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191046,10.257144024148294,peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191046,26.74062838187764,baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191046,8.789818246488988,spot_peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191046,48.54268271702416,spot_baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191046,-0.0794256359095675,relative_legacy,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191284,76.55347463629771,spot_baseline,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191284,28.744741952920723,spot_peer,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191284,0.1403336009939058,relative_legacy,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191284,33.061455036414095,peer,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191284,58.16599432236807,baseline,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191471,3.608153895760843,baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191471,-6.552614969736663,peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191471,-0.3471982104624711,relative_legacy,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191471,5.658352836636751,spot_baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191471,-21.761032776603965,spot_peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191935,60.40713236688608,spot_baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191935,0.1131677230697915,relative_legacy,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191935,17.24206723195558,spot_peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191935,38.05940522679634,peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191935,59.23830904710206,baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191975,-53.253878381764,peer,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191975,-63.56488555901741,baseline,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191975,-74.4824008170078,spot_peer,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191975,-68.34680456735813,spot_baseline,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,191975,-1.1000514595672917,relative_legacy,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192049,40.17626556147157,spot_peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192049,0.0161314478077349,relative_legacy,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192049,7.152432808364636,baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192049,3.289241291024789,peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192418,-44.18757339837924,baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192418,-0.9087701702853196,relative_legacy,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192418,-40.25972139149527,peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192418,-62.45030864439427,spot_peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192472,8.789818246488988,spot_peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192472,48.54268271702416,spot_baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192472,-0.0006134099643958,relative_legacy,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192472,47.804779797165466,baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192472,30.009488435786444,peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192924,-22.975349135561185,peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192924,-19.288847758577585,baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192924,-0.5596961519463016,relative_legacy,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192924,-48.72624884687389,spot_peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,192924,-32.19280948873623,spot_baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,193275,-0.2682031967579074,relative_legacy,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,193275,23.143240844796505,spot_baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,193275,-9.304776372862127,spot_peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,193275,20.358614376713252,baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,193275,7.08672896502526,peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,195286,7.256370093415762,baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,195286,2.995163532573323,peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,195286,0.006206713626338,relative_legacy,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,195286,28.744741952920723,spot_peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,204737,28.744741952920723,spot_peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,204737,0.0460207421113582,relative_legacy,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,204737,34.2546359004879,baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,204737,16.374000083695393,peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,208405,0.446613021618764,peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,208405,0.0010239364943895,relative_legacy,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,208405,1.0940180503146522,baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,208405,34.61935670869324,spot_peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,215725,58.496250072115615,spot_baseline,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,215725,15.88075226042567,spot_peer,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,215725,16.903042374500682,peer,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,215725,-0.0137379005873293,relative_legacy,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,215725,36.11661924649528,baseline,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,216863,-2.145338708865508,relative_legacy,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,216863,-167.356373650803,baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,216863,-129.07057316435836,peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,216863,-149.53369985085683,spot_peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,216863,-173.6965594166206,spot_baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,218269,-173.6965594166206,spot_baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,218269,-149.53369985085683,spot_peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,218269,-170.9552264398434,baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,218269,-132.16853669494105,peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,218269,-2.187931344780149,relative_legacy,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,218666,-0.073277696257674,relative_legacy,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,218666,23.938150325978206,peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,218666,40.35977385495704,baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,218666,41.35940824091752,spot_baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,218666,3.672444394790176,spot_peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,218945,-0.6245710042162435,relative_legacy,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,218945,-15.200309344505014,spot_baseline,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,218945,-36.62077018219004,spot_peer,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,218945,-16.763214571011996,peer,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,218945,-14.815895796985917,baseline,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219459,10.560774244757956,baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219459,4.412723323011804,peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219459,26.70947192525781,spot_peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219459,0.0075156984275122,relative_legacy,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219459,73.69655941662059,spot_baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219659,26.303440583379377,spot_baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219659,-7.053446069090326,spot_peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219659,-0.4178550062042019,peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219659,-0.04489610344136,relative_legacy,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219659,2.7769147217899106,baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219886,-20.04906381308497,baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219886,-23.616399132390875,peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219886,-45.60846442338861,spot_peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219886,-0.6228641546927278,relative_legacy,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219886,-27.816365257719195,spot_baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219991,82.37493603082727,spot_baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219991,0.0885462698530654,relative_legacy,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219991,32.89195843728737,spot_peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219991,20.810108522856765,peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,219991,41.08794016369557,baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,220077,40.13541162842044,baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,220077,0.1043438351078114,relative_legacy,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,220077,20.586428533718085,peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,220077,37.98942183216729,spot_peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29031,"Will Brian Daboll cease to be the New York Giants head coach before January 1, 2025?",2024-10-23 13:06:25.27206+00,220077,89.53026213333065,spot_baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29119 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,182315,-99.14573621125652,baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,182315,-22.624199923255105,peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,182315,-0.5218692050029118,relative_legacy,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,182315,-39.04915262730078,spot_peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,182315,-118.44245711374276,spot_baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,185690,-50.43048373759311,spot_baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,185690,0.5222164636193608,peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,185690,0.0004259716722953,relative_legacy,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,185690,-2.4835674212593197,baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,185690,9.402663506861977,spot_peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,185698,0.4470584853890234,relative_legacy,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,185698,26.303440583379377,spot_baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,185698,34.6547610637644,peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,185698,28.18832795637999,baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,185698,64.0680085614771,spot_peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,185699,48.28222441459676,peer,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,185699,29.704481830529765,baseline,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,185699,54.59683691052925,spot_baseline,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,185699,84.22426000667917,spot_peer,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,185699,0.5719124657969923,relative_legacy,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,187708,43.39147794107425,baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,187708,87.81367666269476,spot_baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,187708,0.6837681766542786,relative_legacy,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,187708,107.88797879526324,spot_peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,187708,54.866562198141104,peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,188107,-0.0456955590739717,relative_legacy,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,188107,-1.6152094766277778,spot_peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,188107,-65.89630821649325,spot_baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,188107,0.0616464120893418,peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,188107,-27.20842708442605,baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,188389,-5.590464057038749,baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,188389,0.1942761236453561,relative_legacy,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,188389,19.84190772254828,peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,188389,-11.24747292584125,spot_baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,188389,37.31669012882252,spot_peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,188909,-10.65644447385116,spot_peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,188909,-0.9624721817809202,peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,188909,-8.712031747574358,baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,188909,-78.58751946471523,spot_baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,188909,-0.0219359494964607,relative_legacy,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,189585,-116.15853383761552,baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,189585,-0.6610871898590986,relative_legacy,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,189585,-33.445959697502,peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,189585,-132.19280948873626,spot_baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,189585,-48.84492110718973,spot_peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,189588,0.2902671069006579,peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,189588,-41.50374992788438,spot_baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,189588,0.0010694946483915,relative_legacy,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,189588,15.762080000109847,spot_peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,189588,-0.768101250653272,baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,189869,0.8543345002069198,relative_legacy,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,189869,76.9233622770936,peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,189869,87.00220689099311,spot_peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,189869,45.06285923292615,baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,190710,-51.415403356497954,baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,190710,-53.95195299599887,spot_baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,190710,6.893964338750256,spot_peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,190710,0.022866356471599,relative_legacy,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,190710,15.725354108121785,peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,190772,14.745179650539054,peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,190772,-29.010571849393624,baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,190772,14.382491799306507,spot_peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,190772,-43.440282414577496,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,190772,0.0497653280446606,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191026,3.427366220358361,peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191026,0.0305124854342409,relative_legacy,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191026,19.793097740863768,spot_peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191026,-35.845397091247634,spot_baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191026,-5.799340174382879,baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191046,-12.36708000532675,peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191046,-0.2735056235631696,relative_legacy,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191046,-100.0,spot_baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191046,-55.215877841468206,baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191046,-25.910722777673705,spot_peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191284,-39.097475692093006,baseline,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191284,0.0049048525576296,relative_legacy,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191284,-51.45731728297583,spot_baseline,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191284,14.961621179103426,peer,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191284,8.671145986173174,spot_peer,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191471,-5.085138004486558,peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191471,-53.38886198591937,baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191471,-83.65012677171204,spot_baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191471,-14.263052343342816,spot_peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191471,-0.2092419622910816,relative_legacy,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191935,56.97707454754045,spot_peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191935,0.7080868052321484,relative_legacy,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191935,16.349873228287958,spot_baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191935,66.36470753355064,peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,191935,16.05399763443149,baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192049,0.064701953636487,relative_legacy,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192049,2.0635904264495246,baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192049,5.154642445450946,peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192049,64.0680085614771,spot_peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192418,-126.6095807121472,baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192418,-41.722464303791305,peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192418,-147.39311883324118,spot_baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192418,-59.67364077202183,spot_peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192418,-0.7802528785861067,relative_legacy,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192459,-723.8755741281335,baseline,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192459,-477.8579954739431,peer,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192459,-593.3942060024044,spot_peer,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192459,-896.5784284662086,spot_baseline,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192459,-6.791201294140048,relative_legacy,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192472,17.126676852343014,peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192472,-50.77678733958271,baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192472,-51.45731728297583,spot_baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192472,0.0425509131980511,relative_legacy,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192472,8.671145986173174,spot_peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192924,-35.97610989450728,baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192924,-59.94620704162715,spot_baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192924,4.724098218798515,peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192924,-0.0552211991724529,relative_legacy,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,192924,2.6236501504827854,spot_peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,193275,-7.515283181695135,spot_peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,193275,3.48155756924778,peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,193275,-74.17826104639818,spot_baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,193275,-66.45066226839393,baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,193275,-0.154733245266917,relative_legacy,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,195286,-0.070812785398289,relative_legacy,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,195286,-132.19280948873626,spot_baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,195286,-4.474071827525083,peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,195286,-48.84492110718973,spot_peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,195286,-12.598069052383895,baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,204737,-35.3115817652451,baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,204737,-78.58751946471523,spot_baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,204737,-10.65644447385116,spot_peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,204737,-3.921225969701432,peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,204737,-0.1083016362367963,relative_legacy,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,208405,0.0136708279762768,relative_legacy,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,208405,0.7684302461079517,baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,208405,93.63533267457684,spot_peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,208405,1.1316791138842313,peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,215725,64.0680085614771,spot_peer,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,215725,16.2592013464105,baseline,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,215725,43.61837418467398,peer,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,215725,26.303440583379377,spot_baseline,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,215725,0.4763941436386096,relative_legacy,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,216863,53.84821910919469,peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,216863,0.5389150160811553,relative_legacy,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,216863,0.0,baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,216863,0.0,spot_baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,216863,45.32940411320956,spot_peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,218269,-7.172118329406132,spot_peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,218269,0.8886629831400495,peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,218269,-72.54576651068503,baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,218269,-73.69655941662059,spot_baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,218269,-0.1763687867137637,relative_legacy,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,218666,41.47115728956575,peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,218666,32.65708743335884,spot_peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,218666,-17.387545379180075,baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,218666,0.3713940793538009,relative_legacy,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,218666,-17.788172527065527,spot_baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,218945,-7.172118329406132,spot_peer,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,218945,-73.69655941662059,spot_baseline,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,218945,1.1877904820712035,peer,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,218945,-71.86862947151602,baseline,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,218945,-0.1738225730275877,relative_legacy,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219459,-0.8120260183641361,peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219459,-7.172118329406132,spot_peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219459,-0.0237297693446306,relative_legacy,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219459,-10.561016641549571,baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219459,-73.69655941662059,spot_baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219659,-18.50739213046032,baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219659,-0.1226630054375348,relative_legacy,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219659,-8.152531200631916,peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219659,-78.41224522028939,spot_peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219659,-173.6965594166206,spot_baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219886,0.3518660487565095,relative_legacy,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219886,-1.5251676383169497,baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219886,38.82984862329431,peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219886,-2.1160061607053424,spot_baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219886,43.82195863930416,spot_peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219991,0.5931137636745424,relative_legacy,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219991,93.63533267457684,spot_peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219991,48.63900511916664,peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219991,67.80719051126377,spot_baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,219991,34.062800488037794,baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,220077,-0.538992545822458,spot_peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,220077,-0.0440646958624775,relative_legacy,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,220077,-64.38561897747249,spot_baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,220077,0.6562762650498534,peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29032,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on Monday December 30, 2024?",2024-10-23 13:06:25.278235+00,220077,-28.87891718446363,baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29120 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,182315,66.95194261612203,baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,182315,8.639792704450269,peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,182315,10.903187617274565,spot_peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,182315,79.90873060740036,spot_baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,182315,0.0417080683378344,relative_legacy,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,185690,72.2466024471091,spot_baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,185690,0.0004540331211287,relative_legacy,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,185690,5.435999717309272,spot_peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,185690,3.5794545667263367,baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,185690,0.2967377172935175,peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,185698,-21.459391739516327,peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,185698,-10.079335847843984,baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,185698,-74.3652493312164,spot_peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,185698,-0.3311692022512241,relative_legacy,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,185698,-39.592867633113926,spot_baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,185699,81.55754288625727,spot_baseline,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,185699,12.07967101088278,spot_peer,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,185699,0.0359099045601691,relative_legacy,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,185699,45.98835410373564,baseline,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,185699,6.556504360596379,peer,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,187708,41.19571170698351,baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,187708,6.046402622106183,peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,187708,0.0345159132213121,relative_legacy,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,187708,12.31336277179122,spot_peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,187708,81.88505608954335,spot_baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,188389,97.52633216784936,spot_baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,188389,23.473942903888663,spot_peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,188389,0.1147070433635286,relative_legacy,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,188389,11.864648597436275,peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,188389,49.7627557179977,baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,188909,4.9750637975529965,baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,188909,-1.5340814145309134,peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,188909,44.36066514756145,spot_baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,188909,-0.0284111894907671,relative_legacy,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,188909,-14.461560829039264,spot_peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,189585,8.509098865070582,spot_peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,189585,1.41356521881818,peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,189585,-0.057523667920686,relative_legacy,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,189585,59.86135346834104,baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,189588,1.4855424117332134,baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,189588,0.1640779438355653,peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,189588,0.0001507709172126,relative_legacy,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,189588,8.509098865070582,spot_peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,189869,8.509098865070582,spot_peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,189869,0.0076931566672923,relative_legacy,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,189869,58.97425340960408,baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,189869,6.093144034703308,peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,190710,76.22302988372729,baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,190710,9.68949479022397,peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,190710,10.903187617274565,spot_peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,190710,79.90873060740036,spot_baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,190710,0.0491523507682871,relative_legacy,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,190772,0.1250326963376746,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,190772,94.11063109464314,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,190772,21.036724524521134,spot_peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,190772,62.89684868352114,baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,190772,13.773360446883336,peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191026,3.5110092524840235,peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191026,15.226824021663752,baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191026,21.036724524521134,spot_peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191026,94.11063109464314,spot_baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191026,0.036100120748023,relative_legacy,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191046,-19.106311519675824,spot_peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191046,37.85116232537298,spot_baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191046,-0.2057416303935236,relative_legacy,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191046,-10.94086335720798,peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191046,20.874088106203228,baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191284,6.022771063045212,peer,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191284,58.16530294423968,baseline,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191284,76.55347463629771,spot_baseline,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191284,0.0076931566672923,relative_legacy,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191284,8.509098865070582,spot_peer,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191471,4.810215562387603,spot_peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191471,71.36958148433591,spot_baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191471,-0.0254259553143019,relative_legacy,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191471,45.59694985929099,baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191471,2.6482556961526766,peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191935,81.81149086220738,baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191935,12.427526498392536,peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191935,83.18772411916731,spot_baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191935,0.0835563915972969,relative_legacy,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,191935,13.242860522317104,spot_peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192049,-0.0017454714630452,relative_legacy,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192049,2.26832897220228,spot_peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192049,0.2405762375399856,peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192049,5.392680826839787,baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192418,32.52138590746232,baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192418,-17.541697694453116,peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192418,-0.3170648709600252,relative_legacy,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192418,-19.106311519675824,spot_peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192472,-0.3624892147221387,relative_legacy,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192472,-19.106311519675824,spot_peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192472,-20.671548711253596,peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192472,37.40624950285004,baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192924,4.760352689433726,peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192924,0.0076931566672923,relative_legacy,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192924,45.97392962073472,baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,192924,8.509098865070582,spot_peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,193275,61.72984828408463,spot_baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,193275,-2.068060499925623,spot_peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,193275,-0.1201062731066557,relative_legacy,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,193275,56.67461838807044,baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,193275,-2.945962593094855,peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,195286,-1.023393877097602,peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,195286,4.654837855785802,baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,195286,-11.477549680322117,spot_peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,195286,-0.0202185255124989,relative_legacy,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,204737,-50.31666170959088,spot_peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,204737,-5.889368905356857,spot_baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,204737,-0.3650256079007984,relative_legacy,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,204737,-2.662545599098925,baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,204737,-22.97822428064515,peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,208405,1.40324913099418,baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,208405,0.295518393207419,peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,208405,0.0023275936011245,relative_legacy,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,208405,19.95879659700544,spot_peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,215725,84.79969065549501,spot_baseline,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,215725,14.393053230947633,spot_peer,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,215725,0.0587237449168709,relative_legacy,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,215725,52.47713724037805,baseline,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,215725,8.573542302008274,peer,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,216863,7.39904008363745,peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,216863,73.7898858589585,baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,216863,76.55347463629771,spot_baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,216863,0.0171473653043801,relative_legacy,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,216863,8.509098865070582,spot_peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,218269,67.80719051126377,spot_baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,218269,2.26832897220228,spot_peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,218269,66.76302648817338,baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,218269,-0.067541866487312,relative_legacy,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,218269,1.2304202702010638,peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,218666,78.95141198465905,baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,218666,10.453067515333794,peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,218666,11.375395676809006,spot_peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,218666,80.57051848385113,spot_baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,218666,0.0573639883385425,relative_legacy,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,218945,-0.9999193837103912,spot_peer,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,218945,63.22682154995129,spot_baseline,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,218945,-0.1118452206729022,relative_legacy,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,218945,61.68558239658648,baseline,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,218945,-2.1196560672296023,peer,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219459,9.71729046337599,baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219459,0.4178756116506593,peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219459,-0.0048409393006052,relative_legacy,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219459,67.80719051126377,spot_baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219459,2.26832897220228,spot_peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219659,-11.477549680322117,spot_peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219659,48.54268271702416,spot_baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219659,5.238525573432317,baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219659,-1.1517487979334826,peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219659,-0.0225349316022801,relative_legacy,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219886,1.3225921613769955,baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219886,-33.28653587644709,peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219886,-0.5308674801693481,relative_legacy,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219886,-44.8051121728819,spot_peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219886,1.834930987889213,spot_baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219991,8.509098865070582,spot_peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219991,76.55347463629771,spot_baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219991,0.0076931566672923,relative_legacy,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219991,4.132641354706786,peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,219991,38.75541763856107,baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,220077,41.5528290171444,baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,220077,9.002779005269195,peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,220077,0.0796992611347676,relative_legacy,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29033,"Will BigBear.AI file for bankruptcy before January 1, 2025?",2024-10-23 13:06:25.28347+00,220077,19.95879659700544,spot_peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29121 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,182315,-94.34164716336323,spot_baseline,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,182315,-0.1971568865772512,relative_legacy,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,182315,-6.434973594654198,spot_peer,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,182315,-14.23388244352192,peer,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,182315,-79.10810434839293,baseline,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,185690,-0.0031513519607677,relative_legacy,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,185690,-0.743243199403173,peer,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,185690,-9.441120966017175,spot_peer,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,185690,-4.91217720161959,baseline,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,185690,-98.56447070229298,spot_baseline,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,185698,-132.19280948873623,spot_baseline,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,185698,21.885889272991992,baseline,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,185698,-33.380492648072185,spot_peer,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,185698,31.816514958936224,peer,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,185698,0.4015892310063289,relative_legacy,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,185699,-127.4860272729854,spot_peer,MWG,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,185699,-154.79442734286124,baseline,MWG,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,185699,-1.1306864304102755,relative_legacy,MWG,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,185699,-79.34194796752219,peer,MWG,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,185699,-264.38561897747246,spot_baseline,MWG,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,187708,54.59683691052925,spot_baseline,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,187708,47.94605887003373,peer,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,187708,0.6311405661994816,relative_legacy,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,187708,99.5914867264878,spot_peer,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,187708,28.1566992059701,baseline,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,188107,2.391546222717545,spot_peer,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,188107,-0.0722691461255715,relative_legacy,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,188107,-2.4874298008250406,peer,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,188107,-34.69431306529762,baseline,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,188107,-81.94277543581788,spot_baseline,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,188389,-68.96598793878495,spot_baseline,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,188389,11.629473231343743,spot_peer,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,188389,0.007637610891875,relative_legacy,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,188389,0.7164826394495664,peer,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,188389,-64.33552384507028,baseline,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,188909,-0.6800174634901202,baseline,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,188909,5.541207044734312,peer,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,188909,56.5325128098959,spot_peer,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,188909,0.0695760172573076,relative_legacy,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,188909,-5.889368905356857,spot_baseline,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,189585,-73.69655941662063,spot_baseline,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,189585,8.261869806279813,spot_peer,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,189585,-29.334796295928367,baseline,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,189585,23.6594068547842,peer,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,189585,0.3212611205267809,relative_legacy,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,189588,-62.926219007984834,spot_peer,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,189588,-3.343468745944189,baseline,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,189588,-0.0129534617848703,relative_legacy,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,189588,-1.2544118879010775,peer,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,189588,-173.6965594166206,spot_baseline,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,189869,-100.0,spot_baseline,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,189869,-15.14391542746806,peer,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,189869,-77.03781178814394,baseline,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,189869,-0.2015667288233693,relative_legacy,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,189869,-10.463046837423631,spot_peer,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,190710,77.72382214480801,spot_peer,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,190710,65.39615159564845,peer,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,190710,22.79918882335504,baseline,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,190710,0.888476674754849,relative_legacy,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,190710,23.87868595871165,spot_baseline,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,190772,35.61438102252753,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,190772,86.07823916980853,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,190772,0.7276345732976508,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,190772,53.091077564575386,peer,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,190772,23.818662310135718,baseline,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191026,-25.95296524259708,spot_peer,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191026,-19.701425705887857,baseline,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191026,-0.0911537460182405,relative_legacy,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191026,-5.669666338879684,peer,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191026,-121.75914350726268,spot_baseline,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191046,-83.65012677171204,spot_baseline,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191046,-3.263934383181049,peer,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191046,-0.0778918350312851,relative_legacy,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191046,1.176115437349678,spot_peer,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191046,-46.21904430481285,baseline,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191284,-87.28069576747353,peer,000_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191284,-1.1987862602626678,relative_legacy,000_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191284,-176.41908539044456,baseline,000_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191284,-104.56858146233684,spot_peer,000_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191284,-232.19280948873623,spot_baseline,000_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191471,-194.3416471633633,spot_baseline,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191471,-0.7735288438037659,relative_legacy,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191471,-77.62306240891884,spot_peer,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191471,-54.74162613811682,peer,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191471,-124.27520408782478,baseline,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191935,-68.43323870893398,peer,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191935,-161.9569593661001,baseline,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191935,-56.297938458720765,spot_peer,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191935,-0.933640095522993,relative_legacy,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191935,-164.38561897747246,spot_baseline,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191975,-10.469737866669323,spot_baseline,jkraybill_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191975,0.5010844004325878,relative_legacy,jkraybill_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191975,53.27183568569576,spot_peer,jkraybill_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191975,-8.68881616809625,baseline,jkraybill_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,191975,36.40941350969008,peer,jkraybill_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192049,-175.75667027660148,spot_peer,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192049,-14.844134026401305,peer,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192049,-0.1983972106551333,relative_legacy,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192049,-27.01741289377424,baseline,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192049,-332.1928094887362,spot_baseline,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192418,-5.889368905356857,spot_baseline,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192418,0.5500223996251706,relative_legacy,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192418,-5.061148263445006,baseline,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192418,40.32337664934051,peer,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192418,56.5325128098959,spot_peer,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192459,1.3874484232713258,relative_legacy,biak_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192459,80.6600637408215,baseline,biak_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192459,131.81037670279167,spot_peer,biak_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192459,100.13851438247386,peer,biak_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192459,99.85565831303312,spot_baseline,biak_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192472,-2.914634565951651,spot_baseline,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192472,48.701768412587086,peer,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192472,58.650169333420095,spot_peer,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192472,-2.888480267589876,baseline,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192472,0.6572137652836911,relative_legacy,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192924,0.122638291212536,relative_legacy,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192924,-30.926328450877094,baseline,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192924,24.09356124799823,spot_peer,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192924,10.480891671100572,peer,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,192924,-51.45731728297583,spot_baseline,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,193275,-101.74170530774094,spot_baseline,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,193275,-11.702933558781016,spot_peer,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,193275,-0.2984871112969338,relative_legacy,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,193275,-21.66164202582573,peer,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,193275,-95.39720020488728,baseline,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,195286,-33.380492648072185,spot_peer,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,195286,-3.9594918657319775,peer,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,195286,-12.752517395087056,baseline,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,195286,-0.0534471487576274,relative_legacy,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,195286,-132.19280948873623,spot_baseline,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,204737,-8.926733809708741,spot_baseline,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,204737,54.37027078417257,spot_peer,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,204737,0.2519160322640102,relative_legacy,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,204737,21.21538612088564,peer,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,204737,-4.057938689616172,baseline,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,208405,-33.380492648072185,spot_peer,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,208405,-0.5347672857125986,peer,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,208405,-2.02268554512134,baseline,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,208405,-0.0030551448624222,relative_legacy,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,208405,-132.19280948873623,spot_baseline,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,215725,-232.19280948873623,spot_baseline,estr.ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,215725,-69.71258751001406,peer,estr.ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,215725,-143.81520133526078,baseline,estr.ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,215725,-104.56858146233684,spot_peer,estr.ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,215725,-0.9878814214972242,relative_legacy,estr.ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,216863,0.3577601683353761,relative_legacy,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,216863,-31.043548170126925,baseline,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,216863,26.56616626560071,peer,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,216863,37.80759616619246,spot_peer,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,216863,-32.19280948873623,spot_baseline,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,218269,-32.19280948873623,spot_baseline,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,218269,-31.70455251080604,baseline,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,218269,0.3686400475734696,relative_legacy,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,218269,37.80759616619246,spot_peer,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,218269,27.43466521049458,peer,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,218666,-124.19635215360196,baseline,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,218666,-0.5573439684694457,relative_legacy,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,218666,-40.7450450931653,peer,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,218666,-29.352419405302754,spot_peer,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,218666,-126.53445665209946,spot_baseline,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,218945,-81.09661756099831,spot_baseline,SeidrBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,218945,2.993909842153006,spot_peer,SeidrBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,218945,-79.15941400031194,baseline,SeidrBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,218945,-7.966535009265143,peer,SeidrBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,218945,-0.1138195868037603,relative_legacy,SeidrBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219459,87.67056103025901,spot_peer,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219459,0.1449500817116498,relative_legacy,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219459,5.424502146247137,baseline,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219459,11.298798044626311,peer,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219459,37.85116232537298,spot_baseline,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219659,58.496250072115615,spot_baseline,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219659,6.37179680711432,baseline,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219659,10.25270169731318,peer,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219659,0.1391002625192851,relative_legacy,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219659,102.36740443119302,spot_peer,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219886,-33.380492648072185,spot_peer,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219886,-95.28406195147296,baseline,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219886,-0.4143324449855933,relative_legacy,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219886,-30.326647888979803,peer,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219886,-132.19280948873623,spot_baseline,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219991,-232.19280948873623,spot_baseline,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219991,-118.44327291647252,baseline,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219991,-57.5583593998989,peer,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219991,-0.8395543758385053,relative_legacy,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,219991,-104.56858146233684,spot_peer,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,220077,49.90423226063184,spot_peer,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,220077,18.914620675946583,peer,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,220077,0.2196254050774929,relative_legacy,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,220077,-6.82603376832915,baseline,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29034,"Will the USDA-posted recall of Boar's Head deli meat be closed before December 1, 2024?",2024-10-23 13:06:25.287941+00,220077,-15.200309344504996,spot_baseline,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29122 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,182315,37.85116232537298,spot_baseline,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,182315,6.409743241305912,peer,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,182315,31.770232786515468,baseline,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,182315,9.0233060986748,spot_peer,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,182315,0.0714877035543028,relative_legacy,RyansAGI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,185690,-6.076731781313421,spot_peer,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,185690,16.671544496642234,spot_baseline,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,185690,0.8354370915118801,baseline,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,185690,-0.3278707209824875,peer,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,185690,-0.0011577354769295,relative_legacy,annabot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,185698,0.1409627850391621,relative_legacy,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,185698,10.80446175213865,peer,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,185698,36.61617329127037,spot_peer,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,185698,23.831646667103858,baseline,RonanMcGovern,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,185699,-0.2322381735184327,relative_legacy,MWG,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,185699,-24.32705977184186,spot_peer,MWG,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,185699,-8.926733809708741,spot_baseline,MWG,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,185699,-5.352670409824915,baseline,MWG,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,185699,-15.835392322252428,peer,MWG,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,187708,6.757264857895495,baseline,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,187708,-5.797157631491161,peer,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,187708,12.697285625776551,spot_baseline,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,187708,-0.08787866740984,relative_legacy,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,187708,-8.910185150502345,spot_peer,twsummerbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,188107,-4.016508692242671,peer,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,188107,-0.063493290633871,relative_legacy,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,188107,15.919859484925396,spot_baseline,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,188107,-6.612646652040985,spot_peer,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,188107,7.362942183642472,baseline,Cassie,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,188389,0.197422246250523,relative_legacy,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,188389,46.45848815203628,baseline,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,188389,49.057013044620135,spot_baseline,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,188389,17.01253289712007,spot_peer,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,188389,15.293776696125509,peer,Panshul42,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,188909,-60.701463911181335,spot_peer,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,188909,-6.989157912109519,baseline,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,188909,-59.94620704162712,spot_baseline,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,188909,-7.191423328335309,peer,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,188909,-0.0977086225549717,relative_legacy,silicoqr,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,189585,-17.962732532267147,spot_peer,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,189585,0.0,spot_baseline,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,189585,-8.869890875321332,peer,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,189585,11.75000683959352,baseline,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,189585,-0.136121804674761,relative_legacy,mf-bot-1,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,189588,-0.1579960761000901,peer,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,189588,-0.0005095843027294,relative_legacy,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,189588,-8.159399752393721,spot_peer,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,189588,0.2700975296766028,baseline,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,189588,13.750352374993504,spot_baseline,mf-bot-3,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,189869,36.61617329127037,spot_peer,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,189869,0.3565791638616565,relative_legacy,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,189869,27.33590797736789,peer,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,189869,58.97581927632738,baseline,VeritasAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,190710,-5.209888897650896,spot_peer,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,190710,17.88739581697954,spot_baseline,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,190710,17.097136950880703,baseline,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,190710,-0.0984184945290388,relative_legacy,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,190710,-6.401137481248002,peer,Bot_Pepa,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,190772,29.997246070754606,baseline,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,190772,13.66426515609453,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,190772,8.163975557497915,peer,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,190772,0.0960664861368279,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,190772,44.36066514756148,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191026,-0.0061203478802956,relative_legacy,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191026,-0.6622565135531183,peer,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191026,21.412480535284764,spot_baseline,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191026,-2.696674862959025,spot_peer,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191026,3.464834631921336,baseline,manticAI,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191046,0.7903418808253277,spot_peer,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191046,-0.0154691812756986,relative_legacy,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191046,26.303440583379377,spot_baseline,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191046,14.514572817221334,baseline,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191046,-0.5858727901658995,peer,archipelago,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191284,37.85116232537298,spot_baseline,000_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191284,9.0233060986748,spot_peer,000_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191284,0.0571979670239071,relative_legacy,000_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191284,5.618649733943016,peer,000_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191284,28.75900463115701,baseline,000_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191471,-6.432691412961259,peer,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191471,8.80006673988407,baseline,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191471,-0.1021940006779475,relative_legacy,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191471,13.750352374993504,spot_baseline,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191471,-8.159399752393721,spot_peer,HSeldon,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191935,-10.04673972969394,spot_peer,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191935,11.103131238874395,spot_baseline,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191935,-0.1671362764658577,relative_legacy,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191935,-11.49763710944911,peer,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,191935,10.957320451451618,baseline,pgodzinai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192049,1.1327998356248654,baseline,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192049,-0.7279253503716082,peer,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192049,-8.159399752393721,spot_peer,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192049,13.750352374993504,spot_baseline,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192049,-0.005780013295393,relative_legacy,gnosis-ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192418,-0.1543946864592214,relative_legacy,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192418,-10.123426946525484,peer,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192418,9.544205387657444,baseline,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192418,-10.04673972969394,spot_peer,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192418,11.103131238874395,spot_baseline,InstitutPelFutur,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192472,-4.485539827608442,spot_peer,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192472,18.903382439001685,spot_baseline,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192472,-0.0901581248410559,relative_legacy,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192472,-5.805496963030664,peer,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192472,18.774839260126157,baseline,bestworldbot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192924,22.76806315182732,baseline,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192924,0.0482526149531513,relative_legacy,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192924,9.0233060986748,spot_peer,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192924,37.85116232537298,spot_baseline,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,192924,4.409857018323105,peer,acm_bot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,193275,-4.485539827608442,spot_peer,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,193275,-5.527784785108537,peer,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,193275,18.44529893908391,baseline,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,193275,-0.0866804672386308,relative_legacy,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,193275,18.903382439001685,spot_baseline,histerio,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,195286,2.880432585884736,peer,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,195286,0.0436889948933987,relative_legacy,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,195286,30.380497904437075,spot_peer,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,195286,6.59050011090747,baseline,Unwrapped80T,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,204737,0.0,baseline,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,204737,-1.663495743130622,peer,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,204737,-0.0190930598420057,relative_legacy,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,204737,-17.962732532267147,spot_peer,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,204737,0.0,spot_baseline,SynapseSeer,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,208405,-8.159399752393721,spot_peer,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,208405,-0.1247979732279712,peer,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,208405,13.750352374993504,spot_baseline,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,208405,-0.0004038388110284,relative_legacy,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,208405,0.2103115620810443,baseline,mf-bot-4,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,215725,48.54268271702416,spot_baseline,estr.ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,215725,0.1145352919643331,relative_legacy,estr.ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,215725,16.645840377343326,spot_peer,estr.ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,215725,9.327027007276987,peer,estr.ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,215725,30.094306907942755,baseline,estr.ai,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,216863,0.7903418808253277,spot_peer,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,216863,-0.0178167978276859,relative_legacy,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,216863,25.37557854809239,baseline,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,216863,-0.4784722536728267,peer,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,216863,26.303440583379377,spot_baseline,tombot61,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,218269,0.096436020843696,relative_legacy,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,218269,7.966484591358371,peer,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,218269,9.0233060986748,spot_peer,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,218269,37.85116232537298,spot_baseline,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,218269,37.28843746741192,baseline,tombot37,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,218666,34.709867062226834,spot_baseline,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,218666,0.0651650760494369,relative_legacy,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,218666,5.655867322133866,peer,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,218666,6.783715287862847,spot_peer,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,218666,34.12247521104972,baseline,GreeneiBot2,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,218945,12.142352332697406,baseline,SeidrBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,218945,-0.1524009907780484,relative_legacy,SeidrBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,218945,-10.42074792458885,peer,SeidrBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,218945,12.432813500220178,spot_baseline,SeidrBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,218945,-9.09874091890176,spot_peer,SeidrBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219459,3.6085220830313807,spot_peer,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219459,0.0074588994882442,relative_legacy,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219459,4.336172235453351,baseline,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219459,0.3477224759402451,peer,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219459,30.25627700204313,spot_baseline,karamazov,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219659,0.0155326218257462,relative_legacy,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219659,37.85116232537298,spot_baseline,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219659,0.9031348458935806,peer,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219659,9.0233060986748,spot_peer,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219659,4.157026340548233,baseline,lostandfound,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219886,-6.999696819877575,spot_baseline,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219886,-0.2660899467267497,relative_legacy,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219886,-22.953176079610344,spot_peer,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219886,-5.045427055158114,baseline,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219886,-18.05879723289896,peer,SaraBase,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219991,7.6414243275876,peer,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219991,16.645840377343326,spot_peer,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219991,0.098773249437076,relative_legacy,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219991,24.936254723006424,baseline,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,219991,48.54268271702416,spot_baseline,HunchexBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,220077,0.1027622727493505,relative_legacy,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,220077,7.948314993880843,peer,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,220077,23.646290805009837,baseline,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,220077,52.60688116675877,spot_baseline,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29035,Will Republican Congressman Juan Ciscomani be re-elected in Arizona's 6th Congressional District in the 2024 election?,2024-10-23 13:06:25.292037+00,220077,19.543416293917787,spot_peer,mmBot,True,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29123 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,182315,33.34237337251918,spot_baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,182315,28.010422739516823,baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,182315,10.83332708923402,peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,182315,0.1496786727181376,relative_legacy,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,182315,13.829144310632586,spot_peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,185690,-5.203531233185497,spot_peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,185690,0.3339866136334017,baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,185690,-0.2632501481855436,peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,185690,-0.0035375206487345,relative_legacy,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,185690,6.6261442268721575,spot_baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,185698,-38.13001392995197,spot_peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,185698,-11.797195418415734,peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,185698,-0.1645483733164081,relative_legacy,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,185698,-39.592867633113926,spot_baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,185698,-12.33163964026632,baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,185699,0.1625235381464823,relative_legacy,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,185699,27.586064411699148,baseline,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,185699,40.05379295837285,spot_baseline,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,185699,12.349272639766186,peer,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,185699,18.610368139774327,spot_peer,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,187708,-30.571334977374992,spot_peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,187708,-16.906684647776117,peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,187708,-15.78185937578117,baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,187708,-28.982725172033813,spot_baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,187708,-0.2493324338060525,relative_legacy,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,188107,0.0418341083934017,relative_legacy,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,188107,4.149094739887622,peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,188107,12.252428225557862,baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,188107,8.814599659885411,spot_peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,188107,26.30344058337941,spot_baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,188389,-7.248275380152384,spot_baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,188389,-0.2130870291664915,relative_legacy,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,188389,-15.087685366603363,spot_peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,188389,-16.278863945091384,peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,188389,-6.931538207784824,baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,188909,-0.0080023204522715,relative_legacy,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,188909,0.8041086081841039,baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,188909,-0.6051373102934161,peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,188909,-3.9352558978624153,spot_peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,188909,8.406426478847456,spot_baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,189585,5.169965284550778,baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,189585,13.750352374993504,spot_baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,189585,-0.0815080826239747,relative_legacy,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,189585,-0.1282363084932008,spot_peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,189585,-6.207081134709789,peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,189588,-0.0015723820729518,relative_legacy,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,189588,0.1078951641988445,baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,189588,-0.1160026843634688,peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,189588,-5.892987047628239,spot_peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,189588,5.658352836636751,spot_baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,189869,17.041211281887765,spot_peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,189869,12.458817487214874,peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,189869,0.1670372388288205,relative_legacy,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,189869,29.16046260027328,baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,190710,18.31333420317293,peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,190710,40.39894669491091,baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,190710,42.22330006830476,spot_baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,190710,20.15592775779656,spot_peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,190710,0.2600541040219096,relative_legacy,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,190772,-5.892987047628239,spot_peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,190772,-0.0713925853866745,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,190772,3.8286217280313632,baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,190772,5.658352836636751,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,190772,-4.611088643759203,peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191026,-4.844247796272051,peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191026,-30.320351268332217,spot_peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191026,-4.6329981322226015,baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191026,-0.0669858886997857,relative_legacy,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191026,-28.63041851566413,spot_baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191046,-20.75272445321432,spot_peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191046,-8.351348169529688,baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191046,-11.629070964404573,peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191046,-0.1757001548233868,relative_legacy,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191046,-15.200309344505014,spot_baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191284,-0.0186349371411178,relative_legacy,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191284,-0.1282363084932008,spot_peer,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191284,13.750352374993504,spot_baseline,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191284,10.447342745376652,baseline,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191284,-0.9401453650501672,peer,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191471,5.385879052245524,baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191471,8.406426478847456,spot_baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191471,-0.0508773200905346,relative_legacy,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191471,-2.993128838579572,peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191471,-3.9352558978624153,spot_peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191935,0.1817082287664134,relative_legacy,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191935,32.96712743158242,baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191935,33.34237337251918,spot_baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191935,13.829144310632586,spot_peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191935,12.420025975432235,peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191975,-39.08875790786861,peer,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191975,-0.531115272863085,relative_legacy,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191975,-42.921326804321154,spot_baseline,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191975,-40.50121246703124,spot_peer,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,191975,-39.296700869533424,baseline,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192049,-0.0167838670706848,peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192049,5.339146054459468e-05,relative_legacy,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192049,1.1497880717947646,baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192049,-0.1282363084932008,spot_peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192049,13.750352374993504,spot_baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192418,-9.71700739034943,peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192418,-0.1315404197443928,relative_legacy,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192418,0.0,baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192418,0.0,spot_baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192418,-9.924004788382154,spot_peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192472,-0.0920163266598651,relative_legacy,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192472,5.658352836636751,spot_baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192472,5.630189488449392,baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192472,-5.892987047628239,spot_peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192472,-7.748294938201342,peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192924,0.1284260033273467,relative_legacy,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192924,17.041211281887765,spot_peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192924,10.03890101870234,peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192924,22.783049284835045,baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,192924,37.85116232537298,spot_baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,193275,13.408143518893658,baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,193275,-1.792613654176467,peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,193275,-0.1282363084932008,spot_peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,193275,13.750352374993504,spot_baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,193275,-0.0124682118838387,relative_legacy,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,195286,44.61278768189647,spot_peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,195286,0.0613561066142357,relative_legacy,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,195286,4.354362314885983,peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,195286,7.472456273954728,baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,204737,-29.54173283675585,baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,204737,-55.79240144741416,spot_peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,204737,-25.766607901116316,peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,204737,-0.3742699861716758,relative_legacy,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,204737,-64.38561897747249,spot_baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,208405,-0.0112218675664178,peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,208405,-0.1282363084932008,spot_peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,208405,13.750352374993504,spot_baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,208405,-0.0001089255829239,relative_legacy,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,208405,0.1970818110721927,baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,215725,-0.1282363084932008,spot_peer,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,215725,13.750352374993504,spot_baseline,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,215725,-0.459195042580198,peer,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,215725,-0.0166395394911003,relative_legacy,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,215725,8.532861945798057,baseline,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,216863,31.748797989401403,spot_peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,216863,58.496250072115615,spot_baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,216863,56.44769669535134,baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,216863,0.4193813103971971,relative_legacy,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,216863,29.911557841818396,peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,218269,47.83362686288291,baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,218269,48.54268271702416,spot_baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,218269,24.657863975464718,spot_peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,218269,0.3310492061321861,relative_legacy,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,218269,23.358755637233106,peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,218666,8.278815636886225,baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,218666,-3.9352558978624153,spot_peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,218666,-5.682329187384014,peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,218666,8.406426478847456,spot_baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,218666,-0.0643077543898838,relative_legacy,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,218945,-1.747918586935726,peer,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,218945,13.750352374993504,spot_baseline,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,218945,13.436592846888916,baseline,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,218945,-0.1282363084932008,spot_peer,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,218945,-0.0120434329295079,relative_legacy,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219459,3.7697734711425688,baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219459,0.0185972000190949,relative_legacy,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219459,8.814599659885392,spot_peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219459,1.318899381062506,peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219459,26.303440583379377,spot_baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219659,1.522705334614192,baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219659,5.339146054459468e-05,relative_legacy,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219659,-0.0065724080387173,peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219659,-0.1282363084932008,spot_peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219659,13.750352374993504,spot_baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219886,21.804752291520504,baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219886,30.25003818589095,spot_baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219886,7.759901491523784,peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219886,0.1002976604918785,relative_legacy,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219886,11.626160799787192,spot_peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219991,0.1080812437415901,relative_legacy,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219991,19.58783385789861,baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219991,37.85116232537298,spot_baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219991,8.811426205652733,peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,219991,17.041211281887765,spot_peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,220077,24.55410337940852,baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,220077,13.151523622602165,peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,220077,0.1679382983689839,relative_legacy,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,220077,28.97085110508748,spot_peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29036,"Will South Dakota voters approve Constitutional Amendment G, which would provide for a state constitutional right to an abortion?",2024-10-23 13:06:25.464726+00,220077,54.59683691052925,spot_baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29124 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,182315,33.29154961858474,spot_peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,182315,81.55754288625727,spot_baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,182315,68.57626268896844,baseline,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,182315,28.28151421550872,peer,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,182315,0.0033985344059556,relative_legacy,RyansAGI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,185690,-10.935875603655624,spot_baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,185690,-0.0439864580080896,relative_legacy,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,185690,-0.554776880897081,baseline,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,185690,-32.5527472833639,spot_peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,185690,-1.9515966210371447,peer,annabot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,185698,37.85116232537298,spot_baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,185698,11.795857595697973,baseline,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,185698,2.177812607401957,spot_peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,185698,-0.1338357160317526,relative_legacy,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,185698,-1.512731973050905,peer,RonanMcGovern,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,185699,0.0431073331470878,relative_legacy,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,185699,37.85686577450824,spot_peer,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,185699,87.97057662822883,spot_baseline,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,185699,24.49887444998929,peer,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,185699,62.2240553497596,baseline,MWG,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,187708,36.77184801685467,baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,187708,22.729763249518737,spot_peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,187708,-0.0835059786904121,relative_legacy,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,187708,9.324141512949383,peer,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,187708,66.72109124808708,spot_baseline,twsummerbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,188107,35.59957265203941,spot_peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,188107,40.33534589462598,baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,188107,13.87850598190205,peer,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,188107,0.0133036015342639,relative_legacy,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,188107,84.79969065549501,spot_baseline,Cassie,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,188389,71.36958148433591,spot_baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,188389,-0.0755986346374103,relative_legacy,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,188389,68.670224502393,baseline,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,188389,26.03893460742197,spot_peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,188389,26.04016416538822,peer,Panshul42,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,188909,0.6286891683155063,peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,188909,52.60688116675877,spot_baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,188909,6.488693830239434,baseline,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,188909,12.68212684139084,spot_peer,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,188909,-0.0317715206746924,relative_legacy,silicoqr,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,189585,-332.1928094887361,spot_baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,189585,-2.770557813396738,relative_legacy,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,189585,-206.70180500886025,baseline,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,189585,-261.24941869945843,spot_peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,189585,-171.52625732545576,peer,mf-bot-1,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,189588,9.788901639405822,spot_peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,189588,0.1654762851389036,peer,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,189588,-0.0037309612824461,relative_legacy,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,189588,48.54268271702416,spot_baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,189588,0.9486967384488524,baseline,mf-bot-3,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,189869,0.0832490433285508,relative_legacy,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,189869,30.40303170066634,peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,189869,71.33987683962458,baseline,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,189869,41.152422404121786,spot_peer,VeritasAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,190710,78.11381386902934,baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,190710,0.021822333383138,relative_legacy,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,190710,33.29154961858474,spot_peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,190710,33.042778415206,peer,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,190710,81.55754288625727,spot_baseline,Bot_Pepa,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,190772,34.45204448250223,spot_peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,190772,83.18772411916731,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,190772,20.70861191008132,peer,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,190772,0.0085373535030675,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,190772,56.3323064036264,baseline,Jay_Bailey_Bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191026,38.96717607710333,spot_peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191026,14.488462964538003,baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191026,89.53026213333065,spot_baseline,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191026,0.0152719966184013,relative_legacy,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191026,5.057456444361956,peer,manticAI,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191046,30.33226842008623,baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191046,-0.1515232884921231,relative_legacy,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191046,54.59683691052925,spot_baseline,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191046,14.098738303630748,spot_peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191046,4.5912341084844055,peer,archipelago,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191284,23.26805254854713,peer,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191284,61.34142051993289,baseline,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191284,80.73549220576041,spot_baseline,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191284,-0.0080684475308569,relative_legacy,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191284,32.70634745005439,spot_peer,000_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191471,81.55754288625727,spot_baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191471,52.30083324587009,baseline,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191471,33.29154961858474,spot_peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191471,18.435715092373705,peer,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191471,-0.0025017595004545,relative_legacy,HSeldon,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191935,38.96717607710333,spot_peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191935,40.07072438803107,peer,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191935,89.53026213333065,spot_baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191935,88.65949601494064,baseline,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191935,0.1201461788528224,relative_legacy,pgodzinai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191975,32.88847215639905,peer,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191975,74.82826176191197,baseline,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191975,0.0558380109400801,relative_legacy,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191975,37.484078785529874,spot_peer,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,191975,87.44691179161411,spot_baseline,jkraybill_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192049,2.8557017992777314,peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192049,0.0114770648564231,relative_legacy,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192049,41.152422404121786,spot_peer,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192049,7.869739435851777,baseline,gnosis-ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192418,-227.3713269245836,baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192418,-2.9639454487360437,relative_legacy,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192418,-212.97877569584253,spot_peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192418,-264.3856189774725,spot_baseline,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192418,-186.1290265129114,peer,InstitutPelFutur,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192459,-0.183024527918412,relative_legacy,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192459,58.496250072115615,spot_baseline,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192459,12.89098206770092,peer,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192459,47.28724517234617,baseline,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192459,16.87465600833597,spot_peer,biak_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192472,67.80719051126377,spot_baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192472,-0.0936363055129784,relative_legacy,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192472,24.483431007019217,peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192472,23.502936557600044,spot_peer,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192472,67.6044197615769,baseline,bestworldbot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192924,92.5999418556223,spot_baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192924,0.0640186491641017,relative_legacy,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192924,41.152422404121786,spot_peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192924,21.742799855579875,peer,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,192924,55.78304127245585,baseline,acm_bot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,193275,-96.77821604178452,baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,193275,-96.14127682596256,peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,193275,-98.85043611621704,spot_baseline,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,193275,-95.13744270171658,spot_peer,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,193275,-1.7360666642563838,relative_legacy,histerio,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,195286,0.0053740399863519,relative_legacy,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,195286,8.304598568608212,baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,195286,2.7254340917999014,peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,195286,35.59957265203941,spot_peer,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,204737,45.48165270652287,baseline,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,204737,17.967277611556444,peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,204737,0.0763039641458075,relative_legacy,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,204737,45.38818571302413,spot_peer,SynapseSeer,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,208405,-4.06200461176579,peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,208405,-5.175824229248109,baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,208405,-332.1928094887361,spot_baseline,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,208405,-0.0620320735406691,relative_legacy,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,208405,-261.24941869945843,spot_peer,mf-bot-4,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,215725,0.0660955420918314,relative_legacy,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,215725,41.152422404121786,spot_peer,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,215725,57.52469328921124,baseline,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,215725,22.58389048336619,peer,estr.ai,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,216863,84.79969065549501,spot_baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,216863,35.59957265203941,spot_peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,216863,0.0541670197126617,relative_legacy,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,216863,35.6209083562596,peer,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,216863,81.86392055088382,baseline,tombot61,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,218269,67.80719051126377,spot_baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,218269,66.83264589652181,baseline,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,218269,-0.0950498616638693,relative_legacy,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,218269,23.502936557600044,spot_peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,218269,24.214406534667084,peer,tombot37,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,218666,56.169272139830895,spot_baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,218666,-0.2097564099850826,relative_legacy,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,218666,15.805868528987146,peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,218666,55.39968410449743,baseline,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,218666,15.218124891212776,spot_peer,GreeneiBot2,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,218945,-61.263097789154,peer,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,218945,-50.30583352692117,baseline,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,218945,-1.26123080617001,relative_legacy,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,218945,-51.45731728297583,spot_baseline,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,218945,-61.39918717485882,spot_peer,SeidrBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219459,70.78192485066896,spot_baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219459,10.144624643673248,baseline,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219459,25.62059308112423,spot_peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219459,-0.0124739484836576,relative_legacy,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219459,2.547382342305965,peer,karamazov,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219659,23.502936557600044,spot_peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219659,67.80719051126377,spot_baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219659,7.567645670542062,baseline,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219659,-0.0124629612580643,relative_legacy,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219659,1.7455578372083078,peer,lostandfound,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219886,25.93148213287092,baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219886,35.9746046905471,spot_baseline,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219886,0.8419270916712364,spot_peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219886,-1.8192122819079863,peer,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219886,-0.3307172062418027,relative_legacy,SaraBase,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219991,12.35848491265336,peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219991,76.55347463629771,spot_baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219991,-0.0278512669877469,relative_legacy,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219991,39.94846261299389,baseline,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,219991,29.72924906847713,spot_peer,HunchexBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,220077,15.579635969520604,peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,220077,41.152422404121786,spot_peer,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,220077,0.0475792941086355,relative_legacy,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29037,"Will rapper 50 Cent endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-23 13:06:25.469396+00,220077,41.67527008768926,baseline,mmBot,True,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,2024-10-24 14:30:00+00,29125 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,182315,3.9551901592349714,spot_peer,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,182315,94.11063109464314,spot_baseline,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,182315,3.4039311204621625,peer,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,182315,78.49378631469901,baseline,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,182315,0.0092654394344663,relative_legacy,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,185698,0.8279547262402016,peer,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,185698,28.694869032648608,baseline,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,185698,92.5999418556223,spot_baseline,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,185698,0.0,relative_legacy,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,185698,2.8731558396144474,spot_peer,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,185699,7.134928221466184,spot_peer,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,185699,71.32201392374438,baseline,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,185699,0.0397271010443718,relative_legacy,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,185699,98.5500430304885,spot_baseline,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,185699,5.066991985732516,peer,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,187708,2.4371495668679253,spot_peer,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,187708,91.9912088677308,spot_baseline,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,187708,1.294834583720054,peer,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,187708,54.08745557376144,baseline,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,187708,-0.0049049833517722,relative_legacy,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,188107,0.3296601828023974,peer,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,188107,1.9627241057917613,spot_peer,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,188107,-0.0024824151656371,relative_legacy,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,188107,91.32883668066692,spot_baseline,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,188107,17.836139267078917,baseline,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,189585,-2.7137903583140544,spot_peer,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,189585,-0.0717675571858003,relative_legacy,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,189585,74.48905896684379,baseline,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,189585,-2.2096149020280285,peer,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,189588,-0.0683932650836658,relative_legacy,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,189588,-2.235080192531331,peer,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,189588,-2.7137903583140544,spot_peer,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,189588,70.81309402312684,baseline,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,189588,84.79969065549501,spot_baseline,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,189869,65.41575154209939,baseline,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,189869,7.134928221466184,spot_peer,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,189869,98.5500430304885,spot_baseline,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,189869,0.0367520327273256,relative_legacy,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,189869,4.601171409922323,peer,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,190710,88.94304948634985,baseline,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,190710,93.80975610740931,spot_baseline,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,190710,0.0081338303910079,relative_legacy,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,190710,3.739687821829416,spot_peer,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,190710,4.18743484248211,peer,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,190772,67.20630365770401,baseline,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,190772,0.0278762919239892,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,190772,4.07943081453928,peer,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,190772,6.085849836850992,spot_peer,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,190772,97.08536543404836,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191026,-0.0034336217859884,relative_legacy,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191026,-7.411569012912307,spot_peer,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191026,78.24085649273731,spot_baseline,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191026,0.2816244335470512,peer,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191026,18.427357817139452,baseline,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191046,54.59683691052925,spot_baseline,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191046,-24.346647373774367,spot_peer,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191046,-7.818963243959208,peer,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191046,17.365291725953075,baseline,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191046,-0.1209978552156054,relative_legacy,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191284,79.13489774236761,baseline,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191284,2.8731558396144474,spot_peer,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191284,2.616497575922865,peer,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191284,-0.0032672155045562,relative_legacy,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191471,1.6777428105674064,peer,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191471,2.8731558396144474,spot_peer,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191471,92.5999418556223,spot_baseline,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191471,58.94164483809905,baseline,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191471,-0.0019404495326316,relative_legacy,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191935,97.08536543404836,spot_baseline,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191935,0.0421224196017321,relative_legacy,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191935,93.59350173598158,baseline,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191935,6.085849836850992,spot_peer,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191935,6.737321745831176,peer,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191975,7.932070080581395,spot_peer,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191975,2.967143329253352,peer,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191975,38.69660219505658,baseline,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191975,0.026098117412588,relative_legacy,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,191975,99.66297781148576,spot_baseline,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,192049,2.975428120465936,peer,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,192049,2.8731558396144474,spot_peer,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,192049,83.8464139742073,baseline,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,192049,-0.0032672155045562,relative_legacy,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,192418,48.54268271702416,spot_baseline,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,192418,-28.21757898518865,peer,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,192418,-28.682947947341017,spot_peer,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,192418,-0.4294567177567893,relative_legacy,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,192418,47.77385072125992,baseline,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,192924,-8.620159788442084,spot_peer,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,192924,-0.0969365336458428,relative_legacy,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,192924,45.61333924779934,baseline,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,192924,-5.317487844013974,peer,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,193275,91.53296760130094,spot_baseline,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,193275,65.9680008508672,baseline,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,193275,2.1089333036311024,spot_peer,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,193275,1.3831551573334595,peer,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,193275,-0.0110124087419619,relative_legacy,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,204737,40.24778774654983,baseline,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,204737,2.793810911836639,peer,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,204737,0.0229743263817246,relative_legacy,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,204737,7.134928221466184,spot_peer,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,208405,0.033932647003237,relative_legacy,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,208405,97.08536543404836,spot_baseline,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,208405,5.182307153827137,peer,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,208405,80.74982112445838,baseline,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,208405,6.085849836850992,spot_peer,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,215725,7.134928221466184,spot_peer,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,215725,92.94899352089632,baseline,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,215725,7.407811280051284,peer,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,215725,0.0523960298156889,relative_legacy,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,215725,98.5500430304885,spot_baseline,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,216863,-0.1554766895082371,relative_legacy,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,216863,73.75774106737276,baseline,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,216863,-8.620159788442084,spot_peer,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,216863,76.55347463629771,spot_baseline,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,216863,-7.822531127170588,peer,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,218269,-0.0726941901453599,relative_legacy,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,218269,84.79969065549501,spot_baseline,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,218269,-2.7137903583140544,spot_peer,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,218269,83.44139160700325,baseline,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,218269,-1.4703572653843309,peer,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,218666,73.41602422031268,baseline,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,218666,-0.8469280409249028,peer,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,218666,87.65660587517209,spot_baseline,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,218666,-0.667518871042143,spot_peer,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,218666,-0.0498102571090418,relative_legacy,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,218945,73.4953621004544,baseline,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,218945,-8.620159788442084,spot_peer,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,218945,-0.1554766895082371,relative_legacy,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,218945,-7.823095262453727,peer,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,219459,2.8731558396144474,spot_peer,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,219459,0.0,relative_legacy,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,219459,0.7947043220193798,peer,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,219459,27.632595550627503,baseline,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,219459,92.5999418556223,spot_baseline,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,219659,92.5999418556223,spot_baseline,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,219659,0.0,relative_legacy,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,219659,14.541034490197582,baseline,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,219659,2.8731558396144474,spot_peer,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,219659,0.4062062387140688,peer,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,219886,95.54616039235016,spot_baseline,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,219886,3.3600504847734207,peer,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,219886,67.00155844664957,baseline,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,219886,0.0173777385906423,relative_legacy,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,219886,4.983391014062333,spot_peer,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,220077,1.3864236336104825,peer,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,220077,3.9551901592349714,spot_peer,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,220077,0.0046813236589632,relative_legacy,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,220077,35.61273982972674,baseline,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29066,"Will at least 200 Benin Bronzes go from the British Museum to Nigeria before January 1, 2025?",2024-10-24 13:35:17.452107+00,220077,94.11063109464314,spot_baseline,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29159 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,182315,-29.31211628155104,spot_peer,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,182315,-78.58751946471523,spot_baseline,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,182315,-27.25141920083977,peer,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,182315,-0.4624282338519322,relative_legacy,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,182315,-65.62980010887959,baseline,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,185698,-173.6965594166206,spot_baseline,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,185698,-0.4374993732254849,relative_legacy,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,185698,-97.43416459959164,spot_peer,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,185698,-53.880462682914334,baseline,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,185698,-30.47096298044736,peer,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,185699,0.6179776939182235,relative_legacy,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,185699,44.35159452092321,baseline,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,185699,70.24309311610085,spot_peer,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,185699,49.47660033080962,peer,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,185699,60.40713236688608,spot_baseline,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,187708,-17.393266851358817,baseline,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,187708,5.964463032225272,spot_peer,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,187708,-29.335894269059175,spot_baseline,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,187708,1.5965861614779011,peer,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,187708,-0.0163083024760349,relative_legacy,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,188107,0.1111208360173272,relative_legacy,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,188107,4.82778760800135,baseline,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,188107,44.3710077120739,spot_peer,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,188107,24.28565238961633,spot_baseline,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,188107,8.572793949209085,peer,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,189585,-51.45731728297583,spot_baseline,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,189585,-0.275740235511699,relative_legacy,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,189585,-47.50500360781329,baseline,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,189585,-12.757631552273986,peer,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,189585,-9.880052359580624,spot_peer,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,189588,11.178285369867703,peer,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,189588,-12.704320035804477,baseline,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,189588,-15.200309344505014,spot_baseline,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,189588,0.0667948062498039,relative_legacy,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,189588,16.089105229446332,spot_peer,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,189869,38.91698275399054,peer,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,189869,0.4827039846042461,relative_legacy,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,189869,32.2222759162654,baseline,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,189869,61.74515629828039,spot_peer,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,190710,-48.86712291086567,spot_peer,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,190710,-49.13563180362121,peer,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,190710,-105.88936890535685,spot_baseline,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,190710,-100.50954695307776,baseline,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,190710,-0.8098403454037105,relative_legacy,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,190772,34.92899943148832,spot_peer,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,190772,7.692547078728987,baseline,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,190772,11.103131238874395,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,190772,0.2418199797386209,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,190772,21.870165813250757,peer,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191026,9.74274262471073,baseline,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191026,0.1615331374105298,relative_legacy,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191026,12.193631350119784,peer,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191026,36.82507709386864,spot_peer,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191026,13.750352374993504,spot_baseline,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191046,-25.80895594173064,spot_peer,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191046,-8.480253884359218,peer,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191046,-73.69655941662059,spot_baseline,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191046,-23.51955952004884,baseline,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191046,-0.1312672004701054,relative_legacy,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191284,-51.45731728297583,spot_baseline,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191284,-0.2371627020286365,relative_legacy,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191284,-10.882546826085612,peer,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191284,-9.880052359580624,spot_peer,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191284,-43.9746636000756,baseline,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191471,-0.5911962410993271,relative_legacy,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191471,-118.44245711374276,spot_baseline,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191471,-57.85829853312742,spot_peer,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191471,-39.31077164770578,peer,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191471,-75.46373901174466,baseline,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191935,36.78627139527348,peer,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191935,15.553934881560746,baseline,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191935,16.349873228287958,spot_baseline,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191935,38.68698932914539,spot_peer,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191935,0.3492130213551965,relative_legacy,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191975,-54.23181633126624,spot_baseline,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191975,-5.422217202847359,peer,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191975,-11.867293092129,spot_peer,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191975,-21.82924997184237,baseline,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,191975,-0.0904929586616504,relative_legacy,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,192049,61.74515629828039,spot_peer,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,192049,54.98187399554924,peer,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,192049,0.6348423630700125,relative_legacy,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,192049,44.01721562837758,baseline,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,192418,-97.43416459959164,spot_peer,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,192418,-170.9827490194998,baseline,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,192418,-1.5098752266476223,relative_legacy,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,192418,-100.96336504334316,peer,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,192924,30.47872906259031,peer,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,192924,0.3829663034332189,relative_legacy,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,192924,54.08733250906248,spot_peer,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,192924,22.572474368936994,baseline,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,192924,37.85116232537298,spot_baseline,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,193275,-39.80421293422475,spot_peer,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,193275,-68.10783689954702,baseline,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,193275,-31.95499142575656,peer,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,193275,-93.23612831246366,spot_baseline,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,193275,-0.5071934041912126,relative_legacy,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,204737,-11.748048988318748,baseline,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,204737,-28.63041851566409,spot_baseline,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,204737,6.469761512625114,spot_peer,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,204737,1.9780000168094476,peer,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,204737,0.0123932797253787,relative_legacy,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,208405,16.089105229446332,spot_peer,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,208405,0.0661902668473252,relative_legacy,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,208405,11.127283093691194,peer,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,208405,-12.633891857625906,baseline,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,208405,-15.200309344505014,spot_baseline,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,215725,33.88524086980868,peer,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,215725,12.978071270348623,baseline,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,215725,0.3193618649809274,relative_legacy,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,215725,13.750352374993504,spot_baseline,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,215725,36.82507709386864,spot_peer,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,216863,25.34856901660459,baseline,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,216863,45.81625271613037,spot_peer,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,216863,43.93549702471658,peer,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,216863,26.303440583379377,spot_baseline,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,216863,0.4472683175628068,relative_legacy,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,218269,0.5721889469864309,relative_legacy,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,218269,55.01678191605025,peer,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,218269,54.08733250906248,spot_peer,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,218269,37.2533196571987,baseline,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,218269,37.85116232537298,spot_baseline,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,218666,7.970998570792463,spot_peer,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,218666,3.635267649473666,peer,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,218666,-26.53445665209948,spot_baseline,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,218666,-0.0375632941002839,relative_legacy,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,218666,-23.512954439878023,baseline,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,218945,-97.43416459959164,spot_peer,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,218945,-166.8425988014136,baseline,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,218945,-1.4738128985738077,relative_legacy,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,218945,-97.54669533253896,peer,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,218945,-173.6965594166206,spot_baseline,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,219459,-0.0011536929930069,relative_legacy,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,219459,3.918191544953384,spot_peer,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,219459,-9.60678650685592,baseline,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,219459,-32.19280948873623,spot_baseline,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,219459,0.9605369774145572,peer,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,219659,-10.848412763766662,peer,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,219659,-132.19280948873626,spot_baseline,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,219659,-0.1584092889477809,relative_legacy,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,219659,-20.940568955120177,baseline,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,219659,-67.70701711290766,spot_peer,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,219886,10.816837436033133,baseline,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,219886,24.342003847082196,peer,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,219886,0.2743822742861937,relative_legacy,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,219886,38.020559215555,spot_peer,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,219886,15.419432499278974,spot_baseline,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,220077,-94.34164716336323,spot_baseline,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,220077,-0.2364233178624001,relative_legacy,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,220077,-35.74613567165923,baseline,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,220077,-15.907631913599186,peer,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29067,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-10-24 13:35:17.457775+00,220077,-40.59604311793356,spot_peer,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29160 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,182315,18.55223298200189,peer,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,182315,-12.706177371245174,baseline,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,182315,-0.3228783709477862,relative_legacy,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,182315,-15.200309344505014,spot_baseline,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,182315,18.634342724427885,spot_peer,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,185698,37.85116232537298,spot_baseline,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,185698,-4.282470005456009,baseline,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,185698,6.422968476231513,peer,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,185698,-0.0194799830223547,relative_legacy,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,185698,56.67483722015038,spot_peer,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,187708,63.450657663300895,spot_peer,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,187708,38.31474467783616,peer,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,187708,47.300756791617374,spot_baseline,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,187708,0.1992349088192332,relative_legacy,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,187708,28.238002363605275,baseline,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,188107,-115.20030934450504,spot_baseline,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,188107,-0.2119816311773514,relative_legacy,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,188107,-23.70657445331014,baseline,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,188107,-10.56974845797987,peer,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,188107,-53.07053802315266,spot_peer,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,189585,59.50202497935931,baseline,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,189585,78.15477150755498,spot_peer,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,189585,74.36964033776306,peer,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,189585,0.3891640738705608,relative_legacy,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,189588,0.5511989645922567,relative_legacy,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,189588,74.71456501971431,baseline,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,189588,89.53026213333065,spot_baseline,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,189588,81.9662177343994,peer,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,189588,93.73127410886956,spot_peer,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,189869,-115.30041284514242,baseline,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,189869,-62.92186361073237,peer,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,189869,-95.01520437916965,spot_peer,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,189869,-1.257177484190202,relative_legacy,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,189869,-173.6965594166206,spot_baseline,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,190710,6.449890759974432,spot_peer,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,190710,-32.19280948873623,spot_baseline,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,190710,-0.4731696970193651,relative_legacy,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,190710,14.013574955045533,peer,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,190710,-30.5954937735817,baseline,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,190772,0.1470840472542258,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,190772,26.50752495791301,baseline,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,190772,37.85116232537298,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,190772,40.77931985085705,peer,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,190772,56.67483722015038,spot_peer,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191026,0.0146386679896885,relative_legacy,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191026,5.622278329711559,peer,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191026,-0.9979583032233306,baseline,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191026,50.10448490404771,spot_peer,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191026,28.688114778816157,spot_baseline,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191046,4.400308161074982,peer,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191046,-7.52393853523833,baseline,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191046,-0.0538692443225389,relative_legacy,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191046,-23.44652536370228,spot_baseline,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191046,12.721403361674591,spot_peer,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191284,-73.69655941662059,spot_baseline,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191284,-23.31032363158909,spot_peer,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191284,-62.97968956924976,baseline,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191284,-0.819951471000139,relative_legacy,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191284,-16.62842485921501,peer,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191471,26.919836755742985,baseline,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191471,59.80987337483957,spot_peer,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191471,38.80079982256421,peer,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191471,0.1706968766800309,relative_legacy,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191471,42.22330006830476,spot_baseline,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191935,69.58528551222376,baseline,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191935,81.96311355473254,spot_peer,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191935,88.01313108389839,peer,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191935,73.11832415721999,spot_baseline,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,191935,0.5383996487705779,relative_legacy,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192049,84.07629337806857,baseline,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192049,0.6444193436776787,relative_legacy,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192049,95.24210615966496,peer,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192049,95.93238429307144,spot_peer,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192418,-1.244587492589342,relative_legacy,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192418,-50.796858017762126,spot_peer,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192418,-110.3015251242449,baseline,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192418,-112.0294233717712,spot_baseline,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192418,-43.26667797137742,peer,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192459,-567.9315337589039,peer,biak_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192459,-613.356786527058,spot_peer,biak_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192459,-825.9792742709548,baseline,biak_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192459,-896.5784284662086,spot_baseline,biak_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192459,-8.446008215022484,relative_legacy,biak_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192924,56.67483722015038,spot_peer,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192924,34.22826684264982,peer,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192924,0.1428336902789454,relative_legacy,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192924,37.85116232537298,spot_baseline,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,192924,22.586520783727916,baseline,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,193275,66.72109124808708,spot_baseline,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,193275,49.91927628379867,baseline,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,193275,59.720561295490505,peer,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,193275,77.37598532609378,spot_peer,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,193275,0.3500263419467391,relative_legacy,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,204737,-132.19280948873626,spot_baseline,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,204737,-26.605804285046457,peer,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,204737,-65.25498998760614,spot_peer,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,204737,-0.5578988884817897,relative_legacy,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,204737,-54.47520855836813,baseline,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,208405,78.74016416300616,peer,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,208405,70.53123754106895,baseline,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,208405,90.33922347200846,spot_peer,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,208405,0.5092924859830086,relative_legacy,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,215725,-164.0470546921992,baseline,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,215725,-1.8095964795379889,relative_legacy,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,215725,-173.6965594166206,spot_baseline,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,215725,-95.01520437916965,spot_peer,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,215725,-83.86041008337185,peer,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,216863,89.53026213333065,spot_baseline,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,216863,0.7030282360293361,relative_legacy,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,216863,100.20981024480083,peer,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,216863,86.29775134840767,baseline,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,216863,93.73127410886956,spot_peer,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,218269,-72.54540765539848,baseline,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,218269,-23.31032363158909,spot_peer,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,218269,-0.8672465062205582,relative_legacy,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,218269,-73.69655941662059,spot_baseline,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,218269,-15.06129975803035,peer,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,218666,-0.5388665429466675,baseline,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,218666,28.17101855025401,peer,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,218666,29.119083509974864,spot_peer,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,218666,-0.578235259400611,spot_baseline,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,218666,-0.2010759641642453,relative_legacy,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,218945,-25.04899104362853,spot_peer,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,218945,-0.8909176582338312,relative_legacy,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,218945,-73.15745245743902,baseline,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,218945,-17.016844583313617,peer,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,218945,-76.12131404128833,spot_baseline,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,219459,-21.992318797928665,baseline,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,219459,-6.635773375123837,peer,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,219459,-23.31032363158909,spot_peer,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,219459,-73.69655941662059,spot_baseline,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,219459,-0.1943034467023738,relative_legacy,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,219659,-100.0,spot_baseline,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,219659,-15.926138032365728,baseline,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,219659,-0.137859156257959,relative_legacy,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,219659,-6.3993560682884505,peer,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,219659,-42.171174334412,spot_peer,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,219886,45.03008900851971,spot_peer,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,219886,15.165191171252989,baseline,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,219886,21.611335844630126,spot_baseline,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,219886,0.0333550150913473,relative_legacy,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,219886,32.631840077451905,peer,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,220077,43.088354248313806,spot_peer,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,220077,0.0709807900509166,relative_legacy,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,220077,18.903382439001717,spot_baseline,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,220077,7.168453826819208,baseline,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29068,"On October 31, 2024, will VoteHub's Early Voting Tracker show Democrats having 2/3rd or higher of the mail and absentee ballots returned in Pennsylvania?",2024-10-24 13:35:17.46221+00,220077,16.698753066680666,peer,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29161 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,182315,48.54268271702416,spot_baseline,RyansAGI,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,182315,10.198032904019245,spot_peer,RyansAGI,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,182315,0.0776656369102406,relative_legacy,RyansAGI,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,182315,40.61468936879726,baseline,RyansAGI,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,182315,8.337505916869674,peer,RyansAGI,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,185698,11.76108676441965,baseline,RonanMcGovern,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,185698,0.7128483014741057,peer,RonanMcGovern,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,185698,-0.0002709000437857,relative_legacy,RonanMcGovern,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,185698,2.540209114801315,spot_peer,RonanMcGovern,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,185698,37.85116232537298,spot_baseline,RonanMcGovern,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,185699,8.406426478847456,spot_baseline,MWG,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,185699,-18.5496443740286,spot_peer,MWG,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,185699,-0.2333277063281206,relative_legacy,MWG,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,185699,6.5100494687503785,baseline,MWG,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,185699,-14.782734116953344,peer,MWG,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,187708,0.0763916195020878,relative_legacy,twsummerbot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,187708,14.534333477585903,spot_peer,twsummerbot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,187708,32.93946964795901,baseline,twsummerbot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,187708,8.483378073211899,peer,twsummerbot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,187708,54.59683691052925,spot_baseline,twsummerbot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,188107,20.16338611696507,spot_baseline,Cassie,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,188107,-10.128697501406348,spot_peer,Cassie,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,188107,4.452549131072846,baseline,Cassie,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,188107,-2.2242459009256543,peer,Cassie,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,188107,-0.0390587633101437,relative_legacy,Cassie,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,189585,0.169098299298601,relative_legacy,mf-bot-1,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,189585,17.327296291004224,spot_peer,mf-bot-1,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,189585,51.38361460696125,baseline,mf-bot-1,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,189585,15.148405373261214,peer,mf-bot-1,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,189588,48.54268271702416,spot_baseline,mf-bot-3,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,189588,10.198032904019245,spot_peer,mf-bot-3,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,189588,8.32104518262905,peer,mf-bot-3,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,189588,40.538803532581866,baseline,mf-bot-3,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,189588,0.0775185035548696,relative_legacy,mf-bot-3,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,189869,10.198032904019245,spot_peer,VeritasAI,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,189869,32.22332425109454,baseline,VeritasAI,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,189869,6.480977891500581,peer,VeritasAI,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,189869,0.0492336085157122,relative_legacy,VeritasAI,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,190710,36.96060700318376,spot_baseline,Bot_Pepa,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,190710,-0.0201632879706839,relative_legacy,Bot_Pepa,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,190710,35.16158341274295,baseline,Bot_Pepa,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,190710,1.9023470070696016,spot_peer,Bot_Pepa,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,190710,1.6452441380253515,peer,Bot_Pepa,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,190772,-0.114489515215215,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,190772,16.735291184036527,baseline,Jay_Bailey_Bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,190772,-7.467606237490182,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,190772,-5.61546590811494,peer,Jay_Bailey_Bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,190772,23.87868595871165,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191026,46.46682670034443,spot_baseline,manticAI,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191026,0.0011994771429424,relative_legacy,manticAI,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191026,7.793471427705194,baseline,manticAI,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191026,8.711196700635622,spot_peer,manticAI,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191026,0.6254122190445903,peer,manticAI,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191046,0.0065730985002999,relative_legacy,archipelago,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191046,12.94795496685304,baseline,archipelago,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191046,1.2410739550411478,peer,archipelago,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191046,4.117847901649471,spot_peer,archipelago,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191046,40.05379295837288,spot_baseline,archipelago,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191284,13.750352374993504,spot_baseline,000_bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191284,-14.72204630039251,spot_peer,000_bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191284,-0.2164069425301091,relative_legacy,000_bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191284,11.750744664681855,baseline,000_bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191284,-13.059001643548298,peer,000_bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191471,12.061087768811818,baseline,HSeldon,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191471,-11.031177764844346,spot_peer,HSeldon,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191471,-7.430210579779227,peer,HSeldon,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191471,-0.1406820824239159,relative_legacy,HSeldon,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191471,18.903382439001685,spot_baseline,HSeldon,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191935,11.103131238874395,spot_baseline,pgodzinai,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191935,-16.599436437196278,peer,pgodzinai,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191935,10.86370024456319,baseline,pgodzinai,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191935,-16.618123962772824,spot_peer,pgodzinai,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191935,-0.2673508574768702,relative_legacy,pgodzinai,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191975,-0.7744517224018032,baseline,jkraybill_bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191975,-5.054079726717006,peer,jkraybill_bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191975,-0.0776033442649401,relative_legacy,jkraybill_bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191975,-27.57627490599942,spot_peer,jkraybill_bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,191975,-4.196162331873074,spot_baseline,jkraybill_bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,192049,9.147141363762165,peer,gnosis-ai,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,192049,10.198032904019245,spot_peer,gnosis-ai,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,192049,44.14004062782711,baseline,gnosis-ai,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,192049,0.0849684434099806,relative_legacy,gnosis-ai,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,192418,0.0957923289400214,relative_legacy,InstitutPelFutur,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,192418,10.198032904019245,spot_peer,InstitutPelFutur,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,192418,47.8034149831846,baseline,InstitutPelFutur,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,192418,10.280229520551645,peer,InstitutPelFutur,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,192418,48.54268271702416,spot_baseline,InstitutPelFutur,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,192924,48.54268271702416,spot_baseline,acm_bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,192924,5.790131368834958,peer,acm_bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,192924,0.039865578876726,relative_legacy,acm_bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,192924,29.00140626643884,baseline,acm_bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,192924,10.198032904019245,spot_peer,acm_bot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,193275,-13.415193591313214,spot_peer,histerio,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,193275,-0.1739101168055331,relative_legacy,histerio,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,193275,-10.55554651460186,peer,histerio,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,193275,12.080028566347533,baseline,histerio,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,193275,15.574923267794484,spot_baseline,histerio,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,204737,37.85116232537298,spot_baseline,SynapseSeer,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,204737,15.66436261337578,baseline,SynapseSeer,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,204737,2.540209114801315,spot_peer,SynapseSeer,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,204737,0.8697369351801238,peer,SynapseSeer,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,204737,-0.0043803153083675,relative_legacy,SynapseSeer,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,208405,0.0775450148848152,relative_legacy,mf-bot-4,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,208405,40.3829238999548,baseline,mf-bot-4,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,208405,10.198032904019245,spot_peer,mf-bot-4,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,208405,8.289101239923813,peer,mf-bot-4,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,215725,37.85116232537298,spot_baseline,estr.ai,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,215725,2.540209114801315,spot_peer,estr.ai,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,215725,-0.01193089991237,relative_legacy,estr.ai,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,215725,2.231745108003855,peer,estr.ai,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,215725,35.77424044330558,baseline,estr.ai,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,216863,-0.2423165799717653,relative_legacy,tombot61,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,216863,-14.738147178012534,peer,tombot61,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,216863,-14.72204630039251,spot_peer,tombot61,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,216863,13.256871844616011,baseline,tombot61,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,216863,13.750352374993504,spot_baseline,tombot61,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,218269,26.303440583379377,spot_baseline,tombot37,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,218269,-0.1231700292769216,relative_legacy,tombot37,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,218269,25.897750223433867,baseline,tombot37,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,218269,-6.099248351743546,peer,tombot37,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,218269,-5.73087067813078,spot_peer,tombot37,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,218666,9.148422229158816,baseline,GreeneiBot2,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,218666,-17.001550500414865,spot_peer,GreeneiBot2,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,218666,-14.795739870323358,peer,GreeneiBot2,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,218666,-0.240213745116034,relative_legacy,GreeneiBot2,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,218666,10.567807789453692,spot_baseline,GreeneiBot2,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,218945,45.41758931858021,spot_baseline,SeidrBot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,218945,7.6870050399795185,peer,SeidrBot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,218945,0.0622407764496655,relative_legacy,SeidrBot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,218945,43.67041658101648,baseline,SeidrBot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,218945,7.959678236630724,spot_peer,SeidrBot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,219459,-5.73087067813078,spot_peer,karamazov,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,219459,-0.0344607540306476,relative_legacy,karamazov,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,219459,7.849482489756506,baseline,karamazov,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,219459,-1.77582266856114,peer,karamazov,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,219459,26.303440583379377,spot_baseline,karamazov,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,219659,37.85116232537298,spot_baseline,lostandfound,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,219659,0.0,relative_legacy,lostandfound,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,219659,0.4362021100966711,peer,lostandfound,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,219659,6.065717238626491,baseline,lostandfound,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,219659,2.540209114801315,spot_peer,lostandfound,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,219886,22.47648849175156,spot_peer,SaraBase,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,219886,0.1788169952932474,relative_legacy,SaraBase,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,219886,15.587749183782412,peer,SaraBase,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,219886,46.10757661390883,baseline,SaraBase,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,219886,65.6853281875372,spot_baseline,SaraBase,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,220077,40.05379295837288,spot_baseline,mmBot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,220077,0.0065730985002999,relative_legacy,mmBot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,220077,4.117847901649471,spot_peer,mmBot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,220077,1.4147459753042737,peer,mmBot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29069,Will the S&P 500 index go up in November 2024?,2024-10-24 13:35:17.470048+00,220077,15.20336826702114,baseline,mmBot,True,yes,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29162 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,182315,95.60566524124027,spot_baseline,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,182315,7.840561741931043,spot_peer,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,182315,80.06743832758251,baseline,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,182315,0.0301659819620625,relative_legacy,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,182315,3.528382535454368,peer,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,185698,29.741214960769813,baseline,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,185698,0.0150168546548284,relative_legacy,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,185698,8.901579000605775,spot_peer,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,185698,97.08536543404836,spot_baseline,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,185698,1.925861599166461,peer,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,185699,97.08536543404836,spot_baseline,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,185699,0.041627924263038,relative_legacy,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,185699,8.901579000605775,spot_peer,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,185699,4.206840514858047,peer,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,185699,76.09462102423197,baseline,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,187708,48.4187306697909,baseline,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,187708,-0.0683428214608194,relative_legacy,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,187708,-4.199461814479805,peer,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,187708,-3.772241159815858,spot_peer,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,187708,79.41038985597478,spot_baseline,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,188107,22.34467185658307,baseline,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,188107,8.725496786412954,spot_peer,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,188107,0.0151517451751641,relative_legacy,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,188107,1.7940206475070557,peer,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,188107,96.83980026141712,spot_baseline,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,189585,-0.0635114261262295,relative_legacy,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,189585,0.0921505516085098,spot_peer,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,189585,74.49076092618711,baseline,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,189585,-3.206517879377753,peer,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,189588,79.83649511344451,baseline,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,189588,95.60566524124027,spot_baseline,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,189588,3.5191337552369,peer,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,189588,0.0300908987571906,relative_legacy,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,189588,7.840561741931043,spot_peer,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,189869,98.5500430304885,spot_baseline,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,189869,65.419853091016,baseline,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,189869,9.951824324469706,spot_peer,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,189869,0.0495756468066685,relative_legacy,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,189869,4.469391198697698,peer,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,190710,88.59647567539704,spot_baseline,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,190710,-0.8635714323416852,peer,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,190710,-0.0349513575192101,relative_legacy,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,190710,2.81463072237128,spot_peer,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,190710,84.36708637380416,baseline,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,190772,9.951824324469706,spot_peer,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,190772,98.5500430304885,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,190772,4.645573893634841,peer,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,190772,69.11900041514495,baseline,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,190772,0.0506808403596488,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191026,-0.0282851384087531,relative_legacy,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191026,0.6652726594307884,spot_peer,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191026,-1.4294429667745934,peer,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191026,85.59896973084807,spot_baseline,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191026,15.323782059423392,baseline,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191046,19.669060547774976,baseline,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191046,-0.0983345581224417,relative_legacy,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191046,-6.250019613776243,peer,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191046,-17.398504280522584,spot_peer,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191046,60.40713236688608,spot_baseline,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191284,1.730252618400885,peer,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191284,79.13350441869405,baseline,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191284,5.68531137267151,spot_peer,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191284,0.0049937736833495,relative_legacy,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191471,54.14799696604273,baseline,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191471,0.0921505516085098,spot_peer,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191471,-0.0385961813878522,relative_legacy,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191471,84.79969065549501,spot_baseline,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191471,-1.9818139819475749,peer,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191935,6.1971157756725965,peer,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191935,9.951824324469706,spot_peer,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191935,98.5500430304885,spot_baseline,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191935,95.46549277867422,baseline,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,191935,0.0610758423981261,relative_legacy,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,192049,5.68531137267151,spot_peer,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,192049,0.0049937736833495,relative_legacy,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,192049,1.840485427964176,peer,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,192049,84.36029465389724,baseline,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,192418,-9.537661137775622,peer,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,192418,-5.820788811144794,spot_peer,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,192418,-0.1519167216104194,relative_legacy,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,192418,75.40715513202844,baseline,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,192924,-0.0346045918467622,relative_legacy,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,192924,0.0921505516085098,spot_peer,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,192924,50.75005582148519,baseline,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,192924,-1.7732890387991906,peer,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,193275,91.22666280664497,spot_baseline,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,193275,0.8890083039093325,peer,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,193275,4.700603268270812,spot_peer,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,193275,70.94848839467383,baseline,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,193275,-0.0039331157525259,relative_legacy,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,204737,31.849129811800665,baseline,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,204737,-3.394062824766007,peer,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,204737,-5.820788811144794,spot_peer,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,204737,-0.0571870943330785,relative_legacy,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,208405,0.0423473100362878,relative_legacy,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,208405,4.401921499649331,peer,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,208405,97.08536543404836,spot_baseline,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,208405,8.901579000605775,spot_peer,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,208405,80.75519984097836,baseline,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,215725,9.951824324469706,spot_peer,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,215725,98.5500430304885,spot_baseline,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,215725,6.040648442573221,peer,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,215725,93.21935921284192,baseline,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,215725,0.0592003183391586,relative_legacy,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,216863,0.061276127031266,relative_legacy,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,216863,95.0352943786687,baseline,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,216863,98.5500430304885,spot_baseline,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,216863,6.207908798973006,peer,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,216863,9.951824324469706,spot_peer,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,218269,-3.4662426759331684,peer,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,218269,0.0921505516085098,spot_peer,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,218269,83.51183167128423,baseline,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,218269,84.79969065549501,spot_baseline,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,218269,-0.0707069201598491,relative_legacy,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,218666,8.901579000605775,spot_peer,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,218666,97.08536543404836,spot_baseline,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,218666,0.0406560503736947,relative_legacy,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,218666,82.32639012856876,baseline,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,218666,4.308580600683444,peer,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,218945,0.0921505516085098,spot_peer,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,218945,84.79969065549501,spot_baseline,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,218945,81.57800417721656,baseline,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,218945,-0.0711067110222609,relative_legacy,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,218945,-3.543017016118013,peer,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,219459,2.462608607933164,peer,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,219459,98.40424260970237,spot_baseline,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,219459,29.366211371713028,baseline,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,219459,9.84727830661556,spot_peer,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,219459,0.0226901992322281,relative_legacy,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,219659,-0.2613544172770334,relative_legacy,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,219659,-113.55739655198904,spot_peer,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,219659,-18.227808769669384,peer,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,219659,-11.85750095736855,baseline,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,219659,-73.69655941662059,spot_baseline,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,219886,86.13996111574384,spot_baseline,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,219886,1.0531898868249991,spot_peer,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,219886,60.48230405757394,baseline,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,219886,-1.6503544252308904,peer,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,219886,-0.0364323163364422,relative_legacy,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,220077,1.3555293566753808,peer,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,220077,0.007232299617468,relative_legacy,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,220077,35.17087899046355,baseline,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,220077,5.68531137267151,spot_peer,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29070,"Will JD Vance cease to be Donald Trump's running mate before November 5, 2024?",2024-10-24 13:35:17.474701+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29163 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,182315,86.39384504239716,spot_baseline,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,182315,72.42783967576403,baseline,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,182315,6.566211701694381,spot_peer,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,182315,0.0285545122920093,relative_legacy,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,182315,6.368662690447731,peer,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,185698,18.36626633466119,baseline,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,185698,-3.890593267707047,peer,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,185698,-0.0791722854121776,relative_legacy,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,185698,-0.4819741343807692,spot_peer,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,185699,10.424676032847117,peer,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,185699,0.0864527779518992,relative_legacy,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,185699,75.11518222499483,baseline,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,185699,94.11063109464314,spot_baseline,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,185699,12.093375813296282,spot_peer,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,187708,-4.33544930136599,peer,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,187708,66.72109124808708,spot_baseline,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,187708,40.9912968601135,baseline,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,187708,-0.1074578434036843,relative_legacy,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,187708,-7.524439252227488,spot_peer,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,188107,2.7389258067002635,peer,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,188107,22.6964938760066,baseline,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,188107,92.09284290088011,spot_baseline,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,188107,0.0170364087065135,relative_legacy,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,188107,10.648130809239817,spot_peer,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,189585,-6.746518388745698,spot_peer,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,189585,-0.1267990508172907,relative_legacy,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,189585,-4.784861355970183,peer,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,189585,60.30822542456941,baseline,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,189588,0.0,baseline,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,189588,-46.02318726327304,peer,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,189588,-0.69372414766561,relative_legacy,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,189588,-55.3135600774717,spot_peer,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,189588,0.0,spot_baseline,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,189869,61.47103388847103,baseline,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,189869,11.011341493675742,spot_peer,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,189869,0.0555250845753555,relative_legacy,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,189869,7.722328963389558,peer,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,190710,1.92123495592686,spot_peer,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,190710,79.90873060740036,spot_baseline,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,190710,2.5738319406103027,peer,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,190710,76.16757367886797,baseline,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,190710,-0.0284721615828879,relative_legacy,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,190772,13.16419714030276,spot_peer,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,190772,9.727981907210982,peer,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,190772,67.10075278903798,baseline,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,190772,0.0797910987026562,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,190772,95.60566524124027,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191026,-0.0304746884868188,relative_legacy,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191026,-1.0062721169100173,peer,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191026,70.48719644563528,spot_baseline,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191026,14.12324090888234,baseline,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191026,-4.826958546209047,spot_peer,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191046,-0.1112044014739698,relative_legacy,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191046,-6.09042110608998,peer,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191046,-19.07901667744421,spot_peer,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191046,16.61449413252697,baseline,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191046,50.58909297299573,spot_baseline,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191284,-6.746518388745698,spot_peer,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191284,-5.066572206367168,peer,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191284,57.94602729578765,baseline,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191284,67.80719051126377,spot_baseline,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191284,-0.1293538556538083,relative_legacy,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191471,-4.194948421073975,spot_peer,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191471,45.60702887318251,baseline,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191471,-2.3597748447278604,peer,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191471,-0.0820775816720632,relative_legacy,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191471,71.36958148433591,spot_baseline,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191935,13.16419714030276,spot_peer,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191935,0.1241790062243775,relative_legacy,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191935,95.60566524124027,spot_baseline,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191935,92.77282837772098,baseline,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191935,13.848904655365883,peer,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191975,42.55490665307228,baseline,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191975,97.08536543404836,spot_baseline,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191975,0.0552065085474623,relative_legacy,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191975,14.224035490912293,spot_peer,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,191975,6.450359513309308,peer,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,192049,0.0872670142995935,relative_legacy,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,192049,84.51773680699054,baseline,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,192049,11.011341493675742,spot_peer,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,192049,10.93055407192831,peer,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,192418,-12.856301900120704,peer,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,192418,-0.2370659815556627,relative_legacy,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,192418,-13.415498906294728,spot_peer,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,192418,57.63418789509791,baseline,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,192924,0.0489548705951277,relative_legacy,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,192924,6.937190464522996,peer,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,192924,55.47732336914568,baseline,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,192924,92.5999418556223,spot_baseline,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,192924,11.011341493675742,spot_peer,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,193275,75.70232465074595,spot_baseline,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,193275,-1.0916120875235564,spot_peer,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,193275,-0.2404211830596145,peer,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,193275,60.34871417152825,baseline,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,193275,-0.0607108102588552,relative_legacy,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,204737,-2.6352226469416493,peer,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,204737,67.80719051126377,spot_baseline,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,204737,28.34610921229917,baseline,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,204737,-6.746518388745698,spot_peer,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,204737,-0.0696800554566589,relative_legacy,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,208405,70.72961140262075,baseline,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,208405,5.370331016340447,peer,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,208405,5.42439529574725,spot_peer,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,208405,0.0148815420901437,relative_legacy,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,215725,84.79969065549501,spot_baseline,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,215725,80.26881747788984,baseline,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,215725,5.943654987621822,peer,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,215725,5.42439529574725,spot_peer,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,215725,0.0177282492494578,relative_legacy,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,216863,-0.4819741343807692,spot_peer,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,216863,76.55347463629771,spot_baseline,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,216863,73.84123282173206,baseline,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,216863,0.2428449180966174,peer,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,216863,-0.0604538617610604,relative_legacy,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,218269,0.4230682433836197,peer,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,218269,76.55347463629771,spot_baseline,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,218269,-0.0592018865613605,relative_legacy,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,218269,75.4053561025263,baseline,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,218269,-0.4819741343807692,spot_peer,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,218666,67.08403358815619,spot_baseline,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,218666,-4.857625129972818,peer,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,218666,58.00028705108616,baseline,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,218666,-0.1265708110921168,relative_legacy,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,218666,-7.264481043845274,spot_peer,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,218945,65.25835416867157,baseline,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,218945,-6.746518388745698,spot_peer,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,218945,-0.1446290211781846,relative_legacy,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,218945,-5.942813151107897,peer,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,218945,67.80719051126377,spot_baseline,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,219459,0.0072428013259015,relative_legacy,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,219459,87.44691179161411,spot_baseline,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,219459,2.3452300944481737,peer,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,219459,7.320472958127572,spot_peer,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,219459,26.096655248755926,baseline,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,219659,13.74608502703304,baseline,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,219659,0.946211914633164,peer,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,219659,0.0,relative_legacy,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,219659,84.79969065549501,spot_baseline,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,219659,5.42439529574725,spot_peer,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,219886,5.0378956021225285,spot_peer,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,219886,59.18040334364814,baseline,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,219886,84.26007659940063,spot_baseline,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,219886,3.980081701688587,peer,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,219886,0.0001841532450396,relative_legacy,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,220077,33.430537116842366,baseline,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,220077,3.1146765510691496,peer,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,220077,87.97057662822883,spot_baseline,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,220077,0.0132001931562463,relative_legacy,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29071,"Will the UK Abolish the Two-Child Benefit Cap before January 1, 2025?",2024-10-24 13:35:17.608432+00,220077,7.695548990020704,spot_peer,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29164 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,182315,-10.093879077171382,baseline,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,182315,-9.177450787949793,spot_peer,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,182315,-5.599207919253293,peer,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,182315,-12.029423371771196,spot_baseline,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,182315,-0.2189608927939904,relative_legacy,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,185698,-5.587567761400849,peer,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,185698,-7.397447196495454,baseline,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,185698,21.412480535284764,spot_baseline,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,185698,14.802026528325154,spot_peer,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,185698,-0.129724976312164,relative_legacy,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,185699,35.72308168296956,spot_peer,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,185699,41.14123243263841,baseline,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,185699,50.58909297299573,spot_baseline,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,185699,0.2879801691203841,relative_legacy,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,185699,31.359135938436093,peer,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,187708,0.1073120203644547,relative_legacy,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,187708,24.499428462638768,spot_peer,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,187708,34.93652775942134,spot_baseline,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,187708,21.684131207932264,baseline,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,187708,16.06079295412859,peer,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,188107,17.982488033548808,baseline,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,188107,70.78192485066896,spot_baseline,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,188107,12.61068966766164,peer,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,188107,50.202327700414585,spot_peer,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,188107,0.1301763376153407,relative_legacy,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,189585,-87.71087793794845,baseline,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,189585,-1.006626447795611,relative_legacy,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,189585,-100.0,spot_baseline,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,189585,-62.02180001269815,peer,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,189585,-72.25664785218022,spot_peer,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,189588,-29.498050418116723,peer,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,189588,-43.01308794209577,baseline,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,189588,-0.5484855125103802,relative_legacy,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,189588,-37.449175098261655,spot_peer,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,189869,45.01358591596391,baseline,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,189869,48.06929798978677,spot_peer,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,189869,33.17399461188909,peer,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,189869,0.3371784699053153,relative_legacy,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,190710,20.01901138627948,spot_peer,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,190710,0.1087420075161506,relative_legacy,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,190710,28.688114778816157,spot_baseline,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,190710,27.376488692831938,baseline,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,190710,21.7866248548284,peer,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,190772,-103.5347922697354,baseline,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,190772,-73.80040022984139,peer,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,190772,-1.1461714487465469,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,190772,-147.39311883324118,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,190772,-106.23982719411497,spot_peer,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191026,-26.881675842779984,spot_baseline,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191026,2.60766151718323,peer,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191026,3.9017644789798407,baseline,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191026,-0.0006736011466941,relative_legacy,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191026,-19.827240710616223,spot_peer,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191046,-5.030186745555544,baseline,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191046,-11.451130793340337,spot_peer,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191046,-0.1087516535417899,relative_legacy,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191046,-15.200309344505014,spot_baseline,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191046,-3.864733543550512,peer,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191284,-17.364070156093618,spot_peer,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191284,-23.44652536370228,spot_baseline,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191284,-0.321371766740501,relative_legacy,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191284,-20.036618210837823,baseline,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191284,-12.782218284851014,peer,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191471,22.91153442551168,peer,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191471,0.1975060962291953,relative_legacy,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191471,31.04634854835191,baseline,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191471,34.2557056493189,spot_peer,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191471,48.54268271702416,spot_baseline,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191935,49.45932362909144,baseline,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191935,50.58909297299573,spot_baseline,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191935,0.3270411508859275,relative_legacy,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191935,35.72308168296956,spot_peer,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,191935,38.56256415719833,peer,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,192049,48.06929798978677,spot_peer,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,192049,61.97107998663802,baseline,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,192049,46.85115797740804,peer,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,192049,0.4728608364783418,relative_legacy,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,192418,-72.25664785218022,spot_peer,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,192418,-1.1487370624702853,relative_legacy,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,192418,-98.54984840281584,baseline,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,192418,-70.71995059354064,peer,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,192924,9.307906668261536,spot_peer,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,192924,6.297426539274992,peer,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,192924,-0.0230089801303612,relative_legacy,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,192924,8.248755104339097,baseline,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,192924,13.750352374993504,spot_baseline,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,193275,11.85966862042278,peer,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,193275,14.262847886907805,baseline,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,193275,0.0191310778792668,relative_legacy,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,193275,12.456978271837595,spot_peer,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,193275,18.14206402801417,spot_baseline,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,204737,-0.5517671045996744,spot_peer,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,204737,-0.1142743997802464,peer,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,204737,-0.0728768155863485,relative_legacy,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,204737,0.0,baseline,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,204737,0.0,spot_baseline,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,208405,-29.45270966245318,peer,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,208405,-37.449175098261655,spot_peer,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,208405,-0.5479350988214151,relative_legacy,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,208405,-51.45731728297583,spot_baseline,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,208405,-42.93813488582914,baseline,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,215725,64.22426974821451,baseline,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,215725,0.4792623097434198,relative_legacy,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,215725,67.80719051126377,spot_baseline,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,215725,48.06929798978677,spot_peer,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,215725,48.701224304911975,peer,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,216863,0.3008399957494541,relative_legacy,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,216863,48.54268271702416,spot_baseline,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,216863,46.8392081154441,baseline,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,216863,34.2557056493189,spot_peer,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,216863,36.2866233543133,peer,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,218269,-0.5517671045996744,spot_peer,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,218269,2.675517037686923,peer,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,218269,-0.163538337168375,relative_legacy,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,218269,0.0,baseline,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,218269,0.0,spot_baseline,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,218666,0.0444896286435336,relative_legacy,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,218666,13.36522182204925,spot_peer,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,218666,19.408705211630256,spot_baseline,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,218666,14.110187655633132,peer,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,218666,16.934947060180708,baseline,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,218945,-99.08774418485169,baseline,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,218945,-74.34658309192362,spot_peer,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,218945,-1.157413630972798,relative_legacy,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,218945,-70.97173630999417,peer,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,218945,-102.91463456595166,spot_baseline,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,219459,0.1641832944617077,relative_legacy,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,219459,21.99337988089172,baseline,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,219459,73.69655941662059,spot_baseline,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,219459,15.488603476638575,peer,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,219459,52.29226294015797,spot_peer,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,219659,-73.69655941662059,spot_baseline,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,219659,-0.1521968903717619,relative_legacy,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,219659,-53.39579714935731,spot_peer,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,219659,-8.785728207792664,peer,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,219659,-12.118426303438492,baseline,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,219886,-4.516434103392914,spot_peer,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,219886,-3.947733532087604,baseline,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,219886,-5.529145237337302,spot_baseline,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,219886,-0.1496624425541476,relative_legacy,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,219886,-1.7624987621662287,peer,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,220077,13.617469012311943,peer,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,220077,0.1249688815952882,relative_legacy,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,220077,19.23680254835855,baseline,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,220077,35.72308168296956,spot_peer,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29072,"Will Russia have control of Chasiv Yar on December 31, 2024?",2024-10-24 13:35:17.617261+00,220077,50.58909297299573,spot_baseline,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29165 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,182315,0.0382733786963227,relative_legacy,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,182315,3.84538195800727,peer,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,182315,5.743348573947955,spot_peer,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,182315,76.52845219886073,baseline,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,182315,91.07326619029126,spot_baseline,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,185698,67.80719051126377,spot_baseline,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,185698,23.76191520856862,baseline,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,185698,-0.0286635649172624,relative_legacy,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,185698,-1.7577721085536553,peer,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,185698,-10.921026677651328,spot_peer,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,185699,6.484341321460542,peer,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,185699,8.98968885139712,spot_peer,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,185699,0.0751183257651073,relative_legacy,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,185699,79.07783581058253,baseline,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,185699,95.60566524124027,spot_baseline,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,187708,71.72102990195957,spot_baseline,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,187708,-5.92444168351457,peer,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,187708,45.11872437825878,baseline,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,187708,-8.117731047531906,spot_peer,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,187708,-0.0956793379400623,relative_legacy,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,188107,-0.1168643543050511,peer,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,188107,22.165830255113363,baseline,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,188107,-0.0032356624543494,relative_legacy,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,188107,0.2886397650692217,spot_peer,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,188107,83.45763907926283,spot_baseline,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,189585,1.249887006841621,spot_peer,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,189585,-0.0149049630406769,relative_legacy,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,189585,74.59609547962738,baseline,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,189585,0.0716332844084456,peer,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,189588,4.741879940717224,peer,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,189588,0.0508218177588975,relative_legacy,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,189588,77.39069643805487,baseline,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,189588,6.836833204770109,spot_peer,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,189869,0.0378690733570374,relative_legacy,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,189869,3.7300049462723046,peer,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,189869,6.836833204770109,spot_peer,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,189869,61.473119343229314,baseline,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,190710,0.0252677217441593,relative_legacy,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,190710,4.638168698550663,spot_peer,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,190710,85.52462284802539,baseline,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,190710,3.4828643437968263,peer,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,190710,89.53026213333065,spot_baseline,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,190772,79.90873060740036,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,190772,-2.253273332978781,spot_peer,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,190772,56.18149112831684,baseline,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,190772,-0.0483003495090561,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,190772,-2.491921689363051,peer,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191026,-17.590007195200364,spot_peer,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191026,-0.0217680724497599,relative_legacy,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191026,-1.5902385438508029,peer,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191026,14.7850403936755,baseline,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191026,58.496250072115615,spot_baseline,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191046,43.29594072761063,spot_baseline,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191046,-9.770942391640713,peer,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191046,14.422673585180762,baseline,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191046,-28.4772604798424,spot_peer,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191046,-0.1417592184398953,relative_legacy,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191284,1.249887006841621,spot_peer,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191284,72.46635524242971,baseline,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191284,-0.0144431917654686,relative_legacy,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191284,0.0505575388152036,peer,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191284,84.79969065549501,spot_baseline,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191471,87.97057662822883,spot_baseline,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191471,3.5210407011150675,spot_peer,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191471,56.32269188251389,baseline,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191471,1.4663559556275445,peer,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191471,0.0067344444034743,relative_legacy,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191935,4.621085554614711,peer,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191935,88.34282092204,baseline,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191935,0.0396273917472923,relative_legacy,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191935,5.743348573947955,spot_peer,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191935,91.07326619029126,spot_baseline,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191975,97.23250415571516,spot_baseline,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191975,4.100961297578335,peer,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191975,0.0456264072738495,relative_legacy,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191975,10.154915618417023,spot_peer,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,191975,44.1574860988949,baseline,jkraybill_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,192049,84.78038773869996,baseline,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,192049,5.301428830715362,peer,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,192049,6.836833204770109,spot_peer,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,192049,0.0537118301093898,relative_legacy,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,192418,-18.775554500769157,peer,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,192418,-0.2769597895720687,relative_legacy,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,192418,-17.590007195200364,spot_peer,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,192418,57.66144236295429,baseline,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,192924,6.836833204770109,spot_peer,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,192924,3.388648278810629,peer,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,192924,55.70744407854666,baseline,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,192924,0.0339258826495238,relative_legacy,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,192924,92.5999418556223,spot_baseline,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,193275,84.63930208523604,spot_baseline,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,193275,-0.1162227529923482,peer,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,193275,-0.0157427471669984,relative_legacy,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,193275,1.1350083587302755,spot_peer,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,193275,69.72473554036222,baseline,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,204737,2.429148754584648,peer,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,204737,0.0231219527896303,relative_legacy,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,204737,39.121268614573616,baseline,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,204737,6.836833204770109,spot_peer,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,204737,92.5999418556223,spot_baseline,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,208405,63.84948989791273,baseline,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,208405,-4.656482423286404,spot_peer,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,208405,-0.083040950627605,relative_legacy,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,208405,-4.971060150203385,peer,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,215725,10.04952720200666,spot_peer,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,215725,8.667655923861162,peer,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,215725,0.0967199295980716,relative_legacy,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,215725,92.02233149741411,baseline,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,215725,97.08536543404836,spot_baseline,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,216863,92.5999418556223,spot_baseline,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,216863,0.0556281987050517,relative_legacy,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,216863,5.765495916080983,peer,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,216863,6.836833204770109,spot_peer,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,216863,89.37742344593147,baseline,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,218269,-0.0177731464467556,relative_legacy,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,218269,83.55921001814028,baseline,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,218269,1.249887006841621,spot_peer,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,218269,0.5471297719329078,peer,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,218269,84.79969065549501,spot_baseline,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,218666,78.5759774427011,spot_baseline,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,218666,67.14333135882667,baseline,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,218666,-0.0827290875646462,relative_legacy,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,218666,-4.92046682454902,peer,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,218666,-3.207860568088866,spot_peer,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,218945,-12.433516769514917,peer,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,218945,-11.568886689056184,spot_peer,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,218945,-0.192067389886875,relative_legacy,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,218945,64.4494645926484,baseline,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,218945,66.90267655096306,spot_baseline,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,219459,97.08536543404836,spot_baseline,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,219459,10.04952720200666,spot_peer,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,219459,28.97367962491977,baseline,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,219459,2.7679311365937656,peer,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,219459,0.034933183544316,relative_legacy,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,219659,-1.978769781111266,peer,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,219659,-0.0270681674256758,relative_legacy,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,219659,-10.921026677651328,spot_peer,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,219659,11.727564085137594,baseline,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,219659,67.80719051126377,spot_baseline,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,219886,86.26695892683983,spot_baseline,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,219886,-0.0035975060018261,relative_legacy,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,219886,2.300820967762943,spot_peer,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,219886,0.7454178507342547,peer,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,219886,61.61149488486182,baseline,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,220077,2.639848945755857,peer,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,220077,7.918867524390636,spot_peer,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,220077,0.0282299975960821,relative_legacy,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,220077,35.811301826559664,baseline,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29074,"Before Election Day, will Donald Trump appear on the Call Her Daddy podcast?",2024-10-24 13:35:17.631004+00,220077,94.11063109464314,spot_baseline,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29167 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,182315,2.856915219677092,spot_baseline,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,182315,-39.22136038106455,spot_peer,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,182315,-29.640654961112915,peer,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,182315,-0.5688246191028686,relative_legacy,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,182315,2.4023822101033105,baseline,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,185698,0.0464895586397522,relative_legacy,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,185698,8.840906063722707,peer,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,185698,30.25847039461624,baseline,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,185698,97.08536543404836,spot_baseline,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,185698,28.269963700047548,spot_peer,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,185699,86.39384504239716,spot_baseline,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,185699,20.612139910829622,spot_peer,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,185699,20.808537025105327,peer,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,185699,0.1276005663176795,relative_legacy,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,185699,71.61230220392177,baseline,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,187708,-0.1867117629039782,relative_legacy,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,187708,27.863634710262765,baseline,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,187708,-4.372223600110926,peer,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,187708,43.935717847425664,spot_baseline,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,187708,-9.798582284788733,spot_peer,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,188107,82.9173032263295,spot_baseline,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,188107,18.12205958099338,spot_peer,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,188107,5.148009336675807,peer,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,188107,0.0001561351919788,relative_legacy,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,188107,23.66700285533375,baseline,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,189585,23.200566116832626,baseline,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,189585,-0.3784315540855785,relative_legacy,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,189585,-15.746266253816476,peer,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,189585,-22.42773766629448,spot_peer,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,189588,13.750352374993504,spot_baseline,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,189588,-0.4758980270170114,relative_legacy,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,189588,-22.904822489186465,peer,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,189588,11.495376543952633,baseline,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,189588,-31.4189132885562,spot_peer,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,189869,18.815783651150383,peer,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,189869,25.057269702811,spot_peer,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,189869,61.47946043085569,baseline,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,189869,0.1294020330503834,relative_legacy,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,190710,52.60688116675877,spot_baseline,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,190710,-3.587843464252504,spot_peer,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,190710,-0.1567756609424805,relative_legacy,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,190710,50.301581017552536,baseline,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,190710,1.730465082200852,peer,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,190772,6.640323317711658,peer,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,190772,46.43769929677991,baseline,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,190772,-0.0472518450047306,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,190772,5.999602325680688,spot_peer,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,190772,65.99245584023782,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191026,58.496250072115615,spot_baseline,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191026,0.6304293028405282,spot_peer,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191026,-0.0042768721267213,relative_legacy,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191026,16.369590467545216,baseline,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191026,3.271596678041848,peer,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191046,-0.076114166839035,relative_legacy,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191046,0.3223454045855861,peer,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191046,19.697496491332235,baseline,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191046,0.6304293028405282,spot_peer,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191046,58.496250072115615,spot_baseline,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191284,67.80719051126377,spot_baseline,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191284,7.29940982038956,spot_peer,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191284,10.186120942643884,peer,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191284,-0.020026730041535,relative_legacy,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191284,57.94501011252076,baseline,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191471,-12.53175894256025,peer,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191471,-0.3011078698312049,relative_legacy,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191471,16.851979659954647,baseline,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191471,-22.42773766629448,spot_peer,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191471,26.303440583379377,spot_baseline,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191935,74.84612330040356,spot_baseline,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191935,12.341060117897529,spot_peer,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191935,0.05591010994088,relative_legacy,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191935,18.05765957380596,peer,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,191935,72.93737111882037,baseline,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192049,-6.498834084144454,spot_peer,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192049,-0.1844200300913839,relative_legacy,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192049,-1.3676794055689083,peer,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192049,44.496375699216166,baseline,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192418,-64.38561897747249,spot_baseline,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192418,-1.3115507452048494,relative_legacy,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192418,-63.49088366001416,baseline,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192418,-87.38396580660648,spot_peer,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192418,-82.73355264462919,peer,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192459,34.21597826581753,peer,biak_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192459,94.6572006706776,baseline,biak_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192459,0.2924283226189957,relative_legacy,biak_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192459,30.254191755054265,spot_peer,biak_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192459,99.85565831303312,spot_baseline,biak_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192924,67.80719051126377,spot_baseline,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192924,40.81635523935746,baseline,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192924,7.29940982038956,spot_peer,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192924,-0.0415326240594775,relative_legacy,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,192924,6.066927820915773,peer,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,193275,16.06018755166855,peer,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,193275,0.0522857639179887,relative_legacy,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,193275,69.50464680998004,baseline,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,193275,81.55754288625727,spot_baseline,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,193275,17.148128400169785,spot_peer,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,204737,29.31904208466275,spot_peer,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,204737,0.0855975695249096,relative_legacy,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,204737,12.959801039609754,peer,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,204737,41.78817564626025,baseline,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,208405,-22.42773766629448,spot_peer,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,208405,-0.3704918847780321,relative_legacy,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,208405,-15.283273521114166,peer,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,208405,21.9529609581273,baseline,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,215725,97.08536543404836,spot_baseline,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,215725,32.32289547992697,peer,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,215725,0.2662660963246385,relative_legacy,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,215725,28.269963700047548,spot_peer,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,215725,92.07412677260254,baseline,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,216863,81.85999826678719,baseline,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,216863,0.1514137647268193,relative_legacy,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,216863,24.65401533563792,peer,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,216863,19.470323504882515,spot_peer,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,216863,84.79969065549501,spot_baseline,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,218269,84.79969065549501,spot_baseline,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,218269,26.350417453259176,peer,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,218269,83.5733008058457,baseline,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,218269,19.470323504882515,spot_peer,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,218269,0.1587268774366082,relative_legacy,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,218666,0.0734710684461752,relative_legacy,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,218666,68.9882413424542,baseline,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,218666,21.29122231103053,spot_peer,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,218666,16.986940922575897,peer,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,218666,87.3419503434857,spot_baseline,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,218945,-66.65762662748085,spot_baseline,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,218945,-89.01129602664753,spot_peer,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,218945,-64.23899796506826,baseline,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,218945,-1.3082041048246045,relative_legacy,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,218945,-82.09256439203602,peer,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,219459,7.582148208111174,peer,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,219459,27.7861889583278,baseline,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,219459,0.0307378242806283,relative_legacy,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,219459,25.419208193101884,spot_peer,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,219459,93.10526462825084,spot_baseline,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,219659,84.79969065549501,spot_baseline,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,219659,19.470323504882515,spot_peer,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,219659,14.753386801329272,baseline,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,219659,0.0032749635803817,relative_legacy,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,219659,3.299146882824931,peer,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,219886,-17.894041679260155,peer,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,219886,12.920822033762082,baseline,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,219886,-0.387957070181928,relative_legacy,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,219886,18.091166336856904,spot_baseline,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,219886,-28.30979623092199,spot_peer,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,220077,94.11063109464314,spot_baseline,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,220077,26.13930402243153,spot_peer,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,220077,10.246631853403796,peer,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,220077,0.0553700123608066,relative_legacy,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29075,"Before Election Day, will Kamala Harris appear on the Joe Rogan podcast?",2024-10-24 13:35:17.635492+00,220077,35.82582952008321,baseline,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29168 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,182315,60.06867374546168,baseline,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,182315,-0.0395172361863188,relative_legacy,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,182315,71.36958148433591,spot_baseline,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,182315,-1.966177416570417,peer,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,182315,-1.0322891083735506,spot_peer,RyansAGI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,185698,-0.0003446011873939,relative_legacy,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,185698,0.7513393171981622,peer,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,185698,67.80719051126377,spot_baseline,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,185698,-3.5838590760452744,spot_peer,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,185698,23.786096878529875,baseline,RonanMcGovern,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,185699,0.1283864976755263,relative_legacy,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,185699,91.07326619029126,spot_baseline,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,185699,10.33385934639804,peer,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,185699,13.080516175554012,spot_peer,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,185699,78.93740335166527,baseline,MWG,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,187708,36.0105200928567,baseline,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,187708,-8.12563408918582,peer,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,187708,-11.779619103750258,spot_peer,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,187708,-0.1248949050416816,relative_legacy,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,187708,56.36462694840639,spot_baseline,twsummerbot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,188107,86.92133924646458,spot_baseline,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,188107,10.106689838716202,spot_peer,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,188107,26.331301301382847,baseline,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,188107,3.0436761434422688,peer,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,188107,0.031909088830314,relative_legacy,Cassie,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,188389,0.010120655668433,relative_legacy,Panshul42,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,188389,4.82700482783968,baseline,Panshul42,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,188389,16.326856453003177,spot_peer,Panshul42,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,188389,95.60566524124027,spot_baseline,Panshul42,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,188389,0.8265145858038383,peer,Panshul42,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,189585,-3.5838590760452744,spot_peer,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,189585,-4.391043264083637,peer,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,189585,-0.0745437010163222,relative_legacy,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,189585,59.64877973420244,baseline,mf-bot-1,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,189588,1.2006484707796905,peer,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,189588,0.0041137342965952,relative_legacy,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,189588,2.680685178319659,spot_peer,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,189588,63.98239660351153,baseline,mf-bot-3,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,189869,5.135269786205341,peer,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,189869,0.0588382392715974,relative_legacy,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,189869,8.587054608447684,spot_peer,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,189869,56.30157627297952,baseline,VeritasAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,190710,8.587054608447684,spot_peer,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,190710,7.111570590294932,peer,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,190710,84.79969065549501,spot_baseline,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,190710,81.16722986746093,baseline,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,190710,0.0803693999863822,relative_legacy,Bot_Pepa,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,190772,55.10756060273116,baseline,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,190772,78.24085649273731,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,190772,2.053701889503066,peer,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,190772,0.015973408918637,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,190772,3.88927595384942,spot_peer,Jay_Bailey_Bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191026,-0.0673829391753002,relative_legacy,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191026,-13.04580240701264,spot_peer,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191026,8.734612674096187,baseline,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191026,-4.248069022219048,peer,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191026,54.59683691052925,spot_baseline,manticAI,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191046,-17.382102980579294,spot_peer,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191046,-5.853377108865643,peer,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191046,16.22860506643387,baseline,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191046,48.54268271702416,spot_baseline,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191046,-0.0923702912018721,relative_legacy,archipelago,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191284,0.1401752491569344,relative_legacy,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191284,11.14597452341086,peer,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191284,14.174000806376162,spot_peer,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191284,79.13133839979982,baseline,000_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191471,-0.0179351077289618,relative_legacy,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191471,0.2202514799687304,spot_peer,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191471,73.11832415721999,spot_baseline,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191471,-0.4066629301061876,peer,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191471,46.87826885880983,baseline,HSeldon,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191935,0.0176200360441,relative_legacy,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191935,2.616070745314909,peer,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191935,3.88927595384942,spot_peer,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191935,76.16599069477084,baseline,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,191935,78.24085649273731,spot_baseline,pgodzinai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,192049,0.1492947886329198,relative_legacy,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,192049,11.970786791912271,peer,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,192049,14.174000806376162,spot_peer,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,192049,85.00928585106594,baseline,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,192418,-14.471112360687338,spot_peer,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,192418,52.60688116675877,spot_baseline,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,192418,51.889059694182095,baseline,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,192418,-0.2329147109167361,relative_legacy,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,192418,-15.876367293214347,peer,InstitutPelFutur,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,192924,51.09203106237472,baseline,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,192924,4.7371071851392585,peer,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,192924,8.587054608447684,spot_peer,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,192924,0.0525225021207527,relative_legacy,acm_bot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,193275,73.89146689268516,baseline,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,193275,1.3592307096735732,peer,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,193275,76.38364588909515,spot_baseline,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,193275,2.55904498377479,spot_peer,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,193275,0.0011057033354913,relative_legacy,histerio,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,204737,5.8631238256065865,baseline,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,204737,13.750352374993504,spot_baseline,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,204737,-42.30218218499105,spot_peer,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,204737,-18.19376328373497,peer,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,204737,-0.2649524671393014,relative_legacy,SynapseSeer,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,208405,0.0041581910230974,relative_legacy,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,208405,2.680685178319659,spot_peer,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,208405,1.2040666770711037,peer,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,208405,63.85571833268664,baseline,mf-bot-4,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,215725,87.86132695065369,baseline,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,215725,14.174000806376162,spot_peer,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,215725,12.429768386772205,peer,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,215725,0.1538043103527679,relative_legacy,estr.ai,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,216863,-4.7954449552478495,peer,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,216863,-3.5838590760452744,spot_peer,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,216863,67.80719051126377,spot_baseline,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,216863,-0.0827666135193997,relative_legacy,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,216863,65.46671022499032,baseline,tombot61,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,218269,76.55347463629771,spot_baseline,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,218269,75.45945624709461,baseline,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,218269,1.6560039690788224,peer,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,218269,2.680685178319659,spot_peer,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,218269,0.0031290389935847,relative_legacy,tombot37,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,218666,58.83013969594992,baseline,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,218666,-5.671472165522294,spot_peer,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,218666,-0.0933936349264947,relative_legacy,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,218666,-5.729376356065489,peer,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,218666,64.89255594531211,spot_baseline,GreeneiBot2,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,218945,57.69119296069204,baseline,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,218945,-10.420236290178911,peer,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,218945,59.83652053236445,spot_baseline,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,218945,-0.1595215054924104,relative_legacy,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,218945,-9.292868079861394,spot_peer,SeidrBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,219459,26.87765553371004,baseline,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,219459,12.345044506104752,spot_peer,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,219459,90.04643264490856,spot_baseline,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,219459,0.0407761287627771,relative_legacy,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,219459,3.670454032381519,peer,karamazov,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,219659,6.627099578069126,baseline,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,219659,37.85116232537298,spot_baseline,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,219659,-25.03992676979721,spot_peer,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,219659,-4.306660581079729,peer,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,219659,-0.067259761577871,relative_legacy,lostandfound,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,219886,69.81295574538912,spot_baseline,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,219886,-0.0440367619803754,relative_legacy,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,219886,-2.281415622344117,peer,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,219886,-2.147225541916165,spot_peer,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,219886,49.861866650924185,baseline,SaraBase,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,220077,35.26703530065305,baseline,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,220077,5.348185062516438,peer,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,220077,0.0623878955102205,relative_legacy,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,220077,14.174000806376162,spot_peer,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29077,"Will William Ruto cease to be President of Kenya before January 1, 2025?",2024-10-24 14:25:44.405652+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,2024-10-25 14:30:00+00,29170 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,182315,7.453786719880131,peer,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,182315,62.29303509201767,spot_baseline,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,182315,0.1140049509968763,relative_legacy,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,182315,52.10558478606534,baseline,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,182315,11.665847210937594,spot_peer,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,185690,0.2307173490057182,peer,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,185690,0.0032926308865669,relative_legacy,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,185690,1.1804899876037809,baseline,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,185690,10.85460158473813,spot_peer,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,185690,61.164454337366166,spot_baseline,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,185698,-32.19280948873623,spot_baseline,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,185698,-56.25240129540658,spot_peer,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,185698,-0.4405862740721978,relative_legacy,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,185698,-30.42101611266152,baseline,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,185698,-31.471334453989957,peer,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,185699,-18.534027741861497,peer,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,185699,3.467951543592822,baseline,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,185699,-0.2558799090623802,relative_legacy,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,185699,-29.044255350629733,spot_peer,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,185699,5.658352836636751,spot_baseline,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,187708,70.31006996041602,spot_baseline,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,187708,17.42864658995501,spot_peer,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,187708,59.164588222117295,baseline,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,187708,12.38083422694976,peer,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,187708,0.1811030520496249,relative_legacy,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,188389,3.3149404050259315,baseline,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,188389,-0.1166289783720021,relative_legacy,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,188389,-26.19210079911289,spot_peer,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,188389,-8.294490778795303,peer,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,188389,9.626185305840348,spot_baseline,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,189585,33.2287808655488,baseline,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,189585,-0.1029558716571515,relative_legacy,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,189585,-5.903442621748735,spot_peer,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,189585,-8.350886751627616,peer,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,189585,37.85116232537298,spot_baseline,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,189588,15.629528540439594,spot_peer,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,189588,67.80719051126377,spot_baseline,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,189588,10.003494060624696,peer,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,189588,0.1430177521553423,relative_legacy,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,189588,47.90383192897037,baseline,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,189869,1.7818285645631673,spot_peer,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,189869,46.5791068195971,baseline,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,189869,-2.626556424274358,peer,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,189869,-0.0260903313831417,relative_legacy,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,190710,71.1227142620185,baseline,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,190710,15.973365178096197,peer,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,190710,20.68924926912141,spot_peer,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,190710,0.2238587650064084,relative_legacy,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,190710,74.84612330040356,spot_baseline,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,190772,15.038455597905456,baseline,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,190772,21.412480535284736,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,190772,-17.719884332037996,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,190772,-0.1836217727702838,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,190772,-13.728314092027302,peer,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191026,-4.32014921559292,spot_peer,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191026,40.05379295837283,spot_baseline,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191026,-0.0007817820481317,relative_legacy,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191026,1.050986225143978,baseline,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191026,-0.076841095817756,peer,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191046,22.536510834697523,baseline,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191046,-0.006047084040907,relative_legacy,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191046,-5.903442621748735,spot_peer,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191046,0.1049878578099183,peer,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191046,37.85116232537298,spot_baseline,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191471,76.55347463629771,spot_baseline,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191471,21.91652635844024,spot_peer,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191471,13.30370778091714,peer,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191471,48.45432446147792,baseline,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191471,0.1842477242580439,relative_legacy,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191935,-0.3836221387400664,relative_legacy,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191935,-2.212098312974806,baseline,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191935,-28.67842070914961,peer,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191935,-35.20668414019427,spot_peer,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191935,-2.914634565951651,spot_baseline,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191975,69.00445467787135,spot_baseline,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191975,5.23903596647952,peer,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191975,16.49014512863018,spot_peer,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191975,19.13343058891837,baseline,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,191975,0.0669770287207667,relative_legacy,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192049,10.971242803402411,peer,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192049,15.629528540439594,spot_peer,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192049,61.05621284447621,baseline,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192049,0.1600417969460443,relative_legacy,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192418,21.91652635844024,spot_peer,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192418,17.64637928226275,peer,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192418,0.2449552609286424,relative_legacy,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192418,74.55063399566006,baseline,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192459,99.85565831303312,spot_baseline,biak_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192459,0.4604103269325689,relative_legacy,biak_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192459,94.62198693451543,baseline,biak_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192459,38.66658567917119,spot_peer,biak_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192459,33.49860110531197,peer,biak_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192924,0.1742202135638448,relative_legacy,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192924,76.55347463629771,spot_baseline,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192924,21.91652635844024,spot_peer,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192924,12.723275335942605,peer,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,192924,45.71380649323945,baseline,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,193275,46.46682670034443,spot_baseline,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,193275,-2.1409878529321955,peer,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,193275,0.2896631991602329,spot_peer,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,193275,-0.0175178727743578,relative_legacy,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,193275,39.47644561588066,baseline,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,204737,-0.4870765970648602,relative_legacy,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,204737,-35.10885273818922,peer,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,204737,-30.432024105040327,baseline,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,204737,-86.0860976978135,spot_peer,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,204737,-73.69655941662063,spot_baseline,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,208405,34.014301405177434,baseline,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,208405,0.0069418911321055,relative_legacy,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,208405,1.7818285645631673,spot_peer,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,208405,0.1394875994884501,peer,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,216863,8.936644866913682,spot_peer,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,216863,4.465376598722192,peer,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,216863,58.496250072115615,spot_baseline,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,216863,0.0694190741788755,relative_legacy,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,216863,56.32738679442533,baseline,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,218666,-0.0178759281355326,relative_legacy,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,218666,-6.865153103190275,spot_peer,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,218666,-2.1790537309945845,peer,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,218666,36.513259345253,spot_baseline,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,218666,38.84609979048688,baseline,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,219659,0.0243680824136586,relative_legacy,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,219659,67.80719051126377,spot_baseline,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,219659,1.804905962987648,peer,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,219659,15.629528540439594,spot_peer,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,219659,6.950348709998459,baseline,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,219886,92.66067412513164,spot_baseline,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,219886,11.156458163560709,peer,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,219886,28.66430119811805,baseline,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,219886,0.1501201021721101,relative_legacy,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,219886,33.494692193523605,spot_peer,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,220077,43.25273333736309,baseline,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,220077,-5.905889621782455,peer,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,220077,-0.0685503466076657,relative_legacy,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,220077,44.36066514756148,spot_baseline,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29108,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-25 13:01:11.442868+00,220077,-1.2242863704407638,spot_peer,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29201 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,182315,-0.1856923872625947,relative_legacy,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,182315,13.686808664689108,baseline,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,182315,-8.415359846712365,peer,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,182315,-9.08386696688937,spot_peer,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,182315,16.349873228287958,spot_baseline,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,185690,0.39713038700885,peer,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,185690,20.099647345218752,spot_peer,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,185690,0.003328800170624,relative_legacy,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,185690,56.94910919587163,spot_baseline,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,185690,1.1121452931579734,baseline,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,185698,0.0051000520288165,relative_legacy,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,185698,2.278182440714718,peer,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,185698,16.978370040019396,spot_peer,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,185698,52.60688116675877,spot_baseline,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,185698,11.815922266086586,baseline,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,185699,35.61438102252753,spot_baseline,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,185699,22.27713911758274,baseline,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,185699,2.9179893933515304,peer,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,185699,-0.0119307573435297,relative_legacy,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,185699,4.763833008987032,spot_peer,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,187708,-26.188071121742333,spot_baseline,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,187708,-39.66096227818944,spot_peer,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,187708,-22.17573330307336,baseline,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,187708,-0.5486469418629794,relative_legacy,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,187708,-34.91138995458136,peer,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,188107,39.6360964558644,baseline,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,188107,8.490856504219803,peer,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,188107,0.0378445863913897,relative_legacy,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,188107,10.285486366493496,spot_peer,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,188107,43.2959407276106,spot_baseline,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,188389,-5.2661216060151,spot_peer,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,188389,21.661006874244173,spot_baseline,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,188389,-1.542737413737163,peer,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,188389,7.531362703132566,baseline,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,188389,-0.0514141125343686,relative_legacy,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,189585,6.371674575679743,spot_peer,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,189585,6.150222718115948,peer,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,189585,0.0084715965021396,relative_legacy,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,189585,35.046945531259034,baseline,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,189585,37.85116232537298,spot_baseline,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,189588,6.857448253988675,peer,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,189588,0.0358581733510208,relative_legacy,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,189588,10.285486366493496,spot_peer,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,189588,43.29594072761063,spot_baseline,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,189588,30.59027523678757,baseline,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,189869,21.21176206434216,spot_peer,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,189869,0.1820493877190878,relative_legacy,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,189869,19.7460683725856,peer,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,189869,56.13067063789428,baseline,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,190710,44.36066514756148,spot_baseline,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,190710,42.19583152413727,baseline,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,190710,9.548467238118585,peer,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,190710,0.047591809594967,relative_legacy,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,190710,11.050830826987706,spot_peer,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,190772,27.90464573786805,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,190772,67.80719051126377,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,190772,47.65793959602458,baseline,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,190772,0.2081080611985382,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,190772,19.357257233061368,peer,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191026,-1.2464970403994622,peer,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191026,-0.0200823910358837,relative_legacy,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191026,-37.70696490798233,spot_baseline,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191026,-47.94096542748012,spot_peer,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191026,-0.9897014140106152,baseline,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191046,28.66389601264176,baseline,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191046,21.21176206434216,spot_peer,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191046,0.1032240442450277,relative_legacy,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191046,10.69251806901248,peer,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191046,58.496250072115615,spot_baseline,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191471,13.750352374993504,spot_baseline,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191471,-0.1510898922313444,relative_legacy,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191471,-10.952452722722672,spot_peer,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191471,-7.138090769879558,peer,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191471,8.712557629614558,baseline,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191935,36.90761608803188,baseline,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191935,14.05694576199162,spot_peer,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191935,10.238229691498605,peer,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191935,48.54268271702416,spot_baseline,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191935,0.0755882234821631,relative_legacy,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191975,6.383478364854522,peer,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191975,92.04203483411486,spot_baseline,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191975,45.325119529846425,spot_peer,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191975,0.077037591517652,relative_legacy,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,191975,13.039755523112005,baseline,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,192049,11.8838185481921,peer,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,192049,0.0851751079166309,relative_legacy,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,192049,14.05694576199162,spot_peer,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,192049,43.79004139839288,baseline,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,192418,-51.30462063144331,peer,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,192418,-49.29658870113151,spot_peer,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,192418,-39.592867633113926,spot_baseline,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,192418,-0.7686947119819924,relative_legacy,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,192418,-38.562898683356245,baseline,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,192924,-43.97728409797812,spot_peer,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,192924,-26.50320441635011,peer,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,192924,-19.238504184373983,baseline,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,192924,-0.4165240173958251,relative_legacy,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,192924,-32.19280948873623,spot_baseline,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,193275,10.592302281726344,spot_peer,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,193275,43.72277389129098,spot_baseline,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,193275,0.0444352679169716,relative_legacy,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,193275,8.549842729274896,peer,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,193275,37.40462026563986,baseline,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,204737,-100.0,spot_baseline,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,204737,-41.48060635422115,baseline,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,204737,-38.284342780576736,peer,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,204737,-92.71840120494328,spot_peer,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,204737,-0.5656596284391746,relative_legacy,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,208405,27.90464573786805,spot_peer,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,208405,47.5129889566869,baseline,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,208405,19.30476681377832,peer,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,208405,0.2076021978260429,relative_legacy,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,216863,37.85116232537298,spot_baseline,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,216863,5.0675369928987495,peer,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,216863,6.371674575679743,spot_peer,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,216863,-0.0160526477403155,relative_legacy,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,216863,36.45514214691241,baseline,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,218666,15.360132845313473,baseline,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,218666,-22.509148013677624,spot_peer,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,218666,-2.326977932284703,spot_baseline,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,218666,-0.1689995144345288,relative_legacy,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,218666,-7.1684058147799,peer,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,219659,67.80719051126377,spot_baseline,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,219659,27.90464573786805,spot_peer,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,219659,0.0308164056734207,relative_legacy,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,219659,7.032175947483804,baseline,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,219659,2.8603739650816458,peer,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,219886,-0.0301588095276782,relative_legacy,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,219886,8.29159576442707,baseline,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,219886,-0.2677138849089933,peer,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,219886,26.80270996310693,spot_baseline,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,219886,-1.5701661993112364,spot_peer,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,220077,26.600179434934415,spot_peer,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,220077,0.2596915542724048,relative_legacy,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,220077,64.36289465405436,baseline,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,220077,26.058174837612547,peer,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29109,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-25 13:01:11.450412+00,220077,65.99245584023782,spot_baseline,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29202 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,182315,50.20818331589052,spot_peer,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,182315,48.6375057737996,peer,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,182315,35.61438102252753,spot_baseline,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,182315,0.6158691961045203,relative_legacy,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,182315,29.831388719967748,baseline,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,185690,0.2140776504140268,baseline,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,185690,0.6409195079924747,peer,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,185690,10.835717809041851,spot_baseline,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,185690,32.440672407815995,spot_peer,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,185690,0.002255016509187,relative_legacy,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,185698,48.54268271702416,spot_baseline,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,185698,0.2251005245515219,relative_legacy,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,185698,19.256203716519945,peer,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,185698,59.47840662861677,spot_peer,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,185698,15.028166256370806,baseline,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,185699,-46.77300860466935,baseline,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,185699,-0.2306596864365957,relative_legacy,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,185699,-73.69655941662063,spot_baseline,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,185699,-14.03852166939118,peer,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,185699,-28.17309617005947,spot_peer,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,187708,-0.0727789670646066,relative_legacy,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,187708,-1.3062942344273254,peer,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,187708,-46.59383975788815,spot_baseline,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,187708,-8.739123359414284,spot_peer,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,187708,-39.70765613190164,baseline,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,188107,0.0,baseline,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,188107,0.0,spot_baseline,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,188107,0.3619073225273834,relative_legacy,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,188107,24.670933874698196,spot_peer,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,188107,30.73830021562103,peer,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,188389,-1.0319653630776309,spot_peer,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,188389,-0.0345656563713929,relative_legacy,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,188389,0.7372515633195964,peer,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,188389,-35.845397091247634,spot_baseline,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,188389,-12.616255654228468,baseline,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,189585,-28.29243797168576,baseline,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,189585,8.184351413175198,peer,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,189585,1.5871182215040844,spot_peer,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,189585,0.0516821061819338,relative_legacy,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,189588,-0.0900819339518836,relative_legacy,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,189588,-3.872501640254973,peer,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,189588,-12.226474118963782,spot_peer,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,189588,-36.38676230042812,baseline,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,189869,-95.95716994669702,baseline,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,189869,-47.03394687288235,spot_peer,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,189869,-100.0,spot_baseline,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,189869,-38.35351431317537,peer,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,189869,-0.5708480473397521,relative_legacy,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,190710,-73.69655941662063,spot_baseline,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,190710,-0.3167512770134748,relative_legacy,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,190710,-19.573302019209653,peer,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,190710,-28.17309617005947,spot_peer,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,190710,-70.15497901708375,baseline,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,190772,-74.48507347012259,baseline,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,190772,-0.472524299021243,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,190772,-31.557234850648445,peer,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,190772,-105.88936890535685,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,190772,-51.25691182325358,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191026,0.2454384823159012,peer,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191026,-0.0041846411573709,relative_legacy,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191026,9.06856597112057,spot_peer,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191026,-21.75914350726268,spot_baseline,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191026,-0.571275968117888,baseline,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191046,-27.972208497808342,baseline,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191046,-12.226474118963782,spot_peer,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191046,-0.1182097621944575,relative_legacy,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191046,-5.6633584578346365,peer,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191046,-51.45731728297583,spot_baseline,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191284,6.354878911566606,peer,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191284,-32.19280948873623,spot_baseline,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191284,0.0461815133498269,relative_legacy,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191284,1.5871182215040844,spot_peer,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191284,-23.81543453732982,baseline,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191471,-25.119027729530465,baseline,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191471,-3.719084646173565,spot_peer,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191471,-39.592867633113926,spot_baseline,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191471,1.5913397788275414,peer,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191471,-0.0142418467914365,relative_legacy,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191935,-100.0,spot_baseline,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191935,-30.826141697229577,peer,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191935,-0.4687075096485224,relative_legacy,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191935,-47.03394687288235,spot_peer,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,191935,-76.18790323618386,baseline,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,192049,-209.71925513169293,baseline,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,192049,-1.7443780807961071,relative_legacy,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,192049,-141.822643273657,spot_peer,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,192049,-123.16952193250808,peer,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,192049,-232.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,192418,0.9551682707582364,relative_legacy,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,192418,74.95023609901801,peer,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,192418,66.6156002307152,spot_peer,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,192418,56.983090297693394,baseline,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,192924,15.73201027618798,baseline,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,192924,0.3755709521495531,relative_legacy,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,192924,43.53178457752108,spot_peer,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,192924,26.303440583379377,spot_baseline,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,192924,29.720930326867844,peer,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,193275,3.326272442912372,peer,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,193275,-0.0142915205693307,relative_legacy,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,193275,-3.991675781139608,spot_peer,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,193275,-39.973024649099536,spot_baseline,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,193275,-34.56873290624096,baseline,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,204737,10.957278777453077,baseline,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,204737,26.303440583379377,spot_baseline,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,204737,43.53178457752108,spot_peer,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,204737,0.234415752785789,relative_legacy,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,204737,19.858404249849173,peer,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,208405,-3.855260347670436,peer,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,208405,-0.0895327363398942,relative_legacy,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,208405,-12.226474118963782,spot_peer,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,208405,-51.45731728297583,spot_baseline,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,208405,-36.15364948869646,baseline,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,215725,-32.208864346378384,baseline,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,215725,-0.0895138484337839,relative_legacy,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,215725,-3.846396977170802,peer,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,215725,-12.226474118963782,spot_peer,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,216863,-51.45731728297583,spot_baseline,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,216863,-4.103536794675807,peer,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,216863,-0.1050462018251441,relative_legacy,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,216863,-12.226474118963782,spot_peer,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,216863,-49.56644363503234,baseline,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,218666,25.77472870514793,baseline,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,218666,-0.578235259400611,spot_baseline,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,218666,45.76697138683117,peer,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,218666,0.5756287886434518,relative_legacy,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,218666,24.25631097150453,spot_peer,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,218945,48.54268271702416,spot_baseline,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,218945,59.47840662861677,spot_peer,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,218945,0.859259470641616,relative_legacy,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,218945,67.99710770116864,peer,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,218945,48.24517774080505,baseline,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,219659,7.10645107761307,peer,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,219659,6.119403677390623,baseline,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,219659,0.0633840632646009,relative_legacy,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,219659,66.6156002307152,spot_peer,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,219659,58.496250072115615,spot_baseline,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,219886,15.075205056117252,peer,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,219886,0.1669900660536296,relative_legacy,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,219886,46.05254558941361,spot_peer,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,219886,29.81890701413219,spot_baseline,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,219886,9.224989368248888,baseline,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,220077,-179.1617179836932,baseline,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,220077,-100.0221827693186,peer,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,220077,-1.4059207055296588,relative_legacy,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,220077,-107.01517051973843,spot_peer,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29110,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-25 13:01:11.456731+00,220077,-183.65012677171205,spot_baseline,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29203 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,182315,-88.74550154210911,baseline,RyansAGI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,182315,2.25784577563417,peer,RyansAGI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,182315,-105.88936890535685,spot_baseline,RyansAGI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,182315,-0.2921472929656934,relative_legacy,RyansAGI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,182315,-1.7396289254045667,spot_peer,RyansAGI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,185690,-14.788808265343508,spot_peer,annabot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,185690,-0.0101010338245948,relative_legacy,annabot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,185690,-2.486217399721286,baseline,annabot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,185690,-124.12704315421372,spot_baseline,annabot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,185690,-0.2962141971331638,peer,annabot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,185698,-53.8239767625722,baseline,RonanMcGovern,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,185698,-50.25613258948047,spot_peer,RonanMcGovern,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,185698,-173.6965594166206,spot_baseline,RonanMcGovern,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,185698,-15.378348892855955,peer,RonanMcGovern,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,185698,-0.3179550098930617,relative_legacy,RonanMcGovern,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,185699,0.3789878734524239,relative_legacy,MWG,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,185699,-5.761158394594089,baseline,MWG,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,185699,44.1809031867363,peer,MWG,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,185699,-8.926733809708741,spot_baseline,MWG,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,185699,67.63779263455548,spot_peer,MWG,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,187708,63.95455553793951,peer,twsummerbot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,187708,68.29458683200876,spot_peer,twsummerbot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,187708,-6.872927091931579,baseline,twsummerbot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,187708,-8.008791132269192,spot_baseline,twsummerbot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,187708,0.5451312997057387,relative_legacy,twsummerbot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,188107,-89.10886259940976,baseline,Cassie,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,188107,-95.2694285221643,spot_baseline,Cassie,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,188107,5.859010284220859,spot_peer,Cassie,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,188107,-0.2000655705305883,relative_legacy,Cassie,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,188107,14.952391202677164,peer,Cassie,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,188389,1.6451269789041765,spot_peer,Panshul42,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,188389,-40.60780745507194,baseline,Panshul42,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,188389,-101.15879742752118,spot_baseline,Panshul42,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,188389,0.7967915339757494,peer,Panshul42,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,188389,-0.122562627554856,relative_legacy,Panshul42,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,189585,-0.4726355153032022,relative_legacy,mf-bot-1,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,189585,-132.19280948873626,spot_baseline,mf-bot-1,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,189585,-110.68304141122296,baseline,mf-bot-1,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,189585,-8.791134106240456,peer,mf-bot-1,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,189585,-20.559918658974087,spot_peer,mf-bot-1,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,189588,18.58930802590949,baseline,mf-bot-3,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,189588,66.96408693361411,peer,mf-bot-3,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,189588,0.6678055073566395,relative_legacy,mf-bot-3,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,189588,92.84522081644369,spot_peer,mf-bot-3,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,189869,-14.585960870795232,baseline,VeritasAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,189869,72.4186921760691,peer,VeritasAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,189869,0.5694112741060985,relative_legacy,VeritasAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,189869,63.14900688593728,spot_peer,VeritasAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,189869,-15.200309344505014,spot_baseline,VeritasAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,190710,-100.0,spot_baseline,Bot_Pepa,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,190710,12.82850354906695,peer,Bot_Pepa,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,190710,-0.2443122769897416,relative_legacy,Bot_Pepa,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,190710,-95.26337164005749,baseline,Bot_Pepa,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,190710,2.4742543799121077,spot_peer,Bot_Pepa,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,190772,-59.94620704162715,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,190772,31.133014286831248,spot_peer,Jay_Bailey_Bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,190772,-42.20332013142954,baseline,Jay_Bailey_Bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,190772,22.815100014088383,peer,Jay_Bailey_Bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,190772,0.0576256486877951,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191026,0.0186071261721159,relative_legacy,manticAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191026,0.0,baseline,manticAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191026,0.0,spot_baseline,manticAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191026,1.9415776944871568,peer,manticAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191026,74.0249310828742,spot_peer,manticAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191046,-100.0,spot_baseline,archipelago,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191046,-0.0875256277464418,relative_legacy,archipelago,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191046,-42.45521809587984,baseline,archipelago,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191046,5.918012867075544,peer,archipelago,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191046,2.4742543799121077,spot_peer,archipelago,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191284,-54.51859286165307,baseline,000_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191284,-73.69655941662059,spot_baseline,000_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191284,17.24901868230907,peer,000_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191284,-0.03917956249076,relative_legacy,000_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191284,21.29454411348162,spot_peer,000_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191471,-83.65012677171204,spot_baseline,HSeldon,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191471,14.172699314828565,spot_peer,HSeldon,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191471,9.221168504856667,peer,HSeldon,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191471,-0.1007999163976287,relative_legacy,HSeldon,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191471,-53.11681161060866,baseline,HSeldon,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191935,0.1587783777727611,relative_legacy,pgodzinai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191935,-47.39311883324123,spot_baseline,pgodzinai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191935,40.11483384705112,spot_peer,pgodzinai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191935,-36.17685736641492,baseline,pgodzinai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191935,32.78193964067388,peer,pgodzinai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191975,-6.951579829492347,peer,jkraybill_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191975,-157.06072077440862,spot_baseline,jkraybill_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191975,-29.57096192637821,baseline,jkraybill_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191975,-0.1650371756000702,relative_legacy,jkraybill_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,191975,-38.35307746576494,spot_peer,jkraybill_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192049,-11.77339273105082,peer,gnosis-ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192049,-119.58609964709862,baseline,gnosis-ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192049,-0.535539351921386,relative_legacy,gnosis-ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192049,-20.559918658974087,spot_peer,gnosis-ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192049,-132.19280948873626,spot_baseline,gnosis-ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192418,-0.7025845257069446,relative_legacy,InstitutPelFutur,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192418,-31.43584285591094,spot_peer,InstitutPelFutur,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192418,-147.39311883324118,spot_baseline,InstitutPelFutur,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192418,-21.051295444808343,peer,InstitutPelFutur,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192418,-143.60442767559277,baseline,InstitutPelFutur,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192459,-567.4830016574809,spot_peer,biak_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192459,-539.7145169660737,peer,biak_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192459,-7.798316103691835,relative_legacy,biak_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192459,-896.5784284662086,spot_baseline,biak_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192459,-850.2310177559115,baseline,biak_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192924,-38.53850825049571,baseline,acm_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192924,27.956585005101843,spot_peer,acm_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192924,16.921059612496514,peer,acm_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192924,0.0219670165976993,relative_legacy,acm_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,192924,-64.38561897747249,spot_baseline,acm_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,193275,-61.70561304310097,spot_baseline,histerio,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,193275,29.874147386824205,spot_peer,histerio,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,193275,-54.29079825317479,baseline,histerio,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,193275,32.389246552637175,peer,histerio,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,193275,0.0936113548194074,relative_legacy,histerio,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,204737,-73.69655941662059,spot_baseline,SynapseSeer,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,204737,-0.0140311156703619,relative_legacy,SynapseSeer,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,204737,9.077371019339887,peer,SynapseSeer,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,204737,21.29454411348162,spot_peer,SynapseSeer,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,204737,-30.9365417041904,baseline,SynapseSeer,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,208405,-0.0392517211485407,relative_legacy,mf-bot-4,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,208405,21.29454411348162,spot_peer,mf-bot-4,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,208405,-51.81166857731724,baseline,mf-bot-4,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,208405,-73.69655941662059,spot_baseline,mf-bot-4,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,208405,15.770607389081526,peer,mf-bot-4,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,215725,0.1017158567363345,relative_legacy,estr.ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,215725,23.597479972994925,peer,estr.ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,215725,37.20687235371472,spot_peer,estr.ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,215725,-32.23407137310598,baseline,estr.ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,216863,12.819086461678646,peer,tombot61,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,216863,-100.0,spot_baseline,tombot61,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,216863,-96.34957284618308,baseline,tombot61,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,216863,-0.2443122769897416,relative_legacy,tombot61,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,216863,2.4742543799121077,spot_peer,tombot61,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,218666,29.874147386824205,spot_peer,GreeneiBot2,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,218666,-61.70561304310097,spot_baseline,GreeneiBot2,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,218666,78.23508036866846,peer,GreeneiBot2,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,218666,0.7525377177776822,relative_legacy,GreeneiBot2,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,218666,15.603366134478218,baseline,GreeneiBot2,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,218945,-131.4373451318021,baseline,SeidrBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,218945,-20.559918658974087,spot_peer,SeidrBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,218945,-0.5550391482741867,relative_legacy,SeidrBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,218945,-132.19280948873626,spot_baseline,SeidrBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,218945,-10.203683645794031,peer,SeidrBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,219659,37.20687235371472,spot_peer,lostandfound,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,219659,0.0154050576264203,relative_legacy,lostandfound,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,219659,4.080194033004939,peer,lostandfound,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,219659,-5.434317509064549,baseline,lostandfound,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,219659,-51.45731728297583,spot_baseline,lostandfound,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,219886,-12.343135352917963,baseline,SaraBase,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,219886,14.36126586707341,peer,SaraBase,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,219886,0.0964864740171314,relative_legacy,SaraBase,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,219886,45.47841980118902,spot_peer,SaraBase,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,219886,-39.89691306511904,spot_baseline,SaraBase,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,220077,38.62818723726907,peer,mmBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,220077,-64.38561897747249,spot_baseline,mmBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,220077,-62.824253822159534,baseline,mmBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,220077,0.1065893668042579,relative_legacy,mmBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29111,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-25 13:01:11.462668+00,220077,27.956585005101843,spot_peer,mmBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5283,2024-10-26 14:30:00+00,29204 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,182315,-2.715899608774594,spot_peer,RyansAGI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,182315,-4.938800469358194,baseline,RyansAGI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,182315,-5.889368905356857,spot_baseline,RyansAGI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,182315,-3.915533951408973,peer,RyansAGI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,182315,-0.391999584409625,relative_legacy,RyansAGI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,185690,-1.005971820718319,spot_peer,annabot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,185690,-0.0240172471517347,peer,annabot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,185690,-0.0710867140909332,baseline,annabot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,185690,-3.50469470992008,spot_baseline,annabot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,185690,-0.0044225031489856,relative_legacy,annabot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,185698,4.88026725337045,peer,RonanMcGovern,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,185698,13.750352374993504,spot_baseline,RonanMcGovern,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,185698,0.0029173102656086,relative_legacy,RonanMcGovern,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,185698,8.05458937159155,baseline,RonanMcGovern,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,185698,11.366739114457848,spot_peer,RonanMcGovern,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,185699,37.04688545115936,baseline,MWG,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,185699,42.06314338739218,spot_peer,MWG,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,185699,24.95031708800598,peer,MWG,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,185699,56.55971758542251,spot_baseline,MWG,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,185699,0.1154418349560603,relative_legacy,MWG,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,187708,-12.02229585612717,baseline,twsummerbot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,187708,-8.476820904697549,spot_peer,twsummerbot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,187708,-13.92357973711722,spot_baseline,twsummerbot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,187708,-8.753991748763623,peer,twsummerbot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,187708,-0.474898732626684,relative_legacy,twsummerbot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,188107,30.821937266980832,peer,Cassie,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,188107,0.0002801464594932,relative_legacy,Cassie,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,188107,38.98267817028396,baseline,Cassie,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,188107,41.50374992788439,spot_baseline,Cassie,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,188107,31.26727973316019,spot_peer,Cassie,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,188389,0.2011043507710929,relative_legacy,Panshul42,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,188389,81.55754288625727,spot_baseline,Panshul42,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,188389,33.06285110141073,baseline,Panshul42,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,188389,22.37805545580388,peer,Panshul42,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,188389,59.98780420884426,spot_peer,Panshul42,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,189585,36.31453809551521,spot_peer,mf-bot-1,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,189585,31.29206967258656,peer,mf-bot-1,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,189585,0.064463698074037,relative_legacy,mf-bot-1,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,189585,42.6449628518273,baseline,mf-bot-1,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,189588,11.9125289990199,peer,mf-bot-3,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,189588,-0.0939753205005486,relative_legacy,mf-bot-3,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,189588,20.367916044419523,spot_peer,mf-bot-3,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,189588,18.59895798993306,baseline,mf-bot-3,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,189869,43.45173169761364,spot_peer,VeritasAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,189869,0.1806249284918045,relative_legacy,VeritasAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,189869,44.44659114625448,peer,VeritasAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,189869,56.1324431615462,baseline,VeritasAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,190710,-2.897501734787625,relative_legacy,Bot_Pepa,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,190710,-188.07032745995272,spot_peer,Bot_Pepa,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,190710,-264.3856189774725,spot_baseline,Bot_Pepa,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,190710,-182.19583242846412,peer,Bot_Pepa,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,190710,-252.0464916651015,baseline,Bot_Pepa,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,190772,53.93647248316062,spot_peer,Jay_Bailey_Bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,190772,73.11832415721999,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,190772,0.2362705798932289,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,190772,51.52248878853116,baseline,Jay_Bailey_Bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,190772,35.69372223434249,peer,Jay_Bailey_Bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191026,0.0016235652437359,relative_legacy,manticAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191026,26.303440583379377,spot_baseline,manticAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191026,20.367916044419523,spot_peer,manticAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191026,0.6909585258390706,baseline,manticAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191026,0.5295041186547615,peer,manticAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191046,50.12813043598308,spot_peer,archipelago,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191046,33.152573144627134,baseline,archipelago,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191046,22.19453665381401,peer,archipelago,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191046,0.1590445303525438,relative_legacy,archipelago,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191284,-94.13811505692864,peer,000_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191284,-1.5801046565404795,relative_legacy,000_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191284,-128.49509819434593,baseline,000_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191284,-173.6965594166206,spot_baseline,000_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191284,-123.04184545074156,spot_peer,000_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191471,21.412480535284764,spot_baseline,HSeldon,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191471,13.61208751338685,baseline,HSeldon,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191471,16.860858974521477,spot_peer,HSeldon,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191471,7.97226896173191,peer,HSeldon,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191471,-0.1087547670020888,relative_legacy,HSeldon,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191935,0.0485928843269951,relative_legacy,pgodzinai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191935,46.46682670034443,spot_baseline,pgodzinai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191935,24.794992970558365,peer,pgodzinai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191935,35.529600405521215,baseline,pgodzinai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,191935,34.82604801426352,spot_peer,pgodzinai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,192049,61.43984788411832,baseline,gnosis-ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,192049,50.12813043598308,spot_peer,gnosis-ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,192049,0.2386146617353206,relative_legacy,gnosis-ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,192049,45.75996821580164,peer,gnosis-ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,192418,-112.0294233717712,spot_baseline,InstitutPelFutur,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,192418,-78.82349908933402,spot_peer,InstitutPelFutur,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,192418,-76.43189701526107,peer,InstitutPelFutur,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,192418,-109.17120192990318,baseline,InstitutPelFutur,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,192418,-1.4600742610518358,relative_legacy,InstitutPelFutur,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,192924,1.5070653415966333,spot_peer,acm_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,192924,-0.2259751871419466,relative_legacy,acm_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,192924,0.0,baseline,acm_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,192924,0.0,spot_baseline,acm_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,192924,-1.8334063192581431,peer,acm_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,193275,57.918014812715,spot_baseline,histerio,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,193275,0.1470871028001154,relative_legacy,histerio,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,193275,38.230719334977415,peer,histerio,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,193275,51.72558163933165,baseline,histerio,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,193275,43.03710879441997,spot_peer,histerio,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,204737,-0.1369870232224363,relative_legacy,SynapseSeer,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,204737,0.0,baseline,SynapseSeer,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,204737,-1.4768356354422032,peer,SynapseSeer,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,204737,0.0,spot_baseline,SynapseSeer,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,204737,1.5070653415966333,spot_peer,SynapseSeer,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,208405,43.45173169761364,spot_peer,mf-bot-4,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,208405,0.1328319017982874,relative_legacy,mf-bot-4,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,208405,41.08987011826885,baseline,mf-bot-4,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,208405,28.132615275821056,peer,mf-bot-4,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,215725,0.2394013180450817,relative_legacy,estr.ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,215725,32.79754104495383,peer,estr.ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,215725,56.39964303768323,spot_peer,estr.ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,215725,48.01529661514484,baseline,estr.ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,216863,76.55347463629771,spot_baseline,tombot61,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,216863,0.359729328134817,relative_legacy,tombot61,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,216863,56.39964303768323,spot_peer,tombot61,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,216863,57.66139817970845,peer,tombot61,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,216863,73.77157240535304,baseline,tombot61,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,218666,-38.38905336309145,spot_peer,GreeneiBot2,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,218666,31.54017100792704,baseline,GreeneiBot2,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,218666,22.743568140398487,peer,GreeneiBot2,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,218666,-0.028472930998434,relative_legacy,GreeneiBot2,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,218666,-55.63933485243855,spot_baseline,GreeneiBot2,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,218945,-66.65762662748085,spot_baseline,SeidrBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,218945,-46.289706340806,spot_peer,SeidrBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,218945,-66.30573276229897,baseline,SeidrBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,218945,-1.0177613808064818,relative_legacy,SeidrBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,218945,-43.6964547252215,peer,SeidrBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,219659,-13.173714996953718,peer,lostandfound,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,219659,-18.501455957702976,baseline,lostandfound,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,219659,-123.04184545074156,spot_peer,lostandfound,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,219659,-0.2089099532364419,relative_legacy,lostandfound,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,219659,-173.6965594166206,spot_baseline,lostandfound,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,219886,-3.883603671231493,spot_baseline,SaraBase,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,219886,-0.0892728290037427,relative_legacy,SaraBase,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,219886,-1.7737313461862685,peer,SaraBase,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,219886,-1.2776680395685642,spot_peer,SaraBase,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,219886,-1.2015365824768118,baseline,SaraBase,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,220077,-86.77074591692025,baseline,mmBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,220077,-59.77907154174425,peer,mmBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,220077,-88.8968687611256,spot_baseline,mmBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,220077,-62.23632839190166,spot_peer,mmBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29112,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-25 13:01:11.469036+00,220077,-1.234834901556542,relative_legacy,mmBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29205 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,182315,62.29303509201767,spot_baseline,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,182315,0.2656561514371104,relative_legacy,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,182315,32.43238123752549,spot_peer,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,182315,26.514410793113026,peer,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,182315,52.27053843872464,baseline,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,185690,-19.5946441032647,spot_baseline,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,185690,-0.4035289051705991,baseline,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,185690,-26.219839851175355,spot_peer,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,185690,-0.5453284652196858,peer,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,185690,-0.0065411174027611,relative_legacy,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,185698,-0.1803500056605476,relative_legacy,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,185698,-10.15963692060566,baseline,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,185698,-11.021446433052157,peer,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,185698,-49.04154600011579,spot_peer,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,185698,-51.45731728297583,spot_baseline,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,185699,18.903382439001685,spot_baseline,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,185699,12.57172688080998,baseline,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,185699,-0.0543944476111571,relative_legacy,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,185699,1.3544519888816655,spot_peer,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,185699,0.0626524326749682,peer,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,187708,31.35317212421356,spot_peer,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,187708,52.86861771786621,baseline,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,187708,26.56939708682733,peer,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,187708,0.2557916422940683,relative_legacy,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,187708,60.7862902831235,spot_baseline,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,188107,52.24610592337565,baseline,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,188107,27.390730940017523,spot_peer,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,188107,55.25410230287789,spot_baseline,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,188107,25.07441869315226,peer,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,188107,0.2079077246231253,relative_legacy,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,188389,24.34007888249761,spot_peer,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,188389,10.531384726963616,peer,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,188389,0.1091637757223274,relative_legacy,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,188389,21.64147020846491,baseline,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,188389,50.99491463043109,spot_baseline,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,189585,-73.69655941662063,spot_baseline,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,189585,-0.9249388383042176,relative_legacy,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,189585,-64.74328469620053,baseline,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,189585,-64.9704495822658,spot_peer,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,189585,-59.15631228477578,peer,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,189588,3.704644557303176,peer,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,189588,18.588749055152302,baseline,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,189588,6.654759075595226,spot_peer,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,189588,-0.0090634701248437,relative_legacy,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,189869,27.88449992226401,peer,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,189869,0.2390582581695703,relative_legacy,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,189869,56.13319010457723,baseline,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,189869,29.712926044730235,spot_peer,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,190710,50.184317094957294,baseline,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,190710,23.50691940136413,peer,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,190710,0.1828766427457757,relative_legacy,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,190710,25.4946532776372,spot_peer,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,190710,52.60688116675877,spot_baseline,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,190772,0.0245694995415806,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,190772,6.11368497120224,peer,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,190772,21.88895357779549,baseline,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,190772,31.034012061215048,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,190772,10.043040767304293,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191026,-15.332586566533305,spot_peer,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191026,-0.0051553470083838,relative_legacy,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191026,-4.3943347587597055,spot_baseline,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191026,-0.4159394579448237,peer,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191026,-0.1154692457522013,baseline,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191046,7.521720394115041,baseline,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191046,6.654759075595226,spot_peer,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191046,-0.0501354312499142,relative_legacy,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191046,26.303440583379377,spot_baseline,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191046,-0.5396497394537096,peer,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191284,37.85116232537298,spot_baseline,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191284,14.925838868527338,spot_peer,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191284,28.000935834841105,baseline,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191284,0.0726919464229084,relative_legacy,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191284,10.06121062190764,peer,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191471,10.043040767304293,spot_peer,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191471,31.034012061215048,spot_baseline,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191471,5.7226135830400064,peer,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191471,0.0262805125420499,relative_legacy,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191471,19.747070650635635,baseline,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191935,0.0561450385105024,relative_legacy,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191935,35.61438102252753,spot_baseline,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191935,13.323739593144246,spot_peer,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191935,9.209669241847312,peer,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191935,27.28182201024584,baseline,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191975,-70.52567344388679,spot_baseline,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191975,-29.02552724201729,peer,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191975,-62.699295887992335,spot_peer,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191975,-0.4439638217687408,relative_legacy,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,191975,-32.6549833189221,baseline,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,192049,36.38190656227926,spot_peer,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,192049,0.3218556565814694,relative_legacy,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,192049,61.55050456430629,baseline,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,192049,32.31716230006967,peer,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,192418,-42.342397816682464,baseline,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,192418,-43.440282414577496,spot_baseline,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,192418,-43.29932804745199,spot_peer,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,192418,-0.7419844790752843,relative_legacy,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,192418,-44.27038517196071,peer,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,192924,-0.3528172554705387,relative_legacy,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,192924,-21.75076360718319,peer,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,192924,-32.19280948873623,spot_baseline,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,192924,-35.243302095581754,spot_peer,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,192924,-19.30228647282649,baseline,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,193275,-0.0848999175051738,relative_legacy,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,193275,4.038585583885259,spot_peer,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,193275,2.489296878736779,peer,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,193275,20.501512797661217,baseline,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,193275,22.65085298086797,spot_baseline,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,204737,-0.482989183085055,relative_legacy,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,204737,-75.85770286690784,spot_peer,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,204737,-88.8968687611256,spot_baseline,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,204737,-32.057838629044745,peer,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,204737,-37.61332896683973,baseline,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,208405,29.18674513045083,peer,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,208405,0.3442454057707665,relative_legacy,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,208405,42.64645081664419,spot_peer,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,208405,53.776363690558384,baseline,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,215725,48.05423182590211,baseline,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,215725,42.64645081664419,spot_peer,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,215725,76.55347463629771,spot_baseline,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,215725,26.28349858872095,peer,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,215725,0.3120157868148056,relative_legacy,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,216863,0.3302703219749811,relative_legacy,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,216863,34.739983328566254,peer,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,216863,65.35571879452898,baseline,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,216863,67.80719051126377,spot_baseline,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,216863,36.38190656227926,spot_peer,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,218666,12.167855658825246,spot_baseline,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,218666,-45.800449080862,peer,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,218666,-47.12465236526189,baseline,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,218666,-3.469883121625814,spot_peer,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,218666,-0.7291205344996186,relative_legacy,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,218945,-66.1756261885785,peer,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,218945,-64.9704495822658,spot_peer,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,218945,-73.33945980541412,baseline,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,218945,-1.0378451134620152,relative_legacy,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,218945,-73.69655941662063,spot_baseline,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,219659,0.0375187321335979,relative_legacy,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,219659,6.28842004231693,baseline,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,219659,29.712926044730235,spot_peer,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,219659,58.496250072115615,spot_baseline,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,219659,3.0810223459718813,peer,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,219886,3.375763854463109,peer,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,219886,31.887790082107824,spot_baseline,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,219886,10.654561056243686,spot_peer,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,219886,0.0201890279086241,relative_legacy,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,219886,9.866077256394714,baseline,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,220077,-0.0851328592972418,relative_legacy,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,220077,23.31484449637689,baseline,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,220077,4.918023516235837,spot_peer,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,220077,23.87868595871165,spot_baseline,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29113,"Will Mike McCarthy be the Dallas Cowboys head coach on January 1, 2025?",2024-10-25 13:01:11.631759+00,220077,4.330287841453473,peer,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29206 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,182315,-1.5230899788812875,relative_legacy,RyansAGI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,182315,-78.54853639748245,spot_peer,RyansAGI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,182315,-94.34164716336323,spot_baseline,RyansAGI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,182315,-58.15563720534672,peer,RyansAGI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,182315,-79.20408537386301,baseline,RyansAGI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,185690,5.658352836636751,spot_baseline,annabot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,185690,0.1179978725900258,baseline,annabot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,185690,-6.923327739621434,spot_peer,annabot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,185690,-0.0129603629205769,relative_legacy,annabot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,185690,-0.1443773423299666,peer,annabot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,185698,-0.3106781307477472,relative_legacy,RonanMcGovern,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,185698,-6.0556050155903,peer,RonanMcGovern,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,185698,-21.86338805010257,spot_peer,RonanMcGovern,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,185698,-15.200309344505014,spot_baseline,RonanMcGovern,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,185698,-4.722496374708714,baseline,RonanMcGovern,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,187708,69.74959798260788,baseline,twsummerbot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,187708,79.57669477823923,spot_baseline,twsummerbot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,187708,-0.0643094570327903,relative_legacy,twsummerbot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,187708,46.02083891248253,spot_peer,twsummerbot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,187708,51.08735784159568,peer,twsummerbot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,188107,-0.0304067531647909,relative_legacy,Cassie,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,188107,63.51836643331865,peer,Cassie,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,188107,48.80057336598605,spot_peer,Cassie,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,188107,79.42175936574894,baseline,Cassie,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,188107,83.45763907926283,spot_baseline,Cassie,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,188389,88.2838655767251,spot_baseline,Panshul42,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,188389,37.78797967903986,baseline,Panshul42,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,188389,0.0059090245576117,relative_legacy,Panshul42,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,188389,23.360732002725733,peer,Panshul42,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,188389,52.257368165094384,spot_peer,Panshul42,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,189585,23.792663018731496,spot_peer,mf-bot-1,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,189585,-0.2759105826887415,relative_legacy,mf-bot-1,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,189585,36.04732715467447,peer,mf-bot-1,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,189585,48.75908490963416,baseline,mf-bot-1,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,189588,45.60737503185095,peer,mf-bot-3,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,189588,68.64873099802514,baseline,mf-bot-3,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,189588,97.08536543404836,spot_baseline,mf-bot-3,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,189588,58.5614608029235,spot_peer,mf-bot-3,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,189588,0.0616161170431983,relative_legacy,mf-bot-3,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,189869,49.76182060775846,spot_peer,VeritasAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,189869,-0.0176352323645553,relative_legacy,VeritasAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,189869,65.17845269198558,peer,VeritasAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,189869,81.37510203552702,baseline,VeritasAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,190710,93.80975610740931,spot_baseline,Bot_Pepa,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,190710,89.55628513320241,baseline,Bot_Pepa,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,190710,56.21529878790193,spot_peer,Bot_Pepa,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,190710,0.0683801272486354,relative_legacy,Bot_Pepa,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,190710,70.97245611142485,peer,Bot_Pepa,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,190772,49.76182060775846,spot_peer,Jay_Bailey_Bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,190772,-0.0253074357967524,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,190772,59.84856460352542,baseline,Jay_Bailey_Bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,190772,84.79969065549501,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,190772,39.23443994216717,peer,Jay_Bailey_Bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191026,32.19280948873624,spot_baseline,manticAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191026,0.8461907155655126,baseline,manticAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191026,0.3163954059105295,peer,manticAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191026,12.08203220367449,spot_peer,manticAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191026,-0.0100723995305458,relative_legacy,manticAI,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191046,-0.0966475362974494,relative_legacy,archipelago,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191046,19.70227771928033,peer,archipelago,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191046,37.59090692326551,spot_peer,archipelago,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191046,33.101383701681584,baseline,archipelago,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191284,72.90345704343298,baseline,000_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191284,98.5500430304885,spot_baseline,000_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191284,49.33286717739439,peer,000_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191284,0.078275793333553,relative_legacy,000_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191284,59.6105391875387,spot_peer,000_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191471,0.0243830460172193,relative_legacy,HSeldon,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191471,55.34876680568695,spot_peer,HSeldon,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191471,38.07826153942285,peer,HSeldon,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191471,58.98958390822784,baseline,HSeldon,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191471,92.5999418556223,spot_baseline,HSeldon,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191935,8.579067002157712,baseline,pgodzinai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191935,11.103131238874395,spot_baseline,pgodzinai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191935,3.669548204794014,peer,pgodzinai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191935,-0.5911569327036935,relative_legacy,pgodzinai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191935,-3.023493848060573,spot_peer,pgodzinai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191975,58.66684921933386,spot_peer,jkraybill_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191975,0.0853560960152957,relative_legacy,jkraybill_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191975,58.466112267701256,peer,jkraybill_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191975,81.69766389216183,baseline,jkraybill_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,191975,97.23250415571516,spot_baseline,jkraybill_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192049,98.5500430304885,spot_baseline,gnosis-ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192049,67.37854852787066,peer,gnosis-ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192049,89.62147444074645,baseline,gnosis-ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192049,0.1068917345518757,relative_legacy,gnosis-ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192049,59.6105391875387,spot_peer,gnosis-ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192418,-3.079806587320724,relative_legacy,InstitutPelFutur,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192418,-177.2847190503176,spot_peer,InstitutPelFutur,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192418,-232.1928094887363,spot_baseline,InstitutPelFutur,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192418,-159.45691377408156,peer,InstitutPelFutur,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192418,-226.36124385127903,baseline,InstitutPelFutur,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192459,-896.5784284662086,spot_baseline,biak_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192459,-850.890851588195,baseline,biak_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192459,-653.1523049357536,spot_peer,biak_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192459,-615.8232629014616,peer,biak_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192459,-9.331328680666829,relative_legacy,biak_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192924,59.6105391875387,spot_peer,acm_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192924,0.0601045726883007,relative_legacy,acm_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192924,59.16467446671575,baseline,acm_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192924,98.5500430304885,spot_baseline,acm_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,192924,38.156778297928135,peer,acm_bot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,193275,73.85670792428432,baseline,histerio,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,193275,80.90027749390863,spot_baseline,histerio,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,193275,-0.0538514807928228,relative_legacy,histerio,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,193275,46.96885779434013,spot_peer,histerio,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,193275,56.1770021831348,peer,histerio,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,204737,59.6105391875387,spot_peer,SynapseSeer,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,204737,0.0495114948874761,relative_legacy,SynapseSeer,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,204737,26.309611104942164,peer,SynapseSeer,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,204737,41.85613726819548,baseline,SynapseSeer,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,208405,65.07467902348117,baseline,mf-bot-4,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,208405,42.97080536547347,peer,mf-bot-4,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,208405,0.029518077283251,relative_legacy,mf-bot-4,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,208405,55.34876680568695,spot_peer,mf-bot-4,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,215725,0.0617646997310065,relative_legacy,estr.ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,215725,59.6105391875387,spot_peer,estr.ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,215725,98.5500430304885,spot_baseline,estr.ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,215725,40.15133609564277,peer,estr.ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,215725,61.91430151819896,baseline,estr.ai,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,216863,81.74678519136668,baseline,tombot61,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,216863,84.79969065549501,spot_baseline,tombot61,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,216863,65.75804167327095,peer,tombot61,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,216863,49.76182060775846,spot_peer,tombot61,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,216863,-0.0176352323645553,relative_legacy,tombot61,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,218666,54.47490677047052,spot_peer,GreeneiBot2,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,218666,-0.7238678788753674,relative_legacy,GreeneiBot2,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,218666,1.065583762511893,baseline,GreeneiBot2,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,218666,0.0417088149027522,peer,GreeneiBot2,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,218666,91.3798964950696,spot_baseline,GreeneiBot2,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,218945,-173.6965594166206,spot_baseline,SeidrBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,218945,-172.9296966576845,baseline,SeidrBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,218945,-117.83255704256152,peer,SeidrBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,218945,-2.5129156772743597,relative_legacy,SeidrBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,218945,-135.38665787914056,spot_peer,SeidrBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,219659,-0.0275816866716193,relative_legacy,lostandfound,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,219659,30.921926405716484,spot_peer,lostandfound,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,219659,58.496250072115615,spot_baseline,lostandfound,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,219659,3.3659803937551125,peer,lostandfound,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,219659,6.3358528640742335,baseline,lostandfound,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,219886,-21.28123194519328,baseline,SaraBase,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,219886,-68.77995373623217,spot_baseline,SaraBase,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,219886,-0.4751408883084355,relative_legacy,SaraBase,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,219886,-60.23992014381708,spot_peer,SaraBase,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,219886,-17.9393558755386,peer,SaraBase,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,220077,52.03297430203191,spot_peer,mmBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,220077,0.0428586284512518,relative_legacy,mmBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,220077,70.52592717574282,peer,mmBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,220077,87.97057662822883,spot_baseline,mmBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29114,"Will the Federal Reserve cut interest rates before November 1, 2024?",2024-10-25 13:01:11.635897+00,220077,85.92326220429803,baseline,mmBot,True,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29207 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,182315,54.59683691052925,spot_baseline,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,182315,45.86582364278629,baseline,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,182315,11.724165845118597,spot_peer,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,182315,4.654017892302775,peer,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,182315,-0.1086957195139102,relative_legacy,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,185690,0.0062645789748387,relative_legacy,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,185690,0.7642742293438035,peer,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,185690,1.88552052797908,baseline,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,185690,89.29738152733339,spot_baseline,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,185690,36.55264033805524,spot_peer,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,185698,7.392377551024957,spot_peer,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,185698,48.54268271702416,spot_baseline,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,185698,0.0310433908354707,relative_legacy,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,185698,23.542760378572293,baseline,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,185698,8.302693988043778,peer,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,185699,27.43745788559092,baseline,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,185699,-0.2056635334939748,relative_legacy,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,185699,-3.0686358372478564,peer,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,185699,1.318519484141522,spot_peer,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,185699,40.05379295837288,spot_baseline,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,187708,44.78436443620854,spot_baseline,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,187708,4.703275388450249,spot_peer,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,187708,39.46489444492106,baseline,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,187708,-0.1915397420903506,relative_legacy,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,187708,-1.4496864084567598,peer,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,188107,32.62556228420814,baseline,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,188107,-0.3048992778805809,relative_legacy,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,188107,-9.396069389073476,peer,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,188107,34.10369178350671,spot_baseline,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,188107,-2.9388181709861176,spot_peer,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,188389,-3.8006322579744753,spot_baseline,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,188389,-30.059618522349467,spot_peer,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,188389,-1.6385966175462,baseline,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,188389,-14.328460981497214,peer,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,188389,-0.3124602897352716,relative_legacy,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,189585,27.434288719123803,spot_peer,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,189585,67.32693458543542,baseline,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,189585,18.84652054179716,peer,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,189585,0.0878619198774168,relative_legacy,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,189588,0.0446186922065753,relative_legacy,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,189588,27.434288719123803,spot_peer,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,189588,54.17838778519787,baseline,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,189588,15.394347689329758,peer,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,189869,27.434288719123803,spot_peer,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,189869,0.1011998750224587,relative_legacy,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,189869,73.46280930806935,baseline,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,189869,20.35151471429789,peer,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,190710,28.641621855969344,spot_peer,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,190710,78.24085649273731,spot_baseline,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,190710,21.42667828578072,peer,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,190710,74.73911622582538,baseline,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,190710,0.1167397385860659,relative_legacy,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,190772,-28.187643086691523,peer,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,190772,-33.72737887109636,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,190772,-6.30520687737908,baseline,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,190772,-0.5591524178800404,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,190772,-8.926733809708741,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191026,41.1426245726465,spot_baseline,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191026,1.0817499442070604,baseline,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191026,-0.0048018352877758,relative_legacy,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191026,2.097585872310084,spot_peer,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191026,0.0503856039577759,peer,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191046,33.246783839063184,baseline,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191046,8.444882067898199,peer,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191046,-0.0089074947897779,relative_legacy,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191046,21.17626324129828,spot_peer,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191284,16.002811102875096,peer,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191284,0.0521352860736862,relative_legacy,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191284,56.631024507162365,baseline,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191284,27.434288719123803,spot_peer,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191471,14.040941199297707,peer,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191471,48.81839855727057,baseline,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191471,0.0339767208085264,relative_legacy,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191471,76.55347463629771,spot_baseline,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191471,27.434288719123803,spot_peer,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191935,42.22330006830478,spot_baseline,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191935,2.8708165024166785,spot_peer,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191935,32.62485397756591,baseline,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191935,-0.2053744698572115,relative_legacy,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191935,-2.5082425752580693,peer,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191975,-96.43312368386852,peer,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191975,-123.39498275777048,baseline,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191975,-1.424693147471351,relative_legacy,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191975,-328.6327547368795,spot_peer,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,191975,-421.0896782498618,spot_baseline,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192049,-32.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192049,-0.8904644189623371,relative_legacy,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192049,-50.374413461663806,spot_peer,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192049,-29.33988183552681,baseline,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192049,-52.55534293923266,peer,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192418,20.64678775466778,peer,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192418,74.64359155893942,baseline,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192418,0.1030995862823261,relative_legacy,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192418,27.434288719123803,spot_peer,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192459,99.85565831303312,spot_baseline,biak_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192459,44.10715882639517,spot_peer,biak_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192459,94.79013896862637,baseline,biak_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192459,0.3218221311922912,relative_legacy,biak_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192459,36.28129953017515,peer,biak_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192924,0.0339767208085264,relative_legacy,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192924,13.382566200921469,peer,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192924,45.9875741683197,baseline,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192924,27.434288719123803,spot_peer,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,192924,76.55347463629771,spot_baseline,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,193275,-1.5358321370724315,spot_peer,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,193275,36.06452024602161,spot_baseline,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,193275,-7.179602692171539,peer,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,193275,-0.2702324292796115,relative_legacy,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,193275,34.00704736241351,baseline,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,204737,0.0335869159376918,relative_legacy,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,204737,32.66392049098936,baseline,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,204737,10.48237330347602,peer,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,204737,27.434288719123803,spot_peer,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,208405,15.346831616144597,peer,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,208405,27.434288719123803,spot_peer,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,208405,0.044364842074934,relative_legacy,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,208405,53.99193639544485,baseline,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,215725,13.875883798664065,peer,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,215725,0.0339767208085264,relative_legacy,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,215725,27.434288719123803,spot_peer,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,215725,48.1343274713957,baseline,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,215725,76.55347463629771,spot_baseline,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,216863,-15.200309344504996,spot_baseline,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,216863,-38.21616461971457,spot_peer,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,216863,-14.65716736925106,baseline,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,216863,-0.781652518486452,relative_legacy,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,216863,-44.28660711113311,peer,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,218666,-0.1364661981476522,relative_legacy,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,218666,2.666907648791053,peer,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,218666,43.3538533297127,baseline,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,218666,-5.468719490080983,spot_peer,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,218666,30.567874324228757,spot_baseline,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,218945,27.434288719123803,spot_peer,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,218945,0.1034698589809765,relative_legacy,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,218945,20.702023940625683,peer,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,218945,76.250188876162,baseline,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,219659,14.514222349678022,spot_peer,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,219659,6.392103340211281,baseline,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,219659,1.608166428287069,peer,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,219659,-0.0040192325589493,relative_legacy,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,219659,58.496250072115615,spot_baseline,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,219886,60.48304370991026,spot_baseline,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,219886,15.93578664221148,spot_peer,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,219886,4.892965645693003,peer,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,219886,18.715007079616605,baseline,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,219886,-0.0161391246369743,relative_legacy,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,220077,34.79518517251184,baseline,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,220077,-0.2965043374496415,relative_legacy,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,220077,-8.77145847773983,peer,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,220077,-1.857909797587893,spot_peer,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29115,"Will the Federal Reserve cut interest rates before December 1, 2024?",2024-10-25 13:01:11.639375+00,220077,35.61438102252753,spot_baseline,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29208 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,182315,58.496250072115615,spot_baseline,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,182315,-0.0264356287260133,relative_legacy,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,182315,49.171015404803626,baseline,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,182315,16.69126601921766,spot_peer,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,182315,19.36617890467403,peer,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,185690,0.6636878599734422,peer,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,185690,0.0023506703753142,relative_legacy,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,185690,78.8268082866837,spot_baseline,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,185690,1.681508803630181,baseline,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,185690,31.237917999230792,spot_peer,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,185698,-43.16096574882798,spot_peer,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,185698,-4.820822951279942,baseline,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,185698,-10.429857991076044,peer,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,185698,-25.15387669959645,spot_baseline,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,185698,-0.256388953189165,relative_legacy,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,185699,-0.214910049259976,relative_legacy,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,185699,24.7136014843712,baseline,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,185699,35.61438102252753,spot_baseline,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,185699,0.3191338719517602,spot_peer,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,185699,2.904306139907209,peer,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,187708,0.0,baseline,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,187708,-16.784930819393725,peer,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,187708,0.0,spot_baseline,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,187708,-25.163196753238008,spot_peer,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,187708,-0.5339661882009288,relative_legacy,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,188107,20.16338611696507,spot_baseline,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,188107,-0.3782029976588352,relative_legacy,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,188107,-4.8460507608434735,peer,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,188107,-10.73615754031839,spot_peer,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,188107,19.42238692125806,baseline,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,188389,-11.63636567749266,peer,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,188389,-6.340917017606171,spot_baseline,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,188389,-29.700165788508517,spot_peer,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,188389,-2.753970368121827,baseline,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,188389,-0.3193118945887871,relative_legacy,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,189585,67.33158801364041,baseline,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,189585,32.11568334430726,peer,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,189585,0.1406200117811029,relative_legacy,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,189585,29.61133238866345,spot_peer,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,189588,0.0714586198317289,relative_legacy,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,189588,29.61133238866345,spot_peer,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,189588,23.92094887233336,peer,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,189588,54.17951064337042,baseline,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,189869,-0.105864427638225,relative_legacy,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,189869,15.086383307078718,peer,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,189869,46.58341248701357,baseline,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,189869,9.569421220564598,spot_peer,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,190710,0.1618631174025201,relative_legacy,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,190710,76.55347463629771,spot_baseline,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,190710,34.591075213893475,peer,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,190710,73.16991925034614,baseline,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,190710,29.61133238866345,spot_peer,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,190772,16.349873228287958,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,190772,-13.464751818321544,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,190772,-6.782223463412069,peer,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,190772,11.670386853806324,baseline,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,190772,-0.3565799593367447,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191026,67.80719051126377,spot_baseline,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191026,23.35330691083791,spot_peer,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191026,0.0,relative_legacy,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191026,1.783443044508862,baseline,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191026,0.6155528565000783,peer,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191046,12.973643836151354,peer,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191046,23.35330691083791,spot_peer,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191046,0.0027262119182574,relative_legacy,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191046,33.19921843309329,baseline,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191284,0.1388378312700181,relative_legacy,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191284,84.79969065549501,spot_baseline,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191284,35.51155575278718,spot_peer,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191284,62.73095355896026,baseline,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191284,29.74555097150798,peer,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191471,29.61133238866345,spot_peer,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191471,0.0591255277152346,relative_legacy,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191471,21.208818088375008,peer,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191471,76.55347463629771,spot_baseline,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191471,48.86153738909509,baseline,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191935,-0.0377010394896291,relative_legacy,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191935,18.058515232123025,spot_peer,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191935,17.913701519061245,peer,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191935,60.40713236688608,spot_baseline,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191935,46.67525620322237,baseline,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191975,-182.62769893245263,baseline,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191975,-148.49638979374222,peer,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191975,-178.37865682860257,spot_peer,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191975,-2.346883442995347,relative_legacy,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,191975,-214.1355849245541,spot_baseline,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,192049,-191.29872319804835,spot_peer,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,192049,-171.27059626741564,peer,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,192049,-212.05010326777216,baseline,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,192049,-232.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,192049,-2.6669441087975603,relative_legacy,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,192418,0.2457056668753497,relative_legacy,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,192418,40.88186013112017,peer,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,192418,84.79969065549501,spot_baseline,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,192418,82.70283888209259,baseline,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,192418,35.51155575278718,spot_peer,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,192924,67.80719051126377,spot_baseline,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,192924,0.0027262119182574,relative_legacy,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,192924,40.763793965921735,baseline,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,192924,16.094831819764842,peer,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,192924,23.35330691083791,spot_peer,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,193275,7.333395746378357,spot_peer,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,193275,43.03049385330557,baseline,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,193275,45.41758931858021,spot_baseline,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,193275,-0.1321808390307019,relative_legacy,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,193275,13.14613989454518,peer,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,204737,8.468618852316494,peer,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,204737,-0.0371903578012272,relative_legacy,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,204737,16.69126601921766,spot_peer,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,204737,25.07769928926358,baseline,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,208405,28.010450700426333,peer,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,208405,35.51155575278718,spot_peer,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,208405,0.1291696188152216,relative_legacy,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,208405,59.810811927183344,baseline,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,215725,23.35330691083791,spot_peer,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,215725,67.80719051126377,spot_baseline,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,215725,42.75248081232503,baseline,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,215725,0.0027262119182574,relative_legacy,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,215725,16.952673056245814,peer,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,216863,-15.200309344504996,spot_baseline,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,216863,-29.791681575970166,peer,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,216863,-14.6651086989166,baseline,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,216863,-0.7199489099997247,relative_legacy,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,216863,-36.03912095017491,spot_peer,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,218269,-0.3273897734974373,relative_legacy,tombot37,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,218269,-6.342907019668509,spot_peer,tombot37,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,218269,-1.2014352840369584,peer,tombot37,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,218269,26.303440583379377,spot_baseline,tombot37,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,218269,25.897528161249824,baseline,tombot37,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,218666,24.635631555850274,spot_peer,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,218666,22.20888035929998,baseline,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,218666,-0.2972144043955096,relative_legacy,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,218666,-0.2025779838699239,peer,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,218666,69.59938131099001,spot_baseline,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,218945,0.1673560251991459,relative_legacy,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,218945,29.61133238866345,spot_peer,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,218945,76.28368022656062,baseline,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,218945,35.29564732822126,peer,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,219659,23.35330691083791,spot_peer,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,219659,2.7314968955961185,peer,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,219659,0.0001092122013113,relative_legacy,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,219659,7.464224742779969,baseline,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,219659,67.80719051126377,spot_baseline,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,219886,8.03263825090811,peer,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,219886,23.08457030489056,spot_peer,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,219886,20.86567042270341,baseline,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,219886,0.0014452683139543,relative_legacy,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,219886,67.43160132283025,spot_baseline,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,220077,-0.0297111329732588,relative_legacy,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,220077,15.305663920416048,spot_peer,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,220077,56.55971758542251,spot_baseline,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,220077,55.275282421152646,baseline,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29116,"Will the Federal Reserve cut interest rates before January 1, 2025?",2024-10-25 13:01:11.642696+00,220077,20.722221774345517,peer,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,0.5,2024-10-26 14:30:00+00,29209 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,182315,25.338528141427577,peer,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,182315,74.84612330040356,spot_baseline,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,182315,0.0715396592062158,relative_legacy,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,182315,62.95790184481825,baseline,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,182315,29.37155866827566,spot_peer,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,185690,0.0027200651416451,relative_legacy,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,185690,1.7926600421749892,baseline,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,185690,0.7084487784771414,peer,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,185690,83.18772411916731,spot_baseline,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,185690,35.34003050196096,spot_peer,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,185698,0.015316383312119,relative_legacy,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,185698,8.295856261059745,peer,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,185698,22.97046395278462,baseline,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,185698,-108.92772860759506,spot_peer,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,185698,-118.44245711374272,spot_baseline,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,185699,2.856915219677092,spot_baseline,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,185699,-19.832362579807462,peer,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,185699,-22.13720686658759,spot_peer,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,185699,2.6328521706173063,baseline,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,185699,-0.5684874232423667,relative_legacy,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,187708,28.52190918388917,baseline,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,187708,-1.3124695606721166,spot_peer,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,187708,31.96179342001613,spot_baseline,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,187708,-0.2963663479682235,relative_legacy,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,187708,-0.577188880256525,peer,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,188107,0.2043147056974988,relative_legacy,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,188107,37.63111478799666,peer,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,188107,36.49340346692872,spot_peer,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,188107,84.79969065549501,spot_baseline,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,188107,82.28809420375494,baseline,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,188389,17.749955212278035,peer,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,188389,40.57843932754498,baseline,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,188389,92.5999418556223,spot_baseline,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,188389,42.074535985150725,spot_peer,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,188389,0.1052879946271186,relative_legacy,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,189585,30.593180102804972,spot_peer,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,189585,67.33136882821691,baseline,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,189585,27.7843789207269,peer,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,189585,0.0958495797250397,relative_legacy,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,189588,12.668245279740193,peer,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,189588,-0.0690302228580863,relative_legacy,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,189588,17.673113733359212,spot_peer,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,189588,41.399203932990176,baseline,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,189869,24.33515462497945,spot_peer,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,189869,65.07110643676565,baseline,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,189869,25.18789599965724,peer,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,189869,0.0378737242047501,relative_legacy,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,190710,-35.845397091247634,spot_baseline,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,190710,-49.82897322474805,spot_peer,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,190710,-47.20503490555625,peer,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,190710,-0.9536416127851772,relative_legacy,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,190710,-34.28883137270084,baseline,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,190772,31.800513239650535,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,190772,55.89077282704454,baseline,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,190772,22.98977958230861,peer,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,190772,0.0713976588570278,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,190772,78.24085649273731,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191026,56.55971758542251,spot_baseline,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191026,0.3590915041547898,peer,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191026,1.4880161881107272,baseline,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191026,16.287511634557582,spot_peer,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191026,-0.0035534453380676,relative_legacy,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191046,24.33515462497945,spot_peer,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191046,11.366935446494722,peer,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191046,-0.0033569068738511,relative_legacy,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191046,33.345032504385635,baseline,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191284,-132.19280948873623,spot_baseline,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191284,-88.35341297412228,peer,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191284,-118.76619878094472,spot_peer,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191284,-97.7897876285605,baseline,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191284,-1.4786726710758251,relative_legacy,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191471,24.33515462497945,spot_peer,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191471,67.80719051126377,spot_baseline,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191471,15.617358625571,peer,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191471,-0.0033569068738511,relative_legacy,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191471,43.31809641793885,baseline,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191935,24.33515462497945,spot_peer,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191935,67.80719051126377,spot_baseline,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191935,0.0008297013568132,relative_legacy,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191935,19.104555453972345,peer,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191935,52.038497435890186,baseline,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191975,0.0345325326693638,relative_legacy,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191975,29.984176528385564,spot_peer,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191975,75.70232465074596,spot_baseline,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191975,13.762381188741692,peer,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,191975,36.33020797951114,baseline,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,192049,0.1828455651683564,relative_legacy,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,192049,34.70200501082218,peer,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,192049,77.57041535683652,baseline,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,192049,36.49340346692872,spot_peer,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,192418,0.1568537093102043,relative_legacy,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,192418,32.99388845524547,spot_peer,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,192418,79.90873060740036,spot_baseline,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,192418,77.95017748672613,baseline,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,192418,34.43099723697073,peer,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,192924,24.33515462497945,spot_peer,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,192924,14.53170301409014,peer,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,192924,40.78698303711758,baseline,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,192924,67.80719051126377,spot_baseline,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,192924,-0.0033569068738511,relative_legacy,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,193275,12.703277540687395,peer,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,193275,-0.1304751100537948,relative_legacy,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,193275,11.86999837870336,spot_peer,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,193275,47.82002505382932,baseline,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,193275,50.38575325774291,spot_baseline,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,204737,9.760014334310366,peer,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,204737,-0.0033569068738511,relative_legacy,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,204737,24.33515462497945,spot_peer,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,204737,67.80719051126377,spot_baseline,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,204737,29.194835178152303,baseline,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,208405,0.1164971335023707,relative_legacy,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,208405,59.81218456052363,baseline,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,208405,25.993999422224764,peer,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,208405,36.49340346692872,spot_peer,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,215725,-118.76619878094472,spot_peer,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,215725,-75.45605264848385,peer,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,215725,-132.19280948873623,spot_baseline,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,215725,-83.42657962223767,baseline,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,215725,-1.2655523310409458,relative_legacy,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,216863,-92.76268875266554,peer,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,216863,-96.52086733226425,baseline,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,216863,-95.73202574205854,spot_peer,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,216863,-1.5796409625770915,relative_legacy,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,216863,-100.0,spot_baseline,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,218269,-95.73202574205854,spot_peer,tombot37,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,218269,-100.0,spot_baseline,tombot37,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,218269,-95.11708863256926,peer,tombot37,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,218269,-98.48985157051573,baseline,tombot37,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,218269,-1.609623600959288,relative_legacy,tombot37,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,218666,27.88626964096215,spot_peer,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,218666,46.71258611758403,baseline,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,218666,72.77026728372381,spot_baseline,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,218666,13.422408147568522,peer,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,218666,-0.0943247580533338,relative_legacy,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,218945,39.03221273437503,peer,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,218945,84.53780590268482,baseline,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,218945,0.2104658093344047,relative_legacy,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,218945,84.79969065549501,spot_baseline,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,218945,36.49340346692872,spot_peer,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,219659,0.0063657430258416,relative_legacy,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,219659,30.593180102804972,spot_peer,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,219659,76.55347463629771,spot_baseline,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,219659,3.086897200494267,peer,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,219659,8.509929723908327,baseline,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,219886,4.578482337972244,baseline,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,219886,14.795788138710142,spot_baseline,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,219886,-4.856959796988693,peer,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,219886,-13.594862502312765,spot_peer,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,219886,-0.1673980293868663,relative_legacy,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,220077,-0.3427983392793138,relative_legacy,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,220077,28.04553735102171,baseline,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,220077,28.688114778816157,spot_baseline,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,220077,-3.654808781531031,spot_peer,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29117,"At the end of 2024, will Wikipedia still list Venezuela as ""currently"" blocking access to Twitter/X?",2024-10-25 13:01:11.645845+00,220077,-2.067250653700261,peer,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29210 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,182315,0.0303339014306233,relative_legacy,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,182315,9.352491188086663,baseline,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,182315,8.336985715992784,spot_peer,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,182315,11.103131238874395,spot_baseline,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,182315,5.567540501076081,peer,RyansAGI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,185690,0.0,relative_legacy,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,185690,0.5988656155070718,spot_peer,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,185690,0.0154314855583786,peer,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,185690,0.0063543753582811,baseline,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,185690,0.2882508533121365,spot_baseline,annabot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,185698,1.841954881686375,baseline,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,185698,0.0035588878934478,relative_legacy,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,185698,1.4686977930445442,peer,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,185698,10.231090352709838,spot_peer,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,185698,13.750352374993504,spot_baseline,RonanMcGovern,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,185699,-27.93634453824089,spot_peer,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,185699,-39.592867633113926,spot_baseline,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,185699,-37.34627045320496,baseline,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,185699,-0.4419021139573291,relative_legacy,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,185699,-28.483950149585205,peer,MWG,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,187708,0.1085205062095431,relative_legacy,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,187708,14.639979962314955,spot_peer,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,187708,11.685794860914864,peer,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,187708,17.957258789253338,baseline,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,187708,19.912264201360067,spot_baseline,twsummerbot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,188107,14.843486210346365,baseline,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,188107,11.165266922507811,spot_peer,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,188107,15.05596765753814,spot_baseline,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,188107,0.0796889516972166,relative_legacy,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,188107,9.157093767751505,peer,Cassie,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,188389,-0.2153252702226228,relative_legacy,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,188389,-15.200309344504996,spot_baseline,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,188389,-10.48330401757674,spot_peer,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,188389,-14.849790813925097,baseline,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,188389,-12.336545309199716,peer,Panshul42,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,189585,12.09023258934334,baseline,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,189585,0.0526860341029707,relative_legacy,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,189585,13.750352374993504,spot_baseline,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,189585,7.468352825481682,peer,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,189585,10.231090352709838,spot_peer,mf-bot-1,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,189588,5.658352836636751,spot_baseline,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,189588,-0.0082068479432136,relative_legacy,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,189588,4.441209924215021,spot_peer,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,189588,1.9736784276892847,peer,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,189588,4.005535966193301,baseline,mf-bot-3,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,189869,-22.641552859525987,spot_peer,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,189869,-23.870512249172315,peer,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,189869,-0.3764106385205098,relative_legacy,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,189869,-30.894552147663845,baseline,VeritasAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,190710,0.0540703154741128,relative_legacy,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,190710,9.477613967511232,spot_peer,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,190710,12.164101420573346,baseline,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,190710,12.697285625776551,spot_baseline,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,190710,7.4506774618578895,peer,Bot_Pepa,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,190772,-3.821263125956492,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,190772,-4.213654733836409,baseline,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,190772,-5.889368905356857,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,190772,-3.964403519714317,peer,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,190772,-0.0912419920531918,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191026,-8.926733809708741,spot_baseline,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191026,-0.2349880709549273,baseline,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191026,-5.994518268958543,spot_peer,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191026,-0.1547143095587956,peer,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191026,-0.002413424463132,relative_legacy,manticAI,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191046,-0.0005403579093594,relative_legacy,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191046,13.750352374993504,spot_baseline,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191046,1.7273497688528443,peer,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191046,10.231090352709838,spot_peer,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191046,2.862341971586153,baseline,archipelago,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191284,6.360452595346562,peer,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191284,13.750352374993504,spot_baseline,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191284,10.171746414420948,baseline,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191284,0.0499165720161919,relative_legacy,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191284,10.231090352709838,spot_peer,000_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191471,8.406426478847456,spot_baseline,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191471,6.407475211512507,spot_peer,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191471,0.0094266722890804,relative_legacy,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191471,5.381839622364614,baseline,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191471,3.079704460133897,peer,HSeldon,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191935,-15.200309344504996,spot_baseline,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191935,-10.48330401757674,spot_peer,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191935,-0.1724907874083023,relative_legacy,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191935,-9.488857835675873,peer,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191935,-11.720892570239366,baseline,pgodzinai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191975,-13.745656010685664,baseline,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191975,-37.01699206814612,spot_peer,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191975,-52.28407888133586,spot_baseline,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191975,-0.1495009320691191,relative_legacy,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,191975,-9.68232811378422,peer,jkraybill_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,192049,10.231090352709838,spot_peer,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,192049,0.054744468824661,relative_legacy,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,192049,13.750352374993504,spot_baseline,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,192049,7.813113919630425,peer,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,192049,12.626685024177691,baseline,gnosis-ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,192418,-3.821263125956492,spot_peer,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,192418,-0.1242711754441751,relative_legacy,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,192418,-5.889368905356857,spot_baseline,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,192418,-5.691501555834545,peer,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,192418,-5.74737958064664,baseline,InstitutPelFutur,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,192924,13.750352374993504,spot_baseline,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,192924,8.282116852208365,baseline,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,192924,10.231090352709838,spot_peer,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,192924,0.0414354954667643,relative_legacy,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,192924,5.273689948306432,peer,acm_bot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,193275,-11.859018921338206,baseline,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,193275,-0.1858507003469307,relative_legacy,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,193275,-8.43916184506788,spot_peer,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,193275,-10.079524124694188,peer,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,193275,-12.34339412482792,spot_baseline,histerio,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,204737,-4.90376085948544,peer,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,204737,-6.5998748574097,baseline,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,204737,-10.48330401757674,spot_peer,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,204737,-15.200309344504996,spot_baseline,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,204737,-0.0902825313815381,relative_legacy,SynapseSeer,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,208405,0.0,spot_baseline,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,208405,0.3926201793601721,spot_peer,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,208405,-0.0481629578205786,relative_legacy,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,208405,-0.9122954666406434,peer,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,208405,-0.0044241908254875,baseline,mf-bot-4,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,215725,37.85116232537298,spot_baseline,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,215725,23.98634213441483,baseline,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,215725,16.48697827571521,peer,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,215725,27.475382963101183,spot_peer,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,215725,0.1958397053233845,relative_legacy,estr.ai,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,216863,17.04339389225414,peer,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,216863,25.400534154117867,baseline,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,216863,0.1867064387868051,relative_legacy,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,216863,26.303440583379377,spot_baseline,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,216863,19.212909912929664,spot_peer,tombot61,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,218269,19.212909912929664,spot_peer,tombot37,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,218269,0.1905489218185452,relative_legacy,tombot37,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,218269,26.303440583379377,spot_baseline,tombot37,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,218269,17.267021184725678,peer,tombot37,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,218269,25.92247654353089,baseline,tombot37,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,218666,-19.099722506091386,spot_baseline,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,218666,-7.949463905265384,baseline,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,218666,-0.143665163442679,relative_legacy,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,218666,-13.273360522136164,spot_peer,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,218666,-6.953709758558447,peer,GreeneiBot2,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,218945,22.61795319081559,baseline,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,218945,14.635928284139156,peer,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,218945,22.65085298086797,spot_baseline,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,218945,16.599458766164272,spot_peer,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,218945,0.1545659560387909,relative_legacy,SeidrBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,219659,26.303440583379377,spot_baseline,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,219659,2.181077340303636,peer,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,219659,0.0247949723040925,relative_legacy,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,219659,2.9773924184467666,baseline,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,219659,19.212909912929664,spot_peer,lostandfound,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,219886,-0.3044416604848853,relative_legacy,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,219886,-93.63313988751167,spot_baseline,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,219886,-28.976261296532343,baseline,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,219886,-20.63993981755615,peer,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,219886,-66.60252502838554,spot_peer,SaraBase,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,220077,0.5060662766773053,peer,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,220077,2.436762351869037,spot_peer,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,220077,2.856915219677092,spot_baseline,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,220077,-0.0390682803218361,relative_legacy,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29119,Will Republican Congressman David Schweikert be re-elected in Arizona's 1st Congressional District in the 2024 election?,2024-10-25 13:01:11.80426+00,220077,2.794577411718008,baseline,mmBot,True,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,2024-10-26 14:30:00+00,29212 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,182315,0.037650723417302,relative_legacy,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,182315,7.632507789804813,spot_peer,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,182315,91.07326619029126,spot_baseline,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,182315,75.84213243114559,baseline,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,182315,5.612980006558409,peer,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,185698,0.0140103050990565,relative_legacy,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,185698,84.79969065549501,spot_baseline,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,185698,2.331591574564449,peer,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,185698,28.54738588540721,baseline,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,185698,3.128692624617572,spot_peer,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,185699,91.07326619029126,spot_baseline,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,185699,60.25023362409816,baseline,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,185699,4.429176843937459,peer,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,185699,0.0273686658819883,relative_legacy,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,185699,7.632507789804813,spot_peer,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,187708,93.65908298239384,spot_baseline,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,187708,0.0239418183853755,relative_legacy,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,187708,3.422133269073394,peer,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,187708,9.488871966512802,spot_peer,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,187708,37.71322863709111,baseline,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,188107,-7.083750148957802,peer,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,188107,27.21604243037789,baseline,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,188107,60.09040445901777,spot_baseline,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,188107,-0.1236447212528002,relative_legacy,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,188107,-14.610164152574292,spot_peer,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,189585,2.2594654588152814,peer,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,189585,82.87976317924237,baseline,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,189585,-0.0060325597224716,relative_legacy,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,189585,3.128692624617572,spot_peer,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,189588,-3.633085820517613,peer,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,189588,74.48871484813967,baseline,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,189588,-2.7912859516628195,spot_peer,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,189588,-0.0860450058944198,relative_legacy,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,189869,0.0541682448947115,relative_legacy,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,189869,8.728511970467563,spot_peer,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,189869,6.904933552213013,peer,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,189869,80.85594847447325,baseline,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,190710,0.0744111434902594,relative_legacy,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,190710,9.380590274923374,spot_peer,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,190710,88.45801153726362,baseline,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,190710,93.50825233186616,spot_baseline,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,190710,8.261254626301648,peer,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,190772,79.90873060740036,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,190772,-0.9949924050194172,peer,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,190772,58.8328720445313,baseline,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,190772,-0.3825395132208506,spot_peer,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,190772,-0.0464911950093784,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191026,-8.424957701334836,spot_peer,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191026,5.992428483532348,baseline,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191026,68.70606883398922,spot_baseline,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191026,-0.7513244629938802,peer,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191026,-0.01460127665229,relative_legacy,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191046,39.01421365645364,baseline,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191046,-9.070264639793558,spot_peer,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191046,-5.817024324719514,peer,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191046,-0.1115291331141325,relative_legacy,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191471,0.0044849131947423,relative_legacy,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191471,87.97057662822883,spot_baseline,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191471,5.405079391919307,spot_peer,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191471,55.6249477029662,baseline,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191471,2.809308356905421,peer,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191935,6.51014445574861,peer,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191935,82.79939774798174,baseline,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191935,0.0498673900666907,relative_legacy,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191935,92.5999418556223,spot_baseline,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191935,8.728511970467563,spot_peer,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191975,89.16784079483641,spot_baseline,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191975,6.26459825486987,spot_peer,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191975,0.0049434345599752,relative_legacy,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191975,2.0022072492280865,peer,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,191975,34.0395567168768,baseline,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192049,6.524378269516053,peer,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192049,0.0501973318641131,relative_legacy,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192049,8.728511970467563,spot_peer,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192049,76.94925691629822,baseline,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192418,-0.1683685078877673,relative_legacy,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192418,67.80719051126377,spot_baseline,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192418,63.89971741059859,baseline,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192418,-9.535304566320931,peer,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192418,-9.070264639793558,spot_peer,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192472,67.80719051126377,spot_baseline,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192472,-9.813697033303551,peer,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192472,-0.1702869416703623,relative_legacy,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192472,-9.070264639793558,spot_peer,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192472,65.67079640113047,baseline,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192924,53.0883886103839,baseline,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192924,6.524781416998779,spot_peer,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192924,3.3101761020769764,peer,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192924,89.53026213333065,spot_baseline,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,192924,0.0137333157160618,relative_legacy,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,193275,57.19153811069396,baseline,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,193275,-6.423795326471216,peer,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,193275,70.84079834835963,spot_baseline,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,193275,-0.1255820386087332,relative_legacy,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,193275,-6.892430180614321,spot_peer,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,195286,-0.0117318480408518,relative_legacy,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,195286,43.36883596690124,baseline,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,195286,3.128692624617572,spot_peer,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,195286,1.1123252555359988,peer,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,204737,5.966443522672282,spot_peer,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,204737,88.75252707415875,spot_baseline,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,204737,1.417547896582226,peer,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,204737,25.42285969787551,baseline,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,204737,0.0028829091541472,relative_legacy,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,208405,-2.7912859516628195,spot_peer,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,208405,-3.809744649298176,peer,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,208405,-0.0886981464209759,relative_legacy,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,208405,73.54543305282033,baseline,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,218269,7.885930278008188,peer,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,218269,90.89482958203789,baseline,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,218269,0.0702039179353934,relative_legacy,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,218269,8.728511970467563,spot_peer,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,218269,92.5999418556223,spot_baseline,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,218666,67.80719051126377,spot_baseline,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,218666,50.712657546739095,baseline,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,218666,-9.070264639793558,spot_peer,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,218666,-7.580491004886165,peer,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,218666,-0.1366073162335637,relative_legacy,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,219459,-0.0045524725026649,relative_legacy,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,219459,-1.5799104047608588,spot_peer,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,219459,-0.1214110739356347,peer,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,219459,5.430680802857506,baseline,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,219459,78.24085649273731,spot_baseline,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,220077,8.973160360596518,peer,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,220077,94.11063109464314,spot_baseline,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,220077,0.0849512219980603,relative_legacy,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,220077,91.94905939046376,baseline,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,220077,9.813039456723152,spot_peer,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,221727,56.78195570484928,baseline,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,221727,-15.768358502695367,peer,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,221727,-0.2528485980220611,relative_legacy,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,221727,-15.754611471899157,spot_peer,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,222046,5.098992780600067,baseline,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,222046,-22.900301733047712,spot_peer,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,222046,-2.433734236542398,peer,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,222046,-0.0393540861271574,relative_legacy,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29162,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-28 13:07:11.253781+00,222046,48.54268271702416,spot_baseline,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29262 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,182315,47.77763593825679,peer,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,182315,0.0,baseline,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,182315,0.0,spot_baseline,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,182315,0.6632190872378585,relative_legacy,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,182315,51.51908267491065,spot_peer,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,185698,93.46374903092766,spot_peer,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,185698,58.496250072115615,spot_baseline,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,185698,0.436527293339747,relative_legacy,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,185698,33.72588429412119,peer,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,185698,23.51330844382647,baseline,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,185699,-0.6391122291606902,relative_legacy,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,185699,-46.06294086848962,peer,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,185699,-116.6114328951102,baseline,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,185699,-73.02982811742757,spot_peer,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,185699,-173.6965594166206,spot_baseline,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,187708,-229.3358942690592,spot_baseline,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,187708,-44.68862063873926,peer,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,187708,-93.97597455238642,baseline,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,187708,-0.6448186004819249,relative_legacy,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,187708,-112.92594682211563,spot_peer,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,188107,-0.058487816272358,relative_legacy,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,188107,-39.73913984376762,baseline,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,188107,-10.326124299808717,spot_peer,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,188107,-2.704438829387599,peer,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,188107,-86.24964762500652,spot_baseline,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,189585,0.0413342511745331,relative_legacy,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,189585,-70.63404605971537,baseline,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,189585,3.4028574970319574,peer,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,189585,-73.69655941662063,spot_baseline,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,189585,-1.3249473698470149,spot_peer,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,189588,-46.17288957032991,baseline,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,189588,17.535903332975884,spot_peer,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,189588,0.284055953121779,relative_legacy,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,189588,21.14387615160642,peer,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,189588,-47.39311883324123,spot_baseline,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,189869,-0.1805981508458788,relative_legacy,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,189869,-20.185798072669897,spot_peer,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,189869,-13.761001493788864,peer,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,189869,-87.31858403594406,baseline,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,189869,-100.0,spot_baseline,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,190710,40.61971898617,spot_peer,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,190710,0.5890889604738021,relative_legacy,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,190710,43.35078914881359,peer,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,190710,-15.200309344504996,spot_baseline,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,190710,-14.390961765894437,baseline,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,190772,-78.0252084287294,baseline,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,190772,-24.40876302304112,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,190772,-0.1877454899142687,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,190772,-105.88936890535685,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,190772,-14.254415879139373,peer,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191026,46.212879807233,spot_peer,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191026,-7.400058144377692,spot_baseline,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191026,3.878101144687922,peer,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191026,0.0078942406967143,relative_legacy,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191026,-0.6454744702316297,baseline,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191046,78.6602134818925,spot_peer,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191046,48.06001212468472,peer,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191046,21.761550918293214,baseline,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191046,37.85116232537298,spot_baseline,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191046,0.6479795136131069,relative_legacy,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191471,-88.8968687611256,spot_baseline,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191471,-0.0763492203369161,relative_legacy,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191471,-12.224311058587656,spot_peer,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191471,-56.25913206955953,baseline,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191471,-4.769709518063341,peer,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191935,0.3144547131374008,relative_legacy,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191935,-43.440282414577496,spot_baseline,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191935,22.89535140729871,peer,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191935,-39.22977709607695,baseline,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191935,20.37027997312565,spot_peer,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191975,-73.58598035278129,baseline,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191975,-106.6942143692856,spot_peer,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191975,-0.5087207977751086,relative_legacy,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191975,-34.61490932707886,peer,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,191975,-220.64508774674263,spot_baseline,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192049,-144.60860147362544,baseline,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192049,-73.02982811742757,spot_peer,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192049,-0.7832457620523454,relative_legacy,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192049,-173.6965594166206,spot_baseline,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192049,-57.59505968659761,peer,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192418,43.20798507888455,peer,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192418,-15.200309344504996,spot_baseline,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192418,40.61971898617,spot_peer,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192418,-14.326934779403732,baseline,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192418,0.5878827825907579,relative_legacy,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192472,0.3224719582840096,relative_legacy,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192472,-43.440282414577496,spot_baseline,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192472,20.37027997312565,spot_peer,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192472,23.9699551072834,peer,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192472,-42.19020379579438,baseline,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192924,49.67206276885791,peer,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192924,22.46247982002801,baseline,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192924,0.6714507501005935,relative_legacy,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192924,78.6602134818925,spot_peer,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,192924,37.85116232537298,spot_baseline,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,193275,8.220770848343072,spot_peer,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,193275,11.586518143423248,peer,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,193275,-60.38405109268458,spot_baseline,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,193275,-48.4237068507328,baseline,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,193275,0.1666648459394209,relative_legacy,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,195286,-132.19280948873623,spot_baseline,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,195286,-67.26858268271819,baseline,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,195286,-43.26961372586401,spot_peer,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,195286,-19.88194240181937,peer,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,195286,-0.2910036036777385,relative_legacy,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,204737,0.4044076537350817,relative_legacy,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,204737,106.4116603709972,spot_peer,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,204737,22.111136730359608,baseline,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,204737,31.480612443399817,peer,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,208405,-173.6965594166206,spot_baseline,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,208405,-163.26991133191626,baseline,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,208405,-64.8900029700797,peer,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,208405,-73.02982811742757,spot_peer,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,208405,-0.8903276063941221,relative_legacy,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,218269,14.621674681248676,spot_peer,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,218269,18.20360550843685,peer,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,218269,0.2443758972988316,relative_legacy,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,218269,-51.45731728297583,spot_baseline,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,218269,-50.522755200370895,baseline,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,218666,-77.25279306779876,spot_peer,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,218666,-0.7443206025337181,relative_legacy,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,218666,-54.65038294423098,peer,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,218666,-134.62490899712142,baseline,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,218666,-179.58592832197746,spot_baseline,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,219459,67.46570472600634,spot_peer,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,219459,1.543761535696924,baseline,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,219459,0.0270795030602232,relative_legacy,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,219459,4.543080114103208,peer,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,219459,22.2392421336448,spot_baseline,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,219886,-1.8913842884020795,peer,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,219886,-177.675046027207,spot_baseline,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,219886,-75.88259719710699,spot_peer,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,219886,-0.0357795648736858,relative_legacy,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,219886,-4.412228710650716,baseline,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,220077,8.53472640301418,spot_peer,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,220077,0.1615120619509408,relative_legacy,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,220077,-59.94620704162712,spot_baseline,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,220077,12.098540785582433,peer,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,220077,-58.594593370037984,baseline,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,221727,-173.6965594166206,spot_baseline,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,221727,-73.02982811742757,spot_peer,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,221727,-67.9657051612872,peer,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,221727,-0.928878254954458,relative_legacy,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,221727,-166.85548836752463,baseline,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,222046,4.716275349433578,baseline,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,222046,44.36066514756148,spot_baseline,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,222046,83.32784471780315,spot_peer,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,222046,8.73364635063143,peer,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29163,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-28 13:07:11.26219+00,222046,0.0730396649706006,relative_legacy,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29263 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,182315,0.0171485233686822,relative_legacy,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,182315,33.821432527920535,peer,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,182315,60.97899232704509,baseline,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,182315,33.1692939198947,spot_peer,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,182315,73.11832415721999,spot_baseline,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,185690,88.12730614292485,spot_baseline,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,185690,2.976940536647132e-05,relative_legacy,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,185690,43.91950858457658,spot_peer,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,185690,0.0087111681244987,peer,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,185690,0.0174795166182661,baseline,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,185698,8.890844076642944,peer,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,185698,20.002128463057417,baseline,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,185698,81.55754288625727,spot_baseline,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,185698,39.213901943660936,spot_peer,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,185698,0.0030129354261502,relative_legacy,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,185699,0.0657589576410657,relative_legacy,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,185699,38.03293670855325,spot_peer,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,185699,79.90873060740036,spot_baseline,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,185699,28.72023251626078,peer,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,185699,54.52165117166509,baseline,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,187708,10.115907924526727,peer,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,187708,24.19278307041894,baseline,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,187708,-0.0332553944332487,relative_legacy,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,187708,22.42027922889086,spot_peer,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,187708,58.11101752255496,spot_baseline,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,188107,32.19280948873624,spot_baseline,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,188107,3.85630864428969,spot_peer,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,188107,-0.1693332078872731,relative_legacy,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,188107,15.447198046695526,baseline,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,188107,2.8098079034281422,peer,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,189585,74.57705741008806,baseline,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,189585,44.04265806794773,peer,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,189585,0.0434758831692797,relative_legacy,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,189585,35.62972761824563,spot_peer,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,189869,35.62972761824563,spot_peer,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,189869,39.01986844996705,peer,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,189869,0.0457968843808294,relative_legacy,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,189869,66.84631107991004,baseline,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,190710,70.92751733182443,baseline,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,190710,42.78373996145026,peer,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,190710,0.0297340055882479,relative_legacy,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,190710,74.84612330040356,spot_baseline,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,190710,34.406833661388674,spot_peer,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,190772,43.8072507426471,spot_peer,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,190772,87.97057662822883,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,190772,35.955014777524,peer,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,190772,0.1270806372818845,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,190772,64.88864994476083,baseline,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191026,-0.0106183602684935,relative_legacy,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191026,1.5750360275302469,peer,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191026,4.32407702067264,baseline,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191026,49.56951626240687,spot_baseline,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191026,16.30241112879597,spot_peer,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191046,-0.0065158079250129,relative_legacy,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191046,29.365183363880707,spot_peer,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191046,18.36521903050649,peer,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191046,38.79448843706448,baseline,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191471,1.750458200256188,peer,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191471,16.665820415987007,baseline,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191471,-0.2748592039050924,relative_legacy,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191471,-0.3619641228033349,spot_peer,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191471,26.303440583379377,spot_baseline,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191935,35.62972761824563,spot_peer,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191935,76.55347463629771,spot_baseline,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191935,0.0457968843808294,relative_legacy,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191935,41.66050905849301,peer,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191935,69.13385826313002,baseline,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191975,65.95954814134039,baseline,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191975,36.73662553338436,peer,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191975,45.22025104911761,spot_peer,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191975,89.94334617815102,spot_baseline,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,191975,0.1410600983030587,relative_legacy,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192049,15.566939459346685,spot_peer,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192049,18.95882595979139,peer,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192049,-0.1880426554804985,relative_legacy,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192049,40.52437582949195,baseline,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192418,-26.991068955754077,baseline,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192418,-0.94569059440295,relative_legacy,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192418,-28.72169546736371,peer,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192418,-28.63041851566409,spot_baseline,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192418,-39.7084553263086,spot_peer,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192459,-8.930207645923629,relative_legacy,biak_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192459,-896.5784284662086,spot_baseline,biak_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192459,-661.3780284951384,spot_peer,biak_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192459,-826.9888192986543,baseline,biak_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192459,-612.845313823228,peer,biak_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192472,-16.90341388687603,peer,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192472,-8.681863311913673,baseline,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192472,-0.7848753037964523,relative_legacy,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192472,-8.926733809708741,spot_baseline,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192472,-25.59565004238103,spot_peer,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192924,35.62972761824563,spot_peer,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192924,45.47286166196829,baseline,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192924,22.939528795646797,peer,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,192924,0.0435242565279664,relative_legacy,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,193275,60.33271958760077,baseline,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,193275,33.25749127607315,peer,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,193275,0.016137302310751,relative_legacy,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,193275,73.11832415721999,spot_baseline,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,193275,33.1692939198947,spot_peer,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,195286,0.0435242565279664,relative_legacy,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,195286,35.62972761824563,spot_peer,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,195286,19.378222886859746,peer,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,195286,39.05661990457549,baseline,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,204737,7.695011242313313,baseline,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,204737,0.3345139737330893,peer,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,204737,26.303440583379377,spot_baseline,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,204737,-0.1086281198705858,relative_legacy,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,204737,-0.3619641228033349,spot_peer,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,208405,41.53609704837367,spot_peer,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,208405,49.81393287666395,peer,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,208405,0.1227047085877627,relative_legacy,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,208405,81.69874741671973,baseline,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,218269,44.307430232766215,peer,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,218269,0.0464713467721312,relative_legacy,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,218269,75.18171548749893,baseline,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,218269,35.62972761824563,spot_peer,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,218269,76.55347463629771,spot_baseline,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,218666,77.90495528374585,spot_baseline,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,218666,36.597728451950985,spot_peer,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,218666,58.53677262118671,baseline,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,218666,31.3920997497399,peer,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,218666,0.0532560198089362,relative_legacy,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,219459,5.116114397650652,baseline,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,219459,2.439979604776685,peer,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,219459,73.69655941662063,spot_baseline,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,219459,33.58345613097372,spot_peer,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,219459,0.0076523051083663,relative_legacy,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,219886,-18.78934946032645,spot_peer,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,219886,0.5759269288684953,spot_baseline,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,219886,-0.0188318059785823,relative_legacy,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,219886,0.0179901256370981,baseline,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,219886,-0.532727389597886,peer,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,220077,51.40545740593179,peer,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,220077,0.142674356615426,relative_legacy,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,220077,84.4738204056187,baseline,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,220077,86.39384504239716,spot_baseline,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,220077,42.67791345432078,spot_peer,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,221727,35.62972761824563,spot_peer,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,221727,44.345212009324975,peer,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,221727,0.0488308966888025,relative_legacy,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,221727,73.84821360042666,baseline,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,222046,-5.825609428204626,peer,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,222046,-5.5308379013293365,baseline,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,222046,-56.058269198514346,spot_peer,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,222046,-0.1221597197689839,relative_legacy,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29164,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-28 13:07:11.269703+00,222046,-51.45731728297583,spot_baseline,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29264 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,182315,5.028886703653374,peer,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,182315,81.55754288625727,spot_baseline,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,182315,68.07234917686411,baseline,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,182315,9.034909064619317,spot_peer,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,182315,0.0745119968173739,relative_legacy,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,185690,5.754210238779373,spot_peer,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,185690,0.0391854931492108,baseline,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,185690,3.906959122961492e-05,relative_legacy,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,185690,0.002929200364132,peer,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,185690,76.9771739249448,spot_baseline,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,185698,5.450734739204026,spot_peer,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,185698,1.1869472264979333,peer,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,185698,23.70312911907661,baseline,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,185698,0.0250417417853144,relative_legacy,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,185699,-16.09888962307856,spot_peer,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,185699,46.46682670034443,spot_baseline,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,185699,-0.1748817198055925,relative_legacy,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,185699,-13.217247196859798,peer,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,185699,32.30114562653626,baseline,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,187708,54.59683691052925,spot_baseline,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,187708,23.067864855041197,baseline,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,187708,-5.237608047478075,peer,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,187708,-0.0595423388378443,relative_legacy,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,187708,-10.275752846128272,spot_peer,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,188107,-0.0033090692337599,relative_legacy,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,188107,0.2570118118455535,spot_peer,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,188107,34.918807033159105,baseline,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,188107,-1.0447328668571114,peer,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,188107,69.30222465786089,spot_baseline,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,189585,1.9781039269766023,peer,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,189585,74.87702282532362,baseline,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,189585,0.0319645561250403,relative_legacy,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,189585,5.450734739204026,spot_peer,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,189588,47.29994472992711,baseline,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,189588,-0.2407593467929071,relative_legacy,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,189588,48.54268271702416,spot_baseline,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,189588,-18.066434697051086,peer,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,189588,-14.612053419694924,spot_peer,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,189869,7.2190620385851165,peer,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,189869,11.357104169332048,spot_peer,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,189869,0.1047567748769016,relative_legacy,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,189869,74.05273316444998,baseline,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,190710,77.34307702034486,baseline,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,190710,81.55754288625727,spot_baseline,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,190710,0.0799490777626954,relative_legacy,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,190710,5.453505774505491,peer,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,190710,9.034909064619317,spot_peer,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,190772,47.367308832186445,baseline,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,190772,64.15460290875237,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,190772,-3.4299830068708634,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,190772,-0.057280796728252,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,190772,-4.653694763939533,peer,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191026,-19.91236050640848,spot_peer,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191026,-1.8146217394336408,peer,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191026,3.589407811247515,baseline,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191026,-0.0215686651341697,relative_legacy,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191026,41.1426245726465,spot_baseline,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191046,38.94244141391496,baseline,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191046,-1.9235537702702987,peer,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191046,-0.0170036296505501,relative_legacy,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191046,-0.8138095151609075,spot_peer,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191471,0.085543786378042,relative_legacy,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191471,5.5954845079841125,peer,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191471,84.79969065549501,spot_baseline,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191471,53.79951129170508,baseline,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191471,11.357104169332048,spot_peer,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191935,4.227840782347047,spot_peer,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191935,68.34724436796623,baseline,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191935,1.3480447543228524,peer,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191935,74.84612330040356,spot_baseline,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191935,0.0240320763092579,relative_legacy,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191975,13.455972102392147,baseline,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191975,-18.62550286237552,spot_peer,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191975,-6.3862264541058025,peer,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191975,42.939279225591385,spot_baseline,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,191975,-0.0800243025120585,relative_legacy,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192049,5.450734739204026,spot_peer,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192049,1.9676531047336028,peer,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192049,68.9191220188265,baseline,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192049,0.0327453288721206,relative_legacy,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192418,72.18712792252522,baseline,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192418,0.0327453288721206,relative_legacy,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192418,1.9781089816081427,peer,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192418,5.450734739204026,spot_peer,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192472,82.59396709248844,baseline,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192472,7.897355371515562,peer,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192472,84.79969065549501,spot_baseline,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192472,0.1123475047377832,relative_legacy,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192472,11.357104169332048,spot_peer,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192924,0.0822561432567097,relative_legacy,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192924,84.79969065549501,spot_baseline,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192924,11.357104169332048,spot_peer,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192924,50.41867432326261,baseline,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,192924,5.282165229847911,peer,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,193275,81.72139242583263,spot_baseline,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,193275,9.152266639225145,spot_peer,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,193275,68.28456211508978,baseline,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,193275,5.150610302179708,peer,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,193275,0.0761804346549356,relative_legacy,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,195286,0.033227275738755,relative_legacy,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,195286,1.6051440564495516,peer,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,195286,5.450734739204026,spot_peer,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,195286,39.15050540477438,baseline,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,204737,-2.708154989273824,peer,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,204737,-7.482790032709939,spot_peer,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,204737,-0.0287153547096315,relative_legacy,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,204737,17.341733132574767,baseline,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,208405,2.188891380789165,peer,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,208405,5.450734739204026,spot_peer,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,208405,0.0346285818584972,relative_legacy,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,208405,74.28742795678484,baseline,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,218269,0.1126220395911347,relative_legacy,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,218269,84.79969065549501,spot_baseline,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,218269,11.357104169332048,spot_peer,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,218269,7.919056580252242,peer,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,218269,83.29768162620074,baseline,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,218666,43.72673838012543,baseline,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,218666,-10.765079105219291,peer,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,218666,-0.1415873693049537,relative_legacy,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,218666,54.59683691052925,spot_baseline,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,218666,-10.275752846128272,spot_peer,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,219459,5.700031556647433,baseline,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,219459,82.10298589546805,spot_baseline,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,219459,9.42558375807628,spot_peer,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,219459,0.5938211462897168,peer,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,219459,0.0099602336846713,relative_legacy,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,219886,-32.34777281708362,spot_peer,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,219886,0.0400580116688669,baseline,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,219886,-0.0543053007859924,peer,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,219886,-0.000706286238228,relative_legacy,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,219886,23.780842954562036,spot_baseline,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,220077,0.0484676564852988,relative_legacy,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,220077,3.1935736704863293,peer,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,220077,78.24085649273731,spot_baseline,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,220077,6.659325514733787,spot_peer,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,220077,76.53027592106908,baseline,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,221727,5.450734739204026,spot_peer,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,221727,73.55692125063526,baseline,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,221727,0.0324942351601603,relative_legacy,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,221727,1.978587814064022,peer,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,222046,5.278216836278128,baseline,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,222046,-0.0192526638349312,relative_legacy,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,222046,48.54268271702416,spot_baseline,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,222046,-14.612053419694924,spot_peer,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29165,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-28 13:07:11.277154+00,222046,-1.6962728398310178,peer,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29265 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,182315,-364.3856189774724,spot_baseline,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,182315,-259.69659873926724,spot_peer,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,182315,-3.289594230169919,relative_legacy,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,182315,-221.5988075922077,peer,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,182315,-304.3383482963598,baseline,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,185690,0.0028365548590215,peer,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,185690,0.002512781430852,baseline,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,185690,3.544048656675401,spot_peer,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,185690,0.0001467867290318,relative_legacy,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,185690,3.1395196275534323,spot_baseline,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,185698,-9.591892112056298,spot_peer,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,185698,0.0180372724579838,relative_legacy,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,185698,-15.200309344505014,spot_baseline,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,185698,3.0308207373972333,peer,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,185698,4.00158815389756,baseline,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,185699,28.40172094390804,baseline,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,185699,19.70230960025664,peer,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,185699,0.0874057502602506,relative_legacy,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,185699,28.40633516755985,spot_peer,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,185699,37.85116232537298,spot_baseline,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,187708,-37.70696490798233,spot_baseline,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,187708,-25.712331121303013,spot_peer,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,187708,-0.2166426467694959,relative_legacy,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,187708,-11.77835676907213,peer,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,187708,-16.26805099079506,baseline,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,188107,-0.2758122675373737,peer,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,188107,0.0,baseline,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,188107,1.2953611725857537,spot_peer,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,188107,0.0,spot_baseline,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,188107,-0.0820753471085095,relative_legacy,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,189585,-21.762805796549245,spot_peer,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,189585,-32.00450069433928,peer,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,189585,-0.7103817323638075,relative_legacy,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,189585,-41.84621150605735,baseline,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,189588,-50.102160193116426,baseline,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,189588,-0.7920508230393374,relative_legacy,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,189588,-37.12110149230211,peer,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,189588,-35.56104970108326,spot_peer,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,189869,62.03331654580473,spot_peer,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,189869,52.62315320332155,peer,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,189869,0.4718380869443208,relative_legacy,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,189869,74.05371964789998,baseline,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,190710,35.22973395986257,peer,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,190710,49.92657559777501,baseline,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,190710,52.60688116675877,spot_baseline,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,190710,38.97514957666972,spot_peer,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,190710,0.2084011464551594,relative_legacy,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,190772,81.55754288625727,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,190772,59.71112144109201,spot_peer,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,190772,60.27963548770249,baseline,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,190772,42.79153260505095,peer,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,190772,0.4106897820724008,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191026,-0.0149199221787184,relative_legacy,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191026,-1.3690092298686882,peer,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191026,-2.0457229649465067,baseline,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191026,-23.44652536370228,spot_baseline,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191026,-15.49826154218431,spot_peer,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191046,-51.45731728297583,spot_baseline,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191046,-35.56104970108326,spot_peer,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191046,-21.603768709621097,peer,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191046,-29.684041904882765,baseline,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191046,-0.4051702023895598,relative_legacy,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191471,-38.06718312934243,baseline,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191471,-27.771098370090435,peer,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191471,-41.64123470345305,spot_peer,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191471,-59.94620704162715,spot_baseline,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191471,-0.5118936325228656,relative_legacy,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191935,59.71112144109201,spot_peer,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191935,81.55754288625727,spot_baseline,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191935,72.73451777861469,baseline,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191935,51.58826177263504,peer,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191935,0.4488926351287496,relative_legacy,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191975,52.88918268737712,baseline,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191975,37.830523116822526,peer,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191975,70.93834515738013,spot_peer,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191975,0.4330233159522167,relative_legacy,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,191975,97.23250415571516,spot_baseline,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192049,20.13525537462773,spot_peer,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192049,23.711663857410727,baseline,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192049,-0.0438736184959977,relative_legacy,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192049,15.910610134610502,peer,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192418,-1.92605171046501,relative_legacy,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192418,-120.99565327029606,peer,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192418,-163.82743299362767,baseline,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192418,-123.11516194109429,spot_peer,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192472,-64.38561897747249,spot_baseline,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192472,-44.82097276568428,spot_peer,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192472,-0.9182818245808344,relative_legacy,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192472,-62.77078803926731,baseline,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192472,-46.3798448666706,peer,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192924,-0.7103130565414106,relative_legacy,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192924,-43.10755489221364,peer,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192924,-59.50869215638549,baseline,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192924,-100.0,spot_baseline,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,192924,-70.32984748527527,spot_peer,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,193275,0.3042553916053137,relative_legacy,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,193275,65.99245584023782,spot_baseline,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,193275,48.5625953666029,spot_peer,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,193275,39.51342698259428,peer,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,193275,55.64462000060996,baseline,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,195286,42.17271892126411,baseline,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,195286,30.10439386877693,peer,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,195286,62.03331654580473,spot_peer,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,195286,0.338273340662811,relative_legacy,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,204737,-83.65012677171204,spot_baseline,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,204737,-58.61921667021825,spot_peer,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,204737,-25.016753763069804,baseline,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,204737,-0.2706645500561903,relative_legacy,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,204737,-17.810644899628283,peer,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,208405,56.53848599361737,baseline,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,208405,0.2708282328793669,relative_legacy,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,208405,40.631264982362566,peer,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,208405,43.19342234376274,spot_peer,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,218269,84.79969065549501,spot_baseline,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,218269,62.03331654580473,spot_peer,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,218269,0.5375796996882427,relative_legacy,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,218269,60.80987613250348,peer,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,218269,83.31874242324706,baseline,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,218666,22.650326748927007,peer,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,218666,0.0928457330544935,relative_legacy,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,218666,32.46248519572849,baseline,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,218666,29.98397395440797,spot_peer,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,218666,40.05379295837285,spot_baseline,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,219459,47.68688391086909,spot_peer,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,219459,64.76982560691188,spot_baseline,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,219459,4.496928861560875,baseline,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,219459,0.0463281437260636,relative_legacy,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,219459,3.280770739691553,peer,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,219886,67.4770949125646,baseline,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,219886,48.0425612519442,peer,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,219886,60.8229967797753,spot_peer,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,219886,0.4420482216644537,relative_legacy,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,219886,83.1098948577461,spot_baseline,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,220077,31.53788794874382,spot_peer,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,220077,42.22330006830476,spot_baseline,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,220077,0.120990291645523,relative_legacy,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,220077,30.20001321426172,peer,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,220077,41.31345879365677,baseline,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,221727,52.803623375824834,peer,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,221727,0.437581407712319,relative_legacy,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,221727,73.53033382384636,baseline,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,221727,56.1269471156767,spot_peer,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,222046,-0.0651120601816423,relative_legacy,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,222046,-44.82097276568428,spot_peer,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,222046,-64.38561897747249,spot_baseline,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,222046,-7.064936765238889,baseline,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29166,"Will Revolut officially announce it is launching a stablecoin, before January 1, 2025?",2024-10-28 13:07:11.281723+00,222046,-4.929885927855429,peer,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29266 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,182315,6.135776325252803,spot_peer,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,182315,0.0380235087338616,relative_legacy,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,182315,53.66280170799951,baseline,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,182315,64.15460290875237,spot_baseline,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,182315,3.796383276183271,peer,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,185690,72.0278465233327,spot_baseline,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,185690,0.0001917033501128,relative_legacy,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,185690,11.753602250716874,spot_peer,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,185690,0.1020425012651986,baseline,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,185690,0.0166514345552576,peer,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,185698,58.496250072115615,spot_baseline,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,185698,0.5714703641405859,peer,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,185698,18.146228156127016,baseline,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,185698,2.098349971238548,spot_peer,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,185698,0.0017746856124717,relative_legacy,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,185699,-62.61136496929996,spot_peer,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,185699,-0.6202689887202104,relative_legacy,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,185699,-32.19280948873623,spot_baseline,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,185699,-43.37956428075286,peer,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,185699,-16.034256323604506,baseline,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,187708,5.601001396458589,baseline,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,187708,-0.2002527959931599,relative_legacy,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,187708,-30.5807620213814,spot_peer,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,187708,12.697285625776551,spot_baseline,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,187708,-13.70935317550598,peer,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,188107,-5.003857387712366,spot_peer,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,188107,-2.9094200082818986,peer,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,188107,-0.0520679061524303,relative_legacy,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,188107,25.222351893972665,baseline,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,188107,48.54268271702414,spot_baseline,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,188389,-0.0231633963779664,relative_legacy,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,188389,42.65331381166733,spot_baseline,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,188389,6.713981673048478,baseline,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,188389,-9.206121529503308,spot_peer,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,188389,-1.4313019847034432,peer,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,189585,14.982791157680332,spot_peer,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,189585,11.948859218993295,peer,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,189585,0.145113575583404,relative_legacy,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,189585,74.98183759137167,baseline,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,189588,74.667875898641,baseline,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,189588,14.982791157680332,spot_peer,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,189588,0.1451408961411678,relative_legacy,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,189588,11.92286975246591,peer,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,189869,11.481554555686149,peer,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,189869,14.982791157680332,spot_peer,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,189869,0.1451724304800187,relative_legacy,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,189869,66.85427663278608,baseline,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,190710,15.706882137116516,spot_peer,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,190710,12.519198530953044,peer,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,190710,73.71411438395549,baseline,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,190710,0.1548161616303814,relative_legacy,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,190710,77.56827017390599,spot_baseline,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,190772,0.0051640316143026,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,190772,1.719719182378794,peer,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,190772,3.46182919550538,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,190772,44.71833554559272,baseline,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,190772,60.40713236688608,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191026,2.295409567891012,baseline,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191026,-1.7875706753502605,peer,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191026,-20.87230972287129,spot_peer,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191026,26.303440583379377,spot_baseline,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191026,-0.0263188570111616,relative_legacy,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191046,38.917694503991655,baseline,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191046,0.0499633178431021,relative_legacy,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191046,4.636020287894682,peer,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191046,8.742021264812056,spot_peer,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191284,57.26174128109304,baseline,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191284,0.1260855385118,relative_legacy,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191284,10.40641568076581,peer,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191284,14.982791157680332,spot_peer,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191471,64.15460290875237,spot_baseline,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191471,40.80485712240783,baseline,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191471,6.135776325252803,spot_peer,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191471,3.3400105204795585,peer,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191471,0.0289994219211803,relative_legacy,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191935,54.59683691052925,spot_baseline,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191935,-0.6840133628119713,spot_peer,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191935,-2.722546922223621,peer,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191935,-0.0536566253733504,relative_legacy,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,191935,49.44034542575201,baseline,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192049,-0.018121868118236,relative_legacy,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192049,52.89907146141147,baseline,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192049,58.496250072115615,spot_baseline,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192049,2.098349971238548,spot_peer,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192049,-0.1578925728453758,peer,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192418,14.982791157680332,spot_peer,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192418,0.1451724304800187,relative_legacy,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192418,72.22927547301245,baseline,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192418,11.793911041607808,peer,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192472,0.1451724304800187,relative_legacy,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192472,11.934386470114829,peer,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192472,14.982791157680332,spot_peer,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192472,74.78700150698613,baseline,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192924,0.0508126509132719,relative_legacy,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192924,4.771821630312135,peer,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192924,40.49440930357436,baseline,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192924,8.742021264812056,spot_peer,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,192924,67.80719051126377,spot_baseline,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,193275,1.1357890637753243,baseline,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,193275,-35.491986253958416,peer,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,193275,-9.541956507868262,spot_baseline,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,193275,-0.5066213016856503,relative_legacy,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,193275,-46.44921435654037,spot_peer,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,195286,30.19220654421608,baseline,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,195286,2.098349971238548,spot_peer,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,195286,0.0010108702374245,relative_legacy,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,195286,0.8748293723537411,peer,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,204737,0.0017746856124717,relative_legacy,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,204737,0.5649245322404076,peer,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,204737,17.88870770682823,baseline,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,204737,2.098349971238548,spot_peer,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,208405,74.22023416802719,baseline,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,208405,11.902239071886177,peer,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,208405,14.982791157680332,spot_peer,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,208405,0.1452196857967049,relative_legacy,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,215725,0.1137099368212617,relative_legacy,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,215725,51.464078132896695,baseline,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,215725,14.982791157680332,spot_peer,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,215725,9.46274906973023,peer,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,215725,76.55347463629771,spot_baseline,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,216863,-0.7497747138380325,peer,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,216863,2.098349971238548,spot_peer,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,216863,-0.0286787800435266,relative_legacy,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,216863,56.31897554343767,baseline,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,216863,58.496250072115615,spot_baseline,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,218269,11.953448668378996,peer,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,218269,14.982791157680332,spot_peer,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,218269,75.28829588783984,baseline,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,218269,76.55347463629771,spot_baseline,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,218269,0.1451724304800187,relative_legacy,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,218666,23.37315123014425,baseline,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,218666,-0.2509336420076145,relative_legacy,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,218666,-17.011823290838475,peer,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,218666,28.688114778816157,spot_baseline,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,218666,-19.17076393377608,spot_peer,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,218945,60.52841696381543,baseline,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,218945,65.07645591169023,spot_baseline,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,218945,6.79354965894982,spot_peer,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,218945,4.018367341456698,peer,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,218945,0.0384232590427699,relative_legacy,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,219459,10.864594947446614,spot_peer,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,219459,4.914875328220988,baseline,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,219459,0.7785778386046192,peer,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,219459,70.78192485066899,spot_baseline,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,219459,0.0085307880489333,relative_legacy,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,219886,-24.99094097861537,peer,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,219886,13.76650201955812,baseline,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,219886,16.452886088136875,spot_baseline,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,219886,-0.3610927252722378,relative_legacy,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,219886,-27.90101391806336,spot_peer,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,220077,49.52891438091361,baseline,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,220077,-0.1090301180893936,relative_legacy,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,220077,50.58909297299573,spot_baseline,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,220077,-6.570810126283605,peer,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,220077,-3.5436743738344725,spot_peer,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,221727,0.1451724304800187,relative_legacy,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,221727,73.6462804346594,baseline,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,221727,14.982791157680332,spot_peer,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,221727,11.870804986119424,peer,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,222046,-12.63261922706606,spot_peer,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,222046,37.85116232537298,spot_baseline,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,222046,4.2168057606774685,baseline,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,222046,-0.0212249581479522,relative_legacy,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29168,Will an OpenAI model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.611405+00,222046,-1.3722278441039648,peer,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29268 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,182315,-70.01294877764643,baseline,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,182315,18.80312490341078,spot_peer,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,182315,0.3120066701169948,relative_legacy,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,182315,-83.65012677171204,spot_baseline,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,182315,16.31383021474657,peer,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,185690,-0.0266445277197999,peer,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,185690,-15.805448006199686,spot_peer,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,185690,-0.0002756230954512,relative_legacy,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,185690,-0.2228481581413751,baseline,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,185690,-132.19280948873623,spot_baseline,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,185698,-87.10058657807977,spot_peer,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,185698,-0.3353827868375766,relative_legacy,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,185698,-72.06773601556296,baseline,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,185698,-232.19280948873623,spot_baseline,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,185698,-26.449359389046467,peer,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,185699,-23.884942385782757,peer,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,185699,-0.2476890797088679,relative_legacy,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,185699,-38.75735614137556,spot_peer,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,185699,-164.38561897747246,spot_baseline,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,185699,-120.44582325954296,baseline,MWG,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,187708,-115.84293626044833,spot_baseline,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,187708,-4.148783231765095,spot_peer,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,187708,-51.67128868987509,baseline,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,187708,0.0479240282529527,relative_legacy,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,187708,-1.0179068303737284,peer,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,188107,-9.8512514104639,peer,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,188107,-72.81284990126247,baseline,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,188107,-20.18300834641872,spot_peer,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,188107,-0.061201891113862,relative_legacy,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,188107,-138.33286395515057,spot_baseline,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,188389,-26.43063743854133,baseline,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,188389,-164.38561897747246,spot_baseline,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,188389,-0.0767649463455197,relative_legacy,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,188389,-38.75735614137556,spot_peer,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,188389,-6.041545608720459,peer,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,189585,0.1588032010980725,relative_legacy,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,189585,7.146460128976172,spot_peer,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,189585,-99.04939693377906,baseline,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,189585,-100.0,spot_baseline,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,189585,5.068054076467978,peer,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,189588,41.75503303858663,spot_peer,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,189588,-49.5338994376906,baseline,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,189588,40.97124494723487,peer,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,189588,0.6506374661791428,relative_legacy,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,189869,-13.801744971223416,peer,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,189869,-115.44572507679216,baseline,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,189869,-15.805448006199686,spot_peer,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,189869,-132.19280948873623,spot_baseline,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,189869,-0.1085794154551608,relative_legacy,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,190710,-57.02359576015086,baseline,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,190710,0.5517980360977328,relative_legacy,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,190710,-59.94620704162712,spot_baseline,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,190710,35.70286732194205,spot_peer,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,190710,33.84217214270197,peer,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,190772,-28.226734785741925,peer,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,190772,-38.75735614137556,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,190772,-164.38561897747246,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,190772,-121.76264902229632,baseline,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,190772,-0.3076602510955482,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191026,-53.53317329965558,spot_baseline,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191026,0.0436456417534551,relative_legacy,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191026,40.2750486149421,spot_peer,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191026,-4.672065923362315,baseline,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191026,3.4867273594020034,peer,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191046,24.795723308268933,peer,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191046,0.4181830665393327,relative_legacy,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191046,-29.51683162163247,baseline,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191046,-51.45731728297583,spot_baseline,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191046,41.75503303858663,spot_peer,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191284,0.3665612137652796,relative_legacy,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191284,-55.12446119104777,baseline,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191284,-73.69655941662063,spot_baseline,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191284,25.89953454206863,spot_peer,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191284,20.25146428148036,peer,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191471,17.251845198342533,peer,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191471,25.89953454206863,spot_peer,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191471,0.3072250316280956,relative_legacy,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191471,-46.92747820887115,baseline,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191471,-73.69655941662063,spot_baseline,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191935,-158.39572514995984,spot_peer,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191935,-1.930066517359582,relative_legacy,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191935,-300.8200973143513,baseline,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191935,-332.1928094887362,spot_baseline,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191935,-145.3709082693558,peer,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191975,-25.13479431164705,peer,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191975,-56.23268564033071,spot_peer,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191975,-188.8968687611256,spot_baseline,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191975,-86.91817596500792,baseline,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,191975,-0.2859195110037104,relative_legacy,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192049,55.489690565680384,spot_peer,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192049,-32.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192049,0.7868365358987837,relative_legacy,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192049,-29.163250910987063,baseline,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192049,50.95900036404526,peer,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192418,0.9071582206058824,relative_legacy,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192418,-21.75914350726268,spot_baseline,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192418,59.72896230422656,peer,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192418,-20.53336193215944,baseline,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192418,62.928387185299066,spot_peer,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192472,-58.638889419562,baseline,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192472,35.70286732194205,spot_peer,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192472,-59.94620704162712,spot_baseline,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192472,0.5617912191309257,relative_legacy,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192472,34.50108728156072,peer,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192924,-30.756799089297907,baseline,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192924,25.768506640976877,peer,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192924,-51.45731728297583,spot_baseline,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192924,41.75503303858663,spot_peer,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,192924,0.4298804014453303,relative_legacy,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,193275,-0.34311194555607,relative_legacy,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,193275,-171.78567712185017,spot_baseline,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,193275,-44.03323784980932,spot_peer,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,193275,-139.35515384356296,baseline,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,193275,-30.561571565478804,peer,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,195286,-8.409611533699199,peer,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,195286,-132.19280948873623,spot_baseline,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,195286,-0.040093145614558,relative_legacy,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,195286,-69.49699363491335,baseline,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,195286,-15.805448006199686,spot_peer,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,204737,-73.69655941662063,spot_baseline,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,204737,0.1552111441480815,relative_legacy,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,204737,-22.70441571756424,baseline,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,204737,25.89953454206863,spot_peer,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,204737,8.669322094059705,peer,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,208405,-0.1383302578724188,relative_legacy,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,208405,-128.08682134150192,baseline,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,208405,-132.19280948873623,spot_baseline,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,208405,-16.46509067433997,peer,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,208405,-15.805448006199686,spot_peer,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,215725,0.1488500364296925,relative_legacy,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,215725,7.146460128976172,spot_peer,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,215725,-67.30088229284242,baseline,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,215725,-100.0,spot_baseline,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,215725,5.527733257094049,peer,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,216863,-127.30624970252968,baseline,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,216863,-132.19280948873623,spot_baseline,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,216863,-16.26083604442916,peer,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,216863,-0.1354449532923184,relative_legacy,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,216863,-15.805448006199686,spot_peer,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,218269,0.4274007964912547,relative_legacy,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,218269,25.89953454206863,spot_peer,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,218269,24.74280712696239,peer,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,218269,-72.50649513768748,baseline,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,218269,-73.69655941662063,spot_baseline,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,218666,-204.87515885721416,baseline,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,218666,-82.22937453344109,peer,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,218666,-250.635266602479,spot_baseline,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,218666,-1.0561655350186,relative_legacy,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,218666,-100.24916193338224,spot_peer,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,218945,0.1725757298821557,relative_legacy,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,218945,-93.05847325451948,baseline,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,218945,7.146460128976172,spot_peer,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,218945,-100.0,spot_baseline,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,218945,6.370149171995749,peer,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,219459,0.9273901778580396,peer,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,219459,-6.297711568187971,baseline,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,219459,13.784708017412058,spot_peer,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,219459,-90.68905956085185,spot_baseline,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,219459,0.0067328645866946,relative_legacy,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,219886,0.0,baseline,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,219886,1.0203763218807829,relative_legacy,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,219886,78.44159870085625,spot_peer,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,219886,0.0,spot_baseline,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,219886,67.55586689570858,peer,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,220077,21.24613100920214,peer,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,220077,-76.9630243894649,baseline,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,220077,0.3794434257077467,relative_legacy,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,220077,22.412517798284263,spot_peer,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,220077,-78.58751946471526,spot_baseline,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,221727,-45.39560402981145,spot_peer,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,221727,-0.5347232381504463,relative_legacy,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,221727,-173.6965594166206,spot_baseline,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,221727,-45.19726296540331,peer,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,221727,-167.1012003737788,baseline,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,222046,97.19467311394872,spot_peer,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,222046,26.303440583379377,spot_baseline,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,222046,0.1533822034067766,relative_legacy,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,222046,2.960429266577476,baseline,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29169,Will a Gemini model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.61565+00,222046,10.951561954530776,peer,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29269 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,182315,-101.41267566317588,peer,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,182315,-121.9194278039757,spot_peer,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,182315,-88.6977896176252,baseline,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,182315,-105.88936890535685,spot_baseline,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,182315,-1.5279719299590686,relative_legacy,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,185690,0.0,relative_legacy,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,185690,9.164039694358523,spot_peer,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,185690,0.1622103657993167,baseline,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,185690,77.82085763980878,spot_baseline,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,185690,0.0191015914769479,peer,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,185698,2.861368099842519,peer,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,185698,11.830291150609986,spot_peer,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,185698,23.82364797812745,baseline,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,185698,0.0003183132340492,relative_legacy,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,185698,81.55754288625727,spot_baseline,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,185699,63.234263986514726,baseline,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,185699,0.0248004285070837,relative_legacy,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,185699,81.55754288625727,spot_baseline,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,185699,11.830291150609986,spot_peer,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,185699,9.980724596904498,peer,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,187708,9.275445951658757,peer,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,187708,0.0700772185160245,relative_legacy,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,187708,19.27506513674798,spot_peer,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,187708,41.84662254796013,baseline,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,187708,91.9912088677308,spot_baseline,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,188107,71.66251458820307,spot_baseline,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,188107,-0.0261215884699701,relative_legacy,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,188107,4.769853391124711,spot_peer,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,188107,38.05551384504666,baseline,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,188107,3.1913524070270625,peer,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,188389,-2.7607186982324143,peer,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,188389,-0.0596929744587817,relative_legacy,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,188389,40.38130616165896,spot_baseline,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,188389,6.647304428070064,baseline,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,188389,-17.550348076164898,spot_peer,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,189585,8.259719004797788,spot_peer,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,189585,0.0044906753268761,relative_legacy,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,189585,10.156078540399964,peer,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,189585,75.27364477772828,baseline,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,189588,3.3551212598445472,peer,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,189588,65.79535005749506,baseline,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,189588,-0.0877458043692677,relative_legacy,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,189588,2.018949111929508,spot_peer,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,189588,67.80719051126377,spot_baseline,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,189869,0.0722692022704153,relative_legacy,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,189869,14.143673370674858,spot_peer,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,189869,74.05766156434395,baseline,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,189869,14.1946686861625,peer,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,190710,11.839093192026978,peer,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,190710,76.07691146096212,baseline,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,190710,10.653807757001765,spot_peer,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,190710,79.90873060740036,spot_baseline,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,190710,0.0315935381900767,relative_legacy,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,190772,0.012426031852288,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,190772,57.98807327593986,baseline,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,190772,9.463723098067474,spot_peer,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,190772,78.24085649273731,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,190772,8.476738470589313,peer,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191026,0.8644452173185287,peer,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191026,9.463723098067474,spot_peer,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191026,6.829020198539947,baseline,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191026,78.24085649273731,spot_baseline,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191026,0.0013240458385089,relative_legacy,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191046,48.54268271702416,spot_baseline,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191046,-0.1605714039953139,relative_legacy,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191046,27.80123723627812,baseline,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191046,-11.726929540594895,spot_peer,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191046,-5.976345002751283,peer,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191284,-19.382916358645865,peer,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191284,-27.595381875753844,spot_peer,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191284,-0.3758275888641971,relative_legacy,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191284,26.303440583379377,spot_baseline,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191284,19.6746673285719,baseline,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191471,-0.0001487351734608,relative_legacy,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191471,8.259719004797788,spot_peer,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191471,76.55347463629771,spot_baseline,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191471,48.78611936294124,baseline,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191471,6.2944163354201255,peer,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191935,15.609624896555898,peer,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191935,86.39384504239716,spot_baseline,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191935,0.0893426666367593,relative_legacy,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191935,15.281156507529191,spot_peer,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,191935,78.23515945173865,baseline,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192049,14.143673370674858,spot_peer,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192049,76.9676672155679,baseline,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192049,0.0750778396888457,relative_legacy,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192049,14.59264872734329,peer,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192418,0.9828180175697808,peer,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192418,64.15460290875237,spot_baseline,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192418,60.55214812469867,baseline,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192418,-0.1167447040358919,relative_legacy,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192418,-0.5872958276297489,spot_peer,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192472,-0.4906789796084655,relative_legacy,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192472,-27.595381875753844,spot_peer,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192472,26.303440583379377,spot_baseline,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192472,25.78039112506824,baseline,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192472,-25.935939311230417,peer,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192924,8.259719004797788,spot_peer,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192924,-0.0001487351734608,relative_legacy,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192924,5.830978914906583,peer,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,192924,45.814175366705726,baseline,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,193275,0.0516627872442035,relative_legacy,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,193275,84.1570637395517,spot_baseline,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,193275,13.685137305297465,spot_peer,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,193275,72.91888961414462,baseline,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,193275,12.751978259104956,peer,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,195286,7.985504466784516,peer,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,195286,43.719393991577824,baseline,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,195286,0.0433342325343624,relative_legacy,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,195286,14.143673370674858,spot_peer,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,204737,-0.0001487351734608,relative_legacy,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,204737,23.756627991170514,baseline,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,204737,8.259719004797788,spot_peer,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,204737,2.8255146812835856,peer,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,208405,8.259719004797788,spot_peer,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,208405,9.921201782335128,peer,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,208405,74.47798327932888,baseline,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,208405,0.0024708659325114,relative_legacy,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,215725,32.70065471160626,baseline,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,215725,-0.1888427222961748,relative_legacy,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,215725,48.54268271702416,spot_baseline,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,215725,-11.726929540594895,spot_peer,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,215725,-6.813407589356113,peer,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,216863,15.388679048699723,peer,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,216863,14.143673370674858,spot_peer,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,216863,0.0781605655851334,relative_legacy,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,216863,81.68236977097158,baseline,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,216863,84.79969065549501,spot_baseline,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,218269,-2.9493315332122663,peer,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,218269,57.571870458025,baseline,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,218269,58.496250072115615,spot_baseline,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,218269,-4.624722181644014,spot_peer,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,218269,-0.1751524927203386,relative_legacy,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,218666,84.79969065549501,spot_baseline,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,218666,0.0678057617815472,relative_legacy,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,218666,69.52962043719944,baseline,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,218666,14.143673370674858,spot_peer,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,218666,13.42160218322685,peer,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,218945,9.132482979949812,peer,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,218945,8.017219065868181,spot_peer,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,218945,76.2136169901112,spot_baseline,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,218945,70.96144962498576,baseline,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,218945,-0.0029164947886862,relative_legacy,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,219459,0.0029461911972101,relative_legacy,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,219459,81.01002987964215,spot_baseline,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,219459,11.439622080317916,spot_peer,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,219459,5.625871644647097,baseline,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,219459,0.8196003731620418,peer,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,219886,-20.814199392837548,peer,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,219886,28.725950998306285,spot_baseline,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,219886,-25.86683866282945,spot_peer,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,219886,24.769954653705,baseline,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,219886,-0.4121565651362505,relative_legacy,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,220077,-16.23602304954711,spot_peer,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,220077,41.37189208139159,baseline,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,220077,-0.3346430875434469,relative_legacy,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,220077,42.22330006830476,spot_baseline,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,220077,-14.568625569734907,peer,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,221727,73.94261617772963,baseline,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,221727,0.0017837982134095,relative_legacy,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,221727,8.259719004797788,spot_peer,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,221727,9.839460705766935,peer,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,222046,8.259719004797788,spot_peer,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,222046,-0.0001487351734608,relative_legacy,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,222046,76.55347463629771,spot_baseline,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,222046,8.68449776627087,baseline,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29170,Will a Claude model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.619713+00,222046,1.00350973381587,peer,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29270 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,182315,-0.0835738960168377,relative_legacy,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,182315,-6.537881111839753,spot_peer,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,182315,-4.212921350888489,peer,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,182315,60.40713236688608,spot_baseline,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,182315,50.63317557822644,baseline,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,185690,0.2097974393879286,baseline,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,185690,85.9969548221026,spot_baseline,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,185690,0.0001892171150138,relative_legacy,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,185690,0.0285952416831401,peer,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,185690,11.72132374125441,spot_peer,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,185698,-7.901360336106584,spot_peer,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,185698,-0.0491036281014361,relative_legacy,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,185698,-2.299288443107145,peer,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,185698,18.18082077278789,baseline,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,185698,58.496250072115615,spot_baseline,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,185699,69.59938131099001,spot_baseline,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,185699,53.37308510199945,baseline,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,185699,-0.0333072377616266,relative_legacy,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,185699,0.0210997808477944,spot_peer,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,185699,-0.6450885379753951,peer,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,187708,13.017616292971598,spot_peer,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,187708,0.0678332118775131,relative_legacy,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,187708,6.4005442508523664,peer,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,187708,40.492658059781554,baseline,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,187708,87.81367666269476,spot_baseline,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,188107,38.56686601293307,baseline,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,188107,72.2466024471091,spot_baseline,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,188107,1.5528911891796078,peer,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,188107,-0.0016748610326049,relative_legacy,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,188107,1.9099817025738977,spot_peer,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,188389,0.0308752826619515,relative_legacy,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,188389,3.059321270214291,peer,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,188389,17.296022018062985,spot_peer,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,188389,16.202167971061936,baseline,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,188389,93.80975610740931,spot_baseline,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,189585,66.10197697895508,baseline,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,189585,0.6073144564216059,peer,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,189585,-1.2576890425330782,spot_peer,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,189585,-0.0209256023186364,relative_legacy,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,189588,-7.901360336106584,spot_peer,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,189588,-0.114020192292776,relative_legacy,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,189588,56.54485304489958,baseline,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,189588,-6.191262916200243,peer,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,189869,59.21830902092835,baseline,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,189869,0.3219550561718931,peer,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,189869,-1.2576890425330782,spot_peer,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,189869,-0.0215467100485204,relative_legacy,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,190772,5.725960411984382,peer,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,190772,6.187084943604899,spot_peer,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,190772,0.0558275705840988,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,190772,58.03059525796822,baseline,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,190772,78.24085649273731,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191026,78.24085649273731,spot_baseline,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191026,6.829808436361313,baseline,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191026,6.187084943604899,spot_peer,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191026,0.0007010416311325,relative_legacy,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191026,0.5749533421872493,peer,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191046,-0.0776340167588175,peer,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191046,-0.025048659073526,relative_legacy,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191046,-1.2576890425330782,spot_peer,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191046,38.96138429034284,baseline,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191284,36.30918809602938,baseline,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191284,-0.1656422972570039,relative_legacy,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191284,-15.003567695057477,spot_peer,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191284,-10.216138438180918,peer,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191471,-0.0567324859222783,relative_legacy,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191471,-5.192225656376968,spot_peer,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191471,-2.4937775034041056,peer,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191471,62.29303509201767,spot_baseline,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191471,39.73630077801965,baseline,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191935,85.22368643278853,baseline,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191935,94.11063109464314,spot_baseline,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191935,17.66525111902487,peer,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191935,17.51070650978576,spot_peer,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191935,0.2166491394859542,relative_legacy,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191975,1.7713085559875787,peer,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191975,4.172516217741958,spot_peer,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191975,0.0052088722161734,relative_legacy,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191975,75.41748841984293,spot_baseline,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,191975,27.695067069456304,baseline,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192049,58.496250072115615,spot_baseline,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192049,53.17641027899895,baseline,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192049,-7.901360336106584,spot_peer,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192049,-0.1061884414868717,relative_legacy,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192049,-5.685012433803252,peer,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192418,-24.56189590993811,peer,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192418,-0.3682165821785416,relative_legacy,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192418,-27.496597092555582,spot_peer,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192418,31.034012061215048,spot_baseline,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192418,29.298793014957457,baseline,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192472,57.42581651993468,baseline,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192472,-0.1090070250793242,relative_legacy,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192472,-7.901360336106584,spot_peer,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192472,-5.793017941355041,peer,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192924,-15.003567695057477,spot_peer,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192924,-0.1391238716686946,relative_legacy,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192924,29.086519296609115,baseline,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192924,48.54268271702416,spot_baseline,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,192924,-8.317778981389594,peer,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,193275,69.58538570520783,baseline,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,193275,80.07446239367776,spot_baseline,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,193275,6.704003786706618,peer,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,193275,7.495424844114397,spot_peer,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,193275,0.0661005660827928,relative_legacy,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,195286,16.432778582270057,spot_peer,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,195286,0.1023047146090535,relative_legacy,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,195286,8.984176276490874,peer,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,195286,47.6396429598191,baseline,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,204737,30.84184231270097,baseline,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,204737,6.659682636044418,peer,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,204737,20.67837725489276,spot_peer,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,204737,0.0758828723753928,relative_legacy,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,208405,-0.0187919153353479,relative_legacy,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,208405,-1.2576890425330782,spot_peer,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,208405,0.783012348737872,peer,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,208405,65.7318441521891,baseline,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,215725,32.729313528819254,baseline,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,215725,48.54268271702416,spot_baseline,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,215725,-0.1514466670508825,relative_legacy,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,215725,-9.25542445608251,peer,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,215725,-15.003567695057477,spot_peer,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,216863,-15.003567695057477,spot_peer,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,216863,-12.754092047614607,peer,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,216863,-0.2049019111221086,relative_legacy,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,216863,46.76948975940763,baseline,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,216863,48.54268271702416,spot_baseline,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,218269,66.75330043909256,baseline,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,218269,67.80719051126377,spot_baseline,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,218269,0.8860148356827409,peer,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,218269,-1.2576890425330782,spot_peer,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,218269,-0.0176014466657703,relative_legacy,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,218666,15.124186683468116,spot_peer,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,218666,13.87829696848004,peer,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,218666,0.1674788296984821,relative_legacy,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,218666,74.7299277847687,baseline,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,218666,90.76598278532894,spot_baseline,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,218945,67.80719051126377,spot_baseline,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,218945,63.16365368142765,baseline,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,218945,-0.0215467100485204,relative_legacy,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,218945,-1.2576890425330782,spot_peer,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,218945,0.5607747436980114,peer,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,219459,0.6447304283397134,peer,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,219459,0.0028796107848671,relative_legacy,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,219459,8.942845053196555,spot_peer,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,219459,82.10298589546805,spot_baseline,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,219459,5.702136314963178,baseline,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,219886,76.32821388649546,baseline,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,219886,87.43012309068585,spot_baseline,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,219886,0.1497653437442954,relative_legacy,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,219886,12.743937831321364,spot_peer,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,219886,12.702989041548324,peer,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,220077,-7.168444681751877,peer,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,220077,-0.1279179611882248,relative_legacy,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,220077,-9.283141840885776,spot_peer,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,220077,55.439870741106,baseline,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,220077,56.55971758542251,spot_baseline,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,221727,81.69380498662842,baseline,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,221727,84.79969065549501,spot_baseline,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,221727,12.70499217570123,peer,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,221727,0.1451504265625041,relative_legacy,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,221727,10.867035216212273,spot_peer,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,222046,-0.0440253490643015,relative_legacy,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,222046,-22.632329534411188,spot_peer,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,222046,-2.544990476686796,peer,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,222046,37.85116232537298,spot_baseline,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29171,Will a Grok model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.623765+00,222046,4.346184498859941,baseline,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29271 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,182315,-0.0339594664649715,relative_legacy,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,182315,69.59938131099001,spot_baseline,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,182315,1.1718559117288825,peer,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,182315,3.0514548581741545,spot_peer,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,182315,58.380351318878745,baseline,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,185690,4.626633312544238,spot_peer,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,185690,-3.3876599550885866e-05,relative_legacy,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,185690,71.80875839605169,spot_baseline,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,185690,0.0239316833634218,peer,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,185690,0.7010257044542207,baseline,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,185698,-32.19280948873623,spot_baseline,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,185698,-69.52142862784324,spot_peer,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,185698,-4.889642614592242,baseline,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,185698,-18.15836637437808,peer,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,185698,-0.274183399699526,relative_legacy,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,185699,78.24085649273731,spot_baseline,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,185699,4.666998876846425,peer,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,185699,61.58576016930064,baseline,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,185699,0.0166916308758434,relative_legacy,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,185699,9.21240656365552,spot_peer,MWG,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,187708,7.645717976689913,spot_peer,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,187708,35.4847554124361,baseline,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,187708,0.0112181224927067,relative_legacy,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,187708,3.0321951322820384,peer,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,187708,76.04338746701116,spot_baseline,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,188107,55.25410230287789,spot_baseline,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,188107,29.785231578481,baseline,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,188107,-0.0982073452064146,relative_legacy,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,188107,-7.176031689182223,spot_peer,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,188107,-4.616802876139955,peer,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,188389,-5.084419363159391,peer,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,188389,-28.67718033139948,spot_peer,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,188389,25.09615735332188,spot_baseline,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,188389,-0.0787625391619089,relative_legacy,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,188389,4.432368233957223,baseline,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,189585,8.009385330870128,spot_peer,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,189585,74.68709351124907,baseline,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,189585,0.0273656227969213,relative_legacy,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,189585,6.319639776766583,peer,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,189588,-9.7433575708819,peer,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,189588,53.60529002402098,spot_baseline,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,189588,-0.1937798681215581,relative_legacy,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,189588,52.28803788743285,baseline,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,189588,-8.35155468818343,spot_peer,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,189869,0.0963896789646817,relative_legacy,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,189869,13.88853646869342,spot_peer,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,189869,74.05928852990093,baseline,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,189869,10.786620779390905,peer,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,190710,-0.2203816995325125,relative_legacy,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,190710,-11.645858679022474,peer,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,190710,-10.501956555312834,spot_peer,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,190710,50.58909297299573,spot_baseline,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,190710,48.23842527651637,baseline,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,190772,9.21240656365552,spot_peer,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,190772,78.24085649273731,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,190772,0.0316799147720741,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,190772,58.0731752895744,baseline,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,190772,5.67289322369281,peer,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191026,-7.644629961442188,spot_peer,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191026,-0.0116418565666405,relative_legacy,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191026,54.59683691052925,spot_baseline,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191026,4.766370945595902,baseline,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191026,-0.6768710487778835,peer,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191046,-0.0333788679488161,relative_legacy,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191046,0.1988822575833876,peer,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191046,38.87414766350198,baseline,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191046,1.7737099440368416,spot_peer,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191284,36.30902301765356,baseline,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191284,-0.1899604049948944,relative_legacy,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191284,-10.252924259377416,peer,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191284,-11.960947583056932,spot_peer,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191471,73.11832415721999,spot_baseline,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191471,5.560290036659088,spot_peer,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191471,46.68720282432808,baseline,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191471,-0.0042618646738353,relative_legacy,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191471,2.580180741769094,peer,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191935,0.1419948820758826,relative_legacy,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191935,89.53026213333065,spot_baseline,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191935,81.07637598497527,baseline,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191935,14.290548100430977,peer,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191935,17.261203959058193,spot_peer,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191975,30.26988945026411,baseline,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191975,-3.780037790397733,peer,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191975,-5.782911392384331,spot_peer,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191975,-0.0860924841431585,relative_legacy,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,191975,57.208120942442406,spot_baseline,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192049,77.18645315874112,baseline,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192049,11.262715339773123,peer,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192049,13.88853646869342,spot_peer,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192049,0.0995391098769813,relative_legacy,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192418,-19.583481861725453,spot_peer,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192418,35.74281539769374,baseline,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192418,-20.2468398657445,peer,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192418,-0.3390489981366134,relative_legacy,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192472,-0.1094841986249668,relative_legacy,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192472,-2.157614803183507,spot_peer,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192472,-3.611563117663536,peer,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192472,62.29303509201767,spot_baseline,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192472,61.24176588861747,baseline,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192924,67.80719051126377,spot_baseline,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192924,40.66679601224023,baseline,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192924,-0.0347829955772525,relative_legacy,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192924,0.1782460919675236,peer,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,192924,1.7737099440368416,spot_peer,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,193275,67.23238177872094,baseline,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,193275,8.37177141162274,spot_peer,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,193275,0.0011369946183768,relative_legacy,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,193275,4.112289151272948,peer,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,193275,77.06176466562032,spot_baseline,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,195286,0.058715625059695,relative_legacy,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,195286,43.71682555522943,baseline,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,195286,6.579704162838999,peer,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,195286,13.88853646869342,spot_peer,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,204737,24.163220059459405,baseline,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,204737,8.009385330870128,spot_peer,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,204737,0.0128281537263686,relative_legacy,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,204737,2.391405853652252,peer,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,208405,8.009385330870128,spot_peer,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,208405,6.594947925532667,peer,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,208405,74.42799890035026,baseline,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,208405,0.0307603551421151,relative_legacy,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,215725,51.66313899628846,baseline,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,215725,4.360323667029596,peer,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,215725,8.009385330870128,spot_peer,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,215725,0.0176721127521163,relative_legacy,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,216863,67.80719051126377,spot_baseline,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,216863,65.3478321504259,baseline,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,216863,-0.0562012680021685,relative_legacy,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,216863,1.7737099440368416,spot_peer,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,216863,0.2547597002113508,peer,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,218269,75.38125744601776,baseline,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,218269,76.55347463629771,spot_baseline,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,218269,8.009385330870128,spot_peer,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,218269,0.0307135776993868,relative_legacy,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,218269,6.611090957702386,peer,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,218666,80.02341910595136,baseline,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,218666,16.149224016910313,spot_peer,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,218666,87.97057662822883,spot_baseline,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,218666,0.1283372713018991,relative_legacy,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,218666,13.33674427452352,peer,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,218945,70.55011851537866,baseline,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,218945,0.0167329805661802,relative_legacy,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,218945,75.70232465074595,spot_baseline,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,218945,5.489733515031593,peer,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,218945,7.402556769216471,spot_peer,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,219459,5.889754896231815,baseline,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,219459,13.88853646869342,spot_peer,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,219459,0.0116930701522659,relative_legacy,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,219459,84.79969065549501,spot_baseline,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,219459,0.9530480803543574,peer,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,219886,43.741473309560085,baseline,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,219886,-11.694267741622363,peer,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,219886,-11.374865411265615,spot_peer,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,219886,-0.216435712236498,relative_legacy,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,219886,49.36473339752101,spot_baseline,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,220077,42.22330006830476,spot_baseline,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,220077,41.40459536045977,baseline,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,220077,-16.466360199348774,spot_peer,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,220077,-17.903850286741378,peer,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,220077,-0.306106392645226,relative_legacy,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,221727,8.009385330870128,spot_peer,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,221727,73.65052202129955,baseline,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,221727,0.0279657726389402,relative_legacy,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,221727,6.350347608797093,peer,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,222046,-0.0001090555571655,relative_legacy,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,222046,7.865826026538908,baseline,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,222046,67.80719051126377,spot_baseline,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,222046,1.7737099440368416,spot_peer,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29172,Will a Llama model be ranked #1 overall on the LMSYS Chatbot Arena Leaderboard at the end of the 4th Quarter of 2024?,2024-10-28 13:07:11.905846+00,222046,0.1960561613648067,peer,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,0.4308,2024-10-29 14:30:00+00,29272 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,182315,-1.058725320850046,peer,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,182315,-2.052682500255808,spot_peer,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,182315,-0.0282623266115258,relative_legacy,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,182315,-15.480416849884229,baseline,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,182315,-18.44245711374277,spot_baseline,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,185690,3.5623909730721217,spot_baseline,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,185690,13.648521745358812,spot_peer,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,185690,0.0025832457789638,baseline,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,185690,0.119218742817858,peer,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,185690,0.0013143240298929,relative_legacy,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,185698,6.904371013382549,spot_peer,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,185698,-4.64070435232038,baseline,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,185698,0.2108549257030765,peer,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,185698,-0.0014056735162014,relative_legacy,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,185698,-5.889368905356857,spot_baseline,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,187708,-32.553934843974126,spot_baseline,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,187708,-6.026721571649053,peer,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,187708,-16.654328263662133,baseline,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,187708,-12.121699708448492,spot_peer,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,187708,-0.0913042276365783,relative_legacy,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,188107,-3.742195155515706,baseline,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,188107,3.5908586713321897,peer,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,188107,0.0415666000606289,relative_legacy,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,188107,6.1870079955494255,spot_peer,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,188107,-6.894735371749141,spot_baseline,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,188389,9.761079662642205,spot_baseline,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,188389,1.7586300470128913,baseline,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,188389,18.07149602747797,spot_peer,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,188389,0.0426681261713378,relative_legacy,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,188389,3.292332820875638,peer,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,189585,1.235783004633319,peer,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,189585,-0.0009171883382392,relative_legacy,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,189585,-14.906088556602576,baseline,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,189585,0.2606997198090464,spot_peer,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,189585,-15.200309344505014,spot_baseline,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,189588,31.034012061215048,spot_baseline,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,189588,28.721625161056444,baseline,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,189588,33.25045364515321,spot_peer,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,189588,0.4347444328888158,relative_legacy,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,189588,32.760736934699466,peer,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,189869,-9.704062954789269,peer,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,189869,-28.115936215498607,baseline,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,189869,-0.1494538841518448,relative_legacy,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,189869,-11.864024538936292,spot_peer,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,190710,-12.658049656514322,spot_baseline,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,190710,2.89633962879505,peer,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,190710,0.0232161327500166,relative_legacy,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,190710,-12.081272714754506,baseline,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,190710,2.0746880940551766,spot_peer,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,190772,9.026944696017104,spot_peer,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,190772,0.0872674388970118,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,190772,7.189180044686266,peer,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,190772,-2.1654941701000348,baseline,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,190772,-2.914634565951651,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191026,-41.50374992788438,spot_baseline,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191026,-0.0232712048029596,relative_legacy,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191026,-3.6236406936472014,baseline,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191026,-18.507695832509807,spot_peer,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191026,-1.5701882458195044,peer,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191046,6.904371013382549,spot_peer,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191046,4.231264263329849,peer,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191046,-3.390734399142984,baseline,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191046,0.0490481399563008,relative_legacy,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191046,-5.889368905356857,spot_baseline,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191284,13.750352374993504,spot_baseline,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191284,10.284958105725156,baseline,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191284,0.2125327365749186,relative_legacy,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191284,16.212583998633338,peer,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191284,20.917977193854032,spot_peer,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191471,-7.688539460730666,baseline,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191471,1.9298446223076329,peer,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191471,2.523234234977085,spot_peer,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191471,0.0150777986486913,relative_legacy,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191471,-12.029423371771196,spot_baseline,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191935,-12.029423371771196,spot_baseline,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191935,-10.77123424382473,baseline,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191935,0.0273442888541463,relative_legacy,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191935,2.523234234977085,spot_peer,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191935,3.11188207128448,peer,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191975,-0.0343771728634203,relative_legacy,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191975,-13.950337919169318,baseline,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191975,-2.75695783432959,spot_peer,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191975,-1.591663866822545,peer,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,191975,-19.42948151614889,spot_baseline,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192049,-15.200309344505014,spot_baseline,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192049,1.089310102396441,peer,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192049,-13.856479058562584,baseline,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192049,-0.0010480575761256,relative_legacy,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192049,0.2606997198090464,spot_peer,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192418,-20.55069859370047,baseline,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192418,-3.380459443881707,peer,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192418,-0.0629937972877596,relative_legacy,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192418,-4.4192505527983,spot_peer,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192418,-21.75914350726266,spot_baseline,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192472,-8.926733809708741,spot_baseline,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192472,5.7769250548520485,peer,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192472,-8.791053540227235,baseline,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192472,4.737108301840983,spot_peer,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192472,0.0610573762788751,relative_legacy,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192924,0.0685902925141345,relative_legacy,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192924,9.026944696017104,spot_peer,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192924,5.708850868741703,peer,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192924,-1.750322496147628,baseline,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,192924,-2.914634565951651,spot_baseline,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,193275,-55.21563556379148,spot_baseline,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,193275,-28.291590550278308,spot_peer,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,193275,-50.847384313037416,baseline,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,193275,-0.3690330344910796,relative_legacy,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,193275,-25.497021867911094,peer,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,195286,0.2876470043271179,peer,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,195286,0.2606997198090464,spot_peer,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,195286,-0.0033909523815616,relative_legacy,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,195286,-7.905770528028041,baseline,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,195286,-15.200309344505014,spot_baseline,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,204737,0.0,spot_baseline,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,204737,0.0,baseline,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,204737,11.106635155173535,spot_peer,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,204737,3.6132388541520286,peer,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,204737,0.0458370797211237,relative_legacy,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,208405,-24.68163841224141,baseline,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,208405,-6.841507639141824,spot_peer,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,208405,-5.99645707035065,peer,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,208405,-0.0999860047243035,relative_legacy,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,208405,-25.153876699596427,spot_baseline,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,215725,-32.19280948873623,spot_baseline,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,215725,-0.1187870126503699,relative_legacy,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,215725,-11.864024538936292,spot_peer,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,215725,-7.709651902519863,peer,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,215725,-21.74451738865488,baseline,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,216863,-10.702207886388091,peer,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,216863,-11.864024538936292,spot_peer,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,216863,-0.1647358064593471,relative_legacy,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,216863,-31.0354855604038,baseline,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,216863,-32.19280948873623,spot_baseline,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,218269,-32.19280948873623,spot_baseline,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,218269,-10.955128657259015,peer,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,218269,-11.864024538936292,spot_peer,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,218269,-31.707995926366884,baseline,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,218269,-0.1680670955888289,relative_legacy,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,218666,5.628216984293188,peer,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,218666,-7.583179335411454,baseline,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,218666,0.0617597438470714,relative_legacy,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,218666,5.174226480813888,spot_peer,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,218666,-8.314123530024586,spot_baseline,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,218945,-15.200309344505014,spot_baseline,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,218945,-14.172694941623154,baseline,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,218945,0.2606997198090464,spot_peer,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,218945,-0.0010480575761256,relative_legacy,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,218945,1.1000577951610264,peer,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,219459,0.2606997198090464,spot_peer,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,219459,-1.0557995386584995,baseline,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,219459,0.0542148404581854,peer,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,219459,-0.0003059985634078,relative_legacy,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,219459,-15.200309344505014,spot_baseline,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,219886,-46.05284837299238,spot_baseline,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,219886,-21.753631616217703,spot_peer,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,219886,-0.2787809941345398,relative_legacy,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,219886,-41.45653232526723,baseline,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,219886,-18.98577332195432,peer,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,220077,-0.0327160263138341,relative_legacy,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,220077,-2.052682500255808,spot_peer,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,220077,-1.0775371278542645,peer,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,220077,-18.09224222181985,baseline,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,220077,-18.44245711374277,spot_baseline,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,221727,-8.926733809708741,spot_baseline,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,221727,4.737108301840983,spot_peer,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,221727,5.558952426283933,peer,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,221727,-8.596912615058015,baseline,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,221727,0.0594064971802683,relative_legacy,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,222046,-11.864024538936292,spot_peer,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,222046,-0.0202127716237695,relative_legacy,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,222046,-1.342694421714648,peer,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,222046,-3.7713988361229847,baseline,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29173,Will Democratic Congresswoman Yadira Caraveo be re-elected in Colorado's 8th Congressional District in the 2024 election?,2024-10-28 13:07:11.910675+00,222046,-32.19280948873623,spot_baseline,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29273 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,182315,-145.90208943942292,baseline,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,182315,-85.77356747852951,spot_peer,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,182315,-173.6965594166206,spot_baseline,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,182315,-77.40436809746703,peer,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,182315,-0.9381338168837826,relative_legacy,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,185690,1.8177403959151757,spot_peer,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,185690,-51.04570643575263,spot_baseline,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,185690,0.0095175412137403,relative_legacy,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,185690,0.161470082426774,baseline,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,185690,0.5111207605368825,peer,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,185698,-17.0567962144556,peer,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,185698,-118.44245711374272,spot_baseline,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,185698,-0.180850657470167,relative_legacy,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,185698,-41.038207990686175,baseline,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,185698,-46.31375967032468,spot_peer,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,187708,-347.3931188332412,spot_baseline,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,187708,-180.43790885555927,baseline,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,187708,-1.4215950796021004,relative_legacy,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,187708,-109.53342462305956,peer,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,187708,-209.8192503484744,spot_peer,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,188389,-132.19280948873623,spot_baseline,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,188389,-56.13359637743692,spot_peer,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,188389,-52.2504547887165,baseline,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,188389,-21.94826781887557,peer,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,188389,-0.2312119457573797,relative_legacy,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,189585,-73.69655941662063,spot_baseline,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,189585,-0.1735926060655986,relative_legacy,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,189585,-22.27972868300634,peer,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,189585,-14.358403420838178,spot_peer,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,189585,-72.2777769554221,baseline,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,189588,36.55779731780319,baseline,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,189588,56.69924816168426,peer,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,189588,0.9118297380253652,relative_legacy,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,189588,65.30358506382359,spot_peer,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,189869,0.9521133202922551,relative_legacy,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,189869,72.93895189178279,spot_peer,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,189869,42.39578838893609,baseline,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,189869,58.97697012989602,peer,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,190710,-24.52406785603132,peer,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,190710,-78.58751946471526,spot_baseline,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,190710,-75.07195426683094,baseline,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,190710,-0.2040968130387326,relative_legacy,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,190710,-17.85129056318111,spot_peer,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,190772,55.32511814365024,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,190772,38.57714526187035,peer,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,190772,0.6739304824413775,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,190772,23.87868595871165,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,190772,17.75535621133591,baseline,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191026,-86.24964762500649,spot_baseline,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191026,-23.32321195916365,spot_peer,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191026,-2.000787408687545,peer,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191026,-7.530948983944445,baseline,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191026,-0.010960817753057,relative_legacy,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191046,-132.19280948873623,spot_baseline,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191046,-76.67862648454035,baseline,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191046,-33.313825743167946,peer,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191046,-56.13359637743692,spot_peer,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191046,-0.3393083275386629,relative_legacy,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191284,-73.69655941662063,spot_baseline,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191284,-0.0516049352290702,relative_legacy,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191284,-13.792141223493372,peer,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191284,-55.123117701099964,baseline,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191284,-14.358403420838178,spot_peer,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191471,-31.08833676147496,peer,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191471,-46.31375967032468,spot_peer,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191471,-0.2949545755579632,relative_legacy,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191471,-75.77557323800703,baseline,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191471,-118.44245711374272,spot_baseline,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191935,7.540117566348721,baseline,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191935,8.406426478847456,spot_baseline,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191935,0.6090043075244214,relative_legacy,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191935,34.16958253881874,peer,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191935,44.27557865267353,spot_peer,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191975,-79.29854205574287,peer,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191975,-207.9071570991199,spot_baseline,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191975,-0.9618621712690631,relative_legacy,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191975,-110.2051219386031,spot_peer,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,191975,-144.7274798526239,baseline,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192049,-0.1346387312340758,relative_legacy,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192049,-19.649806147838923,peer,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192049,-73.69655941662063,spot_baseline,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192049,-14.358403420838178,spot_peer,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192049,-67.28305622634993,baseline,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192418,-12.029423371771175,spot_baseline,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192418,-11.363346363136468,baseline,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192418,21.376711900042025,peer,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192418,0.4299577621593021,relative_legacy,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192418,29.681282955270756,spot_peer,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192472,57.56643317663144,peer,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192472,0.922179251297603,relative_legacy,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192472,37.392040931759546,baseline,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192472,65.30358506382359,spot_peer,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192924,15.281567680254415,spot_peer,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192924,8.41374242836467,peer,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192924,0.2407430896382592,relative_legacy,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192924,-32.19280948873623,spot_baseline,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,192924,-19.34715319873376,baseline,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,193275,0.327238086049875,relative_legacy,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,193275,-23.107466443624883,spot_baseline,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,193275,21.769880321124724,spot_peer,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,193275,13.877586048471152,peer,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,193275,-21.473351622861724,baseline,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,195286,33.82139639698864,peer,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,195286,37.85116232537298,spot_baseline,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,195286,19.527156993739386,baseline,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,195286,0.5754671035002097,relative_legacy,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,195286,65.30358506382359,spot_peer,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,204737,-4.232272531873046,peer,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,204737,0.0,relative_legacy,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,204737,-73.69655941662063,spot_baseline,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,204737,-23.61083351938333,baseline,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,204737,-14.358403420838178,spot_peer,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,208405,40.407380818960405,peer,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,208405,14.109146139747144,baseline,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,208405,13.750352374993504,spot_baseline,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,208405,48.09195209852768,spot_peer,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,208405,0.6883195570302241,relative_legacy,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,215725,42.714003303735545,peer,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,215725,0.7277534164590974,relative_legacy,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,215725,25.631215437155976,baseline,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,215725,65.30358506382359,spot_peer,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,215725,37.85116232537298,spot_baseline,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,216863,-73.69655941662063,spot_baseline,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,216863,-71.07458229842177,baseline,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,216863,-21.48339718365609,peer,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,216863,-14.358403420838178,spot_peer,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,216863,-0.162105591129301,relative_legacy,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,218269,-0.1767691967973845,relative_legacy,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,218269,-14.358403420838178,spot_peer,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,218269,-72.60454838168697,baseline,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,218269,-73.69655941662063,spot_baseline,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,218269,-22.62128170353128,peer,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,218666,-94.98655593418935,baseline,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,218666,-38.75704249417604,peer,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,218666,-100.0,spot_baseline,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,218666,-33.14304866627592,spot_peer,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,218666,-0.4023586515288021,relative_legacy,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,218945,54.890028060225895,peer,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,218945,0.8946688613372954,relative_legacy,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,218945,37.85116232537298,spot_baseline,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,218945,65.30358506382359,spot_peer,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,218945,35.30905061468802,baseline,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,219459,44.92153878134699,spot_peer,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,219459,9.310940439148146,spot_baseline,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,219459,0.6467612291274318,baseline,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,219459,3.128917468064793,peer,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,219459,0.057659087161365,relative_legacy,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,219886,16.65559436472583,peer,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,219886,0.3644213452036733,relative_legacy,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,219886,24.65083383095584,spot_peer,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,219886,-18.245747039942717,baseline,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,219886,-19.07337431789121,spot_baseline,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,220077,47.30587800237711,peer,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,220077,23.87868595871165,spot_baseline,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,220077,23.435756674167184,baseline,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,220077,55.32511814365024,spot_peer,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,220077,0.7833577219413788,relative_legacy,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,221727,-32.19280948873623,spot_baseline,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,221727,15.281567680254415,spot_peer,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,221727,-30.38093185140636,baseline,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,221727,8.010782938349884,peer,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,221727,0.2440036911097505,relative_legacy,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,222046,-3.808328098760094,baseline,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,222046,0.049097888492639,relative_legacy,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,222046,-32.19280948873623,spot_baseline,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,222046,1.881564786793436,peer,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29174,Will Mayor Brandon Scott receive 70% of the vote in the 2024 Baltimore mayoral race?,2024-10-28 13:07:11.914841+00,222046,15.281567680254415,spot_peer,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29274 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,182315,0.0677161196911505,relative_legacy,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,182315,42.22330006830478,spot_baseline,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,182315,9.981606158956293,spot_peer,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,182315,9.730827403031276,peer,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,182315,35.49614186447483,baseline,RyansAGI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,185690,0.2753260646062899,baseline,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,185690,-0.0278068398411818,peer,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,185690,10.433665981473554,spot_baseline,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,185690,-0.0011238851322431,relative_legacy,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,185690,-12.701374233431316,spot_peer,annabot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,185698,34.477348213301184,spot_peer,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,185698,0.1590067290278651,relative_legacy,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,185698,27.305894368914547,baseline,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,185698,13.10499814556078,peer,RonanMcGovern,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,187708,3.4515510847655726,peer,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,187708,19.281562544402263,baseline,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,187708,6.067021318887545,spot_peer,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,187708,0.0013043238730152,relative_legacy,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,187708,36.737106564852944,spot_baseline,twsummerbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,188107,-15.123631319774818,spot_peer,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,188107,7.0389327891398015,spot_baseline,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,188107,-0.1608900049835323,relative_legacy,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,188107,-8.006919148812711,peer,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,188107,3.850147794587382,baseline,Cassie,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,188389,-3.931737059220504,peer,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,188389,5.743891541999466,baseline,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,188389,14.404636961670684,spot_baseline,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,188389,-9.86795197268675,spot_peer,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,188389,-0.0877470584054876,relative_legacy,Panshul42,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,189585,-10.334806180888789,spot_peer,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,189585,13.750352374993504,spot_baseline,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,189585,-0.1842731063176734,relative_legacy,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,189585,13.485527896165715,baseline,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,189585,-8.380587438197404,peer,mf-bot-1,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,189588,23.180822523763016,peer,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,189588,0.2509988975473021,relative_legacy,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,189588,56.95837891021415,baseline,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,189588,21.5929070268594,spot_peer,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,189869,-0.1716492991620817,relative_legacy,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,189869,-10.334806180888789,spot_peer,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,189869,13.750352374993504,spot_baseline,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,189869,12.009315562987824,baseline,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,189869,-7.699682959119874,peer,VeritasAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,190710,36.18216451122388,baseline,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,190710,8.44001796904973,peer,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,190710,6.861937828554795,spot_peer,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,190710,37.85116232537298,spot_baseline,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,190710,0.0494088201033749,relative_legacy,Bot_Pepa,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,190772,21.5929070268594,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,190772,58.496250072115615,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,190772,0.1618396236529095,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,190772,16.995868479220736,peer,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,190772,43.53594053806988,baseline,Jay_Bailey_Bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191026,-0.2472257919943959,peer,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191026,2.19155032565801,baseline,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191026,25.09615735332188,spot_baseline,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191026,-0.0093609627366828,relative_legacy,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191026,-2.239190133333039,spot_peer,manticAI,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191046,0.0076463927190884,relative_legacy,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191046,37.85116232537298,spot_baseline,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191046,6.861937828554795,spot_peer,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191046,21.84820653482268,baseline,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191046,4.3509989180262165,peer,archipelago,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191284,5.977865633045864,peer,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191284,28.311539505257468,baseline,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191284,6.861937828554795,spot_peer,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191284,0.0086175648125234,relative_legacy,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191284,37.85116232537298,spot_baseline,000_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191471,-0.006132421137472,relative_legacy,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191471,35.61438102252753,spot_baseline,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191471,5.265918626323074,spot_peer,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191471,22.80148863326934,baseline,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191471,3.898620309781816,peer,HSeldon,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191935,9.975305213930785,baseline,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191935,-9.561493546906089,peer,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191935,-12.223688102614906,spot_peer,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191935,-0.1979687021005022,relative_legacy,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191935,11.103131238874395,spot_baseline,pgodzinai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191975,35.38878362849074,spot_baseline,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191975,-0.0041416564265462,relative_legacy,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191975,5.104947246421904,spot_peer,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191975,14.29380256529519,baseline,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,191975,2.0948113191257693,peer,jkraybill_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192049,0.3537066358239858,peer,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192049,24.0559786081365,baseline,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192049,-1.377752667250445,spot_peer,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192049,-0.0610144702779905,relative_legacy,gnosis-ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192418,-0.1062836608130417,relative_legacy,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192418,21.412480535284736,spot_baseline,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192418,-4.867618280923521,spot_peer,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192418,20.230376286076183,baseline,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192418,-2.898647475112948,peer,InstitutPelFutur,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192472,5.596934219120668,baseline,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192472,-14.168964006119626,peer,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192472,-0.2637877566968526,relative_legacy,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192472,5.658352836636751,spot_baseline,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192472,-16.10872186555504,spot_peer,bestworldbot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192924,-0.1367626374781302,relative_legacy,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192924,13.750352374993504,spot_baseline,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192924,-10.334806180888789,spot_peer,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192924,8.269949665121064,baseline,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,192924,-5.82679195945847,peer,acm_bot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,193275,-21.81981743593545,baseline,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,193275,-33.36785932726119,peer,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,193275,-0.5272778674389369,relative_legacy,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,193275,-23.107466443624883,spot_baseline,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,193275,-36.63410800000679,spot_peer,histerio,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,195286,37.85116232537298,spot_baseline,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,195286,6.861937828554795,spot_peer,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,195286,0.0070581465772061,relative_legacy,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,195286,19.54918998543532,baseline,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,195286,3.794367208197516,peer,Unwrapped80T,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,204737,18.86432941915753,baseline,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,204737,6.857782767616275,peer,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,204737,0.0706186681892535,relative_legacy,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,204737,21.5929070268594,spot_peer,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,208405,6.861937828554795,spot_peer,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,208405,0.0501000640611644,relative_legacy,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,208405,37.85116232537298,spot_baseline,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,208405,36.79955269637895,baseline,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,208405,8.609387126063233,peer,mf-bot-4,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,215725,25.651916376676542,baseline,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,215725,5.278872555768873,peer,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,215725,0.0081881825028605,relative_legacy,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,215725,6.861937828554795,spot_peer,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,215725,37.85116232537298,spot_baseline,estr.ai,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,216863,-0.3155494432974686,relative_legacy,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,216863,0.0,spot_baseline,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,216863,-20.146148219569294,spot_peer,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,216863,-17.927691858403797,peer,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,216863,0.0,baseline,tombot61,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,218269,13.549414279160132,baseline,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,218269,-8.353536246705517,peer,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,218269,13.750352374993504,spot_baseline,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,218269,-10.334806180888789,spot_peer,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,218269,-0.1840502699024315,relative_legacy,tombot37,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,218666,-10.334806180888789,spot_peer,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,218666,-0.1733086283035751,relative_legacy,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,218666,13.750352374993504,spot_baseline,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,218666,14.470854624428968,baseline,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,218666,-7.556115199530189,peer,GreeneiBot2,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,218945,-8.94763520324206,peer,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,218945,11.602884427260967,baseline,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,218945,-0.1898650640940094,relative_legacy,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,218945,-11.274914782990374,spot_peer,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,218945,12.432813500220178,spot_baseline,SeidrBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,219459,-0.0064432148255757,relative_legacy,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,219459,-1.377752667250445,spot_peer,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,219459,26.303440583379377,spot_baseline,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,219459,1.8271928475244816,baseline,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,219459,-0.1352274003635813,peer,karamazov,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,219886,61.9541583338744,baseline,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,219886,26.89934629511717,peer,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,219886,0.3027234926003064,relative_legacy,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,219886,64.00655825328928,spot_baseline,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,219886,25.52469850606211,spot_peer,SaraBase,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,220077,-18.10764246849197,spot_peer,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,220077,2.856915219677092,spot_baseline,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,220077,-0.2911406172609539,relative_legacy,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,220077,2.8047330854269115,baseline,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,220077,-16.147590158845304,peer,mmBot,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,221727,8.510036619754313,peer,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,221727,36.46221461730244,baseline,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,221727,0.0494088201033749,relative_legacy,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,221727,6.861937828554795,spot_peer,mf-bot-5,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,222046,48.54268271702416,spot_baseline,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,222046,0.0145357855820338,relative_legacy,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,222046,14.490699667908496,spot_peer,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,222046,5.792645856092414,baseline,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29175,"Will Montana voters approve CI-128, which would add the right to abortion to the state's constitution?",2024-10-28 13:07:11.918941+00,222046,1.6556306254225472,peer,lookahead,True,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29275 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,182315,-123.41017427432476,spot_peer,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,182315,-125.15387669959644,spot_baseline,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,182315,-105.29027306501968,baseline,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,182315,-1.639941721177499,relative_legacy,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,182315,-102.46472892368013,peer,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,185690,0.8371943874800478,baseline,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,185690,72.2466024471091,spot_baseline,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,185690,0.2157999285667002,peer,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,185690,17.44175203921181,spot_peer,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,185690,5.395421626045276e-05,relative_legacy,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,185698,31.96454891890796,spot_peer,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,185698,0.0633850742911901,relative_legacy,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,185698,92.5999418556223,spot_baseline,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,185698,10.435000253734756,peer,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,185698,29.78684290561155,baseline,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,187708,48.12989415475651,spot_baseline,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,187708,25.602952922945367,baseline,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,187708,0.3684197322456575,peer,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,187708,0.233664024415346,spot_peer,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,187708,-0.1285417315199509,relative_legacy,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,188107,19.092146932113916,spot_peer,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,188107,0.0133870486522713,relative_legacy,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,188107,74.55958993096462,spot_baseline,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,188107,41.13603751316796,baseline,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,188107,10.90076267123294,peer,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,188389,83.99595874895317,spot_baseline,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,188389,10.339724018680636,peer,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,188389,33.88768642309904,baseline,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,188389,25.825315621288595,spot_peer,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,188389,0.0414453462546074,relative_legacy,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,189585,14.274081294104818,spot_peer,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,189585,17.416056443503628,peer,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,189585,66.79573809847413,baseline,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,189585,-0.009345260974063,relative_legacy,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,189588,-3.59193867851638,peer,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,189588,-0.297970252428848,relative_legacy,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,189588,37.66524997754417,baseline,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,189588,-7.100559197773282,spot_peer,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,189869,-7.100559197773282,spot_peer,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,189869,33.05899735542344,baseline,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,189869,-3.654976190837743,peer,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,189869,-0.2788869652478469,relative_legacy,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,190710,22.857776173442147,peer,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,190710,73.23727191347818,baseline,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,190710,76.55347463629771,spot_baseline,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,190710,20.514851186973114,spot_peer,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,190710,0.0702659499075325,relative_legacy,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,190772,-0.0387281938946856,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,190772,12.97920665516335,spot_peer,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,190772,65.99245584023782,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,190772,49.15883342457954,baseline,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,190772,11.277683510292915,peer,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191026,33.34237337251918,spot_baseline,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191026,2.911955870155897,baseline,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191026,-0.8531600284384079,peer,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191026,-10.317732793784042,spot_peer,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191026,-0.0347830614429088,relative_legacy,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191046,-0.023867308042809,relative_legacy,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191046,14.274081294104818,spot_peer,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191046,38.8090381484537,baseline,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191046,8.617971020280178,peer,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191284,57.25924803810065,baseline,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191284,76.55347463629771,spot_baseline,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191284,17.03105865749747,peer,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191284,0.0401436439775343,relative_legacy,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191284,20.514851186973114,spot_peer,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191471,-7.100559197773282,spot_peer,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191471,-0.2151341337389013,relative_legacy,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191471,-3.7837564393249785,peer,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191471,37.85116232537298,spot_baseline,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191471,24.25670579912329,baseline,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191935,71.92140269293864,baseline,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191935,79.90873060740036,spot_baseline,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191935,23.592972920610933,peer,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191935,0.0913792887725604,relative_legacy,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191935,22.908939939177102,spot_peer,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191975,30.94819618435565,spot_peer,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191975,0.0578724197707297,relative_legacy,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191975,31.892118687671136,baseline,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191975,10.654446265684731,peer,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,191975,91.1755487214021,spot_baseline,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192049,70.14521007615711,baseline,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192049,21.845405746439,peer,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192049,20.514851186973114,spot_peer,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192049,0.0624262873958927,relative_legacy,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192418,-70.82518359253159,spot_peer,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192418,-64.8908796973231,peer,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192418,-1.140715190729196,relative_legacy,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192418,-48.63743735313148,baseline,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192472,-7.441815763802316,peer,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192472,33.033832281010746,baseline,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192472,33.34237337251918,spot_baseline,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192472,-0.3510958464183636,relative_legacy,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192472,-10.317732793784042,spot_peer,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192924,14.274081294104818,spot_peer,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192924,40.82073764956113,baseline,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192924,-0.023867308042809,relative_legacy,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192924,67.80719051126377,spot_baseline,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,192924,9.203628679097308,peer,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,193275,18.29947101352473,peer,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,193275,69.95516325230894,spot_baseline,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,193275,67.0087287639696,baseline,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,193275,15.80673258022621,spot_peer,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,193275,0.0070180499160101,relative_legacy,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,195286,14.274081294104818,spot_peer,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,195286,-0.0286262632823466,relative_legacy,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,195286,7.290611748637528,peer,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,195286,34.67056533672623,baseline,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,204737,86.39384504239716,spot_baseline,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,204737,28.03871301564116,baseline,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,204737,8.745472854707694,peer,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,204737,27.53628868970452,spot_peer,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,204737,0.0364547984757244,relative_legacy,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,208405,7.630410000531312,spot_peer,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,208405,-0.1065702894084654,relative_legacy,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,208405,56.51648998561472,baseline,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,208405,10.186534001523963,peer,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,215725,15.074440260929345,peer,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,215725,52.0067889278801,baseline,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,215725,0.0330183438032435,relative_legacy,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,215725,20.514851186973114,spot_peer,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,216863,0.5282026415804221,spot_peer,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,216863,46.8334204730824,baseline,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,216863,48.54268271702416,spot_baseline,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,216863,3.4366067421527298,peer,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,216863,-0.1990622066904269,relative_legacy,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,218269,10.62480879151746,peer,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,218269,-0.1031827292319242,relative_legacy,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,218269,57.65309209505795,baseline,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,218269,58.496250072115615,spot_baseline,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,218269,7.630410000531312,spot_peer,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,218666,20.272351248043503,spot_peer,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,218666,76.2136169901112,spot_baseline,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,218666,0.0555471419902167,relative_legacy,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,218666,72.9534772331249,baseline,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,218666,21.97336445275234,peer,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,218945,-51.45731728297583,spot_baseline,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,218945,-48.046044983713685,baseline,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,218945,-64.08158852759946,peer,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,218945,-1.1285763586117938,relative_legacy,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,218945,-70.82518359253159,spot_peer,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,219459,0.0082288347236928,relative_legacy,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,219459,27.53628868970452,spot_peer,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,219459,6.00173505031578,baseline,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,219459,1.9398800770789748,peer,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,219459,86.39384504239716,spot_baseline,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,219886,-27.254205596844525,baseline,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,219886,-27.788376218134108,spot_baseline,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,219886,-50.87991292690757,peer,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,219886,-0.9498744201558292,relative_legacy,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,219886,-53.93659265701072,spot_peer,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,220077,12.97920665516335,spot_peer,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,220077,-0.0300019731407491,relative_legacy,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,220077,15.909037885403198,peer,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,220077,64.80439050631806,baseline,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,220077,65.99245584023782,spot_baseline,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,221727,22.97668878871896,peer,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,221727,73.7378860543473,baseline,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,221727,0.070779330936575,relative_legacy,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,221727,20.514851186973114,spot_peer,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,222046,-0.1661008720082631,relative_legacy,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,222046,-80.04996463411703,spot_peer,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,222046,-64.38561897747249,spot_baseline,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,222046,-7.75317917933317,baseline,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29176,"Before November 5, 2024, will Kalshi ever show Donald Trump with a 70% chance of winning?",2024-10-28 13:07:11.923052+00,222046,-9.570865461825711,peer,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29276 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,182315,87.97057662822883,spot_baseline,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,182315,0.0221289963648702,relative_legacy,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,182315,7.199152772265869,peer,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,182315,8.01244412373661,spot_peer,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,182315,74.05329592621881,baseline,RyansAGI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,185690,-0.0018095176736611,relative_legacy,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,185690,0.7776194730582384,baseline,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,185690,-0.0721543191242141,peer,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,185690,-13.207238112270575,spot_peer,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,185690,58.20742213963295,spot_baseline,annabot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,185698,23.890185567512223,baseline,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,185698,-0.0253218856654519,relative_legacy,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,185698,-0.1232158571597599,peer,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,185698,-0.1273945623035727,spot_peer,RonanMcGovern,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,187708,60.026975350900464,spot_baseline,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,187708,-11.909985128908309,spot_peer,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,187708,32.272594984350825,baseline,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,187708,-6.480627144092493,peer,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,187708,-0.1326751760404763,relative_legacy,twsummerbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,188107,50.84797385682219,baseline,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,188107,91.07326619029126,spot_baseline,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,188107,10.224510946464267,spot_peer,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,188107,0.0354058351925457,relative_legacy,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,188107,5.68696532667189,peer,Cassie,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,188389,97.3794929652606,spot_baseline,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,188389,39.60524674934563,baseline,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,188389,0.0515755912387148,relative_legacy,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,188389,14.72054406433567,spot_peer,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,188389,5.90748691450445,peer,Panshul42,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,189585,6.546245516097054,peer,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,189585,5.751756575519712,spot_peer,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,189585,-0.004155275497972,relative_legacy,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,189585,83.1625079265824,baseline,mf-bot-1,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,189588,90.42969344749078,baseline,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,189588,12.002377391821584,peer,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,189588,0.0719602270908532,relative_legacy,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,189588,11.312956477605216,spot_peer,mf-bot-3,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,189869,10.478559724791866,peer,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,189869,11.312956477605216,spot_peer,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,189869,80.87731354130082,baseline,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,189869,0.0633622046277198,relative_legacy,VeritasAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,190710,4.602502799712558,spot_peer,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,190710,83.18772411916731,spot_baseline,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,190710,79.64938620637442,baseline,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,190710,5.259938351517624,peer,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,190710,-0.0195007282442299,relative_legacy,Bot_Pepa,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,190772,0.9352866878411592,peer,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,190772,-0.0527857257966144,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,190772,1.0756266704818245,spot_peer,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,190772,58.33223017319784,baseline,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,190772,78.24085649273731,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191026,-0.0004666561488778,relative_legacy,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191026,5.178734799004297,spot_peer,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191026,83.99595874895317,spot_baseline,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191026,0.5404966749310365,peer,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191026,9.18505977004448,baseline,manticAI,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191046,39.17823588978654,baseline,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191046,-6.363069949136869,spot_peer,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191046,-0.097801520138304,relative_legacy,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191046,-3.729359544563725,peer,archipelago,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191284,0.0543797101105636,relative_legacy,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191284,11.312956477605216,spot_peer,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191284,8.657468462184946,peer,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191284,69.26106494270469,baseline,000_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191471,81.55754288625727,spot_baseline,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191471,2.204653245160074,peer,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191471,52.304678132886,baseline,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191471,-0.0218024109259617,relative_legacy,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191471,3.4402628307365464,spot_peer,HSeldon,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191935,0.0517882736090901,relative_legacy,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191935,82.09909615687486,baseline,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191935,10.224510946464267,spot_peer,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191935,9.93315657845441,peer,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191935,91.07326619029126,spot_baseline,pgodzinai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191975,95.3575662908648,spot_baseline,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191975,64.97297876262333,baseline,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191975,13.27900864000338,spot_peer,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191975,9.11155859380814,peer,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,191975,0.0684614088026807,relative_legacy,jkraybill_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192049,0.0668207013001939,relative_legacy,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192049,11.312956477605216,spot_peer,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192049,84.98303504388187,baseline,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192049,11.200463508904068,peer,gnosis-ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192418,-35.953225972748626,spot_peer,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192418,26.303440583379377,spot_baseline,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192418,-33.6045141447858,peer,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192418,-0.5571264855967675,relative_legacy,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192418,24.86642510922352,baseline,InstitutPelFutur,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192459,-29.011031557944364,peer,biak_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192459,32.19280948873624,spot_baseline,biak_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192459,29.825917392493142,baseline,biak_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192459,-0.4916974490582177,relative_legacy,biak_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192459,-31.754392250665223,spot_peer,biak_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192472,-26.953080295138783,peer,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192472,-27.720261754899155,spot_peer,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192472,37.54292999656217,baseline,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192472,-0.4661954031430857,relative_legacy,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192924,-0.1273945623035727,spot_peer,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192924,-0.0494625656889753,relative_legacy,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192924,-0.104534277694157,peer,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,192924,46.12369401314642,baseline,acm_bot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,193275,-2.719530768157515,peer,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,193275,-3.57269273205946,spot_peer,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,193275,71.72102990195957,spot_baseline,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,193275,69.37245212746743,baseline,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,193275,-0.1306622614402973,relative_legacy,histerio,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,195286,0.0007849446529368,relative_legacy,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,195286,5.751756575519712,spot_peer,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,195286,44.9340698385238,baseline,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,195286,3.0316794783384937,peer,Unwrapped80T,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,204737,5.751756575519712,spot_peer,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,204737,84.79969065549501,spot_baseline,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,204737,0.000412234420458,relative_legacy,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,204737,1.809696631420844,peer,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,204737,27.913099455573395,baseline,SynapseSeer,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,208405,6.644202502504037,peer,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,208405,5.751756575519712,spot_peer,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,208405,-0.0017235459472594,relative_legacy,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,208405,82.67203319967078,baseline,mf-bot-4,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,215725,65.00095071552317,baseline,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,215725,9.210889667741414,peer,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,215725,13.45589113046896,spot_peer,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,215725,0.0700391983452171,relative_legacy,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,215725,95.60566524124027,spot_baseline,estr.ai,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,216863,84.79969065549501,spot_baseline,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,216863,6.414139308690723,peer,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,216863,5.751756575519712,spot_peer,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,216863,-0.0040692601833024,relative_legacy,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,216863,81.83297587761258,baseline,tombot61,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,218269,83.5939029957699,baseline,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,218269,84.79969065549501,spot_baseline,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,218269,-0.0030527700009248,relative_legacy,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,218269,5.751756575519712,spot_peer,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,218269,6.66965990656262,peer,tombot37,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,218666,85.43946777531006,spot_baseline,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,218666,6.925568094433837,peer,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,218666,6.207886559643049,spot_peer,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,218666,0.0016210518008764,relative_legacy,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,218666,83.50569861081581,baseline,GreeneiBot2,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,218945,-27.720261754899155,spot_peer,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,218945,-0.4427435081934917,relative_legacy,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,218945,35.35770407953978,baseline,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,218945,-25.41913765360798,peer,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,218945,37.85116232537298,spot_baseline,SeidrBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,219459,11.312956477605216,spot_peer,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,219459,6.43322182358306,baseline,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,219459,0.0055108132514663,relative_legacy,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,219459,92.5999418556223,spot_baseline,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,219459,0.7623127793421255,peer,karamazov,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,219886,53.16684113151503,spot_baseline,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,219886,-16.80092732683612,spot_peer,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,219886,52.63612117358226,baseline,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,219886,-15.909288822558592,peer,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,219886,-0.3145674507692324,relative_legacy,SaraBase,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,220077,6.8883111547113165,spot_peer,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,220077,7.709108165410958,peer,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,220077,0.0115040302828454,relative_legacy,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,220077,86.39384504239716,spot_baseline,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,220077,84.86427965916332,baseline,mmBot,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,221727,74.04319516527657,baseline,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,221727,-0.1273945623035727,spot_peer,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,221727,-0.0805270148004314,relative_legacy,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,221727,0.8891576929099738,peer,mf-bot-5,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,222046,-13.00131783757276,spot_peer,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,222046,7.093742805999894,baseline,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,222046,-0.0314855098249184,relative_legacy,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,222046,-1.6037495914816782,peer,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29177,"Will country music singer/songwriter Riley Green endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-28 13:07:12.210187+00,222046,58.496250072115615,spot_baseline,lookahead,True,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,2024-10-29 14:30:00+00,29277 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,182315,-0.0187454289123025,relative_legacy,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,182315,45.4892982757624,baseline,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,182315,-0.4332146785267856,peer,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,182315,54.59683691052925,spot_baseline,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,182315,4.518551506729293,spot_peer,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,185690,5.221832756406846,spot_peer,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,185690,-0.0030774621144501,relative_legacy,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,185690,55.12104181316059,baseline,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,185690,1.3558120549137318,peer,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,185690,55.58161550616397,spot_baseline,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,185698,67.80719051126377,spot_baseline,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,185698,21.001683741598963,baseline,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,185698,3.189909769141932,peer,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,185698,0.0467657940057104,relative_legacy,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,185698,13.952747203294985,spot_peer,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,185699,0.0867804838695419,relative_legacy,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,185699,16.49683456109084,spot_peer,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,185699,71.36958148433591,spot_baseline,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,185699,6.750750602290357,peer,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,185699,41.64393750428251,baseline,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,187708,0.1174750119820127,relative_legacy,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,187708,39.48699611335388,baseline,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,187708,79.90873060740036,spot_baseline,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,187708,8.82072083514585,peer,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,187708,22.59508191645823,spot_peer,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,188107,-0.1078832001343625,relative_legacy,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,188107,-12.864299284476717,spot_peer,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,188107,-7.808436858274856,peer,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,188107,13.479328283216228,baseline,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,188107,30.25627700204313,spot_baseline,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,188389,-4.643827793134045,peer,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,188389,7.263847609252269,baseline,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,188389,27.85795504584233,spot_baseline,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,188389,-0.0619607545106213,relative_legacy,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,188389,-14.57706484412915,spot_peer,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,189585,0.194967357132031,spot_peer,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,189585,45.85609061561468,baseline,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,189585,-4.167140143397378,peer,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,189585,-0.0775102047393601,relative_legacy,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,189588,2.6491613193824453,peer,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,189588,55.09234116211319,baseline,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,189588,0.0162274208269315,relative_legacy,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,189588,7.303323813363412,spot_peer,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,189869,31.658531250284103,spot_peer,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,189869,0.2832643654357503,relative_legacy,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,189869,73.70547586630845,baseline,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,189869,21.351071779648034,peer,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,190710,62.29303509201767,spot_baseline,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,190710,5.320861354745807,peer,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,190710,58.97220833575446,baseline,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,190710,10.014804064244291,spot_peer,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,190710,0.0528421832261189,relative_legacy,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,190772,22.59508191645823,spot_peer,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,190772,0.1672859644522411,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,190772,79.90873060740036,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,190772,58.07582787286203,baseline,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,190772,12.79668717716122,peer,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191026,-12.029423371771196,spot_baseline,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191026,-0.0891633470933998,relative_legacy,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191026,-6.441269618441811,peer,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191026,-1.727819372821363,baseline,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191026,-43.06270157938002,spot_peer,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191046,-7.440399470827177,spot_peer,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191046,-0.0466669997422417,relative_legacy,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191046,11.842870446522197,baseline,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191046,-3.500973055138471,peer,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191046,37.85116232537298,spot_baseline,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191471,-3.0823459548327765,peer,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191471,30.50333784868572,baseline,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191471,48.54268271702416,spot_baseline,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191471,0.194967357132031,spot_peer,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191471,-0.0508814248918134,relative_legacy,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191935,0.0116649798056598,relative_legacy,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191935,7.303323813363412,spot_peer,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191935,1.7047210512371362,peer,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191935,45.972381039828974,baseline,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191935,58.496250072115615,spot_baseline,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191975,83.61934599410674,spot_baseline,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191975,41.68450500777508,baseline,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191975,10.219802086051788,peer,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191975,25.245023982424524,spot_peer,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,191975,0.1369043972300511,relative_legacy,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192049,0.194967357132031,spot_peer,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192049,43.86718413592011,baseline,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192049,-4.1671908603801135,peer,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192049,-0.0741500156014117,relative_legacy,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192418,0.4234436343603739,baseline,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192418,11.103131238874395,spot_baseline,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192418,-0.0142784403837572,relative_legacy,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192418,-1.0122616306147836,peer,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192418,-26.542549753452423,spot_peer,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192472,-34.47186914323535,spot_peer,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192472,-0.5535563280101911,relative_legacy,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192472,0.0,baseline,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192472,-39.31586179062632,peer,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192472,0.0,spot_baseline,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192924,-0.0462865721507844,relative_legacy,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192924,48.54268271702416,spot_baseline,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192924,-2.825757449411805,peer,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192924,28.26246811040916,baseline,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,192924,0.194967357132031,spot_peer,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,193275,2.95422423907091,spot_peer,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,193275,-0.0370855159696888,relative_legacy,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,193275,43.33448702007456,baseline,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,193275,52.40636757772108,spot_baseline,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,193275,-1.779462132198055,peer,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,195286,1.3121083393550217,peer,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,195286,6.91130442875917,baseline,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,195286,13.952747203294985,spot_peer,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,195286,0.0174735555329023,relative_legacy,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,204737,0.017927344135505,relative_legacy,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,204737,7.303323813363412,spot_peer,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,204737,25.63695230485847,baseline,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,204737,1.2174991139274287,peer,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,208405,24.59280177280277,baseline,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,208405,-19.354906668643405,peer,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,208405,-0.2855298757968587,relative_legacy,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,208405,-15.687223897797606,spot_peer,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,216863,-7.440399470827177,spot_peer,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,216863,37.85116232537298,spot_baseline,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,216863,36.415604240480185,baseline,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,216863,-0.1785466407060248,relative_legacy,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,216863,-11.584537678461482,peer,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,218269,37.85116232537298,spot_baseline,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,218269,-11.666728254005491,peer,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,218269,-0.1785466407060248,relative_legacy,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,218269,37.21354841664936,baseline,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,218269,-7.440399470827177,spot_peer,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,218666,16.49683456109084,spot_peer,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,218666,0.1578855635600261,relative_legacy,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,218666,68.50655438651708,baseline,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,218666,12.861713070432652,peer,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,218666,71.36958148433591,spot_baseline,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,219459,-5.157417933460216,peer,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,219459,22.2392421336448,spot_baseline,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,219459,5.309687289588408,baseline,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,219459,-18.589677888305705,spot_peer,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,219459,-0.0686373746856273,relative_legacy,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,219886,-0.1045192424842226,relative_legacy,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,219886,-3.216745620657137,spot_peer,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,219886,-6.694186952030448,peer,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,219886,43.76538783461923,spot_baseline,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,219886,34.56260244615481,baseline,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,220077,73.7844855386943,baseline,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,220077,0.1856836921464689,relative_legacy,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,220077,15.153682622618025,peer,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,220077,74.84612330040356,spot_baseline,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,220077,18.979612602569787,spot_peer,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,221727,20.19892036013978,spot_peer,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,221727,71.43835412767505,baseline,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,221727,14.823602231267987,peer,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,221727,0.1842990271739317,relative_legacy,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,222046,-73.69655941662059,spot_baseline,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,222046,-7.023319971196513,peer,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,222046,-5.910864504500406,baseline,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,222046,-0.0980425142102141,relative_legacy,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,222046,-87.10238795548892,spot_peer,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,222142,30.86504938722865,spot_peer,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,222142,74.17277731794587,baseline,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,222142,91.4888586934882,spot_baseline,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,222142,21.13073601545521,peer,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29200,Will a woman be named the Time Person of the Year for 2024?,2024-10-29 12:48:39.658291+00,222142,0.2798711339330976,relative_legacy,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29309 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,182315,94.11063109464314,spot_baseline,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,182315,78.47693561021829,baseline,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,182315,0.034005785238592,relative_legacy,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,182315,6.162977204211953,peer,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,182315,9.133290656847237,spot_peer,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,185690,91.60944229383584,spot_baseline,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,185690,5.296373539800903,peer,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,185690,0.0153216791542697,relative_legacy,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,185690,90.8783184065926,baseline,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,185690,7.347062571358101,spot_peer,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,185698,-31.044501262712654,spot_peer,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,185698,-0.2075248805595112,relative_legacy,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,185698,37.85116232537298,spot_baseline,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,185698,-13.357257531218606,peer,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,185698,6.782884947401809,baseline,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,185699,-0.0006897157918754,relative_legacy,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,185699,53.00542889763651,baseline,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,185699,5.862212648678355,spot_peer,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,185699,2.5659466710349874,peer,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,185699,89.53026213333065,spot_baseline,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,187708,-0.0835374811629918,relative_legacy,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,187708,-6.356131682518594,spot_peer,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,187708,72.42136867573585,spot_baseline,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,187708,36.15215532819381,baseline,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,187708,-3.820851646425025,peer,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,188107,91.58395523360014,spot_baseline,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,188107,2.846910856134404,peer,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,188107,7.328860945477311,spot_peer,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,188107,41.59717397043493,baseline,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,188107,0.0111965327280118,relative_legacy,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,188389,0.0244296043982109,relative_legacy,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,188389,98.25829469225908,spot_baseline,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,188389,25.916996691360264,baseline,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,188389,12.095351419645796,spot_peer,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,188389,3.052299672991783,peer,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,189585,-0.0487803985863841,relative_legacy,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,189585,80.09804921519506,baseline,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,189585,2.4838672669156794,spot_peer,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,189585,0.548991528372532,peer,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,189588,-0.4907571766802995,relative_legacy,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,189588,-31.624475181785755,peer,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,189588,35.658161486290254,baseline,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,189588,-31.044501262712654,spot_peer,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,189869,0.0199734484528846,relative_legacy,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,189869,73.70646379742143,baseline,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,189869,5.049348459846181,peer,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,189869,8.05442945839862,spot_peer,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,190710,86.2960257987637,baseline,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,190710,6.964151527373601,spot_peer,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,190710,0.0104313951020503,relative_legacy,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,190710,4.864360190627144,peer,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,190710,91.07326619029126,spot_baseline,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,190772,0.0409153904826733,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,190772,6.268397670566471,peer,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,190772,70.19607662051217,baseline,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,190772,10.200971745358098,spot_peer,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,190772,95.60566524124027,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191026,12.295395904517452,baseline,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191026,3.054673729857858,spot_peer,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191026,-0.0037477240301816,relative_legacy,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191026,85.59896973084807,spot_baseline,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191026,0.3893251101327303,peer,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191046,-0.065580863080882,relative_legacy,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191046,21.13849293801061,baseline,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191046,-3.180193050386949,peer,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191046,-9.6513545885905,spot_peer,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191471,4.7483606864258565,spot_peer,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191471,55.32921463697408,baseline,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191471,-0.0102698402566504,relative_legacy,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191471,87.97057662822883,spot_baseline,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191471,1.981671760397724,peer,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191935,0.0433280359373311,relative_legacy,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191935,6.712267695984129,peer,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191935,10.200971745358098,spot_peer,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191935,95.60566524124027,spot_baseline,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191935,75.28527046886747,baseline,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191975,92.80228340925204,spot_baseline,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191975,3.9044542151296944,peer,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191975,8.198932010880165,spot_peer,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191975,0.0183699409280923,relative_legacy,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,191975,54.01121198264958,baseline,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192049,8.05442945839862,spot_peer,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192049,0.0237533799000284,relative_legacy,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192049,5.668245138305699,peer,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192049,83.81246986646583,baseline,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192418,2.6025666103452063,baseline,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192418,-0.0075277366260265,relative_legacy,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192418,-0.360261345772515,peer,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192418,-9.6513545885905,spot_peer,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192418,67.80719051126377,spot_baseline,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192472,2.4838672669156794,spot_peer,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192472,84.03619159790648,baseline,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192472,84.79969065549501,spot_baseline,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192472,0.3105926122131854,peer,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192472,-0.0521627171908346,relative_legacy,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192924,3.825186838188387,peer,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192924,92.5999418556223,spot_baseline,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192924,8.05442945839862,spot_peer,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192924,0.0172085265399709,relative_legacy,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,192924,53.9918281119409,baseline,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,193275,74.21155554042618,baseline,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,193275,88.90840985981492,spot_baseline,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,193275,3.0238577862367126,peer,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,193275,5.4181158273506265,spot_peer,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,193275,-0.0094152285845276,relative_legacy,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,195286,9.49727999967361,baseline,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,195286,0.814722751345625,peer,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,195286,8.05442945839862,spot_peer,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,195286,0.0046260514829206,relative_legacy,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,204737,-0.1347236427173344,relative_legacy,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,204737,25.797446609727327,baseline,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,204737,-7.684576154157112,peer,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,204737,-16.300777978522078,spot_peer,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,208405,5.864269625308904,peer,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,208405,8.05442945839862,spot_peer,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,208405,0.0247414248330931,relative_legacy,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,208405,86.66830082212778,baseline,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,216863,92.5999418556223,spot_baseline,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,216863,8.05442945839862,spot_peer,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,216863,0.0248973353403721,relative_legacy,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,216863,89.11391084597767,baseline,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,216863,5.940743489506714,peer,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,218269,91.05941349258056,baseline,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,218269,8.05442945839862,spot_peer,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,218269,0.0248973353403721,relative_legacy,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,218269,5.983416303752757,peer,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,218269,92.5999418556223,spot_baseline,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,218666,2.1085244033522077,peer,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,218666,-0.0267318158227513,relative_legacy,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,218666,80.97482196832432,baseline,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,218666,87.97057662822883,spot_baseline,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,218666,4.7483606864258565,spot_peer,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,219459,90.04643264490856,spot_baseline,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,219459,21.49916983471256,baseline,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,219459,6.230836666339151,spot_peer,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,219459,1.361044287918472,peer,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,219459,0.0026405908608708,relative_legacy,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,219886,-21.889658296647703,spot_peer,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,219886,-18.90851895314364,peer,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,219886,50.67034868006567,spot_baseline,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,219886,-0.3113785923568162,relative_legacy,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,219886,40.014733302801744,baseline,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,220077,91.31333784753647,baseline,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,220077,8.05442945839862,spot_peer,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,220077,0.0249244964764669,relative_legacy,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,220077,5.991770700122123,peer,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,221727,-0.1250407641704046,relative_legacy,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,221727,71.43946953344901,baseline,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,221727,-3.405181431745707,spot_peer,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,221727,-5.043539857645425,peer,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,222046,-3.17886124516399,peer,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,222046,-39.291325689683084,spot_peer,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,222046,2.135669978464629,baseline,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,222046,-0.0498583954979634,relative_legacy,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,222046,26.303440583379377,spot_baseline,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,222142,78.10026817748523,spot_baseline,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,222142,63.44022427506448,baseline,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,222142,-0.0972035863710775,relative_legacy,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,222142,-3.3771635457824343,peer,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29201,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-29 12:48:39.663214+00,222142,-2.300536286672848,spot_peer,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29310 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,182315,0.2974921181463804,peer,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,182315,81.03308782286967,baseline,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,182315,-0.0116011157227367,relative_legacy,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,182315,1.1652432877458436,spot_peer,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,182315,97.08536543404836,spot_baseline,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,185690,98.5500430304885,spot_baseline,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,185690,1.4992512120977153,peer,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,185690,0.0032444259949401,relative_legacy,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,185690,97.79326566920808,baseline,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,185690,2.2079192759422868,spot_peer,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,185698,-0.7336090577558223,peer,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,185698,-0.0178846879052491,relative_legacy,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,185698,28.720488403603053,baseline,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,185698,-2.027844032960061,spot_peer,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,185698,92.5999418556223,spot_baseline,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,185699,2.2079192759422868,spot_peer,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,185699,0.0005699469863637,relative_legacy,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,185699,98.5500430304885,spot_baseline,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,185699,0.9007288757731648,peer,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,185699,59.37598951923599,baseline,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,187708,-1.9197927839585796,spot_peer,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,187708,46.7279428710553,baseline,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,187708,92.75172461984762,spot_baseline,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,187708,-0.0286417461170371,relative_legacy,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,187708,-1.2933590916353814,peer,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,188107,-0.0005794084597985,relative_legacy,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,188107,2.034873400626236,spot_peer,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,188107,46.48198945350532,baseline,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,188107,98.30696040501226,spot_baseline,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,188107,0.678153105132824,peer,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,188389,2.2079192759422868,spot_peer,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,188389,98.5500430304885,spot_baseline,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,188389,28.99701122704513,baseline,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,188389,0.5544596079136234,peer,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,188389,0.0005312476408828,relative_legacy,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,189585,-2.7064022925859605,peer,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,189585,-0.055440960149374,relative_legacy,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,189585,-2.027844032960061,spot_peer,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,189585,87.56045545184912,baseline,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,189588,98.5500430304885,spot_baseline,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,189588,0.0006399702364199,relative_legacy,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,189588,2.2079192759422868,spot_peer,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,189588,92.88874753938089,baseline,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,189588,1.3538954184971026,peer,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,189869,78.4435727147696,baseline,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,189869,2.2079192759422868,spot_peer,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,189869,98.5500430304885,spot_baseline,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,189869,0.0005721730264545,relative_legacy,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,189869,1.1251481387635185,peer,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,190710,98.5500430304885,spot_baseline,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,190710,93.48839167113948,baseline,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,190710,1.369945850948805,peer,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,190710,0.001004006490235,relative_legacy,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,190710,2.2079192759422868,spot_peer,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,190772,2.2079192759422868,spot_peer,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,190772,72.40770337327484,baseline,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,190772,98.5500430304885,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,190772,1.0524875635590554,peer,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,190772,0.0005699469863637,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191026,-0.3147950872451268,peer,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191026,-2.027844032960061,spot_peer,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191026,-0.0080158274680141,relative_legacy,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191026,13.301600004092384,baseline,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191046,-19.677329879481807,spot_peer,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191046,-6.2911601136022,peer,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191046,-0.095840113544092,relative_legacy,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191046,21.26443971815257,baseline,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191284,98.5500430304885,spot_baseline,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191284,59.42337085490983,baseline,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191284,2.2079192759422868,spot_peer,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191284,0.0005699469863637,relative_legacy,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191284,0.9013066748701464,peer,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191471,92.5999418556223,spot_baseline,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191471,-2.027844032960061,spot_peer,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191471,58.301867328596536,baseline,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191471,-1.748854935713319,peer,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191471,-0.0368924965462303,relative_legacy,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191935,98.5500430304885,spot_baseline,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191935,77.75225396308994,baseline,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191935,1.116255355322986,peer,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191935,0.0005699469863637,relative_legacy,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191935,2.2079192759422868,spot_peer,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191975,56.582301700653865,baseline,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191975,1.3896527662544305,peer,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191975,0.007968097383644,relative_legacy,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191975,99.85565831303312,spot_baseline,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,191975,3.1373618428527847,spot_peer,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192049,2.2079192759422868,spot_peer,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192049,0.0006239346516319,relative_legacy,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192049,1.2862214418796984,peer,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192049,98.5500430304885,spot_baseline,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192049,89.32382138813523,baseline,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192418,-0.0018725000981019,relative_legacy,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192418,-0.076654325619197,peer,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192418,-2.027844032960061,spot_peer,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192418,3.5757946504732683,baseline,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192459,99.85565831303312,spot_baseline,biak_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192459,2.018555047823653,peer,biak_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192459,0.0118426231648912,relative_legacy,biak_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192459,85.80242142363879,baseline,biak_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192459,3.1373618428527847,spot_peer,biak_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192472,-0.05577236276969,relative_legacy,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192472,-2.027844032960061,spot_peer,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192472,92.5999418556223,spot_baseline,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192472,91.84635769211448,baseline,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192472,-2.834674529684864,peer,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192924,0.0005699469863637,relative_legacy,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192924,98.5500430304885,spot_baseline,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192924,0.8790490482152259,peer,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192924,2.2079192759422868,spot_peer,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,192924,57.52087950565128,baseline,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,193275,-0.0019455819562468,relative_legacy,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,193275,1.0035262645896774,peer,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,193275,98.25829469225908,spot_baseline,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,193275,82.86692728999536,baseline,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,193275,2.000229209809378,spot_peer,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,195286,-2.027844032960061,spot_peer,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,195286,-0.2150447784829516,peer,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,195286,-0.0056097090019762,relative_legacy,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,195286,9.5570177943981,baseline,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,204737,0.0005699469863637,relative_legacy,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,204737,0.727505354639717,peer,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,204737,2.2079192759422868,spot_peer,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,204737,43.66908657992568,baseline,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,208405,2.2079192759422868,spot_peer,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,208405,92.45559921504858,baseline,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,208405,1.3436789538561604,peer,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,208405,0.0006399702364199,relative_legacy,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,208405,98.5500430304885,spot_baseline,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,215725,2.2079192759422868,spot_peer,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,215725,1.3175539098343736,peer,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,215725,98.5500430304885,spot_baseline,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,215725,91.10322591333492,baseline,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,215725,0.0006239346516319,relative_legacy,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,216863,89.131744001078,baseline,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,216863,92.5999418556223,spot_baseline,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,216863,-0.055440960149374,relative_legacy,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,216863,-2.74265640047246,peer,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,216863,-2.027844032960061,spot_peer,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,218269,91.07752820513636,baseline,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,218269,-2.027844032960061,spot_peer,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,218269,92.5999418556223,spot_baseline,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,218269,-0.055440960149374,relative_legacy,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,218269,-2.8004317407416144,peer,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,218666,98.5500430304885,spot_baseline,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,218666,1.3169764337487924,peer,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,218666,0.0004452495754436,relative_legacy,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,218666,91.83797822060976,baseline,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,218666,2.2079192759422868,spot_peer,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,218945,-2.667701959825492,peer,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,218945,92.5999418556223,spot_baseline,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,218945,86.11170114756634,baseline,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,218945,-0.0546919580456441,relative_legacy,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,218945,-2.027844032960061,spot_peer,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,219459,23.529891864637968,baseline,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,219459,0.4567580471381031,peer,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,219459,98.5500430304885,spot_baseline,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,219459,0.0005312476408828,relative_legacy,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,219459,2.2079192759422868,spot_peer,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,219886,77.10705015399769,baseline,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,219886,1.55853231905347,spot_peer,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,219886,-0.006631801984021,relative_legacy,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,219886,0.5996266016020506,peer,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,219886,97.6378300919123,spot_baseline,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,220077,98.5500430304885,spot_baseline,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,220077,0.0030818095973097,relative_legacy,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,220077,2.2079192759422868,spot_peer,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,220077,1.476472948489986,peer,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,220077,97.20374999494378,baseline,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,221727,0.0006399702364199,relative_legacy,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,221727,92.02860436492546,baseline,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,221727,98.5500430304885,spot_baseline,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,221727,2.2079192759422868,spot_peer,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,221727,1.3347441374134967,peer,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,222046,76.55347463629771,spot_baseline,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,222046,-13.45101736860472,spot_peer,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,222046,-0.0175625177940321,relative_legacy,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,222046,-1.1048452785853533,peer,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,222046,6.29707592781927,baseline,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,222142,-0.4692552845611241,peer,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,222142,-0.0218830497085489,relative_legacy,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,222142,77.94133681311126,baseline,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,222142,2.5504314917438218,spot_peer,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29202,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-29 12:48:39.670063+00,222142,99.03118000369082,spot_baseline,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29311 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,182315,-17.201308011508306,peer,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,182315,-17.459827441327064,spot_peer,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,182315,-0.0847074975653138,relative_legacy,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,182315,-21.02109708661333,baseline,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,182315,-25.15387669959645,spot_baseline,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,185690,-14.401030269151931,spot_baseline,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,185690,-9.793570678320192,spot_peer,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,185690,-15.206272129038076,peer,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,185690,-0.0475899718328964,relative_legacy,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,185690,-14.294602772013354,baseline,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,185698,-0.047857061665861,relative_legacy,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,185698,-83.97005011933246,spot_peer,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,185698,-6.206303963749708,peer,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,185698,-8.655149015880493,baseline,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,185698,-118.44245711374272,spot_baseline,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,187708,2.856915219677092,spot_baseline,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,187708,1.452947905221165,baseline,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,187708,0.6707726455311301,peer,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,187708,0.0669794723611563,relative_legacy,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,187708,2.510505472599985,spot_peer,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,188107,-1.1282236233061054,peer,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,188107,-1.255068361834842,spot_peer,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,188107,0.0339959970046447,relative_legacy,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,188107,-1.1678492799141655,baseline,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,188107,-2.4247546246677185,spot_baseline,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,188389,-26.015189730067256,spot_baseline,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,188389,-7.896851115394834,baseline,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,188389,-5.664150671988868,peer,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,188389,-18.07390175993889,spot_peer,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,188389,-0.0413034420962278,relative_legacy,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,189585,27.45970243879202,spot_peer,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,189585,0.4571503222982874,relative_legacy,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,189585,22.33584810475084,peer,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,189585,35.79578183261496,baseline,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,189585,37.85116232537298,spot_baseline,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,189588,22.28838402030031,peer,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,189588,27.45970243879202,spot_peer,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,189588,0.4568117226508787,relative_legacy,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,189588,35.67545403750497,baseline,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,189869,0.4232883639290307,relative_legacy,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,189869,20.02160937120866,peer,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,189869,27.45970243879202,spot_peer,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,189869,30.12910840481581,baseline,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,190710,28.688114778816157,spot_baseline,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,190710,16.087103698862478,peer,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,190710,0.3709477274636851,relative_legacy,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,190710,27.23993099568239,baseline,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,190710,20.92689499306705,spot_peer,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,190772,-16.429488700780432,peer,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,190772,-21.05122528250948,baseline,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,190772,-0.0968094082682314,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,190772,-19.93843274660187,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,190772,-28.63041851566411,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191026,2.856915219677092,spot_baseline,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191026,0.4104037096670191,baseline,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191026,0.2291645113876357,peer,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191026,2.510505472599985,spot_peer,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191026,0.0110162962105436,relative_legacy,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191046,-10.3634178026692,spot_peer,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191046,-3.4053803805567187,peer,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191046,-0.0084751209800903,relative_legacy,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191046,-4.733617155393204,baseline,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191046,-15.200309344504996,spot_baseline,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191284,-32.19280948873623,spot_baseline,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191284,-14.57923348733421,peer,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191284,-0.1146364374754725,relative_legacy,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191284,-19.41121510184784,baseline,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191284,-22.478244327325783,spot_peer,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191471,-0.0931563807319383,relative_legacy,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191471,-19.93843274660187,spot_peer,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191471,-13.708880960214492,peer,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191471,-18.042841873170342,baseline,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191471,-28.63041851566411,spot_baseline,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191935,-39.592867633113926,spot_baseline,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191935,-24.348555921272805,peer,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191935,-31.481146637068456,baseline,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191935,-27.754126035759548,spot_peer,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191935,-0.1926126866688734,relative_legacy,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191975,8.331884212834415,baseline,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191975,13.528939718152706,spot_peer,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191975,0.1279022491807979,relative_legacy,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191975,5.748761166223305,peer,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,191975,18.31159342952992,spot_baseline,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192049,-32.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192049,-21.32887776914248,peer,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192049,-0.1426053460482899,relative_legacy,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192049,-26.79737052897757,baseline,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192049,-22.478244327325783,spot_peer,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192418,1.469459543728651,baseline,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192418,1.0111396644220043,peer,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192418,0.0135854825125391,relative_legacy,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192418,27.45970243879202,spot_peer,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192472,87.97057662822883,spot_baseline,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192472,0.9685409063753418,relative_legacy,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192472,87.31876151493171,baseline,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192472,63.19240831742776,spot_peer,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192472,59.63457508642426,peer,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192924,8.030468578521601,baseline,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192924,10.276996587723506,spot_peer,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192924,0.154355420921879,relative_legacy,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192924,5.167303376933148,peer,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,192924,13.750352374993504,spot_baseline,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,193275,-37.70696490798233,spot_baseline,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,193275,-32.04387822824158,baseline,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,193275,-26.40956907454612,spot_peer,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,193275,-0.1950816764475781,relative_legacy,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,193275,-25.428054997398544,peer,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,195286,-22.478244327325783,spot_peer,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,195286,-0.0306908220289786,relative_legacy,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,195286,-3.4120517316618875,baseline,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,195286,-2.4932315775819767,peer,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,195286,-32.19280948873623,spot_baseline,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,204737,-68.96598793878495,spot_baseline,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,204737,-0.2628186890364044,relative_legacy,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,204737,-22.18434203400925,peer,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,204737,-48.69573286057276,spot_peer,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,204737,-30.716898062766848,baseline,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,208405,14.336631594275463,peer,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,208405,19.226738220942543,spot_peer,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,208405,24.61320804180476,baseline,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,208405,0.3474476677334576,relative_legacy,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,215725,-15.200309344504996,spot_baseline,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,215725,-14.060530462426833,baseline,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,215725,-0.0350158691330876,relative_legacy,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,215725,-10.3634178026692,spot_peer,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,215725,-13.46957753760286,peer,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,216863,-10.3634178026692,spot_peer,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,216863,-14.49568805982543,peer,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,216863,-14.634825367678063,baseline,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,216863,-0.0477998361699194,relative_legacy,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,216863,-15.200309344504996,spot_baseline,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,218269,0.0,spot_baseline,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,218269,-4.287926454272992,peer,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,218269,0.0985484175068612,relative_legacy,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,218269,0.0,baseline,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,218269,0.4736638078500728,spot_peer,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,218666,-3.8785863506498126,baseline,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,218666,0.0635825083900394,relative_legacy,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,218666,-6.364951428253146,peer,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,218666,15.384428747869167,spot_peer,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,218666,20.91413978385917,spot_baseline,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,218945,37.85116232537298,spot_baseline,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,218945,22.12508613180508,peer,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,218945,35.21341097755911,baseline,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,218945,0.4557187709224795,relative_legacy,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,218945,27.45970243879202,spot_peer,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,219459,2.2231181598980623,baseline,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,219459,0.0436006585831178,relative_legacy,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,219459,7.111911696285963,spot_peer,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,219459,1.542709993755592,peer,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,219459,9.310940439148146,spot_baseline,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,219886,-34.43184502019428,spot_baseline,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,219886,-24.074567812152427,spot_peer,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,219886,-21.212763092226687,peer,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,219886,-27.19113858684695,baseline,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,219886,-0.1499343716691605,relative_legacy,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,220077,7.446641731805579,peer,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,220077,12.130328582284704,spot_peer,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,220077,16.129552523725742,baseline,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,220077,0.2594197612719275,relative_legacy,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,220077,16.349873228287958,spot_baseline,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,221727,0.6487815372702677,relative_legacy,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,221727,54.62059810386789,baseline,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,221727,36.13457690134202,peer,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,221727,42.17864635611841,spot_peer,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,222046,32.10066149621174,spot_peer,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,222046,2.567748526072054,peer,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,222046,3.691187876708796,baseline,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,222046,0.0368790303491532,relative_legacy,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,222046,44.36066514756148,spot_baseline,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,222142,23.232244004026768,spot_baseline,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,222142,17.03712436387827,spot_peer,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,222142,11.79515427496318,peer,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,222142,18.94537863035861,baseline,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29203,Will Donald Trump win Arizona and Georgia in the 2024 election?,2024-10-29 12:48:39.673681+00,222142,0.3122495564544882,relative_legacy,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29312 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,182315,46.46682670034443,spot_baseline,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,185690,44.67855621431226,spot_baseline,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,185698,58.496250072115615,spot_baseline,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,187708,20.66432239833956,spot_baseline,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,188107,43.2959407276106,spot_baseline,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,188389,66.8119124686432,spot_baseline,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,190710,33.34237337251918,spot_baseline,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,190772,64.15460290875237,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,191026,37.85116232537298,spot_baseline,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,191046,58.496250072115615,spot_baseline,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,191471,42.22330006830478,spot_baseline,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,191935,23.87868595871165,spot_baseline,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,191975,58.496250072115615,spot_baseline,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,192049,58.496250072115615,spot_baseline,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,192418,48.54268271702416,spot_baseline,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,192472,2.856915219677092,spot_baseline,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,192924,8.406426478847456,spot_baseline,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,193275,15.315678806142053,spot_baseline,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,204737,67.80719051126377,spot_baseline,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,215725,48.54268271702416,spot_baseline,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,216863,58.496250072115615,spot_baseline,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,218269,48.54268271702416,spot_baseline,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,218666,33.799646351501586,spot_baseline,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,218945,58.496250072115615,spot_baseline,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,219459,45.06614090095649,spot_baseline,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,219886,55.086127311887495,spot_baseline,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,220077,46.46682670034443,spot_baseline,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,221727,48.54268271702416,spot_baseline,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,222046,-15.200309344504996,spot_baseline,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29204,Will the same presidential candidate win Michigan and Wisconsin in the 2024 election?,2024-10-29 12:48:39.677075+00,222142,89.62405769805582,spot_baseline,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29313 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,182315,52.60688116675877,spot_baseline,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,182315,36.88327355428456,peer,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,182315,48.70945669778951,spot_peer,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,182315,44.04535507388791,baseline,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,182315,0.2865517415424068,relative_legacy,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,185690,-48.29858681330303,peer,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,185690,-41.41232508864136,spot_peer,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,185690,-0.9207505372790618,relative_legacy,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,185690,-73.20005073467358,baseline,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,185690,-73.69655941662063,spot_baseline,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,185698,-564.3856189774725,spot_baseline,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,185698,-391.535584965628,spot_peer,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,185698,-121.44210120369576,peer,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,185698,-175.3609189232141,baseline,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,185698,-1.797314814448097,relative_legacy,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,187708,3.135229602738693,peer,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,187708,9.302845087362115,spot_peer,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,187708,-0.112380874538917,relative_legacy,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,187708,-1.3598487603895304,baseline,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,187708,-2.6205070347394006,spot_baseline,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,188107,-32.19280948873621,spot_baseline,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,188107,-0.2482303122500841,relative_legacy,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,188107,-11.797994100958016,spot_peer,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,188107,-15.943910629592477,baseline,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,188107,-7.329008338585599,peer,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,188389,-0.6309854591103878,relative_legacy,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,188389,-37.86872909406644,peer,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,188389,-110.39134499162144,spot_peer,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,188389,-58.70846816725006,baseline,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,188389,-170.36894392919078,spot_baseline,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,189585,37.85116232537298,spot_baseline,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,189585,0.1846072817123127,relative_legacy,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,189585,31.422161992309977,peer,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,189585,38.18075164127588,spot_peer,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,189585,35.782079727531084,baseline,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,189588,-11.691831520877647,peer,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,189588,-23.706095559900245,baseline,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,189588,-6.775477201163568,spot_peer,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,189588,-0.4091793117892496,relative_legacy,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,189588,-25.15387669959645,spot_baseline,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,189869,0.4028453419779648,relative_legacy,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,189869,43.99946775591966,peer,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,189869,59.55539213315398,spot_peer,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,189869,53.97507376888176,baseline,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,190772,-57.80890129014328,peer,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,190772,-1.0069426046458594,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,190772,-73.34003829638955,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,190772,-87.19934345735483,baseline,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,190772,-118.44245711374272,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191026,-8.926733809708741,spot_baseline,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191026,-0.0159628573047528,relative_legacy,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191026,-1.2824693072055986,baseline,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191026,4.803138739819249,spot_peer,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191026,0.7689467242141065,peer,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191046,59.55539213315398,spot_peer,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191046,0.1669101660546337,relative_legacy,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191046,19.115643940456405,peer,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191046,21.061834850540592,baseline,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191284,37.31361038362253,peer,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191284,0.327322366489545,relative_legacy,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191284,46.15866678139578,baseline,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191284,65.79616202602227,spot_peer,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191471,26.873850721423818,baseline,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191471,0.1217903180670129,relative_legacy,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191471,41.300419971677385,spot_peer,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191471,23.63368395475857,peer,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191471,42.22330006830478,spot_baseline,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191935,-12.029423371771175,spot_baseline,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191935,-9.564998788803418,baseline,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191935,-1.7896711317774503,peer,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191935,2.5892646729553714,spot_peer,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191935,-0.2321344844942478,relative_legacy,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191975,-1.0043888267366776,relative_legacy,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191975,-67.13597411846554,spot_peer,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191975,-57.52089714701991,peer,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191975,-86.91188188580759,baseline,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,191975,-109.747615137262,spot_baseline,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192049,45.90313203421147,peer,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192049,56.5606901599654,baseline,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192049,59.55539213315398,spot_peer,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192049,0.4128840163487703,relative_legacy,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192418,1.485839498457733,baseline,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192418,0.0072251612995275,relative_legacy,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192418,38.18075164127588,spot_peer,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192418,1.4987774584503093,peer,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192472,-18.442457113742744,spot_baseline,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192472,-0.3719320952939215,relative_legacy,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192472,-1.9866520622775363,spot_peer,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192472,-18.335338874014774,baseline,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192472,-7.8713172514512735,peer,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192924,0.2486019216442544,relative_legacy,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192924,37.52417712693001,baseline,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192924,56.94914719359473,spot_peer,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192924,31.06517989655517,peer,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,192924,64.15460290875237,spot_baseline,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,193275,0.5759269288684953,spot_baseline,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,193275,0.333867707143416,baseline,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,193275,11.5836089591336,spot_peer,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,193275,5.532817081261082,peer,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,193275,-0.1544674386219965,relative_legacy,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,195286,0.0240782068073961,relative_legacy,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,195286,2.768369983728688,baseline,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,195286,29.94106114547065,spot_peer,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,195286,3.1925097211968163,peer,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,195286,26.303440583379377,spot_baseline,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,204737,0.2561876535709544,relative_legacy,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,204737,28.767224362837013,peer,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,204737,65.79616202602227,spot_peer,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,204737,34.47199019567297,baseline,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,208405,-70.6326874706848,peer,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,208405,-105.0737120199023,baseline,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,208405,-68.76412156115664,spot_peer,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,208405,-1.2216176221632695,relative_legacy,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,208405,-112.02942337177116,spot_baseline,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,215725,48.54268271702416,spot_baseline,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,215725,38.00341124107315,peer,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,215725,44.991642286055054,baseline,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,215725,0.2751681931711033,relative_legacy,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,215725,45.80951348062959,spot_peer,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,216863,0.4710311581057342,relative_legacy,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,216863,52.84007206541064,peer,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,216863,65.31861795059199,baseline,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,216863,59.55539213315398,spot_peer,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,216863,67.80719051126377,spot_baseline,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,218269,76.55347463629771,spot_baseline,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,218269,0.5616450002613491,relative_legacy,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,218269,75.36240858073403,baseline,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,218269,60.31380408640745,peer,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,218269,65.79616202602227,spot_peer,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,218666,-103.8078037068134,baseline,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,218666,-69.96549959179211,peer,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,218666,-21.50644639946817,spot_peer,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,218666,-1.2179719869604893,relative_legacy,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,218666,-45.79896444633908,spot_baseline,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,218945,37.85116232537298,spot_baseline,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,218945,35.241890514937445,baseline,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,218945,38.18075164127588,spot_peer,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,218945,30.987266621532694,peer,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,218945,0.178731640484211,relative_legacy,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,219459,11.251514773111625,peer,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,219459,11.590566607301003,baseline,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,219459,0.0726112466122959,relative_legacy,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,219459,45.80951348062959,spot_peer,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,219459,48.54268271702416,spot_baseline,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,219886,48.12989415475651,spot_baseline,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,219886,0.2702526150186981,relative_legacy,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,219886,45.51497486346452,spot_peer,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,219886,37.28493293498713,peer,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,219886,44.09882018267954,baseline,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,220077,0.2670253108283114,relative_legacy,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,220077,44.32831991938404,spot_peer,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,220077,38.79807780772565,peer,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,220077,45.855953242511504,baseline,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,220077,46.46682670034443,spot_baseline,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,221727,-100.0,spot_baseline,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,221727,-93.39225152903228,baseline,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,221727,-60.180720640960224,spot_peer,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,221727,-1.1057013657102013,relative_legacy,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,221727,-62.16815384343085,peer,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,222046,-60.180720640960224,spot_peer,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,222046,-5.104148096090752,peer,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,222046,-8.563980181735975,baseline,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,222046,-0.0891323691352397,relative_legacy,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,222046,-100.0,spot_baseline,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,222142,-46.19099528611622,spot_baseline,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,222142,-22.219205200146217,peer,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,222142,-37.90775282744099,baseline,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,222142,-0.5253192813670516,relative_legacy,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29205,"Will Kamala Harris win New Mexico, New Hampshire, Virginia, and Maine in the 2024 election?",2024-10-29 12:48:39.864281+00,222142,-21.786173678731178,spot_peer,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29314 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,182315,11.42237827532106,spot_peer,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,182315,56.8204175313518,baseline,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,182315,8.85452812592127,peer,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,182315,0.1033310211503927,relative_legacy,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,182315,67.80719051126377,spot_baseline,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,185690,43.82928515791468,spot_baseline,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,185690,-0.1145370608175923,relative_legacy,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,185690,43.54780867497415,baseline,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,185690,-6.597549022253933,peer,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,185690,-5.672702572983431,spot_peer,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,185698,-27.11751938150976,spot_peer,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,185698,-0.097485782301392,relative_legacy,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,185698,-6.828303930153473,peer,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,185698,6.585748409409686,baseline,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,185698,13.750352374993504,spot_baseline,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,187708,9.491164702546698,spot_baseline,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,187708,4.991998838408524,baseline,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,187708,-30.15411313461713,spot_peer,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,187708,-0.2301413215044912,relative_legacy,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,187708,-16.08734268508438,peer,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,188107,10.345330288970668,spot_peer,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,188107,33.49593666043736,baseline,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,188107,0.0640888385642368,relative_legacy,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,188107,5.099641964038048,peer,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,188107,66.29650127224292,spot_baseline,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,188389,4.544297076116711,spot_baseline,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,188389,-0.1684704670581744,relative_legacy,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,188389,1.591303483175653,baseline,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,188389,-11.856974060271895,peer,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,188389,-33.68098926384787,spot_peer,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,189585,0.0286884822907242,relative_legacy,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,189585,55.31815729355138,baseline,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,189585,4.784130386885168,spot_peer,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,189585,3.8609054787758295,peer,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,189588,-8.926733809708741,spot_baseline,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,189588,-0.6067990567726615,relative_legacy,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,189588,-42.10605188429304,peer,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,189588,-43.28517940095789,spot_peer,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,189588,-8.407637325357678,baseline,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,189869,67.50216066100252,baseline,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,189869,0.237233358782243,relative_legacy,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,189869,18.208367976237398,peer,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,189869,23.53720479997764,spot_peer,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,190710,0.0,spot_baseline,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,190710,-36.920852161383166,spot_peer,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,190710,-36.39594004806356,peer,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,190710,-0.527549124650252,relative_legacy,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,190710,0.0,baseline,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,190772,5.011586788959881,peer,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,190772,0.0555551473254614,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,190772,45.89232870749808,baseline,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,190772,7.491053528100701,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,190772,62.29303509201767,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191026,43.29594072761063,spot_baseline,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191026,-6.052951223634104,spot_peer,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191026,-0.8711019615484588,peer,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191026,6.220460629624441,baseline,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191026,-0.0083739054595886,relative_legacy,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191046,21.08851624220212,baseline,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191046,11.42237827532106,spot_peer,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191046,0.0474982401638615,relative_legacy,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191046,3.536523303117792,peer,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191284,26.303440583379377,spot_baseline,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191284,-11.244230502301004,peer,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191284,-18.1677777482907,spot_peer,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191284,15.85979055816118,baseline,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191284,-0.163310689429606,relative_legacy,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191471,-5.293854473021503,spot_peer,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191471,-0.0587367525167001,relative_legacy,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191471,-3.6952028897287534,peer,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191471,28.273255089432165,baseline,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191471,44.36066514756148,spot_baseline,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191935,23.87868595871165,spot_baseline,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191935,-16.55575508551815,peer,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191935,-19.896509917975628,spot_peer,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191935,-0.2453830104060459,relative_legacy,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,191935,18.881429405455627,baseline,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192049,-18.1677777482907,spot_peer,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192049,-17.547727552879593,peer,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192049,23.94929906917168,baseline,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192049,-0.2657075517955601,relative_legacy,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192418,67.80719051126377,spot_baseline,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192418,2.677391121569592,baseline,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192418,0.4464517957865825,peer,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192418,11.42237827532106,spot_peer,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192418,0.0052963213129935,relative_legacy,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192459,85.93099863208099,baseline,biak_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192459,0.382242078457498,relative_legacy,biak_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192459,28.9624982763966,peer,biak_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192459,34.27137780475688,spot_peer,biak_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192459,99.85565831303312,spot_baseline,biak_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192472,4.104150191833518,peer,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192472,0.0311906597292809,relative_legacy,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192472,58.19871370114058,baseline,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192472,4.784130386885168,spot_peer,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192924,-0.0903324277454585,relative_legacy,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192924,22.15573935355175,baseline,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192924,-9.93481353044124,spot_peer,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192924,-6.048343310342469,peer,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,192924,37.85116232537298,spot_baseline,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,193275,54.00272692575073,spot_baseline,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,193275,1.5804668329247973,spot_peer,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,193275,0.6387974653547027,peer,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,193275,-0.0122244972404069,relative_legacy,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,193275,48.23932826912562,baseline,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,195286,2.787584942938885,baseline,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,195286,-0.0244987425491293,relative_legacy,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,195286,-1.9171115425132332,peer,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,195286,-18.1677777482907,spot_peer,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,195286,26.303440583379377,spot_baseline,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,204737,95.60566524124027,spot_baseline,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,204737,14.068682422814067,peer,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,204737,43.32067041170977,baseline,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,204737,31.24133935492688,spot_peer,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,204737,0.190278562602129,relative_legacy,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,208405,11.42237827532106,spot_peer,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,208405,0.115344651948385,relative_legacy,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,208405,63.60798073426587,baseline,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,208405,10.08271105725549,peer,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,215725,58.496250072115615,spot_baseline,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,215725,4.784130386885168,spot_peer,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,215725,0.0274081795395218,relative_legacy,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,215725,54.329354452837855,baseline,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,215725,3.6998832852005497,peer,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,216863,16.58773566690322,peer,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,216863,17.658053662154334,spot_peer,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,216863,73.75913594964965,baseline,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,216863,0.2044128115372741,relative_legacy,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,216863,76.55347463629771,spot_baseline,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,218269,76.55347463629771,spot_baseline,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,218269,16.982886158245172,peer,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,218269,17.658053662154334,spot_peer,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,218269,0.2082316587554865,relative_legacy,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,218269,75.37813350168327,baseline,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,218666,-2.567509936283129,peer,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,218666,-0.058554399931554,relative_legacy,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,218666,-3.792263675417238,spot_peer,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,218666,47.32280287370167,baseline,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,218666,46.46682670034443,spot_baseline,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,218945,53.60529002402098,spot_baseline,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,218945,1.2971136431007797,spot_peer,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,218945,-0.0180174164157767,relative_legacy,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,218945,49.9296907735377,baseline,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,218945,0.4272794574919928,peer,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,219459,0.0903438212711592,relative_legacy,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,219459,27.27787677183904,spot_peer,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,219459,21.500750857268585,baseline,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,219459,6.476901567576391,peer,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,219459,90.04643264490855,spot_baseline,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,219886,56.87131490760813,spot_baseline,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,219886,3.6256306096463353,spot_peer,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,219886,55.023873227772015,baseline,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,219886,4.366906847946402,peer,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,219886,0.0364377352987323,relative_legacy,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,220077,-4.631010898924732,peer,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,220077,-0.0880155560847291,relative_legacy,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,220077,45.86815797612828,baseline,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,220077,-3.792263675417238,spot_peer,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,220077,46.46682670034443,spot_baseline,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,221727,0.1961514955262879,relative_legacy,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,221727,17.658053662154334,spot_peer,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,221727,71.48733089326906,baseline,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,221727,15.915731924129146,peer,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,222046,0.4192207887967643,peer,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,222046,5.080719977024038,baseline,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,222046,0.0073182161003713,relative_legacy,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,222046,4.784130386885168,spot_peer,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,222046,58.496250072115615,spot_baseline,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,222142,82.12426502109744,spot_baseline,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,222142,21.62975638654629,spot_peer,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,222142,67.6171122541329,baseline,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,222142,17.198764767378748,peer,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29206,Will Donald Trump outperform Rick Scott in Florida in the 2024 election?,2024-10-29 12:48:39.86872+00,222142,0.2198496426211746,relative_legacy,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29315 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,182315,6.912507209648688,spot_peer,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,182315,5.445395377993648,peer,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,182315,71.36958148433591,spot_baseline,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,182315,-0.0742946203941106,relative_legacy,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,182315,59.86127563988565,baseline,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,185690,76.55347463629771,spot_baseline,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,185690,10.605519268994076,spot_peer,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,185690,9.379228527991188,peer,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,185690,-0.0302893992419783,relative_legacy,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,185690,76.08536999406516,baseline,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,185698,-2.258470423500971,spot_peer,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,185698,18.199410849150283,baseline,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,185698,58.496250072115615,spot_baseline,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,185698,-0.0523073119877463,relative_legacy,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,185698,-1.1955141345256,peer,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,185699,12.048689199186803,peer,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,185699,0.0625959121079324,relative_legacy,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,185699,89.53026213333065,spot_baseline,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,185699,59.07529029378394,baseline,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,185699,19.850199148240645,spot_peer,MWG,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,187708,81.88505608954335,spot_baseline,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,187708,6.831397758599806,peer,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,187708,0.0189798792479885,relative_legacy,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,187708,14.403744661577086,spot_peer,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,187708,43.798108848966464,baseline,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,188107,0.0680106249198374,relative_legacy,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,188107,10.153889879594942,peer,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,188107,91.32883668066692,spot_baseline,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,188107,47.41661372358135,baseline,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,188107,21.131505937990124,spot_peer,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,188389,35.147785574676625,baseline,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,188389,8.63616369694623,peer,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,188389,25.442001152865863,spot_peer,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,188389,97.3794929652606,spot_baseline,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,188389,0.0757362781536213,relative_legacy,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,189585,4.374655360082735,spot_peer,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,189585,3.083179027118113,peer,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,189585,64.17679193170842,baseline,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,189585,-0.1154772536951129,relative_legacy,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,189588,10.605519268994076,spot_peer,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,189588,-0.032991578588279,relative_legacy,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,189588,72.19711762021458,baseline,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,189588,9.053152713933535,peer,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,189869,73.71259115063307,baseline,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,189869,17.00448717862416,peer,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,189869,0.0941077011559183,relative_legacy,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,189869,22.03704287754492,spot_peer,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,190772,10.426623815374628,peer,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,190772,61.32056110278272,baseline,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,190772,0.0193918013027752,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,190772,83.18772411916731,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,190772,15.331767018848153,spot_peer,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191026,6.912507209648688,spot_peer,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191026,0.7991869246533599,peer,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191026,-0.0058453203225999,relative_legacy,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191026,10.25441199958877,baseline,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191026,71.36958148433591,spot_baseline,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191046,4.374655360082735,spot_peer,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191046,0.871171526390173,peer,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191046,21.041020836964197,baseline,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191046,-0.0232243790705278,relative_legacy,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191284,22.03704287754492,spot_peer,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191284,0.0811045827763694,relative_legacy,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191284,12.315407020140032,peer,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191284,55.83324590106166,baseline,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191471,-0.1730953177253545,relative_legacy,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191471,-6.4540643047494255,spot_peer,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191471,33.580295724035174,baseline,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191471,-5.2466181092192326,peer,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191471,52.60688116675877,spot_baseline,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191935,70.93851044703992,baseline,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191935,19.850199148240645,spot_peer,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191935,0.0690016137532431,relative_legacy,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191935,89.53026213333065,spot_baseline,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191935,15.148789406879867,peer,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191975,42.60523698204815,baseline,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191975,-0.0075850113936737,relative_legacy,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191975,11.00778114366642,spot_peer,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191975,77.11813095041191,spot_baseline,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,191975,5.163607340248568,peer,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192049,0.1148161680768612,relative_legacy,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192049,19.57215926534772,peer,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192049,84.43756262312507,baseline,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192049,22.03704287754492,spot_peer,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192418,1.0432394844666204,baseline,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192418,-0.9991843720567432,peer,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192418,26.303440583379377,spot_baseline,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192418,-0.0185756929855796,relative_legacy,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192418,-25.192668753016985,spot_peer,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192459,-2.4099567738979903,relative_legacy,biak_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192459,-186.41152698305103,spot_peer,biak_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192459,-172.170571712984,baseline,biak_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192459,-200.0,spot_baseline,biak_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192459,-162.60621602137914,peer,biak_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192472,-2.258470423500971,spot_peer,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192472,-0.2097574924355285,relative_legacy,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192472,-3.799184721027168,peer,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192472,58.24170342736368,baseline,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192924,-9.34940443743765,spot_peer,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192924,-6.524575726413255,peer,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192924,48.54268271702416,spot_baseline,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192924,28.468256621639785,baseline,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,192924,-0.1777791277153271,relative_legacy,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,193275,62.53330545625967,baseline,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,193275,5.52444982522407,spot_peer,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,193275,69.42116077678904,spot_baseline,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,193275,-0.0954433134281321,relative_legacy,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,193275,4.328679345202144,peer,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,195286,10.605519268994076,spot_peer,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,195286,0.0013543307896832,relative_legacy,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,195286,1.0201162072535763,peer,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,195286,8.003872227477968,baseline,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,204737,-14.659491389263296,baseline,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,204737,-31.22936332928477,peer,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,204737,-66.86547153080053,spot_peer,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,204737,-0.4996598782845293,relative_legacy,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,204737,-32.19280948873623,spot_baseline,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,208405,0.1179179563690559,relative_legacy,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,208405,22.03704287754492,spot_peer,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,208405,87.11523469807344,baseline,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,208405,19.955927349932782,peer,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,215725,86.06263356907998,baseline,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,215725,22.03704287754492,spot_peer,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,215725,0.1165820003138034,relative_legacy,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,215725,19.811033033882325,peer,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,216863,14.913937307486115,peer,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,216863,84.79969065549501,spot_baseline,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,216863,81.71913851048869,baseline,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,216863,16.480134024766596,spot_peer,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,216863,0.0467423582503946,relative_legacy,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,218269,3.001622511418464,peer,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,218269,66.78637869295304,baseline,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,218269,67.80719051126377,spot_baseline,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,218269,4.374655360082735,spot_peer,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,218269,-0.1170097099696736,relative_legacy,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,218666,82.53786038929313,spot_baseline,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,218666,14.868803273067972,spot_peer,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,218666,-14.600725880587476,peer,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,218666,41.412839582767056,baseline,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,218666,-0.3609668553998828,relative_legacy,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,218945,-22.3852513542214,peer,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,218945,29.86583155645151,spot_baseline,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,218945,27.830207671779565,baseline,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,218945,-22.654816903451017,spot_peer,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,218945,-0.4676089160161663,relative_legacy,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,219459,1.6786979586439477,peer,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,219459,8.570249241331188,spot_peer,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,219459,73.69655941662063,spot_baseline,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,219459,17.59719225015326,baseline,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,219459,-0.0025019084746776,relative_legacy,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,219886,20.12390843857647,spot_peer,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,219886,0.0712485622614293,relative_legacy,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,219886,82.05723168992728,baseline,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,219886,89.91446876277007,spot_baseline,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,219886,16.517222447173722,peer,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,220077,77.24878613189377,baseline,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,220077,78.24085649273731,spot_baseline,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,220077,11.807612244655418,spot_peer,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,220077,-0.0142037253304329,relative_legacy,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,220077,10.513177382886774,peer,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,221727,84.79969065549501,spot_baseline,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,221727,79.24789231246486,baseline,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,221727,14.61218054317833,peer,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,221727,0.044352701666279,relative_legacy,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,221727,16.480134024766596,spot_peer,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,222046,-89.79966986031656,spot_peer,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,222046,-64.38561897747249,spot_baseline,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,222046,-7.902002329405736,peer,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,222046,-0.1220873710954369,relative_legacy,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,222046,-5.639223426032848,baseline,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,222142,57.72295393756256,baseline,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,222142,21.421321641754908,spot_peer,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,222142,4.203513232039462,peer,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,222142,91.73565193551435,spot_baseline,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29207,"Will the U.S. have passed legislation that requires cybersecurity around AI models before 2025? -",2024-10-29 12:48:39.875607+00,222142,-0.0871061607828978,relative_legacy,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29316 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,182315,0.1272451062688648,relative_legacy,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,182315,17.92683499402589,peer,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,182315,44.17467530635262,baseline,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,182315,18.55551990999955,spot_peer,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,182315,52.60688116675877,spot_baseline,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,185690,53.60529002402098,spot_baseline,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,185690,19.267336888298576,spot_peer,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,185690,23.28719855898915,peer,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,185690,0.1873136471339321,relative_legacy,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,185690,53.295276204311975,baseline,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,185698,25.257133195829716,baseline,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,185698,12.236463673822188,peer,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,185698,29.39260152051883,spot_peer,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,185698,0.126983784562593,relative_legacy,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,185698,67.80719051126377,spot_baseline,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,187708,49.978212014731184,spot_baseline,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,187708,9.636247696535015,peer,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,187708,27.023854443760214,baseline,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,187708,16.681406595465244,spot_peer,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,187708,0.0560631799377098,relative_legacy,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,188107,27.22710800302751,spot_peer,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,188107,34.11275014263358,baseline,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,188107,0.132264975714603,relative_legacy,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,188107,14.95127083182038,peer,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,188107,64.76982560691188,spot_baseline,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,188389,41.35940824091752,spot_baseline,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,188389,10.53661850168634,spot_peer,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,188389,6.511092173689685,peer,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,188389,0.0368334470515459,relative_legacy,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,188389,18.78238731490221,baseline,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,189585,-0.4794506787816871,relative_legacy,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,189585,-14.381528323231624,baseline,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,189585,-29.787710526704675,spot_peer,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,189585,-25.332319777194627,peer,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,189585,-15.200309344505014,spot_baseline,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,189588,0.0,spot_baseline,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,189588,-18.950628916185387,spot_peer,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,189588,0.0066567750481735,baseline,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,189588,-14.876039277060816,peer,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,189588,-0.3346460529281642,relative_legacy,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,189869,8.035409714756549,spot_peer,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,189869,30.13131141518306,baseline,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,189869,-0.0017029558028326,relative_legacy,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,189869,8.215314232127122,peer,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,190710,37.85116232537298,spot_baseline,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,190710,8.035409714756549,spot_peer,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,190710,11.055241685367085,peer,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,190710,0.0225984151691578,relative_legacy,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,190710,36.12734223923732,baseline,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,190772,0.1863034363315168,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,190772,26.788484127849024,spot_peer,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,190772,21.209234920526328,peer,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,190772,47.32170077930191,baseline,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,190772,64.15460290875237,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191026,34.482849699744115,spot_baseline,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191026,0.7961591474581344,peer,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191026,-0.0082967098510341,relative_legacy,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191026,4.9547524048611775,baseline,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191026,5.633966560780323,spot_peer,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191046,4.297758169781895,baseline,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191046,-0.0830830037774269,relative_legacy,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191046,-9.147296136311963,spot_peer,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191046,-2.768239671567573,peer,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191046,13.750352374993504,spot_baseline,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191284,26.303440583379377,spot_baseline,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191284,15.859598740938404,baseline,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191284,-0.0738059827922831,relative_legacy,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191284,-0.1975545030929193,spot_peer,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191284,0.6269996861838818,peer,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191471,-0.1586515846798192,relative_legacy,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191471,-5.036907983813877,peer,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191471,8.785947080730697,baseline,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191471,-9.147296136311963,spot_peer,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191471,13.750352374993504,spot_baseline,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191935,60.40713236688608,spot_baseline,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191935,24.116719812085066,spot_peer,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191935,48.10498920782075,baseline,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191935,21.148947153754808,peer,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191935,0.1779551770738197,relative_legacy,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191975,25.084297764058928,baseline,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191975,0.0038134715942049,relative_legacy,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191975,6.63742111018919,peer,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191975,8.980504966066878,spot_peer,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,191975,39.17677199559965,spot_baseline,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192049,2.759460619047575,peer,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192049,-0.1975545030929193,spot_peer,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192049,-0.0936051035445679,relative_legacy,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192049,24.019427305368968,baseline,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192418,-3.684571246877271,spot_peer,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192418,0.8543360761511707,baseline,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192418,-0.0070877706283501,relative_legacy,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192418,-0.1552564204770517,peer,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192418,21.412480535284764,spot_baseline,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192472,0.0,spot_baseline,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192472,-15.798429962349822,peer,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192472,0.0,baseline,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192472,-0.3456391149091875,relative_legacy,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192472,-18.950628916185387,spot_peer,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192924,-9.147296136311963,spot_peer,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192924,8.069662427927058,baseline,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192924,-0.1456195642276333,relative_legacy,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192924,-4.694822671265228,peer,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,192924,13.750352374993504,spot_baseline,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,193275,53.00707422250839,spot_baseline,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,193275,18.84083810365129,spot_peer,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,193275,0.1481875169528957,relative_legacy,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,193275,20.063817519659377,peer,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,193275,48.2137534415365,baseline,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,195286,0.835197562262998,peer,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,195286,4.101013627351384,baseline,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,195286,-0.0027179993483526,relative_legacy,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,195286,8.035409714756549,spot_peer,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,195286,37.85116232537298,spot_baseline,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,204737,-51.45731728297583,spot_baseline,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,204737,-0.4175653845638913,relative_legacy,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,204737,-25.11871530553026,peer,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,204737,-23.56368216655899,baseline,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,204737,-55.637194578455,spot_peer,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,208405,-0.6367207352708962,relative_legacy,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,208405,-36.7232797486853,peer,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,208405,-30.26468174424115,baseline,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,208405,-41.90253705136125,spot_peer,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,208405,-32.19280948873623,spot_baseline,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,215725,-15.200309344505014,spot_baseline,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,215725,-14.138435250592943,baseline,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,215725,-0.475183729104187,relative_legacy,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,215725,-29.787710526704675,spot_peer,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,215725,-24.958110496626094,peer,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,216863,25.35686214533988,baseline,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,216863,3.1032592831804693,peer,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,216863,-0.1975545030929193,spot_peer,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,216863,-0.0876197313359043,relative_legacy,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,216863,26.303440583379377,spot_baseline,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,218269,-32.19280948873623,spot_baseline,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,218269,-41.90253705136125,spot_peer,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,218269,-0.6606057447127389,relative_legacy,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,218269,-38.59707770603419,peer,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,218269,-31.71636934506503,baseline,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,218666,15.229710943100285,peer,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,218666,12.069540210522606,spot_peer,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,218666,0.0784715537901438,relative_legacy,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,218666,42.19136050522324,baseline,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,218666,43.50951516200971,spot_baseline,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,218945,26.303440583379377,spot_baseline,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,218945,24.52133503993268,baseline,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,218945,2.952448029943887,peer,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,218945,-0.0887366670631426,relative_legacy,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,218945,-0.1975545030929193,spot_peer,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,219459,15.319001916960133,baseline,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,219459,26.788484127849024,spot_peer,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,219459,0.0560149961570541,relative_legacy,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,219459,6.444015305383461,peer,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,219459,64.15460290875237,spot_baseline,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,219886,20.674323403791465,spot_baseline,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,219886,-0.0838750920632359,relative_legacy,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,219886,25.905379606450524,baseline,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,219886,-4.210841396653633,spot_peer,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,219886,3.582473293750538,peer,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,220077,10.965857022348722,baseline,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,220077,-7.5595059303493715,peer,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,220077,-11.034636113612184,spot_peer,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,220077,-0.2340539559540099,relative_legacy,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,220077,11.103131238874395,spot_baseline,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,221727,-25.153876699596427,spot_baseline,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,221727,-36.884120165362525,spot_peer,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,221727,-23.5046626023336,baseline,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,221727,-0.5690136848165043,relative_legacy,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,221727,-31.765388821933435,peer,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,222046,4.291762750262249,baseline,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,222046,0.0072217366568268,relative_legacy,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,222046,15.657943993425082,spot_peer,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,222046,1.3580165058319102,peer,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,222046,48.54268271702416,spot_baseline,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,222142,77.52639305937376,spot_baseline,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,222142,36.321920445275566,spot_peer,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,222142,0.1982836980192086,relative_legacy,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,222142,22.81726884623809,peer,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29208,"In the 2024 US elections, will Democrats win both the White House and the House of Representatives?",2024-10-29 12:48:39.879183+00,222142,50.99424351870863,baseline,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29317 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,182315,43.50846290532797,spot_peer,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,182315,21.412480535284736,spot_baseline,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,182315,17.99518450627299,baseline,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,182315,0.5134614568013389,relative_legacy,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,182315,35.8837567082588,peer,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,185690,-0.3992554239444522,relative_legacy,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,185690,-79.39602353543226,baseline,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,185690,-79.83661388303496,spot_baseline,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,185690,-31.122044406205013,peer,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,185690,-28.67721926298675,spot_peer,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,185698,-173.6965594166206,spot_baseline,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,185698,-63.82242250419663,baseline,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,185698,-35.95269446540104,peer,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,185698,-0.5086354904968667,relative_legacy,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,185698,-95.59479749464782,spot_peer,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,187708,-18.63024528859956,spot_peer,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,187708,-9.618165320579063,peer,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,187708,-0.1462450684526711,relative_legacy,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,187708,-35.956645687744285,baseline,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,187708,-65.74452545226798,spot_baseline,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,188107,-10.946557371630176,baseline,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,188107,-20.645087746742632,spot_baseline,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,188107,7.917096985960991,peer,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,188107,0.0959464186970733,relative_legacy,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,188107,13.523461318693476,spot_peer,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,188389,-0.040830542997287,relative_legacy,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,188389,-69.43212567577125,spot_baseline,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,188389,-20.72544483732096,baseline,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,188389,-1.718968032325697,peer,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,188389,-21.25932497792318,spot_peer,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,189585,-15.200309344504996,spot_baseline,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,189585,17.405323625500593,spot_peer,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,189585,0.2411609173804237,relative_legacy,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,189585,15.263071417539315,peer,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,189585,-14.382769019108864,baseline,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,189588,0.0806970705639782,relative_legacy,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,189588,5.290497100844027,spot_peer,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,189588,-32.19280948873623,spot_baseline,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,189588,-30.36079118887494,baseline,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,189588,3.666460607525342,peer,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,189869,-7.50599984102699,peer,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,189869,-0.0877695982476585,relative_legacy,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,189869,-8.444160426249756,spot_peer,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,189869,-40.963582535885074,baseline,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,190710,-27.35733511430004,baseline,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,190710,-28.63041851566411,spot_baseline,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,190710,7.830308681567932,spot_peer,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,190710,6.056961840342338,peer,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,190710,0.1140215999159137,relative_legacy,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,190772,-55.63933485243852,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,190772,-0.1164463424705204,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,190772,-41.454041490137406,baseline,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,190772,-9.01013655792528,peer,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,190772,-11.425735647498538,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191026,2.3953776248123315,peer,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191026,-18.442457113742744,spot_baseline,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191026,0.0336953371720253,relative_legacy,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191026,-2.650083683346117,baseline,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191026,15.093829880717424,spot_peer,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191046,0.1738679531437602,relative_legacy,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191046,4.326586045490935,baseline,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191046,12.856247359757075,peer,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191046,13.750352374993504,spot_baseline,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191046,38.04573801589329,spot_peer,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191284,3.480037553560476,peer,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191284,0.0374835900193966,relative_legacy,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191284,5.290497100844027,spot_peer,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191284,-19.410469574919595,baseline,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191284,-32.19280948873623,spot_baseline,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191471,-47.39311883324123,spot_baseline,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191471,-5.546584509675263,spot_peer,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191471,-3.467089420726734,peer,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191471,-0.0541658021108902,relative_legacy,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191471,-30.31654522638067,baseline,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191935,-44.30828006900127,baseline,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191935,-11.425735647498538,spot_peer,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191935,-9.905672078680004,peer,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191935,-55.63933485243852,spot_baseline,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191935,-0.1210865850493114,relative_legacy,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191975,-25.51115048756838,baseline,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191975,0.0723117527617616,relative_legacy,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191975,-31.353682462822164,spot_baseline,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191975,3.986324344427945,peer,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,191975,5.888753876763548,spot_peer,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192049,5.658352836636751,spot_baseline,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192049,5.175756320281223,baseline,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192049,32.27653573178595,spot_peer,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192049,0.4235022422665719,relative_legacy,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192049,28.605512778063133,peer,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192418,21.87807799644516,spot_peer,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192418,0.009075173823239,relative_legacy,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192418,0.8967101056398694,peer,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192418,-0.3579757995955213,baseline,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192418,-8.926733809708741,spot_baseline,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192472,24.910652950419717,peer,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192472,26.164412483360728,spot_peer,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192472,0.365719314237544,relative_legacy,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192472,-2.914634565951651,spot_baseline,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192472,-2.906072450373239,baseline,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192924,26.303440583379377,spot_baseline,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192924,28.70263270018025,peer,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192924,46.99547964911234,spot_peer,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192924,15.817608470565244,baseline,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,192924,0.389022155957809,relative_legacy,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,193275,-3.267284080107225,peer,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,193275,-0.0162234580835302,relative_legacy,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,193275,-4.976737385326242,spot_peer,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,193275,-46.59383975788815,spot_baseline,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,193275,-40.11669871423626,baseline,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,195286,-24.299658922767744,spot_peer,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,195286,-73.69655941662063,spot_baseline,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,195286,-2.4323666661169385,peer,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,195286,-0.0338631113509098,relative_legacy,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,195286,-7.916812300541276,baseline,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,204737,-332.1928094887362,spot_baseline,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,204737,-208.5949186147962,spot_peer,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,204737,-153.31451327801634,baseline,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,204737,-1.349850594863837,relative_legacy,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,204737,-95.57405510854517,peer,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,208405,-43.05273333586021,spot_peer,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,208405,-42.363922262490654,peer,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,208405,-0.5564890435459028,relative_legacy,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,208405,-100.0,spot_baseline,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,208405,-94.03653023959336,baseline,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,215725,-47.89975977671238,baseline,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,215725,-0.0989409477279085,relative_legacy,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,215725,-9.255081468430753,peer,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,215725,-8.444160426249756,spot_peer,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,216863,13.260816367639787,baseline,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,216863,13.750352374993504,spot_baseline,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,216863,38.04573801589329,spot_peer,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,216863,35.628680081078365,peer,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,216863,0.5191602895915169,relative_legacy,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,218269,45.3931248500056,peer,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,218269,25.91922041963588,baseline,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,218269,0.6503288841419669,relative_legacy,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,218269,46.99547964911234,spot_peer,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,218269,26.303440583379377,spot_baseline,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,218666,-28.61806381740424,peer,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,218666,-53.95195299599893,spot_baseline,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,218666,-10.222714414713176,spot_peer,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,218666,-75.58984115360222,baseline,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,218666,-0.3648097957543946,relative_legacy,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,218945,-0.3986834088793586,relative_legacy,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,218945,-30.95596798590333,peer,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,218945,-31.39606856142559,spot_peer,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,218945,-78.02309516322936,baseline,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,218945,-83.65012677171204,spot_baseline,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,219459,7.224776929083627,baseline,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,219459,12.471531166486791,peer,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,219459,49.813659851318405,spot_peer,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,219459,0.1775106919139252,relative_legacy,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,219459,30.25627700204313,spot_baseline,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,219886,0.6242719319174299,relative_legacy,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,219886,43.17313842936922,peer,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,219886,23.34116128041256,baseline,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,219886,26.783539209761496,spot_baseline,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,219886,47.33776663007316,spot_peer,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,220077,-46.81551015431915,baseline,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,220077,-5.546584509675263,spot_peer,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,220077,-7.4334196206849406,peer,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,220077,-0.0758716908866749,relative_legacy,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,220077,-47.39311883324123,spot_baseline,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,221727,-0.3995900038841522,relative_legacy,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,221727,-83.65012677171204,spot_baseline,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,221727,-78.17197514051813,baseline,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,221727,-31.0222733902892,peer,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,221727,-31.39606856142559,spot_peer,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,222046,37.85116232537298,spot_baseline,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,222046,3.3817113914841843,baseline,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,222046,0.0694152235146515,relative_legacy,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,222046,5.01894753944844,peer,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,222046,55.2284438669618,spot_peer,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,222142,52.32098160710466,spot_peer,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,222142,28.07172114487126,baseline,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,222142,42.91693947996659,peer,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,222142,33.773097091057124,spot_baseline,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29209,"In the 2024 US elections, will Republicans win both the White House and the House of Representatives?",2024-10-29 12:48:39.882695+00,222142,0.6112584937430365,relative_legacy,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29318 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,182315,-43.28267233486535,baseline,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,182315,-0.4208238948231323,relative_legacy,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,182315,-29.43642675460592,spot_peer,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,182315,-24.18405241556657,peer,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,182315,-51.45731728297583,spot_baseline,RyansAGI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,185690,-16.004041251046825,spot_baseline,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,185690,-3.267810040106168,peer,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,185690,-0.1334649639490278,relative_legacy,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,185690,-4.159964479370981,spot_peer,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,185690,-15.920354235725718,baseline,annabot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,185698,4.914331174800555,peer,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,185698,-3.586942702855587,spot_peer,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,185698,0.0458968936070844,relative_legacy,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,185698,4.001202561928794,baseline,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,185698,-15.200309344505014,spot_baseline,RonanMcGovern,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,187708,-0.8682243099800881,spot_baseline,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,187708,0.0134536828252152,relative_legacy,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,187708,6.631137182748656,spot_peer,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,187708,3.5853170098311664,peer,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,187708,-0.4814034575239219,baseline,twsummerbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,188107,-2.6244170057738927,baseline,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,188107,1.8689663525832867,peer,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,188107,3.763122163879345,spot_peer,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,188107,-0.0106948371297016,relative_legacy,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,188107,-4.890960048094622,spot_baseline,Cassie,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,188389,-18.9351252217354,spot_baseline,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,188389,-2.98409508582132,peer,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,188389,-8.141810063363732,baseline,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,188389,-0.0697061217134957,relative_legacy,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,188389,-6.249684857931568,spot_peer,Panshul42,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,189585,25.811702868020657,peer,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,189585,26.00321332075616,spot_peer,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,189585,0.2739167793695764,relative_legacy,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,189585,24.89504492055282,baseline,mf-bot-1,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,189588,-0.6695104824757246,relative_legacy,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,189588,-69.49982047479041,baseline,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,189588,-45.2919252511239,spot_peer,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,189588,-42.42925238111154,peer,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,189588,-73.69655941662059,spot_baseline,mf-bot-3,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,189869,10.946484775463643,baseline,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,189869,14.294195932943316,peer,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,189869,0.1145843750327759,relative_legacy,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,189869,17.05347168753713,spot_peer,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,189869,13.750352374993504,spot_baseline,VeritasAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,190710,11.103131238874395,spot_baseline,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,190710,15.517968059223444,peer,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,190710,10.6192570203006,baseline,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,190710,15.166131710236913,spot_peer,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,190710,0.1302426316105846,relative_legacy,Bot_Pepa,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,190772,22.47235140182622,peer,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,190772,23.13566371366768,baseline,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,190772,29.37588081112094,spot_peer,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,190772,0.2404203451130273,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,190772,31.034012061215048,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191026,35.61438102252753,spot_baseline,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191026,4.535757156811624,peer,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191026,5.117818617791389,baseline,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191026,0.0526722414393552,relative_legacy,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191026,32.64146120919206,spot_peer,manticAI,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191046,-29.43642675460592,spot_peer,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191046,-0.1546436865504264,relative_legacy,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191046,-16.0589110142608,baseline,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191046,-9.423687508311284,peer,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191046,-51.45731728297583,spot_baseline,archipelago,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191284,-15.200309344505014,spot_baseline,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191284,-0.0660132845222596,relative_legacy,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191284,-9.164882594846045,baseline,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191284,-3.586942702855587,spot_peer,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191284,-2.133899642969619,peer,000_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191471,-8.263072607893466,spot_peer,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191471,-5.1890649028812765,peer,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191471,-13.934158573208466,baseline,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191471,-0.1158246010124927,relative_legacy,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191471,-21.75914350726266,spot_baseline,HSeldon,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191935,-28.63041851566409,spot_baseline,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191935,-22.79990875818856,baseline,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191935,-0.2228036792331536,relative_legacy,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191935,-13.161957646788233,spot_peer,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191935,-9.99531176749995,peer,pgodzinai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191975,0.2796726630573298,relative_legacy,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191975,22.291328696112977,peer,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191975,47.063548587301874,spot_peer,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191975,26.69839813943554,baseline,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,191975,55.84309179720314,spot_baseline,jkraybill_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192049,13.750352374993504,spot_baseline,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192049,17.05347168753713,spot_peer,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192049,0.1494155183071411,relative_legacy,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192049,16.710538228002562,peer,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192049,12.599127670677753,baseline,gnosis-ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192418,-1.5972041896042062,baseline,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192418,-0.0144779866346006,relative_legacy,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192418,-20.977650935945924,spot_peer,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192418,-0.863746891162219,peer,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192418,-39.592867633113926,spot_baseline,InstitutPelFutur,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192472,-51.45731728297583,spot_baseline,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192472,-29.102243448004916,peer,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192472,-0.4861438307373489,relative_legacy,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192472,-51.34220372176825,baseline,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192472,-29.43642675460592,spot_peer,bestworldbot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192924,-0.168285547356578,relative_legacy,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192924,-9.46843311591887,peer,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192924,-19.375791940333876,baseline,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192924,-15.701769227512148,spot_peer,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,192924,-32.19280948873623,spot_baseline,acm_bot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,193275,32.64146120919206,spot_peer,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,193275,0.3360622961678349,relative_legacy,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,193275,30.34089358152726,peer,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,193275,31.18954621780657,baseline,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,193275,35.61438102252753,spot_baseline,histerio,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,195286,0.0,spot_baseline,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,195286,0.0,baseline,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,195286,0.6816136794958587,peer,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,195286,7.250138907663704,spot_peer,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,195286,0.0014940552614413,relative_legacy,Unwrapped80T,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,204737,22.53356994469781,baseline,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,204737,41.85871181727416,spot_peer,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,204737,0.2373447559160147,relative_legacy,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,204737,19.195769195671907,peer,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,204737,48.54268271702416,spot_baseline,SynapseSeer,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,208405,-15.200309344505014,spot_baseline,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,208405,-0.1170151946308333,relative_legacy,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,208405,-3.586942702855587,spot_peer,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,208405,-14.27796229680922,baseline,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,208405,-2.5158986520175013,peer,mf-bot-4,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,215725,-14.161089816811517,baseline,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,215725,-2.4812952606552705,peer,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,215725,-3.586942702855587,spot_peer,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,215725,-0.1158526531601644,relative_legacy,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,215725,-15.200309344505014,spot_baseline,estr.ai,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,216863,-14.61894954994567,peer,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,216863,-15.701769227512148,spot_peer,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,216863,-32.19280948873623,spot_baseline,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,216863,-0.2852415612492581,relative_legacy,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,216863,-31.05378352594804,baseline,tombot61,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,218269,-3.586942702855587,spot_peer,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,218269,-0.1266683276263329,relative_legacy,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,218269,-14.981148365526082,baseline,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,218269,-15.200309344505014,spot_baseline,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,218269,-2.8694229045758437,peer,tombot37,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,218666,0.3740404762993986,relative_legacy,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,218666,36.11776310918767,spot_peer,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,218666,33.39899842658924,peer,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,218666,35.11726890584775,baseline,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,218666,40.49031221451307,spot_baseline,GreeneiBot2,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,218945,-37.70696490798233,spot_baseline,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,218945,-0.3258718099416083,relative_legacy,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,218945,-35.18596955654665,baseline,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,218945,-17.660020993415827,peer,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,218945,-19.633093974732493,spot_peer,SeidrBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,219459,7.250138907663704,spot_peer,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,219459,1.536024797583492,peer,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,219459,0.002319637556951,relative_legacy,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,219459,0.0,baseline,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,219459,0.0,spot_baseline,karamazov,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,219886,52.189499423953336,spot_baseline,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,219886,45.43751276878586,baseline,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,219886,40.80454755228087,peer,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,219886,44.4587148419418,spot_peer,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,219886,0.4769082125387202,relative_legacy,SaraBase,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,220077,11.284269403429784,spot_peer,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,220077,12.148251069965186,peer,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,220077,5.590517111418995,baseline,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,220077,0.0794371601549503,relative_legacy,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,220077,5.658352836636751,spot_baseline,mmBot,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,221727,-29.43642675460592,spot_peer,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,221727,-26.97480136595613,peer,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,221727,-0.4546899692073063,relative_legacy,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,221727,-48.08907372814258,baseline,mf-bot-5,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,222046,-2.903456372914021,baseline,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,222046,-0.0275405084676988,relative_legacy,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,222046,-1.4935924290376144,peer,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,222046,-15.701769227512148,spot_peer,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,222046,-32.19280948873623,spot_baseline,lookahead,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,222142,-115.49132121019277,spot_baseline,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,222142,-75.08955858763836,spot_peer,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,222142,-96.3042544579476,baseline,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,222142,-0.9521450278036216,relative_legacy,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29210,"In the 2024 US elections, will the party winning the White House differ from the party winning the House of Representatives?",2024-10-29 12:48:40.033587+00,222142,-62.452976828311954,peer,predictomatic,True,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,0.5,2024-10-30 14:30:00+00,29319 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,182315,8.125093201268752,peer,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,182315,0.073615338464135,relative_legacy,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,182315,-163.6142029811227,baseline,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,182315,-194.3416471633633,spot_baseline,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,182315,13.482089706630331,spot_peer,RyansAGI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,185690,39.41433982222731,peer,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,185690,-148.67712006642785,baseline,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,185690,0.4884107001361343,relative_legacy,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,185690,-149.41090702700427,spot_baseline,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,185690,45.5155231482188,spot_peer,annabot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,185698,115.3516706923548,spot_peer,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,185698,35.27186494652611,peer,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,185698,-51.45731728297583,spot_baseline,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,185698,-16.04843061080423,baseline,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,185698,0.445857802100334,relative_legacy,RonanMcGovern,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,187708,0.7200566133134337,relative_legacy,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,187708,-45.8553331557462,baseline,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,187708,-81.60371651574052,spot_baseline,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,187708,51.975757476142775,peer,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,187708,93.85875358492304,spot_peer,twsummerbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,188107,-20.60035856296946,spot_peer,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,188107,-131.72932677967555,baseline,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,188107,-0.1719654331018769,relative_legacy,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,188107,-242.14637684382768,spot_baseline,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,188107,-12.262291736088333,peer,Cassie,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,188389,-457.3466861883326,spot_baseline,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,188389,-198.87652176083608,baseline,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,188389,-76.5889158056145,peer,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,188389,-1.096895590689216,relative_legacy,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,188389,-174.0277173172489,spot_peer,Panshul42,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,189585,-0.3056432719308299,relative_legacy,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,189585,-17.67711504389001,peer,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,189585,-13.50394892431159,spot_peer,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,189585,-219.7559831788584,baseline,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,189585,-232.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,189588,-124.688161474944,baseline,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,189588,50.65003456430492,peer,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,189588,-132.19280948873623,spot_baseline,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,189588,0.6390641241036179,relative_legacy,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,189588,57.79118964756849,spot_peer,mf-bot-3,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,189869,-264.46091944216295,baseline,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,189869,-70.78220192827997,peer,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,189869,-332.1928094887362,spot_baseline,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,189869,-1.014375081119992,relative_legacy,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,189869,-84.79908749619167,spot_peer,VeritasAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,190710,-8.624986501135574,peer,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,190710,-218.44245711374276,spot_baseline,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,190710,-0.1793511975358183,relative_legacy,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,190710,-209.11717399834745,baseline,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,190710,-3.700616144438185,spot_peer,Bot_Pepa,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,190772,13.620681333966845,peer,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,190772,21.10462398529888,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,190772,0.1667901674579457,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,190772,-137.0086878597035,baseline,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,190772,-183.65012677171205,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191026,72.16670372044194,spot_peer,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191026,9.91303669650611,peer,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191026,-16.099663658708202,baseline,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191026,0.0900445317589616,relative_legacy,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191026,-112.0294233717712,spot_baseline,manticAI,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191046,-41.6339056742732,baseline,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191046,0.1971310094195542,relative_legacy,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191046,-132.19280948873623,spot_baseline,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191046,17.436380488771114,peer,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191046,57.79118964756849,spot_peer,archipelago,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191284,-0.7292719370381964,relative_legacy,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191284,-52.59843514679728,peer,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191284,-200.291365014809,baseline,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191284,-84.79908749619167,spot_peer,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191284,-332.1928094887362,spot_baseline,000_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191471,-64.38561897747248,spot_baseline,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191471,-41.279981745053306,baseline,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191471,66.96875171436349,peer,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191471,0.9310056768189904,relative_legacy,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191471,106.1344200842727,spot_peer,HSeldon,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191935,-13.50394892431159,spot_peer,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191935,-232.19280948873623,spot_baseline,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191935,-13.400581994936536,peer,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191935,-184.3140949956567,baseline,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191935,-0.2171954241023955,relative_legacy,pgodzinai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191975,-0.3260665024274325,relative_legacy,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191975,-264.9879977402495,spot_baseline,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191975,-160.425104503955,baseline,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191975,-23.638653019576108,peer,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,191975,-36.8853238331369,spot_peer,jkraybill_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192049,-236.894698318754,peer,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192049,-564.3856189774725,spot_baseline,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192049,-518.3141540572267,baseline,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192049,-250.3412727751277,spot_peer,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192049,-3.340542324183272,relative_legacy,gnosis-ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192418,-83.65012677171204,spot_baseline,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192418,-3.3949482759537912,baseline,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192418,92.39976255717896,spot_peer,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192418,3.660108199992728,peer,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192418,0.0324246097986224,relative_legacy,InstitutPelFutur,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192472,-147.39311883324126,spot_baseline,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192472,-147.16837796299623,baseline,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192472,0.5084894844445987,relative_legacy,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192472,40.883398743486296,peer,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192472,46.9541080370492,spot_peer,bestworldbot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192924,-200.1240345446884,baseline,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192924,-332.1928094887362,spot_baseline,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192924,-84.79908749619167,spot_peer,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192924,-0.7285775601841615,relative_legacy,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,192924,-52.55254248013785,peer,acm_bot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,193275,-179.46052991376254,baseline,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,193275,-185.72598278839175,spot_baseline,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,193275,0.1345250742768633,relative_legacy,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,193275,14.08578652215006,peer,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,193275,19.624639561654348,spot_peer,histerio,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,195286,-13.50394892431159,spot_peer,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,195286,-232.19280948873623,spot_baseline,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,195286,-1.73853893060889,peer,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,195286,-0.061298785181529,relative_legacy,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,195286,-24.604563180084185,baseline,Unwrapped80T,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,204737,-17.07149316859707,peer,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,204737,-0.2659227208226547,relative_legacy,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,204737,-564.3856189774725,spot_baseline,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,204737,-38.29344279325149,baseline,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,204737,-250.3412727751277,spot_peer,SynapseSeer,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,208405,0.247586768824531,relative_legacy,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,208405,28.20103362395672,spot_peer,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,208405,-163.39979431675584,baseline,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,208405,-173.6965594166206,spot_baseline,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,208405,22.359600601883976,peer,mf-bot-4,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,215725,-0.2979778103724612,relative_legacy,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,215725,-216.4898080688106,baseline,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,215725,-17.079765897140362,peer,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,215725,-232.19280948873623,spot_baseline,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,215725,-13.50394892431159,spot_peer,estr.ai,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,216863,-1.2803658260944903,relative_legacy,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,216863,-332.1928094887362,spot_baseline,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,216863,-88.38124123298103,peer,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,216863,-84.79908749619167,spot_peer,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,216863,-320.5565456323969,baseline,tombot61,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,218269,-171.2291440303259,baseline,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,218269,-173.6965594166206,spot_baseline,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,218269,28.20103362395672,spot_peer,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,218269,22.04701546855862,peer,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,218269,0.2490775865128088,relative_legacy,tombot37,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,218666,138.889660999322,spot_peer,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,218666,-79.94465799009787,baseline,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,218666,-18.442457113742744,spot_baseline,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,218666,87.6829308379933,peer,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,218666,1.1563550695080578,relative_legacy,GreeneiBot2,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,218945,-162.16292285859856,baseline,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,218945,-173.6965594166206,spot_baseline,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,218945,22.334894929436054,peer,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,218945,0.2474241759656119,relative_legacy,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,218945,28.20103362395672,spot_peer,SeidrBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,219459,-78.16083960775579,spot_peer,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,219459,-322.8818690495881,spot_baseline,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,219459,-19.28323691309972,peer,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,219459,-77.10193227095809,baseline,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,219459,-0.2992004930761627,relative_legacy,karamazov,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,219886,-184.0629153339797,spot_baseline,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,219886,28.457843799450224,peer,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,219886,-163.50707592274665,baseline,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,219886,0.330341688376284,relative_legacy,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,219886,20.810325807821275,spot_peer,SaraBase,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,220077,21.10462398529888,spot_peer,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,220077,-183.65012677171205,spot_baseline,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,220077,14.82733470878392,peer,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,220077,-181.4763213360389,baseline,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,220077,0.1501448405787651,relative_legacy,mmBot,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,221727,0.2473321080133974,relative_legacy,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,221727,-162.33771212061018,baseline,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,221727,28.20103362395672,spot_peer,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,221727,-173.6965594166206,spot_baseline,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,221727,22.328776273212515,peer,mf-bot-5,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,222046,-6.722739276210861,baseline,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,222046,0.0903808531615874,relative_legacy,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,222046,8.838171382975489,peer,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,222046,-73.69655941662063,spot_baseline,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,222046,99.4961721958368,spot_peer,lookahead,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,222142,71.98995484055084,spot_peer,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,222142,127.69289640563667,peer,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,222142,1.205767871415411,baseline,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,222142,1.731069980982064,relative_legacy,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29211,"Will Joe Rogan endorse Donald Trump in the 2024 election before November 5, 2024?",2024-10-29 12:48:40.040148+00,222142,-112.2773349172588,spot_baseline,predictomatic,True,yes,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,2024-10-30 14:30:00+00,29320 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,182315,83.18772411916731,spot_baseline,RyansAGI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,182315,69.3219841311903,baseline,RyansAGI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,182315,5.91442948450931,spot_peer,RyansAGI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,182315,0.0394244909175311,relative_legacy,RyansAGI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,182315,4.6683398939875005,peer,RyansAGI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,185690,33.394100461492485,baseline,annabot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,185690,-0.0337959480062566,relative_legacy,annabot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,185690,-1.6312181844992557,peer,annabot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,185690,-3.35398517240967,spot_peer,annabot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,185690,70.22142510104406,spot_baseline,annabot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,185698,-0.00291048394224,relative_legacy,RonanMcGovern,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,185698,23.698188614034045,baseline,RonanMcGovern,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,185698,1.1722146814462788,spot_peer,RonanMcGovern,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,185698,0.3790061871608446,peer,RonanMcGovern,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,185699,-20.333962857525247,spot_peer,MWG,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,185699,-13.009684742808542,peer,MWG,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,185699,29.448990903350783,baseline,MWG,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,185699,-0.1952878958479691,relative_legacy,MWG,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,185699,46.46682670034443,spot_baseline,MWG,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,187708,60.7862902831235,spot_baseline,twsummerbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,187708,-5.407138667458389,peer,twsummerbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,187708,32.30304136630345,baseline,twsummerbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,187708,-0.085133043390131,relative_legacy,twsummerbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,187708,-10.098295303943171,spot_peer,twsummerbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,188107,0.0482912368149252,relative_legacy,Cassie,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,188107,41.74784552511066,baseline,Cassie,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,188107,4.255464844945655,peer,Cassie,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,188107,8.958931033848753,spot_peer,Cassie,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,188107,87.44691179161411,spot_baseline,Cassie,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,188389,92.2958964236172,spot_baseline,Panshul42,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,188389,12.425024185920554,spot_peer,Panshul42,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,188389,0.0485533229280113,relative_legacy,Panshul42,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,188389,4.215341684006612,peer,Panshul42,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,188389,31.338838011950138,baseline,Panshul42,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,188909,-36.4801472413403,spot_peer,silicoqr,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,188909,-11.02077480247544,peer,silicoqr,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,188909,-0.162257641539383,relative_legacy,silicoqr,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,188909,7.223570953393495,baseline,silicoqr,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,188909,23.87868595871165,spot_baseline,silicoqr,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,189585,0.2179701462059389,peer,mf-bot-1,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,189585,1.1722146814462788,spot_peer,mf-bot-1,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,189585,-0.0251242285698343,relative_legacy,mf-bot-1,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,189585,72.31964328706212,baseline,mf-bot-1,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,189588,0.1261907494681452,relative_legacy,mf-bot-3,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,189588,87.3012378581768,baseline,mf-bot-3,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,189588,11.209110355738344,peer,mf-bot-3,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,189588,12.642358302188166,spot_peer,mf-bot-3,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,189869,7.066676108690979,spot_peer,VeritasAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,189869,4.642802278474485,peer,VeritasAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,189869,0.0481932003669062,relative_legacy,VeritasAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,189869,56.58390739223478,baseline,VeritasAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,190710,0.067937263074171,relative_legacy,Bot_Pepa,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,190710,8.20619046543256,spot_peer,Bot_Pepa,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,190710,6.977343347537607,peer,Bot_Pepa,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,190710,81.7642305150622,baseline,Bot_Pepa,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,190710,86.39384504239716,spot_baseline,Bot_Pepa,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,190772,81.55754288625727,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,190772,59.87884092376517,baseline,Jay_Bailey_Bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,190772,3.345137957464769,peer,Jay_Bailey_Bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,190772,4.749162848947427,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,190772,0.0265594670704273,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191026,13.131621181943498,baseline,manticAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191026,-0.0026190776637101,relative_legacy,manticAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191026,-0.0482137634008932,spot_peer,manticAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191026,0.0170756020907172,peer,manticAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191026,74.84612330040356,spot_baseline,manticAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191046,35.47408205896877,baseline,archipelago,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191046,-5.0796994433735625,spot_peer,archipelago,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191046,-0.047100248935973,relative_legacy,archipelago,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191046,-2.688852600865457,peer,archipelago,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191471,45.23696548006601,baseline,HSeldon,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191471,-1.67049368816209,peer,HSeldon,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191471,-0.0374711271995732,relative_legacy,HSeldon,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191471,-2.5332737699915047,spot_peer,HSeldon,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191471,71.36958148433588,spot_baseline,HSeldon,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191935,67.80719051126377,spot_baseline,pgodzinai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191935,-5.460322189548854,peer,pgodzinai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191935,-0.1029693166650439,relative_legacy,pgodzinai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191935,60.89231201693193,baseline,pgodzinai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191935,-5.0796994433735625,spot_peer,pgodzinai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191975,14.43588176934968,spot_peer,jkraybill_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191975,83.45976577557455,baseline,jkraybill_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191975,12.27937670284773,peer,jkraybill_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191975,0.14291152696013,relative_legacy,jkraybill_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,191975,95.10903995190536,spot_baseline,jkraybill_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192049,58.496250072115615,spot_baseline,gnosis-ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192049,-10.172101815424892,peer,gnosis-ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192049,-11.735234435685587,spot_peer,gnosis-ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192049,-0.1660521102670475,relative_legacy,gnosis-ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192049,48.67919438085024,baseline,gnosis-ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192418,11.55107827747654,spot_peer,InstitutPelFutur,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192418,0.1124456951560182,relative_legacy,InstitutPelFutur,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192418,86.38522247601982,baseline,InstitutPelFutur,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192418,10.21407028978772,peer,InstitutPelFutur,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192418,91.07326619029126,spot_baseline,InstitutPelFutur,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192459,99.85565831303312,spot_baseline,biak_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192459,77.82587525380762,baseline,biak_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192459,13.811759287236343,peer,biak_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192459,17.828802689003513,spot_peer,biak_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192459,0.1684352832811309,relative_legacy,biak_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192472,0.2004062806093224,peer,bestworldbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192472,1.1722146814462788,spot_peer,bestworldbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192472,-0.025278082212019,relative_legacy,bestworldbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192472,73.3553766710839,baseline,bestworldbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192924,84.79969065549501,spot_baseline,acm_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192924,4.184071164717801,peer,acm_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192924,7.066676108690979,spot_peer,acm_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192924,0.0445953247422164,relative_legacy,acm_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,192924,50.599746863237385,baseline,acm_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,193275,34.20490925946703,baseline,histerio,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,193275,-0.327305918415652,relative_legacy,histerio,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,193275,-21.77237613446919,peer,histerio,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,193275,-25.0744193635575,spot_peer,histerio,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,193275,39.83503703459648,spot_baseline,histerio,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,204737,88.75252707415875,spot_baseline,SynapseSeer,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,204737,9.89219532184029,spot_peer,SynapseSeer,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,204737,35.76356800462465,baseline,SynapseSeer,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,204737,3.961840967552236,peer,SynapseSeer,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,204737,0.0417101821760642,relative_legacy,SynapseSeer,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,208405,86.79350416665312,baseline,mf-bot-4,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,208405,12.642358302188166,spot_peer,mf-bot-4,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,208405,0.1254942576986215,relative_legacy,mf-bot-4,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,208405,11.159530518209928,peer,mf-bot-4,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,216863,76.55347463629771,spot_baseline,tombot61,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,216863,1.1722146814462788,spot_peer,tombot61,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,216863,73.69760893145751,baseline,tombot61,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,216863,0.1977919236878414,peer,tombot61,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,216863,-0.025278082212019,relative_legacy,tombot61,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,218269,-0.0254406641337937,relative_legacy,tombot37,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,218269,75.16851777663649,baseline,tombot37,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,218269,1.1722146814462788,spot_peer,tombot37,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,218269,0.1753189942447591,peer,tombot37,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,218269,76.55347463629771,spot_baseline,tombot37,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,218666,80.57051848385115,spot_baseline,GreeneiBot2,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,218666,0.012951643843832,relative_legacy,GreeneiBot2,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,218666,76.67799921306523,baseline,GreeneiBot2,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,218666,4.043629880348537,spot_peer,GreeneiBot2,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,218666,2.9827742197451466,peer,GreeneiBot2,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,219459,22.910141433761904,baseline,karamazov,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,219459,12.642358302188166,spot_peer,karamazov,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,219459,3.127833378410501,peer,karamazov,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,219459,0.036790062963085,relative_legacy,karamazov,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,219459,92.5999418556223,spot_baseline,karamazov,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,219886,11.18325870779828,spot_baseline,SaraBase,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,219886,-45.55494058397025,spot_peer,SaraBase,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,219886,-36.646755329048354,peer,SaraBase,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,219886,8.86715043255652,baseline,SaraBase,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,219886,-0.5314953485503717,relative_legacy,SaraBase,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,220077,1.4059794920747597,peer,mmBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,220077,-0.0088721159817526,relative_legacy,mmBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,220077,2.378368782025384,spot_peer,mmBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,220077,76.9623657245486,baseline,mmBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,220077,78.24085649273731,spot_baseline,mmBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,221727,84.79969065549501,spot_baseline,mf-bot-5,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,221727,5.851372638023986,peer,mf-bot-5,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,221727,0.0524429161661397,relative_legacy,mf-bot-5,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,221727,79.26119623501307,baseline,mf-bot-5,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29248,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-30 13:09:07.550046+00,221727,7.066676108690979,spot_peer,mf-bot-5,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29366 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,182315,-35.845397091247634,spot_baseline,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,182315,9.080862792178714,spot_peer,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,182315,0.2232042161083311,relative_legacy,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,182315,-29.911091520266865,baseline,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,182315,13.110187396058492,peer,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,185690,-6.808712764962869,peer,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,185690,-0.0681221722211854,relative_legacy,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,185690,-74.29893817939764,spot_baseline,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,185690,-35.35514216520554,baseline,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,185690,-18.380796661915344,spot_peer,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,185698,26.303440583379377,spot_baseline,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,185698,53.46455717746189,spot_peer,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,185698,-0.0422302977997273,relative_legacy,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,185698,-3.962669376919798,peer,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,185698,-21.926165365922795,baseline,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,185699,0.4095794519462032,relative_legacy,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,185699,5.658352836636751,spot_baseline,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,185699,38.720833893271305,spot_peer,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,185699,3.647820821900575,baseline,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,185699,28.353900127240525,peer,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,187708,6.846456087080204,baseline,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,187708,12.697285625776551,spot_baseline,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,187708,43.74769929254612,spot_peer,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,187708,25.962897424547315,peer,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,187708,0.3801849725447656,relative_legacy,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,188107,-4.0155075407219964,peer,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,188107,-12.38004468874647,spot_peer,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,188107,-31.97912387751706,baseline,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,188107,-65.89630821649325,spot_baseline,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,188107,-0.0295019886813758,relative_legacy,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,188389,-29.06453807568897,baseline,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,188389,-25.79753497971179,spot_peer,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,188389,-84.68432119385794,spot_baseline,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,188389,-0.0915473000895956,relative_legacy,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,188389,-7.679120049291347,peer,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,188909,79.1665851395038,spot_peer,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,188909,0.3617215541049986,relative_legacy,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,188909,18.915886503924984,baseline,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,188909,62.29303509201767,spot_baseline,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,188909,24.96869258719701,peer,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,189585,45.86493549166686,baseline,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,189585,72.74899024919578,peer,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,189585,1.0631453390540595,relative_legacy,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,189585,69.34674843239152,spot_peer,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,189588,-28.83390773835434,peer,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,189588,-36.7352521256672,spot_peer,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,189588,-100.0,spot_baseline,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,189588,-0.3403441632738904,relative_legacy,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,189588,-94.33624532555602,baseline,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,189869,-100.0,spot_baseline,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,189869,-36.7352521256672,spot_peer,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,189869,-66.72755049527795,baseline,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,189869,-0.2775213589819434,relative_legacy,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,189869,-21.1138760911612,peer,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,190710,-17.73743807860048,peer,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,190710,-83.65012677171204,spot_baseline,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,190710,-0.1863358829301632,relative_legacy,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,190710,-25.058963336460803,spot_peer,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,190710,-79.23105702075527,baseline,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,190772,12.87847424635939,peer,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,190772,11.689364220863135,spot_peer,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,190772,0.2029180615319385,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,190772,-23.651665719323912,baseline,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,190772,-32.19280948873623,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191026,60.91577685536276,spot_peer,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191026,5.001225131769223,baseline,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191026,0.138863478658594,relative_legacy,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191026,10.017930211070396,peer,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191026,36.737106564852944,spot_baseline,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191046,13.750352374993504,spot_baseline,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191046,25.669485388378952,peer,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191046,0.3770655455685959,relative_legacy,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191046,44.4997486391364,spot_peer,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191046,7.228760534939513,baseline,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191284,-30.105121220620827,baseline,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191284,11.689364220863135,spot_peer,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191284,-32.19280948873623,spot_baseline,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191284,0.2953953196057892,relative_legacy,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191284,17.29724961861303,peer,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191471,-4.030814304852992,peer,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191471,-40.84628116716748,baseline,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191471,-0.0429362725284555,relative_legacy,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191471,-11.301183490297891,spot_peer,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191471,-64.38561897747249,spot_baseline,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191935,2.856915219677092,spot_baseline,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191935,0.6139980377962115,relative_legacy,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191935,2.637131353103636,baseline,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191935,40.421041666023285,peer,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,191935,36.72018262314568,spot_peer,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192049,-44.82671833235786,peer,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192049,-132.19280948873626,spot_baseline,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192049,-110.29526714643504,baseline,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192049,-0.5807080833104385,relative_legacy,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192049,-59.725799836828216,spot_peer,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192418,-40.94115459139045,spot_peer,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192418,-33.04388768663365,peer,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192418,-105.88936890535685,spot_baseline,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192418,-0.3974819064471633,relative_legacy,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192418,-100.46061306117684,baseline,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192472,-0.0920584809576093,relative_legacy,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192472,-17.95060688022944,spot_peer,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192472,-73.69655941662059,spot_baseline,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192472,-10.96349371677944,peer,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192472,-70.67338079222087,baseline,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192924,-51.45731728297583,spot_baseline,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192924,1.5828284837479762,peer,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192924,-2.068415625299811,spot_peer,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192924,0.0342593278485761,relative_legacy,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,192924,-30.7254471261423,baseline,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,193275,-96.57842846620878,spot_baseline,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,193275,-34.29173120145892,spot_peer,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,193275,-23.928012411645824,peer,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,193275,-0.2867068952362826,relative_legacy,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,193275,-82.87768829636089,baseline,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,204737,-17.95060688022944,spot_peer,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,204737,-29.832203236151795,baseline,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,204737,-0.0586401325733266,relative_legacy,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,204737,-5.721029468453205,peer,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,204737,-73.69655941662059,spot_baseline,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,208405,-10.797577521266494,peer,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,208405,-0.092202219781547,relative_legacy,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,208405,-17.95060688022944,spot_peer,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,208405,-69.19809865408496,baseline,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,208405,-73.69655941662059,spot_baseline,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,215725,-0.580388981846137,relative_legacy,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,215725,-132.19280948873626,spot_baseline,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,215725,-110.22315496996904,baseline,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,215725,-59.725799836828216,spot_peer,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,215725,-44.79894954381257,peer,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,216863,-96.28608402195904,baseline,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,216863,-0.3443026952343865,relative_legacy,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,216863,-100.0,spot_baseline,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,216863,-29.36953473891425,peer,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,216863,-36.7352521256672,spot_peer,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,218269,77.83076822013106,peer,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,218269,48.54268271702416,spot_baseline,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,218269,47.68988477326624,baseline,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,218269,1.1003798976317345,relative_legacy,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,218269,69.34674843239152,spot_peer,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,218666,0.7906801661792697,relative_legacy,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,218666,18.02025563529256,baseline,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,218666,18.903382439001717,spot_baseline,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,218666,48.179793513290015,spot_peer,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,218666,53.02071699696173,peer,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,218945,-17.95060688022944,spot_peer,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,218945,-10.749566556817948,peer,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,218945,-0.0926437510883132,relative_legacy,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,218945,-68.68288253288301,baseline,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,218945,-73.69655941662059,spot_baseline,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,219459,7.304434250441727,spot_peer,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,219459,-9.48406553962185,baseline,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,219459,0.0406577986355356,relative_legacy,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,219459,2.477066457953944,peer,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,219459,-38.332863955150586,spot_baseline,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,219886,21.016288183828586,spot_peer,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,219886,-15.170194426548864,baseline,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,219886,21.705927734148485,peer,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,219886,-19.13266450967985,spot_baseline,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,219886,0.3306294629247994,relative_legacy,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,220077,-1.1807565599986438,relative_legacy,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,220077,-96.47412739415212,spot_peer,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,220077,-91.1142197930376,peer,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,220077,-180.69959193622464,baseline,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,220077,-183.65012677171205,spot_baseline,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,221727,-93.49242601997054,baseline,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,221727,-36.7352521256672,spot_peer,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,221727,-28.55112109304361,peer,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,221727,-100.0,spot_baseline,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29249,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-30 13:09:07.55596+00,221727,-0.3383363404544613,relative_legacy,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29367 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,182315,-40.36719500385736,spot_peer,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,182315,-42.97219666372615,baseline,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,182315,-0.6702855613844584,relative_legacy,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,182315,-34.88929640605824,peer,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,182315,-51.45731728297583,spot_baseline,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,185690,44.53887399910227,spot_peer,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,185690,67.53643127491456,spot_baseline,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,185690,20.81877818495272,peer,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,185690,0.214326408652519,relative_legacy,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,185690,32.15682273743194,baseline,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,185698,-39.51890619706423,peer,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,185698,-0.6083210981189755,relative_legacy,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,185698,-53.84127616800076,baseline,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,185698,-173.6965594166206,spot_baseline,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,185698,-127.58903357312828,spot_peer,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,185699,50.97283977564734,spot_peer,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,185699,76.55347463629771,spot_baseline,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,185699,0.312838846679815,relative_legacy,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,185699,50.218363624436,baseline,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,185699,32.367829595488395,peer,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,187708,-12.27159808386718,baseline,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,187708,-0.2470943089893704,relative_legacy,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,187708,-11.492557954930664,peer,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,187708,-19.656455479028512,spot_peer,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,187708,-22.43172982609403,spot_baseline,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,188107,15.919859484925396,spot_baseline,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,188107,3.2996613841154026,peer,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,188107,7.812964278848123,baseline,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,188107,-0.0314409376569282,relative_legacy,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,188107,7.708702168983592,spot_peer,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,188389,34.111471117330595,baseline,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,188389,23.05760541058404,peer,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,188389,0.2616949689417818,relative_legacy,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,188389,98.5500430304885,spot_baseline,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,188389,66.6681361802049,spot_peer,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,188909,69.59938131099001,spot_baseline,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,188909,46.01085870615995,spot_peer,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,188909,21.21197421277131,baseline,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,188909,0.1430393552030607,relative_legacy,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,188909,14.07574227662584,peer,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,189585,14.221559453913022,peer,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,189585,24.862077019376,baseline,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,189585,-0.0138713049137437,relative_legacy,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,189585,15.11773889509572,spot_peer,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,189588,24.81472293762206,baseline,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,189588,-0.0138975168670707,relative_legacy,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,189588,14.184563679868962,peer,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,189588,15.11773889509572,spot_peer,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,189869,32.909424321832404,peer,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,189869,50.97283977564734,spot_peer,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,189869,51.08293038846544,baseline,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,189869,0.3138266198147626,relative_legacy,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,190710,15.11773889509572,spot_peer,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,190710,26.303440583379377,spot_baseline,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,190710,14.292643723759625,peer,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,190710,-0.0138176346654939,relative_legacy,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,190710,24.943240477607425,baseline,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,190772,50.97283977564734,spot_peer,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,190772,36.32886288967868,peer,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,190772,0.3332621053132638,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,190772,56.2815688565367,baseline,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,190772,76.55347463629771,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191026,28.688114778816157,spot_baseline,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191026,2.7596825266917886,peer,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191026,16.819284684190926,spot_peer,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191026,4.755278135571954,baseline,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191026,0.0050922034968031,relative_legacy,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191046,7.184286920871362,baseline,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191046,2.6136151198897086,peer,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191046,-0.0460690017501119,relative_legacy,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191046,6.160685381457383,spot_peer,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191046,13.750352374993504,spot_baseline,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191284,-100.0,spot_baseline,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191284,-93.51447827203408,baseline,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191284,-71.22252924670974,peer,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191284,-1.1950175518788284,relative_legacy,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191284,-75.00404289133516,spot_peer,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191471,-0.4492965142257916,relative_legacy,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191471,-27.590914835543124,baseline,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191471,-23.206568155315868,peer,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191471,-34.64676914968566,spot_peer,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191471,-43.440282414577496,spot_baseline,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191935,79.90873060740036,spot_baseline,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191935,73.87656168930819,baseline,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191935,49.51919928740124,peer,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191935,0.4746846276193924,relative_legacy,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191935,53.36692852785133,spot_peer,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191975,68.39709371203459,baseline,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191975,0.4535132746768551,relative_legacy,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191975,45.0225744730085,peer,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191975,62.422537507582206,spot_peer,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,191975,92.5999418556223,spot_baseline,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192049,0.505553927878781,relative_legacy,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192049,76.31831010307795,baseline,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192049,56.8567941415244,spot_peer,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192049,51.13340247403872,peer,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192418,-125.4395499098509,baseline,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192418,-94.38935714077482,peer,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192418,-1.5175504706928389,relative_legacy,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192418,-97.974702585445,spot_peer,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192418,-132.19280948873626,spot_baseline,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192472,-49.5919760454428,spot_peer,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192472,-64.38561897747249,spot_baseline,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192472,-61.7915870346268,baseline,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192472,-48.55598337355217,peer,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192472,-0.8842376273447345,relative_legacy,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192924,8.124584420976648,peer,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192924,0.0085972672433928,relative_legacy,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192924,15.717753256718662,baseline,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192924,15.11773889509572,spot_peer,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,192924,26.303440583379377,spot_baseline,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,193275,-10.679360852415194,spot_peer,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,193275,-9.850554495242488,spot_baseline,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,193275,-0.3454890285907904,relative_legacy,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,193275,-10.7640879297562,peer,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,193275,-9.505621488687243,baseline,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,204737,-0.8811753292149227,relative_legacy,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,204737,-142.3200027714329,spot_peer,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,204737,-79.19828011646213,baseline,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,204737,-58.1520720252116,peer,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,204737,-194.3416471633633,spot_baseline,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,208405,44.73206988277906,spot_peer,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,208405,63.63390355709629,baseline,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,208405,42.21850181969376,peer,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,208405,0.3753174659560658,relative_legacy,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,215725,0.6261444252929458,relative_legacy,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,215725,89.27510021542736,baseline,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,215725,62.422537507582206,spot_peer,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,215725,60.83320852119208,peer,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,216863,-15.200309344505014,spot_baseline,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,216863,-14.483045051204003,peer,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,216863,-14.496592092587612,spot_peer,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,216863,-0.4122007984258483,relative_legacy,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,216863,-14.638778675579774,baseline,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,218269,75.22931972000244,baseline,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,218269,0.4819345536973908,relative_legacy,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,218269,50.97283977564734,spot_peer,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,218269,51.55253168223498,peer,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,218269,76.55347463629771,spot_baseline,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,218666,65.99245584023782,spot_baseline,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,218666,63.011927028342505,baseline,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,218666,41.78671088072277,peer,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,218666,0.3630563927046108,relative_legacy,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,218666,43.43719524383757,spot_peer,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,218945,-47.99595684321109,spot_peer,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,218945,-57.94952581951058,baseline,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,218945,-45.55738981583774,peer,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,218945,-0.8386543062928414,relative_legacy,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,218945,-62.14883767462704,spot_baseline,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,219459,-15.200309344505014,spot_baseline,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,219459,-0.0916021266716807,relative_legacy,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,219459,-3.760816696544052,baseline,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,219459,-14.496592092587612,spot_peer,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,219459,-3.546356898774931,peer,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,219886,38.00485242988039,baseline,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,219886,0.1353244559995814,relative_legacy,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,219886,23.262382902996254,peer,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,219886,47.933405068243125,spot_baseline,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,219886,30.55145099628181,spot_peer,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,220077,-73.69655941662059,spot_baseline,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,220077,-0.9945768526638884,relative_legacy,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,220077,-56.23564733901628,spot_peer,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,220077,-57.36846908180456,peer,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,220077,-72.53155208984552,baseline,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,221727,-71.23644575267016,peer,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,221727,-75.00404289133516,spot_peer,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,221727,-1.1952507046250322,relative_legacy,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,221727,-93.53293800243624,baseline,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29250,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-30 13:09:07.564283+00,221727,-100.0,spot_baseline,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29368 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,182315,-18.71240702813894,peer,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,182315,-21.694961684623024,spot_peer,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,182315,-0.2637598093297073,relative_legacy,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,182315,-15.41516488392393,baseline,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,182315,-18.44245711374277,spot_baseline,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,185690,3.5623909730721217,spot_baseline,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,185690,-2.722084466221611,peer,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,185690,-0.0247564474347476,relative_legacy,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,185690,1.6970627627205963,baseline,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,185690,-6.006574748596654,spot_peer,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,185698,-11.0330925649548,peer,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,185698,-0.1460510942124474,relative_legacy,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,185698,-19.383467939839846,spot_peer,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,185698,-12.059843383444816,baseline,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,185698,-15.200309344505014,spot_baseline,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,185699,37.85116232537298,spot_baseline,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,185699,18.439652301621376,spot_peer,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,185699,25.28024911059446,baseline,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,185699,0.1731568794276224,relative_legacy,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,185699,12.192546302863722,peer,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,187708,-14.039037649823848,spot_peer,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,187708,-0.0935877028349908,relative_legacy,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,187708,-4.26460874339919,baseline,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,187708,-7.720734844131439,peer,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,187708,-7.704103576382802,spot_baseline,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,188107,34.10369178350669,spot_baseline,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,188107,0.1246470785397788,relative_legacy,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,188107,7.95004773103451,peer,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,188107,16.90156380564425,baseline,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,188107,15.7678879858574,spot_peer,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,188389,0.0793306651203998,relative_legacy,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,188389,11.906268981995542,baseline,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,188389,4.796549532261782,peer,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,188389,10.206688083771912,spot_peer,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,188389,26.303440583379377,spot_baseline,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,188909,26.303440583379377,spot_baseline,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,188909,3.341823965307779,peer,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,188909,8.04680784075991,baseline,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,188909,10.206688083771912,spot_peer,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,188909,0.0553442077596014,relative_legacy,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,189585,-6.852121603509655,peer,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,189585,-0.0993252235483551,relative_legacy,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,189585,-6.509544664570655,spot_peer,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,189585,2.7001928984561965,baseline,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,189585,2.856915219677092,spot_baseline,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,189588,86.39384504239716,spot_baseline,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,189588,53.048225211231845,spot_peer,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,189588,81.50437070637119,baseline,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,189588,0.6888394855036338,relative_legacy,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,189588,49.96953910993322,peer,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,189869,6.665108541889528,peer,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,189869,17.55205736000517,baseline,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,189869,10.206688083771912,spot_peer,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,189869,0.0960454737329356,relative_legacy,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,190710,-12.658049656514322,spot_baseline,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,190710,-12.013004613281232,baseline,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,190710,-17.570960372429848,spot_peer,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,190710,-17.489412747320372,peer,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,190710,-0.2466626934985979,relative_legacy,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,190772,11.906844855896413,spot_peer,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,190772,21.10531485077601,baseline,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,190772,0.1152187886007933,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,190772,8.481462521256654,peer,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,190772,28.688114778816157,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191026,48.54268271702416,spot_baseline,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191026,26.062186580289897,spot_peer,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191026,4.649917099433656,peer,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191026,0.0703669359730954,relative_legacy,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191026,8.507636135364487,baseline,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191046,-1.2350123946240503,peer,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191046,4.385806483459242,baseline,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191046,-2.5530129222830493,spot_peer,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191046,-0.002706866579827,relative_legacy,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191046,8.406426478847456,spot_baseline,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191284,-15.200309344505014,spot_baseline,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191284,-18.92671217989143,peer,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191284,-0.2675727399033579,relative_legacy,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191284,-14.214407430458596,baseline,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191284,-19.383467939839846,spot_peer,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191471,-15.434306496078474,peer,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191471,-24.05959784487773,spot_peer,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191471,-13.83728455514739,baseline,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191471,-0.2095987499452321,relative_legacy,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191471,-21.75914350726266,spot_baseline,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191935,23.878685958711674,spot_baseline,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191935,22.11171147250596,baseline,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191935,7.335429986276234,peer,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191935,8.477955914087001,spot_peer,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191935,0.0966290798973772,relative_legacy,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191975,8.44187231974401,peer,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191975,0.1119888645944797,relative_legacy,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191975,9.633666307256492,spot_peer,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191975,23.68854319641651,baseline,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,191975,25.49970867683756,spot_baseline,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192049,13.750352374993504,spot_baseline,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192049,0.0053244364868787,relative_legacy,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192049,1.256946450552845,spot_peer,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192049,0.5965986230049589,peer,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192049,12.395632608168802,baseline,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192418,-0.0728363818825582,relative_legacy,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192418,-4.512255833554487,spot_peer,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192418,5.370273497466394,baseline,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192418,-4.951509926304568,peer,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192418,5.658352836636751,spot_baseline,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192459,32.19280948873624,spot_baseline,biak_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192459,14.405521805855289,spot_peer,biak_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192459,25.119440808932115,baseline,biak_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192459,0.1492274437724089,relative_legacy,biak_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192459,10.907742774263802,peer,biak_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192472,0.6072267041481966,peer,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192472,13.20514531869041,baseline,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192472,0.0039637963971995,relative_legacy,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192472,1.256946450552845,spot_peer,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192472,13.750352374993504,spot_baseline,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192924,-8.926733809708741,spot_baseline,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192924,-5.339106012255029,baseline,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192924,-8.941614112494529,peer,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192924,-14.91071356889528,spot_peer,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,192924,-0.1149712710784172,relative_legacy,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,193275,-0.0493199663254535,relative_legacy,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,193275,6.695825045768754,baseline,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,193275,-3.324106474847742,peer,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,193275,-3.1368771742058703,spot_peer,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,193275,7.587486697512765,spot_baseline,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,204737,-47.39311883324123,spot_baseline,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,204737,-17.129459548858545,peer,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,204737,-0.2278381228754209,relative_legacy,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,204737,-19.404741391872207,baseline,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,204737,-42.335376075015695,spot_peer,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,208405,0.0031562904969991,relative_legacy,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,208405,1.256946450552845,spot_peer,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,208405,0.5687141635932613,peer,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,208405,12.914042144403489,baseline,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,208405,13.750352374993504,spot_baseline,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,215725,37.85116232537298,spot_baseline,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,215725,0.2367482501864786,relative_legacy,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,215725,36.51985549495387,baseline,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,215725,18.439652301621376,spot_peer,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,215725,17.46501649897208,peer,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,216863,0.6219375067763003,peer,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,216863,1.256946450552845,spot_peer,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,216863,0.0039637963971995,relative_legacy,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,216863,13.24583721184547,baseline,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,216863,13.750352374993504,spot_baseline,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,218269,-15.200309344505014,spot_baseline,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,218269,-14.941603045446216,baseline,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,218269,-19.740156993010327,peer,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,218269,-0.2762459235193762,relative_legacy,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,218269,-19.383467939839846,spot_peer,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,218666,0.1692542214977849,relative_legacy,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,218666,13.579355574136676,spot_peer,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,218666,12.52838078999378,peer,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,218666,29.67904448074872,baseline,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,218666,31.034012061215048,spot_baseline,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,218945,-12.029423371771196,spot_baseline,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,218945,-0.2373369260217198,relative_legacy,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,218945,-17.12278039162297,spot_peer,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,218945,-11.221954558335412,baseline,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,218945,-16.744159584932753,peer,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,219459,-0.044833153751554,relative_legacy,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,219459,-3.701446248734937,peer,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,219459,-15.642795967978431,spot_peer,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,219459,-2.4627179104654675,baseline,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,219459,-9.95356735509144,spot_baseline,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,219886,33.05584000308023,spot_baseline,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,219886,26.2092281991158,baseline,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,219886,11.570639534187542,peer,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,219886,15.020820606974448,spot_peer,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,219886,0.158393283230021,relative_legacy,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,220077,-10.850807606435582,peer,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,220077,-0.155480173608533,relative_legacy,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,220077,-10.624379081979711,spot_peer,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,220077,-2.869106370105788,baseline,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,220077,-2.914634565951651,spot_baseline,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,221727,18.439652301621376,spot_peer,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,221727,35.40117340245041,baseline,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,221727,16.818591115548557,peer,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29251,"Will Alaska voters approve Alaska Ballot Measure 2, which would repeal ranked-choice voting and nonpartisan primaries in the state?",2024-10-30 13:09:07.568598+00,221727,0.2285565715838627,relative_legacy,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29369 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,182315,-16.739389667999827,peer,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,182315,-43.050017000629225,baseline,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,182315,-17.687714124945543,spot_peer,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,182315,-0.1949094674191542,relative_legacy,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,182315,-51.45731728297583,spot_baseline,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,185690,-8.620103504930395,spot_baseline,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,185690,0.1069294078618957,relative_legacy,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,185690,12.878088474035463,spot_peer,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,185690,6.100339014257487,peer,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,185690,-4.108739080482346,baseline,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,185698,-40.65837381905536,spot_peer,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,185698,-0.2089726064317919,relative_legacy,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,185698,-30.89158991945861,baseline,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,185698,-15.8608348045917,peer,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,185698,-83.65012677171204,spot_baseline,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,185699,16.349873228287958,spot_baseline,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,185699,0.3188569617304782,relative_legacy,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,185699,19.962991990249392,peer,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,185699,11.120718872417958,baseline,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,185699,30.695012415056645,spot_peer,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,187708,14.181158740262878,spot_peer,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,187708,-3.8139337828378914,baseline,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,187708,7.57027760835251,peer,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,187708,0.1371549035686056,relative_legacy,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,187708,-6.793882865657557,spot_baseline,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,188107,-58.49625007211561,spot_baseline,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,188107,-30.10544705753541,baseline,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,188107,-11.919967677380823,peer,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,188107,-22.710231024740004,spot_peer,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,188107,-0.1408012253855465,relative_legacy,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,188389,0.2335649415429776,relative_legacy,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,188389,9.204119552694689,baseline,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,188389,15.318599390943817,peer,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,188389,33.41608299560205,spot_peer,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,188389,20.163386116965043,spot_baseline,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,188909,58.496250072115615,spot_baseline,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,188909,17.958592884938803,baseline,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,188909,60.76787946811736,spot_peer,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,188909,0.2784191974294879,relative_legacy,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,188909,18.97653433535548,peer,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,189585,-14.369930022327074,baseline,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,189585,0.1113768904843488,relative_legacy,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,189585,5.5556890958420135,peer,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,189585,8.182888786324195,spot_peer,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,189585,-15.200309344505014,spot_baseline,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,189588,-15.200309344505014,spot_baseline,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,189588,5.547199585039414,peer,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,189588,8.182888786324195,spot_peer,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,189588,-14.338269708830849,baseline,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,189588,0.1113707434682775,relative_legacy,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,189869,-3.607576622798953,peer,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,189869,-0.0091310823138771,relative_legacy,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,189869,-3.9418354724211473,spot_peer,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,189869,-21.4825875932626,baseline,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,190710,-39.592867633113926,spot_baseline,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,190710,-9.22202754172783,spot_peer,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,190710,-37.62296961649068,baseline,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,190710,-11.192195570782028,peer,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,190710,-0.1202934796393347,relative_legacy,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,190772,-4.2479362180275055,peer,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,190772,-23.70203106428856,baseline,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,190772,-0.0181031997700349,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,190772,-3.9418354724211473,spot_peer,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,190772,-32.19280948873623,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191026,-55.63933485243855,spot_baseline,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191026,-4.175736621873133,peer,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191026,-0.0526460500749079,relative_legacy,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191026,-20.671725273662695,spot_peer,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191026,-10.897903231421564,baseline,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191046,-2.3196518693167105,peer,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191046,-3.9418354724211473,spot_peer,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191046,-0.0054289858081871,relative_legacy,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191046,-16.908420397959738,baseline,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191046,-32.19280948873623,spot_baseline,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191284,-32.19280948873623,spot_baseline,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191284,-3.9418354724211473,spot_peer,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191284,-30.10465111017884,baseline,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191284,-5.961296662014864,peer,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191284,-0.0475533182759874,relative_legacy,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191471,-8.444707166947692,peer,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191471,-27.65921737573957,baseline,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191471,-0.0770436902464789,relative_legacy,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191471,-11.967288270773851,spot_peer,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191471,-43.440282414577496,spot_baseline,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191935,11.103131238874395,spot_baseline,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191935,10.295632146498184,baseline,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191935,23.0827518829681,peer,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191935,26.951284338643053,spot_peer,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,191935,0.3539285683691336,relative_legacy,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192049,0.1088186681650345,relative_legacy,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192049,-13.720266055449812,baseline,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192049,5.354893753408333,peer,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192049,8.182888786324195,spot_peer,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192049,-15.200309344505014,spot_baseline,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192418,-0.2326812217268064,relative_legacy,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192418,-17.687714124945543,spot_peer,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192418,-48.84691401342455,baseline,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192418,-19.31888129960234,peer,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192472,5.549979658349698,peer,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192472,0.1114958638012159,relative_legacy,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192472,8.182888786324195,spot_peer,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192472,-14.609380026976034,baseline,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192472,-15.200309344505014,spot_baseline,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192924,-32.19280948873623,spot_baseline,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192924,-19.26950429387331,baseline,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192924,-2.964495889843933,peer,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192924,-0.0054289858081871,relative_legacy,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,192924,-3.9418354724211473,spot_peer,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,193275,-2.2432038139495827,baseline,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,193275,0.2225351372498611,relative_legacy,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,193275,13.527520559565074,peer,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,193275,17.368446670083,spot_peer,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,193275,-2.326977932284719,spot_baseline,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,204737,-205.8893689053569,spot_baseline,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,204737,-84.74713964247555,baseline,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,204737,-127.88021238832631,spot_peer,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,204737,-52.5132559953922,peer,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,204737,-0.7149609838798676,relative_legacy,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,208405,-5.978094130226548,peer,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,208405,-0.0479679782918737,relative_legacy,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,208405,-30.21484163196763,baseline,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,208405,-3.9418354724211473,spot_peer,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,208405,-32.19280948873623,spot_baseline,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,215725,13.750352374993504,spot_baseline,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,215725,0.3911254042566409,relative_legacy,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,215725,25.82963892211784,peer,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,215725,28.84016626036918,spot_peer,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,215725,13.277963177507493,baseline,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,216863,-14.645834832484791,baseline,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,216863,0.1114958638012159,relative_legacy,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,216863,8.182888786324195,spot_peer,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,216863,5.545149910309562,peer,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,216863,-15.200309344505014,spot_baseline,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,218269,-32.19280948873623,spot_baseline,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,218269,-6.5387820484963965,peer,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,218269,-31.653735940081493,baseline,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,218269,-0.0537621040086404,relative_legacy,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,218269,-3.9418354724211473,spot_peer,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,218666,13.965122613815115,spot_peer,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,218666,0.1891323441446768,relative_legacy,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,218666,-6.798894373239431,baseline,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,218666,11.17682901129958,peer,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,218666,-7.09665213541436,spot_baseline,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,218945,-20.09126939259962,spot_baseline,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,218945,0.0653964115523234,relative_legacy,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,218945,2.208708007260336,peer,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,218945,4.693023172651135,spot_peer,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,218945,-18.75046333425598,baseline,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,219459,-24.742587597281844,baseline,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,219459,-0.1677725350950521,relative_legacy,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,219459,-52.32456201242334,spot_peer,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,219459,-12.62354057122302,peer,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,219459,-100.0,spot_baseline,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,219886,26.303440583379377,spot_baseline,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,219886,37.79721977400753,spot_peer,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,219886,20.855463326128945,baseline,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,219886,28.590850450600996,peer,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,219886,0.436079274873109,relative_legacy,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,220077,3.434220963190988,peer,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,220077,-18.15733291148942,baseline,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,220077,5.869506566259325,spot_peer,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,220077,0.0814389020773312,relative_legacy,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,220077,-18.44245711374277,spot_baseline,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,221727,-48.12132062697128,baseline,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,221727,-17.687714124945543,spot_peer,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,221727,-0.2276687080962544,relative_legacy,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,221727,-18.97366664149708,peer,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,222142,0.0332494940703729,baseline,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,222142,37.75297559197082,spot_peer,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,222142,0.0007403974395609,relative_legacy,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,222142,0.0478353189045148,peer,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29252,"Will Oregon voters approve Oregon Measure 117, which would establish ranked-choice voting in the state?",2024-10-30 13:09:07.572849+00,222142,26.241433460281467,spot_baseline,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29370 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,182315,4.737979681630286,baseline,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,182315,-1.213479083349741,spot_peer,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,182315,5.658352836636751,spot_baseline,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,182315,-0.0356086169577761,relative_legacy,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,182315,-0.7364057932556456,peer,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,185690,-0.0906104715258053,peer,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,185690,3.35701334012358,baseline,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,185690,7.0389327891398015,spot_baseline,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,185690,-0.2283885375695238,spot_peer,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,185690,-0.0188442873412772,relative_legacy,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,185698,-4.97408874797898,peer,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,185698,-15.200309344505014,spot_baseline,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,185698,-4.722567956217859,baseline,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,185698,-16.09684087272849,spot_peer,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,185698,-0.0810068630293443,relative_legacy,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,185699,24.614715684763265,baseline,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,185699,0.1818695013379934,relative_legacy,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,185699,14.150757556760372,peer,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,185699,20.161161408528358,spot_peer,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,185699,35.61438102252753,spot_baseline,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,187708,-3.079514881749821,peer,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,187708,-5.250905437364005,spot_peer,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,187708,-0.0576155567782921,relative_legacy,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,187708,0.0,baseline,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,187708,0.0,spot_baseline,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,188107,4.0320693068782,peer,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,188107,7.633535749077802,spot_peer,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,188107,18.05722456418209,spot_baseline,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,188107,0.0392625578103646,relative_legacy,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,188107,9.421357591846396,baseline,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,188389,10.975653066823384,baseline,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,188389,23.878685958711674,spot_baseline,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,188389,11.78734558238622,spot_peer,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,188389,5.4378088200375325,peer,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,188389,0.0585583339083772,relative_legacy,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,188909,0.0323548891198479,relative_legacy,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,188909,21.412480535284764,spot_baseline,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,188909,10.0276245012818,spot_peer,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,188909,6.594501756599681,baseline,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,188909,3.119049613412781,peer,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,189585,4.560436601316514,spot_peer,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,189585,0.0321491395897716,relative_legacy,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,189585,12.996612558706786,baseline,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,189585,4.787821950223292,peer,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,189585,13.750352374993504,spot_baseline,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,189588,50.58909297299573,spot_baseline,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,189588,47.726167160096566,baseline,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,189588,30.84612546399167,spot_peer,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,189588,29.85670039958548,peer,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,189588,0.3796888538689336,relative_legacy,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,189869,0.0,spot_baseline,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,189869,-3.3748584937416197,peer,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,189869,0.0,baseline,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,189869,-0.0610014264098869,relative_legacy,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,189869,-5.250905437364005,spot_peer,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,190710,-6.750134283582716,baseline,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,190710,-10.31460704523756,spot_peer,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,190710,-9.461906131989874,peer,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,190710,-7.09665213541436,spot_baseline,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,190710,-0.1656478750956198,relative_legacy,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,190772,-11.620432290696534,spot_peer,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,190772,-8.926733809708741,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,190772,-8.48975372143354,peer,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,190772,-6.639024541794189,baseline,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,190772,-0.1365057513546379,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191026,1.0184091008489915,peer,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191026,2.697628888131859,baseline,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191026,18.903382439001717,spot_baseline,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191026,0.006809935219578,relative_legacy,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191026,8.237298045648192,spot_peer,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191046,4.560436601316514,spot_peer,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191046,0.0168810789086619,relative_legacy,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191046,7.188613531135777,baseline,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191046,2.4305065457529964,peer,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191046,13.750352374993504,spot_baseline,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191284,0.0321491395897716,relative_legacy,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191284,4.560436601316514,spot_peer,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191284,4.717044752355701,peer,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191284,12.858399268817642,baseline,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191284,13.750352374993504,spot_baseline,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191471,1.821202560017834,baseline,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191471,2.856915219677092,spot_baseline,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191471,-3.2123996862866746,spot_peer,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191471,-1.920913535329008,peer,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191471,-0.0411005405591581,relative_legacy,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191935,-6.48478818333924,peer,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191935,-2.914634565951651,spot_baseline,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191935,-2.7071089939502677,baseline,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191935,-0.1226350538007514,relative_legacy,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191935,-7.330595896520412,spot_peer,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191975,5.29931291406426,peer,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191975,12.62748133559951,baseline,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191975,16.778609068597785,spot_baseline,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191975,0.0549396192544176,relative_legacy,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,191975,6.721200296064313,spot_peer,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192049,0.0321491395897716,relative_legacy,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192049,12.4470950417664,baseline,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192049,4.560436601316514,spot_peer,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192049,13.750352374993504,spot_baseline,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192049,4.526514594353512,peer,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192418,0.0322880958010177,relative_legacy,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192418,4.560436601316514,spot_peer,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192418,4.83952961003255,peer,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192418,13.750352374993504,spot_baseline,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192418,13.05554160626014,baseline,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192472,0.0080615510233499,relative_legacy,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192472,3.184096443332673,peer,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192472,2.671554679590384,spot_peer,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192472,10.67888173705145,baseline,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192472,11.103131238874395,spot_baseline,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192924,-5.889368905356857,spot_baseline,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192924,-5.567623408529295,peer,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192924,-0.092479236838759,relative_legacy,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192924,-3.5290614781461427,baseline,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,192924,-9.453169579154975,spot_peer,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,193275,5.7553424342673685,peer,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,193275,15.833702716710066,spot_baseline,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,193275,14.150626404840615,baseline,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,193275,6.046977617251214,spot_peer,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,193275,0.0493159752505051,relative_legacy,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,204737,0.0302721484770669,relative_legacy,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,204737,8.237298045648192,spot_peer,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,204737,3.4226948972832174,peer,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,204737,7.825620215984055,baseline,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,204737,18.903382439001717,spot_baseline,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,208405,0.0321491395897716,relative_legacy,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,208405,13.750352374993504,spot_baseline,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,208405,4.7430240366526215,peer,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,208405,12.918739533516428,baseline,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,208405,4.560436601316514,spot_peer,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,215725,-14.686985291657772,baseline,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,215725,-15.129447716442977,peer,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,215725,-0.2449223372369354,relative_legacy,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,215725,-15.200309344505014,spot_baseline,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,215725,-16.09684087272849,spot_peer,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,216863,-15.126961350800665,peer,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,216863,-16.09684087272849,spot_peer,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,216863,-15.200309344505014,spot_baseline,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,216863,-0.2449223372369354,relative_legacy,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,216863,-14.652594566595557,baseline,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,218269,-14.949689726141878,baseline,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,218269,-15.16743349771408,peer,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,218269,-0.2451978523052145,relative_legacy,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,218269,-16.09684087272849,spot_peer,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,218269,-15.200309344505014,spot_baseline,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,218666,26.15836053109772,baseline,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,218666,27.26204546629918,spot_baseline,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,218666,14.201487159523689,spot_peer,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,218666,14.36003352555429,peer,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,218666,0.1625106220813558,relative_legacy,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,218945,-14.79018127373949,peer,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,218945,-14.191236093000756,baseline,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,218945,-15.200309344505014,spot_baseline,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,218945,-16.09684087272849,spot_peer,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,218945,-0.2381385671920153,relative_legacy,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,219459,-1.2101672279886575,baseline,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,219459,-0.0373666096115649,relative_legacy,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,219459,-8.740771051037063,spot_peer,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,219459,-2.1332641932010543,peer,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,219459,-4.890960048094622,spot_baseline,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,219886,4.100707060827162,baseline,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,219886,-0.9985516981493138,peer,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,219886,-1.5604999924245615,spot_peer,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,219886,5.172011644732795,spot_baseline,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,219886,-0.0358655224394332,relative_legacy,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,220077,-0.2140118018275755,relative_legacy,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,220077,-12.870413696086016,peer,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,220077,-12.029423371771196,spot_baseline,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,220077,-11.845699972350689,baseline,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,220077,-13.83430635756044,spot_peer,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,221727,13.750352374993504,spot_baseline,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,221727,12.858356570725354,baseline,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,221727,4.716000293610604,peer,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,221727,0.0321204197932021,relative_legacy,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29253,Will Republican Congressman John Duarte be re-elected in California's 13th Congressional District in the 2024 election?,2024-10-30 13:09:07.724291+00,221727,4.560436601316514,spot_peer,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29371 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,182315,33.34237337251918,spot_baseline,RyansAGI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,182315,17.446120514020425,peer,RyansAGI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,182315,22.38617083080017,spot_peer,RyansAGI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,182315,0.2111775720317908,relative_legacy,RyansAGI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,182315,27.94354557711597,baseline,RyansAGI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,185690,-0.0679887022840066,relative_legacy,annabot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,185690,-6.932235648062464,spot_peer,annabot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,185690,-3.712535803175703,baseline,annabot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,185690,-3.6461374333154826,peer,annabot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,185690,-7.780215160363298,spot_baseline,annabot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,185698,-132.19280948873623,spot_baseline,RonanMcGovern,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,185698,-31.399205719467847,baseline,RonanMcGovern,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,185698,-95.63236717534696,spot_peer,RonanMcGovern,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,185698,-0.3354466517004697,relative_legacy,RonanMcGovern,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,185698,-22.949367144015287,peer,RonanMcGovern,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,185699,-21.79741702274297,spot_peer,MWG,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,185699,-25.16226654234968,baseline,MWG,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,185699,-20.865393611092134,peer,MWG,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,185699,-0.3225268418931245,relative_legacy,MWG,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,185699,-28.63041851566411,spot_baseline,MWG,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,187708,-6.793882865657539,spot_baseline,twsummerbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,187708,-4.163275952981254,baseline,twsummerbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,187708,-4.654327451416004,peer,twsummerbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,187708,-0.0828186082862293,relative_legacy,twsummerbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,187708,-6.229028671772784,spot_peer,twsummerbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,188107,-13.32371297595154,peer,Cassie,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,188107,-16.936792240950822,baseline,Cassie,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,188107,-24.33722860346689,spot_peer,Cassie,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,188107,-0.2037304826334932,relative_legacy,Cassie,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,188107,-32.19280948873625,spot_baseline,Cassie,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,188389,-62.14883767462702,spot_baseline,Panshul42,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,188389,-45.69442040922917,spot_peer,Panshul42,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,188389,-28.85268717908961,baseline,Panshul42,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,188389,-0.3186588706206875,relative_legacy,Panshul42,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,188389,-21.56230744066342,peer,Panshul42,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,188909,6.8255035687953205,peer,silicoqr,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,188909,0.0815774309062473,relative_legacy,silicoqr,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,188909,22.38617083080017,spot_peer,silicoqr,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,188909,10.305819729244586,baseline,silicoqr,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,188909,33.34237337251918,spot_baseline,silicoqr,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,189585,-0.3755578553717653,relative_legacy,mf-bot-1,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,189585,-24.33722860346688,spot_peer,mf-bot-1,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,189585,-25.01531066593302,peer,mf-bot-1,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,189585,-30.46689623640709,baseline,mf-bot-1,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,189588,-0.2147324474758231,relative_legacy,mf-bot-3,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,189588,-12.222402078810305,spot_peer,mf-bot-3,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,189588,-13.36670193104317,peer,mf-bot-3,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,189588,-14.347654384188395,baseline,mf-bot-3,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,189588,-15.200309344504996,spot_baseline,mf-bot-3,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,189869,0.4039460521994059,relative_legacy,VeritasAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,189869,30.44210857282137,peer,VeritasAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,189869,45.24963664348925,baseline,VeritasAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,189869,46.957909968413205,spot_peer,VeritasAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,190710,8.043304637222276,spot_peer,Bot_Pepa,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,190710,12.61284852670222,baseline,Bot_Pepa,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,190710,0.0544695755513219,relative_legacy,Bot_Pepa,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,190710,5.9598264069585625,peer,Bot_Pepa,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,190710,13.22477982984395,spot_baseline,Bot_Pepa,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,190772,13.750352374993504,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,190772,8.418012311582387,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,190772,10.233478759538462,baseline,Jay_Bailey_Bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,190772,0.0432096368843048,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,190772,5.06449220675345,peer,Jay_Bailey_Bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191026,-2.242500264773006,peer,manticAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191026,-6.661202176724802,spot_peer,manticAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191026,-0.0370784066918626,relative_legacy,manticAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191026,-2.7128462373495386,baseline,manticAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191026,-7.400058144377692,spot_baseline,manticAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191046,13.750352374993504,spot_baseline,archipelago,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191046,3.937425570323015,peer,archipelago,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191046,0.0375917720254432,relative_legacy,archipelago,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191046,7.168376733816608,baseline,archipelago,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191046,8.418012311582387,spot_peer,archipelago,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191284,12.858350246904406,baseline,000_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191284,6.287819330410158,peer,000_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191284,8.418012311582387,spot_peer,000_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191284,0.0560474866210224,relative_legacy,000_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191284,13.750352374993504,spot_baseline,000_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191471,11.103131238874395,spot_baseline,HSeldon,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191471,0.026314407042131,relative_legacy,HSeldon,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191471,3.254754337004867,peer,HSeldon,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191471,7.086297086748698,baseline,HSeldon,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191471,6.530672334282175,spot_peer,HSeldon,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191935,12.091872236367678,spot_peer,pgodzinai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191935,17.586816538251487,baseline,pgodzinai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191935,0.1026061998603257,relative_legacy,pgodzinai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191935,9.708397477522483,peer,pgodzinai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191935,18.903382439001685,spot_baseline,pgodzinai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191975,16.607267594670567,spot_baseline,jkraybill_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191975,14.064807701589682,baseline,jkraybill_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191975,10.45485397633229,spot_peer,jkraybill_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191975,0.0718174261840568,relative_legacy,jkraybill_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,191975,7.441864876904759,peer,jkraybill_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192049,0.0518970730326361,relative_legacy,gnosis-ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192049,6.104414218758863,peer,gnosis-ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192049,12.469794905808891,baseline,gnosis-ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192049,8.418012311582387,spot_peer,gnosis-ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192049,13.750352374993504,spot_baseline,gnosis-ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192418,-25.15387669959645,spot_baseline,InstitutPelFutur,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192418,-0.3100051634561713,relative_legacy,InstitutPelFutur,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192418,-19.31881171746817,spot_peer,InstitutPelFutur,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192418,-23.88815418298792,baseline,InstitutPelFutur,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192418,-20.314446255755048,peer,InstitutPelFutur,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192472,-13.890092352184393,peer,bestworldbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192472,-14.629861570865613,baseline,bestworldbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192472,-12.222402078810305,spot_peer,bestworldbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192472,-0.2186805392734121,relative_legacy,bestworldbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192472,-15.200309344504996,spot_baseline,bestworldbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192924,5.658352836636751,spot_baseline,acm_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192924,-0.0058176021116523,relative_legacy,acm_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192924,0.8264170726455257,peer,acm_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192924,2.648810027475056,spot_peer,acm_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,192924,3.395304597047351,baseline,acm_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,193275,3.2405114263898938,spot_peer,histerio,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,193275,1.408701551762039,peer,histerio,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,193275,5.997687237019459,baseline,histerio,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,193275,-0.0134910547024469,relative_legacy,histerio,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,193275,6.488285158485438,spot_baseline,histerio,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,204737,13.750352374993504,spot_baseline,SynapseSeer,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,204737,3.269559256010898,peer,SynapseSeer,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,204737,8.418012311582387,spot_peer,SynapseSeer,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,204737,5.72270492669589,baseline,SynapseSeer,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,204737,0.0298147592559985,relative_legacy,SynapseSeer,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,208405,-13.33310130967726,peer,mf-bot-4,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,208405,-14.320021062258808,baseline,mf-bot-4,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,208405,-0.2147537277032691,relative_legacy,mf-bot-4,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,208405,-12.222402078810305,spot_peer,mf-bot-4,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,208405,-15.200309344504996,spot_baseline,mf-bot-4,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,215725,13.750352374993504,spot_baseline,estr.ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,215725,0.0591698765493153,relative_legacy,estr.ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,215725,13.297286588773122,baseline,estr.ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,215725,6.179077880452674,peer,estr.ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,215725,8.418012311582387,spot_peer,estr.ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,216863,56.404421210220846,baseline,tombot61,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,216863,37.43019905914649,peer,tombot61,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,216863,0.4906276978671677,relative_legacy,tombot61,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,216863,40.319662079977306,spot_peer,tombot61,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,216863,58.496250072115615,spot_baseline,tombot61,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,218269,58.496250072115615,spot_baseline,tombot37,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,218269,0.4955544981460082,relative_legacy,tombot37,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,218269,57.555230140843726,baseline,tombot37,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,218269,40.319662079977306,spot_peer,tombot37,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,218269,38.073893307222654,peer,tombot37,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,218666,7.029506250998132,baseline,GreeneiBot2,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,218666,1.7966672424294416,peer,GreeneiBot2,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,218666,-0.0019082625658414,relative_legacy,GreeneiBot2,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,218666,3.8288284327336894,spot_peer,GreeneiBot2,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,218666,7.313470463021537,spot_baseline,GreeneiBot2,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,218945,-1.449956969511509,spot_baseline,SeidrBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,218945,-3.952599047319811,peer,SeidrBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,218945,-2.419069298936888,spot_peer,SeidrBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,218945,-1.3542558524154715,baseline,SeidrBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,218945,-0.0862505673241519,relative_legacy,SeidrBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,219459,12.851019521825734,baseline,karamazov,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,219459,35.6435321749394,spot_peer,karamazov,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,219459,0.1105182548917135,relative_legacy,karamazov,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,219459,8.708084058796524,peer,karamazov,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,219459,51.93741590935794,spot_baseline,karamazov,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,219886,-16.068533654485094,spot_baseline,SaraBase,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,219886,-12.841403803725369,spot_peer,SaraBase,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,219886,-11.601892780342036,peer,SaraBase,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,219886,-0.1896891238357391,relative_legacy,SaraBase,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,219886,-12.740667407117394,baseline,SaraBase,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,220077,6.530672334282175,spot_peer,mmBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,220077,0.0292473659492005,relative_legacy,mmBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,220077,10.936379883876864,baseline,mmBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,220077,3.77097237766855,peer,mmBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,220077,11.103131238874395,spot_baseline,mmBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,221727,-15.200309344504996,spot_baseline,mf-bot-5,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,221727,-12.222402078810305,spot_peer,mf-bot-5,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,221727,-13.238159040031691,peer,mf-bot-5,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,221727,-14.227455286454708,baseline,mf-bot-5,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,221727,-0.2146784832428118,relative_legacy,mf-bot-5,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,222142,0.0396983987973964,baseline,predictomatic,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,222142,0.0,relative_legacy,predictomatic,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,222142,0.0197508171051468,peer,predictomatic,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,222142,3.1993142066980136,spot_peer,predictomatic,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29254,Will Democratic Congressman Jared Golden be re-elected in Maine's 2nd Congressional District in the 2024 election?,2024-10-30 13:09:07.729181+00,222142,6.43050110684165,spot_baseline,predictomatic,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29372 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,182315,2.856915219677092,spot_baseline,RyansAGI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,182315,13.7282643753968,spot_peer,RyansAGI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,182315,2.398062737511859,baseline,RyansAGI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,182315,0.1095411075679994,relative_legacy,RyansAGI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,182315,10.722787014765222,peer,RyansAGI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,185690,-0.9095937230405784,peer,annabot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,185690,-0.0421218008507391,relative_legacy,annabot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,185690,-8.804551925659078,baseline,annabot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,185690,-18.442457113742744,spot_baseline,annabot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,185690,-1.469559031109865,spot_peer,annabot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,185698,-51.45731728297583,spot_baseline,RonanMcGovern,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,185698,-25.026779722314757,spot_peer,RonanMcGovern,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,185698,-8.082559783451677,baseline,RonanMcGovern,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,185698,-2.2279440658972773,peer,RonanMcGovern,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,185698,-0.0495075287248792,relative_legacy,RonanMcGovern,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,185699,-16.24305000910198,peer,MWG,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,185699,-35.41471883043213,baseline,MWG,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,185699,-0.2619604986896309,relative_legacy,MWG,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,185699,-39.592867633113926,spot_baseline,MWG,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,185699,-16.561093139097043,spot_peer,MWG,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,187708,2.856915219677092,spot_baseline,twsummerbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,187708,13.7282643753968,spot_peer,twsummerbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,187708,0.0781110174862202,relative_legacy,twsummerbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,187708,8.15418491241349,peer,twsummerbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,187708,1.7692946967626173,baseline,twsummerbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,188107,6.82924991312567,peer,Cassie,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,188107,1.2654981703175787,baseline,Cassie,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,188107,0.0624122413122366,relative_legacy,Cassie,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,188107,13.39130441341469,spot_peer,Cassie,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,188107,2.384674195436798,spot_baseline,Cassie,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,188389,-64.61121637150926,spot_baseline,Panshul42,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,188389,-34.41253214380135,spot_peer,Panshul42,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,188389,-0.2571963189942429,relative_legacy,Panshul42,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,188389,-16.328407629632988,peer,Panshul42,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,188389,-30.24295584061264,baseline,Panshul42,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,188909,-0.2614051140807862,relative_legacy,silicoqr,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,188909,-17.358806490397804,peer,silicoqr,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,188909,-29.260095969344988,baseline,silicoqr,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,188909,-55.62620125577829,spot_peer,silicoqr,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,188909,-94.34164716336323,spot_baseline,silicoqr,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,189585,-11.280901069790358,spot_peer,mf-bot-1,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,189585,-30.473165040150885,baseline,mf-bot-1,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,189585,-0.20901118983549,relative_legacy,mf-bot-1,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,189585,-12.572420313606283,peer,mf-bot-1,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,189588,-0.0480207693852412,relative_legacy,mf-bot-3,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,189588,-14.345070335015032,baseline,mf-bot-3,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,189588,-0.937775717790378,peer,mf-bot-3,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,189588,0.843823188954989,spot_peer,mf-bot-3,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,189588,-15.200309344504996,spot_baseline,mf-bot-3,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,189869,-25.026779722314757,spot_peer,VeritasAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,189869,-0.2756741285647804,relative_legacy,VeritasAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,189869,-34.33935420529416,baseline,VeritasAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,189869,-17.15501298966344,peer,VeritasAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,190710,8.02578040415834,baseline,Bot_Pepa,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,190710,15.147684694489088,peer,Bot_Pepa,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,190710,0.1755441731821002,relative_legacy,Bot_Pepa,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,190710,17.688028578258155,spot_peer,Bot_Pepa,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,190710,8.406426478847456,spot_baseline,Bot_Pepa,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,190772,-12.029423371771175,spot_baseline,Jay_Bailey_Bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,190772,3.106357704123038,spot_peer,Jay_Bailey_Bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,190772,1.8556019401222676,peer,Jay_Bailey_Bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,190772,-0.0125573385580164,relative_legacy,Jay_Bailey_Bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,190772,-8.958275099321106,baseline,Jay_Bailey_Bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191026,2.6197297616471085,baseline,manticAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191026,3.762668527245073,peer,manticAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191026,0.0391482913485896,relative_legacy,manticAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191026,9.610068165163042,spot_peer,manticAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191026,-2.914634565951651,spot_baseline,manticAI,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191046,-7.400058144377692,spot_baseline,archipelago,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191046,6.409566555012792,spot_peer,archipelago,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191046,3.079410815910601,peer,archipelago,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191046,-3.873817243988187,baseline,archipelago,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191046,0.0105953476886336,relative_legacy,archipelago,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191284,-0.0480904017905428,relative_legacy,000_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191284,-14.214093706289214,baseline,000_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191284,-0.8652782938083553,peer,000_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191284,-15.200309344504996,spot_baseline,000_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191284,0.843823188954989,spot_peer,000_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191471,-15.200309344504996,spot_baseline,HSeldon,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191471,0.843823188954989,spot_peer,HSeldon,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191471,-9.711321565766903,baseline,HSeldon,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191471,0.1617370668399169,peer,HSeldon,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191471,-0.033717823074439,relative_legacy,HSeldon,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191935,20.33115189350211,peer,pgodzinai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191935,0.2458554010381768,relative_legacy,pgodzinai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191935,15.23280127190545,baseline,pgodzinai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191935,23.35594681768745,spot_peer,pgodzinai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191935,16.349873228287958,spot_baseline,pgodzinai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191975,-22.413182104171568,spot_peer,jkraybill_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191975,-47.79442508390357,spot_baseline,jkraybill_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191975,-23.09727527328544,peer,jkraybill_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191975,-45.09179236181313,baseline,jkraybill_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,191975,-0.3555228964756601,relative_legacy,jkraybill_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192049,5.433955134951384,peer,gnosis-ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192049,-5.363274631249047,baseline,gnosis-ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192049,0.0395079228719998,relative_legacy,gnosis-ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192049,7.4874944825285,spot_peer,gnosis-ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192049,-5.889368905356857,spot_baseline,gnosis-ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192418,18.903382439001685,spot_baseline,InstitutPelFutur,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192418,25.17796210733163,spot_peer,InstitutPelFutur,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192418,0.2750116157919547,relative_legacy,InstitutPelFutur,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192418,22.328646658218403,peer,InstitutPelFutur,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192418,17.95918844714549,baseline,InstitutPelFutur,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192472,-11.58654377570332,baseline,bestworldbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192472,0.9443286399848128,peer,bestworldbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192472,-0.0195608975469592,relative_legacy,bestworldbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192472,3.106357704123038,spot_peer,bestworldbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192472,-12.029423371771175,spot_baseline,bestworldbot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192924,0.0,spot_baseline,acm_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192924,11.689758624319468,spot_peer,acm_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192924,0.0,baseline,acm_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192924,0.0581766011376016,relative_legacy,acm_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,192924,6.678077603685636,peer,acm_bot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,193275,6.609754363728376,baseline,histerio,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,193275,14.10078022698386,peer,histerio,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,193275,16.712275524113938,spot_peer,histerio,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,193275,0.1587942098383027,relative_legacy,histerio,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,193275,7.0389327891398015,spot_baseline,histerio,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,204737,11.689758624319468,spot_peer,SynapseSeer,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,204737,0.0,spot_baseline,SynapseSeer,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,204737,0.0,baseline,SynapseSeer,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,204737,4.722346418454011,peer,SynapseSeer,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,204737,0.0392468762540262,relative_legacy,SynapseSeer,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,208405,-14.302924077129386,baseline,mf-bot-4,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,208405,-0.0478611189912774,relative_legacy,mf-bot-4,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,208405,-0.9088482007511266,peer,mf-bot-4,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,208405,0.843823188954989,spot_peer,mf-bot-4,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,208405,-15.200309344504996,spot_baseline,mf-bot-4,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,215725,-15.200309344504996,spot_baseline,estr.ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,215725,0.843823188954989,spot_peer,estr.ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,215725,-14.711564530712046,baseline,estr.ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,215725,-1.4163637402819045,peer,estr.ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,215725,-0.0515500150212461,relative_legacy,estr.ai,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,216863,0.5638597179675803,relative_legacy,tombot61,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,216863,46.81987536280786,baseline,tombot61,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,216863,43.13317820855061,peer,tombot61,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,216863,46.32660651179726,spot_peer,tombot61,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,216863,48.54268271702416,spot_baseline,tombot61,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,218269,58.496250072115615,spot_baseline,tombot37,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,218269,53.42881387074815,spot_peer,tombot37,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,218269,57.5731631399499,baseline,tombot37,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,218269,0.665838003411809,relative_legacy,tombot37,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,218269,50.854123926436095,peer,tombot37,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,218666,-0.4151123353462626,relative_legacy,GreeneiBot2,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,218666,-51.13630182546063,baseline,GreeneiBot2,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,218666,-27.624766855137736,peer,GreeneiBot2,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,218666,-53.11560570253624,spot_baseline,GreeneiBot2,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,218666,-26.21002466319924,spot_peer,GreeneiBot2,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,218945,16.712275524113938,spot_peer,SeidrBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,218945,7.0389327891398015,spot_baseline,SeidrBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,218945,0.1597147817150372,relative_legacy,SeidrBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,218945,14.109331738801153,peer,SeidrBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,218945,6.577232763331197,baseline,SeidrBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,219459,0.150177223851209,relative_legacy,karamazov,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,219459,11.893474930978073,peer,karamazov,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,219459,12.851363654700991,baseline,karamazov,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,219459,51.93741590935794,spot_baseline,karamazov,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,219459,48.74886359814077,spot_peer,karamazov,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,219886,-130.73739395479282,spot_peer,SaraBase,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,219886,-199.60811966485477,spot_baseline,SaraBase,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,219886,-158.26479783637782,baseline,SaraBase,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,219886,-1.499826719036191,relative_legacy,SaraBase,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,219886,-104.8720419719779,peer,SaraBase,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,220077,2.8148649060039914,baseline,mmBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,220077,0.1182246951213463,relative_legacy,mmBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,220077,10.604838784261256,peer,mmBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,220077,13.7282643753968,spot_peer,mmBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,220077,2.856915219677092,spot_baseline,mmBot,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,221727,-32.19280948873623,spot_baseline,mf-bot-5,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,221727,-11.280901069790358,spot_peer,mf-bot-5,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,221727,-12.329973775345469,peer,mf-bot-5,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,221727,-30.132785145978904,baseline,mf-bot-5,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29255,"Will Democrats be ahead in the generic ballot on Election Day, according to 538?",2024-10-30 13:09:07.733541+00,221727,-0.2071432859961255,relative_legacy,mf-bot-5,True,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29373 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,182315,-0.6498387656824848,relative_legacy,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,182315,-47.70796379274598,peer,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,182315,-57.37927940094521,spot_peer,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,182315,-111.07091488087836,baseline,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,182315,-132.19280948873626,spot_baseline,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,185690,-38.83554566263384,spot_baseline,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,185690,4.770204544981636,peer,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,185690,9.179911210790202,spot_peer,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,185690,0.0456157839852292,relative_legacy,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,185690,-18.55072362551404,baseline,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,185698,8.169438148273535,peer,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,185698,0.1083343412772176,relative_legacy,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,185698,-4.7326094936081535,baseline,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,185698,26.03068569559145,spot_peer,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,185698,-15.200309344505014,spot_baseline,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,185699,-47.39311883324123,spot_baseline,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,185699,3.384010476247221,peer,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,185699,-42.95685584470404,baseline,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,185699,0.0526055224151867,relative_legacy,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,185699,3.078777560415615,spot_peer,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,187708,-5.863190987766301,peer,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,187708,-0.0884492376855704,relative_legacy,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,187708,-41.34925135802692,baseline,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,187708,-10.32986656266088,spot_peer,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,187708,-66.20035364849844,spot_baseline,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,188107,-41.50374992788438,spot_baseline,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,188107,7.277611282499011,spot_peer,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,188107,4.445152707246455,peer,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,188107,0.0447708101705504,relative_legacy,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,188107,-22.38822638995544,baseline,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,188389,-4.341318091792401,baseline,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,188389,0.1879133659117823,relative_legacy,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,188389,30.393959329369405,spot_peer,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,188389,14.943956121774576,peer,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,188389,-9.080293700831245,spot_baseline,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,188909,31.034012061215048,spot_baseline,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,188909,0.2522579407512662,relative_legacy,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,188909,9.661281159568023,baseline,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,188909,18.4439078439246,peer,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,188909,58.99350920956799,spot_peer,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,189585,-32.46351995027612,peer,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,189585,-34.42737126576934,spot_peer,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,189585,-94.6435310427308,baseline,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,189585,-0.4475819028886873,relative_legacy,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,189585,-100.0,spot_baseline,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,189588,-73.69655941662059,spot_baseline,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,189588,-0.1982727979365464,relative_legacy,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,189588,-14.472031562249065,peer,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,189588,-69.57488200503178,baseline,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,189588,-15.674296852676846,spot_peer,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,189869,-15.674296852676846,spot_peer,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,189869,-0.1352711169437041,relative_legacy,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,189869,-9.787367660670231,peer,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,189869,-49.181275250367655,baseline,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,189869,-73.69655941662059,spot_baseline,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,190710,-6.491747668133855,spot_baseline,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,190710,31.638508444322856,peer,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,190710,32.23946681037792,spot_peer,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,190710,-6.204173927833281,baseline,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,190710,0.4415030246846395,relative_legacy,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,190772,-30.39324077000325,spot_peer,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,190772,-70.29620171785326,baseline,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,190772,-0.2891025685204147,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,190772,-21.881696335427904,peer,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,190772,-94.34164716336323,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191026,-64.38561897747249,spot_baseline,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191026,-0.0084208786724293,relative_legacy,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191026,-9.036048964240988,spot_peer,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191026,-10.920335104596976,baseline,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191026,-1.2678691054034894,peer,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191046,-29.55260932124033,peer,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191046,-69.01007967012097,baseline,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191046,-57.37927940094521,spot_peer,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191046,-0.4296872496683551,relative_legacy,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191046,-132.19280948873626,spot_baseline,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191284,-32.19280948873623,spot_baseline,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191284,0.1908699555946806,relative_legacy,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191284,13.614833407067891,peer,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191284,13.915859170934898,spot_peer,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191284,-30.10393365696006,baseline,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191471,17.36565401664893,peer,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191471,-9.719396695099002,baseline,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191471,0.2387661784434045,relative_legacy,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191471,26.03068569559145,spot_peer,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191471,-15.200309344505014,spot_baseline,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191935,21.412480535284764,spot_baseline,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191935,19.976949218438243,baseline,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191935,0.6905696765119477,relative_legacy,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191935,49.61849989492544,peer,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191935,52.13382497541887,spot_peer,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191975,-37.631034819729656,spot_peer,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191975,-29.686582241058424,peer,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191975,-0.3988968981118678,relative_legacy,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191975,-84.46553817868418,baseline,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,191975,-104.49352314636484,spot_baseline,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192049,-15.200309344505014,spot_baseline,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192049,-13.865053245189156,baseline,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192049,26.03068569559145,spot_peer,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192049,0.3450723702704293,relative_legacy,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192049,24.51874449065213,peer,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192418,-56.96530387628982,baseline,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192418,-5.171098702635981,peer,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192418,-5.870964072803457,spot_peer,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192418,-0.0689013506501434,relative_legacy,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192418,-59.94620704162715,spot_baseline,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192472,-64.38561897747249,spot_baseline,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192472,-8.394164572727142,peer,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192472,-0.1128367036561911,relative_legacy,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192472,-9.036048964240988,spot_peer,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192472,-62.054893408665805,baseline,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192924,0.2181352080816233,relative_legacy,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192924,26.03068569559145,spot_peer,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192924,16.280761013836447,peer,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192924,-9.137596799126824,baseline,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,192924,-15.200309344505014,spot_baseline,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,193275,-7.400058144377692,spot_baseline,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,193275,30.29595958462682,peer,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,193275,31.591885597676978,spot_peer,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,193275,0.4229867728884143,relative_legacy,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,193275,-7.62070683189866,baseline,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,204737,-0.2131410345195429,relative_legacy,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,204737,-34.42737126576934,spot_peer,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,204737,-14.2062880751614,peer,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,204737,-42.055944584586,baseline,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,204737,-100.0,spot_baseline,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,208405,-100.0,spot_baseline,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,208405,-94.22080561122776,baseline,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,208405,-0.4459538974454965,relative_legacy,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,208405,-32.31782740203243,peer,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,208405,-34.42737126576934,spot_peer,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,215725,-0.4585664722761243,relative_legacy,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,215725,-96.836306453579,baseline,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,215725,-34.42737126576934,spot_peer,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,215725,-33.4236973789448,peer,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,215725,-100.0,spot_baseline,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,216863,-51.45731728297583,spot_baseline,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,216863,-49.64203147897965,baseline,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,216863,0.0117663360206913,relative_legacy,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,216863,0.6092942021329586,peer,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,216863,0.1812016438411288,spot_peer,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,218269,-31.695008624609528,baseline,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,218269,0.1964619400952008,relative_legacy,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,218269,13.915859170934898,spot_peer,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,218269,13.879334549013654,peer,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,218269,-32.19280948873623,spot_baseline,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,218666,-44.22223286050742,spot_baseline,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,218666,-42.86392829171373,baseline,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,218666,0.0814539702366571,relative_legacy,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,218666,5.650843560594582,peer,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,218666,5.339465108632486,spot_peer,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,218945,-25.13267875399011,baseline,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,218945,0.2404917391981907,relative_legacy,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,218945,17.190169676676028,peer,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,218945,17.702439263557153,spot_peer,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,218945,-26.881675842779984,spot_baseline,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,219459,-81.94277543581791,spot_baseline,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,219459,-21.55344799050015,spot_peer,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,219459,-5.256995087656412,peer,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,219459,-20.27614949579148,baseline,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,219459,-0.071920579792102,relative_legacy,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,219886,-60.08270634170707,baseline,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,219886,-17.155771970353356,spot_peer,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,219886,-12.74072831873076,peer,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,219886,-0.1623757652444684,relative_legacy,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,219886,-75.77450631082976,spot_baseline,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,220077,-12.029423371771196,spot_baseline,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,220077,0.3949779152548534,relative_legacy,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,220077,28.455350284683124,peer,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,220077,28.29137324380834,spot_peer,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,220077,-11.85456564164306,baseline,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,221727,0.1812016438411288,spot_peer,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,221727,0.0107539094278652,relative_legacy,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,221727,0.6319685762248544,peer,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,221727,-48.17068363473846,baseline,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,222142,-28.871244291832824,spot_baseline,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,222142,16.283973680822516,spot_peer,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,222142,-0.5089158109905684,baseline,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,222142,0.2870389508729681,peer,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29256,"Will Ohio voters approve Ohio Issue 1, which seeks to end gerrymandering in the state?",2024-10-30 13:09:07.737735+00,222142,0.0022267422164526,relative_legacy,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29374 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,182315,18.004307718611024,baseline,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,182315,61.161707215276415,peer,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,182315,71.85810622920691,spot_peer,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,182315,0.5008678101773,relative_legacy,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,182315,21.412480535284764,spot_baseline,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,185690,-32.91596641184382,spot_baseline,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,185690,-0.0138661497753066,relative_legacy,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,185690,14.954562010171731,peer,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,185690,33.18272316507437,spot_peer,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,185690,-15.73114408801929,baseline,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,185698,-2.282156290701656,peer,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,185698,-0.1698197943466953,relative_legacy,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,185698,-48.31137377271112,spot_peer,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,185698,-26.693844916043997,baseline,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,185698,-147.39311883324118,spot_baseline,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,185699,-47.39311883324123,spot_baseline,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,185699,22.87671504155351,spot_peer,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,185699,20.344712617416643,peer,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,185699,-43.73182426882231,baseline,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,185699,-0.0666738270798555,relative_legacy,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,187708,-99.82797055411788,spot_peer,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,187708,-1.18481589961584,relative_legacy,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,187708,-63.44916241484904,peer,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,187708,-138.92760999013277,baseline,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,187708,-219.75999598851595,spot_baseline,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,188107,-29.21807514933104,spot_baseline,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,188107,0.0020269342415442,relative_legacy,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,188107,18.969269761845577,peer,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,188107,-16.020211094867204,baseline,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,188107,35.81518128128689,spot_peer,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,188389,26.54558923504525,peer,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,188389,0.2080987516059155,baseline,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,188389,0.1464350185702693,relative_legacy,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,188389,56.92261743660679,spot_peer,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,188389,0.4321605950093787,spot_baseline,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,188909,26.303440583379377,spot_baseline,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,188909,8.216355980706021,baseline,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,188909,0.1794875637718324,relative_legacy,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,188909,75.3398872121147,spot_peer,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,188909,22.66300996035219,peer,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,189585,-0.5549271222651526,relative_legacy,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,189585,-15.274427218872624,peer,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,189585,-14.573118245853388,spot_peer,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,189585,-94.64318498805068,baseline,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,189585,-100.0,spot_baseline,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,189588,-100.0,spot_baseline,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,189588,-94.40635063306048,baseline,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,189588,-0.5543394419696996,relative_legacy,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,189588,-14.573118245853388,spot_peer,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,189588,-15.182325774033366,peer,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,189869,-0.1208420493105382,relative_legacy,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,189869,13.658340347680133,peer,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,189869,-34.34052572643488,baseline,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,189869,19.983489839568467,spot_peer,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,190710,17.376706773670666,spot_baseline,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,190710,16.620461011768338,baseline,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,190710,68.98511601944628,spot_peer,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,190710,65.19743529789147,peer,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,190710,0.561764288034398,relative_legacy,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,190772,41.87110929999154,peer,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,190772,54.54009792499034,spot_peer,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,190772,0.2478324730305489,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,190772,-2.173180658547591,baseline,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,190772,-2.914634565951651,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191026,-62.14883767462704,spot_baseline,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191026,12.372400807564594,spot_peer,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191026,3.196094074873744,peer,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191026,-8.6643277911871,baseline,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191026,-0.0315687125626833,relative_legacy,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191046,-13.177686883345205,baseline,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191046,19.50811729879243,peer,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191046,38.708406483271936,spot_peer,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191046,0.0232303006705656,relative_legacy,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191046,-25.153876699596427,spot_baseline,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191284,-100.0,spot_baseline,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191284,-93.51071081724432,baseline,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191284,-14.91850405063638,peer,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191284,-14.573118245853388,spot_peer,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191284,-0.5539964487618776,relative_legacy,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191471,27.99639884493812,peer,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191471,-11.804605536387127,baseline,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191471,43.4861378187474,spot_peer,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191471,0.0904787084025771,relative_legacy,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191471,-18.44245711374277,spot_baseline,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191935,16.349873228287958,spot_baseline,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191935,15.27624284063726,baseline,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191935,0.5331000033607682,relative_legacy,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191935,68.25413284318458,spot_peer,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191935,63.32413628598624,peer,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191975,76.24897729151067,peer,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191975,0.7044476596826045,relative_legacy,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191975,85.12850027309942,spot_peer,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191975,35.82385836038321,baseline,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,191975,40.05379295837285,spot_baseline,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192049,-100.0,spot_baseline,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192049,-0.548184580911822,relative_legacy,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192049,-14.359211346314156,peer,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192049,-91.52999439476817,baseline,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192049,-14.573118245853388,spot_peer,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192418,-79.50953416658442,baseline,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192418,-0.4022821059140687,relative_legacy,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192418,-4.255603012281431,peer,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192418,-2.9339559710800747,spot_peer,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192418,-83.65012677171204,spot_baseline,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192459,-896.5784284662086,spot_baseline,biak_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192459,-581.6420773776515,spot_peer,biak_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192459,-456.88284769458016,peer,biak_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192459,-701.049536713036,baseline,biak_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192459,-6.716680070837037,relative_legacy,biak_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192472,-71.08074782338645,baseline,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192472,4.151798397850079,spot_peer,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192472,2.266227476485977,peer,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192472,-0.3111183216532916,relative_legacy,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192472,-73.69655941662059,spot_baseline,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192924,-25.153876699596427,spot_baseline,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192924,23.070681792867287,peer,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192924,-15.13648987789742,baseline,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192924,38.708406483271936,spot_peer,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,192924,0.0374404162112023,relative_legacy,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,193275,0.1418170782987203,relative_legacy,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,193275,34.87093663782378,peer,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,193275,-25.442385539583523,baseline,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,193275,50.91366522422252,spot_peer,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,193275,-8.008791132269192,spot_baseline,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,204737,-100.0,spot_baseline,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,204737,-42.25739856726594,baseline,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,204737,-0.2930499456814227,relative_legacy,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,204737,-14.573118245853388,spot_peer,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,204737,-7.100184306782109,peer,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,208405,-1.24800297656695,relative_legacy,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,208405,-163.59722000850223,baseline,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,208405,-67.03629041641457,spot_peer,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,208405,-65.06474313173598,peer,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,208405,-173.6965594166206,spot_baseline,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,215725,-132.19280948873626,spot_baseline,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,215725,-37.49056405650198,spot_peer,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,215725,-128.09162697296838,baseline,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,215725,-0.8790319535440153,relative_legacy,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,215725,-38.767560075196165,peer,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,216863,42.99410538862976,peer,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,216863,-14.667190290336752,baseline,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,216863,0.2531290814006691,relative_legacy,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,216863,45.79416085220206,spot_peer,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,216863,-15.200309344505014,spot_baseline,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,218269,-51.45731728297583,spot_baseline,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,218269,-0.1001364371897736,relative_legacy,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,218269,19.983489839568467,spot_peer,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,218269,17.33789235416117,peer,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,218269,-50.67484136581688,baseline,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,218666,-25.766899747058357,baseline,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,218666,37.72559800053214,spot_peer,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,218666,0.144771865322694,relative_legacy,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,218666,35.21703218728582,peer,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,218666,-26.53445665209948,spot_baseline,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,218945,-45.40316308947075,spot_baseline,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,218945,24.293326503793395,spot_peer,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,218945,-42.47471576268303,baseline,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,218945,21.824793589011858,peer,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,218945,-0.0432423577425942,relative_legacy,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,219459,33.6975247577627,spot_peer,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,219459,7.577450405487004,peer,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,219459,-0.0012716451950167,relative_legacy,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,219459,-7.9660017699916175,baseline,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,219459,-32.19280948873623,spot_baseline,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,219886,-66.79509162510251,spot_baseline,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,219886,-52.96278003520401,baseline,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,219886,8.335891126108125,peer,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,219886,-0.230600363913915,relative_legacy,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,219886,9.064821418763833,spot_peer,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,220077,45.77937950383547,peer,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,220077,48.05145397467087,spot_peer,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,220077,-11.857399533354403,baseline,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,220077,0.2881469741569685,relative_legacy,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,220077,-12.029423371771196,spot_baseline,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,221727,-100.0,spot_baseline,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,221727,-14.573118245853388,spot_peer,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,221727,-0.5539964487618776,relative_legacy,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,221727,-93.60054832282994,baseline,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,221727,-14.941666713053976,peer,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,222046,-0.0092354776382547,baseline,lookahead,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,222046,0.0096671505627286,peer,lookahead,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,222046,33.6975247577627,spot_peer,lookahead,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,222046,0.0,relative_legacy,lookahead,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,222046,-32.19280948873623,spot_baseline,lookahead,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,222142,-232.43960371327512,spot_baseline,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,222142,-2.445125124994325,peer,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,222142,-5.227644086369751,baseline,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,222142,-108.85434096251984,spot_peer,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29257,"Will Florida voters approve Amendment 3, which would legalize marijuana for adults 21 years old and older?",2024-10-30 13:09:07.741885+00,222142,-0.0448756050060854,relative_legacy,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29375 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,182315,-54.18239625261607,baseline,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,182315,-0.6056455094025154,relative_legacy,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,182315,-50.11828507788128,spot_peer,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,182315,-42.96145323168818,peer,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,182315,-64.38561897747249,spot_baseline,RyansAGI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,185690,3.2806145083241782,spot_baseline,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,185690,1.5687720541307706,baseline,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,185690,-0.9777083645914364,peer,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,185690,-0.0037966304480915,relative_legacy,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,185690,-1.9127744803183944,spot_peer,annabot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,185698,11.004389884973284,spot_peer,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,185698,1.7225855540230293,peer,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,185698,4.363581071297904,baseline,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,185698,0.0304156927289088,relative_legacy,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,185698,21.412480535284764,spot_baseline,RonanMcGovern,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,185699,40.05379295837285,spot_baseline,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,185699,37.524814433120746,baseline,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,185699,22.2387192060792,peer,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,185699,24.284484509307216,spot_peer,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,185699,0.2978364462587164,relative_legacy,MWG,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,187708,3.850149569202748,spot_peer,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,187708,7.244726383690855,baseline,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,187708,2.2837154009599505,peer,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,187708,0.0367249982927387,relative_legacy,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,187708,11.370049916472832,spot_baseline,twsummerbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,188107,4.730571477835651,spot_baseline,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,188107,2.6334477908474887,baseline,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,188107,-0.8798232953752136,spot_peer,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,188107,0.0005940214568928,relative_legacy,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,188107,-0.6050532017136077,peer,Cassie,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,188389,-0.0128792142402001,relative_legacy,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,188389,-3.22721552560699,spot_peer,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,188389,-1.6316752140296282,peer,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,188389,0.69528344115156,baseline,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,188389,1.4355292977070055,spot_baseline,Panshul42,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,188909,58.496250072115615,spot_baseline,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,188909,11.689458678340523,peer,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,188909,37.4229143589343,spot_peer,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,188909,18.337170530249256,baseline,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,188909,0.170070129409319,relative_legacy,silicoqr,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,189585,5.356740515564047,baseline,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,189585,-0.218870678095344,spot_peer,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,189585,-0.0244750523756745,relative_legacy,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,189585,-0.9874933185123658,peer,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,189585,5.658352836636751,spot_baseline,mf-bot-1,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,189588,78.24085649273731,spot_baseline,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,189588,51.48899702709068,spot_peer,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,189588,0.6606222027890127,relative_legacy,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,189588,73.85254423873052,baseline,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,189588,48.38518367663077,peer,mf-bot-3,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,189869,5.545880061039698,spot_peer,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,189869,3.5008809281405626,peer,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,189869,9.176589177636806,baseline,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,189869,0.0518917215253474,relative_legacy,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,189869,13.750352374993504,spot_baseline,VeritasAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,190710,5.102400302446689,spot_baseline,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,190710,-0.6149319689054328,spot_peer,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,190710,-1.330485385483772,peer,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,190710,-0.0298647364538511,relative_legacy,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,190710,4.884847119045407,baseline,Bot_Pepa,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,190772,14.10341963788386,baseline,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,190772,9.216905217364491,spot_peer,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,190772,6.6122439558601735,peer,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,190772,0.0903374047959744,relative_legacy,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,190772,18.903382439001717,spot_baseline,Jay_Bailey_Bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191026,-5.889368905356857,spot_baseline,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191026,-8.445482300097712,spot_peer,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191026,-1.6874823177296148,baseline,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191026,-1.9365966129285492,peer,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191026,-0.0230307291830411,relative_legacy,manticAI,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191046,-0.2059927975078393,peer,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191046,-0.218870678095344,spot_peer,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191046,2.97015397451219,baseline,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191046,0.0075735851990916,relative_legacy,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191046,5.658352836636751,spot_baseline,archipelago,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191284,13.750352374993504,spot_baseline,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191284,0.0514292178900502,relative_legacy,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191284,4.478997929764287,peer,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191284,12.857992989177088,baseline,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191284,5.545880061039698,spot_peer,000_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191471,-7.020981563447086,peer,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191471,-10.609304912097151,spot_peer,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191471,-5.72078373203389,baseline,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191471,-0.0934365793973031,relative_legacy,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191471,-8.926733809708741,spot_baseline,HSeldon,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191935,16.349873228287958,spot_baseline,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191935,7.397782015481628,spot_peer,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191935,0.0776516700049798,relative_legacy,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191935,6.419046574280343,peer,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191935,15.62910733062721,baseline,pgodzinai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191975,8.614101273645804,spot_peer,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191975,14.169689969924704,baseline,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191975,0.0856881908797492,relative_legacy,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191975,6.468997813944698,peer,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,191975,18.05722456418209,spot_baseline,jkraybill_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192049,13.750352374993504,spot_baseline,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192049,4.445782240080394,peer,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192049,12.613348367381052,baseline,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192049,0.0518917215253474,relative_legacy,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192049,5.545880061039698,spot_peer,gnosis-ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192418,-2.2146183911863435,spot_peer,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192418,2.7160323659464978,baseline,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192418,-2.8941245388515524,peer,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192418,-0.0510966549971411,relative_legacy,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192418,2.856915219677092,spot_baseline,InstitutPelFutur,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192472,-8.926733809708741,spot_baseline,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192472,-0.1651715489272113,relative_legacy,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192472,-11.06313169012168,peer,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192472,-8.616354778067285,baseline,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192472,-10.609304912097151,spot_peer,bestworldbot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192924,0.0,baseline,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192924,-4.249888418849261,spot_peer,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192924,-0.0309267835090705,relative_legacy,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192924,-2.7204172617090583,peer,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,192924,0.0,spot_baseline,acm_bot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,193275,7.313470463021537,spot_baseline,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,193275,0.2270975168127111,peer,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,193275,7.0387842257013205,baseline,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,193275,-0.0088520449812921,relative_legacy,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,193275,0.96023721913454,spot_peer,histerio,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,204737,-9.473603173362273,peer,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,204737,-22.16954209761808,spot_peer,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,204737,-10.677047786055128,baseline,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,204737,-0.1237133151865586,relative_legacy,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,204737,-25.153876699596427,spot_baseline,SynapseSeer,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,208405,24.76532628161834,baseline,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,208405,0.1698680094038738,relative_legacy,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,208405,14.488716029418296,spot_peer,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,208405,13.013646747785124,peer,mf-bot-4,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,215725,14.488716029418296,spot_peer,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,215725,0.1754013720457573,relative_legacy,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,215725,13.564013212054146,peer,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,215725,25.503664285440586,baseline,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,215725,26.303440583379377,spot_baseline,estr.ai,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,216863,-51.45731728297583,spot_baseline,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,216863,-40.71212211140457,peer,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,216863,-40.90814654588565,spot_peer,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,216863,-49.66744201513605,baseline,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,216863,-0.5756822191700319,relative_legacy,tombot61,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,218269,-14.975823999053288,baseline,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,218269,-15.823850015197529,peer,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,218269,-15.078608083681416,spot_peer,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,218269,-0.2295461075783391,relative_legacy,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,218269,-15.200309344505014,spot_baseline,tombot37,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,218666,17.376706773670666,spot_baseline,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,218666,8.12929953617042,spot_peer,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,218666,7.346616621851119,peer,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,218666,16.900863823955994,baseline,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,218666,0.089037851584675,relative_legacy,GreeneiBot2,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,218945,-11.708542960207351,spot_peer,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,218945,-0.1753353344915467,relative_legacy,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,218945,-11.857140780794024,peer,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,218945,-9.802312501766613,baseline,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,218945,-10.46973786666934,spot_baseline,SeidrBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,219459,-35.845397091247634,spot_baseline,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,219459,-7.381002273894879,peer,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,219459,-8.869979431139035,baseline,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,219459,-0.0982814187205873,relative_legacy,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,219459,-29.786194791195044,spot_peer,karamazov,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,219886,-11.54069920140624,spot_peer,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,219886,-8.114792008976185,baseline,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,219886,-0.1382847087714853,relative_legacy,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,219886,-9.572379905049385,peer,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,219886,-10.234135031404612,spot_baseline,SaraBase,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,220077,11.103131238874395,spot_baseline,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,220077,3.659996364586151,spot_peer,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,220077,10.948046286736597,baseline,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,220077,0.0296036819544955,relative_legacy,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,220077,3.1588252355018853,peer,mmBot,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,221727,24.61753192182875,baseline,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,221727,14.488716029418296,spot_peer,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,221727,0.1688809556788785,relative_legacy,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,221727,12.94489940533202,peer,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,221727,26.303440583379377,spot_baseline,mf-bot-5,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,222046,-32.19280948873623,spot_baseline,lookahead,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,222046,-0.0495764015943108,baseline,lookahead,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,222046,-0.0005462849443503,relative_legacy,lookahead,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,222046,-0.0418630502591914,peer,lookahead,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,222046,-27.184086748365264,spot_peer,lookahead,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,222142,0.6963637931057836,peer,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,222142,1.167317432084111,baseline,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,222142,0.010344354425336,relative_legacy,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,222142,25.562145819698834,spot_peer,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29258,"Will Massachusetts voters approve Question 4, which would legalize psychedelic substances for adults 21 years old and older?",2024-10-30 13:09:07.909863+00,222142,41.84725033436627,spot_baseline,predictomatic,True,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,2024-10-31 14:30:00+00,29376 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,182315,22.8077821314231,spot_peer,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,182315,17.29947806344268,peer,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,182315,0.2765378300481588,relative_legacy,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,182315,68.13635217240237,baseline,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,182315,81.55754288625727,spot_baseline,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,185690,54.10191531335592,spot_baseline,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,185690,3.163094809967161,spot_peer,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,185690,0.4063535190894221,peer,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,185690,0.0426003612020442,relative_legacy,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,185690,51.8844190488219,baseline,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,185698,22.8077821314231,spot_peer,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,185698,0.1290733313462045,relative_legacy,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,185698,8.185348829118587,peer,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,185698,27.20924756049481,baseline,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,185698,81.55754288625727,spot_baseline,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,185699,46.46682670034443,spot_baseline,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,185699,-2.2998627595133723,spot_peer,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,185699,0.0069592301591159,relative_legacy,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,185699,-2.2182838704293397,peer,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,185699,28.139469256584817,baseline,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,187708,-26.462197917851427,spot_peer,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,187708,-12.857670307004804,peer,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,187708,5.954800105918356,baseline,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,187708,-0.1442907977528282,relative_legacy,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,187708,12.697285625776551,spot_baseline,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,188107,26.303440583379377,spot_baseline,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,188107,13.39949453423438,baseline,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,188107,-0.0884704021712791,relative_legacy,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,188107,-9.060682042668942,peer,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,188107,-16.726901972432984,spot_peer,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,188909,0.0196635831139488,relative_legacy,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,188909,12.881399930066683,baseline,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,188909,0.9686654583468114,peer,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,188909,4.921668967651579,spot_peer,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,188909,56.55971758542251,spot_baseline,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,189585,-3.372853732181272,peer,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,189585,-0.0094224303810418,relative_legacy,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,189585,-0.814573732199867,spot_peer,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,189585,45.875042691199965,baseline,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,189588,6.307271066453187,spot_peer,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,189588,3.453005644904028,peer,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,189588,0.0845472950441047,relative_legacy,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,189588,55.14832800598152,baseline,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,189869,12.969311958073456,spot_peer,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,189869,0.1740356786818548,relative_legacy,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,189869,9.980247697533724,peer,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,189869,65.14209919738776,baseline,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,190710,54.59683691052925,spot_baseline,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,190710,0.7770406123569175,peer,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,190710,0.0477909932558414,relative_legacy,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,190710,3.517214561893777,spot_peer,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,190710,51.737017402203534,baseline,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,190772,41.91027451892571,baseline,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,190772,2.2083461164207883,peer,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,190772,4.921668967651579,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,190772,0.0680799506684454,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,190772,56.55971758542251,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191026,-15.200309344504996,spot_baseline,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191026,-2.1997319327273908,baseline,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191026,-6.737904350706353,peer,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191026,-0.0908415811189346,relative_legacy,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191026,-46.42311590293938,spot_peer,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191046,-8.464428922261467,spot_peer,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191046,16.309949642068723,baseline,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191046,-0.0257350545787931,relative_legacy,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191046,-4.024284027748028,peer,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191046,37.85116232537298,spot_baseline,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191471,8.406426478847456,spot_baseline,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191471,-29.53233667385013,spot_peer,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191471,5.3236634824740685,baseline,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191471,-0.2368676011480828,relative_legacy,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191471,-19.732744609128268,peer,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191935,-13.34214606812424,spot_peer,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191935,27.30487654002049,baseline,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191935,-0.1572599125316966,relative_legacy,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191935,-14.041187079779162,peer,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191935,31.034012061215048,spot_baseline,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191975,80.40535589673527,spot_baseline,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191975,21.98338454353665,spot_peer,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191975,44.8756673274471,baseline,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191975,0.1997037333704455,relative_legacy,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,191975,11.65505946936572,peer,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192049,-0.3898820804229457,peer,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192049,12.100009753611417,baseline,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192049,0.0018515494709112,relative_legacy,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192049,-0.814573732199867,spot_peer,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192418,44.36066514756148,spot_baseline,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192418,-0.0409531297378624,relative_legacy,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192418,39.3270563241864,baseline,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192418,-5.618011962616633,peer,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192418,-3.8068356029871833,spot_peer,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192472,0.8004120730655523,peer,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192472,3.517214561893777,spot_peer,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192472,0.0432209859483423,relative_legacy,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192472,53.814988183362686,baseline,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192472,54.59683691052925,spot_baseline,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192924,-5.492541441536445,peer,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192924,-8.464428922261467,spot_peer,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192924,21.37278289530412,baseline,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192924,37.85116232537298,spot_baseline,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,192924,-0.0383618999632874,relative_legacy,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,193275,-8.37504223180558,peer,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,193275,-7.358709635043118,spot_peer,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,193275,-0.0783626655373483,relative_legacy,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,193275,33.24743865807452,baseline,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,193275,39.396527566024254,spot_baseline,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,195286,0.0824294933459789,relative_legacy,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,195286,6.307271066453187,spot_peer,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,195286,46.37698475759998,baseline,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,195286,3.3093438330632874,peer,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,204737,18.045482477300176,baseline,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,204737,-0.0268291578078409,relative_legacy,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,204737,-8.464428922261467,spot_peer,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,204737,-4.470865747609191,peer,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,204737,37.85116232537298,spot_baseline,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,208405,54.87154381355977,baseline,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,208405,3.4452965493226926,peer,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,208405,6.307271066453187,spot_peer,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,208405,0.0843662300330948,relative_legacy,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,216863,56.300098259917526,baseline,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,216863,3.476350503499648,peer,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,216863,0.0845858428849854,relative_legacy,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,216863,6.307271066453187,spot_peer,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,216863,58.496250072115615,spot_baseline,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,218269,19.227337435898967,spot_peer,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,218269,0.2588288070806093,relative_legacy,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,218269,76.55347463629771,spot_baseline,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,218269,75.30493342626237,baseline,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,218269,16.559365519336403,peer,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,218666,18.984166990225784,spot_peer,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,218666,16.263837012805467,peer,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,218666,0.2551077989352338,relative_legacy,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,218666,74.83739756574883,baseline,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,218666,76.2136169901112,spot_baseline,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,219459,51.93741590935794,spot_baseline,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,219459,4.001178860863082,baseline,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,219459,0.1144174249637995,peer,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,219459,1.6143808391750245,spot_peer,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,219459,0.0026152503834887,relative_legacy,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,219886,64.3261173838055,baseline,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,219886,13.791832696052994,spot_peer,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,219886,0.1819435829790316,relative_legacy,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,219886,10.522257297168958,peer,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,219886,68.9567543950467,spot_baseline,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,220077,13.750352374993504,spot_baseline,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,220077,-0.359394478059947,relative_legacy,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,220077,13.560392444013017,baseline,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,220077,-25.708721532652813,spot_peer,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,220077,-28.733753975300463,peer,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,221727,0.2532795468443884,relative_legacy,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,221727,71.61202483180622,baseline,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,221727,19.227337435898967,spot_peer,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,221727,15.70088183513287,peer,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29296,"Will Kevin Stefanski be the Cleveland Browns head coach on January 1, 2025?",2024-10-31 13:38:11.928073+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29423 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,182315,2.8117336483369195,peer,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,182315,3.6725998620845655,spot_peer,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,182315,35.304939632226066,baseline,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,182315,-0.0625278674449248,relative_legacy,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,182315,42.22330006830478,spot_baseline,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,185690,48.33643607133495,spot_baseline,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,185690,46.36705438773054,baseline,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,185690,8.361012852402434,peer,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,185690,8.038305967718346,spot_peer,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,185690,-0.0138619668894122,relative_legacy,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,185698,21.865133126876096,baseline,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,185698,7.0543542719692,peer,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,185698,0.550230520141585,spot_peer,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,185698,0.0611109645508764,relative_legacy,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,185698,37.85116232537298,spot_baseline,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,185699,31.034012061215048,spot_baseline,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,185699,-3.224957660275693,peer,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,185699,19.12760763914601,baseline,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,185699,-0.1116123343289457,relative_legacy,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,185699,-4.31824852506616,spot_peer,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,187708,2.577876662550385,peer,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,187708,-0.0169350667880668,relative_legacy,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,187708,21.964304051984964,baseline,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,187708,6.553693781399698,spot_peer,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,187708,46.25758880422043,spot_baseline,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,188107,53.60529002402098,spot_baseline,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,188107,0.0181453108402923,relative_legacy,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,188107,27.464650942278887,baseline,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,188107,11.801066661989225,spot_peer,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,188107,5.489795025771906,peer,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,188909,-10.95116211102435,peer,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,188909,-46.92769950563176,spot_peer,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,188909,-6.560945770612678,baseline,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,188909,-0.1787020477839452,relative_legacy,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,188909,-28.63041851566411,spot_baseline,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,189585,21.264526490513678,peer,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,189585,21.943377194263743,spot_peer,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,189585,64.13312992917363,baseline,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,189585,0.1661356692507125,relative_legacy,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,189588,0.0774701260492897,relative_legacy,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,189588,55.19846340576429,baseline,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,189588,15.293953804332164,spot_peer,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,189588,14.825362024045768,peer,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,189869,-49.47178686342759,spot_peer,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,189869,-47.61799778597288,peer,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,189869,-0.7866270077312741,relative_legacy,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,189869,-30.927773596398627,baseline,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,190710,-3.844230990639835,peer,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,190710,-0.1816628277531053,relative_legacy,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,190710,-4.31824852506616,spot_peer,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,190710,29.4416826627257,baseline,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,190710,31.034012061215048,spot_baseline,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,190772,65.99245584023782,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,190772,0.1157259138970347,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,190772,48.92807093023077,baseline,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,190772,20.647381451738752,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,190772,14.933533263065842,peer,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191026,-0.2594527056404626,peer,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191026,-1.04717051689727,spot_peer,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191026,-0.0162875793225599,relative_legacy,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191026,5.154194547282327,baseline,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191026,35.61438102252753,spot_baseline,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191046,0.0765010187381681,relative_legacy,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191046,21.943377194263743,spot_peer,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191046,29.40025777754117,baseline,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191046,9.01899733173089,peer,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191284,-31.301483842865363,baseline,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191284,-0.7894129712768615,relative_legacy,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191284,-47.98098355605958,peer,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191284,-49.47178686342759,spot_peer,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191284,-32.19280948873623,spot_baseline,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191471,33.34237337251918,spot_baseline,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191471,-2.669728507554032,spot_peer,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191471,-0.0993322250886721,relative_legacy,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191471,21.13962875381725,baseline,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191471,-2.2415012064183992,peer,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191935,4.4777606607972125,peer,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191935,-0.0482555812403065,relative_legacy,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191935,39.08155425679259,baseline,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191935,5.19900263994753,spot_peer,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,191935,44.36066514756148,spot_baseline,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192049,58.496250072115615,spot_baseline,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192049,0.0209573974546275,relative_legacy,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192049,15.293953804332164,spot_peer,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192049,3.605029214867083,peer,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192049,14.695721697904244,baseline,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192418,0.076278310968663,relative_legacy,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192418,15.293953804332164,spot_peer,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192418,51.87970044153538,baseline,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192418,13.576995372308769,peer,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192472,33.34237337251918,spot_baseline,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192472,-2.669728507554032,spot_peer,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192472,-1.4688935244806876,peer,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192472,-0.1497071024371451,relative_legacy,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192472,32.88966418187134,baseline,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192924,-0.0069354169756809,relative_legacy,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192924,8.185597348100794,spot_peer,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192924,4.05797387899404,peer,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192924,27.43273823153679,baseline,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,192924,48.54268271702416,spot_baseline,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,193275,29.395897902869443,spot_baseline,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,193275,-4.928550318326307,peer,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,193275,-0.1721890783126598,relative_legacy,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,193275,-5.488110438700937,spot_peer,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,193275,25.20797662377421,baseline,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,195286,0.1413957109847926,relative_legacy,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,195286,17.15047980340677,peer,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,195286,53.80612150856235,baseline,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,195286,21.943377194263743,spot_peer,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,204737,13.750352374993504,spot_baseline,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,204737,-8.543536632397227,peer,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,204737,-0.1726045138406578,relative_legacy,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,204737,6.581059862466754,baseline,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,204737,-16.66140244515433,spot_peer,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,208405,63.71714162205424,baseline,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,208405,21.943377194263743,spot_peer,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,208405,0.1640647711816427,relative_legacy,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,208405,21.03323685413882,peer,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,215725,67.80719051126377,spot_baseline,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,215725,21.943377194263743,spot_peer,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,215725,36.92922894358546,baseline,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,215725,11.402887419666676,peer,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,215725,0.0971256413039249,relative_legacy,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,216863,-0.1132385075295341,relative_legacy,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,216863,36.43806180034051,baseline,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,216863,1.1654976603457308,peer,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,216863,0.550230520141585,spot_peer,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,216863,37.85116232537298,spot_baseline,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,218269,13.750352374993504,spot_baseline,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,218269,13.528267885988006,baseline,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,218269,-15.540950033954836,peer,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,218269,-16.66140244515433,spot_peer,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,218269,-0.3427016833817028,relative_legacy,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,218666,-34.445528695685184,peer,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,218666,-12.44724950795742,baseline,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,218666,-0.6023877946804207,relative_legacy,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,218666,-35.521006080970345,spot_peer,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,218666,-12.658049656514322,spot_baseline,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,218945,67.80719051126377,spot_baseline,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,218945,21.943377194263743,spot_peer,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,218945,63.19302458174084,baseline,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,218945,20.79321089639284,peer,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,218945,0.1630517760855336,relative_legacy,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,219459,-4.873669293507965,spot_peer,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,219459,-0.0116659271808667,relative_legacy,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,219459,-0.4241812294939112,peer,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,219459,2.331048534475779,baseline,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,219459,30.25627700204313,spot_baseline,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,219886,35.29844580206441,spot_baseline,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,219886,-1.2727961729070396,spot_peer,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,219886,-1.1722980481377656,peer,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,219886,32.25106235932533,baseline,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,219886,-0.1356726163634093,relative_legacy,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,220077,13.562952142600212,baseline,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,220077,-15.575204977926017,peer,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,220077,-0.3429571631770501,relative_legacy,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,220077,-16.66140244515433,spot_peer,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,220077,13.750352374993504,spot_baseline,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,221727,0.076278310968663,relative_legacy,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,221727,15.293953804332164,spot_peer,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,221727,14.61916614512795,peer,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29297,"Will Missouri voters approve Missouri Amendment 7, which would prohibit ranked-choice voting in the state?",2024-10-31 13:38:11.932978+00,221727,54.7567936839344,baseline,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29424 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,182315,-63.1618449502986,spot_peer,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,182315,-0.5788722127079725,relative_legacy,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,182315,-57.10270218928736,peer,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,182315,-104.72581706843594,baseline,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,182315,-125.15387669959644,spot_baseline,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,185690,-3.8006322579744753,spot_baseline,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,185690,-3.646762147353872,baseline,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,185690,0.454821667022085,relative_legacy,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,185690,16.24745961601243,peer,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,185690,23.427804263757988,spot_peer,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,185698,0.0815362056322245,relative_legacy,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,185698,8.191541283813415,spot_peer,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,185698,1.0874027722599122,peer,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,185698,-9.930451503873464,baseline,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,185698,-25.15387669959645,spot_baseline,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,185699,-105.88936890535685,spot_baseline,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,185699,-66.62122952957368,baseline,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,185699,-31.92502280498064,peer,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,185699,-0.265700471083086,relative_legacy,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,185699,-49.41596629777421,spot_peer,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,187708,0.2153108662449298,relative_legacy,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,187708,6.473858342233854,peer,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,187708,13.447220630901496,spot_peer,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,187708,-17.788172527065548,spot_baseline,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,187708,-8.556949136826502,baseline,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,188107,-132.19280948873623,spot_baseline,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,188107,-68.90314399344436,baseline,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,188107,-0.3585360872597363,relative_legacy,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,188107,-35.694751289341816,peer,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,188107,-68.18436185009304,spot_peer,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,188909,-0.0065406180971365,relative_legacy,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,188909,-3.7828294896039103,peer,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,188909,-16.633964564983877,spot_peer,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,188909,-59.94620704162712,spot_baseline,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,188909,-13.808657519819956,baseline,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,189585,8.541659190223935,peer,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,189585,-14.37941823035194,baseline,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,189585,-15.200309344504996,spot_baseline,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,189585,15.2937486427643,spot_peer,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,189585,0.3498816586844427,relative_legacy,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,189588,35.95102611680929,spot_peer,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,189588,0.6233484132168697,relative_legacy,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,189588,28.271941029978475,peer,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,189588,13.750352374993504,spot_baseline,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,189588,12.975586348825615,baseline,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,189869,36.36406303601012,baseline,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,189869,45.14119163581487,peer,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,189869,0.8546149815386469,relative_legacy,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,189869,53.14777012625286,spot_peer,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,190710,-13.57888427079004,peer,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,190710,0.0434554878631012,relative_legacy,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,190710,-7.67691105134552,spot_peer,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,190710,-45.03001202162571,baseline,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,190710,-47.39311883324123,spot_baseline,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,190772,-51.45731728297583,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,190772,-38.177224823266414,baseline,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,190772,-10.576854268505448,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,190772,0.0560768274058241,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,190772,-10.283341247641395,peer,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191026,26.139684078128774,spot_peer,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191026,0.0802185332389804,relative_legacy,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191026,3.7835140429035294,peer,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191026,0.0,baseline,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191026,0.0,spot_baseline,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191046,-132.19280948873623,spot_baseline,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191046,-57.08329162200143,baseline,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191046,-29.414066434326116,peer,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191046,-68.18436185009304,spot_peer,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191046,-0.3003914634144039,relative_legacy,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191284,44.90807963044763,spot_peer,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191284,37.399717112437855,peer,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191284,0.7458737577034886,relative_legacy,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191284,25.575074445100675,baseline,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191284,26.303440583379377,spot_baseline,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191471,-63.453752168902646,baseline,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191471,-100.0,spot_baseline,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191471,-29.572857186454847,peer,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191471,-45.21370215598324,spot_peer,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191471,-0.231257957696227,relative_legacy,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191935,-0.0873746700060604,relative_legacy,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191935,-19.80163531009088,spot_peer,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191935,-22.30776920257796,peer,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191935,-64.38561897747248,spot_baseline,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191935,-56.80959394335229,baseline,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191975,-76.89561580351992,baseline,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191975,-121.53564306893182,spot_baseline,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191975,-39.22882824852226,peer,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191975,-0.3666220722963658,relative_legacy,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,191975,-60.58011273295794,spot_peer,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192049,0.346603835225765,relative_legacy,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192049,8.805838147038472,peer,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192049,15.2937486427643,spot_peer,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192049,-13.772428784618029,baseline,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192049,-15.200309344504996,spot_baseline,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192418,29.578838689122577,baseline,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192418,33.34237337251918,spot_baseline,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192418,39.90198366265653,peer,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192418,49.9305965302421,spot_peer,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192418,0.777237901248052,relative_legacy,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192472,0.5188431205924151,relative_legacy,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192472,28.17818982920609,spot_peer,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192472,21.104658419155484,peer,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192472,2.8201753474203453,baseline,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192472,2.856915219677092,spot_baseline,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192924,-15.269300665258209,peer,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192924,-41.68335493631164,baseline,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192924,-73.69655941662063,spot_baseline,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192924,-0.0555362155658807,relative_legacy,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,192924,-26.44530660366438,spot_peer,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,193275,-17.88936032464164,spot_peer,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,193275,-20.075258107219287,peer,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,193275,-0.05731179975752,relative_legacy,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,193275,-53.59480896744195,baseline,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,193275,-61.70561304310094,spot_baseline,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,195286,46.45933416633002,baseline,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,195286,67.87873932455747,spot_peer,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,195286,51.0474990489843,peer,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,195286,0.9192816165759498,relative_legacy,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,204737,7.357088025165622,peer,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,204737,15.2937486427643,spot_peer,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,204737,0.227457045756138,relative_legacy,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,204737,-15.200309344504996,spot_baseline,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,204737,-7.304200313693961,baseline,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,208405,-30.26703053773592,baseline,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,208405,-32.19280948873623,spot_baseline,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,208405,-2.9173448777270528,peer,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,208405,0.1908530580976144,relative_legacy,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,208405,3.169024384018964,spot_peer,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,215725,-45.21370215598324,spot_peer,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,215725,-24.87126388397231,peer,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,215725,-0.1970376958189111,relative_legacy,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,215725,-54.51867693855807,baseline,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,215725,-100.0,spot_baseline,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,216863,26.303440583379377,spot_baseline,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,216863,37.17273915076319,peer,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,216863,25.32836702257617,baseline,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,216863,44.90807963044763,spot_peer,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,216863,0.7436746416519978,relative_legacy,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,218269,0.748954586735081,relative_legacy,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,218269,44.90807963044763,spot_peer,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,218269,37.77127924100808,peer,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,218269,26.303440583379377,spot_baseline,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,218269,25.883537025991284,baseline,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,218666,-30.757280191029245,spot_baseline,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,218666,-2.973617312074115,peer,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,218666,-30.289987216776257,baseline,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,218666,0.1874564533587954,relative_legacy,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,218666,4.193323148315652,spot_peer,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,218945,3.169024384018964,spot_peer,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,218945,-2.757581003117548,peer,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,218945,0.192641180384376,relative_legacy,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,218945,-32.19280948873623,spot_baseline,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,218945,-30.018650846984144,baseline,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,219459,-3.964742978410437,baseline,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,219459,-51.45731728297583,spot_baseline,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,219459,-10.576854268505448,spot_peer,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,219459,-0.8050426639420656,peer,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,219459,0.0,relative_legacy,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,219886,17.628446120591878,peer,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,219886,0.4720519677617448,relative_legacy,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,219886,24.813531419053827,spot_peer,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,219886,-1.8585700400031715,spot_baseline,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,219886,-1.8201599452519197,baseline,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,220077,-39.592867633113926,spot_baseline,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,220077,-39.06212964902509,baseline,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,220077,-9.341443038926304,peer,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,220077,-2.1111676852877204,spot_peer,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,220077,0.100035638210955,relative_legacy,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,221727,0.0116377449503055,relative_legacy,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,221727,-10.576854268505448,spot_peer,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,221727,-15.834371641465705,peer,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29298,Will Netumbo Nandi-Ndaitwah win 55% or more of the vote in the first round of the Namibian presidential election?,2024-10-31 13:38:11.937119+00,221727,-48.17391049600312,baseline,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29425 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,182315,-36.378896417848175,baseline,RyansAGI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,182315,-43.440282414577496,spot_baseline,RyansAGI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,182315,-32.94376813173533,peer,RyansAGI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,182315,-42.15653854123642,spot_peer,RyansAGI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,182315,-0.5588278699434182,relative_legacy,RyansAGI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,185690,19.04712252509925,peer,annabot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,185690,36.3282674502586,baseline,annabot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,185690,15.800309633194583,spot_peer,annabot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,185690,0.1445512353453762,relative_legacy,annabot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,185690,37.85116232537298,spot_baseline,annabot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,185698,26.303440583379377,spot_baseline,RonanMcGovern,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,185698,7.567345415345117,spot_peer,RonanMcGovern,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,185698,-11.74268205546512,baseline,RonanMcGovern,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,185698,-0.1815548888060165,relative_legacy,RonanMcGovern,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,185698,-11.205490986767115,peer,RonanMcGovern,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,185699,40.94408153157911,spot_peer,MWG,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,185699,47.2307650173446,baseline,MWG,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,185699,27.95229231340162,peer,MWG,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,185699,0.3210545535775569,relative_legacy,MWG,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,185699,73.11832415721999,spot_baseline,MWG,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,187708,27.73896988108641,spot_baseline,twsummerbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,187708,5.203582543082668,peer,twsummerbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,187708,8.59080801738529,spot_peer,twsummerbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,187708,13.541864697343886,baseline,twsummerbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,187708,0.0389240463721229,relative_legacy,twsummerbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,188107,-0.1086222338969828,relative_legacy,Cassie,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,188107,-17.185959776223587,spot_peer,Cassie,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,188107,-4.808452646447203,peer,Cassie,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,188107,-0.0121177407478277,baseline,Cassie,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,188107,-8.416044766399851,spot_baseline,Cassie,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,188389,53.30649218696376,spot_baseline,Panshul42,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,188389,0.0097604717936244,baseline,Panshul42,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,188389,4.944285633993133e-05,relative_legacy,Panshul42,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,188389,26.8192084747569,spot_peer,Panshul42,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,188389,0.0049106237740628,peer,Panshul42,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,188909,0.0445442901736314,relative_legacy,silicoqr,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,188909,4.818717928099582,peer,silicoqr,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,188909,9.784430571864617,baseline,silicoqr,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,188909,18.91743129557125,spot_peer,silicoqr,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,188909,42.22330006830476,spot_baseline,silicoqr,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,189585,-69.68356638596617,baseline,mf-bot-1,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,189585,-57.42213988844998,peer,mf-bot-1,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,189585,-73.69655941662059,spot_baseline,mf-bot-1,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,189585,-63.72779315653494,spot_peer,mf-bot-1,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,189585,-0.9139449310144742,relative_legacy,mf-bot-1,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,189588,23.42284391186311,spot_peer,mf-bot-3,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,189588,48.54268271702416,spot_baseline,mf-bot-3,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,189588,0.2407193104868376,relative_legacy,mf-bot-3,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,189588,25.85295580658888,peer,mf-bot-3,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,189588,45.7943554641367,baseline,mf-bot-3,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,189869,-47.87229466001697,spot_peer,VeritasAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,189869,-42.87979635512182,peer,VeritasAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,189869,-49.43611213869262,baseline,VeritasAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,189869,-0.7129474718178945,relative_legacy,VeritasAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,190710,7.997040713271324,baseline,Bot_Pepa,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,190710,-1.403071066044384,peer,Bot_Pepa,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,190710,-0.1375970130956124,relative_legacy,Bot_Pepa,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,190710,-5.192355590709845,spot_peer,Bot_Pepa,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,190710,8.406426478847456,spot_baseline,Bot_Pepa,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,190772,44.36066514756145,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,190772,20.441268690614308,spot_peer,Jay_Bailey_Bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,190772,32.93537748959454,baseline,Jay_Bailey_Bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,190772,0.1527189749830135,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,190772,17.20806190211861,peer,Jay_Bailey_Bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191026,9.551380987583098,baseline,manticAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191026,0.0650967776531629,relative_legacy,manticAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191026,35.863683840536986,spot_peer,manticAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191026,65.99245584023782,spot_baseline,manticAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191026,5.41886434119338,peer,manticAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191046,-1.3823962178739322,spot_peer,archipelago,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191046,-0.021436241767467,relative_legacy,archipelago,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191046,0.2924570460795283,peer,archipelago,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191046,5.933218425723613,baseline,archipelago,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191046,13.750352374993504,spot_baseline,archipelago,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191284,-1.3823962178739322,spot_peer,000_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191284,13.750352374993504,spot_baseline,000_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191284,2.427483633153188,peer,000_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191284,13.369546750024568,baseline,000_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191284,-0.0860133136106462,relative_legacy,000_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191471,18.91743129557125,spot_peer,HSeldon,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191471,26.82576847217596,baseline,HSeldon,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191471,13.410604407343682,peer,HSeldon,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191471,0.1206903752413917,relative_legacy,HSeldon,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191471,42.22330006830476,spot_baseline,HSeldon,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191935,-0.1801506291380272,relative_legacy,pgodzinai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191935,2.856915219677092,spot_baseline,pgodzinai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191935,-9.148887332997434,spot_peer,pgodzinai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191935,-5.205770802277439,peer,pgodzinai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191935,2.5240372695324957,baseline,pgodzinai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191975,0.0769304310498345,relative_legacy,jkraybill_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191975,13.560718822382606,spot_peer,jkraybill_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191975,11.077898453121133,peer,jkraybill_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191975,24.06218629521098,baseline,jkraybill_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,191975,34.709867062226806,spot_baseline,jkraybill_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192049,34.33742010845755,baseline,gnosis-ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192049,37.85116232537298,spot_baseline,gnosis-ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192049,15.800309633194583,spot_peer,gnosis-ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192049,17.620269162174957,peer,gnosis-ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192049,0.1313061601723814,relative_legacy,gnosis-ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192418,17.133616536403743,peer,InstitutPelFutur,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192418,33.58732323564413,baseline,InstitutPelFutur,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192418,0.129017746967965,relative_legacy,InstitutPelFutur,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192418,15.800309633194583,spot_peer,InstitutPelFutur,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192472,-15.384562719830738,spot_peer,bestworldbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192472,-5.819530169720681,baseline,bestworldbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192472,-0.2797196423442321,relative_legacy,bestworldbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192472,-11.475619131704958,peer,bestworldbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192472,-5.889368905356857,spot_baseline,bestworldbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192924,7.785167523656947,baseline,acm_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192924,0.3731555109293743,peer,acm_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192924,-0.0457132623009799,relative_legacy,acm_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192924,13.750352374993504,spot_baseline,acm_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,192924,-1.3823962178739322,spot_peer,acm_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,193275,22.82306023305752,baseline,histerio,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,193275,7.567345415345117,spot_peer,histerio,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,193275,9.417574528686202,peer,histerio,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,193275,0.0239466634674243,relative_legacy,histerio,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,193275,26.303440583379377,spot_baseline,histerio,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,195286,13.750352374993504,spot_baseline,Unwrapped80T,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,195286,-0.0745459235223468,relative_legacy,Unwrapped80T,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,195286,1.2175679930160208,peer,Unwrapped80T,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,195286,-1.3823962178739322,spot_peer,Unwrapped80T,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,195286,10.930118402803808,baseline,Unwrapped80T,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,204737,-6.167312111748631,spot_peer,SynapseSeer,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,204737,3.398068754254069,baseline,SynapseSeer,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,204737,-2.000088396158919,peer,SynapseSeer,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,204737,-0.0610060870176575,relative_legacy,SynapseSeer,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,204737,7.0389327891398015,spot_baseline,SynapseSeer,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,208405,7.567345415345117,spot_peer,mf-bot-4,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,208405,0.0304557506991301,relative_legacy,mf-bot-4,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,208405,10.666903927967008,peer,mf-bot-4,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,208405,24.74011945482595,baseline,mf-bot-4,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,215725,0.0901048215212983,relative_legacy,estr.ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,215725,20.664490867907837,baseline,estr.ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,215725,15.800309633194583,spot_peer,estr.ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,215725,9.768497674525932,peer,estr.ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,215725,37.85116232537298,spot_baseline,estr.ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,216863,-22.022810608266635,spot_peer,tombot61,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,216863,-14.639671008160615,baseline,tombot61,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,216863,-0.3648419567890323,relative_legacy,tombot61,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,216863,-15.200309344505014,spot_baseline,tombot61,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,216863,-17.763600347528754,peer,tombot61,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,218269,-31.687421068920116,baseline,tombot37,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,218269,-30.244545880082704,peer,tombot37,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,218269,-32.19280948873623,spot_baseline,tombot37,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,218269,-34.1376371329232,spot_peer,tombot37,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,218269,-0.5386840337297041,relative_legacy,tombot37,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,218666,45.82819152717843,baseline,GreeneiBot2,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,218666,0.2365872237104943,relative_legacy,GreeneiBot2,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,218666,21.94285948821858,spot_peer,GreeneiBot2,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,218666,46.46682670034443,spot_baseline,GreeneiBot2,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,218666,26.004116390974733,peer,GreeneiBot2,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,218945,-23.468512931399587,baseline,SeidrBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,218945,-24.07170824825645,peer,SeidrBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,218945,-0.4503046592555186,relative_legacy,SeidrBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,218945,-29.11922024692449,spot_peer,SeidrBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,218945,-25.153876699596427,spot_baseline,SeidrBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,219459,-20.645087746742632,spot_baseline,karamazov,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,219459,-1.5907604546757963,baseline,karamazov,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,219459,-25.90467291507375,spot_peer,karamazov,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,219459,-1.8593757400989803,peer,karamazov,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,219459,-0.0275504293704462,relative_legacy,karamazov,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,219886,0.2606817155110482,relative_legacy,SaraBase,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,219886,24.02353543569335,spot_peer,SaraBase,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,219886,48.38155481969572,baseline,SaraBase,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,219886,27.768774388555585,peer,SaraBase,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,219886,49.3852247694877,spot_baseline,SaraBase,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,220077,-27.77587526104305,peer,mmBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,220077,-0.5041281127392442,relative_legacy,mmBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,220077,-28.63041851566409,spot_baseline,mmBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,220077,-31.59782555219928,spot_peer,mmBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,220077,-28.252470910389125,baseline,mmBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,221727,0.1378591765199255,relative_legacy,mf-bot-5,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,221727,15.800309633194583,spot_peer,mf-bot-5,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,221727,35.427456639515555,baseline,mf-bot-5,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29299,Will Republican Congressman Anthony D'Esposito be re-elected in New York's 4th Congressional District in the 2024 election?,2024-10-31 13:38:11.940895+00,221727,18.373875245427723,peer,mf-bot-5,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29426 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,182315,0.0568735271497248,relative_legacy,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,182315,1.6384404038535805,peer,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,182315,38.94069974248667,baseline,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,182315,4.566136603199134,spot_peer,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,182315,46.46682670034443,spot_baseline,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,185690,37.85116232537298,spot_baseline,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,185690,-1.576413251824848,spot_peer,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,185690,-0.0313756902881555,relative_legacy,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,185690,36.33756917578498,baseline,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,185690,-4.517941598117497,peer,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,185698,-18.75911910289336,spot_peer,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,185698,6.980324437730104,peer,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,185698,0.1073704592307687,relative_legacy,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,185698,23.242803056383845,baseline,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,185698,13.750352374993504,spot_baseline,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,185699,23.87868595871165,spot_baseline,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,185699,-0.1003442510855077,relative_legacy,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,185699,-11.538109639359254,spot_peer,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,185699,-9.156472918792335,peer,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,185699,15.682950730682942,baseline,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,187708,1.0166272545792705,peer,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,187708,4.416960155212656,spot_peer,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,187708,22.90478019244136,baseline,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,187708,0.0298535859736106,relative_legacy,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,187708,46.25758880422043,spot_baseline,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,188107,37.85116232537298,spot_baseline,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,188107,-3.4952850764915016,peer,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,188107,18.020943818184243,baseline,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,188107,-1.576413251824848,spot_peer,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,188107,-0.0306239541508478,relative_legacy,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,188389,-0.001701347132395,relative_legacy,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,188389,-0.0414277043056681,baseline,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,188389,-35.145857251717786,spot_peer,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,188389,-0.157679171258211,peer,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,188389,-9.23401721467106,spot_baseline,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,188909,5.658352836636751,spot_baseline,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,188909,-24.52832138700071,spot_peer,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,188909,1.3187572748261704,baseline,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,188909,-6.210936614869677,peer,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,188909,-0.0759732477344912,relative_legacy,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,189585,45.91601508258125,baseline,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,189585,0.072388455942653,relative_legacy,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,189585,6.04612102684368,spot_peer,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,189585,2.883757738879956,peer,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,189588,-0.0285030767577124,relative_legacy,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,189588,-1.576413251824848,spot_peer,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,189588,35.71860354378867,baseline,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,189588,-4.3949681526617885,peer,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,189869,81.4696122075352,baseline,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,189869,28.0590010042269,peer,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,189869,0.4195246862222915,relative_legacy,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,189869,31.895605078594023,spot_peer,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,190772,35.61438102252753,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,190772,-4.164166493698671,peer,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,190772,-3.17112958123842,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,190772,-0.0251943988463618,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,190772,26.45949630038176,baseline,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191026,1.9902428440894275,baseline,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191026,-18.75911910289336,spot_peer,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191026,-0.0358272666511026,relative_legacy,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191026,-2.992487285465225,peer,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191026,13.750352374993504,spot_baseline,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191046,58.496250072115615,spot_baseline,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191046,4.685489834057183,peer,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191046,0.0768531592941147,relative_legacy,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191046,25.42793066124957,baseline,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191046,13.142530665501544,spot_peer,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191284,25.5748867072978,baseline,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191284,-9.809377469674322,spot_peer,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191284,-0.143263812053411,relative_legacy,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191284,-12.676739423774368,peer,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191284,26.303440583379377,spot_baseline,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191471,28.688114778816157,spot_baseline,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191471,-8.109220697549805,spot_peer,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191471,18.24212767478452,baseline,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191471,-6.671841191276901,peer,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191471,-0.0673095792861982,relative_legacy,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191935,46.55614663815369,baseline,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191935,5.501189769809802,peer,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191935,0.1102372978229603,relative_legacy,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191935,8.943696943418162,spot_peer,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191935,52.60688116675877,spot_baseline,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191975,12.167855658825218,spot_baseline,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191975,-17.462473993355093,peer,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191975,-0.2095902458108158,relative_legacy,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191975,-19.887362329581,spot_peer,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,191975,9.453032056748905,baseline,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192049,9.398136871191117,peer,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192049,13.142530665501544,spot_peer,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192049,53.14111372501422,baseline,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192049,0.163047647316075,relative_legacy,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192049,58.496250072115615,spot_baseline,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192418,42.22330006830478,spot_baseline,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192418,-1.1224667002154207,peer,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192418,1.5407084105518378,spot_peer,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192418,37.4768120107277,baseline,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192418,0.0183444667850603,relative_legacy,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192459,42.62977808337326,spot_peer,biak_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192459,37.12682189211834,peer,biak_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192459,92.54944510856822,baseline,biak_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192459,0.5476150200184924,relative_legacy,biak_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192459,99.85565831303312,spot_baseline,biak_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192472,18.903382439001685,spot_baseline,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192472,-18.189455933078403,peer,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192472,-15.085259178108087,spot_peer,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192472,-0.2197969220145088,relative_legacy,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192472,18.697828968194184,baseline,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192924,0.1064284013628676,relative_legacy,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192924,13.142530665501544,spot_peer,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192924,33.155924024746234,baseline,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192924,6.121501231800469,peer,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,192924,58.496250072115615,spot_baseline,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,193275,5.658352836636751,spot_baseline,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,193275,5.2137810136824685,baseline,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,193275,-24.430689493183326,peer,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,193275,-24.52832138700071,spot_peer,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,193275,-0.3055867442204131,relative_legacy,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,195286,-18.75911910289336,spot_peer,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,195286,10.94502667171628,baseline,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,195286,-17.02880331069465,peer,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,195286,-0.2035435693217071,relative_legacy,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,195286,13.750352374993504,spot_baseline,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,204737,26.303440583379377,spot_baseline,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,204737,-0.0677415998619738,relative_legacy,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,204737,12.748901555705986,baseline,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,204737,-5.920448042067284,peer,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,204737,-9.809377469674322,spot_peer,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,208405,9.600831071418796,peer,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,208405,0.1656954260602144,relative_legacy,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,208405,13.142530665501544,spot_peer,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,208405,54.95791331818942,baseline,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,215725,58.496250072115615,spot_baseline,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,215725,0.1018085925928381,relative_legacy,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,215725,31.974895112679008,baseline,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,215725,5.9005220223462285,peer,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,215725,13.142530665501544,spot_peer,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,216863,0.1668761706350363,relative_legacy,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,216863,9.83879297815642,peer,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,216863,13.142530665501544,spot_peer,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,216863,56.35427995513295,baseline,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,216863,58.496250072115615,spot_baseline,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,218269,76.55347463629771,spot_baseline,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,218269,0.3477796597880849,relative_legacy,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,218269,26.01645394077072,spot_peer,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,218269,23.077250571027207,peer,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,218269,75.36642694337175,baseline,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,218666,19.172773925352857,baseline,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,218666,-17.826140591020735,peer,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,218666,-14.724988607127283,spot_peer,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,218666,-0.2148051210812171,relative_legacy,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,218666,19.408705211630256,spot_baseline,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,218945,58.496250072115615,spot_baseline,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,218945,13.142530665501544,spot_peer,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,218945,0.164949691969146,relative_legacy,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,218945,9.563569505364567,peer,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,218945,54.6082065914842,baseline,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,219459,4.991159112636447,baseline,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,219459,1.2033672119808023,peer,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,219459,0.0182861653751901,relative_legacy,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,219459,17.61528503644611,spot_peer,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,219459,64.76982560691188,spot_baseline,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,219886,28.321061798453076,spot_baseline,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,219886,-8.370911628531884,spot_peer,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,219886,-10.537319216558185,peer,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,219886,26.07977017252757,baseline,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,219886,-0.113588951756632,relative_legacy,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,220077,55.63537696486129,baseline,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,220077,11.622787005622817,spot_peer,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,220077,8.703965468539803,peer,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,220077,0.1499707356181726,relative_legacy,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,220077,56.36462694840641,spot_baseline,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,221727,-1.576413251824848,spot_peer,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,221727,-0.0277791095153192,relative_legacy,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,221727,35.43196593350659,baseline,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29300,Will Democratic Congressman Don Davis be re-elected in North Carolina's 1st Congressional District in the 2024 election?,2024-10-31 13:38:11.944523+00,221727,-4.343274060501111,peer,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29427 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,182315,-22.66418328318209,peer,RyansAGI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,182315,-15.200309344505014,spot_baseline,RyansAGI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,182315,-0.3709584492263673,relative_legacy,RyansAGI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,182315,-25.280258302838806,spot_peer,RyansAGI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,182315,-12.748247602195802,baseline,RyansAGI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,185690,15.055967657538112,spot_baseline,annabot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,185690,-0.1264114700536112,relative_legacy,annabot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,185690,14.457654691645054,baseline,annabot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,185690,-4.721293287665499,peer,annabot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,185690,-3.725648174126156,spot_peer,annabot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,185698,-0.1331003899944883,relative_legacy,RonanMcGovern,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,185698,-8.26727255757472,peer,RonanMcGovern,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,185698,-15.200309344505014,spot_baseline,RonanMcGovern,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,185698,-4.72528063033132,baseline,RonanMcGovern,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,185698,-25.280258302838806,spot_peer,RonanMcGovern,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,185699,65.99245584023782,spot_baseline,MWG,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,185699,32.56157064098887,spot_peer,MWG,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,185699,0.2411289377983324,relative_legacy,MWG,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,185699,20.86998177830657,peer,MWG,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,185699,44.61572036912794,baseline,MWG,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,187708,0.2449944144614629,relative_legacy,twsummerbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,187708,42.94700096653144,spot_peer,twsummerbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,187708,40.4594664893947,baseline,twsummerbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,187708,20.573332671465486,peer,twsummerbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,187708,80.57051848385113,spot_baseline,twsummerbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,188107,10.735487169759624,peer,Cassie,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,188107,4.287065810260927,spot_peer,Cassie,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,188107,26.30344058337941,spot_baseline,Cassie,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,188107,0.1032330472858864,relative_legacy,Cassie,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,188107,27.401874927467816,baseline,Cassie,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,188389,0.3155612196656067,baseline,Panshul42,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,188389,11.7200226948336,spot_peer,Panshul42,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,188389,0.1009568736648358,peer,Panshul42,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,188389,36.737106564852944,spot_baseline,Panshul42,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,188389,0.0009375898456683,relative_legacy,Panshul42,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,188909,-0.1972027258911234,relative_legacy,silicoqr,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,188909,-59.94620704162715,spot_baseline,silicoqr,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,188909,-14.038214193015742,baseline,silicoqr,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,188909,-13.589434268586915,peer,silicoqr,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,188909,-57.15729260073341,spot_peer,silicoqr,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,189585,24.883405107428874,baseline,mf-bot-1,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,189585,-0.0198948306451258,relative_legacy,mf-bot-1,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,189585,4.287065810260905,spot_peer,mf-bot-1,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,189585,2.90897279202119,peer,mf-bot-1,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,189588,-3.887171691863973,peer,mf-bot-3,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,189588,16.349873228287958,spot_baseline,mf-bot-3,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,189588,15.433033014935663,baseline,mf-bot-3,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,189588,-2.803868203675754,spot_peer,mf-bot-3,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,189588,-0.114039674240739,relative_legacy,mf-bot-3,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,189869,11.099000376716388,peer,VeritasAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,189869,36.36509548996414,baseline,VeritasAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,189869,12.513677432263272,spot_peer,VeritasAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,189869,0.0925370867709678,relative_legacy,VeritasAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,190710,-3.857110773250442,peer,Bot_Pepa,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,190710,16.349873228287958,spot_baseline,Bot_Pepa,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,190710,-0.1140821346509678,relative_legacy,Bot_Pepa,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,190710,-2.803868203675754,spot_peer,Bot_Pepa,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,190710,15.579426766471046,baseline,Bot_Pepa,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,190772,16.349873228287958,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,190772,-2.803868203675754,spot_peer,Jay_Bailey_Bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,190772,-0.0993246923798763,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,190772,12.15569276372466,baseline,Jay_Bailey_Bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,190772,-3.389271209551273,peer,Jay_Bailey_Bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191026,0.0057404417341252,relative_legacy,manticAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191026,5.9859107330242205,spot_peer,manticAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191026,4.152544599632832,baseline,manticAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191026,0.7837140739769878,peer,manticAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191026,28.688114778816157,spot_baseline,manticAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191046,12.513677432263272,spot_peer,archipelago,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191046,4.5964401069123895,peer,archipelago,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191046,0.0318193401311807,relative_legacy,archipelago,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191046,37.85116232537298,spot_baseline,archipelago,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191046,16.37378195746905,baseline,archipelago,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191284,-0.0166429265391253,relative_legacy,000_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191284,3.236154513916095,peer,000_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191284,4.287065810260905,spot_peer,000_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191284,26.303440583379377,spot_baseline,000_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191284,25.57478053125476,baseline,000_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191471,-21.75914350726266,spot_baseline,HSeldon,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191471,-20.407529515891312,peer,HSeldon,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191471,-29.95278008294995,spot_peer,HSeldon,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191471,-0.3340923111404983,relative_legacy,HSeldon,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191471,-13.85048721266003,baseline,HSeldon,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191935,13.750352374993504,spot_baseline,pgodzinai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191935,-4.655770158117699,spot_peer,pgodzinai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191935,-5.458106993518396,peer,pgodzinai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191935,-0.1330630193110653,relative_legacy,pgodzinai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191935,12.198641066108378,baseline,pgodzinai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191975,25.934226848224256,spot_peer,jkraybill_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191975,14.22269490163854,peer,jkraybill_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191975,56.68963160058486,spot_baseline,jkraybill_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191975,0.1506793599470381,relative_legacy,jkraybill_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,191975,33.59250730192873,baseline,jkraybill_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192049,34.44278060968878,baseline,gnosis-ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192049,12.513677432263272,spot_peer,gnosis-ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192049,0.0834638967997305,relative_legacy,gnosis-ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192049,37.85116232537298,spot_baseline,gnosis-ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192049,10.229111962746895,peer,gnosis-ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192418,1.0108123811730705,peer,InstitutPelFutur,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192418,23.878685958711674,spot_baseline,InstitutPelFutur,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192418,-0.0432093903885938,relative_legacy,InstitutPelFutur,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192418,2.559667538855072,spot_peer,InstitutPelFutur,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192418,21.203213055621163,baseline,InstitutPelFutur,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192472,-5.597968392670465,peer,bestworldbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192472,13.612234673618277,baseline,bestworldbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192472,13.750352374993504,spot_baseline,bestworldbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192472,-4.655770158117699,spot_peer,bestworldbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192472,-0.1376106734914857,relative_legacy,bestworldbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192924,-7.134497274253534,peer,acm_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192924,-0.1471114113616295,relative_legacy,acm_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192924,3.209964705275598,baseline,acm_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192924,-10.42052089725273,spot_peer,acm_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,192924,5.658352836636751,spot_baseline,acm_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,193275,46.67576157261716,spot_baseline,histerio,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,193275,0.1605202359378102,relative_legacy,histerio,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,193275,15.724912574518129,peer,histerio,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,193275,18.80033313361195,spot_peer,histerio,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,193275,41.89504197266981,baseline,histerio,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,195286,38.80260068881333,baseline,Unwrapped80T,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,195286,0.1538017084169279,relative_legacy,Unwrapped80T,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,195286,14.933071876107247,peer,Unwrapped80T,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,195286,20.13033012584023,spot_peer,Unwrapped80T,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,204737,-9.436993987259472,spot_peer,SynapseSeer,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,204737,7.0389327891398015,spot_baseline,SynapseSeer,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,204737,-5.635244208354024,peer,SynapseSeer,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,204737,-0.1182104802049597,relative_legacy,SynapseSeer,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,204737,3.4273723051133533,baseline,SynapseSeer,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,208405,45.62326339132396,baseline,mf-bot-4,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,208405,17.91461960566831,peer,mf-bot-4,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,208405,20.13033012584023,spot_peer,mf-bot-4,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,208405,0.1884795057272192,relative_legacy,mf-bot-4,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,215725,27.221264139776903,spot_peer,estr.ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,215725,32.01495446055866,baseline,estr.ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,215725,58.496250072115615,spot_baseline,estr.ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,215725,13.785250444465907,peer,estr.ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,215725,0.1456421234883044,relative_legacy,estr.ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,216863,-32.19280948873623,spot_baseline,tombot61,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,216863,-31.02124576042993,baseline,tombot61,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,216863,-37.385736967522654,spot_peer,tombot61,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,216863,-0.5814082821905073,relative_legacy,tombot61,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,216863,-37.596609952448006,peer,tombot61,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,218269,-15.200309344505014,spot_baseline,tombot37,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,218269,-14.96754763311742,baseline,tombot37,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,218269,-26.260097895901776,peer,tombot37,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,218269,-25.280258302838806,spot_peer,tombot37,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,218269,-0.4224201549107556,relative_legacy,tombot37,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,218666,36.571381055877744,baseline,GreeneiBot2,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,218666,11.879244690702173,spot_peer,GreeneiBot2,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,218666,0.0920476398415119,relative_legacy,GreeneiBot2,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,218666,36.96060700318379,spot_baseline,GreeneiBot2,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,218666,11.137299255705186,peer,GreeneiBot2,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,218945,0.2697508597116564,spot_peer,SeidrBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,218945,20.664322398339536,spot_baseline,SeidrBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,218945,-0.0736158426620392,relative_legacy,SeidrBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,218945,-0.9928162649518923,peer,SeidrBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,218945,19.30088532031976,baseline,SeidrBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,219459,-2.027049209690771,baseline,karamazov,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,219459,-26.3034405833794,spot_baseline,karamazov,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,219459,-0.036638268565485,relative_legacy,karamazov,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,219459,-33.19014308627421,spot_peer,karamazov,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,219459,-2.570442109937828,peer,karamazov,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,219886,23.52123761801665,spot_baseline,SaraBase,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,219886,2.305020887374584,spot_peer,SaraBase,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,219886,-0.0469316901590299,relative_legacy,SaraBase,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,219886,0.9372281052076256,peer,SaraBase,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,219886,22.00864270795113,baseline,SaraBase,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,220077,-12.416268610343732,spot_peer,mmBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,220077,-0.244895764825071,relative_legacy,mmBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,220077,2.82058306946457,baseline,mmBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,220077,-13.38425887958321,peer,mmBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,220077,2.856915219677092,spot_baseline,mmBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,221727,12.513677432263272,spot_peer,mf-bot-5,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,221727,0.0872270176231827,relative_legacy,mf-bot-5,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,221727,10.61059208056323,peer,mf-bot-5,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,221727,35.43503833943636,baseline,mf-bot-5,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,222142,0.0446298046538175,baseline,predictomatic,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,222142,22.93687988529972,spot_baseline,predictomatic,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,222142,1.8887236970903516,spot_peer,predictomatic,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,222142,0.003675014651849,peer,predictomatic,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29301,"Will South Dakota voters approve Initiated Measure 29, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.107383+00,222142,-1.832534385162553e-05,relative_legacy,predictomatic,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29428 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,182315,5.508482454311654,peer,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,182315,47.47589438442468,baseline,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,182315,5.929197919505433,spot_peer,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,182315,56.55971758542251,spot_baseline,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,182315,-0.0617789001465146,relative_legacy,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,185690,-0.0980118508786931,relative_legacy,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,185690,4.03542273446656,spot_peer,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,185690,53.90347029707544,spot_baseline,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,185690,51.77803262410121,baseline,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,185690,4.918457146991472,peer,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,185698,0.0115516726510603,relative_legacy,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,185698,20.18377471465195,spot_peer,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,185698,5.046233822672717,peer,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,185698,22.24990448123313,baseline,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,185699,3.1110177172993727,spot_peer,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,185699,52.60688116675877,spot_baseline,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,185699,-0.086153877608541,relative_legacy,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,185699,36.29291672040882,baseline,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,185699,2.110388276612786,peer,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,187708,76.55347463629771,spot_baseline,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,187708,9.943672279729372,peer,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,187708,20.18377471465195,spot_peer,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,187708,0.0465209910063878,relative_legacy,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,187708,39.02230661610535,baseline,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,188107,73.69655941662063,spot_baseline,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,188107,41.18893408261296,baseline,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,188107,0.051348641657596,relative_legacy,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,188107,18.14693304990204,spot_peer,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,188107,10.516951396929926,peer,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,188389,21.9091058246197,spot_baseline,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,188389,-0.2695748366016631,peer,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,188389,0.3151198672290528,baseline,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,188389,-0.0066015466209808,relative_legacy,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,188389,-18.77500375136311,spot_peer,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,188909,-64.38561897747248,spot_baseline,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,188909,-80.29894737923729,spot_peer,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,188909,-15.15122242842139,baseline,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,188909,-0.3110760899421583,relative_legacy,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,188909,-18.905421971808355,peer,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,189585,14.567336902599578,peer,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,189585,0.0358374127037083,relative_legacy,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,189585,13.948099327818658,spot_peer,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,189585,64.18257346840029,baseline,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,189588,-4.437202489641037,relative_legacy,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,189588,-323.77451911848925,spot_peer,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,189588,-383.26192881655567,baseline,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,189588,-405.8893689053569,spot_baseline,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,189588,-307.9007263139604,peer,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,189869,-0.149556066744491,relative_legacy,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,189869,46.6373094631081,baseline,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,189869,1.197580052776185,peer,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,189869,0.2134418007248918,spot_peer,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,190710,17.01437400628561,peer,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,190710,0.0695487460489181,relative_legacy,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,190710,71.36958148433588,spot_baseline,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,190710,16.487910908542567,spot_peer,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,190710,68.07948910839757,baseline,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,190772,78.24085649273731,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,190772,58.20767977171312,baseline,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,190772,21.386795947437328,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,190772,0.1013672349089263,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,190772,16.11718317631146,peer,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191026,67.80719051126377,spot_baseline,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191026,0.0,relative_legacy,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191026,1.9972546258121893,peer,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191026,13.948099327818658,spot_peer,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191026,9.81537525639568,baseline,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191046,0.0,relative_legacy,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191046,13.948099327818658,spot_peer,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191046,5.748091507615327,peer,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191046,29.38138801258557,baseline,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191284,20.65852477326055,peer,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191284,20.18377471465195,spot_peer,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191284,74.43252830518605,baseline,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191284,0.1195571956314561,relative_legacy,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191471,8.748058329815105,peer,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191471,67.80719051126377,spot_baseline,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191471,43.21899687935002,baseline,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191471,13.948099327818658,spot_peer,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191471,0.0138223802255047,relative_legacy,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191935,1.6724328284689716,spot_peer,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191935,-0.1182112300512702,relative_legacy,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191935,44.38000532476026,baseline,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191935,2.1581246725809957,peer,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191935,50.58909297299573,spot_baseline,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191975,-6.04664487862517,peer,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191975,36.513259345253,spot_baseline,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191975,-0.2048751902784664,relative_legacy,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191975,26.467918590038128,baseline,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,191975,-8.362952261577494,spot_peer,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192049,0.0330939778298919,relative_legacy,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192049,61.77906653471,baseline,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192049,13.71957107885198,peer,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192049,13.948099327818658,spot_peer,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192418,0.0645380103120523,relative_legacy,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192418,15.51668963878987,peer,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192418,63.39148139722265,baseline,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192418,71.36958148433588,spot_baseline,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192418,16.487910908542567,spot_peer,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192472,32.70117374091111,spot_peer,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192472,94.11063109464314,spot_baseline,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192472,93.22801664199912,baseline,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192472,33.44427824159953,peer,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192472,0.2928446024777872,relative_legacy,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192924,3.8447788663895657,peer,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192924,-0.0455237603164059,relative_legacy,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192924,33.21169047824537,baseline,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192924,7.309851439382751,spot_peer,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,192924,58.496250072115615,spot_baseline,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,193275,0.0290577482928367,relative_legacy,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,193275,13.409346451150736,peer,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,193275,13.56166001468254,spot_peer,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,193275,61.29627170199883,baseline,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,193275,67.26516293283849,spot_baseline,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,195286,46.64264034052984,baseline,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,195286,7.309851439382751,spot_peer,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,195286,-0.0455237603164059,relative_legacy,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,195286,6.178408677352367,peer,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,204737,26.06292585247523,spot_peer,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,204737,41.46091168272272,baseline,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,204737,84.79969065549501,spot_baseline,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,204737,0.0830810280441714,relative_legacy,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,204737,12.409241084594006,peer,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,208405,8.176932641292526,peer,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,208405,55.1101342649468,baseline,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,208405,-0.0517911113770069,relative_legacy,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,208405,7.309851439382751,spot_peer,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,215725,58.496250072115615,spot_baseline,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,215725,32.047096976595554,baseline,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,215725,3.6659701251584704,peer,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,215725,7.309851439382751,spot_peer,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,215725,-0.0455237603164059,relative_legacy,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,216863,20.18377471465195,spot_peer,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,216863,0.1195571956314561,relative_legacy,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,216863,76.55347463629771,spot_baseline,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,216863,20.63438058091641,peer,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,216863,73.78541572169154,baseline,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,218269,26.06292585247523,spot_peer,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,218269,84.79969065549501,spot_baseline,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,218269,0.1997347068647026,relative_legacy,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,218269,83.51943662529534,baseline,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,218269,26.604240010497755,peer,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,218666,-0.2169026573387463,relative_legacy,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,218666,42.65331381166733,spot_baseline,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,218666,-3.7193363114939095,peer,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,218666,-3.985391921358489,spot_peer,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,218666,42.275991087276296,baseline,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,218945,-0.0517379116133527,relative_legacy,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,218945,7.309851439382751,spot_peer,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,218945,58.496250072115615,spot_baseline,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,218945,8.01252894208374,peer,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,218945,54.6635445171942,baseline,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,219459,5.899803966086331,baseline,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,219459,1.5263392053133973,peer,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,219459,20.18377471465195,spot_peer,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,219459,76.55347463629771,spot_baseline,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,219459,0.0067405642937239,relative_legacy,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,219886,77.15644744875087,spot_baseline,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,219886,20.68428800614437,peer,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,219886,0.123159265188704,relative_legacy,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,219886,20.6136650168412,spot_peer,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,219886,72.35234118296133,baseline,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,220077,14.2049212911019,spot_peer,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,220077,68.16741417928333,spot_baseline,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,220077,0.0359229818039655,relative_legacy,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,220077,14.708435153666182,peer,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,220077,67.31659139871729,baseline,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,221727,8.05556218438375,peer,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,221727,7.309851439382751,spot_peer,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,221727,54.79990516504279,baseline,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,221727,-0.0517379116133527,relative_legacy,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29302,"Will Hawaii voters approve the constitutional amendment on the ballot in 2024, which would repeal the state's ban on same-sex marriage?",2024-10-31 13:38:12.111607+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29429 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,182315,-564.3856189774725,spot_baseline,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,182315,-220.07899538724487,peer,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,182315,-256.6565578580871,spot_peer,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,182315,-474.1593857588917,baseline,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,182315,-2.971651653099227,relative_legacy,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,185690,0.856094117413887,relative_legacy,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,185690,-109.15516803093978,baseline,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,185690,56.580794720649365,peer,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,185690,64.98985416807041,spot_peer,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,185690,-113.60615495760284,spot_baseline,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,185698,-173.6965594166206,spot_baseline,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,185698,-71.7479808996428,baseline,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,185698,22.113315784787385,spot_peer,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,185698,-0.0369891425223159,relative_legacy,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,185698,-5.831311293896123,peer,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,185699,-42.59639915575112,spot_peer,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,185699,-43.490123239022246,peer,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,185699,-238.3059940711265,baseline,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,185699,-0.526018922240485,relative_legacy,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,185699,-264.38561897747246,spot_baseline,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,187708,-287.83214434117474,spot_baseline,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,187708,-59.32628895699264,spot_peer,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,187708,-148.70633340433636,baseline,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,187708,-0.3439112343190588,relative_legacy,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,187708,-30.146631770730437,peer,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,188107,0.0296503596639942,relative_legacy,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,188107,-3.632762834222964,peer,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,188107,3.344920232468562,spot_peer,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,188107,-117.18211285059304,baseline,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,188107,-200.0,spot_baseline,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,188389,-457.3466861883326,spot_baseline,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,188389,-180.28065472418064,spot_peer,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,188389,-0.0473563249200437,relative_legacy,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,188389,-8.471717885332227,baseline,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,188389,-3.327776317512765,peer,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,188909,20.976755585543035,peer,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,188909,0.3207601694012718,relative_legacy,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,188909,89.97683640522634,spot_peer,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,188909,-18.580597439232903,baseline,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,188909,-78.58751946471526,spot_baseline,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,189585,-132.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,189585,-125.12497014400384,baseline,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,189585,51.72764677247072,spot_peer,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,189585,43.2484447708539,peer,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,189585,0.6741544957342022,relative_legacy,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,189588,0.2819070259934758,relative_legacy,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,189588,22.113315784787385,spot_peer,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,189588,14.929677315356564,peer,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,189588,-164.05684388504994,baseline,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,189588,-173.6965594166206,spot_baseline,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,189869,-283.65012677171205,spot_baseline,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,189869,-56.34227780827548,spot_peer,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,189869,-0.7776179268796062,relative_legacy,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,189869,-272.51929223278233,baseline,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,189869,-61.38214056166272,peer,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,190710,36.27466984288653,peer,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,190710,-136.19772407432575,baseline,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,190710,0.5750473083585437,relative_legacy,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,190710,44.2571342747671,spot_peer,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,190710,-142.66254735540554,spot_baseline,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,190772,-405.8893689053569,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,190772,-302.17435521269744,baseline,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,190772,-108.63720088173108,peer,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,190772,-1.4167581140298804,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,190772,-143.56411637754647,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191026,0.1794426019066758,relative_legacy,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191026,-12.48556428049606,baseline,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191026,11.886560890860542,peer,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191026,84.50964850526107,spot_peer,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191026,-86.24964762500649,spot_baseline,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191046,-132.19280948873623,spot_baseline,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191046,51.72764677247072,spot_peer,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191046,-57.23228745359611,baseline,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191046,0.3764907860511047,relative_legacy,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191046,22.69341241522585,peer,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191284,-322.9881508594655,baseline,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191284,-96.61728501583414,peer,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191284,-90.9791256957533,spot_peer,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191284,-1.2568622824519615,relative_legacy,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191284,-332.1928094887362,spot_baseline,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191471,-205.8893689053569,spot_baseline,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191471,0.087666569148424,relative_legacy,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191471,-131.364006612567,baseline,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191471,-0.8573439093224335,spot_peer,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191471,-0.6060179712542205,peer,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191935,0.7217360089533958,relative_legacy,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191935,-110.93117458387653,baseline,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191935,46.41615388994033,peer,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191935,56.75016367226519,spot_peer,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191935,-125.15387669959644,spot_baseline,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191975,-220.64508774674263,spot_baseline,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191975,-0.0064796394566454,relative_legacy,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191975,-8.020192417208598,peer,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191975,-11.38604896583607,spot_peer,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,191975,-147.90592845191958,baseline,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192049,-0.2428712507736558,relative_legacy,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192049,-23.21296442110366,peer,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192049,-19.625739461641285,spot_peer,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192049,-211.9082193605516,baseline,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192049,-232.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192418,74.69830646658056,spot_peer,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192418,0.9461794545257916,relative_legacy,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192418,-88.84615875697797,baseline,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192418,62.55413057624325,peer,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192472,115.05558020823004,spot_peer,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192472,-43.06594710195052,baseline,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192472,1.569828135719754,relative_legacy,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192472,108.0620474511637,peer,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192472,-43.440282414577496,spot_baseline,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192924,-232.19280948873623,spot_baseline,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192924,-19.625739461641285,spot_peer,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192924,-131.94897277576445,baseline,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192924,-10.653684427909727,peer,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,192924,-0.0618088591857866,relative_legacy,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,193275,11.8772836760825,peer,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,193275,0.2443543998284301,relative_legacy,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,193275,-164.69251089198144,baseline,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,193275,18.623450171114317,spot_peer,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,193275,-178.58751946471529,spot_baseline,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,195286,-232.19280948873623,spot_baseline,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,195286,-17.772346088207975,peer,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,195286,-185.32260988434888,baseline,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,195286,-19.625739461641285,spot_peer,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,195286,-0.1550240320011761,relative_legacy,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,208405,0.9212836678881944,relative_legacy,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,208405,70.49604232478957,spot_peer,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,208405,-99.7658251450366,baseline,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,208405,60.976175799512426,peer,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,208405,-105.88936890535685,spot_baseline,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,215725,-564.3856189774725,spot_baseline,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,215725,-1.8810516280853096,relative_legacy,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,215725,-256.6565578580871,spot_peer,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,215725,-309.47497366653147,baseline,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,215725,-140.5716608659811,peer,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,216863,-96.40208246282955,baseline,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,216863,0.9891831323987844,relative_legacy,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,216863,74.69830646658056,spot_peer,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,216863,66.19269523158214,peer,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,216863,-100.0,spot_baseline,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,218269,-173.6965594166206,spot_baseline,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,218269,22.113315784787385,spot_peer,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,218269,14.489560208641343,peer,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,218269,0.2841828355245566,relative_legacy,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,218269,-171.10933728874966,baseline,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,218666,67.16114449023051,peer,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,218666,74.69830646658056,spot_peer,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,218666,-99.2628454560483,baseline,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,218666,1.0091048461267584,relative_legacy,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,218666,-100.0,spot_baseline,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,218945,-170.83964419694354,spot_baseline,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,218945,16.934833463322178,peer,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,218945,24.151821535864723,spot_peer,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,218945,-159.73576520624272,baseline,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,218945,0.3123417986928397,relative_legacy,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,219459,-10.188317608821976,baseline,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,219459,51.72764677247072,spot_peer,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,219459,3.782268452555588,peer,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,219459,0.0560218345933208,relative_legacy,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,219459,-132.19280948873623,spot_baseline,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,219886,-46.42257160487453,spot_baseline,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,219886,1.4531444501336683,relative_legacy,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,219886,98.91797977258952,peer,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,219886,-42.39974227516687,baseline,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,219886,112.9276158836592,spot_peer,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,220077,-32.985098020891506,peer,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,220077,-236.70491869715323,baseline,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,220077,-24.905931530947964,spot_peer,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,220077,-0.3689314782479406,relative_legacy,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,220077,-239.59286763311397,spot_baseline,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,221727,-132.19280948873623,spot_baseline,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,221727,-123.84015421950755,baseline,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,221727,0.6736912819426485,relative_legacy,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,221727,51.72764677247072,spot_peer,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29303,Will Donald Trump sweep all 7 battleground states in the 2024 election?,2024-10-31 13:38:12.115071+00,221727,43.01160296117389,peer,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29430 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,182315,-105.22138963744813,baseline,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,182315,45.31265939367925,peer,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,182315,0.2898159231032434,relative_legacy,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,182315,-125.15387669959644,spot_baseline,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,182315,52.76671226259573,spot_peer,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,185690,29.489223201324677,spot_peer,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,185690,-151.6375201039022,baseline,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,185690,-0.0049806889813044,relative_legacy,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,185690,27.61787391834465,peer,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,185690,-157.77669993169525,spot_baseline,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,185698,-0.480016359632213,relative_legacy,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,185698,26.303440583379377,spot_baseline,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,185698,160.83663684334195,spot_peer,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,185698,-25.340687084706275,peer,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,185698,-100.081116988643,baseline,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,185699,-132.19280948873623,spot_baseline,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,185699,0.2302740083875676,relative_legacy,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,185699,47.74419536280127,spot_peer,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,185699,-120.75939315976622,baseline,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,185699,42.78161214111388,peer,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,187708,-95.9044165786635,baseline,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,187708,-182.6232932263293,spot_baseline,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,187708,-0.0618765603641197,relative_legacy,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,187708,11.760337521785395,spot_peer,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,187708,9.24026688091572,peer,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,188107,-383.65012677171205,spot_baseline,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,188107,-2.592628651047238,peer,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,188107,-0.0450947490059203,relative_legacy,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,188107,-7.783216709587857,baseline,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,188107,-131.67911545205698,spot_peer,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,188389,-65.74452545226798,spot_baseline,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,188389,0.0399341926397303,relative_legacy,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,188389,95.15729611728226,spot_peer,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,188389,4.496425807655577,peer,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,188389,-2.9872464587016863,baseline,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,188909,-35.03530224421313,baseline,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,188909,-147.39311883324126,spot_baseline,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,188909,10.108241403195594,peer,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,188909,36.89825992743679,spot_peer,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,188909,0.0356016312199517,relative_legacy,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,189585,-132.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,189585,0.2328260242704117,relative_legacy,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,189585,-125.1156614265679,baseline,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,189585,47.74419536280127,spot_peer,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,189585,44.26646261638866,peer,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,189869,-2.950831818562089,relative_legacy,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,189869,-464.38561897747246,spot_baseline,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,189869,-446.1667748820845,baseline,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,189869,-189.28662303364464,spot_peer,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,189869,-185.35604812557904,peer,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,190710,-118.44245711374272,spot_baseline,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,190710,57.55553740148177,spot_peer,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,190710,0.3670865654179607,relative_legacy,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,190710,-113.19258157482432,baseline,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,190710,54.39587598228484,peer,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,190772,-2.24260312132148,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,190772,-139.10680169188487,peer,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,190772,-189.28662303364464,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,190772,-345.9634766492789,baseline,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,190772,-464.38561897747246,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191026,-19.13730888615399,baseline,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191026,-132.19280948873623,spot_baseline,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191026,47.74419536280127,spot_peer,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191026,7.63231264380058,peer,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191026,0.0331626403367499,relative_legacy,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191046,-57.00031739471577,baseline,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191046,47.74419536280127,spot_peer,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191046,-132.19280948873623,spot_baseline,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191046,23.16967828056956,peer,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191046,0.1586298269946145,relative_legacy,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191284,-332.1928094887362,spot_baseline,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191284,-322.9870109728042,baseline,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191284,-94.57168411436484,peer,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191284,-1.684791323331655,relative_legacy,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191284,-94.96257710542277,spot_peer,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191471,-73.69655941662063,spot_baseline,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191471,89.48325060922996,spot_peer,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191471,0.5765576752460688,relative_legacy,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191471,-47.06792250385568,baseline,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191471,60.62752336733232,peer,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191935,-4.781818443134196,peer,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191935,-180.86906751658904,baseline,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191935,-4.840795318991898,spot_peer,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191935,-0.4167702271171905,relative_legacy,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191935,-205.8893689053569,spot_baseline,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191975,-263.46243569869733,peer,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191975,-3.9566149212379744,relative_legacy,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191975,-722.881869049588,spot_baseline,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191975,-512.6254989888132,baseline,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,191975,-373.73245074829725,spot_peer,jkraybill_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192049,147.36046309335978,peer,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192049,160.83663684334195,spot_peer,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192049,1.679939077389429,relative_legacy,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192049,24.05877714803833,baseline,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192418,155.1414752052489,peer,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192418,44.36066514756148,spot_baseline,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192418,173.72107802978377,spot_peer,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192418,39.42192466561153,baseline,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192418,1.7992490797513665,relative_legacy,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192472,-25.15387669959645,spot_baseline,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192472,124.12009849670773,spot_peer,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192472,124.77786277159048,peer,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192472,-24.955623890460107,baseline,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192472,1.3262723732406467,relative_legacy,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192924,0.2029585565144074,relative_legacy,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192924,-75.17828302842202,baseline,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192924,47.74419536280127,spot_peer,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192924,-132.19280948873623,spot_baseline,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,192924,30.396392089737617,peer,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,193275,0.2675501652401632,relative_legacy,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,193275,-119.5007199003401,baseline,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,193275,46.21196467159358,peer,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,193275,-128.6304185156641,spot_baseline,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,193275,50.28608195298656,spot_peer,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,195286,-74.48140814965573,peer,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,195286,-264.65569347534284,baseline,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,195286,-1.361179986549613,relative_legacy,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,195286,-332.1928094887362,spot_baseline,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,195286,-94.96257710542277,spot_peer,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,204737,-43.91257018750911,peer,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,204737,-163.0827615847177,baseline,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,204737,-94.96257710542277,spot_peer,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,204737,-332.1928094887362,spot_baseline,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,204737,-0.7931004366920732,relative_legacy,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,208405,-163.54662653718,baseline,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,208405,-0.1575048875322743,relative_legacy,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,208405,18.129864375117936,spot_peer,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,208405,15.834841907973326,peer,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,208405,-173.6965594166206,spot_baseline,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,215725,-1.2994585064933206,relative_legacy,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,215725,-78.25762546869129,peer,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,215725,-147.5475677872159,spot_peer,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,215725,-405.8893689053569,spot_baseline,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,215725,-222.8070074525806,baseline,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,216863,-232.19280948873623,spot_baseline,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,216863,-223.9744063211029,baseline,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,216863,-23.60919087131074,spot_peer,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,216863,-24.099628904243268,peer,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,216863,-0.7201860592226131,relative_legacy,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,218269,-173.6965594166206,spot_baseline,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,218269,17.404736785026312,peer,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,218269,-171.150002725053,baseline,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,218269,-0.1437516439966775,relative_legacy,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,218269,18.129864375117936,spot_peer,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,218666,17.100131467806104,peer,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,218666,-173.6965594166206,spot_baseline,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,218666,-172.66626712700776,baseline,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,218666,-0.1474469129898827,relative_legacy,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,218666,18.129864375117936,spot_peer,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,218945,-51.45731728297583,spot_baseline,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,218945,98.17888613656636,peer,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,218945,0.9865629223301484,relative_legacy,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,218945,105.35170294438888,spot_peer,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,218945,-48.14846769936088,baseline,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,219459,-65.34824611773944,spot_peer,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,219459,-4.660608196266198,peer,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,219459,-22.405117817426724,baseline,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,219459,-290.6890595608519,spot_baseline,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,219459,-0.0992891876242654,relative_legacy,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,219886,117.03102055254038,spot_peer,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,219886,-35.08904350570702,spot_baseline,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,219886,-33.39675154456685,baseline,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,219886,1.1582633525556556,relative_legacy,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,219886,111.34673033661294,peer,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,220077,-2.6980250192191164,relative_legacy,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,220077,-168.4413977791146,peer,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,220077,-166.31596333953476,spot_peer,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,220077,-432.1928094887362,spot_baseline,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,220077,-427.0617411013447,baseline,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,221727,-162.72224662553188,baseline,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,221727,15.66292559409836,peer,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,221727,-173.6965594166206,spot_baseline,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,221727,-0.1572262435720848,relative_legacy,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29304,"Will Kalshi be #1 in the free apps in the Apple App Store on November 5, 2024?",2024-10-31 13:38:12.118669+00,221727,18.129864375117936,spot_peer,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29431 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,182315,28.555227743055976,spot_peer,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,182315,74.84612330040356,spot_baseline,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,182315,19.265168419081057,peer,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,182315,0.1535146882836615,relative_legacy,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,182315,62.96917043362722,baseline,RyansAGI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,185690,20.163386116965043,spot_baseline,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,185690,-0.3361101625830864,relative_legacy,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,185690,-15.603643845695126,peer,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,185690,19.38414155894441,baseline,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,185690,-10.462756922827298,spot_peer,annabot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,185698,-0.5872076332109466,relative_legacy,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,185698,-261.88083409318654,spot_peer,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,185698,-332.1928094887362,spot_baseline,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,185698,-43.14659436078312,baseline,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,185698,-39.84708305476277,peer,RonanMcGovern,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,185699,23.87868595871165,spot_baseline,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,185699,-12.570128028461951,peer,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,185699,-0.2915761151118687,relative_legacy,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,185699,-7.811764676990488,spot_peer,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,185699,22.0937401741711,baseline,MWG,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,187708,45.62804815107251,spot_baseline,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,187708,24.15633312847418,baseline,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,187708,7.707141731580684,spot_peer,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,187708,-0.0584233162200866,relative_legacy,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,187708,1.1171248426621458,peer,twsummerbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,188107,39.77735974184392,baseline,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,188107,77.96099315747,spot_baseline,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,188107,30.777792862858515,spot_peer,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,188107,0.0864183208730566,relative_legacy,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,188107,11.684024145257226,peer,Cassie,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,188389,14.458612204483057,spot_peer,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,188389,0.5416867409320938,peer,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,188389,55.09006646475233,spot_baseline,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,188389,0.0031476619434703,relative_legacy,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,188389,2.648461009094229,baseline,Panshul42,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,188909,40.05379295837288,spot_baseline,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,188909,-0.0174649759957109,relative_legacy,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,188909,9.570482766530498,baseline,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,188909,-0.0316823257925164,peer,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,188909,3.729721894258685,spot_peer,silicoqr,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,189585,-6.081620144421826,spot_peer,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,189585,-0.2736115926245146,relative_legacy,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,189585,-11.165828206430229,peer,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,189585,24.897082935802548,baseline,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,189588,29.773480736129788,spot_peer,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,189588,0.2013313224967774,relative_legacy,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,189588,72.2979997869438,baseline,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,189588,23.06137152786553,peer,mf-bot-3,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,189869,23.505783240330143,peer,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,189869,29.773480736129788,spot_peer,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,189869,0.2058376898064114,relative_legacy,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,189869,73.55115893764955,baseline,VeritasAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,190710,-47.82067539085051,spot_peer,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,190710,-32.19280948873623,spot_baseline,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,190710,-0.8351715842578376,relative_legacy,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,190710,-30.79387804968498,baseline,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,190710,-51.63227407445724,peer,Bot_Pepa,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,190772,50.54627486344902,baseline,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,190772,13.305227770187573,peer,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,190772,23.5327108432615,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,190772,67.80719051126377,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,190772,0.0810696692541995,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191026,4.153313204028364,baseline,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191026,-1.161867074071434,peer,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191026,-0.0259259514564133,relative_legacy,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191026,28.688114778816157,spot_baseline,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191026,-4.380074355326626,spot_peer,manticAI,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191046,23.5327108432615,spot_peer,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191046,29.302611920551403,baseline,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191046,7.95792983070566,peer,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191046,0.0556254306343346,relative_legacy,archipelago,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191284,47.19727293961604,baseline,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191284,9.786832190737108,spot_peer,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191284,-0.0635993947812312,relative_legacy,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191284,4.118170889189553,peer,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191284,48.54268271702416,spot_baseline,000_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191471,-13.912283082511156,baseline,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191471,-40.375901404712536,spot_peer,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191471,-21.75914350726268,spot_baseline,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191471,-29.537335350479356,peer,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191471,-0.501471973925863,relative_legacy,HSeldon,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191935,33.54950844680896,baseline,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191935,-3.2385602765981623,peer,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191935,37.85116232537298,spot_baseline,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191935,-0.1601817293763192,relative_legacy,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,191935,2.1580703513833885,spot_peer,pgodzinai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192049,0.2681747388619711,relative_legacy,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192049,27.710283597629125,peer,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192049,35.657435102006865,spot_peer,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192049,77.68786878083226,baseline,gnosis-ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192418,29.82061773867782,peer,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192418,39.03285803966768,spot_peer,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192418,89.53026213333067,spot_baseline,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192418,79.58313071063924,baseline,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192418,0.2989200625041033,relative_legacy,InstitutPelFutur,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192472,16.889039549688004,spot_peer,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192472,58.08367872236032,baseline,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192472,0.0357582795416949,relative_legacy,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192472,11.466650932934687,peer,bestworldbot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192924,2.368556961023521,peer,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192924,48.54268271702416,spot_baseline,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192924,9.786832190737108,spot_peer,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192924,-0.0449980099262832,relative_legacy,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,192924,27.632633885841944,baseline,acm_bot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,193275,39.76283268388616,baseline,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,193275,-0.1266316343587137,relative_legacy,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,193275,-0.5577925980825762,peer,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,193275,4.969992035629577,spot_peer,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,193275,41.7920007811965,spot_baseline,histerio,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,195286,16.889039549688004,spot_peer,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,195286,46.68748966121144,baseline,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,195286,0.0116620811907763,relative_legacy,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,195286,8.885143740226228,peer,Unwrapped80T,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,204737,0.0987626169428977,relative_legacy,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,204737,29.773480736129788,spot_peer,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,204737,12.012004135240677,peer,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,204737,37.756622706800336,baseline,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,208405,0.2782868716833592,relative_legacy,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,208405,79.88221198451942,baseline,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,208405,35.657435102006865,spot_peer,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,208405,28.59965181633623,peer,mf-bot-4,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,215725,42.07112086872223,baseline,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,215725,29.773480736129788,spot_peer,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,215725,13.305160544501891,peer,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,215725,0.1089395373977447,relative_legacy,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,215725,76.55347463629771,spot_baseline,estr.ai,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,216863,58.496250072115615,spot_baseline,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,216863,11.024544335672568,peer,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,216863,0.0324343719094302,relative_legacy,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,216863,56.438209852778265,baseline,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,216863,16.889039549688004,spot_peer,tombot61,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,218269,4.209768281042449,peer,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,218269,48.54268271702416,spot_baseline,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,218269,9.786832190737108,spot_peer,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,218269,-0.0635993947812312,relative_legacy,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,218269,47.84066476082005,baseline,tombot37,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,218666,33.19732505171208,baseline,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,218666,-6.756310772108132,peer,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,218666,-1.059103244627361,spot_peer,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,218666,-0.2140063961494872,relative_legacy,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,218666,33.34237337251918,spot_baseline,GreeneiBot2,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,218945,40.53001679773163,baseline,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,218945,6.043104114323544,spot_peer,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,218945,0.4223081143779832,peer,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,218945,-0.1119180792796134,relative_legacy,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,218945,43.29594072761063,spot_baseline,SeidrBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,219459,26.303440583379377,spot_baseline,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,219459,-6.081620144421826,spot_peer,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,219459,-0.7283506619072704,peer,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,219459,2.027453293568654,baseline,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,219459,-0.0162965044263466,relative_legacy,karamazov,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,219886,55.8790959513176,baseline,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,219886,57.62415530098654,spot_baseline,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,219886,10.468179603566576,peer,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,219886,16.266770399316762,spot_peer,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,219886,0.0244651460780436,relative_legacy,SaraBase,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,220077,-7.811764676990488,spot_peer,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,220077,-13.47218079017628,peer,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,220077,-0.3069394449303718,relative_legacy,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,220077,23.87868595871165,spot_baseline,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,220077,23.600714014322563,baseline,mmBot,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,221727,-78.54632014841748,peer,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,221727,-69.0268626985873,baseline,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,221727,-1.2078187209436089,relative_legacy,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,221727,-77.43500637853383,spot_peer,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29305,Will Donald Trump outperform Marsha Blackburn in Tennessee in the 2024 election?,2024-10-31 13:38:12.122018+00,221727,-73.69655941662063,spot_baseline,mf-bot-5,True,yes,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29432 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,182315,33.34237337251918,spot_baseline,RyansAGI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,182315,0.1241397835148242,relative_legacy,RyansAGI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,182315,11.278682825272686,spot_peer,RyansAGI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,182315,28.070323879656275,baseline,RyansAGI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,182315,8.733963496947748,peer,RyansAGI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,185690,6.106176113231622,baseline,annabot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,185690,-7.981079657466819,spot_peer,annabot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,185690,-0.1145222133726534,relative_legacy,annabot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,185690,-8.58518942914307,peer,annabot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,185690,6.350294230615796,spot_baseline,annabot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,185698,-2.7008875881601417,spot_peer,RonanMcGovern,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,185698,13.750352374993504,spot_baseline,RonanMcGovern,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,185698,-0.0113042623434339,relative_legacy,RonanMcGovern,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,185698,-1.295480391539516,peer,RonanMcGovern,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,185698,4.289485600512718,baseline,RonanMcGovern,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,185699,49.44267210498884,baseline,MWG,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,185699,0.3216174579268209,relative_legacy,MWG,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,185699,52.60688116675877,spot_baseline,MWG,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,185699,22.92542691216193,peer,MWG,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,185699,25.024561477797057,spot_peer,MWG,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,187708,10.835717809041824,spot_baseline,twsummerbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,187708,-4.780578047316572,spot_peer,twsummerbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,187708,-0.0370882093282439,relative_legacy,twsummerbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,187708,5.833879159321694,baseline,twsummerbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,187708,-3.322107969254636,peer,twsummerbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,188107,4.580126374401512,peer,Cassie,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,188107,17.174334335954402,baseline,Cassie,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,188107,-8.474803272826389,spot_peer,Cassie,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,188107,0.0724223140688465,relative_legacy,Cassie,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,188107,5.658352836636751,spot_baseline,Cassie,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,188389,1.2957094953379402,peer,Panshul42,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,188389,10.869373433250978,spot_peer,Panshul42,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,188389,0.0210365528361091,relative_legacy,Panshul42,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,188389,32.768736417604714,spot_baseline,Panshul42,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,188389,4.350667851362092,baseline,Panshul42,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,188909,13.576474669929386,baseline,silicoqr,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,188909,56.55971758542251,spot_baseline,silicoqr,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,188909,6.3284132505664,peer,silicoqr,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,188909,27.845044114808854,spot_peer,silicoqr,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,188909,0.0933239201094338,relative_legacy,silicoqr,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,189585,-0.1730963761501503,relative_legacy,mf-bot-1,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,189585,0.0,spot_baseline,mf-bot-1,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,189585,-12.512229626840645,spot_peer,mf-bot-1,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,189585,-12.78964592235093,peer,mf-bot-1,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,189585,0.0004548381089031,baseline,mf-bot-1,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,189588,-14.352145410342017,baseline,mf-bot-3,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,189588,-23.107428470794822,peer,mf-bot-3,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,189588,-15.200309344505014,spot_baseline,mf-bot-3,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,189588,-0.3164887580691414,relative_legacy,mf-bot-3,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,189588,-23.35816506220513,spot_peer,mf-bot-3,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,189869,0.2908583840626463,relative_legacy,VeritasAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,189869,22.124618260637156,spot_peer,VeritasAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,189869,46.63936417649954,baseline,VeritasAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,189869,20.673447965674303,peer,VeritasAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,190710,40.42321701584113,baseline,Bot_Pepa,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,190710,16.218201652854873,peer,Bot_Pepa,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,190710,42.22330006830476,spot_baseline,Bot_Pepa,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,190710,0.2291676258878285,relative_legacy,Bot_Pepa,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,190710,17.61552475168493,spot_peer,Bot_Pepa,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,190772,14.495856421283428,spot_peer,Jay_Bailey_Bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,190772,37.85116232537298,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,190772,0.1389704479800041,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,190772,10.023334395732938,peer,Jay_Bailey_Bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,190772,28.23385780354341,baseline,Jay_Bailey_Bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191026,-0.5618848745521965,peer,manticAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191026,1.990811629462084,baseline,manticAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191026,-2.7008875881601417,spot_peer,manticAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191026,13.750352374993504,spot_baseline,manticAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191026,-0.0045262386313352,relative_legacy,manticAI,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191046,6.256165925478207,spot_peer,archipelago,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191046,26.303440583379377,spot_baseline,archipelago,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191046,0.0368880765313037,relative_legacy,archipelago,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191046,11.416038881481612,baseline,archipelago,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191046,2.108508165320553,peer,archipelago,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191284,25.574325313924657,baseline,000_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191284,5.3745679971507165,peer,000_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191284,26.303440583379377,spot_baseline,000_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191284,0.0785972025385703,relative_legacy,000_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191284,6.256165925478207,spot_peer,000_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191471,0.9759738561715464,spot_peer,HSeldon,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191471,-0.1748121653773857,peer,HSeldon,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191471,0.0054752946203913,relative_legacy,HSeldon,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191471,18.903382439001717,spot_baseline,HSeldon,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191471,12.097721030304092,baseline,HSeldon,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191935,-3.206691414084168,peer,pgodzinai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191935,12.198710940157866,baseline,pgodzinai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191935,-2.7008875881601417,spot_peer,pgodzinai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191935,-0.0408017965920212,relative_legacy,pgodzinai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,191935,13.750352374993504,spot_baseline,pgodzinai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192049,13.750352374993504,spot_baseline,gnosis-ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192049,-0.0408017965920212,relative_legacy,gnosis-ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192049,-2.7008875881601417,spot_peer,gnosis-ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192049,12.616571458071276,baseline,gnosis-ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192049,-3.297558805477359,peer,gnosis-ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192418,-6.650117405741493,peer,InstitutPelFutur,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192418,7.446284787933868,baseline,InstitutPelFutur,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192418,-0.088599313599163,relative_legacy,InstitutPelFutur,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192418,-6.513959672901962,spot_peer,InstitutPelFutur,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192418,8.406426478847456,spot_baseline,InstitutPelFutur,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192472,-0.2669769857702714,relative_legacy,bestworldbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192472,-19.99867479035958,peer,bestworldbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192472,-8.926733809708741,spot_baseline,bestworldbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192472,-18.88175648017319,spot_peer,bestworldbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192472,-8.870508155031633,baseline,bestworldbot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192924,-4.487984156327289,peer,acm_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192924,4.787988303184991,baseline,acm_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192924,8.406426478847456,spot_baseline,acm_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192924,-6.513959672901962,spot_peer,acm_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,192924,-0.0543114679031741,relative_legacy,acm_bot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,193275,-14.489634684517842,peer,histerio,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,193275,-0.1955848068898374,relative_legacy,histerio,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,193275,-13.754995342133071,spot_peer,histerio,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,193275,-1.7417053077409406,spot_baseline,histerio,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,193275,-1.972572993052172,baseline,histerio,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,195286,21.02506518023959,baseline,Unwrapped80T,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,195286,4.183027182090179,peer,Unwrapped80T,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,195286,6.256165925478207,spot_peer,Unwrapped80T,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,195286,0.0595384980390097,relative_legacy,Unwrapped80T,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,195286,26.303440583379377,spot_baseline,Unwrapped80T,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,204737,-0.0063117138440172,relative_legacy,SynapseSeer,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,204737,-0.8460414334726615,spot_peer,SynapseSeer,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,204737,16.349873228287958,spot_baseline,SynapseSeer,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,204737,-1.107097881550389,peer,SynapseSeer,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,204737,8.105614876171725,baseline,SynapseSeer,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,208405,35.6468661080884,baseline,mf-bot-4,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,208405,12.958649041747776,peer,mf-bot-4,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,208405,14.495856421283428,spot_peer,mf-bot-4,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,208405,37.85116232537298,spot_baseline,mf-bot-4,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,208405,0.1835224890451663,relative_legacy,mf-bot-4,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,215725,48.54268271702416,spot_baseline,estr.ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,215725,0.168545027794923,relative_legacy,estr.ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,215725,22.124618260637156,spot_peer,estr.ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,215725,11.460450478553016,peer,estr.ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,215725,26.70725099441932,baseline,estr.ai,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,216863,13.269997574530612,baseline,tombot61,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,216863,-3.443178259522933,peer,tombot61,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,216863,-2.7008875881601417,spot_peer,tombot61,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,216863,13.750352374993504,spot_baseline,tombot61,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,216863,-0.0433663635226182,relative_legacy,tombot61,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,218269,-32.19280948873623,spot_baseline,tombot37,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,218269,-0.4932754282103251,relative_legacy,tombot37,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,218269,-35.48288932095048,spot_peer,tombot37,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,218269,-31.73283524726405,baseline,tombot37,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,218269,-36.33495939214325,peer,tombot37,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,218666,18.969547842077485,peer,GreeneiBot2,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,218666,44.65410400402473,baseline,GreeneiBot2,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,218666,44.78436443620852,spot_baseline,GreeneiBot2,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,218666,19.442930901819537,spot_peer,GreeneiBot2,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,218666,0.2667509657543184,relative_legacy,GreeneiBot2,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,218945,0.0989236758326977,relative_legacy,SeidrBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,218945,8.126329567950908,spot_peer,SeidrBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,218945,28.92442851566425,spot_baseline,SeidrBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,218945,27.08901158198037,baseline,SeidrBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,218945,6.86087656028905,peer,SeidrBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,219459,-4.50988160376626,baseline,karamazov,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,219459,-4.210599772419279,peer,karamazov,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,219459,-54.25128487326928,spot_peer,karamazov,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,219459,-58.49625007211556,spot_baseline,karamazov,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,219459,-0.0570450644428733,relative_legacy,karamazov,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,219886,-29.34834054831861,peer,SaraBase,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,219886,-0.4034290042360145,relative_legacy,SaraBase,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,219886,-31.33664041668588,spot_peer,SaraBase,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,219886,-26.38194454861882,spot_baseline,SaraBase,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,219886,-23.838184248695622,baseline,SaraBase,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,220077,55.71975721540949,baseline,mmBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,220077,27.097197437999043,peer,mmBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,220077,27.705840339072157,spot_peer,mmBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,220077,56.36462694840639,spot_baseline,mmBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,220077,0.3799754547253534,relative_legacy,mmBot,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,221727,-2.7008875881601417,spot_peer,mf-bot-5,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,221727,13.750352374993504,spot_baseline,mf-bot-5,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,221727,-0.0431882846846462,relative_legacy,mf-bot-5,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,221727,12.88253400304485,baseline,mf-bot-5,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29306,"Will North Dakota voters approve Initiated Measure 5, which would legalize recreational marijuana in the state?",2024-10-31 13:38:12.265433+00,221727,-3.3800619154308245,peer,mf-bot-5,True,no,2024-11-01 14:30:00+00,2024-11-01 14:30:00+00,1.0,2024-11-01 14:30:00+00,29433 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,182315,48.54268271702416,spot_baseline,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,182315,40.43122958540568,baseline,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,182315,-0.2672616587356002,relative_legacy,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,182315,-13.129433498908616,spot_peer,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,182315,-11.42649487349018,peer,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,185690,13.944770060345906,spot_peer,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,185690,73.30653682059564,baseline,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,185690,0.0462621234773782,relative_legacy,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,185690,86.15584195720288,spot_baseline,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,185690,11.562535002421424,peer,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,185698,-0.539661250795168,relative_legacy,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,185698,-71.2433807075871,spot_peer,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,185698,-30.31436023810245,baseline,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,185698,-36.08843252341757,peer,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,185698,-32.19280948873623,spot_baseline,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,185699,54.796729331232186,baseline,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,185699,89.53026213333065,spot_baseline,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,185699,9.99959428620447,peer,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,185699,16.373700269573007,spot_peer,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,185699,0.0601320962666019,relative_legacy,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,187708,-0.1200294531090335,relative_legacy,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,187708,-4.134580868840488,peer,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,187708,54.59683691052925,spot_baseline,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,187708,-8.771612823239883,spot_peer,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,187708,26.86956608335033,baseline,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,189585,7.3890596676741955,peer,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,189585,73.76656344241722,baseline,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,189585,-0.0275794094788522,relative_legacy,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,189585,7.0329218468831325,spot_peer,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,189588,7.0329218468831325,spot_peer,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,189588,75.4300039088334,baseline,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,189588,8.700878299893612,peer,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,189588,-0.0088396987111685,relative_legacy,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,190710,9.732869758100453,peer,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,190710,10.634883637933267,spot_peer,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,190710,0.0053326620762216,relative_legacy,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,190710,81.55754288625727,spot_baseline,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,190710,76.99712556860727,baseline,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,190772,15.251028212596784,spot_peer,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,190772,10.849248441831026,peer,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,190772,0.0542974142143111,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,190772,63.84076892193566,baseline,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,190772,87.97057662822883,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191026,-0.2710611477187108,relative_legacy,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191026,40.93992403837036,baseline,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191026,-13.129433498908616,spot_peer,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191026,48.54268271702416,spot_baseline,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191026,-11.59888827536134,peer,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191046,0.5309119522301824,peer,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191046,0.0,relative_legacy,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191046,4.731528746334036,baseline,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191046,76.55347463629771,spot_baseline,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191046,7.0329218468831325,spot_peer,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191471,2.783927599441221,peer,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191471,73.11832415721999,spot_baseline,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191471,4.560277559458523,spot_peer,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191471,46.07954806526434,baseline,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191471,-0.0423304722993236,relative_legacy,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191935,87.97057662822883,spot_baseline,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191935,15.251028212596784,spot_peer,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191935,0.0676239562986358,relative_legacy,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191935,14.57509295995579,peer,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191935,84.35815980985213,baseline,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191975,21.88253377473158,spot_peer,jkraybill_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191975,10.20907336487862,peer,jkraybill_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191975,97.18347458715868,spot_baseline,jkraybill_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191975,0.0817153117718429,relative_legacy,jkraybill_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,191975,44.13356769620089,baseline,jkraybill_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,192049,12.968603284108571,spot_peer,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,192049,0.0312861067497026,relative_legacy,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,192049,9.469009043008684,peer,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,192049,63.53567525093738,baseline,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,192418,-0.2576151960645577,relative_legacy,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,192418,23.291997636096905,baseline,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,192418,-12.925263439836376,peer,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,192418,-20.825261376410488,spot_peer,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,192472,-36.30203305846116,spot_peer,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,192472,-36.94384079519231,peer,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,192472,16.09891776417235,baseline,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,192472,16.349873228287958,spot_baseline,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,192472,-0.6256898489699655,relative_legacy,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,193275,-0.2082955194960055,relative_legacy,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,193275,-8.204146089600929,spot_peer,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,193275,45.004303058906736,baseline,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,193275,-7.32631169519487,peer,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,193275,55.38519681811257,spot_baseline,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,195286,37.035305094545045,baseline,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,195286,-13.129433498908616,spot_peer,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,195286,-0.2442045930947239,relative_legacy,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,195286,-10.411147037295764,peer,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,204737,-0.170929489687666,relative_legacy,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,204737,48.54268271702416,spot_baseline,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,204737,-13.129433498908616,spot_peer,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,204737,27.05925811824227,baseline,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,204737,-7.261726293176943,peer,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,208405,80.08630551669542,baseline,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,208405,0.0963981668390399,relative_legacy,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,208405,18.58327626217566,spot_peer,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,208405,15.411450751540976,peer,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,215725,11.526251649662782,peer,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,215725,18.58327626217566,spot_peer,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,215725,57.64050119002162,baseline,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,215725,0.0798401748812376,relative_legacy,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,216863,-0.3096367368289898,relative_legacy,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,216863,48.54268271702416,spot_baseline,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,216863,-13.252339942021148,peer,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,216863,-13.129433498908616,spot_peer,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,216863,46.71382601402177,baseline,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,218666,7.076623523152,peer,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,218666,8.488732892429047,spot_peer,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,218666,69.22775075434086,baseline,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,218666,-0.0191004908055548,relative_legacy,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,218666,78.5759774427011,spot_baseline,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,219886,0.0461626211904484,relative_legacy,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,219886,11.06499926986258,peer,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,219886,86.30503648059685,spot_baseline,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,219886,14.052161276023968,spot_peer,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,219886,69.57211501782622,baseline,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,220077,66.81738934615937,baseline,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,220077,1.2446905578188374,peer,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,220077,0.7372880428687567,spot_peer,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,220077,-0.119014899423401,relative_legacy,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,221727,0.0659685949372171,relative_legacy,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,221727,44.98857387000662,baseline,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,221727,92.5999418556223,spot_baseline,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,221727,18.58327626217566,spot_peer,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29347,Will the World Health Organization prequalify moxidectin before 2025?,2024-11-01 13:01:29.977925+00,221727,9.242809616150204,peer,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29484 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,182315,7.410911769728902,spot_peer,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,182315,0.0823403193974056,relative_legacy,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,182315,44.36066514756145,spot_baseline,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,182315,36.97089614196825,baseline,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,182315,4.745284780826054,peer,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,185690,23.40704503790356,baseline,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,185690,-4.725000475507228,spot_peer,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,185690,27.500704749986976,spot_baseline,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,185690,-5.611190485367938,peer,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,185690,-0.0592698439791729,relative_legacy,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,185698,-0.0503689432141652,relative_legacy,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,185698,13.750352374993504,spot_baseline,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,185698,-4.623446316520174,peer,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,185698,4.251314154128298,baseline,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,185698,-14.622596070571715,spot_peer,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,185699,28.11086704185685,spot_peer,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,185699,16.78779673846145,peer,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,185699,73.11832415721999,spot_baseline,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,185699,0.2450255153026023,relative_legacy,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,185699,45.33348930604626,baseline,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,187708,16.349873228287958,spot_baseline,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,187708,8.113640859740473,baseline,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,187708,-12.75144357606282,spot_peer,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,187708,-6.668917050446076,peer,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,187708,-0.0817047786755719,relative_legacy,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,188107,10.233926442327746,peer,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,188107,46.99167177410389,baseline,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,188107,51.93741590935794,spot_baseline,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,188107,12.864707637625267,spot_peer,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,188107,0.1578290337036729,relative_legacy,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,189585,2.725328105987844,spot_peer,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,189585,0.0350053790401979,relative_legacy,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,189585,35.780795821139534,baseline,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,189585,37.85116232537298,spot_baseline,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,189585,1.1781537971087432,peer,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,189588,-0.5351032634300541,baseline,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,189588,-35.461475983948986,spot_peer,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,189588,-0.327461413037673,relative_legacy,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,189588,-15.200309344505014,spot_baseline,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,189588,-25.239434383985344,peer,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,190772,76.55347463629771,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,190772,0.3074940782568069,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,190772,30.58351132928146,spot_peer,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,190772,21.17834199997152,peer,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,190772,55.60685932500319,baseline,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191026,-1.347592106083677,spot_peer,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191026,-0.0190679664519868,relative_legacy,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191026,-2.669164570321096,peer,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191026,27.15105163601518,baseline,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191026,32.19280948873624,spot_baseline,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191046,6.28802846238679,baseline,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191046,-0.0168360321259093,relative_legacy,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191046,-2.126319630992797,peer,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191046,13.750352374993504,spot_baseline,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191046,-14.622596070571715,spot_peer,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191471,26.303440583379377,spot_baseline,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191471,-0.0466341597544857,relative_legacy,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191471,-5.586799229340943,spot_peer,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191471,-4.304481415385278,peer,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191471,16.62856952634884,baseline,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191935,-5.8009208591150285,peer,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191935,-3.870294795946001,spot_peer,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191935,28.688114778816157,spot_baseline,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191935,-0.0566993000313565,relative_legacy,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191935,26.74681004107001,baseline,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191975,0.0020241664014735,relative_legacy,jkraybill_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191975,5.385143847552513,baseline,jkraybill_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191975,33.18962639785979,spot_baseline,jkraybill_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191975,-0.6300766286789198,spot_peer,jkraybill_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,191975,-0.1360386434652185,peer,jkraybill_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,192049,-5.481858689496662,peer,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,192049,-5.586799229340943,spot_peer,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,192049,-0.0603427306502612,relative_legacy,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,192049,19.751112553418903,baseline,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,192418,13.750352374993504,spot_baseline,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,192418,-9.722398986658613,peer,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,192418,-14.622596070571715,spot_peer,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,192418,-0.1219787878413694,relative_legacy,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,192418,8.46372959804051,baseline,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,192472,8.406426478847456,spot_baseline,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,192472,-18.46918966814644,spot_peer,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,192472,-0.2491461961848572,relative_legacy,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,192472,8.282536192725326,baseline,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,192472,-20.18503165953829,peer,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,193275,2.3908079125680115,peer,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,193275,4.938267482304291,spot_peer,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,193275,0.0500513247373273,relative_legacy,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,193275,40.92551466848375,spot_baseline,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,193275,33.54136718098853,baseline,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,195286,44.70852378916003,baseline,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,195286,17.58580033021162,spot_peer,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,195286,0.1841542617141275,relative_legacy,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,195286,12.243143957706977,peer,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,204737,-0.3074669894128974,relative_legacy,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,204737,-40.1825686765353,spot_peer,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,204737,-23.03141506719051,peer,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,204737,-12.185769000335858,baseline,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,204737,-21.75914350726266,spot_baseline,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,208405,33.14159704199619,baseline,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,208405,37.85116232537298,spot_baseline,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,208405,0.0291860120194173,relative_legacy,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,208405,0.8652082310130441,peer,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,208405,2.725328105987844,spot_peer,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,215725,37.85116232537298,spot_baseline,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,215725,2.725328105987844,spot_peer,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,215725,0.0263684929779502,relative_legacy,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,215725,23.601415669290947,baseline,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,215725,0.982707726337168,peer,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,216863,-0.0712139840112816,relative_legacy,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,216863,25.318024328044007,baseline,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,216863,-6.725198197368425,peer,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,216863,26.303440583379377,spot_baseline,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,216863,-5.586799229340943,spot_peer,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,218666,-0.5805808142591203,peer,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,218666,1.115277965714519,spot_peer,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,218666,0.0092670255442209,relative_legacy,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,218666,31.45786984406841,baseline,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,218666,35.61438102252753,spot_baseline,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,219886,0.4270305120711286,relative_legacy,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,219886,29.91400555523856,peer,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,219886,82.572051140954,spot_baseline,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,219886,34.91572294659088,spot_peer,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,219886,73.4873314456425,baseline,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,220077,14.130790256213151,peer,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,220077,14.778976659158443,spot_peer,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,220077,54.59683691052925,spot_baseline,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,220077,0.2059505647514184,relative_legacy,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,220077,53.81087671736822,baseline,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,221727,28.46126861162787,baseline,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,221727,17.58580033021162,spot_peer,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,221727,0.1245939795871255,relative_legacy,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,221727,8.25622937233818,peer,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29348,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-11-01 13:01:29.98671+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29485 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,182315,11.80149509608444,peer,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,182315,92.5999418556223,spot_baseline,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,182315,15.676105579850027,spot_peer,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,182315,0.1348327719994382,relative_legacy,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,182315,77.22303738223593,baseline,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,185690,-0.0325337542065779,relative_legacy,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,185690,72.4650271732967,spot_baseline,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,185690,1.2027403353932515,spot_peer,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,185690,-0.3393675922367238,peer,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,185690,61.695953457205135,baseline,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,185698,87.97057662822883,spot_baseline,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,185698,12.348428515249978,spot_peer,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,185698,0.9272356155489084,peer,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,185698,0.0010018418992429,relative_legacy,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,185698,23.783659151725235,baseline,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,185699,-12.069621990945707,peer,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,185699,-0.1906554508992098,relative_legacy,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,185699,31.29669866190469,baseline,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,185699,-47.39311883324123,spot_baseline,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,185699,-84.95360807957242,spot_peer,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,187708,16.653937165360595,spot_peer,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,187708,7.627313246077237,peer,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,187708,0.0875030414486447,relative_legacy,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,187708,93.9602720356044,spot_baseline,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,187708,47.23332724482045,baseline,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,188107,53.44352705711273,baseline,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,188107,-0.1603768991281344,relative_legacy,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,188107,-9.624082077670336,peer,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,188107,-8.838286219403487,spot_peer,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,188107,58.496250072115615,spot_baseline,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,189585,4.141595272123062,spot_peer,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,189585,72.35156462770856,baseline,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,189585,0.0042174672305902,relative_legacy,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,189585,2.411153235537593,peer,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,189588,-8.838286219403487,spot_peer,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,189588,-0.1657035263817625,relative_legacy,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,189588,55.15071787371741,baseline,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,189588,-10.031159454737931,peer,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,190710,8.910421830534379,spot_peer,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,190710,83.18772411916731,spot_baseline,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,190710,0.0671929372117922,relative_legacy,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,190710,7.024273626630483,peer,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,190710,78.66966423904908,baseline,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,190772,76.55347463629771,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,190772,0.0,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,190772,55.64956045634161,baseline,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,190772,1.811758706656844,peer,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,190772,4.141595272123062,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191026,46.46682670034443,spot_baseline,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191026,-16.252984177552946,peer,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191026,39.1899543853286,baseline,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191026,-17.485267887156933,spot_peer,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191026,-0.2518941261369472,relative_legacy,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191046,0.0094618947532933,relative_legacy,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191046,92.5999418556223,spot_baseline,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191046,5.460210599775,baseline,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191046,0.939061826526252,peer,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191046,15.676105579850027,spot_peer,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191471,0.0,relative_legacy,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191471,76.55347463629771,spot_baseline,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191471,1.6049165468419062,peer,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191471,48.44181480962558,baseline,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191471,4.141595272123062,spot_peer,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191935,7.738616100496838,spot_peer,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191935,78.46392544228597,baseline,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191935,0.0517765026837699,relative_legacy,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191935,81.55754288625727,spot_baseline,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191935,5.933415157744131,peer,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191975,17.19321921113469,spot_peer,jkraybill_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191975,94.71050515678746,spot_baseline,jkraybill_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191975,39.17052319350846,baseline,jkraybill_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191975,6.495513488145197,peer,jkraybill_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,191975,0.0750941391296249,relative_legacy,jkraybill_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,192049,0.0002744122595659,relative_legacy,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,192049,62.49960447821096,baseline,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,192049,2.037707679211393,peer,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,192049,4.141595272123062,spot_peer,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,192418,49.199844930500994,baseline,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,192418,6.553418015084103,spot_peer,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,192418,79.90873060740036,spot_baseline,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,192418,0.020658327597698,relative_legacy,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,192418,3.0544738370088123,peer,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,192472,75.48131259013634,baseline,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,192472,2.5600490796553426,peer,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,192472,0.0049277058917844,relative_legacy,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,192472,4.141595272123062,spot_peer,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,193275,6.575340862422873,peer,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,193275,84.15706373955169,spot_baseline,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,193275,70.24313441785678,baseline,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,193275,9.607201856330144,spot_peer,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,193275,0.0628520025227476,relative_legacy,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,195286,6.506778891867484,peer,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,195286,65.33926526798648,baseline,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,195286,10.069134485154777,spot_peer,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,195286,0.0634492925958459,relative_legacy,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,204737,-0.6483564692951147,peer,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,204737,0.4153128338646247,spot_peer,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,204737,71.36958148433588,spot_baseline,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,204737,40.13420003144614,baseline,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,204737,-0.0291512715046734,relative_legacy,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,208405,54.96675555155458,baseline,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,208405,-8.838286219403487,spot_peer,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,208405,-0.1174360371134757,relative_legacy,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,208405,-6.388921716189629,peer,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,215725,4.141595272123062,spot_peer,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,215725,0.0,relative_legacy,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,215725,47.837155232041184,baseline,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,215725,1.5856935603883802,peer,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,215725,76.55347463629771,spot_baseline,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,216863,84.79969065549501,spot_baseline,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,216863,8.26070060349078,peer,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,216863,0.0833219434765571,relative_legacy,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,216863,81.63970967215451,baseline,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,216863,10.069134485154777,spot_peer,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,218666,-16.88582284406809,spot_peer,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,218666,-16.5370368565153,peer,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,218666,41.96093513505014,baseline,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,218666,-0.2549054616620405,relative_legacy,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,218666,47.3007567916174,spot_baseline,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,219886,75.69747658156435,baseline,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,219886,91.24199350153096,spot_baseline,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,219886,14.699986096755069,spot_peer,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,219886,10.917571005554889,peer,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,219886,0.1226992694493065,relative_legacy,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,220077,67.80719051126377,spot_baseline,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,220077,-0.0812966311817882,relative_legacy,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,220077,-3.914992168497944,peer,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,220077,-2.145402545877582,spot_peer,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,220077,66.84701716836223,baseline,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,221727,-0.1883548647543706,relative_legacy,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,221727,-12.267929561751268,peer,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,221727,18.41166540349361,baseline,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29349,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:29.994129+00,221727,-23.67837370806591,spot_peer,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29486 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,182315,69.41002405091344,baseline,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,182315,0.132399308037787,relative_legacy,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,182315,19.32453945148405,spot_peer,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,182315,83.18772411916731,spot_baseline,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,182315,15.891845840211186,peer,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,185690,-0.0511931158226844,relative_legacy,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,185690,61.164454337366166,spot_baseline,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,185690,3.4720425818265297,spot_peer,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,185690,52.091457905391046,baseline,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,185690,2.6114751912368885,peer,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,185698,23.69872501540612,baseline,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,185698,14.549162307140843,spot_peer,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,185698,4.066011144417842,peer,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,185698,0.0270759470253374,relative_legacy,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,185699,27.38475222782808,baseline,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,185699,-80.60410600286755,spot_peer,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,185699,-8.50368351771439,peer,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,185699,-0.1855611753586367,relative_legacy,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,185699,-55.63933485243852,spot_baseline,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,187708,0.1293649325446474,relative_legacy,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,187708,93.35726382610238,spot_baseline,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,187708,12.739292245412576,peer,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,187708,26.644642141379062,spot_peer,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,187708,47.27158800699725,baseline,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,188107,-0.0754322967782688,relative_legacy,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,188107,0.7319804367711948,peer,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,188107,1.5514513080709922,spot_peer,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,188107,58.496250072115615,spot_baseline,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,188107,53.5513238120048,baseline,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,189585,-5.613193038650898,spot_peer,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,189585,12.957243325404605,baseline,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,189585,-0.5017197622253919,relative_legacy,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,189585,-30.363665822797437,peer,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,189588,39.28970597176519,baseline,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,189588,-10.973051206844891,peer,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,189588,-13.309020916152784,spot_peer,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,189588,-0.2366400560811633,relative_legacy,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,190710,77.18470186079219,baseline,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,190710,16.44470933659841,peer,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,190710,0.1398356296924379,relative_legacy,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,190710,81.55754288625727,spot_baseline,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,190710,18.15112409819096,spot_peer,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,190772,2.718137794629627,peer,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,190772,62.29303509201767,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,190772,-0.0346328385772467,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,190772,4.2844025564136095,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,190772,45.31977549178987,baseline,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191026,16.349873228287958,spot_baseline,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191026,-0.4293183709398023,relative_legacy,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191026,13.78957925450634,baseline,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191026,-28.78579259820343,spot_peer,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191026,-24.83661207227205,peer,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191046,1.5787895100277844,peer,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191046,5.601476011438146,baseline,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191046,26.099516722433368,spot_peer,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191046,0.0149974178309425,relative_legacy,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191046,92.5999418556223,spot_baseline,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191471,76.55347463629771,spot_baseline,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191471,8.54798879027431,peer,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191471,14.549162307140843,spot_peer,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191471,48.48033929914023,baseline,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191471,0.0556767066061889,relative_legacy,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191935,50.74439939666106,baseline,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191935,-2.687755815186274,spot_peer,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191935,52.60688116675877,spot_baseline,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191935,-0.1358579285841733,relative_legacy,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,191935,-3.725385003938544,peer,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,192049,55.43422526452508,baseline,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,192049,6.46040662968465,peer,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,192049,0.0054840517392907,relative_legacy,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,192049,8.253528503126457,spot_peer,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,192418,10.817761349049649,spot_peer,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,192418,0.021837667894842,relative_legacy,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,192418,5.958347336486203,peer,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,192418,43.9522926516178,baseline,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,192418,71.36958148433588,spot_baseline,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,192472,1.5514513080709922,spot_peer,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,192472,57.71526387433508,baseline,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,192472,0.1321822145785953,peer,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,192472,-0.0818789565161667,relative_legacy,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,193275,57.89750386655397,baseline,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,193275,8.383255133171307,spot_peer,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,193275,67.98741477466228,spot_baseline,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,193275,0.009975990941086,relative_legacy,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,193275,7.052016316557271,peer,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,195286,8.253528503126457,spot_peer,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,195286,0.0054840517392907,relative_legacy,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,195286,6.1293121055373945,peer,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,195286,52.245570954279806,baseline,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,204737,8.253528503126457,spot_peer,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,204737,-8.23991008456536e-06,relative_legacy,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,204737,67.80719051126377,spot_baseline,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,204737,38.26898988904944,baseline,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,204737,3.909145043282296,peer,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,208405,0.0371486576958919,relative_legacy,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,208405,9.1354406119261,peer,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,208405,8.253528503126457,spot_peer,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,208405,62.42169091668225,baseline,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,215725,76.55347463629771,spot_baseline,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,215725,47.94085663758332,baseline,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,215725,14.549162307140843,spot_peer,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,215725,0.0546717541965341,relative_legacy,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,215725,8.429429201060758,peer,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,216863,76.55347463629771,spot_baseline,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,216863,73.71875845651363,baseline,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,216863,13.08548191217234,peer,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,216863,14.549162307140843,spot_peer,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,216863,0.0934910016602457,relative_legacy,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,218666,-0.6482555082639895,relative_legacy,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,218666,-5.2396284505256014,baseline,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,218666,-5.889368905356857,spot_baseline,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,218666,-44.79374781103412,spot_peer,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,218666,-40.77342758396214,peer,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,219886,83.81530731823416,spot_baseline,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,219886,0.1648042667822941,relative_legacy,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,219886,19.776278035137853,spot_peer,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,219886,18.339569577533943,peer,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,219886,81.4362939272406,baseline,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,220077,8.253528503126457,spot_peer,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,220077,67.80719051126377,spot_baseline,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,220077,0.0099244872525248,relative_legacy,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,220077,6.979097230742179,peer,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,220077,66.85612094607363,baseline,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,221727,-15.651798805152652,baseline,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,221727,-0.4864358290316958,relative_legacy,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,221727,-63.7271402473294,spot_peer,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,221727,-31.764833261612285,peer,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29350,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.001527+00,221727,-32.19280948873623,spot_baseline,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29487 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,182315,44.452839385022585,spot_peer,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,182315,30.785633213315297,peer,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,182315,76.55347463629771,spot_baseline,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,182315,0.2339976937650898,relative_legacy,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,182315,63.91141575001313,baseline,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,185690,41.79731994878924,baseline,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,185690,49.057013044620135,spot_baseline,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,185690,14.25671960220201,peer,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,185690,0.004521178014874,relative_legacy,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,185690,24.687852156352523,spot_peer,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,185698,-0.035278636014759,relative_legacy,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,185698,4.24185007435507,peer,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,185698,11.509326323929242,baseline,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,185698,13.750352374993504,spot_baseline,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,185698,-0.6912568935687846,spot_peer,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,185699,-60.14935860069876,spot_peer,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,185699,-68.96598793878495,spot_baseline,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,185699,1.6962300118589215,peer,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,185699,17.885171425340722,baseline,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,185699,-0.159625109793116,relative_legacy,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,187708,46.59217569585929,baseline,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,187708,26.922341392680917,peer,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,187708,55.11035754271158,spot_peer,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,187708,91.37989649506964,spot_baseline,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,187708,0.2151788108076609,relative_legacy,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,188107,24.12138678442768,baseline,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,188107,-0.5547651099650209,peer,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,188107,-0.2055872895542715,relative_legacy,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,188107,8.332145164615033,spot_peer,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,188107,26.303440583379377,spot_baseline,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,189585,14.736981849499331,peer,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,189585,0.002145156967532,relative_legacy,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,189585,31.472957893496037,spot_peer,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,189585,46.30088530007552,baseline,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,189588,48.54268271702416,spot_baseline,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,189588,46.06460118281003,baseline,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,189588,24.318141591145505,spot_peer,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,189588,14.639601722675996,peer,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,189588,0.0012863283738442,relative_legacy,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,190710,32.63877102587209,peer,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,190710,43.22556229570377,spot_peer,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,190710,74.84612330040356,spot_baseline,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,190710,70.89024489556448,baseline,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,190710,0.2473953919849912,relative_legacy,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,190772,38.66968669522789,baseline,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,190772,0.0283073360159822,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,190772,27.23956586917328,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,190772,52.60688116675877,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,190772,15.45920049713471,peer,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191026,14.871291484084905,baseline,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191026,-0.2605555087612187,relative_legacy,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191026,-4.996617135309543,peer,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191026,2.0991456314603734,spot_peer,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191026,17.632277264046287,spot_baseline,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191046,20.48927474227177,baseline,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191046,44.452839385022585,spot_peer,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191046,0.0749699231954232,relative_legacy,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191046,11.218918426123835,peer,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191471,15.519941905857218,peer,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191471,28.66998446067477,spot_peer,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191471,34.6062011124303,baseline,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191471,0.0303708410816839,relative_legacy,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191471,54.59683691052925,spot_baseline,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191935,2.9280043772195565,baseline,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191935,-0.4353139494588796,relative_legacy,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191935,-8.521669746265326,spot_peer,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191935,2.856915219677092,spot_baseline,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191935,-17.43467578255381,peer,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191975,-31.56454372468233,peer,jkraybill_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191975,-69.47732388426283,spot_peer,jkraybill_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191975,-0.5749172213602138,relative_legacy,jkraybill_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191975,-36.103879643755,baseline,jkraybill_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,191975,-81.94277543581788,spot_baseline,jkraybill_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,192049,16.632870404833614,spot_peer,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,192049,-0.0873265324709955,relative_legacy,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,192049,37.85116232537298,spot_baseline,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,192049,7.420410138386113,peer,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,192049,30.99720195093184,baseline,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,192418,33.6309901935913,baseline,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,192418,54.59683691052925,spot_baseline,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,192418,28.66998446067477,spot_peer,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,192418,0.0297434175774262,relative_legacy,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,192418,15.363023731663809,peer,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,192472,45.88004898930755,baseline,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,192472,46.46682670034443,spot_baseline,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,192472,13.03320197221779,peer,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,192472,22.825976225742583,spot_peer,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,192472,-0.0186793133989442,relative_legacy,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,193275,60.40713236688608,spot_baseline,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,193275,21.37078052321272,peer,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,193275,51.75112556008142,baseline,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,193275,0.102376517251206,relative_legacy,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,193275,32.84653696386854,spot_peer,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,195286,29.16395389333276,baseline,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,195286,37.85116232537298,spot_baseline,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,195286,-0.082190517599537,relative_legacy,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,195286,16.632870404833614,spot_peer,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,195286,7.553613812927908,peer,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,204737,-3.479768069146957,relative_legacy,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,204737,-319.9065851718012,baseline,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,204737,-564.3856189774725,spot_baseline,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,204737,-237.7856690169948,peer,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,204737,-416.2665501769361,spot_peer,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,208405,28.933875142303624,peer,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,208405,63.02174088908454,baseline,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,208405,44.452839385022585,spot_peer,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,208405,0.2041889918842542,relative_legacy,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,215725,0.1128154738919433,relative_legacy,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,215725,38.16584156702194,spot_peer,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,215725,42.52581599552424,baseline,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,215725,21.43058076560232,peer,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,215725,67.80719051126377,spot_baseline,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,216863,37.85116232537298,spot_baseline,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,216863,-0.1002947251963398,relative_legacy,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,216863,7.084973975976179,peer,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,216863,16.632870404833614,spot_peer,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,216863,36.458152644341865,baseline,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,218666,-6.507942324047378,spot_peer,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,218666,-0.3838996085690781,relative_legacy,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,218666,5.043655450542531,baseline,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,218666,-13.634871282271549,peer,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,218666,5.658352836636751,spot_baseline,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,219886,-12.781236367795506,peer,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,219886,-3.3458194380306203,spot_peer,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,219886,10.057404021319712,spot_baseline,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,219886,-0.370892725977575,relative_legacy,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,219886,9.767075930561482,baseline,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,220077,0.1557519763964154,relative_legacy,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,220077,26.03214669481297,peer,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,220077,64.15460290875237,spot_baseline,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,220077,35.54029110939187,spot_peer,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,220077,63.26725304429922,baseline,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,221727,-7.3941110422096035,baseline,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,221727,-15.200309344504996,spot_baseline,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,221727,-11.586418059106355,peer,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,221727,-0.3119959164218283,relative_legacy,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29351,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-11-01 13:01:30.008066+00,221727,-21.50155123779187,spot_peer,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29488 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,182315,0.1849883299749866,relative_legacy,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,182315,17.977338045419422,spot_peer,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,182315,12.5316677434587,peer,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,182315,56.55971758542251,spot_baseline,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,182315,47.28333965452183,baseline,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,185690,-9.735455923885006,peer,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,185690,-0.1233366997361477,relative_legacy,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,185690,20.163386116965043,spot_baseline,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,185690,17.189800135133005,baseline,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,185690,-8.151677013955894,spot_peer,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,185698,11.25396246727177,baseline,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,185698,-33.53936016737219,spot_peer,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,185698,0.5201022984284727,peer,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,185698,-0.0037925652125365,relative_legacy,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,185698,-15.200309344504996,spot_baseline,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,185699,-72.1378718576223,spot_peer,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,185699,-0.3100480940780658,relative_legacy,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,185699,-3.327926864338434,baseline,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,185699,-23.21249548114289,peer,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,185699,-68.96598793878495,spot_baseline,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,187708,-8.059355022737002,baseline,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,187708,-18.517183805177098,peer,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,187708,-0.2718718916193816,relative_legacy,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,187708,-15.521264992094007,spot_baseline,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,187708,-33.76977500894799,spot_peer,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,188107,8.455240315259143,spot_peer,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,188107,43.29594072761063,spot_baseline,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,188107,0.0703629140263073,relative_legacy,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,188107,4.356062367647194,peer,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,188107,40.1810238085704,baseline,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,189585,0.0346409584771894,relative_legacy,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,189585,4.546420631321396,spot_peer,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,189585,37.85116232537298,spot_baseline,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,189585,37.41354389936998,baseline,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,189585,1.6983483685669107,peer,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,189588,1.192875410260336,baseline,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,189588,-24.09528055292988,peer,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,189588,-45.73831743178332,spot_peer,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,189588,-0.3268942813101314,relative_legacy,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,189588,-32.19280948873623,spot_baseline,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,190710,26.303440583379377,spot_baseline,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,190710,-3.7437169491520215,spot_peer,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,190710,24.962833806697137,baseline,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,190710,-7.290887071562023,peer,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,190710,-0.0909838555944542,relative_legacy,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,190772,-0.0696448914475756,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,190772,23.87868595871165,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,190772,17.58465063575474,baseline,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,190772,-5.854326645424618,peer,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,190772,-5.484454203348645,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191026,0.1179667466136292,relative_legacy,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191026,48.54268271702416,spot_baseline,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191026,7.712377398483249,peer,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191026,12.221889175814011,spot_peer,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191026,40.94242618387307,baseline,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191046,4.474681508741406,baseline,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191046,1.8250327016662324,peer,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191046,0.0236773810138453,relative_legacy,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191046,32.330904957198904,spot_peer,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191284,86.79573480862929,baseline,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191284,92.5999418556223,spot_baseline,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191284,37.83438026655047,peer,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191284,0.5315072686678433,relative_legacy,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191284,43.85070287932928,spot_peer,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191471,0.0,baseline,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191471,-0.2212936938265789,relative_legacy,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191471,-15.813505967278552,peer,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191471,-22.627021045668748,spot_peer,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191471,0.0,spot_baseline,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191935,0.0540250860961907,relative_legacy,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191935,39.969824840385,baseline,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191935,42.22330006830478,spot_baseline,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191935,7.685188971909053,spot_peer,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,191935,3.0934037729061545,peer,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,192049,0.1179667466136292,relative_legacy,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,192049,39.92476192442072,baseline,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,192049,7.667012708819716,peer,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,192049,12.221889175814011,spot_peer,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,192418,40.52727030078103,spot_peer,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,192418,87.97057662822883,spot_baseline,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,192418,54.22480968225909,baseline,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,192418,23.69098075667516,peer,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,192418,0.3254156739068995,relative_legacy,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,192472,67.03392612090781,baseline,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,192472,22.36810822772766,peer,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,192472,0.3120296271422915,relative_legacy,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,192472,67.80719051126377,spot_baseline,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,192472,26.051926269068165,spot_peer,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,193275,-9.938092333072834,peer,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,193275,-0.1253262204300179,relative_legacy,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,193275,-7.792053636771145,spot_peer,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,193275,17.994391298968115,baseline,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,193275,20.66432239833956,spot_baseline,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,195286,-45.73831743178332,spot_peer,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,195286,-32.19280948873623,spot_baseline,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,195286,-0.5050776869025403,relative_legacy,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,195286,-24.84353560400112,baseline,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,195286,-37.41852990354256,peer,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,204737,-3.298191593306774,peer,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,204737,-3.7437169491520215,spot_peer,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,204737,-0.0546987738832405,relative_legacy,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,204737,15.01464143079321,baseline,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,204737,26.303440583379377,spot_baseline,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,208405,2.3989562899222707,peer,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,208405,0.0420790633976276,relative_legacy,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,208405,12.221889175814011,spot_peer,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,208405,37.81690569574499,baseline,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,215725,35.9254265249693,baseline,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,215725,37.85116232537298,spot_baseline,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,215725,4.546420631321396,spot_peer,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,215725,0.0186038831305773,relative_legacy,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,215725,0.659777618066866,peer,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,216863,0.2178936242614677,relative_legacy,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,216863,56.37570166989862,baseline,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,216863,19.36757943696257,spot_peer,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,216863,15.172647112283665,peer,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,216863,58.496250072115615,spot_baseline,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,218666,-0.1471342470964537,relative_legacy,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,218666,-11.499324493727835,peer,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,218666,-9.056236725005473,spot_peer,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,218666,18.903382439001685,spot_baseline,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,218666,17.032420828528544,baseline,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,218945,58.496250072115615,spot_baseline,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,218945,14.617996245973568,peer,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,218945,19.36757943696257,spot_peer,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,218945,0.2114301783945104,relative_legacy,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,218945,54.56236969012743,baseline,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,219886,10.05432128946533,peer,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,219886,14.52641652977748,spot_peer,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,219886,0.1486321161648125,relative_legacy,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,219886,48.19428574583327,baseline,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,219886,51.75276703372656,spot_baseline,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,220077,-8.090388380982391,peer,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,220077,-0.0974458814580905,relative_legacy,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,220077,26.303440583379377,spot_baseline,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,220077,-3.7437169491520215,spot_peer,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,220077,25.950943540123188,baseline,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,221727,19.36757943696257,spot_peer,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,221727,0.1016564449578205,relative_legacy,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,221727,28.50499921970288,baseline,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29353,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.150737+00,221727,8.562486985390812,peer,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29490 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,182315,35.61438102252753,spot_baseline,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,182315,29.795805064610597,baseline,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,182315,14.360930960573487,peer,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,182315,0.0502069611556181,relative_legacy,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,182315,18.792251070852245,spot_peer,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,185690,-2.5993850736752253,peer,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,185690,7.724299893246036,spot_baseline,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,185690,-0.1862655673658536,relative_legacy,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,185690,6.587109052699163,baseline,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,185690,-1.2301061402241291,spot_peer,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,185698,-132.19280948873623,spot_baseline,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,185698,-63.22225255979372,baseline,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,185698,-101.67693994473612,spot_peer,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,185698,-46.96739262887312,peer,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,185698,-0.7209218150952122,relative_legacy,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,185699,-0.4002554722394102,relative_legacy,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,185699,-66.82802972325335,spot_peer,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,185699,-15.571886184653737,baseline,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,185699,-18.20038730369362,peer,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,185699,-83.65012677171204,spot_baseline,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,187708,-0.7052316813788629,relative_legacy,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,187708,-42.84366193625929,peer,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,187708,-54.39035747997661,baseline,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,187708,-81.5070177055117,spot_peer,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,187708,-104.09717810563062,spot_baseline,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,188107,0.0,baseline,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,188107,-0.2536888459047369,relative_legacy,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,188107,-6.775399857770074,spot_peer,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,188107,0.0,spot_baseline,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,188107,-7.978150333230338,peer,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,189585,28.073510363712696,spot_peer,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,189585,21.350625514394707,peer,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,189585,40.47806224989299,baseline,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,189585,0.1467258419796093,relative_legacy,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,189588,12.107904238746658,spot_peer,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,189588,25.43741546451516,baseline,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,189588,0.0011827716124684,relative_legacy,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,189588,10.758003998569096,peer,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,190710,-8.867823115656012,spot_peer,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,190710,-0.2856268381256099,relative_legacy,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,190710,-2.7686931380932296,baseline,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,190710,-10.063048077760284,peer,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,190710,-2.914634565951651,spot_baseline,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,190772,-15.411352212171783,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,190772,-0.3077271526752229,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,190772,-12.205700974982772,peer,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,190772,-8.865788314025602,baseline,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,190772,-12.029423371771175,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191026,24.19669138276276,baseline,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191026,13.819867655122032,spot_peer,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191026,-0.007755069147594,relative_legacy,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191026,28.688114778816157,spot_baseline,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191026,10.227889368298438,peer,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191046,48.18252614509758,spot_peer,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191046,0.0284468233289652,relative_legacy,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191046,2.9669175363963536,peer,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191046,4.567748499835696,baseline,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191284,0.4627410808427698,relative_legacy,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191284,71.75477775434537,baseline,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191284,44.00406314252418,peer,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191284,48.18252614509758,spot_peer,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191471,-0.7404058020725734,spot_peer,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191471,-1.091524347790547,peer,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191471,-0.1389901741622882,relative_legacy,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191471,8.406426478847456,spot_baseline,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191471,5.344350549649692,baseline,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191935,-0.6783752118364007,relative_legacy,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191935,-43.440282414577496,spot_baseline,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191935,-37.96128446753339,spot_peer,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191935,-38.96662065396099,peer,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,191935,-42.68055532051021,baseline,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,192049,54.10250472137797,spot_peer,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,192049,0.4549026189421259,relative_legacy,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,192049,43.47966762607744,peer,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,192049,69.91358562397562,baseline,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,192418,29.19678771948813,peer,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,192418,48.18252614509758,spot_peer,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,192418,0.2846282108461378,relative_legacy,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,192418,47.20243900865888,baseline,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,192472,67.80719051126377,spot_baseline,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,192472,41.90354745696684,spot_peer,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,192472,41.50812184228813,peer,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,192472,0.4114061082928819,relative_legacy,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,192472,67.08700573948103,baseline,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,193275,16.777305990505724,baseline,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,193275,18.65005576444948,spot_baseline,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,193275,6.613520625872897,spot_peer,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,193275,-0.0859157859996797,relative_legacy,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,193275,4.517521229292023,peer,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,195286,-79.69931903005737,peer,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,195286,-1.2491063153577315,relative_legacy,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,195286,-101.67693994473612,spot_peer,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,195286,-102.01270315335972,baseline,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,195286,-132.19280948873623,spot_baseline,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,204737,19.794587537080066,peer,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,204737,35.21920062486124,spot_peer,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,204737,33.51661730339766,baseline,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,204737,0.1592446016204707,relative_legacy,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,208405,41.90354745696684,spot_peer,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,208405,0.1839373119170319,relative_legacy,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,208405,43.84237198759908,baseline,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,208405,23.491030488558437,peer,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,215725,18.06293154442986,peer,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,215725,37.85116232537298,spot_baseline,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,215725,0.1016116359425815,relative_legacy,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,215725,35.955467205491374,baseline,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,215725,20.398041819220072,spot_peer,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,216863,-51.45731728297583,spot_baseline,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,216863,-49.6016937913115,baseline,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,216863,-43.857046775467374,peer,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,216863,-43.71673333713879,spot_peer,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,216863,-0.7474373344257186,relative_legacy,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,218666,-2.914634565951651,spot_baseline,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,218666,-8.867823115656012,spot_peer,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,218666,-0.2800227286625705,relative_legacy,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,218666,-9.634283548316237,peer,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,218666,-2.633388275783356,baseline,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,218945,32.23542557817578,peer,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,218945,55.4802839665623,baseline,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,218945,0.3010350194437134,relative_legacy,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,218945,35.907385406437626,spot_peer,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,218945,59.45485495503542,spot_baseline,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,219886,-0.0057000962140788,relative_legacy,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,219886,24.570647283379653,baseline,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,219886,28.912622017512163,spot_baseline,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,219886,13.981041948907944,spot_peer,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,219886,10.41924114649822,peer,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,220077,-28.63041851566411,spot_baseline,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,220077,-0.5402215507232517,relative_legacy,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,220077,-29.33751798237378,peer,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,220077,-27.329247082739048,spot_peer,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,220077,-28.2519428090611,baseline,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,221727,28.50091780252113,baseline,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,221727,0.1333115028524227,relative_legacy,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,221727,17.07029343379667,peer,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29354,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-11-01 13:01:30.157997+00,221727,35.21920062486124,spot_peer,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,2024-11-02 14:30:00+00,29491 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,182315,20.944109593312945,spot_peer,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,182315,78.24085649273731,spot_baseline,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,182315,0.1756446399692635,relative_legacy,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,182315,65.50851199647772,baseline,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,182315,17.100605497133188,peer,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,185690,48.02651220544628,spot_baseline,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,185690,-0.7468418031475936,spot_peer,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,185690,40.96665025859047,baseline,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,185690,-1.1071735883790388,peer,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,185690,-0.0775354081820248,relative_legacy,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,185698,-0.003439616538015,relative_legacy,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,185698,-25.353780476723017,spot_peer,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,185698,13.750352374993504,spot_baseline,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,185698,1.5935795642252402,peer,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,185698,17.748101828286885,baseline,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,185699,0.1333811975409695,relative_legacy,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,185699,14.067196673037964,peer,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,185699,17.26663114599013,spot_peer,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,185699,61.44268224696928,baseline,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,185699,73.11832415721999,spot_baseline,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,187708,71.01727482796619,spot_baseline,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,187708,15.758282712243728,spot_peer,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,187708,37.375502240741255,baseline,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,187708,8.042644605065878,peer,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,187708,0.0773194049504355,relative_legacy,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,188107,-13.504136961885218,spot_peer,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,188107,30.25627700204313,spot_baseline,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,188107,28.662709500896728,baseline,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,188107,-0.2473458968371198,relative_legacy,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,188107,-12.849110495925922,peer,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,189585,-13.174814326604514,peer,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,189585,28.10230179670243,baseline,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,189585,-0.252573314866682,relative_legacy,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,189585,-16.34188785993994,spot_peer,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,189588,24.500922460342043,baseline,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,189588,-0.2874377081917301,relative_legacy,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,189588,0.0,spot_baseline,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,189588,-15.623668892085966,peer,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,189588,-35.22519195645667,spot_peer,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,190710,-0.0546391165641192,relative_legacy,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,190710,50.58909297299573,spot_baseline,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,190710,1.092841174907305,spot_peer,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,190710,48.10451117943665,baseline,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,190710,1.1312095568291654,peer,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,190772,74.84612330040356,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,190772,0.1316868701933103,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,190772,13.226604316625805,peer,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,190772,55.39453310856415,baseline,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,190772,18.50702236154284,spot_peer,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191026,45.2132074854161,baseline,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191026,53.60529002402098,spot_baseline,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191026,3.258176388336228,spot_peer,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191026,2.2573356778447797,peer,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191026,-0.030432073281948,relative_legacy,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191046,84.79969065549501,spot_baseline,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191046,4.144420470995628,peer,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191046,19.211752089787485,baseline,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191046,25.652712622691386,spot_peer,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191046,0.0359512848432219,relative_legacy,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191284,-0.0744675681866486,relative_legacy,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191284,45.49962228910224,baseline,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191284,-0.3878475242962719,peer,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191284,-0.3762817349738983,spot_peer,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191471,67.80719051126377,spot_baseline,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191471,0.0699308662888252,relative_legacy,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191471,43.15001023206801,baseline,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191471,13.453755358280253,spot_peer,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191471,8.162900815211309,peer,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191935,9.08660842494234,peer,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191935,0.0554709912254838,relative_legacy,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191935,58.86542724804836,baseline,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191935,62.29303509201767,spot_baseline,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,191935,9.495129744759756,spot_peer,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,192049,0.2271697073924038,relative_legacy,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,192049,70.07848801024994,baseline,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,192049,20.76653084322367,peer,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,192049,25.652712622691386,spot_peer,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,192418,29.940375887780768,baseline,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,192418,-0.6209402178438946,peer,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,192418,48.54268271702416,spot_baseline,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,192418,-0.0499692439868961,relative_legacy,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,192418,-0.3762817349738983,spot_peer,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,192472,16.18730565742663,baseline,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,192472,-23.487578121088475,spot_peer,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,192472,16.349873228287958,spot_baseline,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,192472,-23.60188708903128,peer,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,192472,-0.3903992378887378,relative_legacy,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,193275,0.0304138283151442,relative_legacy,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,193275,54.04888077547024,baseline,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,193275,6.981537545530373,peer,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,193275,8.004867651506581,spot_peer,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,193275,60.21717907533793,spot_baseline,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,195286,0.0818395686425724,relative_legacy,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,195286,13.453755358280253,spot_peer,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,195286,51.86944934530949,baseline,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,195286,9.807571492769425,peer,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,204737,-0.5457140895887617,peer,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,204737,-0.0458590362007928,relative_legacy,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,204737,-0.3762817349738983,spot_peer,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,204737,48.54268271702416,spot_baseline,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,204737,27.935863280953445,baseline,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,208405,56.37468736447808,baseline,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,208405,7.531338923128938,peer,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,208405,0.0346905256977427,relative_legacy,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,208405,6.769408526174652,spot_peer,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,215725,-0.1757453105884665,relative_legacy,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,215725,-8.051750279466516,spot_peer,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,215725,35.98708719205649,baseline,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,215725,-7.650902367184854,peer,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,215725,37.85116232537298,spot_baseline,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,216863,-0.0740981657881577,relative_legacy,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,216863,-0.2034033643807142,peer,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,216863,-0.3762817349738983,spot_peer,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,216863,46.80412614108662,baseline,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,216863,48.54268271702416,spot_baseline,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,218666,-0.0375876334217542,relative_legacy,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,218666,2.1149005766306743,peer,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,218666,2.5414162365767834,spot_peer,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,218666,47.73729357977865,baseline,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,218666,52.60688116675877,spot_baseline,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,218945,-8.051750279466516,spot_peer,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,218945,-7.635772923349673,peer,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,218945,-0.1742774407391297,relative_legacy,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,218945,37.85116232537298,spot_baseline,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,218945,35.33566367800094,baseline,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,219886,-50.01183208111243,peer,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,219886,-0.760216988356328,relative_legacy,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,219886,-23.87147266383806,spot_baseline,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,219886,-52.36258035680815,spot_peer,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,219886,-22.618136383276163,baseline,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,220077,10.831553817050228,spot_peer,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,220077,64.15460290875237,spot_baseline,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,220077,0.0814330932122749,relative_legacy,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,220077,63.320545987035416,baseline,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,220077,11.533064371865631,peer,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,221727,-8.051750279466516,spot_peer,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,221727,18.44504414267273,baseline,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,221727,-4.134982395276611,peer,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29355,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-11-01 13:01:30.164826+00,221727,-0.0894563197641854,relative_legacy,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29492 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,182315,26.303440583379377,spot_baseline,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,182315,23.48004277316417,spot_peer,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,182315,-0.055357842706102,relative_legacy,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,182315,21.17356303441216,peer,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,182315,22.03897414565754,baseline,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,185690,38.29582966718339,spot_peer,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,185690,0.119841095292994,relative_legacy,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,185690,34.05850304093109,peer,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,185690,40.09374761730675,baseline,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,185690,46.98859762744636,spot_baseline,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,185698,26.303440583379377,spot_baseline,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,185698,0.0523572650583532,relative_legacy,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,185698,23.48004277316417,spot_peer,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,185698,13.220226948427229,peer,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,185698,16.701435203740875,baseline,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,185699,2.4532676282991908,baseline,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,185699,6.851909557659485,peer,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,185699,-0.2578272532513491,relative_legacy,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,185699,6.686420058394111,spot_peer,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,185699,2.856915219677092,spot_baseline,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,187708,11.103131238874395,spot_baseline,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,187708,-0.1356284079772542,relative_legacy,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,187708,5.918865082619703,baseline,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,187708,12.59278948852213,spot_peer,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,187708,6.65947294972059,peer,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,188107,-52.24445639545811,baseline,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,188107,-0.8299166361735467,relative_legacy,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,188107,-31.647985526608345,peer,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,188107,-34.706342632383084,spot_peer,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,188107,-54.93385909904351,spot_baseline,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,189585,33.486874800380804,peer,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,189585,37.66679782748122,baseline,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,189585,39.40894635531421,spot_peer,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,189585,0.0699929348298026,relative_legacy,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,189588,-1.0624170618746016,relative_legacy,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,189588,-75.61490319136257,baseline,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,189588,-44.75688419298778,spot_peer,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,189588,-49.15155357145512,peer,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,189588,-68.96598793878495,spot_baseline,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,190710,16.349873228287958,spot_baseline,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,190710,-0.1519777645267847,relative_legacy,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,190710,15.567368861377757,baseline,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,190710,17.537612367505197,peer,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,190710,16.35077938617921,spot_peer,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,190772,17.19062212689658,peer,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,190772,21.743307213804773,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,190772,-0.0720679987620677,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,190772,17.68916124755585,baseline,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,190772,23.87868595871165,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191026,34.482849699744115,spot_baseline,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191026,26.201360767893355,peer,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191026,29.33856161974052,spot_peer,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191026,0.0131753157112893,relative_legacy,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191026,29.08476754916591,baseline,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191046,-5.095903623400128,peer,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191046,-8.613277939793921,baseline,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191046,-18.4180183980128,spot_peer,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191046,-0.1844212722211983,relative_legacy,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191046,-32.19280948873623,spot_baseline,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191284,-15.200309344504996,spot_baseline,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191284,-14.247365765296976,baseline,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191284,-0.4478768369718608,relative_legacy,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191284,-6.247104713519846,spot_peer,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191284,-4.348967591271481,peer,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191471,-20.245625617256884,peer,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191471,-32.792935380694246,baseline,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191471,-32.21626230254681,spot_peer,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191471,-0.5496626136504924,relative_legacy,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191471,-51.45731728297583,spot_baseline,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191935,13.750352374993504,spot_baseline,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191935,15.644641516524173,peer,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191935,14.488867150902443,spot_peer,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191935,-0.1765845099724844,relative_legacy,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191935,13.015914846435397,baseline,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191975,-0.4019978963929996,baseline,jkraybill_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191975,-0.0256173643505503,relative_legacy,jkraybill_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191975,-0.0194906491779838,peer,jkraybill_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191975,0.2063734666236318,spot_peer,jkraybill_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,191975,-6.190243892590668,spot_baseline,jkraybill_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,192049,-564.3856189774725,spot_baseline,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,192049,-399.6022286564529,spot_peer,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,192049,-467.40525306387934,baseline,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,192049,-331.7644017847325,peer,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,192049,-4.946452618487104,relative_legacy,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,192418,36.08962796036922,baseline,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,192418,29.066732551728837,peer,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,192418,0.1440170639959629,relative_legacy,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,192418,46.5382097422992,spot_peer,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,192472,0.0,spot_baseline,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,192472,4.6401485711222,spot_peer,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,192472,5.821386935308907,peer,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,192472,0.0,baseline,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,192472,-0.3128272868698131,relative_legacy,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,193275,7.353416825596865,baseline,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,193275,10.534320735893578,peer,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,193275,10.46611635952,spot_peer,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,193275,-0.2214428023503727,relative_legacy,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,193275,8.133962745193879,spot_baseline,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,195286,39.40894635531421,spot_peer,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,195286,0.1161934906163495,relative_legacy,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,195286,31.522434172156007,peer,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,195286,37.16018689181752,baseline,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,204737,33.80128780463992,baseline,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,204737,27.040263988701973,peer,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,204737,46.5382097422992,spot_peer,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,204737,0.1314234193455796,relative_legacy,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,208405,37.85116232537298,spot_baseline,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,208405,31.75112256609628,spot_peer,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,208405,0.0610843848864006,relative_legacy,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,208405,36.661409465553625,baseline,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,208405,32.49680255489074,peer,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,215725,46.1973564631482,baseline,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,215725,0.1543964637314713,relative_legacy,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,215725,39.74844326645451,peer,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,215725,39.40894635531421,spot_peer,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,215725,48.54268271702416,spot_baseline,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,216863,-100.0,spot_baseline,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,216863,-63.85411608084813,peer,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,216863,-66.98506008673883,spot_peer,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,216863,-1.272046997296994,relative_legacy,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,216863,-96.43955441564322,baseline,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,218666,41.74426232009576,spot_peer,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,218666,39.40079840957724,peer,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,218666,0.1753614847157696,relative_legacy,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,218666,47.16812797339132,baseline,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,218666,51.80314926021694,spot_baseline,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,218945,37.85116232537298,spot_baseline,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,218945,31.45827099565037,peer,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,218945,35.35054882241816,baseline,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,218945,31.75112256609628,spot_peer,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,218945,0.0483249792863221,relative_legacy,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,219886,-0.1498321924754268,relative_legacy,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,219886,14.79251445561282,peer,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,219886,13.60284098549188,baseline,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,219886,15.812415100079454,spot_peer,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,219886,15.598232435628743,spot_baseline,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,220077,42.22330006830478,spot_baseline,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,220077,41.68478606970424,baseline,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,220077,34.88267534728027,spot_peer,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,220077,36.86058775534804,peer,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,220077,0.1040205738272293,relative_legacy,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,221727,18.447815023554025,baseline,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,221727,15.358580728706396,peer,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,221727,31.75112256609628,spot_peer,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,221727,0.0030102896967202,relative_legacy,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,222142,-3.4534002475327794,spot_baseline,predictomatic,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,222142,-0.0033803057490759,baseline,predictomatic,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,222142,-0.0002675357662443,relative_legacy,predictomatic,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,222142,2.166643438035772,spot_peer,predictomatic,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29356,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-11-01 13:01:30.170503+00,222142,0.0021207843704251,peer,predictomatic,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29493 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,182315,87.97057662822883,spot_baseline,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,182315,33.43632753690907,peer,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,182315,73.83005063788256,baseline,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,182315,0.3242973555505508,relative_legacy,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,182315,42.35125782470768,spot_peer,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,185690,-8.161376555365194,spot_baseline,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,185690,-0.4905423796177153,relative_legacy,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,185690,-6.967556013512157,baseline,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,185690,-25.164770654694177,peer,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,185690,-26.66210564018292,spot_peer,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,185698,37.85116232537298,spot_baseline,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,185698,10.41900719116428,baseline,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,185698,0.3784216083789676,peer,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,185698,-0.038268436465219,relative_legacy,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,185698,6.370408155248074,spot_peer,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,185699,8.637912170515179,peer,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,185699,-0.0252325828639255,relative_legacy,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,185699,41.09362816082126,baseline,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,185699,12.555614606487508,spot_peer,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,185699,46.46682670034443,spot_baseline,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,187708,19.23996143859309,spot_peer,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,187708,30.686558546744077,baseline,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,187708,55.77776713949258,spot_baseline,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,187708,0.0464801809513785,relative_legacy,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,187708,9.36426775584944,peer,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,188107,24.65359504926268,peer,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,188107,66.92425896327664,baseline,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,188107,0.1847480365232917,relative_legacy,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,188107,69.30222465786092,spot_baseline,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,188107,28.949202450247853,spot_peer,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,189585,49.66904067809366,baseline,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,189585,0.0260186849293345,relative_legacy,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,189585,12.807805345052577,peer,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,189585,14.045876699740688,spot_peer,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,189588,-57.7443670011108,spot_peer,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,189588,-0.8858245332933614,relative_legacy,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,189588,-41.665690934217245,baseline,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,189588,-53.0057072740294,peer,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,190710,62.29303509201767,spot_baseline,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,190710,19.586431137315586,peer,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,190710,0.1183429746945057,relative_legacy,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,190710,23.917288179474337,spot_peer,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,190710,59.42339878042037,baseline,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,190772,39.10606339504484,baseline,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,190772,0.0303224852747483,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,190772,10.655317632879424,peer,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,190772,16.963574671291372,spot_peer,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,190772,52.60688116675877,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191026,49.34090684788964,baseline,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191026,58.496250072115615,spot_baseline,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191026,21.191566960889222,spot_peer,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191026,15.684968586012436,peer,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191026,0.0773526038489196,relative_legacy,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191046,-4.374290450871599,peer,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191046,-73.69655941662059,spot_baseline,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191046,-0.0640374992483325,relative_legacy,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191046,-73.70997312607682,spot_peer,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191046,-4.379048849992374,baseline,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191284,45.49866702190969,baseline,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191284,14.045876699740688,spot_peer,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191284,10.151641778782285,peer,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191284,-0.0100634881155749,relative_legacy,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191471,9.333764985289273,peer,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191471,52.60688116675877,spot_baseline,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191471,16.963574671291372,spot_peer,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191471,0.0303224852747483,relative_legacy,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191471,33.589596886624555,baseline,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191935,14.045876699740688,spot_peer,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191935,48.54268271702416,spot_baseline,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191935,47.03892969686032,baseline,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191935,-0.0106267140063469,relative_legacy,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,191935,10.402650005107787,peer,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,192049,45.67469040325595,spot_peer,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,192049,35.89956379566546,peer,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,192049,0.3599032666781149,relative_legacy,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,192049,77.03294738691619,baseline,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,192418,-0.4931004806141582,relative_legacy,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,192418,-28.57766452658545,peer,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,192418,-43.91432990785667,spot_peer,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,192418,-32.19280948873623,spot_baseline,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,192418,-19.870893033498284,baseline,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,192472,-43.91432990785667,spot_peer,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,192472,-48.066597751291255,peer,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,192472,-0.8079680043288804,relative_legacy,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,192472,-31.943731288626832,baseline,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,192472,-32.19280948873623,spot_baseline,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,193275,57.95872406325664,baseline,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,193275,24.1859561085256,spot_peer,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,193275,0.1210332250063532,relative_legacy,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,193275,62.66727526059934,spot_baseline,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,193275,19.58555029890864,peer,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,195286,-0.0016029932112225,relative_legacy,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,195286,8.722325790582047,peer,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,195286,14.045876699740688,spot_peer,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,195286,37.22291561841725,baseline,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,204737,0.0,baseline,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,204737,0.0,spot_baseline,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,204737,-13.433098185454408,peer,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,204737,-0.2757593569587052,relative_legacy,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,204737,-20.80303352174208,spot_peer,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,208405,54.03509644709211,baseline,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,208405,16.2042638933665,peer,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,208405,0.073500127640285,relative_legacy,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,208405,21.191566960889222,spot_peer,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,215725,72.96654380483896,baseline,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,215725,34.154892481125565,spot_peer,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,215725,29.428294195765638,peer,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,215725,0.2543208758199498,relative_legacy,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,216863,29.70570860555637,peer,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,216863,34.154892481125565,spot_peer,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,216863,73.86305070127963,baseline,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,216863,76.55347463629771,spot_baseline,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,216863,0.2546846126144876,relative_legacy,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,218666,15.515015674878589,peer,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,218666,56.55971758542251,spot_baseline,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,218666,0.0644998840942517,relative_legacy,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,218666,19.80132556934609,spot_peer,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,218666,52.42707495497344,baseline,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,218945,-0.7780592832334642,relative_legacy,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,218945,-31.44831812141534,baseline,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,218945,-44.955257549826456,spot_peer,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,218945,-45.40207744745559,peer,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,218945,-33.642766458247735,spot_baseline,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,219886,-0.7787084289796546,relative_legacy,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,219886,-32.38671539917885,baseline,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,219886,-46.12571723435674,spot_peer,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,219886,-45.48330242579629,peer,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,219886,-35.27315468956168,spot_baseline,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,220077,23.82679396243524,peer,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,220077,26.57311135014145,spot_peer,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,220077,65.17852085633584,baseline,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,220077,0.1617747158878399,relative_legacy,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,220077,65.99245584023782,spot_baseline,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,221727,-80.47311109233505,peer,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,221727,-100.0,spot_baseline,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,221727,-92.59327722259356,spot_peer,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,221727,-1.2557353651785093,relative_legacy,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29358,"Will Plug Power file for bankruptcy before January 1, 2025?",2024-11-01 13:01:30.494742+00,221727,-84.09047277788548,baseline,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29495 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,182315,63.22871558357292,peer,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,182315,79.29788376726599,spot_peer,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,182315,65.99245584023782,spot_baseline,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,182315,55.4295210046511,baseline,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,182315,0.8938208214826164,relative_legacy,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,185690,0.3760806634009037,relative_legacy,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,185690,26.101605512655997,peer,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,185690,34.47918805652807,spot_peer,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,185690,3.04238260952488,baseline,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,185690,3.5623909730721217,spot_baseline,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,185698,-232.19280948873623,spot_baseline,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,185698,-41.82165615090847,peer,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,185698,-0.4861994646399432,relative_legacy,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,185698,-72.30590633855319,baseline,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,185698,-134.7700448924351,spot_peer,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,185699,-173.6965594166206,spot_baseline,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,185699,-157.27473618792413,baseline,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,185699,-92.77544440980378,spot_peer,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,185699,-87.59033712209752,peer,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,185699,-1.2062553888665242,relative_legacy,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,187708,-23.07762396683824,spot_peer,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,187708,-42.70216104372692,baseline,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,187708,-0.0332477786630377,relative_legacy,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,187708,-14.037316534694872,peer,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,187708,-76.61119398257227,spot_baseline,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,188107,-41.50374992788438,spot_baseline,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,188107,2.126095677162296,spot_peer,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,188107,-1.2684770834439951,peer,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,188107,-0.0204815739873997,relative_legacy,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,188107,-40.22478122160823,baseline,Cassie,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,189585,5.62240776299547,peer,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,189585,8.810442509267874,spot_peer,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,189585,-30.483214421203524,baseline,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,189585,0.0804961806836531,relative_legacy,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,189588,-104.28125839387118,baseline,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,189588,-92.77544440980378,spot_peer,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,189588,-0.6582309663872687,relative_legacy,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,189588,-173.6965594166206,spot_baseline,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,189588,-47.77568641030521,peer,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,190710,59.09518057237261,spot_peer,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,190710,0.7441421225414089,relative_legacy,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,190710,37.85116232537298,spot_baseline,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,190710,53.9368311810224,peer,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,190710,36.135289785106565,baseline,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,190772,44.16430361675291,peer,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,190772,0.6747033959538479,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,190772,63.76836851213553,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,190772,44.36066514756148,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,190772,32.997355244915674,baseline,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191026,34.70439112375829,baseline,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191026,0.687873671104347,relative_legacy,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191026,41.1426245726465,spot_baseline,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191026,61.45812934101179,spot_peer,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191026,48.44162616230816,peer,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191046,1.2334566868949932,peer,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191046,21.009399773679025,spot_peer,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191046,-15.200309344504996,spot_baseline,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191046,0.0343430043632788,relative_legacy,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191046,-0.8924064183566608,baseline,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191284,-2.732578026118764,relative_legacy,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191284,-197.85058641105584,peer,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191284,-332.1928094887362,spot_baseline,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191284,-311.3597763166911,baseline,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191284,-206.56028859328657,spot_peer,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191471,-73.69655941662063,spot_baseline,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191471,-0.0987719456611624,relative_legacy,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191471,-47.10374565332098,baseline,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191471,-15.580750987581084,peer,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191471,-20.9852007089523,spot_peer,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191935,-98.35722841833872,peer,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191935,-1.3608499312551046,relative_legacy,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191935,-99.92113467095233,spot_peer,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191935,-183.65012677171205,spot_baseline,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,191935,-174.20723378593817,baseline,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,192049,98.39946282038048,spot_peer,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,192049,1.1087883073961076,relative_legacy,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,192049,78.59752568744112,peer,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,192049,77.14602657962963,baseline,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,192418,0.8294514883031001,relative_legacy,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,192418,50.32841608909418,peer,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,192418,73.11832415721999,spot_baseline,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,192418,45.14799217905569,baseline,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,192418,84.41356199782926,spot_peer,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,192472,72.59780459818342,baseline,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,192472,73.11832415721999,spot_baseline,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,192472,1.103291639443386,relative_legacy,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,192472,84.41356199782926,spot_peer,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,192472,82.25153698244984,peer,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,193275,-0.0571128944522581,relative_legacy,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,193275,-1.8145970424390303,spot_peer,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,193275,-43.634241133681776,baseline,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,193275,-4.277493672896059,peer,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,193275,-46.99292577749161,spot_baseline,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,195286,20.18946522616125,baseline,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,195286,0.5403860560989274,relative_legacy,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,195286,35.47269164360548,peer,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,195286,26.303440583379377,spot_baseline,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,195286,50.80504299189919,spot_peer,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,204737,-77.21456293838555,baseline,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,204737,-0.3853994479707361,relative_legacy,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,204737,-132.19280948873623,spot_baseline,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,204737,-62.97980119158361,spot_peer,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,204737,-38.29620768840869,peer,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,208405,-132.19280948873623,spot_baseline,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,208405,-62.97980119158361,spot_peer,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,208405,-0.808730605602217,relative_legacy,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,208405,-58.63050889940229,peer,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,208405,-119.2022976380388,baseline,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,215725,46.30731557721011,baseline,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,215725,61.30494568791435,peer,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,215725,48.54268271702416,spot_baseline,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,215725,0.8461015858313194,relative_legacy,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,215725,66.77064911686523,spot_peer,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,216863,25.38444611072781,baseline,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,216863,0.6338997294762435,relative_legacy,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,216863,26.303440583379377,spot_baseline,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,216863,50.80504299189919,spot_peer,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,216863,46.30906298222079,peer,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,218666,-29.94037448228009,baseline,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,218666,8.810442509267874,spot_peer,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,218666,5.424177388497602,peer,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,218666,-32.19280948873623,spot_baseline,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,218666,0.0780362823082638,relative_legacy,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,218945,71.59094677616326,baseline,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,218945,86.8796648982501,spot_peer,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,218945,79.07982194967693,peer,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,218945,1.0953737260164411,relative_legacy,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,219886,70.74798295531338,baseline,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,219886,73.90105971324432,peer,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,219886,85.15191911699034,spot_baseline,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,219886,93.05250914542178,spot_peer,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,219886,1.0440781552833265,relative_legacy,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,220077,-67.90515839341252,peer,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,220077,-62.97980119158361,spot_peer,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,220077,-130.59089526376448,baseline,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,220077,-132.19280948873623,spot_baseline,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,220077,-0.9249400665124798,relative_legacy,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,221727,-173.6965594166206,spot_baseline,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,221727,-92.77544440980378,spot_peer,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,221727,-1.1204211403252191,relative_legacy,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,221727,-82.00677685780224,peer,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29359,"Will the USDA-posted recall of Perdue Foods LLC's Frozen, Ready-To-Eat Chicken Breast Nugget and Tender Products be closed before November 16, 2024?",2024-11-01 13:01:30.49892+00,221727,-146.0431281318386,baseline,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29496 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,182315,-18.44245711374277,spot_baseline,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,182315,-11.30739956541576,peer,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,182315,-11.65771682634467,spot_peer,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,182315,-15.501382651595804,baseline,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,182315,-0.2310420638943974,relative_legacy,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,185690,-0.1541138662501054,relative_legacy,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,185690,-7.625903266548601,baseline,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,185690,-5.763910072127172,peer,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,185690,-4.84206015452559,spot_peer,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,185690,-8.926733809708741,spot_baseline,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,185698,-51.45731728297583,spot_baseline,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,185698,-0.1547952990496284,relative_legacy,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,185698,-35.30467931065891,spot_peer,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,185698,-8.552257090952292,peer,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,185698,-12.45484291664192,baseline,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,185699,31.794258339168174,spot_peer,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,185699,38.78827601183463,baseline,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,185699,0.2973447059001177,relative_legacy,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,185699,26.95637065341565,peer,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,185699,42.22330006830476,spot_baseline,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,187708,16.349873228287958,spot_baseline,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,187708,9.257477470980945,baseline,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,187708,0.0278246502946294,relative_legacy,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,187708,7.097474021110138,peer,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,187708,13.262362378067122,spot_peer,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,188107,15.993798941776516,spot_peer,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,188107,12.868621633788836,peer,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,188107,0.09956865169462,relative_legacy,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,188107,19.77545561129249,baseline,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,188107,20.163386116965043,spot_baseline,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,189585,37.85116232537298,spot_baseline,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,189585,0.3020944841888948,relative_legacy,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,189585,39.64676879158202,baseline,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,189585,27.34682802477481,peer,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,189585,28.6627055579842,spot_peer,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,189588,7.147740075532439,peer,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,189588,16.888465425231697,spot_peer,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,189588,0.0230740140456054,relative_legacy,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,189588,11.711708515162575,baseline,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,189588,21.412480535284764,spot_baseline,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,190710,13.750352374993504,spot_baseline,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,190710,0.0358087903017672,relative_legacy,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,190710,13.137644965698302,baseline,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,190710,11.400450142790362,spot_peer,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,190710,8.157380141693926,peer,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,190772,-2.6665412040829146,spot_peer,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,190772,-0.127410146030933,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,190772,-4.388229787894735,baseline,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,190772,-3.117995011949923,peer,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,190772,-5.889368905356857,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191026,-39.592867633113926,spot_baseline,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191026,-33.39780358659742,baseline,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191026,-0.4103552317766574,relative_legacy,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191026,-24.202312159341563,peer,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191026,-26.806742492838445,spot_peer,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191046,-0.0024862100275276,relative_legacy,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191046,-0.3530230377585145,baseline,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191046,-0.1735716063937379,peer,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191046,-2.6665412040829146,spot_peer,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191046,-5.889368905356857,spot_baseline,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191284,-15.200309344505014,spot_baseline,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191284,-9.335521721631949,spot_peer,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191284,-14.246983136539631,baseline,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191284,-0.2355406802657281,relative_legacy,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191284,-11.469362460832397,peer,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191471,2.9004079387526924,peer,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191471,5.604538588849194,spot_peer,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191471,3.6197154500072046,baseline,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191471,-0.0356281604578322,relative_legacy,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191471,5.658352836636751,spot_baseline,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191935,13.750352374993504,spot_baseline,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191935,11.400450142790362,spot_peer,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191935,8.082710117686847,peer,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191935,13.063139512836369,baseline,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,191935,0.0352147320078336,relative_legacy,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192049,-9.261486521639492,peer,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192049,-9.335521721631949,spot_peer,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192049,-12.693155278706634,baseline,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192049,-0.2031221631861919,relative_legacy,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192049,-15.200309344505014,spot_baseline,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192418,21.412480535284764,spot_baseline,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192418,16.888465425231697,spot_peer,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192418,13.224694129455417,baseline,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192418,0.0628749408914166,relative_legacy,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192418,9.857007513582213,peer,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192459,0.1467383585366553,relative_legacy,biak_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192459,16.298745411208582,peer,biak_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192459,22.52090443504889,baseline,biak_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192459,24.60989853214512,spot_peer,biak_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192459,32.19280948873624,spot_baseline,biak_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192472,13.750352374993504,spot_baseline,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192472,8.376531184984502,peer,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192472,13.661335268671849,baseline,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192472,11.400450142790362,spot_peer,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,192472,0.0369774957104261,relative_legacy,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,193275,-2.533012618701949,peer,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,193275,-0.1117366934202207,relative_legacy,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,193275,-1.771326866618833,baseline,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,193275,0.3042315021356344,spot_peer,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,193275,-1.7417053077409406,spot_baseline,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,195286,13.750352374993504,spot_baseline,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,195286,7.571338861528307,peer,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,195286,0.0195440983244459,relative_legacy,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,195286,10.56583209421362,baseline,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,195286,11.400450142790362,spot_peer,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,204737,-68.6495033377387,peer,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,204737,-1.029426985544164,relative_legacy,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,204737,-116.1898110331209,spot_peer,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,204737,-96.35485624016064,baseline,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,204737,-164.38561897747243,spot_baseline,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,208405,36.3205293472021,spot_peer,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,208405,28.099333981441404,peer,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,208405,0.313261315337575,relative_legacy,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,208405,40.675413834133096,baseline,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,215725,25.10838805738153,baseline,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,215725,0.1556363881612859,relative_legacy,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,215725,20.391625765052083,spot_peer,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,215725,16.80731006009578,peer,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,215725,26.303440583379377,spot_baseline,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,216863,-15.200309344505014,spot_baseline,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,216863,-11.987651850338809,peer,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,216863,-9.335521721631949,spot_peer,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,216863,-0.2427916090907214,relative_legacy,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,216863,-14.673016752589902,baseline,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,218269,0.0366721404824606,relative_legacy,tombot37,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,218269,8.332470307774638,peer,tombot37,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,218269,11.400450142790362,spot_peer,tombot37,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,218269,13.548526386787207,baseline,tombot37,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,218269,13.750352374993504,spot_baseline,tombot37,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,218666,50.58909297299573,spot_baseline,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,218666,37.78627496303761,spot_peer,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,218666,32.895205461801424,peer,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,218666,0.3796005547216565,relative_legacy,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,218666,47.21556226264596,baseline,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,218945,11.631804293597826,baseline,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,218945,0.0234822526759117,relative_legacy,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,218945,10.456760174585504,spot_peer,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,218945,7.211568718252653,peer,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,218945,12.432813500220147,spot_baseline,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,219886,-68.73348264416056,spot_baseline,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,219886,-47.67876879868458,spot_peer,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,219886,-55.357590808177946,baseline,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,219886,-0.6342755673469774,relative_legacy,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,219886,-39.839280354586805,peer,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,220077,-7.986163621324306,peer,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,220077,-0.1871005152886578,relative_legacy,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,220077,-8.820730937412865,baseline,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,220077,-4.84206015452559,spot_peer,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,220077,-8.926733809708741,spot_baseline,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,221727,-35.30467931065891,spot_peer,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,221727,-0.5071070588701472,relative_legacy,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,221727,-31.163137836082683,peer,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29360,"In Nebraska will Initiative 439, the Right to Abortion Initiative, receive more votes than Initiative 434, the Prohibit Abortions After the 1st Trimester Amendment?",2024-11-01 13:01:30.502798+00,221727,-43.10479265950877,baseline,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29497 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,182315,76.60665426039331,baseline,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,182315,91.07326619029126,spot_baseline,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,182315,60.82330600762205,spot_peer,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,182315,0.7374444549164904,relative_legacy,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,182315,52.63791366696148,peer,RyansAGI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,185690,65.56423546273241,baseline,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,185690,44.69491773787373,peer,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,185690,76.72310370238756,spot_baseline,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,185690,0.6232328063230603,relative_legacy,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,185690,50.533539108586666,spot_peer,annabot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,185698,58.59852615717755,spot_peer,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,185698,18.53475148502501,baseline,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,185698,87.97057662822883,spot_baseline,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,185698,13.220339734296836,peer,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,185698,0.2300201337940009,relative_legacy,RonanMcGovern,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,185699,31.05060638380225,baseline,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,185699,20.864799275621603,peer,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,185699,19.42743815812504,spot_peer,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,185699,33.34237337251918,spot_baseline,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,185699,0.2564010340774993,relative_legacy,MWG,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,187708,-15.908330600627355,peer,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,187708,-31.25005666126264,spot_peer,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,187708,-21.389014680961537,baseline,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,187708,-0.1387223303308174,relative_legacy,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,187708,-37.33272473940066,spot_baseline,twsummerbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,189585,-27.56448656024701,spot_peer,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,189585,-31.475863487538614,baseline,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,189585,-0.3700848234709936,relative_legacy,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,189585,-23.907420456959912,peer,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,189588,-150.0462399143423,baseline,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,189588,-283.65012677171205,spot_baseline,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,189588,-1.555473844094015,relative_legacy,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,189588,-109.6465415690579,peer,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,189588,-207.87165604907003,spot_peer,mf-bot-3,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,190710,-112.02942337177116,spot_baseline,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,190710,-107.13863849587712,baseline,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,190710,-84.81123533798355,spot_peer,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,190710,-78.7097236549327,peer,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,190710,-1.1268462123598415,relative_legacy,Bot_Pepa,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,190772,-21.345965634537727,baseline,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,190772,-25.01007836124307,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,190772,-28.63041851566411,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,190772,-17.22550511385408,peer,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,190772,-0.2059157261779363,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191026,0.2898763858848879,relative_legacy,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191026,22.66045989992893,spot_peer,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191026,37.85116232537298,spot_baseline,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191026,20.42440676083208,peer,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191026,31.93256552290747,baseline,manticAI,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191046,3.179627521812441,peer,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191046,0.0192958237711653,relative_legacy,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191046,50.41190678903369,spot_peer,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191046,4.651041224128518,baseline,archipelago,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191284,-57.32470095181056,spot_peer,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191284,-69.07415638072524,baseline,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191284,-0.7458419807414549,relative_legacy,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191284,-73.69655941662063,spot_baseline,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191284,-51.42800438152139,peer,000_bot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191471,23.072318004245027,peer,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191471,33.69212731868842,baseline,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191471,33.24103049859289,spot_peer,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191471,52.60688116675877,spot_baseline,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191471,0.3842537785586093,relative_legacy,HSeldon,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191935,-68.22406464055122,spot_peer,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191935,-0.9043003718314928,relative_legacy,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191935,-62.64805100019407,peer,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191935,-84.99532831187818,baseline,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,191935,-88.8968687611256,spot_baseline,pgodzinai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,192049,-66.25167558044006,baseline,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,192049,-0.7058567301599026,relative_legacy,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,192049,-49.771090185745805,peer,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,192049,-73.69655941662063,spot_baseline,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,192049,-57.32470095181056,spot_peer,gnosis-ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,192418,33.03512958631335,peer,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,192418,0.5289017545465265,relative_legacy,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,192418,50.41190678903369,spot_peer,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,192418,47.30427712917132,baseline,InstitutPelFutur,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,192472,0.1540199072070007,relative_legacy,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,192472,21.412480535284736,spot_baseline,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,192472,14.322300045987696,peer,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,192472,21.287458288660613,baseline,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,192472,10.873122725871912,spot_peer,bestworldbot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,193275,0.651536243777288,relative_legacy,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,193275,73.98481026993274,spot_baseline,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,193275,50.05072608484992,peer,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,193275,70.64472741996423,baseline,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,193275,48.5700490683261,spot_peer,histerio,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,195286,30.375271643824963,peer,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,195286,0.4485109248735968,relative_legacy,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,195286,37.46399544896411,spot_peer,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,195286,44.9834927342216,baseline,Unwrapped80T,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,204737,47.50192199363303,baseline,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,204737,0.542066939382643,relative_legacy,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,204737,80.73549220576041,spot_baseline,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,204737,53.41061750005979,spot_peer,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,204737,33.45756509840552,peer,SynapseSeer,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,208405,-41.37807890071487,spot_peer,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,208405,-13.80406670534242,baseline,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,208405,-0.1938001465919864,relative_legacy,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,208405,-11.205508796790914,peer,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,208405,-51.45731728297583,spot_baseline,mf-bot-4,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,215725,5.379002865808307,spot_peer,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,215725,13.750352374993504,spot_baseline,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,215725,13.135789368374008,baseline,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,215725,8.37994538510729,peer,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,215725,0.0755638750559868,relative_legacy,estr.ai,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,216863,-71.15247385718064,baseline,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,216863,-57.32470095181056,spot_peer,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,216863,-0.7648140595983949,relative_legacy,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,216863,-73.69655941662063,spot_baseline,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,216863,-52.674008082429694,peer,tombot61,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,218269,25.92132702291312,baseline,tombot37,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,218269,17.764845491101347,peer,tombot37,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,218269,26.303440583379377,spot_baseline,tombot37,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,218269,0.2016427468975426,relative_legacy,tombot37,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,218269,14.380179795769989,spot_peer,tombot37,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,218666,35.51471050398342,spot_peer,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,218666,36.16898811552921,peer,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,218666,0.4664118186183387,relative_legacy,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,218666,55.77776713949258,spot_baseline,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,218666,52.147858408188085,baseline,GreeneiBot2,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,218945,44.14039418733354,spot_peer,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,218945,63.47150107000789,baseline,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,218945,67.80719051126377,spot_baseline,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,218945,44.37785460230923,peer,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,218945,0.5793492759011146,relative_legacy,SeidrBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,219886,53.622602447000205,peer,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,219886,77.86861343680441,baseline,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,219886,94.27584526552552,spot_baseline,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,219886,0.7558043353530763,relative_legacy,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,219886,63.11971151436575,spot_peer,SaraBase,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,220077,-16.998978662443577,peer,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,220077,-0.2726700400936274,relative_legacy,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,220077,-20.08303881063052,spot_peer,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,220077,-21.505810824421506,baseline,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,220077,-21.75914350726268,spot_baseline,mmBot,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,221727,-10.96145890119032,peer,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,221727,-0.1457700070524062,relative_legacy,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,221727,-41.37807890071487,spot_peer,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,221727,-11.72150668398216,baseline,mf-bot-5,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,222142,1.435070203675719,peer,predictomatic,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,222142,90.74089558194288,spot_baseline,predictomatic,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,222142,2.135038243920138,baseline,predictomatic,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,222142,60.584980059265824,spot_peer,predictomatic,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29361,"Will Sam Altman's net worth exceed $1 billion on the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-01 13:01:30.50666+00,222142,0.0082264579683714,relative_legacy,predictomatic,True,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29498 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,182315,92.5999418556223,spot_baseline,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,182315,90.8314486880044,spot_peer,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,182315,77.07885759485178,peer,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,182315,0.1754792061091239,relative_legacy,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,182315,77.94900444506008,baseline,RyansAGI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,185690,19.88934366650787,baseline,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,185690,41.27104439732627,spot_peer,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,185690,35.439968069766174,peer,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,185690,-0.4146114681830992,relative_legacy,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,185690,23.266075679027505,spot_baseline,annabot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,185698,-0.0017067253161753,relative_legacy,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,185698,27.10681930744307,peer,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,185698,67.80719051126377,spot_baseline,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,185698,73.10939094244263,spot_peer,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,185698,26.29046318561739,baseline,RonanMcGovern,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,185699,90.30566863353972,baseline,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,185699,0.216315130902429,relative_legacy,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,185699,86.94707531214769,peer,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,185699,92.97996389985995,spot_peer,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,185699,95.60566524124027,spot_baseline,MWG,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,187708,31.24108221185252,peer,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,187708,35.38878362849074,spot_baseline,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,187708,49.93645338437092,spot_peer,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,187708,-0.2375868467592708,relative_legacy,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,187708,20.485375317773656,baseline,twsummerbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,188107,38.76552093680343,baseline,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,188107,52.44328761530277,peer,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,188107,52.74888649890487,spot_peer,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,188107,-0.3248074800680092,relative_legacy,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,188107,39.32331289604954,spot_baseline,Cassie,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,189585,85.25576649450718,spot_peer,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,189585,0.1464990367469689,relative_legacy,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,189585,83.51024771630165,baseline,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,189585,82.1465491030264,peer,mf-bot-1,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,189588,35.41218025434405,baseline,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,189588,47.38703860181336,peer,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,189588,-0.3324565065486601,relative_legacy,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,189588,43.44217722085273,spot_peer,mf-bot-3,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,189869,73.10939094244263,spot_peer,VeritasAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,189869,61.63723544344536,peer,VeritasAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,189869,-0.0315938241681678,relative_legacy,VeritasAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,189869,56.44256181161294,baseline,VeritasAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,190710,-113.37387753268828,baseline,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,190710,-1.8260140133326976,relative_legacy,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,190710,-59.19981176539546,peer,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,190710,-118.44245711374276,spot_baseline,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,190710,-60.02335275572508,spot_peer,Bot_Pepa,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,190772,-0.970213843402749,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,190772,-10.935384859565144,peer,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,190772,-59.94620704162715,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,190772,-18.20976348207064,spot_peer,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,190772,-44.72620276794482,baseline,Jay_Bailey_Bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191026,-99.9229807565717,baseline,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191026,-50.59090112350446,peer,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191026,-60.02335275572508,spot_peer,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191026,-1.6041431215463964,relative_legacy,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191026,-118.44245711374276,spot_baseline,manticAI,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191046,0.0046160712736719,relative_legacy,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191046,90.8314486880044,spot_peer,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191046,5.3571834061903365,peer,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191046,5.479925204670992,baseline,archipelago,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191284,71.75160621746268,baseline,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191284,73.46569644585969,peer,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191284,79.36130506726249,spot_peer,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191284,0.0370701467085387,relative_legacy,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191284,76.55347463629771,spot_baseline,000_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191471,-80.71751822525937,spot_peer,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191471,-1.387350590652367,relative_legacy,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191471,-48.846294579140825,peer,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191471,-147.39311883324118,spot_baseline,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191471,-94.4836553773647,baseline,HSeldon,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191935,-176.12572433846765,baseline,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191935,-104.26691143346048,peer,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191935,-106.63431864172784,spot_peer,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191935,-2.4548724373046933,relative_legacy,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191935,-183.65012677171205,spot_baseline,pgodzinai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191975,96.01789307481972,spot_peer,jkraybill_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191975,99.85565831303312,spot_baseline,jkraybill_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191975,0.0703346560278015,relative_legacy,jkraybill_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191975,46.33527452169169,peer,jkraybill_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,191975,46.6480371081329,baseline,jkraybill_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192049,88.73867291000568,baseline,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192049,0.235136654631908,relative_legacy,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192049,98.5500430304885,spot_baseline,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192049,85.40682067114813,peer,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192049,95.0846287868282,spot_peer,gnosis-ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192418,-1.3444785288231444,relative_legacy,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192418,-80.71751822525937,spot_peer,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192418,-47.22167726474587,peer,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192418,-147.39311883324118,spot_baseline,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192418,-91.09935392874752,baseline,InstitutPelFutur,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192459,-627.7588747255552,baseline,biak_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192459,-616.2411934733123,spot_peer,biak_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192459,-6.765376568575122,relative_legacy,biak_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192459,-429.1091141894329,peer,biak_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192459,-896.5784284662086,spot_baseline,biak_bot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192472,-564.3856189774723,spot_baseline,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192472,-378.78710575830127,spot_peer,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192472,-6.28554711072895,relative_legacy,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192472,-379.0658885898033,peer,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,192472,-561.5071118714264,baseline,bestworldbot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,193275,82.87070838714216,baseline,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,193275,85.27978928187711,spot_baseline,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,193275,82.6435628835725,peer,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,193275,0.1287886081746186,relative_legacy,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,193275,85.59894484781427,spot_peer,histerio,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,195286,-162.0716566325022,peer,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,195286,-212.8138210385347,spot_peer,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,195286,-3.0995038116410827,relative_legacy,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,195286,-332.1928094887361,spot_baseline,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,195286,-255.67940082759935,baseline,Unwrapped80T,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,204737,57.73821447875329,baseline,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,204737,94.5624757725593,spot_peer,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,204737,0.1272210911027942,relative_legacy,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,204737,97.81956296816516,spot_baseline,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,204737,58.30140012755428,peer,SynapseSeer,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,208405,0.1925646890066808,relative_legacy,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,208405,90.8314486880044,spot_peer,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,208405,87.57366091505801,baseline,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,208405,84.90115975920477,peer,mf-bot-4,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,215725,81.10624970138659,baseline,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,215725,84.79969065549501,spot_baseline,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,215725,85.25576649450718,spot_peer,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,215725,80.83824734609995,peer,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,215725,0.1182262193845489,relative_legacy,estr.ai,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,216863,-1.4097347576171424,relative_legacy,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,216863,-28.03862577439161,spot_peer,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,216863,-28.494826913005493,peer,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,216863,-73.69655941662059,spot_baseline,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,216863,-71.16853042851929,baseline,tombot61,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,218269,66.8340934341047,baseline,tombot37,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,218269,-0.0443414292810389,relative_legacy,tombot37,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,218269,67.80719051126377,spot_baseline,tombot37,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,218269,72.71427166293641,peer,tombot37,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,218269,73.10939094244263,spot_peer,tombot37,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,218666,92.91283701472932,peer,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,218666,93.6158857505378,spot_peer,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,218666,96.49530529007993,spot_baseline,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,218666,0.2377562031082571,relative_legacy,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,218666,94.9980142757809,baseline,GreeneiBot2,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,218945,24.63340258413062,baseline,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,218945,-0.4335258252396974,relative_legacy,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,218945,26.303440583379377,spot_baseline,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,218945,39.55706270130527,peer,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,218945,43.44217722085273,spot_peer,SeidrBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,219886,90.8314486880044,spot_peer,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,219886,88.01562605289074,peer,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,219886,0.1962294324262198,relative_legacy,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,219886,92.5999418556223,spot_baseline,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,219886,89.97628466777606,baseline,SaraBase,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,220077,-130.67950634544056,baseline,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,220077,-69.8522150480461,spot_peer,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,220077,-2.0130951363385097,relative_legacy,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,220077,-69.09729104840166,peer,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,220077,-132.19280948873626,spot_baseline,mmBot,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,221727,90.8314486880044,spot_peer,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,221727,92.5999418556223,spot_baseline,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,221727,0.1753510111671742,relative_legacy,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,221727,77.0227025461255,peer,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29362,"Will there be greater than or equal to 3,900 emojis on December 31, 2024?",2024-11-01 13:01:30.648167+00,221727,77.87471113721814,baseline,mf-bot-5,True,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,2024-11-02 14:30:00+00,29499 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,182315,-0.2790259018038697,relative_legacy,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,182315,-3.9017607920548714,spot_peer,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,182315,-9.82468911454662,peer,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,182315,2.511483994175392,baseline,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,182315,2.856915219677092,spot_baseline,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,185690,30.8627189491149,baseline,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,185690,54.00272692575073,spot_baseline,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,185690,14.252047911950644,peer,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,185690,32.731533562177084,spot_peer,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,185690,0.0849766463855879,relative_legacy,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,185698,0.1262654456507144,relative_legacy,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,185698,52.467727989179465,spot_peer,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,185698,81.55754288625727,spot_baseline,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,185698,27.180321789682797,baseline,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,185698,14.209129414261206,peer,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,185699,15.903534229808107,peer,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,185699,35.73797845640107,baseline,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,185699,50.58909297299573,spot_baseline,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,185699,30.28651112070072,spot_peer,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,185699,0.0800726256550287,relative_legacy,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,187708,53.60529002402098,spot_baseline,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,187708,0.0610038698414684,relative_legacy,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,187708,28.712551636491146,baseline,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,187708,32.44686855202981,spot_peer,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,187708,12.629789376338422,peer,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,188107,0.0812560260538231,relative_legacy,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,188107,56.88428353578793,spot_baseline,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,188107,14.32495500084696,peer,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,188107,31.30147678861417,baseline,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,188107,34.79545449671061,spot_peer,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,189585,28.50656150194305,peer,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,189585,57.74094981850876,baseline,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,189585,0.2389692418149641,relative_legacy,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,189585,35.950028891850216,spot_peer,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,189588,-5.948032279326773,spot_peer,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,189588,-13.524278058954796,peer,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,189588,0.0,spot_baseline,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,189588,-0.3376649946710252,relative_legacy,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,189588,0.0,baseline,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,189869,12.38350809953139,baseline,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,189869,13.750352374993504,spot_baseline,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,189869,3.900686300453478,spot_peer,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,189869,-0.1832628463631663,relative_legacy,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,189869,-2.9421853507922595,peer,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,190710,3.98402645317911,spot_baseline,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,190710,-3.094465019252853,spot_peer,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,190710,-0.2991444960347543,relative_legacy,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,190710,-10.710626182339402,peer,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,190710,3.946415453274558,baseline,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,190772,42.55100779923676,baseline,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,190772,0.1290195033874938,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,190772,54.59683691052925,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,190772,20.047331657131377,peer,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,190772,33.157066078431896,spot_peer,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191026,-1.402267139636166,peer,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191026,-2.330220696918037,spot_peer,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191026,-0.0363911916504432,relative_legacy,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191026,5.051031124656511,spot_baseline,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191026,0.7403173877563289,baseline,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191046,10.606259767190268,baseline,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191046,26.303440583379377,spot_baseline,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191046,-0.06076903002403,relative_legacy,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191046,1.5254355003414302,peer,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191046,12.891861922715204,spot_peer,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191284,-0.9265293371736268,relative_legacy,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191284,-73.69655941662059,spot_baseline,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191284,-62.63935681677104,baseline,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191284,-58.7333467351458,spot_peer,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191284,-56.59396803499638,peer,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191471,-28.81974485267905,peer,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191471,-0.5329705753957928,relative_legacy,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191471,-34.306506335175335,spot_peer,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191471,-26.794317559761165,baseline,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191471,-39.592867633113926,spot_baseline,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191935,47.66065970690721,spot_peer,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191935,74.84612330040356,spot_baseline,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191935,0.3754674338498655,relative_legacy,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191935,37.81523798740216,peer,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,191935,69.17035782495613,baseline,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192049,-100.0,spot_baseline,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192049,-80.92289895936388,peer,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192049,-94.18081252304492,baseline,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192049,-1.2647214352913805,relative_legacy,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192049,-77.57324093718779,spot_peer,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192418,5.618760511350962,baseline,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192418,-9.498243031394722,peer,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192418,-1.8952252534876963,spot_peer,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192418,5.658352836636751,spot_baseline,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192418,-0.2825592961342116,relative_legacy,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192472,74.76212610919812,baseline,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192472,48.88355366376417,spot_peer,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192472,0.4111885874684222,relative_legacy,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192472,41.01413256581607,peer,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192924,-0.0838879332182087,relative_legacy,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192924,2.0681510187779586,peer,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192924,12.891861922715204,spot_peer,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192924,26.303440583379377,spot_baseline,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,192924,13.88350343171696,baseline,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,193275,41.35940824091752,spot_baseline,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,193275,32.67431250604129,baseline,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,193275,12.771237525936073,peer,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,193275,0.0281515527240622,relative_legacy,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,193275,23.67573017288696,spot_peer,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,195286,-42.80444315299579,spot_peer,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,195286,-51.45731728297583,spot_baseline,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,195286,-45.50644883760031,peer,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,195286,-0.7709898487897351,relative_legacy,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,195286,-46.35684667008908,baseline,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,204737,0.0371572990595939,relative_legacy,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,204737,50.58909297299573,spot_baseline,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,204737,9.565414230359902,peer,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,204737,30.28651112070072,spot_peer,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,204737,22.78872639454796,baseline,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,208405,12.891861922715204,spot_peer,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,208405,-0.079794883041446,relative_legacy,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,208405,5.291840770446882,peer,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,208405,25.58715438593079,baseline,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,215725,37.85116232537298,spot_baseline,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,215725,13.364223895137483,peer,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,215725,0.0335720122135984,relative_legacy,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,215725,36.15907628256829,baseline,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,215725,21.162941715647303,spot_peer,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,218666,44.36066514756145,spot_baseline,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,218666,18.18219044975576,peer,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,218666,25.82538669462915,spot_peer,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,218666,0.0968370236230267,relative_legacy,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,218666,43.41275571879585,baseline,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,218945,-32.55331067012081,peer,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,218945,-25.451385154337427,spot_peer,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,218945,-26.50911846423049,baseline,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,218945,-27.22973271627617,spot_baseline,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,218945,-0.600193099650159,relative_legacy,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,219886,-64.45326116239,spot_baseline,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,219886,-10.880115175266605,baseline,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,219886,-52.11281507368472,spot_peer,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,219886,-10.057147821697622,peer,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,219886,-0.1617933132112469,relative_legacy,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,220077,42.22330006830476,spot_baseline,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,220077,24.29449449683129,spot_peer,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,220077,41.68220955890821,baseline,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,220077,0.0783762192387459,relative_legacy,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,220077,16.80353962070148,peer,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,221727,0.2321872716262981,relative_legacy,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,221727,27.933548303925456,peer,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,221727,56.59319129995948,baseline,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,221727,35.950028891850216,spot_peer,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,222142,-3.85249290675838,peer,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,222142,-5.247565486722035,baseline,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,222142,-243.9993277933288,spot_peer,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,222142,-332.35686146636493,spot_baseline,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29414,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-04 13:59:34.236533+00,222142,-0.0566286916475774,relative_legacy,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29541 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,182315,-25.18723381509596,baseline,RyansAGI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,182315,-27.88954403493926,spot_peer,RyansAGI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,182315,-0.3995657447828102,relative_legacy,RyansAGI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,182315,-20.804451404202272,peer,RyansAGI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,182315,-28.63041851566411,spot_baseline,RyansAGI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,185690,-46.76020010590791,spot_peer,annabot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,185690,-0.3366375786417489,relative_legacy,annabot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,185690,-55.00425163719967,spot_baseline,annabot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,185690,-21.03662304107591,baseline,annabot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,185690,-17.358492494447226,peer,annabot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,185698,24.983363674310016,baseline,RonanMcGovern,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,185698,15.910084459523766,peer,RonanMcGovern,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,185698,0.1354634481916871,relative_legacy,RonanMcGovern,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,185698,19.67847693964957,spot_peer,RonanMcGovern,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,185698,37.85116232537298,spot_baseline,RonanMcGovern,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,185699,2.856915219677092,spot_baseline,MWG,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,185699,2.073006357038792,baseline,MWG,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,185699,-0.1089209058918159,relative_legacy,MWG,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,185699,-5.360143671582555,spot_peer,MWG,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,185699,-0.7915426868993107,peer,MWG,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,187708,25.543403395769403,spot_peer,twsummerbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,187708,0.1234116128267396,relative_legacy,twsummerbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,187708,46.04804700400107,spot_baseline,twsummerbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,187708,24.982624022466243,baseline,twsummerbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,187708,15.6879729727013,peer,twsummerbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,188107,-34.85575422458512,peer,Cassie,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,188107,-0.5788055138768681,relative_legacy,Cassie,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,188107,-45.405411995298834,baseline,Cassie,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,188107,-81.94277543581791,spot_baseline,Cassie,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,188107,-66.03489617760773,spot_peer,Cassie,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,189585,-26.137590886038623,peer,mf-bot-1,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,189585,-30.4384588829776,spot_peer,mf-bot-1,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,189585,-31.774440824709945,baseline,mf-bot-1,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,189585,-0.4859987364826865,relative_legacy,mf-bot-1,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,189588,-26.113074218920616,peer,mf-bot-3,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,189588,-30.4384588829776,spot_peer,mf-bot-3,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,189588,-0.486057986731242,relative_legacy,mf-bot-3,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,189588,-32.19280948873623,spot_baseline,mf-bot-3,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,189588,-31.72486023476203,baseline,mf-bot-3,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,189869,0.083707649469579,relative_legacy,VeritasAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,189869,11.416003889478077,spot_peer,VeritasAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,189869,23.653937301668684,baseline,VeritasAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,189869,14.41384000334171,peer,VeritasAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,190710,-56.7499169091753,spot_peer,Bot_Pepa,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,190710,-68.96598793878495,spot_baseline,Bot_Pepa,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,190710,-68.39222192666257,baseline,Bot_Pepa,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,190710,-0.8522345684219639,relative_legacy,Bot_Pepa,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,190710,-52.93267333825357,peer,Bot_Pepa,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,190772,0.0298897692191642,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,190772,7.916488877794829,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,190772,16.702350222892253,baseline,Jay_Bailey_Bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,190772,9.716157785815632,peer,Jay_Bailey_Bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,190772,21.412480535284736,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191026,3.0531832250403927,peer,manticAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191026,5.619766251953105,baseline,manticAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191026,0.0002479042237864,relative_legacy,manticAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191026,38.33997398586756,spot_baseline,manticAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191026,20.028224990536437,spot_peer,manticAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191046,19.719546386907968,baseline,archipelago,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191046,0.0712112525336993,relative_legacy,archipelago,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191046,48.54268271702416,spot_baseline,archipelago,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191046,27.32833212971117,spot_peer,archipelago,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191046,11.967873936787427,peer,archipelago,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191284,-9.73704716237572,baseline,000_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191284,-0.2372313628001485,relative_legacy,000_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191284,-9.572503847128496,peer,000_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191284,0.0,spot_baseline,000_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191284,-7.404285844091433,spot_peer,000_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191471,-0.2986974771059774,relative_legacy,HSeldon,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191471,-25.402054839681394,spot_peer,HSeldon,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191471,-14.512435583114767,peer,HSeldon,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191471,-17.042061811571244,baseline,HSeldon,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191471,-25.15387669959645,spot_baseline,HSeldon,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191935,-42.95574745025212,peer,pgodzinai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191935,-55.40050192113428,baseline,pgodzinai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191935,-50.29620264013435,spot_peer,pgodzinai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191935,-0.7133859457312411,relative_legacy,pgodzinai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191935,-59.94620704162712,spot_baseline,pgodzinai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191975,42.096755056680095,spot_peer,jkraybill_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191975,0.2049503159570166,relative_legacy,jkraybill_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191975,33.22849015961249,baseline,jkraybill_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191975,69.18319040681031,spot_baseline,jkraybill_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,191975,21.563833869799424,peer,jkraybill_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192049,45.82487465042341,baseline,gnosis-ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192049,30.228347122036745,peer,gnosis-ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192049,0.2936487623321525,relative_legacy,gnosis-ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192049,27.32833212971117,spot_peer,gnosis-ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192418,27.32833212971117,spot_peer,InstitutPelFutur,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192418,48.21259543209162,baseline,InstitutPelFutur,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192418,48.54268271702416,spot_baseline,InstitutPelFutur,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192418,32.243026687436384,peer,InstitutPelFutur,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192418,0.3130759450637057,relative_legacy,InstitutPelFutur,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192472,-0.288762741656447,relative_legacy,bestworldbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192472,-16.011419670057993,spot_peer,bestworldbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192472,-11.660283088030178,peer,bestworldbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192472,-12.029423371771175,spot_baseline,bestworldbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192472,-11.761092734351164,baseline,bestworldbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192924,-4.89096004809464,spot_baseline,acm_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192924,-2.586406275567497,baseline,acm_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192924,-10.903800855774668,spot_peer,acm_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192924,-0.1521354109866647,relative_legacy,acm_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,192924,-4.117875530854057,peer,acm_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,193275,-58.20799921880349,spot_baseline,histerio,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,193275,-46.77842732964667,baseline,histerio,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,193275,-49.05250318040023,spot_peer,histerio,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,193275,-0.6017040529845897,relative_legacy,histerio,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,193275,-36.11670292785981,peer,histerio,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,195286,-0.0293788867034753,relative_legacy,Unwrapped80T,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,195286,2.434184329258234,spot_peer,Unwrapped80T,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,195286,6.252527301820174,peer,Unwrapped80T,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,195286,12.387228508504936,baseline,Unwrapped80T,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,195286,13.750352374993504,spot_baseline,Unwrapped80T,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,204737,28.792552515977647,spot_peer,SynapseSeer,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,204737,50.58909297299573,spot_baseline,SynapseSeer,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,204737,0.1020859117511723,relative_legacy,SynapseSeer,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,204737,14.193098642326255,peer,SynapseSeer,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,204737,22.942049739028068,baseline,SynapseSeer,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,208405,0.083358904226054,relative_legacy,mf-bot-4,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,208405,25.484980280016664,baseline,mf-bot-4,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,208405,15.375613561691445,peer,mf-bot-4,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,208405,11.416003889478077,spot_peer,mf-bot-4,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,215725,11.416003889478077,spot_peer,estr.ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,215725,26.303440583379377,spot_baseline,estr.ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,215725,15.171324162322252,peer,estr.ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,215725,25.150634736095007,baseline,estr.ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,215725,0.083707649469579,relative_legacy,estr.ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,218666,45.20682302238109,spot_baseline,GreeneiBot2,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,218666,0.2729229983978339,relative_legacy,GreeneiBot2,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,218666,44.32053100774962,baseline,GreeneiBot2,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,218666,24.94150194433269,spot_peer,GreeneiBot2,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,218666,29.12352067784988,peer,GreeneiBot2,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,218945,33.34237337251918,spot_baseline,SeidrBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,218945,16.45240793277429,spot_peer,SeidrBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,218945,32.47430836600928,baseline,SeidrBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,218945,20.45281872049791,peer,SeidrBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,218945,0.1529592607748654,relative_legacy,SeidrBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,219886,10.16193274395018,baseline,SaraBase,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,219886,6.169804215014614,peer,SaraBase,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,219886,0.0354327220166527,relative_legacy,SaraBase,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,219886,35.667912141733105,spot_peer,SaraBase,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,219886,60.19816998326365,spot_baseline,SaraBase,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,220077,-0.1682543282355871,relative_legacy,mmBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,220077,0.0,baseline,mmBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,220077,-7.404285844091433,spot_peer,mmBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,220077,-3.000163758462271,peer,mmBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,220077,0.0,spot_baseline,mmBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,221727,34.45017692836424,spot_peer,mf-bot-5,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,221727,0.3956634017618489,relative_legacy,mf-bot-5,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,221727,56.68603671883092,baseline,mf-bot-5,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,221727,38.01999905510984,peer,mf-bot-5,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,222142,1.3862650399333878,peer,predictomatic,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,222142,88.49023823478645,spot_baseline,predictomatic,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,222142,0.0125555046620939,relative_legacy,predictomatic,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,222142,2.1940360852835656,baseline,predictomatic,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29415,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-04 13:59:34.244413+00,222142,55.91107842896156,spot_peer,predictomatic,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29542 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,182315,-0.0183522126581416,relative_legacy,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,182315,92.5999418556223,spot_baseline,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,182315,1.1682589304874584,peer,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,182315,81.53131589794398,baseline,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,182315,1.8077769749381647,spot_peer,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,185690,0.0229852878923067,relative_legacy,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,185690,97.63636357327616,spot_baseline,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,185690,3.52467784570009,peer,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,185690,5.407851660944032,spot_peer,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,185690,51.89459508001427,baseline,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,185698,-53.97984336262006,baseline,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,185698,-87.3950837658679,spot_peer,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,185698,-0.8659464031446634,relative_legacy,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,185698,-32.19280948873623,spot_baseline,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,185698,-60.302740178762924,peer,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,185699,94.11063109464314,spot_baseline,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,185699,2.887629773753001,spot_peer,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,185699,-0.0053472730428085,relative_legacy,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,185699,2.1355993837600256,peer,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,185699,84.78372547802357,baseline,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,187708,-0.0108317961848642,relative_legacy,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,187708,91.6858764699754,spot_baseline,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,187708,50.54956147396935,baseline,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,187708,1.1326672496619885,peer,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,187708,1.154395697376185,spot_peer,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,188107,4.398320296051926,spot_peer,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,188107,96.22405240357756,spot_baseline,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,188107,2.94078271156865,peer,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,188107,54.04435507256781,baseline,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,188107,0.0141302664036533,relative_legacy,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,189585,-0.0219081780233345,relative_legacy,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,189585,91.40319957194583,baseline,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,189585,1.8077769749381647,spot_peer,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,189585,1.1723300918962924,peer,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,189588,3.956292186793741,spot_peer,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,189588,0.0076807678834323,relative_legacy,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,189588,3.3082072665199607,peer,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,189588,95.60566524124027,spot_baseline,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,189588,94.19602832647831,baseline,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,189869,0.0346198925900699,relative_legacy,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,189869,6.060957073761992,spot_peer,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,189869,88.72269457861938,baseline,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,189869,5.014968115484424,peer,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,189869,98.5500430304885,spot_baseline,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,190710,91.07326619029126,spot_baseline,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,190710,0.716496950226545,spot_peer,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,190710,-0.0368424984341069,relative_legacy,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,190710,90.50327342418925,baseline,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,190710,0.1011718859569972,peer,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,190772,3.7644498521223455,peer,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,190772,75.78809509553085,baseline,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,190772,0.0196132446454365,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,190772,97.08536543404836,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,190772,5.013993766535138,spot_peer,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191026,80.20061057342197,baseline,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191026,-0.0798560891539022,relative_legacy,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191026,-2.3232500269302974,spot_peer,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191026,-3.16458988174969,peer,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191026,86.82073005501718,spot_baseline,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191046,37.48212989070104,baseline,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191046,1.6478132239255912,peer,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191046,-0.000794063942818,relative_legacy,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191046,1.8077769749381647,spot_peer,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191284,4.827602316595449,peer,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191284,98.5500430304885,spot_baseline,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191284,0.0326819213844998,relative_legacy,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191284,6.060957073761992,spot_peer,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191284,83.76307974138149,baseline,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191471,-0.0111142890121889,relative_legacy,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191471,1.3506261714707424,peer,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191471,62.81341186736281,baseline,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191471,1.8077769749381647,spot_peer,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191471,92.5999418556223,spot_baseline,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191935,3.1304783727825094,peer,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191935,0.008121403470251,relative_legacy,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191935,95.60566524124027,spot_baseline,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191935,87.37870976118818,baseline,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191935,3.956292186793741,spot_peer,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191975,6.580479583101313,spot_peer,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191975,0.0340796483756202,relative_legacy,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191975,4.587213383036784,peer,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191975,66.95301775165001,baseline,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,191975,99.27684307689242,spot_baseline,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192049,0.0352758655581215,relative_legacy,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192049,98.5500430304885,spot_baseline,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192049,5.208022544380309,peer,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192049,93.4368247736314,baseline,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192049,6.060957073761992,spot_peer,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192418,-1.5013304631853093,spot_peer,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192418,87.97057662822883,spot_baseline,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192418,-2.143848864475022,peer,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192418,87.40273658406724,baseline,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192418,-0.0676691189803291,relative_legacy,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192459,99.85565831303312,spot_baseline,biak_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192459,96.90173777416352,baseline,biak_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192459,6.994221361753531,spot_peer,biak_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192459,0.0484908263790937,relative_legacy,biak_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192459,6.222007288697848,peer,biak_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192472,90.72769710774584,baseline,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192472,1.8077769749381647,spot_peer,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192472,1.1488420181150796,peer,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192472,-0.0219199590884273,relative_legacy,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192472,92.5999418556223,spot_baseline,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192924,1.8077769749381647,spot_peer,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192924,1.518152663262302,peer,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192924,-0.0049999299136114,relative_legacy,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192924,49.03779362587257,baseline,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,192924,92.5999418556223,spot_baseline,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,193275,3.67429691385992,peer,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,193275,96.79063702901466,spot_baseline,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,193275,78.99677003211964,baseline,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,193275,4.803319535961975,spot_peer,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,193275,0.017316605110767,relative_legacy,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,195286,84.97661083483003,baseline,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,195286,2.137067182956717,peer,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,195286,94.11063109464314,spot_baseline,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,195286,-0.0053779146601742,relative_legacy,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,195286,2.887629773753001,spot_peer,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,204737,-0.052685675155026,relative_legacy,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,204737,-2.002194520231631,peer,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,204737,81.55754288625727,spot_baseline,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,204737,-6.085418478302551,spot_peer,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,204737,37.189418850341774,baseline,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,208405,96.07447955037864,baseline,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,208405,0.0360863954567971,relative_legacy,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,208405,6.060957073761992,spot_peer,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,208405,98.5500430304885,spot_baseline,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,208405,5.332008477023489,peer,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,215725,97.08536543404836,spot_baseline,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,215725,5.013993766535138,spot_peer,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,215725,93.01481583079396,baseline,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,215725,0.0213890300256295,relative_legacy,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,215725,4.23637844192224,peer,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,218666,92.90334786458564,spot_baseline,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,218666,-0.0189472435628804,relative_legacy,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,218666,1.376517283546521,peer,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,218666,91.43327428259896,baseline,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,218666,2.0246540264809862,spot_peer,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,218945,-0.0219199590884273,relative_legacy,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,218945,1.8077769749381647,spot_peer,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,218945,1.1381444149301505,peer,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,218945,92.5999418556223,spot_baseline,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,218945,90.27384604425076,baseline,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,219886,92.5999418556223,spot_baseline,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,219886,0.0,relative_legacy,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,219886,0.7087301234525861,peer,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,219886,15.634708816099591,baseline,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,219886,1.8077769749381647,spot_peer,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,220077,-9.662366645803717,spot_peer,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,220077,-0.1804394871230998,relative_legacy,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,220077,-10.313001601834772,peer,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,220077,75.66780203147322,baseline,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,221727,6.060957073761992,spot_peer,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,221727,0.0357445878666969,relative_legacy,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,221727,98.5500430304885,spot_baseline,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,221727,95.50439859821093,baseline,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,221727,5.299538228336348,peer,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,222142,0.1198226656011599,peer,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,222142,99.03118000369082,spot_baseline,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,222142,0.0012031581876245,relative_legacy,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,222142,6.404877645714019,spot_peer,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29417,"Will Kamala Harris be president before January 1, 2025?",2024-11-04 13:59:34.257985+00,222142,1.8526786336989696,baseline,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29544 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,182315,0.0658469141245412,relative_legacy,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,182315,84.22544342928965,baseline,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,182315,95.60566524124027,spot_baseline,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,182315,9.330571930361934,spot_peer,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,182315,7.468344196434259,peer,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,185690,44.42593411726396,baseline,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,185690,82.70060096389767,spot_baseline,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,185690,0.3078922927415989,peer,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,185690,0.0969111109710751,spot_peer,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,185690,-0.0158767059519212,relative_legacy,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,185698,13.750352374993504,spot_baseline,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,185698,-0.1630261016187913,relative_legacy,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,185698,14.073523010694895,baseline,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,185698,-49.23745834276443,spot_peer,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,185698,-10.78533052163874,peer,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,185699,5.7349377030557,peer,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,185699,92.5999418556223,spot_baseline,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,185699,0.0406941743608764,relative_legacy,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,185699,7.17995650813308,spot_peer,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,185699,84.48418763896012,baseline,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,187708,4.287768739698771,peer,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,187708,0.0377682643563209,relative_legacy,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,187708,93.80975610740931,spot_baseline,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,187708,8.04558679213557,spot_peer,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,187708,52.13353538021129,baseline,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,188107,53.67272603617271,baseline,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,188107,0.0401987385682888,relative_legacy,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,188107,8.260864881531317,spot_peer,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,188107,4.502449854102991,peer,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,188107,94.11063109464314,spot_baseline,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,189585,83.70701682643862,baseline,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,189585,0.7176403756296585,peer,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,189585,-0.0322808551177789,relative_legacy,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,189585,1.5988239899110763,spot_peer,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,189588,7.17995650813308,spot_peer,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,189588,6.267208749586317,peer,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,189588,91.22813970400084,baseline,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,189588,0.0444068181408706,relative_legacy,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,189869,-0.0300233757240828,relative_legacy,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,189869,1.5988239899110763,spot_peer,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,189869,0.6008278642583568,peer,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,189869,76.50611948872621,baseline,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,190710,90.56395777517152,baseline,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,190710,91.07326619029126,spot_baseline,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,190710,5.241868804244771,peer,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,190710,0.0297559851473732,relative_legacy,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,190710,6.087609738529265,spot_peer,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,190772,-14.10122392347388,peer,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,190772,-0.2270464397729163,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,190772,-17.221465743658428,spot_peer,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,190772,45.69656391561435,baseline,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,190772,58.496250072115615,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191026,-0.0961639374100641,relative_legacy,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191026,72.3587690242975,baseline,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191026,2.974124650307257,spot_peer,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191026,-4.130572764798214,peer,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191026,86.72182574040222,spot_baseline,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191046,2.853835886431454,peer,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191046,37.58727656190795,baseline,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191046,7.17995650813308,spot_peer,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191046,0.0245575852097107,relative_legacy,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191284,5.401842684237186,peer,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191284,7.17995650813308,spot_peer,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191284,0.0393674806787646,relative_legacy,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191284,78.70545238729915,baseline,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191471,-0.7209546786885243,spot_peer,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191471,55.362101627482936,baseline,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191471,81.55754288625727,spot_baseline,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191471,-0.0393687648155961,relative_legacy,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191471,-0.8863067283603565,peer,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191935,80.54065875634325,baseline,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191935,87.97057662822883,spot_baseline,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191935,3.867614360881428,spot_peer,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191935,-0.0015421545917039,relative_legacy,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,191935,2.69709110556606,peer,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192049,92.23008266748074,baseline,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192049,0.0846302977611402,relative_legacy,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192049,10.389307431491131,spot_peer,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192049,97.08536543404836,spot_baseline,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192049,9.050626432046032,peer,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192418,2.995408375436953,peer,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192418,3.867614360881428,spot_peer,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192418,87.41442358927937,baseline,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192418,87.97057662822883,spot_baseline,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192418,-0.0010747573621773,relative_legacy,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192459,99.85565831303312,spot_baseline,biak_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192459,0.1128943980901458,relative_legacy,biak_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192459,12.37147073305871,spot_peer,biak_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192459,96.92129244994268,baseline,biak_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192459,11.21258878270574,peer,biak_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192472,-5.171480592980324,peer,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192472,75.08734129085975,baseline,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192472,-0.1132798415082904,relative_legacy,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192472,-4.301399374212649,spot_peer,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192924,37.85116232537298,spot_baseline,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192924,-31.99316573237309,spot_peer,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192924,20.080560734010817,baseline,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192924,-17.161263753365134,peer,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,192924,-0.2594049029564947,relative_legacy,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,193275,88.90840985981492,spot_baseline,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,193275,4.538640384426548,spot_peer,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,193275,0.008800190215743,relative_legacy,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,193275,3.0842561999134226,peer,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,193275,73.41852784478542,baseline,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,195286,83.7964293005694,baseline,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,195286,5.691298615137895,peer,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,195286,7.17995650813308,spot_peer,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,195286,0.0403503421215905,relative_legacy,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,204737,-2.0732060752048778,peer,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,204737,-4.301399374212649,spot_peer,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,204737,-0.0451230526430448,relative_legacy,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,204737,35.06224448363314,baseline,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,208405,6.159554932422606,peer,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,208405,7.17995650813308,spot_peer,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,208405,0.0431543987938828,relative_legacy,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,208405,90.2740856178274,baseline,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,215725,-0.0323579623387167,relative_legacy,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,215725,81.29595264048383,baseline,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,215725,0.6276848598017307,peer,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,215725,84.79969065549501,spot_baseline,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,215725,1.5988239899110763,spot_peer,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,218666,-7.008309836055478,spot_peer,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,218666,-0.150899523769252,relative_legacy,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,218666,-7.88532471658229,peer,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,218666,71.75463813874744,baseline,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,218666,72.77026728372381,spot_baseline,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,218945,74.6579178993045,baseline,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,218945,-5.159533788730735,peer,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,218945,-4.301399374212649,spot_peer,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,218945,-0.1132798415082904,relative_legacy,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,219886,0.0119472015046817,relative_legacy,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,219886,1.3795553325320018,peer,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,219886,15.91338625781352,baseline,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,219886,94.26083361116632,spot_baseline,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,219886,8.368335798528545,spot_peer,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,220077,-0.3908511527636713,relative_legacy,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,220077,-25.27325073687101,peer,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,220077,47.99775654723302,baseline,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,220077,-24.343310542311496,spot_peer,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,220077,48.54268271702416,spot_baseline,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,221727,89.73608336815587,baseline,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,221727,7.17995650813308,spot_peer,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,221727,92.5999418556223,spot_baseline,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,221727,6.105038626087362,peer,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,221727,0.0424216562244713,relative_legacy,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,222142,0.0020771927610698,relative_legacy,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,222142,10.174043298720468,spot_peer,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,222142,96.78450995274476,spot_baseline,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,222142,0.2397731899347501,peer,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29418,Will Donald Trump Lose in New York State by under 6.0 points in the 2024 election?,2024-11-04 13:59:34.26172+00,222142,2.2809349249142388,baseline,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29545 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,182315,48.54268271702416,spot_baseline,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,182315,42.78969634453557,baseline,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,182315,-5.018354680930718,spot_peer,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,182315,-0.1223567499596514,relative_legacy,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,182315,-2.8130887177477915,peer,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,185690,1.8487377151041569,spot_peer,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,185690,-0.0643206562560835,relative_legacy,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,185690,28.84850059763714,baseline,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,185690,-1.4377001719710307,peer,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,185690,58.14958710013768,spot_baseline,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,185698,37.85116232537298,spot_baseline,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,185698,-0.0639556475950218,relative_legacy,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,185698,15.31152488977843,baseline,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,185698,-12.660739309283272,spot_peer,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,185698,-2.7078171554505697,peer,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,185699,0.230227390978481,relative_legacy,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,185699,23.47288006817259,peer,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,185699,81.41079656191052,baseline,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,185699,23.16502049091142,spot_peer,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,185699,87.97057662822883,spot_baseline,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,187708,62.48027652529473,spot_baseline,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,187708,0.0047810367414993,relative_legacy,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,187708,3.4410034443806583,peer,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,187708,35.05312319815462,baseline,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,187708,4.9443492914365486,spot_peer,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,188107,41.94680901499524,baseline,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,188107,7.654135642963211,peer,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,188107,0.0616483397615157,relative_legacy,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,188107,11.925397483482152,spot_peer,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,188107,72.2466024471091,spot_baseline,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,189585,11.147939186674073,peer,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,189585,0.0393917379282567,relative_legacy,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,189585,8.752070183473196,spot_peer,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,189585,67.00596427210952,baseline,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,189588,15.003984308293026,spot_peer,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,189588,0.1255704368797315,relative_legacy,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,189588,75.48230707970266,baseline,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,189588,17.35877252397166,peer,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,189869,15.003984308293026,spot_peer,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,189869,0.1244116453268234,relative_legacy,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,189869,15.35125486091945,peer,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,189869,69.04076971701465,baseline,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,190710,23.767254015285147,baseline,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,190710,-20.39316128546912,peer,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,190710,-0.3955749351812128,relative_legacy,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,190710,-22.648377614493523,spot_peer,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,190710,23.878685958711674,spot_baseline,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,190772,60.40713236688608,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,190772,4.039973863590232,peer,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,190772,-0.0095564315859984,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,190772,3.462449199757044,spot_peer,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,190772,47.21767841406752,baseline,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191026,10.61173669607976,spot_peer,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191026,7.249122988544715,peer,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191026,0.003557605071678,relative_legacy,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191026,59.14307123618107,baseline,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191026,70.40882120745263,spot_baseline,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191046,76.55347463629771,spot_baseline,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191046,6.502441455799022,peer,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191046,15.003984308293026,spot_peer,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191046,0.0606971199622876,relative_legacy,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191046,31.006518512503643,baseline,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191284,49.71877489443121,baseline,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191284,-0.0289225660115358,relative_legacy,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191284,2.09653519116116,spot_peer,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191284,3.3233672189687447,peer,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191284,58.496250072115615,spot_baseline,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191471,31.034012061215048,spot_baseline,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191471,-10.926295719867694,peer,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191471,-0.2072235755853453,relative_legacy,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191471,-17.53369305949579,spot_peer,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191471,21.08541532662917,baseline,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191935,-0.0062035096302948,relative_legacy,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191935,57.12495926070096,baseline,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191935,6.240019953258935,peer,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191935,4.810507611390305,spot_peer,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191935,62.29303509201767,spot_baseline,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191975,80.29514236647915,spot_baseline,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191975,17.678558447240658,spot_peer,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191975,0.1051052458753849,relative_legacy,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191975,10.646057509195424,peer,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,191975,45.216110423171294,baseline,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192049,15.003984308293026,spot_peer,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192049,16.523842748261988,peer,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192049,0.124569862834755,relative_legacy,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192049,72.84078292355392,baseline,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192418,52.60688116675877,spot_baseline,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192418,52.283075271091725,baseline,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192418,-2.113232993740158,spot_peer,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192418,0.3795465977666805,peer,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192418,-0.1100612610852799,relative_legacy,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192459,-182.678660072982,spot_peer,biak_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192459,-194.1661979191833,baseline,biak_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192459,-2.5601156785509445,relative_legacy,biak_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192459,-176.8967686196382,peer,biak_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192459,-200.0,spot_baseline,biak_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192472,8.406426478847456,spot_baseline,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192472,8.25277215433171,baseline,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192472,-31.0962507121726,peer,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192472,-33.708072932208275,spot_peer,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192472,-0.5436886581535373,relative_legacy,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192924,0.000402856989633,relative_legacy,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192924,32.75984701854976,baseline,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192924,2.9344783508216645,peer,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192924,4.363109946534866,spot_peer,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,192924,61.66713604484944,spot_baseline,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,193275,60.97549621724435,spot_baseline,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,193275,4.708529315148194,peer,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,193275,3.868720243927815,spot_peer,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,193275,-0.0062671100052632,relative_legacy,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,193275,50.94740282354155,baseline,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,195286,70.09747531751006,baseline,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,195286,15.003984308293026,spot_peer,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,195286,0.124569862834755,relative_legacy,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,195286,15.637290910871949,peer,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,204737,48.54268271702416,spot_baseline,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,204737,-0.0600098059718206,relative_legacy,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,204737,-5.018354680930718,spot_peer,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,204737,22.344494334182624,baseline,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,204737,-1.8083566603218015,peer,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,208405,0.2066625057480304,relative_legacy,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,208405,20.89844573553773,spot_peer,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,208405,83.40249912587332,baseline,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,208405,23.198686749345438,peer,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,215725,84.79969065549501,spot_baseline,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,215725,0.2036973633146036,relative_legacy,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,215725,20.89844573553773,spot_peer,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,215725,81.3705043308682,baseline,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,215725,22.46574746528009,peer,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,218666,17.395079306575287,peer,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,218666,75.61598309882417,baseline,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,218666,0.1257302309291534,relative_legacy,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,218666,15.003984308293026,spot_peer,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,218666,76.55347463629771,spot_baseline,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,218945,75.70232465074595,spot_baseline,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,218945,14.39557546392674,spot_peer,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,218945,0.1164879281948387,relative_legacy,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,218945,16.587098510020198,peer,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,218945,73.85653645396405,baseline,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,219886,11.111746688300563,baseline,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,219886,0.0061404608164641,relative_legacy,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,219886,1.355743777027322,peer,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,219886,7.3307975689890466,spot_peer,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,219886,65.81886279958614,spot_baseline,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,220077,42.22330006830476,spot_baseline,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,220077,-0.2134143990024282,relative_legacy,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,220077,41.76117553854802,baseline,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,220077,-7.155015607949692,peer,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,220077,-9.535500142577488,spot_peer,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,221727,74.23770687499028,baseline,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,221727,0.1246565808629904,relative_legacy,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,221727,17.074479182185964,peer,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,221727,15.003984308293026,spot_peer,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,222142,90.30913154527391,spot_baseline,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,222142,24.836638324100043,spot_peer,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,222142,1.9888261348128236,baseline,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,222142,0.0061285889055311,relative_legacy,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29419,"Will Oregon voters approve Measure 118, which would initiate a universal basic income in the state, funded by corporate tax?",2024-11-04 13:59:34.540358+00,222142,0.5469630208446946,peer,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29546 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,182315,4.147016304748641,spot_peer,RyansAGI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,182315,0.013091476767257,relative_legacy,RyansAGI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,182315,58.20831295815507,baseline,RyansAGI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,182315,2.851962262514834,peer,RyansAGI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,182315,65.99245584023782,spot_baseline,RyansAGI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,185690,70.97317594206913,spot_baseline,annabot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,185690,0.0496976365678564,relative_legacy,annabot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,185690,4.531907685889615,peer,annabot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,185690,7.714467470349343,spot_peer,annabot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,185690,39.14194672503344,baseline,annabot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,185698,11.711368053822437,spot_peer,RonanMcGovern,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,185698,30.453512324879487,baseline,RonanMcGovern,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,185698,0.0777000438737582,relative_legacy,RonanMcGovern,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,185698,6.192357257359329,peer,RonanMcGovern,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,185699,33.34237337251918,spot_baseline,MWG,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,185699,31.32233692977908,baseline,MWG,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,185699,-19.171071462070252,peer,MWG,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,185699,-0.2923667900225552,relative_legacy,MWG,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,185699,-19.238673389718542,spot_peer,MWG,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,187708,0.0047920793596621,relative_legacy,twsummerbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,187708,1.34782484262907,peer,twsummerbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,187708,36.92702485078446,baseline,twsummerbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,187708,3.490929444620572,spot_peer,twsummerbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,187708,65.07645591169023,spot_baseline,twsummerbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,188107,53.60529002402098,spot_baseline,Cassie,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,188107,-3.4160399642792503,peer,Cassie,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,188107,-0.0611583921446116,relative_legacy,Cassie,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,188107,-4.72531705791192,spot_peer,Cassie,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,188107,31.358649733974413,baseline,Cassie,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,189585,4.334182455418222,peer,mf-bot-1,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,189585,5.446823799457517,spot_peer,mf-bot-1,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,189585,0.031269584654989,relative_legacy,mf-bot-1,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,189585,67.0095368210738,baseline,mf-bot-1,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,189588,0.1172002838277033,relative_legacy,mf-bot-3,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,189588,75.4825367769532,baseline,mf-bot-3,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,189588,11.711368053822437,spot_peer,mf-bot-3,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,189588,10.57194548510974,peer,mf-bot-3,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,189869,-1.2221567180915107,spot_peer,VeritasAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,189869,52.67049120383672,baseline,VeritasAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,189869,-1.9540753791053396,peer,VeritasAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,189869,-0.0530284282724842,relative_legacy,VeritasAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,190710,54.59683691052925,spot_baseline,Bot_Pepa,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,190710,54.39025078613414,baseline,Bot_Pepa,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,190710,-5.1954392007610295,peer,Bot_Pepa,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,190710,-0.0996599528917489,relative_legacy,Bot_Pepa,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,190710,-4.0151195315098445,spot_peer,Bot_Pepa,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,190772,12.91995882935222,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,190772,9.376841023377407,peer,Jay_Bailey_Bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,190772,0.1079803349609289,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,190772,61.19740252283937,baseline,Jay_Bailey_Bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,190772,78.24085649273731,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191026,55.87654698507479,spot_baseline,manticAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191026,60.49185776695024,baseline,manticAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191026,0.0052684774455969,relative_legacy,manticAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191026,2.3318509536747327,peer,manticAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191026,-3.098524520400926,spot_peer,manticAI,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191046,0.0491491889792235,relative_legacy,archipelago,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191046,4.255199805763277,peer,archipelago,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191046,30.935919032173647,baseline,archipelago,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191046,11.711368053822437,spot_peer,archipelago,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191284,37.85116232537298,spot_baseline,000_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191284,-14.505951353657435,peer,000_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191284,32.17138954795099,baseline,000_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191284,-0.2263871415226314,relative_legacy,000_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191284,-16.00924389429441,spot_peer,000_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191471,-3.44483800173757,peer,HSeldon,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191471,37.13557899287312,baseline,HSeldon,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191471,-4.0151195315098445,spot_peer,HSeldon,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191471,-0.0653331091260345,relative_legacy,HSeldon,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191471,54.59683691052925,spot_baseline,HSeldon,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191935,58.496250072115615,spot_baseline,pgodzinai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191935,-0.0542470302637178,relative_legacy,pgodzinai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191935,-1.2221567180915107,spot_peer,pgodzinai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191935,53.723862618002464,baseline,pgodzinai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191935,-1.9951195242022108,peer,pgodzinai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191975,25.42923404580814,baseline,jkraybill_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191975,-0.0273233778742203,relative_legacy,jkraybill_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191975,-1.257467316122988,peer,jkraybill_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191975,-1.6824395875274645,spot_peer,jkraybill_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,191975,57.85362315617233,spot_baseline,jkraybill_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192049,64.65879200062903,baseline,gnosis-ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192049,5.446823799457517,spot_peer,gnosis-ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192049,4.239901656537791,peer,gnosis-ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192049,0.0314009881682808,relative_legacy,gnosis-ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192418,0.0670602193413029,relative_legacy,InstitutPelFutur,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192418,7.998393767129233,spot_peer,InstitutPelFutur,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192418,71.36958148433588,spot_baseline,InstitutPelFutur,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192418,70.94097727959873,baseline,InstitutPelFutur,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192418,6.955193323701578,peer,InstitutPelFutur,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192472,57.480004801364,baseline,bestworldbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192472,-0.0605096773110425,relative_legacy,bestworldbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192472,-1.2221567180915107,spot_peer,bestworldbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192472,-2.327959846502345,peer,bestworldbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192924,70.78192485066899,spot_baseline,acm_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192924,0.0341722778885884,relative_legacy,acm_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192924,7.57748347707354,spot_peer,acm_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192924,3.421587220018204,peer,acm_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,192924,37.68240047055433,baseline,acm_bot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,193275,0.0309110453961088,relative_legacy,histerio,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,193275,57.90707958800152,baseline,histerio,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,193275,5.575909804168803,spot_peer,histerio,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,193275,4.049935807537865,peer,histerio,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,193275,67.98741477466228,spot_baseline,histerio,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,195286,16.349873228287958,spot_baseline,Unwrapped80T,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,195286,-0.4402847894297427,relative_legacy,Unwrapped80T,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,195286,-31.409587074211498,spot_peer,Unwrapped80T,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,195286,-29.87847409095709,peer,Unwrapped80T,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,195286,14.982173454925922,baseline,Unwrapped80T,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,204737,-0.0171748239621347,relative_legacy,SynapseSeer,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,204737,0.1465167127439519,spot_peer,SynapseSeer,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,204737,-0.4750544136810321,peer,SynapseSeer,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,204737,27.94267020902213,baseline,SynapseSeer,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,204737,60.40713236688608,spot_baseline,SynapseSeer,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,208405,10.527058560567404,peer,mf-bot-4,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,208405,11.711368053822437,spot_peer,mf-bot-4,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,208405,75.25322523550284,baseline,mf-bot-4,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,208405,0.1167986555102794,relative_legacy,mf-bot-4,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,215725,17.617737483950464,spot_peer,estr.ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,215725,81.43518527912369,baseline,estr.ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,215725,0.1939931854451057,relative_legacy,estr.ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,215725,16.052059348382087,peer,estr.ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,215725,84.79969065549501,spot_baseline,estr.ai,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,218666,52.60688116675877,spot_baseline,GreeneiBot2,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,218666,-6.570972686542092,peer,GreeneiBot2,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,218666,-5.440429485184542,spot_peer,GreeneiBot2,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,218666,52.0438591251243,baseline,GreeneiBot2,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,218666,-0.1189594273143471,relative_legacy,GreeneiBot2,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,218945,63.517985983712656,baseline,SeidrBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,218945,2.3508882654025447,peer,SeidrBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,218945,0.0043287717281405,relative_legacy,SeidrBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,218945,3.490929444620572,spot_peer,SeidrBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,218945,65.07645591169023,spot_baseline,SeidrBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,219886,2.4177814301165257,spot_baseline,SaraBase,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,219886,0.4081798567943515,baseline,SaraBase,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,219886,-41.38847689505652,spot_peer,SaraBase,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,219886,-7.02981615636582,peer,SaraBase,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,219886,-0.1013279691397587,relative_legacy,SaraBase,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,220077,-5.440429485184542,spot_peer,mmBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,220077,-6.572493089919999,peer,mmBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,220077,-0.1189636339324829,relative_legacy,mmBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,220077,52.05497982773677,baseline,mmBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,220077,52.60688116675877,spot_baseline,mmBot,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,221727,0.1156273437410768,relative_legacy,mf-bot-5,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,221727,10.404076532020586,peer,mf-bot-5,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,221727,11.711368053822437,spot_peer,mf-bot-5,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29420,"Will Elon Musk be the richest person in the world on December 31, 2024, according to Forbes?",2024-11-04 13:59:34.544268+00,221727,74.23785404636844,baseline,mf-bot-5,True,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29547 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,182315,6.6153434100461,spot_peer,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,182315,3.3454793964383254,peer,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,182315,69.05967277711943,baseline,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,182315,78.24085649273731,spot_baseline,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,182315,-0.0051626408684319,relative_legacy,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,185690,0.0354761344942492,relative_legacy,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,185690,45.92205504694798,baseline,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,185690,14.784703505590976,spot_peer,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,185690,89.64656161894257,spot_baseline,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,185690,5.215271157563349,peer,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,185698,-7.526772137397612,spot_peer,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,185698,58.496250072115615,spot_baseline,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,185698,3.920785962598173,peer,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,185698,0.0239628107670833,relative_legacy,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,185698,30.94416813104724,baseline,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,185699,87.97057662822883,spot_baseline,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,185699,83.87808330266432,baseline,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,185699,13.584275758917816,spot_peer,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,185699,0.0843793677965272,relative_legacy,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,185699,10.361896104505716,peer,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,187708,75.53149040450981,spot_baseline,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,187708,1.1171601489779353,peer,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,187708,4.674754296047812,spot_peer,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,187708,-0.0229726153794288,relative_legacy,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,187708,43.41358653034367,baseline,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,188107,9.572292937453335,peer,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,188107,0.0939387244315607,relative_legacy,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,188107,18.87522251831546,spot_peer,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,188107,56.4559511880155,baseline,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,188107,95.3575662908648,spot_baseline,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,189585,11.313122064644377,spot_peer,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,189585,8.63881587557303,peer,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,189585,83.79528445761635,baseline,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,189585,0.0558795217094049,relative_legacy,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,189588,5.406752634516347,spot_peer,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,189588,2.731440380741126,peer,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,189588,-0.0254031884913243,relative_legacy,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,189588,75.48524683131554,baseline,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,189869,12.727205623329782,peer,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,189869,83.34263865442695,baseline,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,189869,16.90006826257286,spot_peer,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,189869,0.1229337556633453,relative_legacy,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,190710,91.07326619029126,spot_baseline,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,190710,90.800394447702,baseline,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,190710,15.806583631750698,spot_peer,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,190710,0.119060970849919,relative_legacy,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,190710,13.305216465154182,peer,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,190772,12.776735453495675,peer,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,190772,95.60566524124027,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,190772,19.052923909199865,spot_peer,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,190772,0.1299980486355626,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,190772,74.82160021685964,baseline,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191026,-4.0282993840685934,peer,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191026,62.35516069515543,baseline,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191026,75.82370281285864,spot_baseline,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191026,-0.1115011541032343,relative_legacy,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191026,4.884052043251828,spot_peer,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191046,11.313122064644377,spot_peer,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191046,34.289442687214816,baseline,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191046,3.6058241548680257,peer,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191046,84.79969065549501,spot_baseline,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191046,0.0172864376687093,relative_legacy,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191284,41.25842432887259,baseline,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191284,-14.656035524382604,spot_peer,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191284,-14.94670310469619,peer,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191284,-0.2571808551893612,relative_legacy,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191471,-16.027547726092084,peer,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191471,-20.736220526752405,spot_peer,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191471,27.273797384370084,baseline,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191471,-0.2659269144159398,relative_legacy,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191471,40.05379295837285,spot_baseline,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191935,86.54430442700489,baseline,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191935,94.11063109464314,spot_baseline,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191935,14.017062603555972,peer,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191935,17.98210258219339,spot_peer,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191935,0.1397692155884734,relative_legacy,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191975,0.0867378960531991,relative_legacy,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191975,8.887875003489802,peer,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191975,19.47816456419421,spot_peer,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191975,96.19936774202552,spot_baseline,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,191975,50.85531219906379,baseline,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192049,16.90006826257286,spot_peer,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192049,13.601388820663807,peer,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192049,88.55224208000261,baseline,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192049,0.128738531552163,relative_legacy,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192418,-0.4100371637499012,relative_legacy,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192418,37.62906372438758,baseline,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192418,-22.313859313600528,spot_peer,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192418,-25.21661693447616,peer,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192472,-25.153876699596427,spot_baseline,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192472,-69.78088489172455,peer,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192472,-1.0259520554232653,relative_legacy,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192472,-67.44134998020162,spot_peer,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192472,-24.74491975246616,baseline,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192924,-0.0447381357271663,relative_legacy,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192924,71.36958148433591,spot_baseline,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192924,1.6937783478231472,spot_peer,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192924,-0.5359943039126158,peer,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,192924,38.05303337245006,baseline,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,193275,2.697022474275763,spot_peer,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,193275,62.75924879692037,baseline,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,193275,72.77026728372381,spot_baseline,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,193275,-0.0513034208177642,relative_legacy,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,193275,-0.0442971335660808,peer,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,195286,-0.0214891124660345,relative_legacy,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,195286,5.406752634516347,spot_peer,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,195286,2.3509856950233807,peer,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,195286,70.21527412790907,baseline,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,204737,-0.1960551200593504,relative_legacy,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,204737,17.60387728866225,baseline,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,204737,-22.313859313600528,spot_peer,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,204737,37.85116232537298,spot_baseline,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,204737,-11.553993598076168,peer,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,208405,16.90006826257286,spot_peer,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,208405,0.1320837867294878,relative_legacy,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,208405,91.01901604235532,baseline,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,208405,14.132475321545678,peer,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,215725,2.535305579394179,peer,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,215725,5.406752634516347,spot_peer,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,215725,73.5767400813429,baseline,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,215725,-0.0247119589405785,relative_legacy,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,218666,92.5999418556223,spot_baseline,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,218666,0.1334071317226072,relative_legacy,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,218666,14.28407098085897,peer,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,218666,16.90006826257286,spot_peer,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,218666,91.75713893510054,baseline,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,218945,-3.783620480072856,peer,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,218945,-0.1143475337201113,relative_legacy,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,218945,67.44606515602588,spot_baseline,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,218945,-1.1164484090541626,spot_peer,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,218945,65.85982954809145,baseline,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,219886,-73.69655941662059,spot_baseline,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,219886,-0.2536853408333602,relative_legacy,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,219886,-17.33831387652885,peer,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,219886,-102.21014776439362,spot_peer,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,219886,-12.4430542868031,baseline,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,220077,-2.2558997678831845,peer,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,220077,68.89363436979534,baseline,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,220077,0.4258687800023212,spot_peer,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,220077,69.59938131099001,spot_baseline,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,220077,-0.0942820422305402,relative_legacy,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,221727,82.23391384123724,baseline,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,221727,11.313122064644377,spot_peer,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,221727,0.0545437111098839,relative_legacy,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,221727,84.79969065549501,spot_baseline,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29421,"Will there be a culturally significant development in aging research before January 1, 2025? -",2024-11-04 13:59:34.55057+00,221727,8.384883535866873,peer,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29548 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,182315,84.46188213831131,baseline,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,182315,2.2486004499051675,peer,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,182315,-0.006447798462917,relative_legacy,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,182315,95.60566524124027,spot_baseline,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,182315,2.1386711896308013,spot_peer,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,185690,-0.0028595762015124,relative_legacy,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,185690,94.41087991079549,spot_baseline,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,185690,1.283794200549828,spot_peer,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,185690,1.0223386816533062,peer,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,185690,50.481512194705424,baseline,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,185698,-11.493300114943786,spot_peer,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,185698,27.04473699584848,baseline,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,185698,-0.0661247061447943,relative_legacy,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,185698,-3.974543789551349,peer,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,185699,0.0064592878225486,relative_legacy,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,185699,97.08536543404836,spot_baseline,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,185699,3.6748001876833576,peer,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,185699,3.19740669076001,spot_peer,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,185699,94.18283914024528,baseline,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,187708,-1.8758702968295349,spot_peer,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,187708,-0.0328461724942815,relative_legacy,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,187708,89.99489861896717,spot_baseline,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,187708,-0.9524488545846742,peer,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,187708,52.224943779892826,baseline,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,188107,2.5376481406321334,peer,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,188107,3.984392508634525,spot_peer,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,188107,0.0146833483486549,relative_legacy,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,188107,98.18526532897408,spot_baseline,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,188107,58.689293977289125,baseline,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,189585,-0.11336880620912,relative_legacy,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,189585,-5.593076750820055,spot_peer,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,189585,83.80048775519134,baseline,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,189585,-4.96356122968996,peer,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,189588,0.0222034845260879,relative_legacy,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,189588,98.5500430304885,spot_baseline,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,189588,4.245393422529601,spot_peer,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,189588,4.862167591783556,peer,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,189588,97.1712421312251,baseline,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,189869,88.7723325481654,baseline,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,189869,0.0197161287786803,relative_legacy,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,189869,4.224973900470165,peer,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,189869,98.5500430304885,spot_baseline,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,189869,4.245393422529601,spot_peer,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,190710,96.19936774202552,spot_baseline,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,190710,3.2743815482375216,peer,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,190710,-6.878141712067466e-05,relative_legacy,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,190710,2.5634693465450487,spot_peer,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,190710,95.99946027746036,baseline,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,190772,3.599374562995939,peer,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,190772,98.5500430304885,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,190772,0.0180959774958611,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,190772,4.245393422529601,spot_peer,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,190772,77.18544058928072,baseline,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191026,-0.0119442325980381,spot_peer,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191026,82.45528290688225,baseline,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191026,-0.0724668915893045,relative_legacy,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191026,-2.2795882948406923,peer,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191046,-0.0119442325980381,spot_peer,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191046,-0.0107713683251649,relative_legacy,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191046,0.0953443131299288,peer,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191046,37.546437251551225,baseline,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191284,98.5500430304885,spot_baseline,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191284,3.943308338796853,peer,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191284,0.0190733133211095,relative_legacy,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191284,83.76139203877109,baseline,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191284,4.245393422529601,spot_peer,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191471,63.140979488708815,baseline,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191471,92.5999418556223,spot_baseline,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191471,-0.0119442325980381,spot_peer,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191471,-0.0224758855862706,relative_legacy,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191471,0.1845629370829202,peer,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191935,3.19740669076001,spot_peer,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191935,89.42388510464588,baseline,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191935,97.08536543404836,spot_baseline,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191935,0.0065225427924411,relative_legacy,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191935,3.3758750489528158,peer,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191975,29.89525246335802,baseline,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191975,5.179569992327592,spot_peer,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191975,99.85565831303312,spot_baseline,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191975,1.615995272849775,peer,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,191975,0.0136656684835254,relative_legacy,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192049,97.08536543404836,spot_baseline,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192049,3.19740669076001,spot_peer,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192049,0.0065225427924411,relative_legacy,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192049,3.5916928968807222,peer,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192049,93.00722491928649,baseline,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192418,-0.2295643515721542,relative_legacy,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192418,-13.951173528488926,spot_peer,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192418,72.70178850270197,baseline,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192418,73.11832415721999,spot_baseline,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192418,-13.421439147059813,peer,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192472,-11.493300114943786,spot_peer,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192472,75.40338594471832,baseline,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192472,-0.1945921095318188,relative_legacy,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192472,-10.850885826610392,peer,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192924,0.0135268214585858,relative_legacy,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192924,52.3983514394852,baseline,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192924,98.0634675133069,spot_baseline,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192924,3.897245347315245,spot_peer,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,192924,2.210234301646034,peer,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,193275,0.2387201375779284,peer,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,193275,92.44799923590224,spot_baseline,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,193275,-0.120660205207974,spot_peer,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,193275,80.6526786179435,baseline,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,193275,-0.0336211150991664,relative_legacy,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,195286,4.331229528693927,peer,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,195286,98.5500430304885,spot_baseline,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,195286,90.48593827579052,baseline,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,195286,4.245393422529601,spot_peer,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,195286,0.0199708095318492,relative_legacy,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,204737,-0.0119442325980381,spot_peer,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,204737,0.1041112812924712,peer,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,204737,-0.0126251740992193,relative_legacy,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,204737,92.5999418556223,spot_baseline,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,204737,43.25761838386844,baseline,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,208405,4.824515432307153,peer,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,208405,98.5500430304885,spot_baseline,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,208405,4.245393422529601,spot_peer,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,208405,0.0217215792598431,relative_legacy,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,208405,96.88639939721956,baseline,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,215725,4.639776064510006,peer,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,215725,94.8471792472879,baseline,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,215725,98.5500430304885,spot_baseline,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,215725,4.245393422529601,spot_peer,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,215725,0.0205540704111828,relative_legacy,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,218666,3.6178789888385423,spot_peer,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,218666,0.0143676845969862,relative_legacy,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,218666,97.67302206771528,spot_baseline,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,218666,96.94844075395508,baseline,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,218666,4.309296748535034,peer,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,218945,-10.790280687403667,peer,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,218945,-0.1932906455117408,relative_legacy,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,218945,74.7933565884731,baseline,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,218945,-11.493300114943786,spot_peer,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,219886,96.823086642078,spot_baseline,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,219886,3.009744440256854,spot_peer,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,219886,16.347771282338158,baseline,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,219886,0.5261470808834557,peer,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,219886,0.0024139776342503,relative_legacy,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,220077,-0.2813964330308307,relative_legacy,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,220077,-17.75132559276931,spot_peer,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,220077,-17.170401712916807,peer,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,220077,67.14209673523476,baseline,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,221727,4.69969034610858,peer,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,221727,95.56894464075592,baseline,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,221727,98.5500430304885,spot_baseline,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,221727,4.245393422529601,spot_peer,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,221727,0.0206581843710035,relative_legacy,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,222142,4.589650182724026,spot_peer,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,222142,5.7905236370188256,baseline,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,222142,0.2683647500486287,peer,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,222142,99.03118000369082,spot_baseline,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29422,"Will lab-grown complex vital organs be used successfully in humans before 2025? -",2024-11-04 13:59:34.55665+00,222142,0.0019171137687667,relative_legacy,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29549 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,182315,5.4197710904583976e-05,relative_legacy,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,182315,5.473748332833146,peer,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,182315,80.5171419977413,baseline,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,182315,91.07326619029126,spot_baseline,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,182315,2.8918703725942545,spot_peer,RyansAGI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,185690,7.74508748857501,spot_peer,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,185690,97.85617494757469,spot_baseline,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,185690,0.0331377030325306,relative_legacy,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,185690,51.228021954694086,baseline,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,185690,3.8666671763089857,peer,annabot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,185698,-0.0158829742260273,relative_legacy,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,185698,-0.3845332773756535,peer,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,185698,29.98058823778688,baseline,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,185698,84.79969065549501,spot_baseline,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,185698,-1.5969153760239378,spot_peer,RonanMcGovern,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,185699,7.193568065556119,spot_peer,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,185699,97.08536543404836,spot_baseline,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,185699,10.44264354647826,peer,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,185699,0.0569319443994387,relative_legacy,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,185699,95.8271228576952,baseline,MWG,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,187708,3.214463610634344,peer,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,187708,54.771238110733925,baseline,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,187708,0.0164884537993834,relative_legacy,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,187708,4.417939656128392,spot_peer,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,187708,93.20611713434243,spot_baseline,twsummerbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,188107,97.08536543404836,spot_baseline,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,188107,7.193568065556119,spot_peer,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,188107,0.039459673804657,relative_legacy,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,188107,5.02021581477728,peer,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,188107,58.201475930642026,baseline,Cassie,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,189585,-0.0643325593834591,relative_legacy,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,189585,83.80083351276392,baseline,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,189585,1.6698311714729857,peer,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,189585,-1.5969153760239378,spot_peer,mf-bot-1,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,189588,3.984217142198069,spot_peer,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,189588,91.31243928558662,baseline,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,189588,0.0125987389850501,relative_legacy,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,189588,7.228076864625487,peer,mf-bot-3,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,189869,0.0677846556581871,relative_legacy,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,189869,92.57924119846412,baseline,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,189869,10.836441607444364,peer,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,189869,98.5500430304885,spot_baseline,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,189869,8.24155479732572,spot_peer,VeritasAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,190710,-5.096430387707176,spot_peer,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,190710,-0.1124217418393641,relative_legacy,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,190710,79.90873060740036,spot_baseline,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,190710,79.81117152906793,baseline,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,190710,-1.8070309457026397,peer,Bot_Pepa,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,190772,77.24274041524346,baseline,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,190772,0.0592065342334314,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,190772,8.707117247106105,peer,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,190772,98.5500430304885,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,190772,8.24155479732572,spot_peer,Jay_Bailey_Bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191026,0.2156536937718698,spot_peer,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191026,87.33295680099991,spot_baseline,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191026,-0.097177929942687,relative_legacy,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191026,-1.160599305326345,peer,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191026,75.24746662785603,baseline,manticAI,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191046,34.22714722968601,baseline,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191046,-0.0178624570410504,relative_legacy,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191046,-0.4266358042475493,peer,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191046,-1.5969153760239378,spot_peer,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191046,84.79969065549501,spot_baseline,archipelago,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191284,72.2466024471091,spot_baseline,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191284,-10.578734936243787,spot_peer,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191284,-0.784272153332707,relative_legacy,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191284,-1.0813713568557262,baseline,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191284,-51.59747951993575,peer,000_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191471,0.2351290535056858,peer,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191471,57.87008904347414,baseline,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191471,84.79969065549501,spot_baseline,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191471,-0.040661357324954,relative_legacy,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191471,-1.5969153760239378,spot_peer,HSeldon,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191935,8.24155479732572,spot_peer,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191935,98.5500430304885,spot_baseline,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191935,0.0672871611111739,relative_legacy,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191935,10.641330380093228,peer,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191935,90.91409791438528,baseline,pgodzinai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191975,0.0444841754456904,relative_legacy,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191975,66.98418489584337,baseline,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191975,6.432450528781635,peer,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191975,7.298846816600813,spot_peer,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,191975,97.23250415571516,spot_baseline,jkraybill_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192049,7.193568065556119,spot_peer,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192049,97.08536543404836,spot_baseline,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192049,10.069354662592888,peer,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192049,0.0543205738751662,relative_legacy,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192049,93.14079376175928,baseline,gnosis-ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192418,-0.3641391775728678,relative_legacy,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192418,-20.081633612053672,peer,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192418,54.29453817585188,baseline,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192418,-23.207261614152877,spot_peer,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192418,54.59683691052925,spot_baseline,InstitutPelFutur,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192472,48.54268271702416,spot_baseline,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192472,-27.53904990824652,spot_peer,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192472,47.86755839647815,baseline,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192472,-24.227398662605136,peer,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192472,-0.4218600687082917,relative_legacy,bestworldbot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192924,-5.923940202608969,peer,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192924,-0.1036275007052951,relative_legacy,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192924,37.91458063489166,baseline,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192924,70.78192485066896,spot_baseline,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,192924,-11.626721668013396,spot_peer,acm_bot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,193275,83.83467365212307,spot_baseline,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,193275,-2.287391572235201,spot_peer,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,193275,-0.0629819859513279,relative_legacy,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,193275,73.97861716519404,baseline,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,193275,0.9150178117426316,peer,histerio,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,195286,0.0124790054474401,relative_legacy,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,195286,85.17072763228778,baseline,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,195286,6.662182238710807,peer,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,195286,3.984217142198069,spot_peer,Unwrapped80T,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,204737,1.2313658304910915,spot_peer,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,204737,88.75252707415875,spot_baseline,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,204737,0.8457482233371479,peer,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,204737,41.63276469201555,baseline,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,204737,-0.0044265801972718,relative_legacy,SynapseSeer,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,208405,95.45362523230663,baseline,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,208405,10.38309065915316,peer,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,208405,0.0564275132244809,relative_legacy,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,208405,7.193568065556119,spot_peer,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,208405,97.08536543404836,spot_baseline,mf-bot-4,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,215725,6.1348325644269215,spot_peer,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,215725,95.60566524124027,spot_baseline,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,215725,9.088141892885616,peer,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,215725,92.10098937483504,baseline,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,215725,0.0402441698708902,relative_legacy,estr.ai,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,218666,9.525340586859514,peer,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,218666,0.0436752745519512,relative_legacy,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,218666,95.07520233430054,baseline,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,218666,6.1348325644269215,spot_peer,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,218666,95.60566524124027,spot_baseline,GreeneiBot2,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,218945,-7.497138740147668,spot_peer,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,218945,-0.1444872589951392,relative_legacy,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,218945,74.82827389605563,baseline,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,218945,-4.211089664090532,peer,SeidrBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,219886,0.0142186148801868,relative_legacy,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,219886,1.3977189046542435,peer,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,219886,16.5946943441465,baseline,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,219886,98.30574396224404,spot_baseline,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,219886,8.066757160817803,spot_peer,SaraBase,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,220077,-12.472839572960838,spot_peer,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,220077,69.59938131099001,spot_baseline,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,220077,68.94429036063846,baseline,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,220077,-0.2145462808382701,relative_legacy,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,220077,-9.2216398768227,peer,mmBot,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,221727,-0.1432933538184316,relative_legacy,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,221727,-4.1912110321790585,peer,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,221727,74.24051195348562,baseline,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,221727,-7.497138740147668,spot_peer,mf-bot-5,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,222142,8.585811557520142,spot_peer,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,222142,99.03118000369082,spot_baseline,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,222142,6.904823850847527,baseline,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,222142,0.0049609560082556,relative_legacy,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29423,"Will ""slaughterbots"" kill at least 50 people outside a military conflict by 2025? - -",2024-11-04 13:59:34.562403+00,222142,0.578481588950549,peer,predictomatic,True,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,2024-11-05 15:30:00+00,29550 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,182315,76.55347463629771,spot_baseline,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,182315,66.93455518616,baseline,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,182315,-0.0250879365382892,relative_legacy,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,182315,7.86371131584144,spot_peer,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,182315,5.484729057580248,peer,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,185690,79.78960855170841,baseline,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,185690,0.0864217606296618,relative_legacy,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,185690,89.2196710465485,spot_baseline,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,185690,16.96841773232839,spot_peer,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,185690,13.80200080055679,peer,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,185698,24.25137711768809,baseline,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,185698,0.9079114481392516,peer,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,185698,-0.0184106911455994,relative_legacy,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,185698,7.86371131584144,spot_peer,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,185699,13.791250528873157,spot_peer,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,185699,7.382599197951743,peer,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,185699,44.85540831394594,baseline,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,185699,0.0388501838419071,relative_legacy,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,185699,84.79969065549501,spot_baseline,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,187708,-0.0316345020394808,relative_legacy,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,187708,33.703517890701626,baseline,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,187708,3.2483531001990595,spot_peer,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,187708,1.610862279500169,peer,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,187708,70.13272574129405,spot_baseline,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,188107,14.747051799013416,spot_peer,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,188107,45.71935637960471,baseline,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,188107,0.0459084283314847,relative_legacy,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,188107,7.9200056792272,peer,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,188107,86.1293729168408,spot_baseline,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,188909,-0.0620370582455646,relative_legacy,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,188909,57.470230589429946,baseline,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,188909,2.339079410153721,peer,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,188909,71.36958148433591,spot_baseline,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,188909,4.137428877583026,spot_peer,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,189585,-0.2475794217944635,peer,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,189585,1.5767134978408024,spot_peer,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,189585,66.88081335811819,baseline,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,189585,-0.1116955756538658,relative_legacy,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,189588,6.105731722354734,peer,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,189588,-0.0256315131181631,relative_legacy,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,189588,75.29928590635166,baseline,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,189588,7.86371131584144,spot_peer,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,189869,62.01865460588796,baseline,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,189869,7.86371131584144,spot_peer,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,189869,5.379842618928576,peer,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,189869,-0.0202938493604743,relative_legacy,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,190772,84.79969065549501,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,190772,0.0430180154496777,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,190772,13.791250528873157,spot_peer,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,190772,9.908957517379973,peer,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,190772,65.10654751494154,baseline,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,191026,63.81189261860641,spot_baseline,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,191026,-0.0221440283443004,relative_legacy,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,191026,-1.2951837300922078,spot_peer,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,191026,-0.5509125711379426,peer,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,191026,14.442766914468743,baseline,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,191046,10.869826250845383,spot_peer,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,191046,0.0225811739916386,relative_legacy,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,191046,4.314985200826771,peer,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,191046,31.762817289031403,baseline,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,191046,80.73549220576041,spot_baseline,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,191935,76.38237829166084,baseline,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,191935,12.695198195519833,peer,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,191935,16.07054455896838,spot_peer,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,191935,87.97057662822883,spot_baseline,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,191935,0.0740435500072156,relative_legacy,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192049,0.0875272726322153,relative_legacy,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192049,57.445382959880526,baseline,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192049,12.330265644504266,peer,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192049,19.398221623568407,spot_peer,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192418,-0.3582203595663579,relative_legacy,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192418,-16.813480679646748,spot_peer,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192418,-18.43611426938157,peer,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192418,40.81179473828749,baseline,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192418,42.22330006830476,spot_baseline,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192472,2.3476098283033537,peer,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192472,70.43225671523983,baseline,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192472,71.36958148433591,spot_baseline,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192472,4.137428877583026,spot_peer,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192472,-0.0765876861424101,relative_legacy,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192924,-190.6890595608519,spot_baseline,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192924,-117.4265902119275,peer,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192924,-121.03272157478992,baseline,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192924,-1.708581059132079,relative_legacy,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,192924,-184.23537960729084,spot_peer,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,193275,8.995206345298309,peer,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,193275,0.0307593648607041,relative_legacy,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,193275,62.91887631602764,baseline,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,193275,83.34973368598351,spot_baseline,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,193275,12.748993477398932,spot_peer,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,195286,70.11068924762276,baseline,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,195286,19.398221623568407,spot_peer,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,195286,0.1011996261419538,relative_legacy,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,195286,14.117781969456685,peer,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,204737,-0.0712305110565826,relative_legacy,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,204737,-2.1037737292066776,peer,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,204737,24.43601038444097,baseline,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,204737,-5.116170175685105,spot_peer,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,208405,81.60561770281755,baseline,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,208405,11.7286089512916,peer,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,208405,0.0525126182357054,relative_legacy,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,208405,13.791250528873157,spot_peer,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,215725,13.791250528873157,spot_peer,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,215725,77.17200903979627,baseline,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,215725,0.0482996914689219,relative_legacy,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,215725,11.090997007831106,peer,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,215725,84.79969065549501,spot_baseline,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,218666,84.478735007906,spot_baseline,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,218666,13.56054141546904,spot_peer,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,218666,12.649381452559968,peer,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,218666,0.0641044328571225,relative_legacy,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,218666,83.22227860347522,baseline,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,219459,-0.606603011564032,spot_peer,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,219459,15.20007367417278,baseline,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,219459,64.76982560691188,spot_baseline,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,219459,-0.0158423422870323,relative_legacy,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,219459,-0.090235722003723,peer,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,219886,-2.395107668914087,peer,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,219886,-0.0504516428437144,relative_legacy,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,219886,52.376266488328106,spot_baseline,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,219886,-9.515332481348544,spot_peer,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,219886,13.48833115218086,baseline,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,220077,-13.763151843438555,spot_peer,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,220077,46.46682670034443,spot_baseline,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,220077,45.69006754403675,baseline,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,220077,-15.724307783058924,peer,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,220077,-0.3214858563884186,relative_legacy,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,221727,73.14591522737882,baseline,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,221727,-0.0267351398525934,relative_legacy,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,221727,7.86371131584144,spot_peer,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29460,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-05 14:24:12.621214+00,221727,5.862867050060713,peer,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29588 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,182315,0.317036400084883,relative_legacy,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,182315,36.90536989467474,peer,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,182315,54.59683691052925,spot_baseline,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,182315,47.77878337238026,baseline,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,182315,43.90296045336861,spot_peer,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,185690,33.06941283685076,spot_peer,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,185690,39.50627995175776,spot_baseline,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,185690,0.363742113730583,relative_legacy,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,185690,41.179061088726016,peer,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,185690,53.70468625613774,baseline,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,185698,31.8811998593334,spot_peer,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,185698,37.85116232537298,spot_baseline,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,185698,-0.2192305812463333,relative_legacy,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,185698,-20.25675803320576,baseline,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,185698,-12.019675480036518,peer,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,185699,16.445372017711446,spot_peer,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,185699,8.8748077292167,baseline,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,185699,16.349873228287958,spot_baseline,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,185699,9.462813936088722,peer,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,185699,0.029003976412943,relative_legacy,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,187708,36.06452024602161,spot_baseline,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,187708,17.59903436274217,baseline,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,187708,0.1283452132754145,relative_legacy,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,187708,30.598565156505074,spot_peer,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,187708,15.61935632331348,peer,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,188107,38.3162771882733,spot_peer,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,188107,25.006334050670688,baseline,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,188107,21.05583685680086,peer,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,188107,0.1917338963445861,relative_legacy,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,188107,46.8148835738406,spot_baseline,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,188909,-1.1894714357508218,relative_legacy,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,188909,-74.55444665499094,peer,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,188909,-90.19378190462282,spot_peer,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,188909,-106.60097518010328,baseline,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,188909,-132.19280948873623,spot_baseline,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,189585,47.8809680320535,baseline,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,189585,0.2863108270758295,relative_legacy,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,189585,39.55666840382601,spot_peer,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,189585,38.22584962582908,peer,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,189588,-119.98942512284302,spot_peer,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,189588,-173.6965594166206,spot_baseline,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,189588,-1.8990704675628356,relative_legacy,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,189588,-122.54253813174849,peer,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,189588,-170.78920421104692,baseline,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,189869,23.59106227885996,spot_peer,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,189869,18.155503146124897,peer,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,189869,0.0878192564801998,relative_legacy,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,189869,21.309564421971498,baseline,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,190772,-0.0488558362788467,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,190772,6.458832100194011,baseline,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,190772,10.74275223804074,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,190772,7.483367883986347,peer,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,190772,8.406426478847456,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,191026,-0.022580211155178,relative_legacy,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,191026,5.440719892071999,spot_baseline,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,191026,-1.768497677076615,baseline,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,191026,8.613664251942444,spot_peer,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,191026,0.3246295229807605,peer,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,191046,-51.84851560540475,baseline,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,191046,-132.19280948873623,spot_baseline,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,191046,-0.541829501437665,relative_legacy,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,191046,-90.19378190462282,spot_peer,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,191046,-34.47127269927063,peer,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,191935,0.0259923382449111,relative_legacy,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,191935,20.07983014102154,spot_peer,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,191935,18.789090519000847,baseline,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,191935,21.412480535284736,spot_baseline,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,191935,15.816431077600535,peer,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192049,-132.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192049,-90.19378190462282,spot_peer,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192049,-82.21112902569793,baseline,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192049,-55.93241499452864,peer,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192049,-0.9001610648187742,relative_legacy,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192418,0.5331781674079445,relative_legacy,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192418,74.01857070992494,baseline,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192418,56.55974744659992,peer,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192418,59.665684185210885,spot_peer,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192459,99.85565831303312,spot_baseline,biak_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192459,76.39437863435928,spot_peer,biak_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192459,90.80855492765797,baseline,biak_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192459,0.727802305929079,relative_legacy,biak_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192459,68.21815786507943,peer,biak_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192472,38.22122316304948,peer,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192472,39.55666840382601,spot_peer,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192472,0.2862774542012846,relative_legacy,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192472,48.54268271702416,spot_baseline,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192472,47.94963363341752,baseline,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192924,-90.19378190462282,spot_peer,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192924,-0.9211008269970884,relative_legacy,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192924,-57.229291308555545,peer,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192924,-83.99312746484567,baseline,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,192924,-132.19280948873623,spot_baseline,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,193275,15.496970300168416,peer,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,193275,23.143240844796537,spot_baseline,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,193275,0.0620814311240821,relative_legacy,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,193275,21.322347185097662,spot_peer,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,193275,17.524561226416818,baseline,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,195286,39.55666840382601,spot_peer,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,195286,29.71353765112861,peer,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,195286,0.2586460464953405,relative_legacy,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,195286,37.14810710019132,baseline,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,204737,-0.3396582795661751,relative_legacy,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,204737,-19.39044237156647,peer,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,204737,-48.199181421991526,spot_peer,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,204737,-73.69655941662063,spot_baseline,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,204737,-30.979870300754403,baseline,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,208405,0.5319668365110195,relative_legacy,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,208405,56.21529212115976,peer,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,208405,73.66943155893028,baseline,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,208405,59.665684185210885,spot_peer,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,215725,-0.6485855906872772,relative_legacy,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,215725,-32.233575297025475,spot_peer,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,215725,-32.08337274163641,peer,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,215725,-46.888795788447744,baseline,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,218666,77.23079749584035,spot_baseline,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,218666,50.63469828282251,peer,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,218666,0.4509798750301553,relative_legacy,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,218666,65.98161173836212,baseline,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,218666,60.15193591671814,spot_peer,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,219459,-18.403538203771337,spot_peer,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,219459,-32.19280948873623,spot_baseline,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,219459,-3.8166282916621297,peer,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,219459,-0.0805953328789609,relative_legacy,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,219459,-7.555063445290689,baseline,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,219886,40.39955580838795,spot_peer,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,219886,0.1192358679538382,relative_legacy,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,219886,49.71678014462761,spot_baseline,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,219886,12.80067321738258,baseline,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,219886,10.952371582814594,peer,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,220077,-95.50630168047628,spot_peer,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,220077,-139.59286763311394,spot_baseline,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,220077,-97.97004922384508,peer,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,220077,-1.564900982999105,relative_legacy,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,220077,-137.35522565119652,baseline,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,221727,-20.230085871107185,peer,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,221727,-30.75982974579189,baseline,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,221727,-32.19280948873623,spot_baseline,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,221727,-18.403538203771337,spot_peer,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29461,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-05 14:24:12.630515+00,221727,-0.5087742593101522,relative_legacy,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29589 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,182315,37.85065813241051,spot_peer,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,182315,0.2627672261262674,relative_legacy,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,182315,33.84020399992849,peer,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,182315,75.66594379325876,baseline,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,182315,86.39384504239716,spot_baseline,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,185690,59.84604924701336,spot_baseline,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,185690,0.0762782774091733,relative_legacy,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,185690,18.791930833700075,spot_peer,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,185690,58.39500302901728,baseline,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,185690,20.938138537757386,peer,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,185698,-0.319134247719429,relative_legacy,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,185698,-18.457874131795094,peer,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,185698,-13.41999425538028,baseline,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,185698,-77.07863337039718,spot_peer,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,185698,-73.69655941662063,spot_baseline,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,185699,26.303440583379377,spot_baseline,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,185699,14.744485496576004,baseline,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,185699,-0.1588822557951382,relative_legacy,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,185699,-5.288389669545694,spot_peer,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,185699,-3.5917446479782287,peer,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,187708,0.0111572241723458,relative_legacy,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,187708,7.632208143256585,peer,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,187708,16.292609281274352,spot_peer,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,187708,28.363741354263023,baseline,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,187708,56.36462694840641,spot_baseline,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,188107,55.25410230287789,spot_baseline,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,188107,29.825538516189376,baseline,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,188107,7.779979063258981,peer,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,188107,15.495360931891415,spot_peer,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,188107,0.0055688550978662,relative_legacy,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,188909,-76.19812006073208,baseline,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,188909,-1.211533332088318,relative_legacy,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,188909,-91.89979217603832,spot_peer,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,188909,-74.87838837354,peer,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,188909,-94.34164716336323,spot_baseline,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,189585,57.69665945929682,baseline,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,189585,19.05700615611133,peer,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,189585,0.0175916347387854,relative_legacy,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,189585,17.82290671656889,spot_peer,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,189588,-1.857887483511276,relative_legacy,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,189588,-118.83797008276834,peer,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,189588,-119.07323385302848,spot_peer,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,189588,-130.01587219746892,baseline,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,189588,-132.19280948873623,spot_baseline,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,189869,39.32698263453558,baseline,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,189869,8.812750633482908,peer,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,189869,10.677216455420355,spot_peer,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,189869,-0.05748126172643,relative_legacy,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,190772,20.0024344322304,peer,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,190772,0.1055001416583577,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,190772,25.793871691382183,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,190772,54.00225743615639,baseline,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,190772,69.59938131099001,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,191026,29.648529241308484,spot_baseline,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,191026,5.42084845572763,baseline,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,191026,-1.909294048509563,peer,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,191026,-0.0642095928597584,relative_legacy,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,191026,-2.886942370008844,spot_peer,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,191046,19.8738931151018,spot_peer,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,191046,0.0307491673106703,relative_legacy,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,191046,7.392646048300575,peer,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,191046,24.10175734809789,baseline,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,191046,61.35316529179271,spot_baseline,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,191935,26.303440583379377,spot_baseline,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,191935,-0.2640546124960302,relative_legacy,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,191935,23.080913556679636,baseline,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,191935,-5.288389669545694,spot_peer,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,191935,-4.41522099839873,peer,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192049,24.507253548674488,spot_peer,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192049,0.073768464145997,relative_legacy,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192049,14.744865609955363,peer,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192049,42.29634549753354,baseline,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192418,74.04364668558875,baseline,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192418,30.78623223680523,spot_peer,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192418,31.227156627209517,peer,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192418,0.1912014706661063,relative_legacy,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192459,44.38733417589692,peer,biak_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192459,0.3932295758277688,relative_legacy,biak_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192459,47.51492668595362,spot_peer,biak_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192459,90.82730973200496,baseline,biak_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192459,99.85565831303312,spot_baseline,biak_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192472,19.054665293868556,peer,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192472,0.0175747489870401,relative_legacy,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192472,57.85349118356154,baseline,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192472,17.82290671656889,spot_peer,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192924,-0.1885207014062249,relative_legacy,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192924,-3.9805723645201754,peer,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192924,-5.288389669545694,spot_peer,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192924,26.303440583379377,spot_baseline,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,192924,16.738611866950038,baseline,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,193275,50.58909297299573,spot_baseline,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,193275,-0.0446488463320513,relative_legacy,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,193275,12.146339365301552,spot_peer,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,193275,9.134791838181268,peer,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,193275,39.04645222033996,baseline,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,195286,58.58277465493614,baseline,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,195286,30.78623223680523,spot_peer,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,195286,23.510994399610777,peer,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,195286,0.1565465734111632,relative_legacy,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,204737,67.80719051126377,spot_baseline,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,204737,24.507253548674488,spot_peer,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,204737,0.0567581627937771,relative_legacy,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,204737,9.692769225057429,peer,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,204737,28.38310527357978,baseline,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,208405,36.70621081308563,spot_peer,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,208405,0.2697070872549685,relative_legacy,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,208405,36.848139809059234,peer,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,208405,81.61570165744466,baseline,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,215725,-100.0,spot_baseline,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,215725,-91.25188206494958,baseline,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,215725,-88.27045051673288,peer,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,215725,-1.4287370444036602,relative_legacy,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,215725,-95.96193746691392,spot_peer,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,218666,0.1369634965686323,relative_legacy,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,218666,38.30491951224755,spot_peer,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,218666,27.0445371742768,peer,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,218666,87.02660703959828,spot_baseline,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,218666,68.845262687842,baseline,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,219459,30.25627700204313,spot_baseline,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,219459,-0.0483137077599,relative_legacy,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,219459,7.100705115128356,baseline,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,219459,-2.4506387714909743,spot_peer,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,219459,-0.7485830568562389,peer,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,219886,2.96872073693034,peer,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,219886,-0.0010068988589081,relative_legacy,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,219886,12.328523103695158,spot_peer,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,219886,13.092603480779944,baseline,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,219886,50.842865253185735,spot_baseline,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,220077,73.11832415721999,spot_baseline,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,220077,71.96685405836203,baseline,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,220077,29.640937033951303,peer,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,220077,28.320129336384376,spot_peer,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,220077,0.1615042239297339,relative_legacy,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,221727,-61.113027245431134,spot_peer,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,221727,-58.62018071722503,peer,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,221727,-1.0327811360515948,relative_legacy,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29462,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-05 14:24:12.637951+00,221727,-49.14404068341116,baseline,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,0.5283,2024-11-06 15:30:00+00,29590 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,182315,-0.8823217377536755,relative_legacy,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,182315,-59.50876385357122,peer,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,182315,-47.39311883324123,spot_baseline,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,182315,-41.54196636994355,baseline,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,182315,-68.58502894478444,spot_peer,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,185690,53.86374851706433,spot_baseline,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,185690,43.46863286071424,baseline,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,185690,-0.0452890560159583,relative_legacy,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,185690,1.5017243606841344,peer,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,185690,4.107522889847823,spot_peer,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,185698,-24.689981957232767,spot_peer,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,185698,13.750352374993504,spot_baseline,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,185698,2.401405413103128,baseline,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,185698,-10.17070199386219,peer,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,185698,-0.1613010703487504,relative_legacy,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,185699,5.658352836636751,spot_baseline,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,185699,3.259725454143884,baseline,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,185699,-16.957453761753943,peer,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,185699,-0.2724512462861143,relative_legacy,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,185699,-30.499248146090864,spot_peer,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,187708,49.978212014731184,spot_baseline,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,187708,-0.0123065572153114,relative_legacy,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,187708,1.1920562133177186,peer,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,187708,1.318086765737341,spot_peer,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,187708,25.459660295930615,baseline,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,188107,60.09040445901777,spot_baseline,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,188107,5.397843309096562,peer,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,188107,0.0399188636579221,relative_legacy,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,188107,33.296212926470794,baseline,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,188107,8.577654364989757,spot_peer,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,188909,8.805034101917025,spot_peer,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,188909,0.0550802761817017,relative_legacy,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,188909,8.324468038435612,peer,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,188909,49.125419167762345,baseline,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,188909,60.40713236688608,spot_baseline,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,189585,1.5757576456558409,peer,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,189585,0.287516784516346,spot_peer,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,189585,-0.0550460070934463,relative_legacy,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,189585,47.91403921875396,baseline,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,189588,66.67600585571992,baseline,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,189588,15.413795736785309,peer,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,189588,67.80719051126377,spot_baseline,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,189588,14.117553877770485,spot_peer,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,189588,0.1337906181621397,relative_legacy,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,189869,47.39146402989723,baseline,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,189869,0.0395990257722588,relative_legacy,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,189869,7.164543940769937,peer,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,189869,7.433207045664894,spot_peer,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,190772,42.40532033704067,baseline,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,190772,0.0094788963341586,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,190772,4.633808834058959,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,190772,4.651533992121304,peer,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,190772,54.59683691052925,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,191026,-0.0044634821558061,relative_legacy,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,191026,12.022063546917842,baseline,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,191026,54.44070774839415,spot_baseline,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,191026,0.6548140421256358,peer,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,191026,4.521723328074075,spot_peer,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,191046,19.056276406245782,baseline,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,191046,0.287516784516346,spot_peer,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,191046,-0.0151446966050284,relative_legacy,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,191046,48.54268271702416,spot_baseline,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,191046,0.4187118015619896,peer,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,191935,0.0954475174208398,relative_legacy,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,191935,11.564266939937385,peer,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,191935,11.495352336540456,spot_peer,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,191935,56.29498582988714,baseline,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,191935,64.15460290875237,spot_baseline,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192049,47.93992991618101,baseline,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192049,20.39653256590122,spot_peer,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192049,0.1469775113570783,relative_legacy,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192049,13.60913345429866,peer,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192418,8.805034101917025,spot_peer,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192418,0.0625599191277862,relative_legacy,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192418,60.40713236688608,spot_baseline,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192418,10.051431516657072,peer,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192418,58.4409785447936,baseline,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192472,-10.624822337187094,spot_peer,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192472,33.34237337251918,spot_baseline,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192472,-0.2049718393406608,relative_legacy,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192472,-9.447160607361212,peer,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192472,33.00500637641006,baseline,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192924,19.744606420621714,spot_baseline,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192924,-12.26585496038582,peer,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192924,-0.2125258199345889,relative_legacy,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192924,-20.386692369828125,spot_peer,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,192924,12.57708813648972,baseline,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,193275,-0.6040648639172314,spot_peer,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,193275,0.8023562467032812,peer,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,193275,47.3007567916174,spot_baseline,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,193275,37.63593323335334,baseline,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,193275,-0.0452912124692305,relative_legacy,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,195286,-0.036849909997797,relative_legacy,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,195286,37.14679994181909,baseline,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,195286,1.221966534732641,peer,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,195286,0.287516784516346,spot_peer,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,204737,14.40001494712126,peer,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,204737,40.0353150931821,baseline,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,204737,94.11063109464314,spot_baseline,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,204737,0.1754358139852157,relative_legacy,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,204737,33.0008579742872,spot_peer,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,208405,0.287516784516346,spot_peer,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,208405,1.476270578652611,peer,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,208405,-0.0549496880339028,relative_legacy,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,208405,47.08373631388899,baseline,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,215725,84.79969065549501,spot_baseline,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,215725,0.2854655034177626,relative_legacy,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,215725,77.49080772837331,baseline,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,215725,26.31651114218161,spot_peer,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,215725,25.727834590529017,peer,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,218666,0.0996760921742459,relative_legacy,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,218666,12.809869489854965,peer,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,218666,11.229443516354277,spot_peer,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,218666,63.78420603241049,spot_baseline,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,218666,62.6265147593634,baseline,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,218945,12.060006705206543,peer,SeidrBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,218945,0.089839048030921,relative_legacy,SeidrBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,218945,63.22682154995129,spot_baseline,SeidrBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,218945,10.829295838046084,spot_peer,SeidrBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,218945,61.3291875972992,baseline,SeidrBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,219459,70.78192485066899,spot_baseline,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,219459,0.0403682011398846,relative_legacy,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,219459,3.8894614188847614,peer,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,219459,16.253122909482396,spot_peer,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,219459,16.61172550877761,baseline,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,219886,0.0475521969142306,relative_legacy,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,219886,18.57545929322665,baseline,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,219886,4.538160731121379,peer,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,219886,17.226753765623606,spot_peer,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,219886,72.13814096855585,spot_baseline,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,220077,71.36958148433588,spot_baseline,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,220077,18.054154227461755,peer,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,220077,16.675003038916092,spot_peer,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,220077,70.26709672876223,baseline,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,220077,0.1695772692941858,relative_legacy,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,221727,-71.50272691633515,spot_peer,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,221727,-1.0070231380559411,relative_legacy,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,221727,-68.1502412847809,peer,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29463,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-05 14:24:12.646686+00,221727,-49.19780913186312,baseline,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29591 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,182315,-0.0157460275190743,relative_legacy,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,182315,0.9490128899553556,peer,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,182315,79.89330469915194,baseline,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,182315,0.692166308805268,spot_peer,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,182315,91.07326619029126,spot_baseline,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,185690,3.999360212396154,spot_peer,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,185690,85.60681055369754,baseline,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,185690,0.0210208261623307,relative_legacy,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,185690,95.68001180515768,spot_baseline,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,185690,3.69358490699994,peer,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,185698,0.290444512966903,peer,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,185698,92.5999418556223,spot_baseline,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,185698,-0.0045964476517145,relative_legacy,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,185698,1.788170489468035,spot_peer,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,185698,32.13385897152917,baseline,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,185699,59.58100065068675,baseline,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,185699,98.5500430304885,spot_baseline,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,185699,3.7281338942992095,peer,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,185699,6.0597626233516975,spot_peer,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,185699,0.034108477063398,relative_legacy,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,187708,-0.9738979583272428,spot_peer,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,187708,88.75252707415875,spot_baseline,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,187708,45.81534060562562,baseline,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,187708,-0.4880806100163424,peer,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,187708,-0.0206074857949824,relative_legacy,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,188107,3.4107325808522666,spot_peer,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,188107,94.86008474933556,spot_baseline,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,188107,0.0109206119822132,relative_legacy,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,188107,1.9670515640680752,peer,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,188107,53.65981568640567,baseline,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,188909,60.40713236688608,spot_baseline,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,188909,-21.323125896646552,spot_peer,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,188909,49.22896099397253,baseline,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,188909,-0.2647095843806085,relative_legacy,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,188909,-17.25672475932886,peer,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,189585,-0.0792105163986572,relative_legacy,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,189585,83.72958361468025,baseline,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,189585,-3.260128419887757,peer,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,189585,-3.81164885638195,spot_peer,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,189588,1.788170489468035,spot_peer,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,189588,91.146033410621,baseline,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,189588,-0.002345274087272,relative_legacy,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,189588,2.383771999950863,peer,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,189869,75.02172267327686,baseline,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,189869,1.788170489468035,spot_peer,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,189869,1.7353281854098732,peer,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,189869,-0.002353385615552,relative_legacy,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,190772,75.46898038063127,baseline,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,190772,4.139074220346457,peer,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,190772,0.0325139028295856,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,190772,5.008267007435535,spot_peer,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,190772,97.08536543404836,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,191026,20.401072267919897,baseline,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,191026,86.30490605161272,spot_baseline,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,191026,-0.420360519275864,peer,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,191026,-0.0116758138352427,relative_legacy,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,191026,-2.731051055286315,spot_peer,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,191046,0.0,relative_legacy,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,191046,36.57552610657631,baseline,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,191046,0.6964836306588593,peer,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,191046,1.788170489468035,spot_peer,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,191935,95.60566524124027,spot_baseline,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,191935,3.7979569374398823,peer,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,191935,3.945986632976672,spot_peer,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,191935,0.0237890911478158,relative_legacy,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,191935,83.15365592105435,baseline,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192049,1.3721172128953296,peer,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192049,-0.0018644125538778,relative_legacy,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192049,64.27871481011415,baseline,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192049,1.788170489468035,spot_peer,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192418,70.75512063206888,baseline,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192418,73.11832415721999,spot_baseline,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192418,-0.1907486264060611,relative_legacy,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192418,-11.468318585532929,peer,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192418,-12.197730333083202,spot_peer,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192472,1.788170489468035,spot_peer,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192472,91.75842752227996,baseline,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192472,2.4029190963448057,peer,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192472,-0.0021923362581325,relative_legacy,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192472,92.5999418556223,spot_baseline,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192924,-0.0181532028436114,relative_legacy,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192924,90.04643264490856,spot_baseline,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192924,57.440460819076414,baseline,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192924,-0.0449999958270546,spot_peer,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,192924,0.0445560781920217,peer,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,193275,0.0178836971822577,relative_legacy,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,193275,95.1587794814754,spot_baseline,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,193275,75.66060775022716,baseline,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,193275,3.1431761842812835,peer,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,193275,3.625166256977059,spot_peer,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,195286,1.5564054266770615,peer,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,195286,-0.0018644125538778,relative_legacy,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,195286,1.788170489468035,spot_peer,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,195286,70.20236378902979,baseline,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,204737,42.18103987903154,baseline,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,204737,6.0597626233516975,spot_peer,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,204737,0.0247208388527269,relative_legacy,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,204737,2.5894129077830272,peer,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,208405,1.788170489468035,spot_peer,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,208405,-0.0021284608506752,relative_legacy,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,208405,2.350209624248652,peer,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,208405,90.16853955032629,baseline,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,215725,98.5500430304885,spot_baseline,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,215725,0.0520794461542729,relative_legacy,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,215725,6.0597626233516975,spot_peer,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,215725,6.016812276976872,peer,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,215725,90.15574282748604,baseline,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,218666,95.64719440076271,baseline,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,218666,0.04902767272348,relative_legacy,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,218666,6.0597626233516975,spot_peer,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,218666,6.09383394836075,peer,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,218666,98.5500430304885,spot_baseline,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,218945,-9.06394605156984,peer,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,218945,74.2968947120341,baseline,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,218945,-9.73162743266235,spot_peer,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,218945,-0.1579635871361518,relative_legacy,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,219459,-0.0183065797910626,relative_legacy,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,219459,84.79969065549501,spot_baseline,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,219459,-0.893308877705226,peer,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,219459,19.90182448504881,baseline,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,219459,-3.81164885638195,spot_peer,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,219886,0.0055769686383855,relative_legacy,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,219886,3.343093919196852,spot_peer,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,219886,94.76586768282544,spot_baseline,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,219886,0.8579907882344499,peer,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,219886,24.40094048552763,baseline,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,220077,-9.209700041192034,peer,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,220077,75.41807619687172,baseline,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,220077,-9.73162743266235,spot_peer,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,220077,-0.16036219880246,relative_legacy,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,221727,92.5999418556223,spot_baseline,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,221727,1.788170489468035,spot_peer,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,221727,88.54348248479431,baseline,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,221727,-0.0023493275810881,relative_legacy,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29464,"Will Sadiq Khan cease to be mayor of London before January 1, 2025?",2024-11-05 14:24:12.651679+00,221727,2.252291578419167,peer,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29592 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,182315,7.199700164203306,peer,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,182315,67.22782707747383,baseline,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,182315,76.55347463629771,spot_baseline,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,182315,0.0551815345093382,relative_legacy,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,182315,7.264715542382083,spot_peer,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,185690,58.73649909364607,spot_baseline,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,185690,-2.7896910369159382,peer,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,185690,-5.496730366562215,spot_peer,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,185690,-0.0815858448791733,relative_legacy,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,185690,55.04993369150483,baseline,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,185698,-2.194959052586511,peer,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,185698,7.264715542382083,spot_peer,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,185698,-0.0469765799291544,relative_legacy,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,185698,19.74910173132212,baseline,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,185699,-17.324343624550785,spot_peer,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,185699,42.22330006830478,spot_baseline,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,185699,26.09384866645098,baseline,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,185699,-9.98300385447538,peer,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,185699,-0.1689572271816611,relative_legacy,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,187708,2.005765234125348,spot_baseline,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,187708,-23.48381606106198,peer,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,187708,1.0484966814689582,baseline,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,187708,-46.13023686657974,spot_peer,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,187708,-0.3529158984030656,relative_legacy,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,188107,3.14911662866178,peer,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,188107,72.2466024471091,spot_baseline,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,188107,4.179909350248359,spot_peer,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,188107,41.1810042344983,baseline,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,188107,0.0144552210988017,relative_legacy,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,188909,-32.19280948873623,spot_baseline,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,188909,-57.311786246356114,peer,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,188909,-70.62503736984385,spot_peer,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,188909,-26.274736480336077,baseline,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,188909,-0.8377945555563001,relative_legacy,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,189585,7.461605074041663,peer,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,189585,75.58762892073307,baseline,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,189585,7.264715542382083,spot_peer,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,189585,0.0592894024050725,relative_legacy,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,189588,-5.668809229531869,spot_peer,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,189588,-0.1182708954557528,relative_legacy,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,189588,-5.528345948864347,peer,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,189588,57.58231379346166,baseline,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,189869,62.02228534844777,baseline,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,189869,0.0488523863577469,relative_legacy,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,189869,7.264715542382083,spot_peer,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,189869,6.850216232219338,peer,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,190772,6.041821585525134,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,190772,58.72784698154175,baseline,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,190772,0.0340248691541232,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,190772,74.84612330040356,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,190772,5.647456190432727,peer,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191026,10.573543753450393,baseline,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191026,43.259285661489294,spot_baseline,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191026,-16.582316781767,spot_peer,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191026,-3.2469685403801565,peer,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191026,-0.0529631285871002,relative_legacy,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191046,30.14036399948338,baseline,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191046,0.0269373045961745,relative_legacy,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191046,7.264715542382083,spot_peer,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191046,3.3346003749076547,peer,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191935,-12.798072616516864,spot_peer,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191935,-0.1894015099201129,relative_legacy,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191935,42.27587721295845,baseline,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191935,-10.51941811497796,peer,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191935,48.54268271702416,spot_baseline,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191975,0.0137362398275886,relative_legacy,jkraybill_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191975,47.50168438521538,baseline,jkraybill_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191975,3.8872393859054295,spot_peer,jkraybill_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191975,71.83798937661747,spot_baseline,jkraybill_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,191975,3.377322476795202,peer,jkraybill_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192049,7.264715542382083,spot_peer,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192049,53.5479073471924,baseline,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192049,0.0455696729575725,relative_legacy,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192049,5.919384983364258,peer,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192418,79.90873060740036,spot_baseline,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192418,0.090925478518166,relative_legacy,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192418,77.34124180813345,baseline,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192418,9.6679246326897,spot_peer,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192418,9.826737873164864,peer,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192472,92.5999418556223,spot_baseline,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192472,18.7580311704386,spot_peer,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192472,0.2177295536099028,relative_legacy,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192472,91.86281798871144,baseline,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192472,19.09153830543921,peer,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192924,43.324273128040645,baseline,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192924,67.80719051126377,spot_baseline,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192924,-0.0116936216503516,relative_legacy,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192924,1.4266930096653754,peer,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,192924,1.0001712880171616,spot_peer,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,193275,58.94555842239205,baseline,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,193275,4.877730903790147,peer,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,193275,0.0218307744819507,relative_legacy,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,193275,4.928704897394301,spot_peer,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,193275,73.29203821082574,spot_baseline,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,195286,6.397542170609401,peer,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,195286,0.0465866476122656,relative_legacy,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,195286,58.10777395443829,baseline,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,195286,7.264715542382083,spot_peer,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,204737,8.603389188390482,peer,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,204737,92.5999418556223,spot_baseline,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,204737,18.7580311704386,spot_peer,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,204737,0.0975645276294435,relative_legacy,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,204737,39.7807197840667,baseline,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,208405,74.56540651285273,baseline,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,208405,7.497160757403891,peer,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,208405,7.264715542382083,spot_peer,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,208405,0.058871723909461,relative_legacy,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,215725,1.506130140187249,peer,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,215725,1.0001712880171616,spot_peer,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,215725,-0.0216266939246771,relative_legacy,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,215725,67.80719051126377,spot_baseline,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,215725,62.116569867333965,baseline,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,218666,-1.616002203692803,spot_peer,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,218666,61.36444367739252,baseline,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,218666,64.15460290875237,spot_baseline,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,218666,-2.4784074142704844,peer,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,218666,-0.0765728669993177,relative_legacy,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,218945,9.072341811958852,spot_peer,SeidrBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,218945,76.77913540557468,baseline,SeidrBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,218945,79.07720378619997,spot_baseline,SeidrBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,218945,9.250443685047554,peer,SeidrBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,218945,0.0829343882016355,relative_legacy,SeidrBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,219459,15.201208515082008,baseline,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,219459,-1.1753476624255248,spot_peer,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,219459,-0.0114404853005476,peer,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,219459,-0.0079542726111429,relative_legacy,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,219459,64.76982560691188,spot_baseline,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,219886,0.0602347155649884,relative_legacy,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,219886,23.66592040577208,baseline,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,219886,91.91493632876744,spot_baseline,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,219886,18.26739453251092,spot_peer,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,219886,4.99140359298885,peer,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,220077,73.78066535965165,baseline,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,220077,6.041821585525134,spot_peer,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,220077,74.84612330040356,spot_baseline,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,220077,6.246010287489378,peer,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,220077,0.0425924171193047,relative_legacy,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,221727,-0.1141657372758532,relative_legacy,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,221727,-5.152924764148494,peer,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,221727,-5.668809229531869,spot_peer,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,221727,55.93363181015067,baseline,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,222142,0.0465794805356396,peer,predictomatic,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,222142,23.364418913276644,spot_peer,predictomatic,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,222142,0.0005339793442254,relative_legacy,predictomatic,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,222142,99.03118000369084,spot_baseline,predictomatic,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29465,"Will US airline passenger volume for the Tuesday and Wednesday before Thanksgiving 2024 be up year over year, according to the TSA?",2024-11-05 14:24:12.959164+00,222142,0.1974293021591968,baseline,predictomatic,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29593 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,182315,0.0440133338145986,relative_legacy,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,182315,28.9566387529283,spot_peer,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,182315,24.080150947294907,peer,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,182315,89.53026213333065,spot_baseline,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,182315,78.69175169715729,baseline,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,185690,75.0028401419606,baseline,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,185690,-0.0117948063284483,relative_legacy,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,185690,73.43085900969068,spot_baseline,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,185690,20.528923989920724,peer,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,185690,17.425407672950975,spot_peer,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,185698,-173.6965594166206,spot_baseline,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,185698,-159.58012142567975,spot_peer,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,185698,-0.903540951814542,relative_legacy,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,185698,-61.21284557666793,baseline,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,185698,-55.63144206553858,peer,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,185699,31.155303259147743,spot_peer,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,185699,0.0557024896287432,relative_legacy,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,185699,92.5999418556223,spot_baseline,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,185699,59.50030163773294,baseline,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,185699,20.70658896364744,peer,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,187708,12.09763588201743,spot_peer,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,187708,6.994596081486239,peer,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,187708,65.99245584023782,spot_baseline,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,187708,34.981862416588555,baseline,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,187708,-0.0912339434663891,relative_legacy,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,188107,82.10298589546805,spot_baseline,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,188107,23.63683664996348,spot_peer,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,188107,-0.007005780688442,relative_legacy,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,188107,14.16922233854588,peer,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,188107,47.08996779444602,baseline,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,188909,19.66198763109124,spot_peer,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,188909,-0.0649691796110428,relative_legacy,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,188909,15.072549590275209,peer,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,188909,76.55347463629771,spot_baseline,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,188909,62.57392501990332,baseline,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,189585,-0.1485201505961129,relative_legacy,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,189585,66.95748784221179,baseline,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,189585,13.397443376726311,spot_peer,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,189585,11.79763637146378,peer,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,189588,13.533868842516233,baseline,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,189588,-27.111881066460697,peer,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,189588,-0.6805354688600246,relative_legacy,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,189588,-25.320879732219478,spot_peer,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,189588,13.750352374993504,spot_baseline,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,189869,75.02379505654332,baseline,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,189869,24.38630590009136,peer,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,189869,31.155303259147743,spot_peer,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,189869,0.0656193297215333,relative_legacy,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,190772,32.23733757876827,spot_peer,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,190772,94.11063109464314,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,190772,73.88993912820135,baseline,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,190772,24.63693599046333,peer,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,190772,0.0755261023436878,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,191026,83.67979686771119,spot_baseline,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,191026,4.844934047061899,peer,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,191026,24.766230798972668,spot_peer,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,191026,-0.0146606189666761,relative_legacy,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,191026,17.804530357222546,baseline,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,191046,84.79969065549501,spot_baseline,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,191046,25.568357061219253,spot_peer,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,191046,33.42442976781981,baseline,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,191046,0.0074322471340413,relative_legacy,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,191046,10.763071132598242,peer,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,191935,30.061818628325582,spot_peer,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,191935,0.0571529813229395,relative_legacy,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,191935,91.07326619029126,spot_baseline,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,191935,24.897542820508104,peer,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,191935,79.4347108075328,baseline,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192049,59.511713068794045,baseline,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192049,17.99269005810177,peer,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192049,25.568357061219253,spot_peer,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192049,0.0051686423737794,relative_legacy,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192418,46.99291354401753,baseline,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192418,-1.964495739647716,peer,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192418,-0.4008005278077089,spot_peer,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192418,-0.3363813565850777,relative_legacy,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192418,48.54268271702416,spot_baseline,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192459,0.1396075073978282,relative_legacy,biak_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192459,99.85565831303312,spot_baseline,biak_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192459,31.72857358761671,peer,biak_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192459,36.352225311391,spot_peer,biak_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192459,90.91279522484244,baseline,biak_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192472,26.376868807072004,peer,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192472,87.35671727868488,baseline,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192472,27.8395107554927,spot_peer,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192472,0.0505138901380529,relative_legacy,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192472,87.97057662822883,spot_baseline,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192924,-266.43441073716895,spot_peer,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192924,-322.8818690495883,spot_baseline,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192924,-206.50538880961344,baseline,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192924,-170.80460954769669,peer,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,192924,-2.601786946429518,relative_legacy,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,193275,-35.047737961517626,peer,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,193275,-7.027728806272858,baseline,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,193275,-8.926733809708741,spot_baseline,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,193275,-41.56339002953544,spot_peer,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,193275,-0.7572648454036462,relative_legacy,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,195286,31.155303259147743,spot_peer,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,195286,70.36183908306158,baseline,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,195286,23.1995463167726,peer,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,195286,0.0616922832301015,relative_legacy,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,204737,6.728462859177279,spot_peer,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,204737,3.539700687834419,peer,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,204737,-0.1052512519840875,relative_legacy,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,204737,25.28850315989864,baseline,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,208405,-106.79480696986072,spot_peer,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,208405,-107.06660261159504,peer,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,208405,-1.7777043090269038,relative_legacy,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,208405,-96.82526893494556,baseline,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,208405,-100.0,spot_baseline,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,215725,0.0036684956898612,relative_legacy,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,215725,21.96575063447636,peer,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,215725,77.77254734647083,baseline,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,215725,25.568357061219253,spot_peer,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,215725,84.79969065549501,spot_baseline,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,218666,89.53026213333065,spot_baseline,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,218666,0.0545575574758233,relative_legacy,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,218666,86.89425916377415,baseline,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,218666,26.637509630557336,peer,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,218666,28.9566387529283,spot_peer,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,218945,-0.1498866474813175,relative_legacy,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,218945,11.657268570374123,peer,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,218945,67.80719051126377,spot_baseline,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,218945,65.86615555483732,baseline,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,218945,13.397443376726311,spot_peer,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,219459,82.10298589546805,spot_baseline,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,219459,5.836649508554158,peer,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,219459,23.63683664996348,spot_peer,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,219459,-0.00145709410456,relative_legacy,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,219459,19.26955594168697,baseline,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,219886,0.0365046314539231,relative_legacy,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,219886,34.367997256384285,spot_peer,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,219886,97.08536543404836,spot_baseline,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,219886,9.205909858161323,peer,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,219886,24.99707282024889,baseline,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,220077,-4.9270715358416535,spot_peer,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,220077,41.64847543755321,baseline,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,220077,42.22330006830476,spot_baseline,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,220077,-0.4008012346929892,relative_legacy,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,220077,-6.665311128561232,peer,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,221727,81.08391328090566,baseline,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,221727,0.0102954227480973,relative_legacy,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,221727,84.79969065549501,spot_baseline,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,221727,25.568357061219253,spot_peer,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,221727,23.194479967397,peer,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,222142,0.0003377244215366,relative_legacy,predictomatic,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,222142,99.03118000369082,spot_baseline,predictomatic,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,222142,35.761691001985774,spot_peer,predictomatic,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,222142,0.2178647206221399,baseline,predictomatic,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29466,"Will Robinhood officially announce it is launching a stablecoin, before January 1, 2025?",2024-11-05 14:24:12.964696+00,222142,0.0786743207425434,peer,predictomatic,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29594 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,182315,0.2567629432443286,relative_legacy,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,182315,28.644795944625795,spot_peer,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,182315,86.69748464018657,baseline,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,182315,28.425565021714124,peer,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,182315,98.5500430304885,spot_baseline,RyansAGI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,185690,1.6562089429214115,peer,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,185690,50.66864453332834,baseline,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,185690,-2.01901943603022,spot_peer,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,185690,55.73855814235253,spot_baseline,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,185690,-0.1164123117316972,relative_legacy,annabot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,185698,98.5500430304885,spot_baseline,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,185698,10.49037591660457,peer,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,185698,34.754418866323114,baseline,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,185698,0.0876750407965937,relative_legacy,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,185698,28.644795944625795,spot_peer,RonanMcGovern,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,185699,-6.459384953968911,peer,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,185699,27.951984085084963,baseline,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,185699,-0.1937242468809109,relative_legacy,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,185699,42.22330006830478,spot_baseline,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,185699,-11.699351232215326,spot_peer,MWG,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,187708,10.54605339111954,baseline,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,187708,-0.2828118594186725,relative_legacy,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,187708,-14.06992796527924,peer,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,187708,-27.85985745147681,spot_peer,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,187708,19.66070440948177,spot_baseline,twsummerbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,188107,8.297135838664124,peer,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,188107,75.98659962762851,spot_baseline,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,188107,43.919234127770586,baseline,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,188107,0.0219777768619153,relative_legacy,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,188107,12.483682526928948,spot_peer,Cassie,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,188909,4.008990188642654,spot_peer,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,188909,64.15460290875237,spot_baseline,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,188909,52.58901265024301,baseline,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,188909,5.638129609959983,peer,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,188909,-0.0504629630091676,relative_legacy,silicoqr,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,189585,-136.6252536353694,spot_peer,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,189585,-132.39335033259283,peer,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,189585,-130.54609584030425,baseline,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,189585,-1.969354931014684,relative_legacy,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,189585,-132.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,189588,-14.83090401339932,spot_peer,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,189588,37.25243247364218,baseline,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,189588,-0.2903962828561381,relative_legacy,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,189588,-9.626242092607772,peer,mf-bot-3,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,189869,54.93764800978458,baseline,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,189869,6.625163680352622,spot_peer,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,189869,7.650626720890212,peer,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,189869,-0.0216287720816616,relative_legacy,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,190772,69.59938131099001,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,190772,8.299899881591607,peer,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,190772,-0.0093632565024962,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,190772,7.908824080203523,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,190772,54.68239622745317,baseline,Jay_Bailey_Bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,191026,0.6758781867423083,peer,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,191026,14.27837476064908,baseline,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,191026,3.3233649837106007,spot_peer,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,191026,-0.0263010838875569,relative_legacy,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,191026,63.19736282836789,spot_baseline,manticAI,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,191046,12.889707934717537,spot_peer,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,191046,5.562624794954374,peer,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,191046,0.0106756881454671,relative_legacy,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,191046,30.213652843151312,baseline,archipelago,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,191935,-0.219059505132893,relative_legacy,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,191935,38.74359824651033,baseline,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,191935,-6.115922137620179,peer,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,191935,-10.168459034417465,spot_peer,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,191935,44.36066514756148,spot_baseline,pgodzinai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192049,98.5500430304885,spot_baseline,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192049,69.54738123583245,baseline,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192049,0.1925963053701763,relative_legacy,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192049,28.644795944625795,spot_peer,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192049,21.86898944847759,peer,gnosis-ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192418,0.0345101536080177,relative_legacy,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192418,13.674906883085448,peer,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192418,9.176733648024337,spot_peer,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192418,69.109299192936,baseline,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192418,71.36958148433588,spot_baseline,InstitutPelFutur,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192459,30.654313009194624,peer,biak_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192459,29.579945615017326,spot_peer,biak_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192459,90.92824107826536,baseline,biak_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192459,99.85565831303312,spot_baseline,biak_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192459,0.2815464670943471,relative_legacy,biak_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192472,-14.83090401339932,spot_peer,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192472,-9.426608392334078,peer,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192472,-0.2901560735772895,relative_legacy,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192472,37.6184725257602,baseline,bestworldbot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192924,41.4553209287098,baseline,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192924,4.449644729909932,spot_peer,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192924,-0.0445193761756705,relative_legacy,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192924,4.111603958061237,peer,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,192924,64.76982560691188,spot_baseline,acm_bot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,193275,-0.2042144973150832,relative_legacy,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,193275,37.27924075447836,baseline,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,193275,-5.46851139809249,peer,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,193275,-9.411434891569922,spot_peer,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,193275,45.41758931858021,spot_baseline,histerio,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,195286,11.73477724896167,peer,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,195286,58.23062919355066,baseline,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,195286,0.0421709454289613,relative_legacy,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,195286,12.889707934717537,spot_peer,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,204737,6.191746808535745,peer,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,204737,33.24317114639128,baseline,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,204737,0.0134276929514605,relative_legacy,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,204737,12.889707934717537,spot_peer,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,208405,11.30853731840391,peer,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,208405,0.0005326170043834,relative_legacy,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,208405,6.625163680352622,spot_peer,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,208405,65.94163444298482,baseline,mf-bot-4,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,215725,-0.04381683719641,spot_peer,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,215725,-0.095070973210855,relative_legacy,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,215725,3.4832419322291788,peer,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,215725,53.74939921961445,baseline,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,215725,58.496250072115615,spot_baseline,estr.ai,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,218666,75.18921384043092,spot_baseline,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,218666,63.31277768399621,baseline,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,218666,11.91255329304057,spot_peer,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,218666,-0.0291073855527021,relative_legacy,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,218666,9.186988045642154,peer,GreeneiBot2,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,218945,-7.173080224181406,spot_peer,SeidrBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,218945,-2.36749366366686,peer,SeidrBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,218945,47.17232905341032,baseline,SeidrBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,218945,-0.1864992813376497,relative_legacy,SeidrBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,218945,48.54268271702416,spot_baseline,SeidrBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,219459,79.35491225325737,spot_baseline,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,219459,0.0158270482883822,relative_legacy,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,219459,18.624865407128656,baseline,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,219459,3.720495223768765,peer,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,219459,14.896243473284713,spot_peer,karamazov,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,219886,-0.0894419120190166,relative_legacy,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,219886,9.812662781646058,baseline,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,219886,-14.648245035916291,spot_peer,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,219886,38.106182842458736,spot_baseline,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,219886,-3.519757210857613,peer,SaraBase,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,220077,1.3248565936390626,spot_peer,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,220077,-0.0677670493459082,relative_legacy,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,220077,6.818163080676112,peer,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,220077,59.62232416801305,baseline,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,220077,60.40713236688608,spot_baseline,mmBot,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,221727,-14.83090401339932,spot_peer,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,221727,36.19316842803261,baseline,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,221727,-0.2887615296092253,relative_legacy,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,221727,-10.068561143971706,peer,mf-bot-5,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,222142,0.0005147098949157,relative_legacy,predictomatic,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,222142,27.22255168743378,spot_peer,predictomatic,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,222142,0.0655514199123777,peer,predictomatic,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,222142,0.2325252780802127,baseline,predictomatic,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29467,Will Nvidia earnings for Q3 2024 exceed $0.74 per share?,2024-11-05 14:24:12.969429+00,222142,96.56436747876228,spot_baseline,predictomatic,True,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29595 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,182315,12.213350554690518,spot_peer,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,182315,67.80719051126377,spot_baseline,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,182315,12.66674671319053,peer,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,182315,59.882993338770426,baseline,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,182315,-0.0174194571156063,relative_legacy,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,185690,47.32322028434578,baseline,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,185690,2.9369640090589564,peer,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,185690,1.0071494468813675,spot_peer,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,185690,-0.155735455922574,relative_legacy,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,185690,52.145282582243134,spot_baseline,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,185698,33.02858801974308,baseline,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,185698,34.210069569989415,spot_peer,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,185698,11.000954895785297,peer,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,185698,98.5500430304885,spot_baseline,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,185698,0.0789279444160012,relative_legacy,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,185699,12.213350554690518,spot_peer,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,185699,48.86948477407777,baseline,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,185699,10.091152443361551,peer,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,185699,67.80719051126377,spot_baseline,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,185699,-0.0085659556510492,relative_legacy,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,187708,-19.11073248722376,peer,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,187708,-34.4616131735577,spot_peer,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,187708,-0.3844093995174477,relative_legacy,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,187708,1.4778505102954538,baseline,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,187708,2.573756141360827,spot_baseline,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,188107,45.68340195179322,baseline,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,188107,11.914489795101632,peer,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,188107,18.47137603251603,spot_peer,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,188107,76.55347463629771,spot_baseline,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,188107,0.0423544962006007,relative_legacy,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,188389,27.534125276576773,spot_peer,Panshul42,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,188389,5.671369723685017,peer,Panshul42,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,188389,89.2196710465485,spot_baseline,Panshul42,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,188389,18.212044902452128,baseline,Panshul42,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,188389,0.0364533918392994,relative_legacy,Panshul42,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,188909,63.07693239202732,baseline,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,188909,17.24975459798671,spot_peer,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,188909,16.19553705073889,peer,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,188909,74.84612330040356,spot_baseline,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,188909,0.0419014893909444,relative_legacy,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,189585,1.61520722821506,peer,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,189585,47.96946385674398,baseline,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,189585,-1.5705351355828092,spot_peer,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,189585,-0.1860408852669465,relative_legacy,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,189588,75.39589684058396,baseline,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,189588,18.47137603251603,spot_peer,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,189588,21.718653370412717,peer,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,189588,0.0898314755895856,relative_legacy,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,189869,75.02864620261087,baseline,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,189869,25.888617155323484,peer,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,189869,29.95273191486177,spot_peer,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,189869,0.1834625879190947,relative_legacy,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,190772,87.97057662822883,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,190772,26.64038976761012,spot_peer,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,190772,22.523975426392276,peer,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,190772,0.1429685592308448,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,190772,69.27705740082844,baseline,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191026,17.127003930508952,baseline,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191026,73.51534837223474,spot_baseline,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191026,16.297576131488565,spot_peer,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191026,0.0050157693684745,relative_legacy,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191026,3.88069674079365,peer,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191046,84.79969065549501,spot_baseline,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191046,9.841789903210616,peer,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191046,33.34393214499291,baseline,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191046,24.371599396639755,spot_peer,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191046,0.0536462711775701,relative_legacy,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191471,62.29303509201767,spot_baseline,HSeldon,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191471,42.50298353412527,baseline,HSeldon,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191471,8.267935037766868,spot_peer,HSeldon,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191471,6.7707903152493705,peer,HSeldon,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191471,-0.0461894326003779,relative_legacy,HSeldon,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191935,27.7563553009485,spot_peer,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191935,0.1725755842061024,relative_legacy,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191935,89.53026213333065,spot_baseline,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191935,78.30525143730614,baseline,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,191935,26.240306411197704,peer,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192049,0.1182423694215521,relative_legacy,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192049,66.98838073922451,baseline,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192049,20.782445810438197,peer,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192049,24.371599396639755,spot_peer,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192418,-62.40375982433724,baseline,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192418,-82.37149918715777,spot_peer,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192418,-1.278955029110516,relative_legacy,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192418,-64.38561897747249,spot_baseline,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192418,-78.30795837683556,peer,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192472,21.412480535284764,spot_baseline,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192472,-17.997812557862822,peer,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192472,-20.98237838749914,spot_peer,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192472,21.351083609151413,baseline,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192472,-0.4541760377362469,relative_legacy,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192924,-0.1546022708817214,relative_legacy,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192924,45.06614090095651,spot_baseline,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192924,-1.6627960611116748,peer,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192924,-4.058024330840648,spot_peer,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,192924,28.94014687808885,baseline,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,193275,3.666671502050153,peer,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,193275,2.3361634440419303,spot_peer,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,193275,-0.1374295742396075,relative_legacy,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,193275,54.00272692575073,spot_baseline,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,193275,46.84119464859744,baseline,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,195286,-76.1869986700239,baseline,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,195286,-107.85382981234751,spot_peer,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,195286,-81.4729118664268,peer,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,195286,-100.0,spot_baseline,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,195286,-1.28993562871612,relative_legacy,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,204737,14.762265402728858,spot_peer,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,204737,31.648131858960383,baseline,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,204737,71.36958148433591,spot_baseline,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,204737,6.92758871790513,peer,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,204737,0.0026274392377249,relative_legacy,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,208405,0.0032276561781314,relative_legacy,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,208405,15.356626006808764,peer,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,208405,66.54686374915539,baseline,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,208405,12.213350554690518,spot_peer,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,215725,78.32579596588378,baseline,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,215725,0.1433528455153363,relative_legacy,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,215725,84.79969065549501,spot_baseline,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,215725,24.371599396639755,spot_peer,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,215725,25.05483306557648,peer,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,218666,-0.0293892589288424,relative_legacy,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,218666,65.26012175965195,spot_baseline,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,218666,63.66184930574009,baseline,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,218666,13.075559836277376,peer,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,218666,10.390905626822558,spot_peer,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,218945,-16.369073340984734,baseline,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,218945,-44.88746513706007,peer,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,218945,-0.8207533835466047,relative_legacy,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,218945,-48.33245027129009,spot_peer,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,218945,-16.81227588083271,spot_baseline,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,219459,16.614543138968955,baseline,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,219459,70.78192485066896,spot_baseline,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,219459,14.341793104650325,spot_peer,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,219459,3.4529520795147435,peer,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,219459,-0.001352336943225,relative_legacy,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,219886,-0.2585616501133635,relative_legacy,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,219886,-7.562865006036644,baseline,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,219886,-57.31848751957162,spot_peer,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,219886,-14.644441837559103,peer,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,219886,-29.37125877569262,spot_baseline,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,220077,-8.829035206656632,baseline,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,220077,-39.94091148686523,peer,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,220077,-8.926733809708741,spot_baseline,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,220077,-0.7541936956052034,relative_legacy,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,220077,-42.69029155770413,spot_peer,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,221727,20.740498170605417,peer,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,221727,73.24680581583397,baseline,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,221727,18.47137603251603,spot_peer,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,221727,0.0764470309991833,relative_legacy,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,222142,3.7229168016585272,spot_peer,predictomatic,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,222142,55.94086842422125,spot_baseline,predictomatic,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,222142,0.1593282032323219,baseline,predictomatic,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,222142,-0.0004226961291633,relative_legacy,predictomatic,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29471,"Will Noodles & Co. file for bankruptcy before January 1, 2025?",2024-11-05 14:24:13.298784+00,222142,0.0106034400519754,peer,predictomatic,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29599 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,182315,-104.69159640595372,baseline,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,182315,-118.44245711374276,spot_baseline,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,182315,-61.88470506671951,spot_peer,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,182315,-1.0829178935157189,relative_legacy,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,182315,-53.29989322524264,peer,RyansAGI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,185690,-11.729821558155637,baseline,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,185690,3.0806584351624897,spot_peer,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,185690,-27.47387311749092,spot_baseline,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,185690,14.858840814296912,peer,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,185690,-0.1505647344170023,relative_legacy,annabot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,185698,29.98391652555641,baseline,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,185698,28.41708924132558,peer,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,185698,84.79969065549501,spot_baseline,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,185698,83.26100819705708,spot_peer,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,185698,0.2979550864256701,relative_legacy,RonanMcGovern,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,185699,71.76506336143932,baseline,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,185699,73.11832415721999,spot_baseline,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,185699,75.59692810930206,peer,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,185699,0.65293378519525,relative_legacy,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,185699,74.91874114813379,spot_peer,MWG,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,187708,11.81581983454621,peer,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,187708,-1.8822479386659927,baseline,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,187708,-3.209362970985334,spot_baseline,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,187708,-0.0132319116673007,relative_legacy,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,187708,20.40919816408461,spot_peer,twsummerbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,188107,-9.254186254465909,spot_peer,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,188107,-0.2623270444047094,relative_legacy,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,188107,-5.729740464529195,peer,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,188107,-26.83000621698606,baseline,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,188107,-44.74589769712211,spot_baseline,Cassie,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,188389,21.110864252922685,peer,Panshul42,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,188389,0.2264144190851444,relative_legacy,Panshul42,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,188389,91.07326619029126,spot_baseline,Panshul42,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,188389,23.04863989847785,baseline,Panshul42,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,188389,87.74129245751502,spot_peer,Panshul42,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,188909,-5.889368905356857,spot_baseline,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,188909,18.495267529297315,spot_peer,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,188909,-0.0722614820744354,relative_legacy,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,188909,-4.9708717657462245,baseline,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,188909,17.07502319247491,peer,silicoqr,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,189585,-0.2893777161404152,spot_peer,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,189585,-31.81675011138811,baseline,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,189585,0.447064610509859,peer,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,189585,-0.3818969049553364,relative_legacy,mf-bot-1,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,189588,-0.2893777161404152,spot_peer,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,189588,-31.70523264706229,baseline,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,189588,-0.3806858847103652,relative_legacy,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,189588,0.5498881468540201,peer,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,189588,-32.19280948873623,spot_baseline,mf-bot-3,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,189869,41.48581524045832,spot_peer,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,189869,34.80998549063038,peer,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,189869,0.1885826895576004,relative_legacy,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,189869,21.312520649819835,baseline,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,190772,0.1101512352142494,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,190772,12.883263757371404,baseline,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,190772,34.37745878422697,spot_peer,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,190772,16.349873228287958,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,190772,28.032024033768668,peer,Jay_Bailey_Bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191026,-50.92715171085507,spot_baseline,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191026,-0.1142325871882268,relative_legacy,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191026,-3.902919312778392,peer,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191026,-11.432132291982846,baseline,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191026,-13.668538949195929,spot_peer,manticAI,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191046,41.48581524045832,spot_peer,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191046,15.416512077922825,peer,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191046,0.1029089665193976,relative_legacy,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191046,10.351116535092869,baseline,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191046,26.303440583379377,spot_baseline,archipelago,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191471,-64.38561897747249,spot_baseline,HSeldon,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191471,-15.744719437518016,peer,HSeldon,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191471,-43.97166519897085,baseline,HSeldon,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191471,-0.4387343698695542,relative_legacy,HSeldon,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191471,-23.27992542730145,spot_peer,HSeldon,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191935,60.40713236688608,spot_baseline,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191935,52.915561213762295,baseline,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191935,0.492277630468916,relative_legacy,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191935,65.84102267737903,spot_peer,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191935,59.99591179607941,peer,pgodzinai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191975,90.25238486273798,spot_baseline,jkraybill_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191975,0.8019017474801395,relative_legacy,jkraybill_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191975,86.28511673398297,peer,jkraybill_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191975,87.1550587107239,spot_peer,jkraybill_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,191975,86.79974732324617,baseline,jkraybill_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192049,33.87223226922826,peer,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192049,0.1885826895576004,relative_legacy,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192049,41.48581524045832,spot_peer,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192049,20.832822213748717,baseline,gnosis-ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192418,-168.3834522087294,baseline,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192418,-101.34451287492432,spot_peer,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192418,-98.42926895418027,peer,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192418,-1.7474620514380546,relative_legacy,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192459,-617.591785599993,spot_peer,biak_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192459,-566.602965992281,peer,biak_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192459,-896.5784284662086,spot_baseline,biak_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192459,-817.3371954544183,baseline,biak_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192459,-8.208661894323122,relative_legacy,biak_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192472,37.99292809811542,spot_peer,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192472,38.96918579440021,peer,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192472,21.412480535284764,spot_baseline,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192472,21.368824874812866,baseline,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192472,0.1481937047986792,relative_legacy,bestworldbot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192924,21.062082167530136,peer,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192924,0.0905722854480349,relative_legacy,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192924,13.750352374993504,spot_baseline,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192924,32.52100670213284,spot_peer,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,192924,8.845783258162259,baseline,acm_bot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,193275,57.220715115005525,spot_peer,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,193275,0.387629879938792,relative_legacy,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,193275,52.65362034888086,peer,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,193275,42.38774402318316,baseline,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,193275,48.33643607133495,spot_baseline,histerio,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,195286,-14.047157562303376,spot_peer,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,195286,-39.25908038972167,baseline,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,195286,-51.45731728297583,spot_baseline,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,195286,-0.4046887838565249,relative_legacy,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,195286,-10.161394193230088,peer,Unwrapped80T,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,204737,-100.0,spot_baseline,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,204737,-48.71399406267076,spot_peer,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,204737,-0.4446856188109481,relative_legacy,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,204737,-22.473882492895797,peer,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,204737,-44.57597556820623,baseline,SynapseSeer,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,208405,71.72386793522001,peer,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,208405,66.43499915196935,baseline,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,208405,0.5996473415161852,relative_legacy,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,208405,71.12578634155092,spot_peer,mf-bot-4,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,215725,68.77388339332374,peer,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,215725,71.12578634155092,spot_peer,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,215725,62.80164737050559,baseline,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,215725,67.80719051126377,spot_baseline,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,215725,0.5828527364722582,relative_legacy,estr.ai,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,218666,22.93137972791016,peer,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,218666,20.619678938064023,spot_peer,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,218666,-0.0726403871273194,relative_legacy,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,218666,-0.8614948119484462,baseline,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,218666,-2.914634565951651,spot_baseline,GreeneiBot2,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,218945,-100.0,spot_baseline,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,218945,-48.71399406267076,spot_peer,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,218945,-1.0451476371862949,relative_legacy,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,218945,-98.10681350771102,baseline,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,218945,-47.57203083094345,peer,SeidrBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,219459,0.0,baseline,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,219459,4.301620783624046,peer,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,219459,-0.0001680246569444,relative_legacy,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,219459,22.70116999502057,spot_peer,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,219459,0.0,spot_baseline,karamazov,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,219886,59.45485495503542,spot_baseline,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,219886,0.1484288214840168,relative_legacy,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,219886,15.311263016560076,baseline,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,219886,65.16095220142154,spot_peer,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,219886,15.67329950309946,peer,SaraBase,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,220077,29.593948047522996,peer,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,220077,8.319402560190884,baseline,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,220077,8.406426478847456,spot_baseline,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,220077,0.0193491483774008,relative_legacy,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,220077,28.704633256278687,spot_peer,mmBot,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,221727,71.12578634155092,spot_peer,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,221727,0.5828633354958161,relative_legacy,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,221727,64.88194675415197,baseline,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,221727,70.3736828356596,peer,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,221727,67.80719051126377,spot_baseline,mf-bot-5,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,222142,-0.4230562374171475,peer,predictomatic,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,222142,-138.95803986312043,spot_peer,predictomatic,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,222142,-0.6891669415994971,baseline,predictomatic,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,222142,-0.0068029336843933,relative_legacy,predictomatic,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29472,"Will the USDA-posted recall of Hickory Hollow's ready-to-eat jerky products be closed before December 1, 2024?",2024-11-05 14:24:13.30322+00,222142,-226.36538330647505,spot_baseline,predictomatic,True,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,2024-11-06 15:30:00+00,29600 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,182315,12.898780111561948,peer,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,182315,65.99245584023782,spot_baseline,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,182315,10.857376379837074,spot_peer,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,182315,-0.1142771651767026,relative_legacy,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,182315,57.82971885078611,baseline,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,185690,-0.0074758981046546,relative_legacy,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,185690,6.071195210106274,baseline,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,185690,67.26516293283845,spot_baseline,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,185690,1.0966880564989483,peer,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,185690,11.771055903213076,spot_peer,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,185698,32.1450800461778,baseline,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,185698,10.503468872623795,peer,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,185698,84.79969065549501,spot_baseline,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,185698,0.0515242200750825,relative_legacy,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,185698,24.359136087101582,spot_peer,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,185699,32.1167715764602,spot_peer,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,185699,81.56009119071159,baseline,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,185699,30.65973748196341,peer,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,185699,95.60566524124027,spot_baseline,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,185699,0.1427166672191364,relative_legacy,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,187708,33.196810801523014,baseline,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,187708,-0.0834790881263654,relative_legacy,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,187708,62.48027652529473,spot_baseline,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,187708,8.335974290428508,spot_peer,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,187708,4.950586016044465,peer,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,188107,18.523515813289308,peer,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,188107,32.1167715764602,spot_peer,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,188107,0.0952749681523296,relative_legacy,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,188107,95.60566524124027,spot_baseline,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,188107,53.23290510683472,baseline,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,189585,-72.69144270736844,baseline,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,189585,-73.69655941662059,spot_baseline,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,189585,-89.4257080963812,spot_peer,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,189585,-84.00172292900619,peer,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,189585,-1.478424556498611,relative_legacy,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,189588,-1.2568020622787628,relative_legacy,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,189588,-73.46010197141518,spot_peer,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,189588,-50.60099514300716,baseline,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,189588,-67.61893311406313,peer,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,189869,55.64226737484779,baseline,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,189869,17.118239517963648,peer,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,189869,24.359136087101582,spot_peer,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,189869,0.0373638480569112,relative_legacy,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,190772,21.412480535284764,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,190772,-21.146696533368143,spot_peer,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,190772,-0.4440128212089007,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,190772,16.72912109212973,baseline,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,190772,-14.529311442278312,peer,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191026,-0.0867361949682714,relative_legacy,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191026,-16.462249067233017,spot_peer,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191026,5.247205817063892,baseline,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191026,27.937667280234574,spot_baseline,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191026,-2.9538335928352786,peer,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191046,-17.635464395529745,spot_peer,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191046,-0.1905768074533997,relative_legacy,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191046,26.303440583379377,spot_baseline,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191046,10.110050430085437,baseline,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191046,-6.512086820477483,peer,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191471,79.90873060740036,spot_baseline,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191471,20.847903949263145,spot_peer,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191471,61.565700228790135,baseline,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191471,0.0135357184646187,relative_legacy,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191471,18.241786734654227,peer,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191935,31.309849437509143,peer,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191935,84.63613076459568,baseline,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191935,27.75522487948277,spot_peer,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191935,89.53026213333065,spot_baseline,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191935,0.1015972126520455,relative_legacy,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191975,59.31491289889806,baseline,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191975,97.23250415571516,spot_baseline,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191975,21.16519955049694,peer,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191975,33.28468319778199,spot_peer,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,191975,0.110951781363437,relative_legacy,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192049,24.359136087101582,spot_peer,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192049,0.0,relative_legacy,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192049,3.6154600607096703,baseline,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192049,1.038559020151337,peer,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192418,-97.60067036692745,baseline,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192418,-1.7305818997378248,relative_legacy,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192418,-108.30901219289797,spot_peer,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192418,-102.02147096770592,peer,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192459,39.98994078730848,peer,biak_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192459,96.79281221357424,baseline,biak_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192459,35.16785195996957,spot_peer,biak_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192459,99.85565831303312,spot_baseline,biak_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192459,0.2084992341797598,relative_legacy,biak_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192472,27.80909109775631,peer,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192472,84.79969065549501,spot_baseline,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192472,80.0578182151287,baseline,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192472,24.359136087101582,spot_peer,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192472,0.0498223439452674,relative_legacy,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192924,53.887701364208766,baseline,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192924,16.457799165402278,peer,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192924,0.0363518735799473,relative_legacy,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192924,24.359136087101582,spot_peer,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,193275,54.59683691052925,spot_baseline,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,193275,2.676433778978922,spot_peer,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,193275,-0.1799153008279376,relative_legacy,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,193275,41.34068825488656,baseline,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,193275,3.890610107203267,peer,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,195286,-11.163131936119356,peer,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,195286,-0.3700360562912992,relative_legacy,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,195286,18.821385601485083,baseline,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,195286,-17.635464395529745,spot_peer,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,195286,26.303440583379377,spot_baseline,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,204737,25.021811982201505,baseline,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,204737,-0.0552968638317597,relative_legacy,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,204737,3.61128419924027,peer,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,204737,62.29303509201767,spot_baseline,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,204737,8.201553209169958,spot_peer,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,208405,89.78825836174748,baseline,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,208405,0.1386129417235007,relative_legacy,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,208405,34.87635348610138,peer,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,208405,29.95895543295157,spot_peer,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,215725,94.89236330490716,baseline,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,215725,0.1951353248394855,relative_legacy,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,215725,98.5500430304885,spot_baseline,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,215725,34.23054756683523,spot_peer,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,215725,38.64815049258421,peer,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,218666,86.30438192221295,baseline,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,218666,28.86295125228881,spot_peer,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,218666,32.25433584180348,peer,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,218666,0.1041843969443428,relative_legacy,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,218666,91.07326619029126,spot_baseline,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,219886,13.15613375563652,spot_peer,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,219886,69.1945028835357,spot_baseline,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,219886,16.01622177659146,peer,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,219886,63.08001738462755,baseline,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,219886,-0.0916200515688387,relative_legacy,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,220077,24.359136087101582,spot_peer,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,220077,84.79969065549501,spot_baseline,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,220077,0.084758271718221,relative_legacy,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,220077,31.12294788971635,peer,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,220077,83.81677613775257,baseline,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,221727,-132.19280948873626,spot_baseline,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,221727,-123.3826546539791,peer,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,221727,-131.42030857901256,spot_peer,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,221727,-127.0246037318407,baseline,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29503,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-06 13:55:47.751639+00,221727,-2.0222191243219165,relative_legacy,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29630 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,182315,-0.2639655122839683,relative_legacy,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,182315,-39.592867633113926,spot_baseline,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,182315,-24.429188284640617,peer,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,182315,-34.72942873750759,baseline,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,182315,-24.95802561029849,spot_peer,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,185690,-13.315128339489736,spot_peer,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,185690,-2.13778837691264,baseline,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,185690,-0.0076000029526201,relative_legacy,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,185690,-23.395615698730463,spot_baseline,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,185690,-1.1671156494966657,peer,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,185698,-121.35434724539816,spot_peer,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,185698,-61.07985943575958,baseline,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,185698,-0.5626105198716471,relative_legacy,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,185698,-42.95935654876648,peer,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,185698,-173.6965594166206,spot_baseline,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,185699,18.903382439001717,spot_baseline,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,185699,0.2449636218783208,relative_legacy,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,185699,16.349736230026753,baseline,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,185699,17.09020782314079,spot_peer,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,185699,12.7492265181523,peer,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,187708,18.31650470399508,baseline,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,187708,13.862858416539918,peer,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,187708,34.027740476625425,spot_baseline,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,187708,0.2399596895910855,relative_legacy,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,187708,27.96188825586762,spot_peer,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,189585,-7.424183976112761,spot_peer,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,189585,-15.00371661366862,baseline,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,189585,-0.0565958548508691,relative_legacy,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,189585,-15.200309344505014,spot_baseline,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,189585,-9.578442690154867,peer,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,189588,-14.96210371755248,baseline,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,189588,-15.200309344505014,spot_baseline,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,189588,-9.597956088354868,peer,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,189588,-0.0567357079957481,relative_legacy,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,189588,-7.424183976112761,spot_peer,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,189869,70.06471695442869,spot_peer,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,189869,60.7612539312586,baseline,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,189869,0.6731233331451804,relative_legacy,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,189869,44.41032935579268,peer,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,190772,1.406996148067227,spot_peer,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,190772,-2.914634565951651,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,190772,0.0529352414349323,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,190772,-1.008646708404633,peer,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,190772,-2.2787331809474103,baseline,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191026,0.0041190545715209,relative_legacy,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191026,-1.9167478643747125,baseline,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191026,-10.205003579932471,spot_baseline,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191026,-3.8334617913367497,spot_peer,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191026,-0.7299931146818741,peer,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191046,-15.200309344505014,spot_baseline,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191046,-0.0076201633519834,relative_legacy,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191046,-7.424183976112761,spot_peer,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191046,-5.823042004180131,baseline,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191046,-3.1478309996077094,peer,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191284,-19.638721007145108,spot_peer,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191284,-28.438577835310863,baseline,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191284,-19.841719873521985,peer,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191284,-32.19280948873623,spot_baseline,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191284,-0.2006907345197119,relative_legacy,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191471,-11.71972343969118,baseline,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191471,-0.0421472876618425,relative_legacy,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191471,-15.200309344505014,spot_baseline,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191471,-7.900674950367867,peer,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191471,-7.424183976112761,spot_peer,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191935,-9.754702360770697,spot_peer,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191935,-18.44245711374277,spot_baseline,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191935,-11.82666685275519,peer,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191935,-0.0863464176934551,relative_legacy,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,191935,-17.457172418416846,baseline,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192049,-7.424183976112761,spot_peer,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192049,-1.9218231935499208,baseline,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192049,-0.0018627253333134,relative_legacy,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192049,-0.9146502040419444,peer,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192049,-15.200309344505014,spot_baseline,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192418,-21.75914350726266,spot_baseline,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192418,-14.324451603587892,peer,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192418,-0.1207862588572147,relative_legacy,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192418,-12.138800547035716,spot_peer,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192418,-21.247793044413108,baseline,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192472,0.3885324299883975,relative_legacy,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192472,22.94679279509709,peer,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192472,25.809938496826557,spot_peer,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192472,31.034012061215048,spot_baseline,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192472,29.94883428509411,baseline,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192924,-20.47456706093223,baseline,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192924,-19.638721007145108,spot_peer,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192924,-14.402898075074203,peer,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192924,-0.1404228400888855,relative_legacy,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,192924,-32.19280948873623,spot_baseline,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,193275,-6.022169491118637,baseline,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,193275,-3.759103255931814,peer,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,193275,-7.704103576382802,spot_baseline,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,193275,-2.0357666055204926,spot_peer,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,193275,0.0149333210595923,relative_legacy,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,195286,54.776823890503984,baseline,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,195286,0.6178527496211834,relative_legacy,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,195286,40.14175850823906,peer,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,195286,58.53020664670171,spot_peer,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,204737,3.394192261513734,baseline,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,204737,9.544793304963024,spot_peer,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,204737,3.4462520205513845,peer,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,204737,0.082814189769033,relative_legacy,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,204737,8.406426478847456,spot_baseline,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,208405,-0.2221378211670597,relative_legacy,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,208405,-21.751652067470477,peer,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,208405,-32.19280948873623,spot_baseline,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,208405,-31.35435534565129,baseline,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,208405,-19.638721007145108,spot_peer,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,215725,25.351215665817502,baseline,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,215725,19.615620445795376,peer,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,215725,26.303440583379377,spot_baseline,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,215725,22.40951242629416,spot_peer,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,215725,0.3430077788112068,relative_legacy,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,218666,-0.0937131663488456,relative_legacy,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,218666,0.982849529390536,spot_peer,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,218666,-12.291424199560176,peer,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,218666,-3.50469470992008,spot_baseline,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,218666,-18.41699395344219,baseline,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,219886,86.78735158378582,baseline,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,219886,0.9552589661773244,relative_legacy,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,219886,70.40909578212027,spot_peer,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,219886,93.0790314244166,spot_baseline,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,219886,64.27791016065581,peer,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,220077,-16.829153903415182,peer,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,220077,-25.153876699596427,spot_baseline,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,220077,-14.579000278463257,spot_peer,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,220077,-24.8690280694324,baseline,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,220077,-0.1548343001793226,relative_legacy,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,221727,-3.1144426605651865,peer,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,221727,-0.7313003025868479,spot_peer,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,221727,-5.6594987568004695,baseline,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,221727,0.0325819654019663,relative_legacy,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,221727,-5.889368905356857,spot_baseline,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,222142,-2.7849798684343816,baseline,predictomatic,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,222142,-0.0253326251075178,relative_legacy,predictomatic,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,222142,-5.472589384901878,spot_peer,predictomatic,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,222142,-1.8753804904241933,peer,predictomatic,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29504,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-06 13:55:47.756806+00,222142,-12.485309071602405,spot_baseline,predictomatic,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29631 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,182315,84.79969065549501,spot_baseline,RyansAGI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,182315,33.10486343771225,spot_peer,RyansAGI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,182315,21.59094692018077,peer,RyansAGI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,182315,74.45886425698359,baseline,RyansAGI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,182315,0.0833922601945588,relative_legacy,RyansAGI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,185690,-0.0028958679085347,relative_legacy,annabot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,185690,6.294266532523632,baseline,annabot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,185690,1.530315207928844,peer,annabot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,185690,21.082384757768654,spot_peer,annabot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,185690,68.0144290063841,spot_baseline,annabot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,185698,26.936003110282037,baseline,RonanMcGovern,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,185698,27.19849400758423,spot_peer,RonanMcGovern,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,185698,0.0050064301645715,relative_legacy,RonanMcGovern,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,185698,6.70542209564878,peer,RonanMcGovern,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,185699,5.648869645301645,spot_peer,MWG,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,185699,40.91973851757695,baseline,MWG,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,185699,-2.79055730694132,peer,MWG,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,185699,-0.2535004608425476,relative_legacy,MWG,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,185699,46.46682670034443,spot_baseline,MWG,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,187708,70.13272574129405,spot_baseline,twsummerbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,187708,-0.0301953313974539,relative_legacy,twsummerbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,187708,38.45027316301183,baseline,twsummerbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,187708,7.173229123898245,peer,twsummerbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,187708,22.599619214140557,spot_peer,twsummerbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,188107,34.05725113188773,spot_peer,Cassie,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,188107,13.720873588811456,peer,Cassie,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,188107,48.090300478669256,baseline,Cassie,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,188107,0.0584734194237544,relative_legacy,Cassie,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,188107,86.1293729168408,spot_baseline,Cassie,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,189585,-0.0625819976433872,relative_legacy,mf-bot-1,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,189585,66.927495886251,baseline,mf-bot-1,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,189585,20.9339497532193,spot_peer,mf-bot-1,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,189585,12.84321284442884,peer,mf-bot-1,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,189588,66.73182167691803,baseline,mf-bot-3,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,189588,20.9339497532193,spot_peer,mf-bot-3,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,189588,-0.0623254160209841,relative_legacy,mf-bot-3,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,189588,12.87768713120701,peer,mf-bot-3,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,189588,67.80719051126377,spot_baseline,mf-bot-3,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,189869,0.0050064301645715,relative_legacy,VeritasAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,189869,11.580723841100497,peer,VeritasAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,189869,27.19849400758423,spot_peer,VeritasAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,189869,50.23293517966345,baseline,VeritasAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,190772,-3.751547435956764,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,190772,-10.306991334756107,peer,Jay_Bailey_Bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,190772,26.082136816373318,baseline,Jay_Bailey_Bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,190772,-0.3289184128083477,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,190772,33.34237337251918,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191026,56.91148173879194,spot_baseline,manticAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191026,1.63705901899228,peer,manticAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191026,10.689765885050145,baseline,manticAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191026,-0.0318874090353725,relative_legacy,manticAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191026,13.129875610183474,spot_peer,manticAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191046,35.53026573218593,baseline,archipelago,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191046,0.0665761496417547,relative_legacy,archipelago,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191046,38.691809635640745,spot_peer,archipelago,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191046,11.57403278721412,peer,archipelago,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191046,92.5999418556223,spot_baseline,archipelago,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191284,92.5999418556223,spot_baseline,000_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191284,0.1534416503876096,relative_legacy,000_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191284,81.80087471229288,baseline,000_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191284,26.76995867891073,peer,000_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191284,38.691809635640745,spot_peer,000_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191471,21.12289569341612,peer,HSeldon,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191471,0.1080369981509274,relative_legacy,HSeldon,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191471,69.09229972855485,baseline,HSeldon,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191471,36.49314512942131,spot_peer,HSeldon,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191471,89.53026213333067,spot_baseline,HSeldon,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191935,69.59938131099001,spot_baseline,pgodzinai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191935,22.217610153070208,spot_peer,pgodzinai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191935,-0.0445215025651799,relative_legacy,pgodzinai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191935,13.767629367764174,peer,pgodzinai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,191935,65.98022647479236,baseline,pgodzinai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192049,-265.5668848782248,spot_peer,gnosis-ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192049,-0.853910428816731,relative_legacy,gnosis-ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192049,-56.826444029485785,peer,gnosis-ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192049,-69.80516168190032,baseline,gnosis-ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192049,-332.1928094887362,spot_baseline,gnosis-ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192418,19.155246809740373,peer,InstitutPelFutur,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192418,74.76722258238078,baseline,InstitutPelFutur,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192418,27.19849400758423,spot_peer,InstitutPelFutur,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192418,0.0231062483905061,relative_legacy,InstitutPelFutur,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192459,35.6012172796095,peer,biak_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192459,0.2489073104590522,relative_legacy,biak_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192459,96.8435980120972,baseline,biak_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192459,43.88873168788401,spot_peer,biak_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192459,99.85565831303312,spot_baseline,biak_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192472,54.59683691052925,spot_baseline,bestworldbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192472,53.6644374523559,baseline,bestworldbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192472,4.529022704064083,peer,bestworldbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192472,-0.17670343491902,relative_legacy,bestworldbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192472,11.472006422251935,spot_peer,bestworldbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192924,16.240337204724835,peer,acm_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192924,35.03851002736817,spot_peer,acm_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192924,0.0746814178804982,relative_legacy,acm_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192924,55.696864469176006,baseline,acm_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,192924,87.49936389329673,spot_baseline,acm_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,193275,72.94440068336634,spot_baseline,histerio,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,193275,12.131512406004893,peer,histerio,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,193275,-0.0179605736472988,relative_legacy,histerio,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,193275,24.61348725818062,spot_peer,histerio,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,193275,57.03245989649432,baseline,histerio,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,195286,12.73444156697425,peer,Unwrapped80T,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,195286,0.0058643088034314,relative_legacy,Unwrapped80T,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,195286,27.19849400758423,spot_peer,Unwrapped80T,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,195286,54.7757235201925,baseline,Unwrapped80T,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,204737,0.0050064301645715,relative_legacy,SynapseSeer,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,204737,7.48107513500803,peer,SynapseSeer,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,204737,31.06858653958372,baseline,SynapseSeer,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,204737,27.19849400758423,spot_peer,SynapseSeer,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,208405,0.0227222487420505,relative_legacy,mf-bot-4,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,208405,27.19849400758423,spot_peer,mf-bot-4,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,208405,74.61589045862809,baseline,mf-bot-4,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,208405,19.119010043426893,peer,mf-bot-4,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,215725,-332.1928094887362,spot_baseline,estr.ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,215725,-268.00333178773656,peer,estr.ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,215725,-320.40099537590385,baseline,estr.ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,215725,-3.919456214120153,relative_legacy,estr.ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,215725,-265.5668848782248,spot_peer,estr.ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,218666,-11.311829752318497,peer,GreeneiBot2,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,218666,-0.3959262535654136,relative_legacy,GreeneiBot2,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,218666,32.48848993761465,baseline,GreeneiBot2,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,218666,-1.480393741683315,spot_peer,GreeneiBot2,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,218666,36.513259345253,spot_baseline,GreeneiBot2,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,218945,65.07645591169023,spot_baseline,SeidrBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,218945,7.82761614279052,peer,SeidrBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,218945,-0.0808343387100172,relative_legacy,SeidrBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,218945,18.97805539838236,spot_peer,SeidrBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,218945,51.80431241900975,baseline,SeidrBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,219886,73.5461369358368,baseline,SaraBase,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,219886,32.719516188291564,spot_peer,SaraBase,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,219886,0.0778084077660504,relative_legacy,SaraBase,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,219886,21.086010645799483,peer,SaraBase,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,219886,84.26168559185685,spot_baseline,SaraBase,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,220077,84.79969065549501,spot_baseline,mmBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,220077,0.1051433756165001,relative_legacy,mmBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,220077,25.15479560462536,peer,mmBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,220077,83.86582073755851,baseline,mmBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,220077,33.10486343771225,spot_peer,mmBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,221727,56.255741259638,baseline,mf-bot-5,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,221727,6.364857683297206,peer,mf-bot-5,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,221727,-0.1509938354083315,relative_legacy,mf-bot-5,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,221727,14.26496923567028,spot_peer,mf-bot-5,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,222142,-168.73589753318183,spot_baseline,predictomatic,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,222142,-148.49053062436275,spot_peer,predictomatic,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,222142,-0.7598641866615892,baseline,predictomatic,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,222142,-1.0799753143291446,peer,predictomatic,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29505,"Will Mike Tyson have a public boxing match before January 1, 2025?",2024-11-06 13:55:47.760888+00,222142,-0.019904620456902,relative_legacy,predictomatic,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29632 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,182315,0.3239522710963352,relative_legacy,RyansAGI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,182315,31.04510074398181,peer,RyansAGI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,182315,73.11832415721999,spot_baseline,RyansAGI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,182315,64.24619465395931,baseline,RyansAGI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,182315,35.72951329468619,spot_peer,RyansAGI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,185690,5.747521477710341,baseline,annabot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,185690,0.0299764195098254,relative_legacy,annabot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,185690,27.370209773086,spot_peer,annabot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,185690,2.632415483044275,peer,annabot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,185690,61.44742828377009,spot_baseline,annabot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,185698,3.367133893683477,baseline,RonanMcGovern,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,185698,-15.200309344504996,spot_baseline,RonanMcGovern,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,185698,-0.0705834808206191,relative_legacy,RonanMcGovern,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,185698,-3.555404259398408,peer,RonanMcGovern,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,185698,-27.52889223469589,spot_peer,RonanMcGovern,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,185699,-10.393495707907016,peer,MWG,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,185699,-0.2508248221330605,relative_legacy,MWG,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,185699,-10.62051844390967,spot_peer,MWG,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,185699,8.406426478847456,spot_baseline,MWG,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,185699,7.506433523247917,baseline,MWG,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,187708,10.567807789453692,spot_baseline,twsummerbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,187708,-0.1096670650430665,relative_legacy,twsummerbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,187708,5.851029515481343,baseline,twsummerbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,187708,-4.944902993939116,peer,twsummerbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,187708,-9.072424570295938,spot_peer,twsummerbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,188107,2.123925785776179,peer,Cassie,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,188107,15.940304315408849,baseline,Cassie,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,188107,28.293396327149857,spot_baseline,Cassie,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,188107,3.6235652056628336,spot_peer,Cassie,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,188107,-0.0120844345117175,relative_legacy,Cassie,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,189585,75.56118916178157,baseline,mf-bot-1,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,189585,38.189946993037104,spot_peer,mf-bot-1,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,189585,35.55202602362131,peer,mf-bot-1,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,189585,0.3679756612515407,relative_legacy,mf-bot-1,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,189588,35.53827390005635,peer,mf-bot-3,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,189588,75.34938605991748,baseline,mf-bot-3,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,189588,0.3678765530219667,relative_legacy,mf-bot-3,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,189588,38.189946993037104,spot_peer,mf-bot-3,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,189869,20.87554063320847,peer,VeritasAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,189869,0.2380146819703566,relative_legacy,VeritasAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,189869,31.92540273867217,spot_peer,VeritasAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,189869,44.49470059958476,baseline,VeritasAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,190772,-51.45731728297583,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,190772,-42.77378602378565,peer,Jay_Bailey_Bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,190772,-0.6663272975324748,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,190772,-53.49804982372286,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,190772,-40.3375059549811,baseline,Jay_Bailey_Bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191026,-0.7941544532138318,peer,manticAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191026,16.57432689986907,spot_baseline,manticAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191026,-4.770242724386631,spot_peer,manticAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191026,3.1132904383361457,baseline,manticAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191026,-0.0172369623197573,relative_legacy,manticAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191046,9.564335115015297,peer,archipelago,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191046,58.496250072115615,spot_baseline,archipelago,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191046,22.42746237045853,baseline,archipelago,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191046,0.1057412085030304,relative_legacy,archipelago,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191046,25.25642222112315,spot_peer,archipelago,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191284,-27.52889223469589,spot_peer,000_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191284,-13.427577190959468,baseline,000_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191284,-0.4545699791415878,relative_legacy,000_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191284,-25.388552001340425,peer,000_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191284,-15.200309344504996,spot_baseline,000_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191471,54.59683691052925,spot_baseline,HSeldon,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191471,22.46345940770481,spot_peer,HSeldon,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191471,0.163740913431881,relative_legacy,HSeldon,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191471,17.083451817383146,peer,HSeldon,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191471,42.16782233593808,baseline,HSeldon,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191935,55.530849511430105,baseline,pgodzinai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191935,22.583095213457216,peer,pgodzinai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191935,58.496250072115615,spot_baseline,pgodzinai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191935,0.196251610823918,relative_legacy,pgodzinai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191935,25.25642222112315,spot_peer,pgodzinai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191975,-0.8556209175652256,relative_legacy,jkraybill_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191975,-69.11487100034049,baseline,jkraybill_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191975,-127.46223801090056,spot_baseline,jkraybill_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191975,-58.672530644667866,peer,jkraybill_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,191975,-107.93673288534082,spot_peer,jkraybill_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192049,18.300565177464392,baseline,gnosis-ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192049,18.12715883413816,spot_peer,gnosis-ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192049,6.712485295530312,peer,gnosis-ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192049,0.0666501962098456,relative_legacy,gnosis-ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192418,25.340932038061293,peer,InstitutPelFutur,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192418,0.2285819738066883,relative_legacy,InstitutPelFutur,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192418,62.29303509201767,spot_baseline,InstitutPelFutur,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192418,60.84837126970653,baseline,InstitutPelFutur,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192418,27.975877413918408,spot_peer,InstitutPelFutur,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192472,10.46933504492025,spot_peer,bestworldbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192472,37.60802081818043,baseline,bestworldbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192472,9.049051733947008,peer,bestworldbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192472,0.0073285154633838,relative_legacy,bestworldbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192924,7.730801167884564,spot_peer,acm_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192924,4.799511928115371,peer,acm_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192924,34.027740476625425,spot_baseline,acm_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192924,21.68914814138116,baseline,acm_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,192924,0.0202224648562498,relative_legacy,acm_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,193275,6.581729226663193,spot_peer,histerio,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,193275,25.92501110004822,baseline,histerio,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,193275,4.981678987910399,peer,histerio,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,193275,32.42345622705313,spot_baseline,histerio,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,193275,-0.0078672325118352,relative_legacy,histerio,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,195286,-16.641638950053835,spot_peer,Unwrapped80T,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,195286,-0.2286958536797523,relative_legacy,Unwrapped80T,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,195286,-12.354976196828966,peer,Unwrapped80T,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,195286,0.0,spot_baseline,Unwrapped80T,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,195286,0.0,baseline,Unwrapped80T,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,204737,0.2353569847773675,relative_legacy,SynapseSeer,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,204737,46.92754375593695,spot_peer,SynapseSeer,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,204737,88.75252707415875,spot_baseline,SynapseSeer,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,204737,19.04095106020522,peer,SynapseSeer,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,204737,36.1726270594212,baseline,SynapseSeer,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,208405,82.69685420186707,baseline,mf-bot-4,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,208405,44.09631642316513,spot_peer,mf-bot-4,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,208405,0.4481847585280992,relative_legacy,mf-bot-4,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,208405,41.38691377710587,peer,mf-bot-4,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,215725,38.189946993037104,spot_peer,estr.ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,215725,0.3677272873591967,relative_legacy,estr.ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,215725,76.55347463629771,spot_baseline,estr.ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,215725,35.33134019151463,peer,estr.ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,215725,73.89255245226784,baseline,estr.ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,218666,-46.09359763672455,spot_peer,GreeneiBot2,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,218666,-41.119543298444974,spot_baseline,GreeneiBot2,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,218666,9.891538566876989,peer,GreeneiBot2,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,218666,0.0204377893082218,relative_legacy,GreeneiBot2,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,218666,39.75673802691176,baseline,GreeneiBot2,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,218945,58.496250072115615,spot_baseline,SeidrBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,218945,25.25642222112315,spot_peer,SeidrBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,218945,0.1954738590506362,relative_legacy,SeidrBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,218945,19.804113519093043,peer,SeidrBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,218945,46.589550944885744,baseline,SeidrBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,219886,-267.9729300762152,spot_peer,SaraBase,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,219886,-319.4106500289905,baseline,SaraBase,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,219886,-248.31518560030912,peer,SaraBase,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,219886,-3.530131284719581,relative_legacy,SaraBase,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,219886,-350.89781354316136,spot_baseline,SaraBase,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,220077,69.59938131099001,spot_baseline,mmBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,220077,33.209063138523085,spot_peer,mmBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,220077,0.2993361169723694,relative_legacy,mmBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,220077,30.50731614898399,peer,mmBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,220077,68.8555522523852,baseline,mmBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,221727,0.1940685088179359,relative_legacy,mf-bot-5,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,221727,22.604978610829647,peer,mf-bot-5,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,221727,56.25663734014632,baseline,mf-bot-5,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,221727,25.25642222112315,spot_peer,mf-bot-5,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,222142,39.83841429147611,spot_peer,predictomatic,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,222142,0.7440113076729378,peer,predictomatic,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,222142,78.85499295551601,spot_baseline,predictomatic,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,222142,0.0084523847629101,relative_legacy,predictomatic,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29506,"Will OpenAI's o1 remain the top LLM in all categories of Chatbot Arena on November 30, 2024? -",2024-11-06 13:55:47.767568+00,222142,1.4590539990511404,baseline,predictomatic,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29633 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,182315,3.970138905584601,spot_peer,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,182315,65.82413249069079,baseline,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,182315,-0.0202188972459092,relative_legacy,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,182315,74.84612330040356,spot_baseline,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,182315,2.6670414288783117,peer,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,185690,-1.351512367834891,peer,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,185690,-0.0222929316405303,relative_legacy,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,185690,-14.02244462227053,spot_peer,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,185690,49.75357263960042,spot_baseline,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,185690,4.718625029055347,baseline,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,185698,-22.55705374417504,spot_peer,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,185698,37.85116232537298,spot_baseline,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,185698,-3.7941146333525104,peer,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,185698,19.55374859501748,baseline,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,185698,-0.0709480849465946,relative_legacy,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,185699,12.250419009743547,spot_peer,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,185699,0.081549541445555,relative_legacy,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,185699,78.14040181661919,baseline,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,185699,86.39384504239716,spot_baseline,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,185699,10.255369848257317,peer,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,187708,-14.007790854151676,spot_peer,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,187708,-8.440769398625527,peer,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,187708,-0.1543501593291776,relative_legacy,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,187708,49.77400886090931,spot_baseline,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,187708,27.92845673542704,baseline,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,188107,5.2039827288052125,peer,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,188107,83.45763907926283,spot_baseline,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,188107,10.145016025374716,spot_peer,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,188107,47.25788743888645,baseline,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,188107,0.0346504517878075,relative_legacy,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,189585,66.92866076214717,baseline,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,189585,-2.010664415115216,peer,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,189585,-0.0974039660912663,relative_legacy,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,189585,-1.0771194567704376,spot_peer,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,189588,67.80719051126377,spot_baseline,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,189588,66.74142909756578,baseline,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,189588,-1.9812269498478376,peer,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,189588,-0.097185962794583,relative_legacy,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,189588,-1.0771194567704376,spot_peer,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,189869,12.52148609460134,peer,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,189869,97.08536543404836,spot_baseline,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,189869,63.70814358066799,baseline,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,189869,19.91676095668028,spot_peer,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,189869,0.1297185852173134,relative_legacy,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,190772,4.522245234391565,peer,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,190772,61.3800294611624,baseline,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,190772,78.24085649273731,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,190772,0.008032549031221,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,190772,6.404328292846064,spot_peer,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191026,71.37944364600827,spot_baseline,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191026,0.1591703733327171,peer,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191026,1.4843603934998106,spot_peer,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191026,-0.0065230761680361,relative_legacy,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191026,13.408228926732448,baseline,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191046,3.912430126398281,peer,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191046,11.107332507683036,spot_peer,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191046,0.0326569693321078,relative_legacy,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191046,32.47168665601719,baseline,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191046,84.79969065549501,spot_baseline,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191284,5.194393144929725,spot_peer,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191284,-0.0055134589498935,relative_legacy,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191284,76.55347463629771,spot_baseline,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191284,3.7610743283969295,peer,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191284,67.62514503958373,baseline,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191471,52.60688116675877,spot_baseline,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191471,-11.9764831455111,spot_peer,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191471,40.67231003061702,baseline,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191471,-9.869742449238414,peer,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191471,-0.1901531195832073,relative_legacy,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191935,13.381012513073578,spot_peer,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191935,83.64858574386739,baseline,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191935,87.97057662822883,spot_baseline,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191935,0.0974390835734357,relative_legacy,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191935,11.898780855729512,peer,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191975,10.271919864560846,peer,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191975,95.20850186835013,spot_baseline,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191975,18.570958175101595,spot_peer,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191975,0.1038983474288917,relative_legacy,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,191975,55.43167768209668,baseline,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192049,11.107332507683036,spot_peer,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192049,4.673305962304274,peer,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192049,0.0355506518125241,relative_legacy,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192049,39.009412881649325,baseline,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192418,-15.200309344505014,spot_baseline,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192418,-0.9081574975106153,relative_legacy,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192418,-60.597548239897534,spot_peer,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192418,-14.850487267645349,baseline,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192418,-61.14413709854029,peer,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192472,-0.0787929335195618,relative_legacy,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192472,-0.8721406677374579,peer,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192472,1.4772887422335133,spot_peer,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192472,71.36958148433591,spot_baseline,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192472,66.95943773251719,baseline,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192924,0.5811897244834641,peer,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192924,-0.0344470702946941,relative_legacy,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192924,45.902968175740696,baseline,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192924,1.8550674062442989,spot_peer,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,192924,71.89643357595385,spot_baseline,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,193275,-0.0066262932826103,relative_legacy,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,193275,76.38364588909515,spot_baseline,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,193275,5.072617644273015,spot_peer,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,193275,3.5445288546170968,peer,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,193275,61.05662844508064,baseline,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,195286,11.107332507683036,spot_peer,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,195286,66.94153370876808,baseline,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,195286,8.298170787711749,peer,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,195286,0.0598912906697153,relative_legacy,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,204737,-7.7535181951398755,spot_peer,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,204737,-0.072926833976998,relative_legacy,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,204737,-3.560651071872298,peer,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,204737,23.974582534724828,baseline,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,208405,0.1446316175920954,relative_legacy,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,208405,16.700493328746028,spot_peer,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,208405,15.674662210650736,peer,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,208405,90.30792326275056,baseline,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,215725,18.60286080243265,peer,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,215725,97.08536543404836,spot_baseline,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,215725,19.91676095668028,spot_peer,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,215725,93.78991160620218,baseline,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,215725,0.1869432065371498,relative_legacy,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,218666,16.48247791430829,spot_peer,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,218666,92.2958964236172,spot_baseline,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,218666,0.1611731826910293,relative_legacy,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,218666,16.808065610842004,peer,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,218666,91.9204442043082,baseline,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,218945,-70.09187048901391,peer,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,218945,-86.59559254481886,spot_peer,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,218945,-1.025277517524333,relative_legacy,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,218945,-41.005254384370325,baseline,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,218945,-51.45731728297583,spot_baseline,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,219886,94.93481642885632,spot_baseline,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,219886,89.40846111248955,baseline,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,219886,0.1627103170694263,relative_legacy,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,219886,18.374712357089063,spot_peer,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,219886,16.51278374174221,peer,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,220077,9.951473825118354,spot_peer,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,220077,82.32662693387789,baseline,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,220077,83.18772411916731,spot_baseline,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,220077,9.134449160645122,peer,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,220077,0.0544086231669748,relative_legacy,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,221727,-0.0111227187385514,relative_legacy,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,221727,5.194393144929725,spot_peer,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,221727,4.113311802397056,peer,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,221727,73.62295247860122,baseline,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29507,"Will the US restrict access outside the US to some APIs to generative AI before 2025? -",2024-11-06 13:55:47.774263+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29634 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,182315,-1.3406804217881958,relative_legacy,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,182315,-96.64645850545708,spot_peer,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,182315,-86.29960066502365,peer,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,182315,-125.15387669959644,spot_baseline,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,182315,-110.14450330782556,baseline,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,185690,54.67586704347725,spot_baseline,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,185690,32.45375277431227,spot_peer,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,185690,3.0331726302237514,peer,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,185690,0.0164879404981134,relative_legacy,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,185690,5.27555637196249,baseline,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,185698,-0.0798026058779746,relative_legacy,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,185698,0.3770202260738338,baseline,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,185698,-2.0818678190385587,peer,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,185698,-73.69655941662059,spot_baseline,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,185698,-59.705125026088325,spot_peer,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,185699,0.263037303090965,relative_legacy,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,185699,56.55971758542251,spot_baseline,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,185699,52.21981195626784,baseline,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,185699,33.80617366933458,spot_peer,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,185699,30.71131974561705,peer,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,187708,-0.6064880224230006,relative_legacy,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,187708,-64.29336612609124,spot_peer,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,187708,-80.0877357986399,spot_baseline,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,187708,-45.61366681050904,baseline,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,187708,-37.32410080508476,peer,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,188107,41.22254717151489,baseline,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,188107,0.2614823947982495,relative_legacy,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,188107,25.241878892190428,peer,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,188107,45.06782654061138,spot_peer,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,188107,72.2466024471091,spot_baseline,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,189585,3.073226057980064,spot_peer,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,189585,13.750352374993504,spot_baseline,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,189585,1.0090688631567877,peer,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,189585,13.543043829111449,baseline,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,189585,-0.1455037147178951,relative_legacy,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,189869,55.647096113750656,baseline,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,189869,34.95115150558855,peer,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,189869,54.079719157394464,spot_peer,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,189869,0.3779968539643748,relative_legacy,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,190772,79.90873060740036,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,190772,0.4033253616492446,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,190772,50.56848701955603,spot_peer,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,190772,39.4422114934733,peer,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,190772,62.73601210809712,baseline,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191026,37.35396618437076,spot_baseline,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191026,3.622949459756375,peer,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191026,0.0092364048277627,relative_legacy,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191026,7.017001232845868,baseline,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191026,20.01831793393984,spot_peer,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191046,-50.44719866011937,peer,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191046,-66.62657840200947,baseline,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191046,-0.754112781475254,relative_legacy,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191046,-173.6965594166206,spot_baseline,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191046,-131.4953687269398,spot_peer,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191284,-173.6965594166206,spot_baseline,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191284,-153.43778637725282,baseline,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191284,-1.774786471029807,relative_legacy,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191284,-131.4953687269398,spot_peer,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191284,-117.81198937993572,peer,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191471,44.36066514756145,spot_baseline,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191471,34.32674660674674,baseline,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191471,0.1210778525795729,relative_legacy,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191471,25.04844419499947,spot_peer,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191471,18.92091344501544,peer,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191935,-2.7360401308780142,spot_peer,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191935,-4.2230909400549415,peer,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191935,5.658352836636751,spot_baseline,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191935,5.181666083963523,baseline,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191935,-0.2168018393928469,relative_legacy,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191975,42.09064634547101,baseline,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191975,50.56848701955603,spot_peer,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191975,0.2814910159264108,relative_legacy,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191975,26.219488987371605,peer,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,191975,79.90873060740036,spot_baseline,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192049,0.2222786735124999,relative_legacy,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192049,41.88076189298332,spot_peer,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192049,36.83204838598604,baseline,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192049,22.281245635743343,peer,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192418,13.536547165543444,peer,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192418,0.0246899107303906,relative_legacy,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192418,31.034012061215048,spot_baseline,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192418,15.48120746714434,spot_peer,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192418,30.32669838937167,baseline,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192472,4.173563207514954,peer,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192472,16.349873228287958,spot_baseline,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192472,4.939428413614606,spot_peer,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192472,17.053168961643948,baseline,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192472,-0.1035694322660562,relative_legacy,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192924,-0.1131176077738849,relative_legacy,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192924,-0.1785909697324215,spot_peer,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192924,-0.8141316769323551,peer,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192924,9.22074380970886,spot_baseline,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,192924,5.894674405065637,baseline,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,193275,22.11333779772978,spot_peer,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,193275,40.27221768456047,spot_baseline,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,193275,32.50963311524699,baseline,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,193275,17.52184346054634,peer,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,193275,0.0964502086783473,relative_legacy,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,195286,-0.8069442396018172,relative_legacy,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,195286,-73.69655941662059,spot_baseline,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,195286,-48.13714151231295,peer,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,195286,-58.23437347111269,baseline,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,195286,-59.705125026088325,spot_peer,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,204737,5.667634381698638,baseline,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,204737,3.073226057980064,spot_peer,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,204737,-0.0358468364308616,relative_legacy,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,204737,1.2373246921104886,peer,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,204737,13.750352374993504,spot_baseline,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,208405,20.375256255236565,spot_peer,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,208405,37.85116232537298,spot_baseline,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,208405,18.377704247556487,peer,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,208405,36.89010304947914,baseline,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,208405,0.0909813002914322,relative_legacy,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,215725,0.194142632853633,relative_legacy,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,215725,46.93468574332971,baseline,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,215725,48.54268271702416,spot_baseline,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,215725,28.050724799729178,spot_peer,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,215725,25.87288722622115,peer,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,218666,15.479258909741658,baseline,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,218666,46.88439429746374,spot_baseline,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,218666,2.9310209897852064,peer,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,218666,-0.1235888346121749,relative_legacy,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,218666,26.860235502063748,spot_peer,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,218945,0.075792630514083,relative_legacy,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,218945,20.375256255236565,spot_peer,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,218945,30.187817513756592,baseline,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,218945,37.85116232537298,spot_baseline,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,218945,15.850654892629104,peer,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,219886,-15.914757758460604,baseline,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,219886,-16.31063725902571,spot_baseline,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,219886,-0.4372265471902213,relative_legacy,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,219886,-20.246197840154213,peer,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,219886,-18.507631659170027,spot_peer,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,220077,35.25516725138196,baseline,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,220077,0.0705975809701339,relative_legacy,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,220077,16.980992426615707,peer,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,220077,35.61438102252753,spot_baseline,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,220077,18.76946550686873,spot_peer,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,221727,0.463204677111078,relative_legacy,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,221727,45.46938033199709,peer,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,221727,48.15974058111406,spot_peer,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29508,"Will Kalshi outrank Coinbase in the top free Finance apps on December 31, 2024?",2024-11-06 13:55:47.892597+00,221727,73.62206777458286,baseline,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29635 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,182315,-88.8968687611256,spot_baseline,RyansAGI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,182315,37.91109979079152,spot_peer,RyansAGI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,182315,-0.0345899922922473,relative_legacy,RyansAGI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,182315,38.97028603104988,peer,RyansAGI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,182315,-78.3726889829512,baseline,RyansAGI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,185690,86.53216488517796,spot_peer,annabot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,185690,0.0479552045264064,relative_legacy,annabot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,185690,8.614642432793065,peer,annabot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,185690,-2.0861092311656124,baseline,annabot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,185690,-21.089678249861837,spot_baseline,annabot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,185698,-51.45731728297583,spot_baseline,RonanMcGovern,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,185698,-32.80618589936371,baseline,RonanMcGovern,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,185698,-0.0720114282372116,relative_legacy,RonanMcGovern,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,185698,13.635025304782303,peer,RonanMcGovern,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,185698,64.75708553062783,spot_peer,RonanMcGovern,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,185699,-37.69795281708357,spot_peer,MWG,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,185699,-29.004449710765726,peer,MWG,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,185699,-0.9913617583390938,relative_legacy,MWG,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,185699,-184.59638198673773,baseline,MWG,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,185699,-194.3416471633633,spot_baseline,MWG,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,187708,-46.59383975788815,spot_baseline,twsummerbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,187708,68.24443629017735,spot_peer,twsummerbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,187708,44.211167888866754,peer,twsummerbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,187708,0.2265993788600434,relative_legacy,twsummerbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,187708,-27.25611560192643,baseline,twsummerbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,188107,-48.56938295781613,peer,Cassie,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,188107,-155.89909281319808,baseline,Cassie,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,188107,-90.10083815979388,spot_peer,Cassie,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,188107,-1.0616121751605851,relative_legacy,Cassie,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,188107,-267.42298388182434,spot_baseline,Cassie,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,189585,1.6316448511681845,relative_legacy,mf-bot-1,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,189585,156.5470712203764,spot_peer,mf-bot-1,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,189585,164.08784339861856,peer,mf-bot-1,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,189585,75.63876817117425,baseline,mf-bot-1,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,189588,-31.705854100977906,baseline,mf-bot-3,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,189588,85.39384431518215,peer,mf-bot-3,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,189588,78.57067787109571,spot_peer,mf-bot-3,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,189588,0.5580278647760536,relative_legacy,mf-bot-3,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,189588,-32.19280948873623,spot_baseline,mf-bot-3,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,189869,-405.8893689053569,spot_baseline,VeritasAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,189869,-2.0656289109735027,relative_legacy,VeritasAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,189869,-189.3879944164036,spot_peer,VeritasAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,189869,-266.36123057968155,baseline,VeritasAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,189869,-119.60166591651804,peer,VeritasAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,190772,-54.9794098512042,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,190772,-1.028925884398161,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,190772,-38.695842941078126,peer,Jay_Bailey_Bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,190772,-171.76368825210488,baseline,Jay_Bailey_Bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,190772,-218.44245711374276,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191026,-22.96392238317335,spot_baseline,manticAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191026,85.1882403644684,spot_peer,manticAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191026,0.0912271649842237,relative_legacy,manticAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191026,16.373256195230315,peer,manticAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191026,-4.3141073094090325,baseline,manticAI,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191046,48.81046347953216,spot_peer,archipelago,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191046,-0.0040814833379647,relative_legacy,archipelago,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191046,-28.2115816024767,baseline,archipelago,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191046,20.179545796606156,peer,archipelago,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191046,-73.69655941662063,spot_baseline,archipelago,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191284,-232.19280948873623,spot_baseline,000_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191284,-7.883010005969375,peer,000_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191284,-64.8390836240654,spot_peer,000_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191284,-0.6936907722091258,relative_legacy,000_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191284,-144.36549668860383,baseline,000_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191471,-0.2308542679381402,relative_legacy,HSeldon,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191471,16.725470896376354,spot_peer,HSeldon,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191471,-91.80389061274111,baseline,HSeldon,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191471,17.94638902952561,peer,HSeldon,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191471,-118.44245711374272,spot_baseline,HSeldon,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191935,-364.38561897747246,spot_baseline,pgodzinai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191935,-2.622312083220988,relative_legacy,pgodzinai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191935,-159.62778002484006,spot_peer,pgodzinai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191935,-146.94614178159793,peer,pgodzinai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,191935,-348.00211744571084,baseline,pgodzinai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192049,-91.96955597677194,peer,gnosis-ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192049,-136.54396437164596,spot_peer,gnosis-ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192049,-235.91725017177487,baseline,gnosis-ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192049,-1.7027512435436238,relative_legacy,gnosis-ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192049,-332.1928094887362,spot_baseline,gnosis-ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192418,13.750352374993504,spot_baseline,InstitutPelFutur,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192418,1.0044926751848624,relative_legacy,InstitutPelFutur,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192418,117.7905593523586,peer,InstitutPelFutur,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192418,13.44217179326746,baseline,InstitutPelFutur,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192418,111.51416729715102,spot_peer,InstitutPelFutur,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192459,-871.0504326515597,baseline,biak_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192459,-541.2359994159369,spot_peer,biak_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192459,-7.840503593857726,relative_legacy,biak_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192459,-525.2724113125266,peer,biak_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192459,-896.5784284662087,spot_baseline,biak_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192472,-47.39311883324123,spot_baseline,bestworldbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192472,0.4070823022991767,relative_legacy,bestworldbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192472,-45.53457899012326,baseline,bestworldbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192472,73.88353844115125,peer,bestworldbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192472,67.67131418235505,spot_peer,bestworldbot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192924,-42.1968223164064,baseline,acm_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192924,0.144535958659115,relative_legacy,acm_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192924,54.51245995067832,spot_peer,acm_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192924,40.08601385268212,peer,acm_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,192924,-65.74452545226798,spot_baseline,acm_bot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,193275,17.632277264046287,spot_baseline,histerio,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,193275,15.08004557314339,baseline,histerio,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,193275,101.17461969054789,peer,histerio,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,193275,0.8584286168451943,relative_legacy,histerio,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,193275,114.29769690955696,spot_peer,histerio,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,195286,1.1530195610455471,relative_legacy,Unwrapped80T,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,195286,46.34884157991934,baseline,Unwrapped80T,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,195286,119.24242947677268,peer,Unwrapped80T,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,195286,143.5991598803068,spot_peer,Unwrapped80T,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,204737,26.303440583379377,spot_baseline,SynapseSeer,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,204737,0.4096968064031655,relative_legacy,SynapseSeer,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,204737,10.954169787839213,baseline,SynapseSeer,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,204737,52.05110914681914,peer,SynapseSeer,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,204737,120.51534422711272,spot_peer,SynapseSeer,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,208405,6.865797123515158,spot_peer,mf-bot-4,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,208405,-0.4258968503819907,relative_legacy,mf-bot-4,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,208405,-130.01162057750346,baseline,mf-bot-4,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,208405,13.627392676460952,peer,mf-bot-4,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,208405,-132.19280948873623,spot_baseline,mf-bot-4,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,215725,-332.1928094887362,spot_baseline,estr.ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,215725,-136.54396437164596,spot_peer,estr.ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,215725,-2.350652042374921,relative_legacy,estr.ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,215725,-126.34308578074454,peer,estr.ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,215725,-321.623019503592,baseline,estr.ai,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,218666,48.81046347953216,spot_peer,GreeneiBot2,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,218666,100.01328148162072,peer,GreeneiBot2,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,218666,0.7586573494670086,relative_legacy,GreeneiBot2,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,218666,-11.227493950765703,baseline,GreeneiBot2,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,218666,-73.69655941662063,spot_baseline,GreeneiBot2,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,218945,-13.606154957602838,spot_baseline,SeidrBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,218945,0.581724316626688,relative_legacy,SeidrBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,218945,91.89821633760968,spot_peer,SeidrBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,218945,78.5700890754895,peer,SeidrBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,218945,-10.864599257482604,baseline,SeidrBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,219886,-69.96543810415403,peer,SaraBase,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,219886,-80.63409269292556,spot_peer,SaraBase,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,219886,-240.13839742886836,baseline,SaraBase,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,219886,-1.5569822415261372,relative_legacy,SaraBase,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,219886,-254.220611368029,spot_baseline,SaraBase,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,220077,-218.44245711374276,spot_baseline,mmBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,220077,-1.2830665971481163,relative_legacy,mmBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,220077,-54.9794098512042,spot_peer,mmBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,220077,-216.3771868831236,baseline,mmBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,220077,-48.98799035898887,peer,mmBot,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,221727,143.5991598803068,spot_peer,mf-bot-5,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,221727,56.29049846857061,baseline,mf-bot-5,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,221727,147.3879412603731,peer,mf-bot-5,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,221727,1.424066893037477,relative_legacy,mf-bot-5,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29510,Will the International Criminal Court bring charges against Benjamin Netanyahu before 2025?,2024-11-06 13:55:47.907702+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29637 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,182315,89.53026213333065,spot_baseline,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,182315,78.99665621776036,baseline,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,182315,13.085513178175844,spot_peer,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,182315,0.0373002532932614,relative_legacy,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,182315,14.295911837051754,peer,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,185690,8.733770460642994,baseline,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,185690,-0.0016703281471637,relative_legacy,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,185690,1.155774442932637,peer,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,185690,86.93186948289048,spot_baseline,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,185690,11.224409020547528,spot_peer,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,185698,15.284177684395278,spot_peer,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,185698,92.5999418556223,spot_baseline,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,185698,0.4099637046579997,peer,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,185698,-0.0499299947352131,relative_legacy,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,185698,25.2248629008976,baseline,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,185699,15.10622854896186,peer,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,185699,0.0240094514109121,relative_legacy,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,185699,84.62197694665392,baseline,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,185699,87.97057662822883,spot_baseline,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,185699,11.968385180740231,spot_peer,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,187708,80.4053558967353,spot_baseline,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,187708,47.53877358170863,baseline,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,187708,4.849454455986672,peer,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,187708,6.549780046380227,spot_peer,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,187708,-0.0300099938360594,relative_legacy,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,188107,54.3867385185516,baseline,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,188107,9.883577352686295,peer,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,188107,0.0403170176094528,relative_legacy,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,188107,15.102731925161244,spot_peer,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,188107,92.3466151810701,spot_baseline,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,189585,66.9974050001488,baseline,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,189585,1.0929861430409964,peer,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,189585,-2.473682198026168,spot_peer,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,189585,-0.1730664474956717,relative_legacy,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,189588,-0.0866728136215331,relative_legacy,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,189588,7.393293252967337,peer,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,189588,3.790862056338763,spot_peer,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,189588,75.41721878361099,baseline,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,189869,97.08536543404836,spot_baseline,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,189869,18.496871681631816,spot_peer,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,189869,63.71238203002403,baseline,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,189869,0.0761571149640208,relative_legacy,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,189869,13.405133272317936,peer,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,190772,16.3662120040158,spot_peer,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,190772,0.068275636713602,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,190772,74.05483256941797,baseline,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,190772,14.829334715293664,peer,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,190772,94.11063109464314,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191026,90.18002840665264,spot_baseline,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191026,0.004603900829604,relative_legacy,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191026,2.6563743638095145,peer,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191026,13.550909627231116,spot_peer,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191026,16.94215175458023,baseline,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191046,4.152323623824817,peer,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191046,-0.0026608055716236,relative_legacy,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191046,32.49612320333961,baseline,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191046,84.79969065549501,spot_baseline,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191046,9.697231486466794,spot_peer,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191284,42.88044267215438,baseline,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191284,-16.27192610256018,spot_peer,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191284,-0.3246347472414809,relative_legacy,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191284,-11.850757246357636,peer,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191471,49.772641667913845,baseline,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191471,-2.1653909918461736,peer,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191471,-0.1646371863141254,relative_legacy,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191471,64.15460290875237,spot_baseline,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191471,-5.089855689736127,spot_peer,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191935,92.5999418556223,spot_baseline,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191935,0.0679439694701922,relative_legacy,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191935,15.284177684395278,spot_peer,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191935,88.59263525501531,baseline,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191935,18.1852664787368,peer,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191975,26.348489660580583,baseline,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191975,4.398395898394024,peer,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191975,0.0133325147766765,relative_legacy,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191975,14.373745950572603,spot_peer,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,191975,91.32883668066692,spot_baseline,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192049,97.08536543404836,spot_baseline,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192049,77.00348852785154,baseline,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192049,18.496871681631816,spot_peer,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192049,0.0924527824222233,relative_legacy,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192049,16.67417402519117,peer,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192418,41.28667834444722,baseline,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192418,-0.4217275881371826,relative_legacy,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192418,-20.79819711059413,spot_peer,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192418,-16.95904986324595,peer,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192418,42.22330006830476,spot_baseline,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192459,-200.0,spot_baseline,biak_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192459,-194.29114120247425,spot_peer,biak_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192459,-2.773569515534533,relative_legacy,biak_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192459,-194.38543045355212,baseline,biak_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192459,-187.5666877929779,peer,biak_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192472,-24.808223814049544,peer,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192472,29.78167174440861,baseline,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192472,-0.528031621651889,relative_legacy,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192472,31.034012061215048,spot_baseline,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192472,-28.812547993001147,spot_peer,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192924,70.84079834835963,spot_baseline,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192924,45.50905697011515,baseline,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192924,-0.3008542548450353,spot_peer,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192924,0.9601795496238889,peer,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,192924,-0.093702730656437,relative_legacy,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,193275,64.58952418484617,baseline,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,193275,5.451295763339849,peer,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,193275,-0.0744275627711954,relative_legacy,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,193275,3.669221861793885,spot_peer,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,193275,76.38364588909515,spot_baseline,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,195286,9.697231486466794,spot_peer,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,195286,67.31419224252994,baseline,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,195286,-0.0049913393192668,relative_legacy,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,195286,9.658636321065044,peer,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,204737,31.33147946474205,baseline,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,204737,2.567968099481806,spot_peer,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,204737,-0.042843216937584,relative_legacy,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,204737,1.586396242936437,peer,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,204737,74.84612330040356,spot_baseline,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,208405,15.284177684395278,spot_peer,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,208405,18.837979170628664,peer,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,208405,0.0708676679458587,relative_legacy,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,208405,90.94387377162866,baseline,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,215725,89.72574192321675,baseline,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,215725,0.0695534019950621,relative_legacy,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,215725,18.58821786794528,peer,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,215725,15.284177684395278,spot_peer,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,218666,93.80975610740931,spot_baseline,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,218666,0.1097973738657797,relative_legacy,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,218666,21.656672409865887,peer,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,218666,94.82227322884552,baseline,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,218666,16.150709666610254,spot_peer,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,218945,-0.2301104861781458,relative_legacy,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,218945,59.63325282305837,baseline,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,218945,-3.1320874021779845,peer,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,218945,-9.142662715575195,spot_peer,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,218945,58.496250072115615,spot_baseline,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,219886,18.9219824283184,spot_peer,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,219886,97.6788865625064,spot_baseline,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,219886,21.91503727379483,peer,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,219886,94.07214812301278,baseline,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,219886,0.1176236200875075,relative_legacy,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,220077,-0.0210979274202176,relative_legacy,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,220077,12.179681371025133,peer,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,220077,82.42375556966067,baseline,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,220077,8.542657091327191,spot_peer,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,220077,83.18772411916731,spot_baseline,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,221727,73.69228107480548,baseline,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,221727,3.790862056338763,spot_peer,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,221727,-0.0858156490475936,relative_legacy,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29511,Will armed conflicts between the Republic of China (Taiwan) and the People's Republic of China (PRC) lead to at least 100 deaths before 2025?,2024-11-06 13:55:47.914667+00,221727,7.159909024576686,peer,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29638 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,182315,29.995636465768712,peer,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,182315,65.99245584023782,spot_baseline,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,182315,58.27728483193015,baseline,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,182315,29.327283704205936,spot_peer,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,182315,-0.0490351293024728,relative_legacy,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,185690,30.599928963731195,spot_peer,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,185690,2.9676039101747107,peer,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,185690,-1.6388377623536464e-05,relative_legacy,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,185690,67.771118626068,spot_baseline,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,185690,6.90096870634503,baseline,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,185698,0.9295247111818568,spot_peer,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,185698,-0.0582616886777297,relative_legacy,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,185698,26.303440583379377,spot_baseline,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,185698,19.015622125151257,baseline,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,185698,7.06879813458642,peer,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,185699,81.14348188951425,baseline,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,185699,41.630614518669766,spot_peer,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,185699,48.58532608161338,peer,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,185699,83.18772411916731,spot_baseline,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,185699,0.1144981615441049,relative_legacy,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,187708,-0.2561613249845146,relative_legacy,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,187708,29.86583155645151,spot_baseline,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,187708,17.909682280089942,baseline,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,187708,2.554372028215124,peer,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,187708,3.4784395592202144,spot_peer,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,188107,50.46187040542648,baseline,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,188107,0.072479626647969,relative_legacy,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,188107,26.0032583473646,peer,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,188107,84.79969065549501,spot_baseline,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,188107,42.78398748363753,spot_peer,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,189585,66.99780431311228,baseline,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,189585,37.85560068695819,peer,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,189585,-0.0355245047321296,relative_legacy,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,189585,30.62573864168828,spot_peer,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,189588,30.62573864168828,spot_peer,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,189588,-0.0359820035668853,relative_legacy,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,189588,66.79947668228888,baseline,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,189588,67.80719051126377,spot_baseline,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,189588,37.78915157545998,peer,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,189869,0.0794185125062933,relative_legacy,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,189869,55.65071398835445,baseline,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,189869,42.78398748363753,spot_peer,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,189869,28.98108768021446,peer,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,190772,57.57982041166041,baseline,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,190772,0.0088148565419536,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,190772,73.11832415721999,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,190772,34.425890705968655,spot_peer,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,190772,29.44105027401224,peer,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191026,30.61421607142708,spot_peer,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191026,67.79108644238258,spot_baseline,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191026,12.73637151051914,baseline,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191026,5.51495085224146,peer,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191026,3.9443656326731165e-06,relative_legacy,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191046,36.8837641195138,spot_peer,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191046,29.398783319059625,baseline,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191046,0.0221538345994003,relative_legacy,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191046,13.996096261555875,peer,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191046,76.55347463629771,spot_baseline,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191284,67.62364470580069,baseline,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191284,36.8837641195138,spot_peer,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191284,0.0442281827923739,relative_legacy,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191284,76.55347463629771,spot_baseline,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191284,36.74742886263725,peer,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191471,-4.57438744620681,baseline,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191471,-15.25241777259934,peer,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191471,-22.104648327704314,spot_peer,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191471,-5.889368905356857,spot_baseline,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191471,-0.6048532717535573,relative_legacy,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191935,86.39384504239716,spot_baseline,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191935,82.8045554491794,baseline,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191935,0.1394807837439139,relative_legacy,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191935,49.33134539439551,peer,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191935,43.92461573515599,spot_peer,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191975,0.152729663250894,relative_legacy,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191975,64.97515432766858,baseline,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191975,35.434698243598135,peer,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191975,50.124795424719856,spot_peer,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,191975,95.05928326781536,spot_baseline,jkraybill_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192049,40.72031901682217,peer,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192049,42.78398748363753,spot_peer,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192049,0.1140461160174451,relative_legacy,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192049,73.32171328916958,baseline,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192418,-94.34164716336323,spot_baseline,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192418,-77.25661948336693,peer,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192418,-1.6213843878650882,relative_legacy,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192418,-92.26852624594854,baseline,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192418,-85.3928519804949,spot_peer,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192459,-642.0794168512359,peer,biak_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192459,-9.413152512810752,relative_legacy,biak_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192459,-871.8272083406314,baseline,biak_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192459,-896.5784284662086,spot_baseline,biak_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192459,-659.3986977627428,spot_peer,biak_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192472,-1.324648670272559,baseline,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192472,-0.7061073036816494,relative_legacy,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192472,-11.340611774092274,peer,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192472,-17.890765022387647,spot_peer,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192472,0.0,spot_baseline,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192924,41.5758666522498,spot_baseline,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192924,11.85704891241824,spot_peer,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192924,26.736123278322346,baseline,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192924,-0.199628092569342,relative_legacy,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,192924,8.348776088701943,peer,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,193275,27.747266023413623,spot_peer,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,193275,-0.0669103592451692,relative_legacy,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,193275,54.631890029634896,baseline,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,193275,27.21783532429933,peer,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,193275,63.78420603241049,spot_baseline,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,195286,36.87719593987659,peer,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,195286,42.78398748363753,spot_peer,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,195286,67.98581370331706,baseline,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,195286,0.1030316334232626,relative_legacy,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,204737,-0.0525329062380664,relative_legacy,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,204737,24.70277041361401,baseline,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,204737,23.963697750068032,spot_peer,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,204737,10.04005820952964,peer,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,208405,0.1307673683355974,relative_legacy,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,208405,49.87017898768727,peer,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,208405,42.78398748363753,spot_peer,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,208405,83.27468998631917,baseline,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,215725,16.841852951414978,spot_peer,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,215725,-0.2231831460339596,relative_legacy,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,215725,48.54268271702416,spot_baseline,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,215725,23.85075863568067,peer,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,215725,47.0723835009015,baseline,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,218666,0.11335632612814,relative_legacy,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,218666,43.697496157390574,spot_peer,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,218666,48.63157538840703,peer,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,218666,86.07642026288279,spot_baseline,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,218666,81.63309604163531,baseline,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,218945,22.667172160454832,peer,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,218945,45.51664750851182,baseline,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,218945,48.54268271702416,spot_baseline,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,218945,16.841852951414978,spot_peer,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,218945,-0.2428692193136458,relative_legacy,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,219886,28.74603411118481,peer,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,219886,64.42254724390277,spot_baseline,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,219886,28.20400347991024,spot_peer,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,219886,56.607115082008114,baseline,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,219886,-0.0623644361478491,relative_legacy,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,220077,14.679582100765094,peer,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,220077,-0.3536098780020001,relative_legacy,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,220077,7.591565602802119,spot_peer,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,220077,35.61438102252753,spot_baseline,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,220077,35.30200785129586,baseline,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,221727,0.0459233497968406,relative_legacy,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,221727,73.69126311908155,baseline,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,221727,36.8837641195138,spot_peer,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,221727,42.85933777101212,peer,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,222142,-0.8461626519225663,peer,predictomatic,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,222142,-34.86350278846327,spot_baseline,predictomatic,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,222142,-0.0202740483511985,relative_legacy,predictomatic,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,222142,-0.6886802245517685,baseline,predictomatic,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29512,"Before January 1, 2025, will Stripe announce on the news section of its website that it is planning an IPO?",2024-11-06 13:55:47.918478+00,222142,-42.83583718988917,spot_peer,predictomatic,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29639 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,182315,-0.8668914415295311,relative_legacy,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,182315,-22.89030803577713,peer,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,182315,-26.347530938071586,spot_peer,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,182315,-73.69655941662059,spot_baseline,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,182315,-65.14244221316565,baseline,RyansAGI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,185690,-3.565089029856995,baseline,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,185690,-34.61145112833542,spot_baseline,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,185690,1.6472594275635974,spot_peer,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,185690,-0.339783340252013,peer,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,185690,-0.0655242075324073,relative_legacy,annabot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,185698,-10.418627355921585,spot_peer,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,185698,0.1282907053228701,relative_legacy,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,185698,25.791135936566103,peer,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,185698,-51.45731728297583,spot_baseline,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,185698,25.2987803135708,baseline,RonanMcGovern,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,185699,73.10384582111199,peer,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,185699,62.29303509201767,spot_baseline,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,185699,71.05529988171968,spot_peer,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,185699,0.3756958244499581,relative_legacy,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,185699,61.3877171555037,baseline,MWG,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,187708,43.935717847425664,spot_baseline,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,187708,57.90683310129515,spot_peer,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,187708,34.01784168842308,peer,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,187708,26.68186876924608,baseline,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,187708,0.0706236162188483,relative_legacy,twsummerbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,188107,35.98959450863827,spot_baseline,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,188107,30.067456924455428,peer,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,188107,21.54615593693324,baseline,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,188107,0.0215327829505828,relative_legacy,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,188107,52.21540567967769,spot_peer,Cassie,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,189585,-173.6965594166206,spot_baseline,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,189585,-1.9541398192788948,relative_legacy,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,189585,-171.62713782474586,baseline,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,189585,-96.5803264989836,peer,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,189585,-97.9727395959326,spot_peer,mf-bot-1,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,189588,0.1348405387818436,relative_legacy,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,189588,37.28804198596839,baseline,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,189588,53.54875751272152,spot_peer,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,189588,55.55702684387506,peer,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,189869,0.1863019041159251,relative_legacy,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,189869,44.044029304735325,peer,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,189869,68.33584468892442,spot_peer,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,189869,38.392976117598806,baseline,VeritasAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,190710,0.0010352202122294,baseline,Bot_Pepa,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,190710,30.490590543586517,spot_peer,Bot_Pepa,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,190710,5.658352836636751,spot_baseline,Bot_Pepa,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,190710,0.0055783858880552,peer,Bot_Pepa,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,190710,0.0,relative_legacy,Bot_Pepa,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,190772,50.551495861514425,baseline,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,190772,0.3111117682994696,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,190772,64.15460290875237,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,190772,57.74582036513479,peer,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,190772,72.3886517147635,spot_peer,Jay_Bailey_Bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191026,11.121190070723966,peer,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191026,10.198403207181844,baseline,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191026,0.0369452465376817,relative_legacy,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191026,65.31637615648403,spot_peer,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191026,54.280599480626535,spot_baseline,manticAI,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191046,75.00482520647344,spot_peer,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191046,26.0528478812222,baseline,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191046,0.1277901369383474,relative_legacy,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191046,27.131605805723087,peer,archipelago,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191284,45.27767771978941,spot_peer,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191284,23.23507594384796,baseline,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191284,26.303440583379377,spot_baseline,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191284,41.07450077813658,peer,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191284,0.01713944774464,relative_legacy,000_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191471,-16.49881235829139,spot_peer,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191471,-0.6575400093075461,relative_legacy,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191471,-12.826724054678984,peer,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191471,-46.59478706094771,baseline,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191471,-59.94620704162715,spot_baseline,HSeldon,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191935,0.2908980544255928,relative_legacy,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191935,66.94879925460322,spot_peer,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191935,66.41980343941637,peer,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191935,54.317122031719045,baseline,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,191935,56.55971758542251,spot_baseline,pgodzinai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192049,73.95572964086867,peer,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192049,64.90645524242797,baseline,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192049,0.3984375192092609,relative_legacy,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192049,75.00482520647344,spot_peer,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192418,-1.677461470133795,relative_legacy,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192418,-76.531617597932,peer,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192418,-147.39311883324118,spot_baseline,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192418,-79.13284539389062,spot_peer,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192418,-144.18169768076316,baseline,InstitutPelFutur,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192472,-37.234784222713664,spot_peer,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192472,-34.67028130610156,peer,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192472,-1.1050477976932096,relative_legacy,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192472,-85.62030537112999,baseline,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192472,-88.8968687611256,spot_baseline,bestworldbot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192924,-0.2265019883384591,relative_legacy,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192924,13.635484682296896,peer,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192924,-4.990490582631392,spot_baseline,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192924,22.8633342248868,spot_peer,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,192924,-3.2135439328357105,baseline,acm_bot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,193275,20.407756969913137,peer,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,193275,-0.2603452593278242,relative_legacy,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,193275,22.8633342248868,spot_peer,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,193275,-4.811907344241101,baseline,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,193275,-4.990490582631392,spot_baseline,histerio,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,195286,-170.65890104346587,peer,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,195286,-2.856723874514782,relative_legacy,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,195286,-266.30033951985456,baseline,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,195286,-332.1928094887361,spot_baseline,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,195286,-211.4960094249705,spot_peer,Unwrapped80T,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,204737,13.750352374993504,spot_baseline,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,204737,36.28650209752768,spot_peer,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,204737,-0.0798735512583588,relative_legacy,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,204737,13.817062860531944,peer,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,204737,5.8820093164461085,baseline,SynapseSeer,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,208405,-373.88164988404,peer,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,208405,-564.3856189774723,spot_baseline,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,208405,-377.8045937098276,spot_peer,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,208405,-553.2975279036361,baseline,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,208405,-5.769900845752361,relative_legacy,mf-bot-4,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,215725,56.77839683695767,baseline,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,215725,0.3220568332569079,relative_legacy,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,215725,68.89481609857809,peer,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,215725,58.496250072115615,spot_baseline,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,215725,68.33584468892442,spot_peer,estr.ai,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,218666,7.91526521186676,baseline,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,218666,55.12639629956964,spot_peer,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,218666,-0.1589266711645897,relative_legacy,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,218666,34.4796461200845,peer,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,218666,40.05379295837285,spot_baseline,GreeneiBot2,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,218945,-97.9727395959326,spot_peer,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,218945,-93.18568212294964,peer,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,218945,-167.14023579916727,baseline,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,218945,-1.9076680795173029,relative_legacy,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,218945,-173.6965594166206,spot_baseline,SeidrBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,219886,44.0527031875852,spot_baseline,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,219886,57.99062409528352,spot_peer,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,219886,41.43743138685409,baseline,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,219886,0.1731292463930606,relative_legacy,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,219886,56.26683366674526,peer,SaraBase,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,220077,0.358995781736744,relative_legacy,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,220077,59.90791185480557,baseline,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,220077,69.70451811975988,spot_peer,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,220077,72.17551947137487,peer,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,220077,60.40713236688608,spot_baseline,mmBot,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,221727,56.30351084537615,baseline,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,221727,67.99123720912795,peer,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,221727,0.3099944724420093,relative_legacy,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,221727,68.33584468892442,spot_peer,mf-bot-5,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,222142,-0.1032603643977887,relative_legacy,predictomatic,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,222142,-181.76886193828665,spot_peer,predictomatic,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,222142,-6.13864819953031,peer,predictomatic,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,222142,-9.861062856408855,baseline,predictomatic,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29513,"Before December 31, 2024, will Tech Crunch report new layoffs at Microsoft?",2024-11-06 13:55:48.077092+00,222142,-290.6890595608519,spot_baseline,predictomatic,True,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,2024-11-07 15:30:00+00,29640 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,182315,11.368818149449508,peer,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,182315,0.034924080994368,relative_legacy,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,182315,56.08884490870535,baseline,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,182315,16.63849940243436,spot_peer,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,182315,92.5999418556223,spot_baseline,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,185690,-0.6013098884551185,spot_peer,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,185690,-0.0098190379553187,relative_legacy,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,185690,-0.0387510308549207,peer,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,185690,68.61643260613592,spot_baseline,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,185690,6.087009561006893,baseline,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,185698,5.1039890947073925,spot_peer,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,185698,-0.0169206881453148,relative_legacy,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,185698,3.2478976695233377,peer,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,185698,28.371542414270323,baseline,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,185699,94.11063109464314,spot_baseline,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,185699,0.0599145428914118,relative_legacy,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,185699,17.00367358735677,peer,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,185699,74.29642532565073,baseline,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,185699,17.724411981264996,spot_peer,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,187708,-0.1102378685595915,relative_legacy,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,187708,32.11636071686064,baseline,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,187708,-1.0959981353449963,peer,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,187708,64.33944534798923,spot_baseline,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,187708,-3.6756908684442,spot_peer,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,188107,87.44691179161411,spot_baseline,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,188107,7.658495435214295,peer,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,188107,46.006138336097614,baseline,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,188107,0.004643811455695,relative_legacy,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,188107,12.934401947403924,spot_peer,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,188909,78.24085649273731,spot_baseline,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,188909,-19.9232859495712,peer,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,188909,-0.4637127669871583,relative_legacy,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,188909,6.316911736816119,spot_peer,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,188909,33.34220258641177,baseline,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,189585,16.203428026282747,peer,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,189585,0.022248941744805,relative_legacy,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,189585,83.60023626829847,baseline,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,189585,11.031528307739109,spot_peer,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,189588,-0.8122129640386534,relative_legacy,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,189588,-45.39963543285874,peer,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,189588,0.0,spot_baseline,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,189588,-49.92412583025842,spot_peer,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,189588,-0.0126771472948158,baseline,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,189869,21.275748244674663,peer,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,189869,89.11616911630905,baseline,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,189869,0.0962016487450419,relative_legacy,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,189869,16.63849940243436,spot_peer,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,190772,-11.413286469996796,peer,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,190772,34.33170069947508,baseline,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,190772,-0.3265580253866249,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,190772,-18.03682363417363,spot_peer,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,190772,44.36066514756145,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191026,56.17331112798617,spot_baseline,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191026,-0.0762243303163244,relative_legacy,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191026,9.839842992977198,baseline,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191026,-9.545665738767836,spot_peer,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191026,-3.133583154061674,peer,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191046,36.62560881499756,baseline,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191046,7.054625841715984,peer,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191046,0.0257066844309714,relative_legacy,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191046,16.63849940243436,spot_peer,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191471,14.43195437827148,spot_peer,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191471,11.372680215289934,peer,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191471,89.53026213333065,spot_baseline,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191471,59.62598712993878,baseline,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191471,0.0174600353844578,relative_legacy,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191935,-86.91263853501586,spot_peer,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191935,-51.45731728297583,spot_baseline,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191935,-48.11082080959631,baseline,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191935,-78.03182390874706,peer,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191935,-1.253383727900305,relative_legacy,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191975,92.70114810606448,spot_baseline,jkraybill_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191975,16.7112484083667,spot_peer,jkraybill_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191975,10.532714273844151,peer,jkraybill_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191975,52.556768449925045,baseline,jkraybill_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,191975,0.0335816809544892,relative_legacy,jkraybill_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192049,16.63849940243436,spot_peer,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192049,19.452484818122084,baseline,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192049,3.6476194145652383,peer,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192049,0.0173743103593721,relative_legacy,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192418,-14.315235316442871,baseline,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192418,-60.85040152810709,spot_peer,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192418,-0.9206389020548288,relative_legacy,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192418,-15.200309344505014,spot_baseline,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192418,-53.57657874012784,peer,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192472,22.586698533994447,peer,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192472,17.724411981264996,spot_peer,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192472,91.66270868020716,baseline,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192472,94.11063109464314,spot_baseline,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192472,0.1120555140742565,relative_legacy,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192924,-15.030708699169685,spot_peer,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192924,-8.054221611104374,peer,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192924,48.54268271702416,spot_baseline,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192924,-0.2379894666059959,relative_legacy,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,192924,30.154156644424692,baseline,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,193275,87.65660587517209,spot_baseline,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,193275,12.039961187874097,peer,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,193275,0.0069062139585203,relative_legacy,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,193275,64.47406029697538,baseline,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,193275,13.085134101417006,spot_peer,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,195286,16.63849940243436,spot_peer,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,195286,48.23724826120048,baseline,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,195286,0.0314978916487319,relative_legacy,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,195286,9.508895305434704,peer,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,208405,21.616066268398225,peer,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,208405,0.0977721357214815,relative_legacy,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,208405,16.63849940243436,spot_peer,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,208405,90.5849686592742,baseline,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,215725,11.922896973354062,peer,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,215725,0.036073306129717,relative_legacy,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,215725,16.63849940243436,spot_peer,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,215725,58.24160533472535,baseline,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,218666,13.269352226861171,peer,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,218666,-0.0135914556342028,relative_legacy,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,218666,84.79969065549501,spot_baseline,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,218666,72.95199755040817,baseline,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,218666,11.031528307739109,spot_peer,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,219886,96.75375360708584,spot_baseline,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,219886,84.77617092401877,baseline,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,219886,0.0923433507553836,relative_legacy,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,219886,21.31183738649469,peer,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,219886,19.624339451134496,spot_peer,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,220077,-10.971287164591484,peer,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,220077,-22.71597988548157,spot_peer,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,220077,-0.3499668233695642,relative_legacy,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,220077,46.83776836116694,baseline,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,221727,74.65791117848586,baseline,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,221727,10.017042856930958,peer,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,221727,5.1039890947073925,spot_peer,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,221727,-0.0589594217608785,relative_legacy,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29556,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public?",2024-11-07 14:18:32.440854+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29694 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,182315,-3.155940787625603,spot_peer,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,182315,37.85116232537298,spot_baseline,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,182315,-2.195208293634348,peer,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,182315,-0.0720012485335634,relative_legacy,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,182315,33.15924339322903,baseline,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,185690,4.552604571823322,baseline,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,185690,0.5640043080988857,peer,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,185690,6.073334657297481,spot_peer,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,185690,-0.0001788185829874,relative_legacy,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,185690,50.69065545806932,spot_baseline,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,185698,11.68414670103682,spot_peer,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,185698,0.055016134094982,relative_legacy,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,185698,58.496250072115615,spot_baseline,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,185698,23.343882729037627,baseline,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,185698,6.289849380163338,peer,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,185699,5.682100358697006,peer,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,185699,40.51547457299578,baseline,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,185699,6.000329583037319,spot_peer,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,185699,50.58909297299573,spot_baseline,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,185699,0.03525617455709,relative_legacy,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,187708,29.54931035412085,spot_peer,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,187708,83.34973368598351,spot_baseline,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,187708,42.52032569148659,baseline,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,187708,15.29581359284306,peer,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,187708,0.1716235378870603,relative_legacy,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,188107,0.585180200130553,peer,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,188107,-0.0326248700398201,relative_legacy,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,188107,22.93129440814097,baseline,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,188107,0.7578710031881695,spot_peer,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,188107,43.29594072761063,spot_baseline,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,188909,22.194775735436977,spot_peer,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,188909,0.2280718232632335,relative_legacy,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,188909,73.11832415721999,spot_baseline,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,188909,19.79658080255533,peer,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,188909,67.66882451692616,baseline,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,189585,37.31984480300222,baseline,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,189585,-3.2830085761052765,peer,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,189585,-0.0844906280496702,relative_legacy,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,189585,37.85116232537298,spot_baseline,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,189585,-3.155940787625603,spot_peer,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,189588,4.529330398686287,spot_peer,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,189588,48.54268271702416,spot_baseline,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,189588,47.74830539291048,baseline,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,189588,0.0211169299905298,relative_legacy,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,189588,4.521530302012975,peer,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,189869,0.290090121140139,relative_legacy,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,189869,73.67420387455444,baseline,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,189869,24.35555376132836,peer,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,189869,24.664028192563357,spot_peer,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,190772,-43.440282414577496,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,190772,-61.58980005814247,spot_peer,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,190772,-33.64099401638924,baseline,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,190772,-47.32203793093984,peer,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,190772,-0.6951385953503444,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191026,10.042152443791556,baseline,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191026,0.9868724958965074,peer,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191026,-0.0023380752372091,relative_legacy,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191026,13.315752298721248,spot_peer,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191026,60.766091187136425,spot_baseline,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191046,-67.35259943715988,spot_peer,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191046,-51.45731728297583,spot_baseline,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191046,-0.4017419333460085,relative_legacy,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191046,-20.38435870327236,baseline,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191046,-26.512783418435564,peer,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191471,39.50489866610232,baseline,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191471,8.487720412053541,peer,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191471,58.496250072115615,spot_baseline,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191471,0.0741961014442044,relative_legacy,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191471,11.68414670103682,spot_peer,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191935,11.68414670103682,spot_peer,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191935,58.496250072115615,spot_baseline,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191935,11.562360608963465,peer,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191935,0.1163464276373821,relative_legacy,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,191935,54.8296875867353,baseline,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192049,-0.0021079454472323,relative_legacy,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192049,14.191716332929506,baseline,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192049,1.4394997955493494,peer,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192049,4.529330398686287,spot_peer,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192418,-41.29036243025112,spot_peer,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192418,-15.200309344505014,spot_baseline,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192418,-39.24437242165092,peer,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192418,-0.5778905031451963,relative_legacy,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192418,-14.31824453364846,baseline,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192472,36.898005966441445,baseline,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192472,-3.0820244200642466,peer,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192472,-3.155940787625603,spot_peer,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192472,-0.0828092659982626,relative_legacy,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192924,41.5758666522498,spot_baseline,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192924,-0.4785514367872847,spot_peer,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192924,25.87769239549634,baseline,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192924,-0.0417350832291032,relative_legacy,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,192924,0.0572346590393271,peer,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,193275,-8.631820445153561,peer,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,193275,18.631110921776617,baseline,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,193275,24.610400988391653,spot_baseline,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,193275,-0.1630571492649724,relative_legacy,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,193275,-12.673655561606374,spot_peer,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,195286,18.37703037456271,spot_peer,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,195286,35.38612684868328,baseline,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,195286,0.0952070837890065,relative_legacy,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,195286,9.800024861303308,peer,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,204737,25.63441686685332,baseline,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,204737,0.056438570561493,relative_legacy,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,204737,6.536888913393554,peer,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,204737,15.75147991693266,spot_peer,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,204737,64.15460290875237,spot_baseline,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,208405,11.68414670103682,spot_peer,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,208405,57.22505996111182,baseline,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,208405,0.1184872698655437,relative_legacy,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,208405,11.710254393779818,peer,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,215725,16.00025976250469,peer,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,215725,48.191551364683455,baseline,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,215725,0.1784082353780161,relative_legacy,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,215725,24.664028192563357,spot_peer,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,218666,42.22330006830476,spot_baseline,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,218666,-0.0131638029248363,spot_peer,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,218666,-0.0243242661645553,relative_legacy,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,218666,1.3801696754079766,peer,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,218666,37.387682329072895,baseline,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,219886,-16.083373251986337,peer,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,219886,15.685914377173944,baseline,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,219886,-0.2593583743024627,relative_legacy,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,219886,17.248751551013378,spot_baseline,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,219886,-17.965351244943598,spot_peer,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,220077,-3.155940787625603,spot_peer,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,220077,47.75986003437036,baseline,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,220077,4.399656184009125,peer,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,220077,0.0148206608064434,relative_legacy,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,221727,-0.0829928666409386,relative_legacy,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,221727,-3.096925709760065,peer,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,221727,36.90198675671327,baseline,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,221727,-3.155940787625603,spot_peer,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29557,Will there be major civil unrest or rioting in the US before 1 January 2025?,2024-11-07 14:18:32.451307+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29695 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,182315,4.493635817064786,spot_peer,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,182315,0.0271927752375183,relative_legacy,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,182315,8.01980418532134,peer,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,182315,71.4974511094736,baseline,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,182315,81.55754288625727,spot_baseline,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,185690,77.55984297076746,spot_baseline,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,185690,7.062612410653538,baseline,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,185690,1.61606468325882,spot_peer,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,185690,0.0,relative_legacy,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,185690,0.2178261605911994,peer,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,185698,4.036346602219854,peer,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,185698,30.911595481042585,baseline,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,185698,0.0318051082340216,relative_legacy,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,185698,9.109780391728307,spot_peer,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,185698,87.97057662822883,spot_baseline,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,185699,40.05379295837288,spot_baseline,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,185699,32.52200033580701,baseline,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,185699,-0.3124690818982035,relative_legacy,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,185699,-17.384082132901504,peer,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,185699,-25.38104093754324,spot_peer,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,187708,-2.586752010758085,spot_peer,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,187708,0.1928775381995421,peer,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,187708,-0.0359172107259774,relative_legacy,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,187708,37.368641006039326,baseline,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,187708,71.7210299019596,spot_baseline,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,188909,31.034012061215048,spot_baseline,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,188909,-1.3085029984632006,relative_legacy,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,188909,-55.10191173706015,baseline,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,188909,-31.87353954714329,spot_peer,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,188909,-89.00503280649144,peer,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,189585,83.60337668874257,baseline,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,189585,12.026489753575897,peer,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,189585,6.827355463240117,spot_peer,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,189585,0.0640688845110373,relative_legacy,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,189588,84.79969065549501,spot_baseline,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,189588,11.985790807207136,peer,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,189588,6.827355463240117,spot_peer,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,189588,83.42120528165883,baseline,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,189588,0.0637865080038714,relative_legacy,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,189869,65.25736974650543,baseline,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,189869,-0.2478214598703089,peer,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,189869,-5.403959777999707,spot_peer,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,189869,-0.1008492978160003,relative_legacy,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,190772,73.11832415721999,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,190772,1.879276066352341,peer,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,190772,56.67214963723943,baseline,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,190772,-1.5809702614099497,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,190772,-0.0427319477347564,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191026,-2.9549006147373365,spot_peer,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191026,-4.598251367021515,peer,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191026,-0.0732329970804667,relative_legacy,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191026,8.64195052264646,baseline,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191026,71.20957507614304,spot_baseline,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191046,92.5999418556223,spot_baseline,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191046,36.53961713833069,baseline,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191046,12.442028441307198,spot_peer,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191046,0.05284355478919,relative_legacy,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191046,5.89151385897936,peer,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191471,55.13216166944554,baseline,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191471,5.420029592287262,peer,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191471,0.0177200771586134,relative_legacy,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191471,4.493635817064786,spot_peer,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191471,81.55754288625727,spot_baseline,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191935,44.36066514756148,spot_baseline,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191935,-22.28092553353788,spot_peer,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191935,-16.5299762385397,peer,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191935,-0.3186311363524941,relative_legacy,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,191935,41.608536687329554,baseline,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192049,-0.0309192769663329,relative_legacy,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192049,-0.91819746958587,peer,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192049,-5.403959777999707,spot_peer,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192049,19.91210599243378,baseline,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192418,89.53026213333067,spot_baseline,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192418,10.232452448704542,spot_peer,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192418,14.593379875678831,peer,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192418,0.1056018844282672,relative_legacy,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192418,84.36231280481697,baseline,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192472,-0.0167539516410041,relative_legacy,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192472,0.8916740260146591,spot_peer,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192472,6.006247268658487,peer,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192472,74.73407223695335,baseline,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192924,92.5999418556223,spot_baseline,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192924,0.0842773359549109,relative_legacy,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192924,9.845524753433756,peer,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192924,57.79061811742069,baseline,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,192924,12.442028441307198,spot_peer,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,193275,3.664283916751149,spot_peer,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,193275,5.798769389987895,peer,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,193275,0.0132584154343066,relative_legacy,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,193275,61.07697210378854,baseline,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,193275,80.4053558967353,spot_baseline,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,195286,-0.0566284503277812,relative_legacy,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,195286,35.50114675595803,baseline,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,195286,-5.403959777999707,spot_peer,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,195286,-1.2836591357772926,peer,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,204737,35.125709096786494,baseline,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,204737,0.0332022967824167,relative_legacy,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,204737,4.526858178841461,peer,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,204737,8.770598313886873,spot_peer,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,204737,87.49936389329673,spot_baseline,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,208405,11.937614589676878,peer,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,208405,6.827355463240117,spot_peer,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,208405,0.0637886647528846,relative_legacy,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,208405,82.95885567139757,baseline,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,215725,6.827355463240117,spot_peer,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,215725,0.0358706693090578,relative_legacy,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,215725,53.45103594553872,baseline,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,215725,6.39720857021665,peer,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,215725,84.79969065549501,spot_baseline,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,218666,81.88505608954335,spot_baseline,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,218666,70.38276154925629,baseline,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,218666,0.025222428689091,relative_legacy,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,218666,4.729382011036171,spot_peer,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,218666,7.743265268020623,peer,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,219886,5.00332930104408,peer,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,219886,68.3382909508428,baseline,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,219886,-0.0166754081810186,relative_legacy,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,219886,0.8916740260146591,spot_peer,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,219886,76.55347463629771,spot_baseline,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,220077,0.8916740260146591,spot_peer,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,220077,71.25590197913633,baseline,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,220077,-0.0635632775774872,relative_legacy,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,220077,2.437518798926466,peer,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,221727,-0.0166754081810186,relative_legacy,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,221727,0.8916740260146591,spot_peer,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,221727,6.007350050968604,peer,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,221727,74.6611566747385,baseline,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29558,"Will the Jackson Hole ski resort be listed as Open by On the Snow's Ski Report on November 29, 2024?",2024-11-07 14:18:32.456555+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29696 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,182315,-34.86187118122154,spot_peer,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,182315,9.73959834016521,baseline,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,182315,11.103131238874395,spot_baseline,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,182315,-29.14321149905587,peer,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,182315,-0.4872671028626773,relative_legacy,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,185690,0.8649508602045568,spot_peer,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,185690,-0.0330442069031528,peer,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,185690,-0.0112158539924977,relative_legacy,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,185690,60.80522204669491,spot_baseline,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,185690,5.59911419486942,baseline,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,185698,18.11263795006637,spot_peer,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,185698,84.79969065549501,spot_baseline,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,185698,0.0503322373676637,relative_legacy,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,185698,30.769945611920026,baseline,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,185698,6.845235284632568,peer,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,185699,79.90873060740036,spot_baseline,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,185699,66.27481621655949,baseline,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,185699,13.68732711158138,peer,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,185699,14.596921479995707,spot_peer,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,185699,0.0968367211176791,relative_legacy,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,187708,-0.1212946761982747,relative_legacy,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,187708,48.12989415475651,spot_baseline,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,187708,-4.264479480940292,peer,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,187708,-8.246319441542049,spot_peer,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,187708,25.324609014275467,baseline,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,188107,4.812188340203371,spot_peer,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,188107,2.7063477550420427,peer,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,188107,66.29650127224292,spot_baseline,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,188107,35.52781552171313,baseline,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,188107,-0.0257070522390329,relative_legacy,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,188909,73.11832415721999,spot_baseline,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,188909,-1.0496759916035234,peer,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,188909,9.715846279908291,spot_peer,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,188909,-0.0990975461476447,relative_legacy,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,188909,53.38033063510889,baseline,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,189585,0.0264602887462131,relative_legacy,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,189585,8.146383791007022,peer,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,189585,5.898100919034027,spot_peer,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,189585,66.84855233810558,baseline,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,189588,-0.7947827544918884,spot_peer,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,189588,-0.065176830653893,relative_legacy,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,189588,1.3983008138852673,peer,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,189588,57.54350865186775,baseline,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,189869,95.60566524124027,spot_baseline,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,189869,92.0114439912019,baseline,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,189869,25.88018101987116,spot_peer,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,189869,0.2906240148438487,relative_legacy,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,189869,27.54923145251836,peer,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,190772,5.898100919034027,spot_peer,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,190772,-0.0161478742132287,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,190772,67.80719051126377,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,190772,52.58648121385241,baseline,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,190772,5.675495277749672,peer,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191026,-14.382785522169838,spot_peer,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191026,39.59302529961951,spot_baseline,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191026,0.0249099978390953,relative_legacy,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191026,17.934015182798326,baseline,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191026,3.795158576211608,peer,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191046,76.55347463629771,spot_baseline,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191046,4.640315901676412,peer,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191046,0.0148838663427376,relative_legacy,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191046,12.18509873703465,spot_peer,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191046,30.235331856721363,baseline,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191471,64.15460290875237,spot_baseline,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191471,43.4003848687053,baseline,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191471,2.807416210424144,peer,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191471,3.2725504614039544,spot_peer,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191471,-0.0423210168582832,relative_legacy,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191935,76.55347463629771,spot_baseline,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191935,0.101730581718986,relative_legacy,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191935,71.90635709501416,baseline,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191935,12.18509873703465,spot_peer,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,191935,13.768580721394022,peer,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192049,-0.0189630445455778,relative_legacy,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192049,25.45395422147041,baseline,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192049,2.015355990927326,peer,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192049,5.898100919034027,spot_peer,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192418,-0.5656920077743989,relative_legacy,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192418,-38.775682972035305,spot_peer,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192418,5.658352836636751,spot_baseline,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192418,5.333038087613804,baseline,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192418,-35.058361935882004,peer,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192472,51.4015114194671,baseline,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192472,-0.1222551157066962,relative_legacy,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192472,-5.028174778814648,spot_peer,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192472,-2.7926732939812093,peer,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192472,52.60688116675877,spot_baseline,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192924,-0.0758753703638208,relative_legacy,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192924,-0.7947827544918884,spot_peer,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192924,-0.1208091712772346,peer,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192924,36.604520212015856,baseline,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,192924,58.496250072115615,spot_baseline,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,193275,58.56306478918209,baseline,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,193275,76.38364588909515,spot_baseline,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,193275,0.0474823606851416,relative_legacy,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,193275,10.285133333960196,peer,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,193275,12.06302255612942,spot_peer,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,195286,12.18509873703465,spot_peer,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,195286,0.0280079129969808,relative_legacy,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,195286,40.12325097535289,baseline,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,195286,6.498319459106073,peer,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,204737,3.249230041974005,peer,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,204737,28.774793930927903,baseline,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,204737,8.458816298776245,spot_peer,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,204737,71.36958148433591,spot_baseline,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,204737,-0.0052973454370887,relative_legacy,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,208405,-0.2666126521061825,relative_legacy,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,208405,-13.393977785244234,peer,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,208405,37.85116232537298,spot_baseline,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,208405,-15.634870243154309,spot_peer,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,208405,37.038513155494776,baseline,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,215725,12.18509873703465,spot_peer,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,215725,48.28932763158844,baseline,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,215725,8.129762361087767,peer,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,215725,0.0375594921213049,relative_legacy,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,218666,-7.74191328562296,peer,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,218666,44.78436443620852,spot_baseline,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,218666,-10.65115076646609,spot_peer,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,218666,38.58976934769563,baseline,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,218666,-0.194696697982084,relative_legacy,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,219886,-0.4531349437655066,relative_legacy,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,219886,-26.66187520126212,peer,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,219886,-31.591621031292732,spot_peer,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,219886,13.975002687543984,baseline,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,219886,15.652605852865612,spot_baseline,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,220077,0.0856349257029672,relative_legacy,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,220077,73.25465915292,baseline,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,220077,12.417342441406175,peer,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,220077,12.18509873703465,spot_peer,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,221727,-0.2662293916001488,relative_legacy,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,221727,-15.634870243154309,spot_peer,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,221727,-13.354914672811438,peer,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,221727,36.90920958913669,baseline,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29559,"Will Thomas Massie be announced as the nominee for Secretary of Agriculture before January 1, 2025?",2024-11-07 14:18:32.461573+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29697 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,182315,0.0958804381510111,relative_legacy,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,182315,75.83956537011528,baseline,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,182315,86.39384504239716,spot_baseline,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,182315,13.333009476736176,peer,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,182315,15.256209277881537,spot_peer,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,185690,6.501010679048591,spot_peer,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,185690,74.15748474187957,spot_baseline,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,185690,-0.0005398687527166,relative_legacy,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,185690,6.9120904560702,baseline,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,185690,0.4913218009052302,peer,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,185698,-0.1751059151235912,relative_legacy,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,185698,-9.939234467885194,peer,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,185698,-27.738881746092584,spot_peer,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,185698,26.303440583379377,spot_baseline,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,185698,9.254580924614746,baseline,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,185699,31.034012061215048,spot_baseline,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,185699,-24.35412584178385,spot_peer,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,185699,26.091065785533548,baseline,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,185699,-20.96972808101468,peer,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,185699,-0.3741352089163076,relative_legacy,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,187708,20.45453618802953,spot_peer,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,187708,0.0869949364363022,relative_legacy,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,187708,93.65908298239388,spot_baseline,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,187708,49.870488660363165,baseline,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,187708,10.46198614389507,peer,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,188107,80.73549220576041,spot_baseline,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,188107,43.51767310025652,baseline,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,188107,0.0183982165118714,relative_legacy,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,188107,11.207619533026692,spot_peer,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,188107,5.581528343567926,peer,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,188909,48.54268271702416,spot_baseline,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,188909,-4.486743590535808,baseline,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,188909,-49.36192167598372,peer,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,188909,-0.7670976838365884,relative_legacy,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,188909,-11.826553505859476,spot_peer,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,189585,75.54876424757451,baseline,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,189585,8.19694066353719,peer,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,189585,8.215357662239361,spot_peer,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,189585,0.0208722533223,relative_legacy,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,189588,-4.704708707206414,spot_peer,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,189588,-0.1568685965205466,relative_legacy,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,189588,-4.8025337401391965,peer,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,189588,57.576143603132,baseline,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,189869,1.957332184413832,spot_peer,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,189869,1.88858651997944,peer,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,189869,65.25873646321921,baseline,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,189869,-0.0651782941395622,relative_legacy,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,190772,9.83823620160545,peer,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,190772,12.96220806139532,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,190772,83.18772411916731,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,190772,0.0553901016079041,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,190772,64.55602082505985,baseline,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191026,9.000604364975372,baseline,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191026,-27.90505488838175,spot_peer,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191026,26.071195201579545,spot_baseline,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191026,-0.0670469481652024,relative_legacy,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191026,-3.338627985621806,peer,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191046,3.0541441757494643,peer,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191046,8.215357662239361,spot_peer,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191046,0.0016933918466271,relative_legacy,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191046,30.18106419469808,baseline,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191284,-0.2474061420303364,relative_legacy,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191284,-11.452157150460993,peer,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191284,-11.826553505859476,spot_peer,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191284,48.54268271702416,spot_baseline,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191284,45.91775038764829,baseline,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191471,46.46682670034443,spot_baseline,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191471,-0.2045344229770067,relative_legacy,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191471,31.461646282145143,baseline,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191471,-13.311842533172983,spot_peer,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191471,-9.514569880420098,peer,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191935,78.24085649273731,spot_baseline,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191935,0.0290298604013705,relative_legacy,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191935,9.422690799084911,spot_peer,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191935,73.22179553440644,baseline,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,191935,8.633758507651313,peer,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192049,2.923915476452708,peer,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192049,0.0016933918466271,relative_legacy,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192049,8.215357662239361,spot_peer,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192049,28.8127526919349,baseline,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192418,-0.0154019218480574,relative_legacy,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192418,73.11832415721999,spot_baseline,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192418,5.757484248694224,spot_peer,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192418,5.4253569909550885,peer,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192418,68.93295396832976,baseline,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192472,67.80719051126377,spot_baseline,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192472,66.31992693227446,baseline,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192472,1.957332184413832,spot_peer,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192472,1.8950228212481728,peer,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192472,-0.064881714493252,relative_legacy,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192924,8.412355382458902,peer,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192924,0.0475771028302687,relative_legacy,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192924,14.115581026363085,spot_peer,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192924,53.18671346163087,baseline,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,192924,84.79969065549501,spot_baseline,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,193275,44.99574836280033,spot_baseline,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,193275,-11.427247484202391,peer,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,193275,35.40041607692069,baseline,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,193275,-14.364409038516474,spot_peer,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,193275,-0.2390650849294252,relative_legacy,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,195286,19.696713544585094,spot_peer,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,195286,9.92732127299896,peer,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,195286,0.0805255318977833,relative_legacy,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,195286,48.65887421586925,baseline,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,204737,13.750352374993504,spot_baseline,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,204737,-15.127161445837288,peer,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,204737,5.567186573247939,baseline,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,204737,-36.72070130631243,spot_peer,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,204737,-0.2530257835049817,relative_legacy,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,208405,90.69419326622746,baseline,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,208405,19.54571386597952,peer,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,208405,19.696713544585094,spot_peer,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,208405,0.1768654590670797,relative_legacy,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,215725,12.025820449102191,peer,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,215725,19.696713544585094,spot_peer,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,215725,92.5999418556223,spot_baseline,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,215725,58.47173950938551,baseline,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,215725,0.09732672961579,relative_legacy,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,218666,2.261483022289736,peer,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,218666,69.59938131099001,spot_baseline,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,218666,59.94649969487154,baseline,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,218666,-0.055588247314842,relative_legacy,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,218666,3.2396568294261825,spot_peer,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,218945,-0.2415892219662918,relative_legacy,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,218945,48.14117251997263,baseline,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,218945,49.56951626240687,spot_baseline,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,218945,-10.979198461669611,peer,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,218945,-11.09184715552513,spot_peer,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,219886,7.646578153842541,peer,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,219886,0.0171907661112826,relative_legacy,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,219886,77.41650515064168,spot_baseline,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,219886,8.83286183540554,spot_peer,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,219886,68.16892617965233,baseline,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,220077,0.0121126917612778,relative_legacy,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,220077,75.15333359187947,baseline,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,220077,7.532768973249399,peer,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,220077,8.215357662239361,spot_peer,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,221727,74.7099993961379,baseline,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,221727,8.215357662239361,spot_peer,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,221727,0.0204749443395672,relative_legacy,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,221727,8.131894995191036,peer,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,222142,-0.014852505883714,relative_legacy,predictomatic,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,222142,-0.9097706262891598,peer,predictomatic,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,222142,0.3602264246823233,baseline,predictomatic,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,222142,-36.20213122566429,spot_peer,predictomatic,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,222142,14.475111531082195,spot_baseline,predictomatic,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,222631,5.738533508686984,baseline,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,222631,0.6144077621285831,peer,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,222631,8.215357662239361,spot_peer,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,222631,0.0026273039635389,relative_legacy,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29560,"Will Merck stock continuously remain below its all-time high before January 1, 2025?",2024-11-07 14:18:32.466534+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29698 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,182315,44.36066514756145,spot_baseline,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,182315,38.97677394419368,baseline,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,182315,-0.0756700802937537,relative_legacy,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,182315,5.058284428757477,peer,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,182315,8.8422206292782,spot_peer,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,185690,2.9541459636584597,baseline,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,185690,-0.0151636799321522,relative_legacy,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,185690,-0.4934910502696982,spot_peer,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,185690,-0.1672057901494616,peer,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,185690,31.31297348378517,spot_baseline,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,185698,58.496250072115615,spot_baseline,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,185698,18.9563272987186,spot_peer,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,185698,-0.1074784584258454,relative_legacy,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,185698,7.108390129746847,baseline,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,185698,-4.060749827312022,peer,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,185699,34.277102020604865,spot_peer,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,185699,0.2251321970908331,relative_legacy,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,185699,68.24155665353217,baseline,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,185699,26.756063935945164,peer,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,185699,79.90873060740036,spot_baseline,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,187708,12.697285625776551,spot_baseline,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,187708,-13.813141685586023,spot_peer,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,187708,6.838440665869157,baseline,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,187708,-9.39339066964901,peer,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,187708,-0.2188167625295001,relative_legacy,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,188107,-0.2917221391650454,relative_legacy,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,188107,-14.522180308064645,peer,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,188107,-22.89813547373708,spot_peer,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,188107,0.0,baseline,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,188107,0.0,spot_baseline,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,188909,8.406426478847456,spot_baseline,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,188909,64.74335903979049,baseline,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,188909,-16.883280441584738,spot_peer,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,188909,21.93178447699573,peer,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,188909,0.1533750427612104,relative_legacy,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,189585,47.91053798820217,baseline,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,189585,8.9621285941782,peer,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,189585,-0.0224928379260939,relative_legacy,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,189585,11.83448250006555,spot_peer,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,189588,67.80719051126377,spot_baseline,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,189588,22.837176038119008,peer,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,189588,0.1672109717185532,relative_legacy,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,189588,25.618368190338845,spot_peer,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,189588,66.7473239426955,baseline,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,189869,-47.6113373695169,peer,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,189869,-45.93230851262324,spot_peer,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,189869,-30.983327702337952,baseline,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,189869,-0.7989816037512211,relative_legacy,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,190772,54.59683691052925,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,190772,16.166270794159193,spot_peer,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,190772,-0.0006194690780825,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,190772,9.834929374393791,peer,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,190772,42.39652429880426,baseline,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191026,-0.2431586728018236,relative_legacy,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191026,-15.40008669516772,peer,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191026,-14.358561263402107,baseline,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191026,-72.44005673800368,spot_peer,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191026,-69.24032524519176,spot_baseline,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191046,26.830192103205786,baseline,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191046,8.85213898651168,peer,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191046,0.0642156946018505,relative_legacy,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191046,25.618368190338845,spot_peer,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191284,27.891464720536952,peer,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191284,31.876393668164376,spot_peer,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191284,72.08134161489824,baseline,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191284,0.2388181298026937,relative_legacy,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191284,76.55347463629771,spot_baseline,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191471,58.496250072115615,spot_baseline,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191471,18.9563272987186,spot_peer,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191471,0.0278450124003571,relative_legacy,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191471,10.388933684682176,peer,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191471,39.656911583472144,baseline,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191935,24.78056449207802,baseline,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191935,-0.2343269348644646,relative_legacy,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191935,-4.0778457401675725,spot_peer,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191935,-6.507568137956405,peer,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,191935,26.303440583379377,spot_baseline,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192049,31.164428933144368,baseline,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192049,10.202208856570628,peer,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192049,0.0701672493954408,relative_legacy,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192049,25.618368190338845,spot_peer,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192418,-69.50113337124685,baseline,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192418,-75.0775769622261,peer,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192418,-1.1768322627378245,relative_legacy,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192418,-75.62852244312964,spot_peer,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192418,-73.69655941662059,spot_baseline,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192472,26.303440583379377,spot_baseline,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192472,-4.0778457401675725,spot_peer,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192472,25.751987656460503,baseline,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192472,-6.876460323829775,peer,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192472,-0.2398855623469747,relative_legacy,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192924,11.83448250006555,spot_peer,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192924,-0.0347195756386811,relative_legacy,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192924,5.115528071907867,peer,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192924,30.512205706297284,baseline,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,192924,48.54268271702416,spot_baseline,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,193275,62.29303509201767,spot_baseline,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,193275,0.059144442473167,relative_legacy,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,193275,21.672952673415207,spot_peer,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,193275,49.47156890466237,baseline,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,193275,14.483069671167993,peer,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,195286,0.0273738318494991,relative_legacy,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,195286,30.797786279544777,baseline,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,195286,18.9563272987186,spot_peer,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,195286,8.154802149456838,peer,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,204737,48.54268271702416,spot_baseline,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,204737,19.76011341465765,baseline,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,204737,11.83448250006555,spot_peer,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,204737,-0.0131438340083178,relative_legacy,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,204737,3.4581176705235346,peer,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,208405,1.351711380752266,peer,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,208405,4.184627310003938,spot_peer,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,208405,37.12660676049946,baseline,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,208405,-0.1270347383176785,relative_legacy,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,208405,37.85116232537298,spot_baseline,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,215725,67.80719051126377,spot_baseline,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,215725,13.914601750120932,peer,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,215725,0.086697686594317,relative_legacy,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,215725,25.618368190338845,spot_peer,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,215725,42.85962859764871,baseline,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,218666,18.516701388814848,peer,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,218666,57.34761143849962,baseline,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,218666,25.618368190338845,spot_peer,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,218666,0.1117667205683515,relative_legacy,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,218666,67.80719051126377,spot_baseline,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,218945,-51.45731728297583,spot_baseline,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,218945,-61.786724540044496,peer,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,218945,-0.9940447115334112,relative_legacy,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,218945,-49.99363190892037,baseline,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,218945,-59.71619420289655,spot_peer,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,219886,-20.772235609013936,peer,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,219886,-20.60129842240085,spot_peer,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,219886,-0.4310171081630403,relative_legacy,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,219886,2.7567091185973505,baseline,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,219886,3.210084316702407,spot_baseline,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,220077,58.496250072115615,spot_baseline,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,220077,57.11530219338677,baseline,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,220077,15.396997573025056,peer,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,220077,0.0657247861969804,relative_legacy,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,220077,18.9563272987186,spot_peer,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,221727,28.93821388912148,peer,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,221727,0.2508346798842524,relative_legacy,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,221727,31.876393668164376,spot_peer,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,221727,74.7066912979461,baseline,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,222142,-84.8806733254861,spot_baseline,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,222142,-83.63083162815302,spot_peer,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,222142,-0.0334798172136781,relative_legacy,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,222142,-2.129904022955151,baseline,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,222142,-2.0985418440878973,peer,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,222631,2.229201435436752,peer,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,222631,5.6059502771908765,baseline,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,222631,0.017965580520244,relative_legacy,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,222631,31.876393668164376,spot_peer,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29561,"Will either major party candidate in California’s 13th Congressional District concede the election before December 1, 2024?",2024-11-07 14:18:32.76855+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29699 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,182315,0.229293113403332,relative_legacy,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,182315,64.15460290875237,spot_baseline,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,182315,18.06876514741372,spot_peer,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,182315,56.40453731461936,baseline,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,182315,17.17538283349671,peer,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,185690,1.4814888520395195,peer,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,185690,5.713690092854331,baseline,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,185690,14.996403168379844,spot_peer,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,185690,0.0208627304458145,relative_legacy,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,185690,59.86510478846078,spot_baseline,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,185698,2.3604237265557377,spot_peer,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,185698,42.22330006830478,spot_baseline,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,185698,0.0490706471937177,relative_legacy,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,185698,3.6574890446960886,peer,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,185698,18.007053469329037,baseline,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,185699,22.791029095258043,baseline,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,185699,-6.853627159100921,peer,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,185699,26.303440583379377,spot_baseline,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,185699,-9.042208847560373,spot_peer,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,185699,-0.1006618329717391,relative_legacy,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,187708,-11.091590140185078,spot_baseline,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,187708,-35.826477630984655,spot_peer,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,187708,-0.2597811512958568,relative_legacy,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,187708,-6.030594589190833,baseline,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,187708,-18.649393192579552,peer,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,188107,22.863035550237555,baseline,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,188107,1.9296243166829368,peer,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,188107,1.8450444370816748,spot_peer,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,188107,41.50374992788437,spot_baseline,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,188107,0.0263508786951456,relative_legacy,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,188909,35.61438102252753,spot_baseline,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,188909,-0.5128109766388934,relative_legacy,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,188909,-2.373228330011342,spot_peer,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,188909,-36.49398668381395,peer,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,188909,-14.234496617780652,baseline,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,189585,15.723803520620276,peer,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,189585,57.73463325563494,baseline,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,189585,0.1995454497668574,relative_legacy,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,189585,14.01595812157465,spot_peer,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,189588,17.404239813283695,spot_peer,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,189588,63.22682154995129,spot_baseline,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,189588,0.2451430835760886,relative_legacy,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,189588,62.23319347550488,baseline,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,189588,18.96732868634861,peer,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,189869,-48.24820407208534,peer,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,189869,-30.983715288137915,baseline,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,189869,-50.94027001873735,spot_peer,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,189869,-0.6742183180824263,relative_legacy,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,190772,60.40713236688608,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,190772,15.384631552410104,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,190772,0.1778851750244185,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,190772,13.014574667743377,peer,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,190772,47.35777725169937,baseline,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191026,-1.4821069449667892,baseline,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191026,-6.526132695867696,peer,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191026,-0.0909608997617131,relative_legacy,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191026,-14.860262678146826,spot_peer,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191026,18.180526961754744,spot_baseline,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191046,-0.0918344221070427,relative_legacy,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191046,-18.033384469822103,spot_peer,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191046,13.750352374993504,spot_baseline,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191046,-6.470706017063405,peer,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191046,5.4280418671103,baseline,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191284,24.766726141448867,baseline,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191284,-7.227524697196938,peer,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191284,26.303440583379377,spot_baseline,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191284,-9.042208847560373,spot_peer,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191284,-0.1120707108824798,relative_legacy,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191471,-4.000558550052397,spot_peer,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191471,-1.8934057043011128,peer,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191471,33.34237337251918,spot_baseline,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191471,-0.0247000619455113,relative_legacy,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191471,22.6221086499208,baseline,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191935,37.792496705500135,baseline,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191935,2.187570025621119,peer,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191935,40.05379295837288,spot_baseline,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191935,0.0173995044455759,relative_legacy,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,191935,0.806509732219877,spot_peer,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192049,13.750352374993504,spot_baseline,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192049,-18.033384469822103,spot_peer,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192049,-0.1246463339862181,relative_legacy,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192049,7.471973057846918,baseline,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192049,-8.930507505738667,peer,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192418,45.79064853070398,baseline,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192418,8.002958259638659,peer,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192418,6.8866947345896525,spot_peer,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192418,48.54268271702416,spot_baseline,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192418,0.0974757889847431,relative_legacy,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192472,0.1796364039090019,relative_legacy,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192472,56.55971758542251,spot_baseline,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192472,12.62891268725344,spot_peer,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192472,55.42822987139115,baseline,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192472,14.076424309159105,peer,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192924,22.464564508844365,baseline,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192924,-0.5934521942828972,peer,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192924,-2.373228330011342,spot_peer,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192924,35.61438102252753,spot_baseline,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,192924,-0.006091695984395,relative_legacy,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,193275,2.514537600511628,spot_peer,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,193275,0.0397581295067118,relative_legacy,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,193275,42.43846715380963,spot_baseline,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,193275,3.13509430434281,peer,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,193275,34.71859792456365,baseline,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,195286,8.297753446807768,peer,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,195286,30.86373991927191,baseline,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,195286,14.01595812157465,spot_peer,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,195286,0.1148924156420023,relative_legacy,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,204737,37.85116232537298,spot_baseline,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,204737,-0.7711290546282691,spot_peer,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,204737,0.0033051073204641,relative_legacy,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,204737,0.371703096927866,peer,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,204737,15.469909396902253,baseline,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,208405,28.38061298317954,peer,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,208405,75.07947257658459,baseline,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,208405,0.3756486442412269,relative_legacy,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,208405,26.949482893488597,spot_peer,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,215725,0.0,spot_baseline,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,215725,-0.2314856288261975,relative_legacy,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,215725,-27.88210304960235,spot_peer,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,215725,0.0,baseline,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,215725,-16.830179547279457,peer,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,218666,1.7039792681942083,peer,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,218666,34.802043448447165,baseline,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,218666,39.17677199559965,spot_baseline,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,218666,0.1783416376603536,spot_peer,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,218666,0.0166147043941545,relative_legacy,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,218945,53.60529002402098,spot_baseline,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,218945,10.512797781754236,spot_peer,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,218945,0.1512553603789911,relative_legacy,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,218945,52.10610966987158,baseline,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,218945,11.912172958033745,peer,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,219886,18.497356701720616,baseline,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,219886,-12.245392408361532,peer,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,219886,-0.1790627628097975,relative_legacy,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,219886,19.232043503449937,spot_baseline,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,219886,-14.107111761085728,spot_peer,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,220077,67.80719051126377,spot_baseline,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,220077,0.0527850530865676,relative_legacy,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,220077,20.684938639123665,spot_peer,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,220077,4.308954004594822,peer,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,220077,42.87138006265679,baseline,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,221727,15.415782877206254,peer,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,221727,57.08856034710588,baseline,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,221727,0.1987971049610612,relative_legacy,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,221727,14.01595812157465,spot_peer,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,222631,0.0167389639941655,relative_legacy,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,222631,14.01595812157465,spot_peer,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,222631,4.514388338569016,baseline,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29562,Will John Thune succeed Mitch McConnell as Republican Leader of the US Senate?,2024-11-07 14:18:32.773537+00,222631,1.2198144223378462,peer,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29700 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,182315,58.0606219405419,baseline,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,182315,32.496333993821096,peer,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,182315,0.242410027746318,relative_legacy,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,182315,36.8610215152378,spot_peer,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,182315,65.99245584023782,spot_baseline,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,185690,59.68397544377852,spot_baseline,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,185690,0.014142395381774,relative_legacy,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,185690,32.347261101897445,spot_peer,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,185690,3.008726402141176,peer,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,185690,5.76372408591932,baseline,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,185698,-6.223043026459657,baseline,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,185698,-0.180454499541613,relative_legacy,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,185698,-33.39120025024195,spot_peer,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,185698,-7.825523418483325,peer,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,185698,-32.19280948873623,spot_baseline,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,185699,-15.200309344504996,spot_baseline,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,185699,-19.37590737014964,peer,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,185699,-13.51185626863643,baseline,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,185699,-0.4763531987147469,relative_legacy,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,185699,-21.2329514082927,spot_peer,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,187708,7.577467557415306,baseline,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,187708,0.204787860486254,peer,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,187708,-0.1254951661031042,relative_legacy,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,187708,-0.5185570380061193,spot_peer,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,187708,13.750352374993504,spot_baseline,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,188107,48.54268271702414,spot_baseline,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,188107,12.05307084523661,peer,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,188107,24.3755907624468,spot_peer,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,188107,0.0374350845629897,relative_legacy,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,188107,24.152225929982286,baseline,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,188909,4.963747510530474,spot_peer,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,188909,-0.3560232467960609,relative_legacy,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,188909,2.6155668646951886,baseline,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,188909,-9.15367078319493,peer,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,188909,21.412480535284736,spot_baseline,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,189585,44.41750193054566,spot_peer,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,189585,75.55296909152216,baseline,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,189585,0.3650033247195536,relative_legacy,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,189585,43.33005451431288,peer,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,189588,43.27486106608343,peer,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,189588,44.41750193054566,spot_peer,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,189588,0.364626508513226,relative_legacy,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,189588,75.35843002215485,baseline,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,189869,-173.6965594166206,spot_baseline,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,189869,-2.0472385628440857,relative_legacy,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,189869,-167.17481775465993,baseline,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,189869,-134.63809088371048,spot_peer,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,189869,-131.94392959149644,peer,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,190772,-1.1316812855804694,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,190772,-86.12158721963455,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,190772,-83.07010815929092,baseline,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,190772,-67.86906449642514,peer,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,190772,-105.88936890535685,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191026,6.526174505047471,spot_baseline,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191026,0.0557126657602581,relative_legacy,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191026,14.17784833626808,baseline,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191026,-5.687505190178136,spot_peer,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191026,7.974063215714214,peer,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191046,12.885872161093287,peer,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191046,23.20053427938964,baseline,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191046,31.497435561099877,spot_peer,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191046,0.0946920279351791,relative_legacy,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191046,58.496250072115615,spot_baseline,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191284,48.54268271702416,spot_baseline,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191284,0.0902708925111169,relative_legacy,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191284,45.706480307526256,baseline,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191284,22.679049281159,peer,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191284,24.37559076244682,spot_peer,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191471,0.0432128629120336,relative_legacy,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191471,30.12987129667585,baseline,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191471,15.086888351123603,peer,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191471,21.383328891659502,spot_peer,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191471,44.36066514756148,spot_baseline,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191935,-15.200309344504996,spot_baseline,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191935,-21.2329514082927,spot_peer,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191935,-20.8852626301528,peer,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191935,-14.364528033716256,baseline,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,191935,-0.5114001675626899,relative_legacy,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192049,-145.55525818377615,baseline,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192049,-176.49255365616614,spot_peer,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192049,-1.6903776145892917,relative_legacy,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192049,-110.50793959141964,peer,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192049,-232.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192418,41.87447886501059,peer,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192418,0.3546189271775629,relative_legacy,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192418,72.23738144030904,baseline,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192418,44.41750193054566,spot_peer,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192472,12.443616562557354,peer,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192472,13.499666565509925,spot_peer,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192472,32.70454756410904,baseline,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192472,-0.0593485558622558,relative_legacy,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192472,33.34237337251918,spot_baseline,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192924,22.156778853840933,spot_baseline,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192924,-0.097084887800682,relative_legacy,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192924,14.00468576171206,baseline,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192924,5.496297994146202,spot_peer,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,192924,4.137345485148153,peer,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,193275,47.38688740965533,baseline,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,193275,31.08370432006361,spot_peer,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,193275,25.64193573195716,peer,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,193275,0.1561768583085115,relative_legacy,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,193275,57.918014812715,spot_baseline,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,195286,13.387570795925662,peer,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,195286,25.65471922156686,baseline,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,195286,24.37559076244682,spot_peer,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,195286,0.065051951299875,relative_legacy,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,204737,-63.08741418074838,spot_peer,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,204737,-25.55537982994918,peer,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,204737,-30.24643977275086,baseline,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,204737,-0.4428359819392822,relative_legacy,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,204737,-73.69655941662063,spot_baseline,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,208405,36.99725329055144,peer,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,208405,66.49983174657797,baseline,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,208405,0.2786428507114055,relative_legacy,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,208405,38.159476452720135,spot_peer,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,215725,48.473108397355055,baseline,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,215725,44.41750193054566,spot_peer,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,215725,0.2470554123686992,relative_legacy,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,215725,28.905821965830768,peer,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,215725,76.55347463629771,spot_baseline,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,218666,21.412480535284736,spot_baseline,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,218666,3.703215668566564,peer,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,218666,4.963747510530474,spot_peer,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,218666,18.11889431208154,baseline,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,218666,-0.1541888662892727,relative_legacy,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,218945,0.196831059268743,relative_legacy,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,218945,32.18332384173664,spot_peer,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,218945,57.81955728121039,baseline,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,218945,30.981477760166555,peer,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,218945,59.45485495503542,spot_baseline,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,219886,-104.63250155505128,spot_baseline,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,219886,-85.16615307338263,peer,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,219886,-1.4037529391000176,relative_legacy,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,219886,-85.22229012523232,spot_peer,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,219886,-102.08221890702548,baseline,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,220077,61.25351815701574,baseline,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,220077,38.159476452720135,spot_peer,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,220077,32.50597778456008,peer,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,220077,0.2185650047268373,relative_legacy,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,220077,67.80719051126377,spot_baseline,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,221727,30.3628679546276,peer,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,221727,31.497435561099877,spot_peer,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,221727,57.08858934770492,baseline,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,221727,0.1877740421098007,relative_legacy,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,222142,23.23496251092837,spot_peer,predictomatic,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,222142,46.07106308786969,baseline,predictomatic,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,222142,0.0741101925609487,relative_legacy,predictomatic,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,222142,22.13312174712217,peer,predictomatic,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,222142,46.94852833012198,spot_baseline,predictomatic,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,222631,4.297755025838431,baseline,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,222631,0.00948411295589,relative_legacy,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,222631,31.497435561099877,spot_peer,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29563,"Will Astro Bot win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-07 14:18:32.777718+00,222631,2.2144394814579997,peer,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29701 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,182315,-42.36071992228773,peer,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,182315,-118.44245711374276,spot_baseline,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,182315,-104.27435147050085,baseline,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,182315,-0.6447331817677748,relative_legacy,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,182315,-54.02085109571318,spot_peer,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,185690,-0.1230578286107461,baseline,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,185690,-1.2606364403338606,spot_baseline,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,185690,3.1216052504895693,peer,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,185690,0.0275176034733943,relative_legacy,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,185690,29.82353456896241,spot_peer,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,185698,19.849604275848503,spot_peer,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,185698,0.0200643161978302,relative_legacy,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,185698,5.04366069917333,peer,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,185698,-15.200309344505014,spot_baseline,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,185698,-10.4877394309419,baseline,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,185699,9.979766386789713,baseline,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,185699,11.103131238874395,spot_baseline,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,185699,40.9439152269056,peer,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,185699,0.5037458510596713,relative_legacy,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,185699,38.669894009418016,spot_peer,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,187708,-35.845397091247634,spot_baseline,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,187708,0.0388249419413375,relative_legacy,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,187708,5.077904287133852,spot_peer,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,187708,-19.958798090266075,baseline,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,187708,6.052685394535662,peer,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,188107,-14.224208936873335,peer,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,188107,-48.45630374564486,baseline,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,188107,-86.24964762500649,spot_baseline,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,188107,-0.2432108996657893,relative_legacy,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,188107,-30.986678056827007,spot_peer,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,188909,12.72775947719546,spot_peer,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,188909,29.424299553409217,peer,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,188909,-25.153876699596427,spot_baseline,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,188909,0.3313370046342146,relative_legacy,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,188909,-10.710379919343277,baseline,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,189585,-31.787912918656023,baseline,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,189585,14.805608511933048,peer,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,189585,7.691355433899263,spot_peer,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,189585,0.1260761390511189,relative_legacy,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,189588,57.80829125652643,spot_peer,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,189588,37.25753206267157,baseline,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,189588,64.85047994929865,peer,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,189588,0.8148905072740668,relative_legacy,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,189869,-6.092530256374055,spot_peer,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,189869,-0.0604325489782986,relative_legacy,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,189869,0.6139626560952105,peer,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,189869,-49.52567807268576,baseline,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,190772,-9.44205002499547,baseline,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,190772,0.2633356422373492,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,190772,-12.029423371771196,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,190772,22.118394646818835,spot_peer,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,190772,22.410330219137187,peer,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191026,1.0171653445044948,peer,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191026,-8.664560447313677,baseline,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191026,-65.43015279233164,spot_baseline,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191026,-0.0137839075312844,relative_legacy,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191026,-16.09018861790992,spot_peer,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191046,-51.45731728297583,spot_baseline,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191046,-0.4350618904538816,peer,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191046,-20.295067358921354,baseline,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191046,-0.0565397288264221,relative_legacy,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191046,-6.092530256374055,spot_peer,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191284,-40.82514823017667,spot_peer,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191284,-100.0,spot_baseline,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191284,-0.515625536484621,relative_legacy,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191284,-32.62294344889663,peer,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191284,-94.15687868744136,baseline,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191471,-0.350539556964668,relative_legacy,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191471,-100.0,spot_baseline,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191471,-23.79699611055069,peer,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191471,-67.970831906354,baseline,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191471,-40.82514823017667,spot_peer,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191935,52.93057411066365,spot_peer,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191935,29.37424453940098,baseline,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191935,57.03714054966687,peer,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191935,31.034012061215048,spot_baseline,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,191935,0.7206704032827879,relative_legacy,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192049,39.69741991671355,peer,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192049,18.67144182037032,baseline,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192049,49.54581820635491,spot_peer,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192049,0.5195087969959397,relative_legacy,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192418,-40.82514823017667,spot_peer,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192418,-94.38884446300844,baseline,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192418,-32.70248994010572,peer,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192418,-0.517198431238218,relative_legacy,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192472,-0.4317045276244413,relative_legacy,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192472,-88.8968687611256,spot_baseline,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192472,-25.78139875328399,peer,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192472,-87.27051892422837,baseline,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192472,-32.88078269354408,spot_peer,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192924,-3.40946811094068,peer,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192924,-37.20956728111087,baseline,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192924,-0.088099217008687,relative_legacy,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192924,-11.232211753459543,spot_peer,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,192924,-58.6405917590825,spot_baseline,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,193275,-0.6496737460255094,relative_legacy,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,193275,-103.05456428227464,baseline,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,193275,-124.46850959549022,spot_baseline,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,193275,-43.342981174187486,peer,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,193275,-58.33253242487915,spot_peer,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,195286,-22.00485849660715,spot_peer,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,195286,-8.68448749479545,peer,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,195286,-0.1659272441582978,relative_legacy,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,195286,-39.04482055624561,baseline,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,195286,-73.69655941662059,spot_baseline,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,204737,14.791135011618506,peer,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,204737,0.0,spot_baseline,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,204737,0.1556443983037685,relative_legacy,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,204737,0.0,baseline,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,204737,30.725528472785413,spot_peer,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,208405,7.691355433899263,spot_peer,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,208405,14.606550677416111,peer,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,208405,0.124399941530252,relative_legacy,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,208405,-32.19280948873623,spot_baseline,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,208405,-31.578805992807062,baseline,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,215725,-9.635219340383845,baseline,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,215725,19.849604275848503,spot_peer,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,215725,-15.200309344505014,spot_baseline,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,215725,16.392889071032297,peer,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,215725,0.1872613955856767,relative_legacy,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,218666,56.20785909797517,spot_peer,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,218666,30.892054280388635,baseline,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,218666,0.7046159101865633,relative_legacy,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,218666,35.61438102252753,spot_baseline,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,218666,55.13072710245243,peer,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,218945,-97.29253888875246,baseline,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,218945,-0.5347324828610338,relative_legacy,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,218945,-33.55574798893614,peer,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,218945,-100.0,spot_baseline,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,218945,-40.82514823017667,spot_peer,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,219886,24.25050086934748,spot_peer,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,219886,29.61507844409656,peer,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,219886,-9.049568643939716,spot_baseline,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,219886,-8.580038801775984,baseline,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,219886,0.3416420063239158,relative_legacy,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,220077,-120.08164515831344,baseline,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,220077,-48.765108525453314,peer,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,220077,-132.19280948873626,spot_baseline,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,220077,-0.749752945660262,relative_legacy,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,220077,-63.85932126906287,spot_peer,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,221727,1.0094044024578237,relative_legacy,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,221727,72.57999124524109,spot_peer,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,221727,78.63187926034279,peer,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,221727,57.088753579973336,baseline,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,222142,-2.692454254030308,relative_legacy,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,222142,-190.09845627906785,peer,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,222142,-313.42143664438464,baseline,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,222142,-203.99585059192597,spot_baseline,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,222142,-115.23488307170108,spot_peer,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,222631,72.57999124524109,spot_peer,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,222631,4.529283851878603,baseline,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,222631,0.0663075095492265,relative_legacy,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29564,Will Luke Combs win an award in any of these 2024 CMA Awards categories?,2024-11-07 14:18:32.78181+00,222631,5.593535737011876,peer,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29702 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,182315,-27.88813097128801,spot_peer,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,182315,-161.79322541165726,baseline,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,182315,-26.74837436640684,peer,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,182315,-0.2721285291695215,relative_legacy,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,182315,-183.65012677171205,spot_baseline,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,185690,37.3929988735752,spot_peer,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,185690,-92.41251330248728,spot_baseline,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,185690,3.6361783264475234,peer,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,185690,0.0583489459411217,relative_legacy,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,185690,-9.120175260814154,baseline,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,185698,-7.076472178965501,peer,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,185698,-61.299562763902784,baseline,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,185698,-20.76628617263496,spot_peer,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,185698,-0.023800161399289,relative_legacy,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,185698,-173.6965594166206,spot_baseline,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,185699,0.7078760435032394,relative_legacy,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,185699,44.70660027068451,peer,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,185699,-73.69655941662059,spot_baseline,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,185699,50.78439053032714,spot_peer,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,185699,-67.10366662206127,baseline,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,187708,-357.34668618833257,spot_baseline,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,187708,-201.4167893886921,baseline,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,187708,-85.98998854832998,peer,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,187708,-152.1691946436426,spot_peer,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,187708,-1.0628145838002034,relative_legacy,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,188107,56.44756851048261,peer,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,188107,0.919838324335373,relative_legacy,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,188107,-48.06258409064208,spot_baseline,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,188107,69.1256733419351,spot_peer,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,188107,-4.695241150835804,baseline,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,188909,131.93758288802644,peer,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,188909,11.103131238874395,spot_baseline,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,188909,111.4591430363523,spot_peer,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,188909,1.879691674569777,relative_legacy,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,188909,42.76456453935438,baseline,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,189585,31.0502412347214,peer,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,189585,0.4824474298165235,relative_legacy,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,189585,31.96410079675761,spot_peer,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,189585,-98.80096419597538,baseline,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,189585,-100.0,spot_baseline,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,189588,-302.29885266054725,peer,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,189588,-564.3856189774723,spot_baseline,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,189588,-555.897366131666,baseline,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,189588,-300.30695209286296,spot_peer,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,189588,-4.092488675034179,relative_legacy,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,189869,164.18953000574487,spot_peer,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,189869,81.61733086196989,baseline,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,189869,2.251058298298752,relative_legacy,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,189869,158.06258346023617,peer,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,190772,2.2436796269634245,baseline,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,190772,2.856915219677092,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,190772,81.87446060086128,peer,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,190772,105.55891967222855,spot_peer,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,190772,1.2506300866639235,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191026,21.323524479397364,peer,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191026,0.3357716412252269,relative_legacy,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191026,-0.0674404666501685,baseline,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191026,18.935637662405288,spot_baseline,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191026,117.06335438519162,spot_peer,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191046,-0.6504666722064499,relative_legacy,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191046,-131.3432391888233,baseline,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191046,-332.1928094887361,spot_baseline,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191046,-52.82107443051719,peer,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191046,-134.17142564805266,spot_peer,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191284,-1.7141409988134335,relative_legacy,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191284,-130.11464110984932,peer,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191284,-134.17142564805266,spot_peer,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191284,-332.1928094887361,spot_baseline,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191284,-312.78106065700234,baseline,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191471,-73.69655941662059,spot_baseline,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191471,0.6001457263701099,relative_legacy,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191471,33.9158989852303,peer,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191471,50.78439053032714,spot_peer,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191471,-50.12976217854093,baseline,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191935,0.0,baseline,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191935,97.2066507209664,peer,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191935,1.4202852240797204,relative_legacy,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191935,0.0,spot_baseline,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191935,103.5147774997197,spot_peer,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191975,-114.952851006896,baseline,jkraybill_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191975,-36.06871127107031,spot_peer,jkraybill_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191975,-195.0833943196116,spot_baseline,jkraybill_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191975,-21.38596570278595,peer,jkraybill_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,191975,-0.1595918621263311,relative_legacy,jkraybill_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192049,-137.53455183766687,baseline,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192049,-173.6965594166206,spot_baseline,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192049,-20.76628617263496,spot_peer,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192049,-0.1387688616511713,relative_legacy,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192049,-18.30373852218661,peer,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192418,23.35696697079103,spot_peer,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192418,0.3588399767075437,relative_legacy,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192418,20.1674545453066,peer,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192418,-105.76520804494264,baseline,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192418,-112.0294233717712,spot_baseline,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192472,-170.70221344759443,baseline,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192472,-0.2444541715867675,relative_legacy,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192472,-173.6965594166206,spot_baseline,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192472,-20.76628617263496,spot_peer,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192472,-22.229204256970032,peer,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192924,-13.641507587108892,peer,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192924,-173.6965594166206,spot_baseline,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192924,-0.0533200675855383,relative_legacy,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192924,-110.616234520456,baseline,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,192924,-20.76628617263496,spot_peer,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,193275,-110.78032895345152,spot_baseline,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,193275,0.3598570614787475,relative_legacy,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,193275,24.250702479757717,spot_peer,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,193275,18.466985208628625,peer,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,193275,-92.99621793975948,baseline,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,195286,-10.879516882430297,peer,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,195286,-0.0252108545513168,relative_legacy,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,195286,-92.18372001995648,baseline,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,195286,-20.76628617263496,spot_peer,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,195286,-173.6965594166206,spot_baseline,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,204737,0.3889904550771919,relative_legacy,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,204737,-30.52521142547945,baseline,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,204737,50.78439053032714,spot_peer,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,204737,-73.69655941662059,spot_baseline,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,204737,21.389207633104604,peer,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,208405,-0.2448694762206157,relative_legacy,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,208405,-173.6965594166206,spot_baseline,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,208405,-22.26031427932177,peer,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,208405,-170.75530153309705,baseline,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,208405,-20.76628617263496,spot_peer,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,215725,-0.423673242833923,relative_legacy,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,215725,-40.27256925615873,peer,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,215725,-232.1928094887363,spot_baseline,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,215725,-147.36442322888053,baseline,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,215725,-62.62074894509068,spot_peer,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,218666,-0.125421386615198,relative_legacy,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,218666,-15.402700218497111,spot_peer,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,218666,-166.20035364849846,spot_baseline,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,218666,-16.220551601931138,peer,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,218666,-146.74411414718375,baseline,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,218945,0.26298728294392,relative_legacy,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,218945,-121.75914350726268,spot_baseline,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,218945,16.39528637254251,spot_peer,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,218945,14.165067035543752,peer,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,218945,-118.51441009408848,baseline,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,219886,0.1899734992466499,relative_legacy,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,219886,8.00210321950833,peer,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,219886,10.644639066794957,spot_peer,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,219886,-123.03402227017432,baseline,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,219886,-129.7963104087317,spot_baseline,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,220077,8.929927757871411,spot_peer,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,220077,0.0573970307919037,relative_legacy,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,220077,-0.3076129368004778,peer,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,220077,-142.55661123243485,baseline,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,220077,-132.19280948873626,spot_baseline,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,221727,29.755566531026982,peer,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,221727,0.4748380070657101,relative_legacy,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,221727,31.96410079675761,spot_peer,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,221727,-100.0,spot_baseline,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,221727,-97.66751946652624,baseline,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,222631,-173.6965594166206,spot_baseline,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,222631,-12.806974506631736,baseline,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,222631,-0.0061675419977179,relative_legacy,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,222631,-1.5572893298632788,peer,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29565,"Will West Virginia have 1.4 million or more residents living in drought on December 31, 2024?",2024-11-07 14:18:32.785684+00,222631,-20.76628617263496,spot_peer,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,1.0,2024-11-08 15:30:00+00,29703 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,182315,44.36066514756145,spot_baseline,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,182315,39.11743157217795,baseline,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,182315,-0.0291961304718216,relative_legacy,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,182315,14.291970454414589,peer,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,182315,16.824110456697237,spot_peer,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,185690,0.4613015476807333,baseline,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,185690,-11.604772772675547,spot_peer,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,185690,-1.237852494059424,peer,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,185690,-0.0394554316518416,relative_legacy,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,185690,4.628150321191025,spot_baseline,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,185698,-73.69655941662059,spot_baseline,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,185698,-26.58840220314733,peer,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,185698,-0.4568857358882279,relative_legacy,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,185698,-29.031038073293207,baseline,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,185698,-67.6466326157106,spot_peer,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,185699,50.38483050861629,baseline,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,185699,24.148160621578228,spot_peer,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,185699,21.98859837966768,peer,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,185699,0.06355200295312,relative_legacy,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,185699,54.59683691052925,spot_baseline,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,187708,70.31006996041599,spot_baseline,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,187708,0.1177969921003865,relative_legacy,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,187708,35.39108520068567,spot_peer,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,187708,40.22522559271465,baseline,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,187708,19.21065299133721,peer,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,188107,19.61564129862152,peer,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,188107,31.42700287475584,spot_peer,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,188107,40.933980508994885,baseline,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,188107,0.1213306855654813,relative_legacy,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,188107,64.76982560691188,spot_baseline,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,188909,11.103131238874395,spot_baseline,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,188909,-0.5432675267745141,relative_legacy,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,188909,-21.38090552092828,peer,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,188909,-8.863085163694981,baseline,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,188909,-6.97188010968543,spot_peer,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,189585,19.816372327484576,spot_peer,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,189585,0.0258545082437648,relative_legacy,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,189585,19.651326313445686,peer,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,189585,47.95654958259768,baseline,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,189588,98.5500430304885,spot_baseline,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,189588,97.07715949052545,baseline,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,189588,55.5969770330568,spot_peer,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,189588,0.5186028518585157,relative_legacy,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,189588,55.46980369712162,peer,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,189869,19.027450960581405,peer,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,189869,46.72148956021824,baseline,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,189869,19.816372327484576,spot_peer,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,189869,0.0120769341442436,relative_legacy,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,190772,-12.029423371771196,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,190772,-19.329368343162223,peer,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,190772,-23.523379472284606,spot_peer,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,190772,-9.457761211003904,baseline,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,190772,-0.4712789234788302,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191026,-0.0033791857211339,relative_legacy,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191026,5.056201566056149,spot_peer,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191026,3.228728234877264,peer,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191026,9.244943981793067,baseline,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191026,27.91370834309294,spot_baseline,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191046,48.54268271702416,spot_baseline,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191046,19.216571691698,baseline,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191046,0.004852454762896,relative_legacy,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191046,19.816372327484576,spot_peer,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191046,7.196180172052245,peer,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191284,19.816372327484576,spot_peer,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191284,18.43995711048452,peer,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191284,45.7058937612785,baseline,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191284,0.0096812964168732,relative_legacy,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191471,48.54268271702416,spot_baseline,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191471,-0.0067368140702473,relative_legacy,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191471,19.816372327484576,spot_peer,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191471,33.048126621884826,baseline,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191471,12.611931027228083,peer,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191935,35.528577634825865,peer,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191935,69.40337460350747,baseline,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191935,37.400410082038285,spot_peer,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191935,0.2439262079619886,relative_legacy,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,191935,73.11832415721999,spot_baseline,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192049,-32.19280948873623,spot_baseline,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192049,-31.01443667277168,peer,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192049,-0.6346270669239517,relative_legacy,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192049,-37.9504186852042,spot_peer,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192049,-25.532119270459653,baseline,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192418,-67.6466326157106,spot_peer,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192418,-65.04384173523556,peer,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192418,-1.1442925360368654,relative_legacy,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192418,-69.59960933082122,baseline,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192418,-73.69655941662059,spot_baseline,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192472,42.22330006830476,spot_baseline,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192472,15.18594705789335,peer,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192472,-0.0360550984090939,relative_legacy,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192472,41.528686617800254,baseline,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192472,15.294811278876264,spot_peer,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192924,26.938217126137623,spot_peer,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192924,16.300669199937875,peer,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192924,37.38515823375219,baseline,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192924,0.0568767833999581,relative_legacy,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,192924,58.496250072115615,spot_baseline,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,193275,80.57051848385113,spot_baseline,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,193275,0.2657855949334399,relative_legacy,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,193275,34.84390675121511,peer,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,193275,42.7325055519626,spot_peer,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,193275,66.95279218234319,baseline,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,195286,26.379009452505898,peer,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,195286,49.34743961967225,baseline,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,195286,51.339639377929146,spot_peer,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,195286,0.228048747516822,relative_legacy,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,204737,46.46682670034443,spot_baseline,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,204737,-0.0037930025095577,relative_legacy,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,204737,18.331083300171063,spot_peer,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,204737,6.914747919333289,peer,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,204737,19.3523520704913,baseline,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,208405,-1.1759167367627863,relative_legacy,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,208405,-72.48856604107482,baseline,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,208405,-67.59802516188783,peer,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,208405,-67.6466326157106,spot_peer,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,208405,-73.69655941662059,spot_baseline,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,215725,-32.687172469816225,baseline,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,215725,-0.6419656638383339,relative_legacy,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,215725,-34.022718955057066,peer,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,215725,-51.73430437547752,spot_peer,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,218666,8.940448130547685,spot_peer,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,218666,-0.1198801378045698,relative_legacy,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,218666,7.7062570565194495,peer,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,218666,29.951070013799686,baseline,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,218666,33.34237337251918,spot_baseline,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,218945,-32.19280948873623,spot_baseline,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,218945,-31.35058533940264,baseline,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,218945,-37.626696592043736,peer,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,218945,-0.7672778154422446,relative_legacy,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,218945,-37.9504186852042,spot_peer,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,219886,30.49005948509894,baseline,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,219886,-0.1435206270075078,relative_legacy,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,219886,8.17571766441473,spot_peer,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,219886,7.402967065969283,peer,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,219886,32.27357779800957,spot_baseline,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,220077,58.496250072115615,spot_baseline,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,220077,57.21489898353969,baseline,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,220077,26.077355586577884,peer,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,220077,26.938217126137623,spot_peer,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,220077,0.1142748562900441,relative_legacy,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,221727,12.166517137422968,spot_peer,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,221727,-0.0851407764633498,relative_legacy,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,221727,11.909450539488024,peer,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,221727,36.96834099133335,baseline,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,222142,-106.85761158324146,spot_baseline,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,222142,-91.37358984275008,spot_peer,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,222142,-1.5021577537505977,relative_legacy,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,222142,-91.28700034464391,peer,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,222142,-105.08724012865116,baseline,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,222631,-0.0705330657478119,relative_legacy,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,222631,-51.73430437547752,spot_peer,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,222631,-3.851880881160735,peer,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,222631,-3.801355303132402,baseline,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29566,Will China's youth unemployment rate be less than or equal to 17.0 for October 2024?,2024-11-07 14:18:32.932566+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29704 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,182315,23.87868595871165,spot_baseline,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,182315,21.072239128904517,baseline,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,182315,22.955372593964697,spot_peer,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,182315,0.0234292291292528,relative_legacy,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,182315,21.554457330318485,peer,RyansAGI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,185690,27.834165862164244,spot_baseline,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,185690,2.805072513110036,baseline,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,185690,2.5171078192279834,peer,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,185690,25.78849332823238,spot_peer,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,185690,0.0101037671676661,relative_legacy,annabot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,185698,40.62101173547412,spot_peer,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,185698,17.1509131159686,baseline,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,185698,48.54268271702416,spot_baseline,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,185698,14.281450837135155,peer,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,185698,0.0877842518825748,relative_legacy,RonanMcGovern,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,185699,13.750352374993504,spot_baseline,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,185699,15.700932531062378,spot_peer,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,185699,12.896289537033832,baseline,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,185699,16.156190219363552,peer,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,185699,-0.0729069226214785,relative_legacy,MWG,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,187708,-34.2380014619819,peer,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,187708,-59.75187420043472,spot_peer,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,187708,-53.07489586344575,baseline,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,187708,-91.59357352115256,spot_baseline,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,187708,-0.6688087144142953,relative_legacy,twsummerbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,188107,0.0211635083371906,relative_legacy,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,188107,16.015986970304933,baseline,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,188107,15.480046218582524,peer,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,188107,5.85221395128212,spot_peer,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,188107,0.0,spot_baseline,Cassie,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,188909,-0.4654613762268131,relative_legacy,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,188909,-5.035039333359927,spot_peer,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,188909,-15.200309344504996,spot_baseline,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,188909,-26.339872426372104,baseline,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,188909,-11.577810969492353,peer,silicoqr,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,189585,32.963187946256205,spot_peer,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,189585,0.1696194477304443,relative_legacy,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,189585,37.40629998836872,baseline,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,189585,34.952579341116866,peer,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,189585,37.85116232537298,spot_baseline,mf-bot-1,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,189588,-211.50505828059175,peer,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,189588,-305.88936890535683,spot_baseline,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,189588,-3.216157143831887,relative_legacy,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,189588,-301.2827312108442,baseline,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,189588,-213.241684789394,spot_peer,mf-bot-3,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,189869,25.572196218539577,peer,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,189869,24.692108153324103,spot_peer,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,189869,25.316889733386585,baseline,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,189869,0.0473416852210134,relative_legacy,VeritasAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,190772,-61.833588514381,baseline,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,190772,-50.43626084435732,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,190772,-78.58751946471526,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,190772,-39.04719421704616,peer,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,190772,-0.790891865097488,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191026,-1.657507656360426,peer,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191026,-28.472284723217,spot_baseline,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191026,-14.541119391382331,spot_peer,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191026,-0.0813887891145747,relative_legacy,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191026,-3.8944561240108406,baseline,manticAI,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191046,23.21145365931966,baseline,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191046,47.7502751224591,spot_peer,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191046,18.95138695886924,peer,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191046,0.1380057039741366,relative_legacy,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191046,58.496250072115615,spot_baseline,archipelago,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191284,24.76619380941512,baseline,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191284,0.0448269766302096,relative_legacy,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191284,24.692108153324103,spot_peer,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191284,26.303440583379377,spot_baseline,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191284,24.801032842584075,peer,000_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191471,0.0983005138940615,relative_legacy,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191471,32.963187946256205,spot_peer,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191471,37.85116232537298,spot_baseline,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191471,23.197009820798957,peer,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191471,25.80271047543584,baseline,HSeldon,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191935,-17.705305087229014,peer,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191935,-34.02429733023807,baseline,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191935,-0.5425724190606003,relative_legacy,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191935,-19.822126509562832,spot_peer,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,191935,-35.845397091247634,spot_baseline,pgodzinai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192049,14.932403561559235,peer,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192049,13.750352374993504,spot_baseline,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192049,12.026687395800495,baseline,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192049,15.700932531062378,spot_peer,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192049,-0.0655076166631584,relative_legacy,gnosis-ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192418,0.2549028637428612,relative_legacy,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192418,40.13330725227942,peer,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192418,40.62101173547412,spot_peer,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192418,48.54268271702416,spot_baseline,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192418,45.85429248589031,baseline,InstitutPelFutur,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192472,18.612156969856496,baseline,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192472,-0.0170508848150224,relative_legacy,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192472,18.903382439001685,spot_baseline,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192472,21.317547489013197,peer,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192472,19.391801066610533,spot_peer,bestworldbot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192924,37.85116232537298,spot_baseline,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192924,0.0883525376237234,relative_legacy,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192924,21.710725860822546,peer,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192924,24.240346117587382,baseline,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,192924,32.963187946256205,spot_peer,acm_bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,193275,-30.03416457575126,baseline,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,193275,-45.00844463780446,spot_baseline,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,193275,-26.385178434203183,spot_peer,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,193275,-0.4840615703238525,relative_legacy,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,193275,-15.531294656478874,peer,histerio,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,195286,-47.01546339353212,peer,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,195286,-132.19280948873623,spot_baseline,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,195286,-0.8302671697510938,relative_legacy,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,195286,-88.8311616757139,spot_peer,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,195286,-70.445469330512,baseline,Unwrapped80T,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,204737,20.163386116965043,spot_baseline,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,204737,8.432080042978736,baseline,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,204737,8.535219046230578,peer,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,204737,-0.0141000283124736,relative_legacy,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,204737,20.294281330048523,spot_peer,SynapseSeer,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,208405,47.7502751224591,spot_peer,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,208405,0.3717600752735707,relative_legacy,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,208405,57.459966351460295,baseline,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,208405,49.47880733727244,peer,mf-bot-4,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,215725,21.55978613341159,peer,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,215725,37.85116232537298,spot_baseline,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,215725,24.073329190850977,baseline,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,215725,32.963187946256205,spot_peer,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,215725,0.0877360070026565,relative_legacy,estr.ai,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,218666,-28.09320630249494,spot_peer,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,218666,-42.78842608310898,baseline,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,218666,-24.66388006311946,peer,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,218666,-47.39311883324123,spot_baseline,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,218666,-0.6149878179082512,relative_legacy,GreeneiBot2,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,218945,34.07005902439873,spot_peer,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,218945,39.396527566024254,spot_baseline,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,218945,38.38405614382319,baseline,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,218945,35.33554302251577,peer,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,218945,0.1813937495232288,relative_legacy,SeidrBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,219886,-48.8129513383967,baseline,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,219886,-29.97599606755952,spot_peer,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,219886,-0.6898093377678727,relative_legacy,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,219886,-50.02178798526881,spot_baseline,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,219886,-27.97302574464323,peer,SaraBase,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,220077,67.80719051126377,spot_baseline,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,220077,49.86894686284143,peer,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,220077,0.3769748190190742,relative_legacy,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,220077,58.40991223960462,baseline,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,220077,54.41925564000814,spot_peer,mmBot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,221727,-0.7039745363222545,relative_legacy,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,221727,-31.004196922386896,spot_peer,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,221727,-28.994879381834096,peer,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,221727,-50.24459964257544,baseline,mf-bot-5,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,222631,-1.1249272812088873,baseline,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,222631,-5.035039333359927,spot_peer,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,222631,-15.200309344504996,spot_baseline,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,222631,-0.4263232601735913,peer,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29567,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for October 2024?,2024-11-07 14:18:32.941037+00,222631,-0.0228036280288641,relative_legacy,Grizeu_Bot,True,yes,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29705 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,182315,-0.6323140055048599,relative_legacy,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,182315,-18.44245711374277,spot_baseline,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,182315,-39.62783574128137,spot_peer,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,182315,-16.28650964753859,baseline,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,182315,-36.91463359079718,peer,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,185690,-17.754921371472317,spot_peer,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,185690,1.2387030223920537,baseline,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,185690,-1.7287880497703296,peer,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,185690,12.157247217032973,spot_baseline,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,185690,-0.0260110062342564,relative_legacy,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,185698,84.79969065549501,spot_baseline,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,185698,34.17048051370655,spot_peer,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,185698,24.84344112858907,baseline,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,185698,8.230248978461466,peer,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,185698,0.0631021546509687,relative_legacy,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,185699,19.449469993143087,peer,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,185699,67.80719051126377,spot_baseline,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,185699,65.03148843135259,baseline,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,185699,22.024104961642006,spot_peer,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,185699,0.1409626284787169,relative_legacy,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,187708,62.29303509201767,spot_baseline,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,187708,18.08254238955912,spot_peer,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,187708,0.0663311888346288,relative_legacy,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,187708,10.516481699074326,peer,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,187708,36.52801516765732,baseline,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,188107,-54.93385909904349,spot_baseline,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,188107,-46.71993336622527,peer,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,188107,-43.016017861611296,baseline,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,188107,-65.71218290459686,spot_peer,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,188107,-0.7302850279277606,relative_legacy,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,188909,2.856915219677092,spot_baseline,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,188909,-24.40287336440595,spot_peer,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,188909,12.584333029694372,peer,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,188909,56.637944960180654,baseline,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,188909,0.0436831091288272,relative_legacy,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,189585,5.933675231039892,peer,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,189585,47.95725798043014,baseline,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,189585,-0.0469462099712808,relative_legacy,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,189585,8.253680097238108,spot_peer,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,189588,41.715084326923794,peer,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,189588,43.99934280602754,spot_peer,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,189588,98.5500430304885,spot_baseline,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,189588,0.4453964129237427,relative_legacy,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,189588,97.06997982091472,baseline,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,189869,22.024104961642006,spot_peer,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,189869,19.48397917197708,peer,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,189869,0.1410250299887995,relative_legacy,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,189869,65.26465039987154,baseline,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,190772,62.91834878923393,baseline,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,190772,30.67438299715189,spot_peer,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,190772,0.2069564631032305,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,190772,23.209195238888903,peer,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,190772,79.90873060740036,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191026,1.380092374378476,baseline,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191026,-4.474719772980139,peer,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191026,0.6858071727277744,spot_peer,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191026,-0.0805357077151131,relative_legacy,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191026,37.95540248597555,spot_baseline,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191046,8.490442723847229,peer,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191046,0.0605269296228441,relative_legacy,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191046,22.024104961642006,spot_peer,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191046,26.793084942173834,baseline,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191284,-37.344143190412005,peer,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191284,-15.200309344505014,spot_baseline,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191284,-14.311899933172958,baseline,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191284,-37.310322481537824,spot_peer,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191284,-0.6409816961094714,relative_legacy,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191471,-38.097922362779606,peer,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191471,-54.746319017318505,spot_peer,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191471,-39.592867633113926,spot_baseline,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191471,-0.621152140091862,relative_legacy,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191471,-27.01543691085769,baseline,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191935,46.07665078455443,baseline,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191935,-0.0418958269029021,relative_legacy,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191935,8.253680097238108,spot_peer,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191935,48.54268271702416,spot_baseline,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191935,6.110990846026756,peer,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191975,0.1200072653178695,relative_legacy,jkraybill_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191975,75.98659962762851,spot_baseline,jkraybill_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191975,27.870812278285733,spot_peer,jkraybill_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191975,37.85604749766556,baseline,jkraybill_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,191975,13.727356518622608,peer,jkraybill_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192049,34.17048051370655,spot_peer,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192049,74.33613731885455,baseline,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192049,28.773703698422416,peer,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192049,0.2770629306192584,relative_legacy,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192418,-59.94620704162715,spot_baseline,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192418,-56.63911158613607,baseline,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192418,-69.29504946287128,spot_peer,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192418,-1.066171951435077,relative_legacy,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192418,-68.12272485583563,peer,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192472,50.58909297299573,spot_baseline,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192472,7.373784173228442,peer,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192472,49.86556535522724,baseline,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192472,9.716470580783607,spot_peer,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192472,-0.0269532551015807,relative_legacy,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192924,1.8379243264766612,peer,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192924,3.2737440309357098,spot_peer,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192924,26.677893039553485,baseline,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192924,41.5758666522498,spot_baseline,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,192924,-0.0594242879386593,relative_legacy,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,193275,60.97549621724435,spot_baseline,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,193275,10.942605060320751,peer,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,193275,49.40898147240591,baseline,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,193275,17.140755022096634,spot_peer,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,193275,0.0320802449096,relative_legacy,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,195286,-26.44501930432448,spot_peer,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,195286,0.0,baseline,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,195286,0.0,spot_baseline,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,195286,-14.324041777048723,peer,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,195286,-0.2729777392631285,relative_legacy,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,204737,53.00707422250839,spot_baseline,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,204737,11.444862994209704,spot_peer,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,204737,4.58359053128581,peer,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,204737,22.277760304768965,baseline,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,204737,0.0020462921139353,relative_legacy,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,208405,22.024104961642006,spot_peer,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,208405,66.64645713378894,baseline,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,208405,0.1422727872524104,relative_legacy,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,208405,19.679478122929638,peer,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,215725,-32.19280948873623,spot_baseline,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,215725,-0.5281428891443164,relative_legacy,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,215725,-49.45669803360235,spot_peer,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,215725,-31.93408912275921,peer,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,215725,-20.497063890617092,baseline,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,218666,71.36958148433591,spot_baseline,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,218666,0.1563863245424185,relative_legacy,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,218666,20.09684824391252,peer,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,218666,62.60608932887987,baseline,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,218666,24.57053063502407,spot_peer,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,218945,-0.8325838900187744,relative_legacy,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,218945,-31.37991247426333,baseline,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,218945,-32.19280948873623,spot_baseline,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,218945,-49.45669803360235,spot_peer,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,218945,-51.12579755311788,peer,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,219886,37.78947947617272,peer,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,219886,40.378169470623206,spot_peer,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,219886,0.3924663843554378,relative_legacy,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,219886,93.48410478739788,spot_baseline,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,219886,91.12887599477816,baseline,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,220077,0.1069430803668871,relative_legacy,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,220077,16.867199806423027,peer,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,220077,63.58380407167861,baseline,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,220077,28.276019086461837,spot_peer,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,221727,13.031901785220244,peer,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,221727,0.0512529827530392,relative_legacy,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,221727,15.36856996932998,spot_peer,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,221727,57.12877503273536,baseline,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,222142,0.5959839674515142,baseline,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,222142,-10.830126255546784,spot_peer,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,222142,-0.2761214603665958,peer,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,222142,-0.0012734811494651,relative_legacy,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,222142,21.8448763786503,spot_baseline,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,222631,0.0087750665893875,relative_legacy,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,222631,0.6112954688855381,spot_peer,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,222631,0.6351421200007905,peer,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29568,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for October 2024?,2024-11-07 14:18:32.952699+00,222631,3.562973766434623,baseline,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29706 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,182315,37.85116232537298,spot_baseline,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,182315,11.961478674489044,spot_peer,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,182315,7.469002216480329,peer,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,182315,0.0176303659715925,relative_legacy,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,182315,33.45480647619907,baseline,RyansAGI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,185690,7.266741815193493,spot_peer,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,185690,0.658693097942453,peer,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,185690,-0.0023868407305779,relative_legacy,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,185690,3.221179583338462,baseline,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,185690,31.289747289725693,spot_baseline,annabot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,185698,67.80719051126377,spot_baseline,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,185698,13.6794967341787,peer,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,185698,0.1721526247476354,relative_legacy,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,185698,33.395219554823946,spot_peer,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,185698,26.62433052067925,baseline,RonanMcGovern,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,185699,0.4146680364140415,relative_legacy,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,185699,42.05395338508996,spot_peer,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,185699,77.85559743836683,baseline,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,185699,37.37438024095763,peer,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,185699,79.90873060740036,spot_baseline,MWG,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,187708,65.99245584023782,spot_baseline,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,187708,18.868319602917943,peer,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,187708,0.2137551299239529,relative_legacy,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,187708,32.09676461734163,spot_peer,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,187708,39.03864672008292,baseline,twsummerbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,188107,-0.6067630477186717,relative_legacy,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,188107,-40.15179994663378,peer,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,188107,-38.15545714813815,spot_peer,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,188107,-42.88477195534305,baseline,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,188107,-32.19280948873623,spot_baseline,Cassie,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,188909,48.54268271702416,spot_baseline,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,188909,-0.5183304460478145,relative_legacy,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,188909,-30.504871808750973,peer,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,188909,-15.181427231918992,baseline,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,188909,19.611333864550637,spot_peer,silicoqr,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,189585,26.7331786632037,spot_peer,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,189585,0.2094827253149292,relative_legacy,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,189585,57.81099848401532,baseline,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,189585,22.5215664497738,peer,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,189588,25.891963404353422,baseline,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,189588,3.699005624317523,spot_peer,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,189588,-0.1084470144116183,relative_legacy,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,189588,-0.6349288436379331,peer,mf-bot-3,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,189869,65.26549199779909,baseline,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,189869,0.2956641144713108,relative_legacy,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,189869,28.572065611725844,peer,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,189869,33.395219554823946,spot_peer,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,190772,23.878685958711674,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,190772,-0.0822138722943054,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,190772,-0.482401722325781,peer,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,190772,18.815349901821488,baseline,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,190772,1.9640772819814325,spot_peer,Jay_Bailey_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191026,-0.0860490371516909,relative_legacy,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191026,-42.98814379977212,spot_peer,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191026,-6.578134682141704,peer,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191026,-4.731403814304332,baseline,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191026,-38.947024646891286,spot_baseline,manticAI,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191046,-51.45731728297583,spot_baseline,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191046,-20.67022304209345,peer,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191046,-20.3955839354428,baseline,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191046,-51.939342838411456,spot_peer,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191046,-0.294887707354142,relative_legacy,archipelago,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191284,0.1119751788883961,relative_legacy,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191284,45.705328921596696,baseline,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191284,14.911419020392382,peer,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191284,19.611333864550637,spot_peer,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191471,-88.8968687611256,spot_baseline,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191471,-0.8246615804346761,relative_legacy,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191471,-60.70516460830059,baseline,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191471,-54.84099459593814,peer,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191471,-78.72759527558145,spot_peer,HSeldon,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191935,0.3934609878582548,relative_legacy,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191935,74.2663564228129,baseline,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191935,40.86057816949504,spot_peer,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191935,35.42459009760417,peer,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,191935,78.24085649273731,spot_baseline,pgodzinai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192049,-73.69655941662059,spot_baseline,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192049,-70.7532228148485,baseline,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192049,-67.85167107864454,spot_peer,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192049,-70.02395190389073,peer,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192049,-1.06308731001507,relative_legacy,gnosis-ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192418,-25.997208306188888,spot_peer,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192418,-14.365582981790864,baseline,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192418,-28.71621925754958,peer,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192418,-0.4904502199726908,relative_legacy,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192418,-15.200309344505014,spot_baseline,InstitutPelFutur,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192472,18.903382439001717,spot_baseline,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192472,-1.5957860543973503,spot_peer,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192472,-5.951451642667765,peer,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192472,-0.1813904334098247,relative_legacy,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192472,18.652007236098893,baseline,bestworldbot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192924,-67.85167107864454,spot_peer,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192924,-0.6703222010752122,relative_legacy,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192924,-47.41756848321958,baseline,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192924,-44.265671324165424,peer,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,192924,-73.69655941662059,spot_baseline,acm_bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,193275,54.399071966485,spot_baseline,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,193275,42.88053975730427,baseline,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,193275,0.113287356449341,relative_legacy,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,193275,14.314409451146243,peer,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,193275,23.8016200028994,spot_peer,histerio,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,195286,31.17131531313502,baseline,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,195286,0.1572948125271316,relative_legacy,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,195286,26.7331786632037,spot_peer,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,195286,14.11877226325963,peer,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,204737,-7.400058144377692,spot_baseline,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,204737,-3.125703365363119,baseline,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,204737,-8.68460997599547,peer,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,204737,-20.41607578796687,spot_peer,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,204737,-0.1320414732661992,relative_legacy,SynapseSeer,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,208405,39.65324503264948,spot_peer,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,208405,35.30918874042521,peer,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,208405,75.24664757236133,baseline,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,208405,0.3856704584833048,relative_legacy,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,215725,-73.69655941662059,spot_baseline,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,215725,-0.6630147321931527,relative_legacy,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,215725,-67.85167107864454,spot_peer,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,215725,-43.81997237549348,peer,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,215725,-46.97701002977054,baseline,estr.ai,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,218666,37.13707168804884,peer,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,218666,74.52432687677808,baseline,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,218666,45.093664489740405,spot_peer,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,218666,0.4274302217218269,relative_legacy,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,218666,84.1570637395517,spot_baseline,GreeneiBot2,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,218945,48.54268271702416,spot_baseline,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,218945,47.34319224506984,baseline,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,218945,0.109066585956323,relative_legacy,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,218945,19.611333864550637,spot_peer,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,218945,15.190564046967614,peer,SeidrBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,219886,27.583004204001263,spot_peer,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,219886,0.2081691081855453,relative_legacy,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,219886,51.449534585939766,baseline,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,219886,21.049948463533056,peer,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,219886,59.68397544377849,spot_baseline,SaraBase,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,220077,58.496250072115615,spot_baseline,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,220077,0.144810118134998,relative_legacy,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,220077,17.65870994015447,peer,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,220077,26.7331786632037,spot_peer,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,220077,51.62770387286067,baseline,mmBot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,221727,57.110801640415765,baseline,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,221727,22.25297609574376,peer,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,221727,0.205999947286981,relative_legacy,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,221727,26.7331786632037,spot_peer,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,222142,-58.77912370662396,spot_baseline,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,222142,-2.068855546835845,baseline,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,222142,-2.016587890589607,peer,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,222142,-57.17814488141263,spot_peer,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,222142,-0.031525551195935,relative_legacy,predictomatic,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,222631,0.0024855212126014,relative_legacy,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,222631,0.8306452506218541,peer,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,222631,2.8107437468488383,baseline,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,222631,11.961478674489044,spot_peer,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29569,Will China's youth unemployment rate be greater than 19.0 for October 2024?,2024-11-07 14:18:32.96553+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-11-08 15:30:00+00,2024-11-08 15:30:00+00,0.4644,2024-11-08 15:30:00+00,29707 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,182315,21.289734673352488,baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,182315,-0.1569533263685571,relative_legacy,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,182315,35.61438102252753,spot_baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,182315,-17.98233693933083,spot_peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,182315,-11.109103739092296,peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,185690,-0.0113639999627487,relative_legacy,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,185690,-5.623866916832732,spot_peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,185690,-0.4891189300385886,peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,185690,4.528974880905481,baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,185690,52.80711645787357,spot_baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,185698,26.83149586751856,baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,185698,0.0382707342139845,relative_legacy,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,185698,11.445473607550836,spot_peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,185698,3.962219307523549,peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,185699,74.84612330040356,spot_baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,185699,56.75438396354612,baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,185699,6.957574564474583,peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,185699,10.218196518232016,spot_peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,185699,0.0872258722911204,relative_legacy,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,187708,22.870764627979867,spot_peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,187708,11.114220877624286,peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,187708,45.20048766592325,baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,187708,0.1458525773274939,relative_legacy,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,187708,92.44799923590224,spot_baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,188107,-1.5344078839757167,spot_peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,188107,50.69628884932116,baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,188107,-2.670417590846702,peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,188107,-0.047840649578078,relative_legacy,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,188107,58.496250072115615,spot_baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,189585,-0.2558439654935464,relative_legacy,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,189585,-16.374495372638126,spot_peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,189585,37.278818421688136,baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,189585,37.85116232537298,spot_baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,189585,-17.831936508018185,peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,189869,19.312829854577288,baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,189869,1.4084583252798022,peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,189869,0.001500735541929,relative_legacy,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,189869,5.158475789550196,spot_peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,190772,69.59938131099001,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,190772,4.076676207366424,peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,190772,6.446737122733886,spot_peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,190772,0.047440831156835,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,190772,53.23192097699406,baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191026,8.2126194068905,spot_peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191026,72.05602415320263,spot_baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191026,4.951448002153274,baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191026,0.0047437195547628,relative_legacy,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191026,0.5841347865849031,peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191046,24.009910904505343,baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191046,-0.0688131519670894,relative_legacy,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191046,-8.68922418632624,spot_peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191046,48.54268271702416,spot_baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191046,-4.473130115640349,peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191471,48.54268271702416,spot_baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191471,-6.4350205438539145,peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191471,-0.0941865413889071,relative_legacy,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191471,32.675976179251485,baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191471,-8.68922418632624,spot_peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191935,0.047440831156835,relative_legacy,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191935,69.59938131099001,spot_baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191935,4.210571448436561,peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191935,6.446737122733886,spot_peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191935,56.64987545526915,baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191975,8.646552989730308,baseline,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191975,71.48682611012141,spot_baseline,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191975,0.9194736753676986,peer,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191975,7.803468868935844,spot_peer,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,191975,0.0059513687452286,relative_legacy,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192049,19.030325172178703,peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192049,0.2483939160107347,relative_legacy,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192049,80.64030348750026,baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192049,22.979983915277792,spot_peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192418,-2.8391199483953744,peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192418,-1.5344078839757167,spot_peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192418,54.13214087025067,baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192418,-0.0537854556479405,relative_legacy,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192472,13.857296350511875,spot_peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192472,78.09471498999035,baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192472,79.90873060740036,spot_baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192472,12.664445384497188,peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192472,0.1555499449498926,relative_legacy,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192924,-0.2453211186468552,relative_legacy,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192924,18.14206402801417,spot_baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192924,10.1486000116587,baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192924,-17.402117624993394,peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,192924,-30.541775582023543,spot_peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,193275,-0.0221479078726604,relative_legacy,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,193275,-0.4340930131000328,spot_peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,193275,41.99798609108176,baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,193275,-1.1166117308140189,peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,193275,60.026975350900464,spot_baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,195286,8.973774347225403,peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,195286,11.445473607550836,spot_peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,195286,0.1097329358625201,relative_legacy,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,195286,67.92730280459259,baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,204737,-33.698622671040546,spot_peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,204737,5.492364386319483,baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,204737,-0.1988778250064282,relative_legacy,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,204737,13.750352374993504,spot_baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,204737,-13.582070753388294,peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,208405,5.158475789550196,spot_peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,208405,66.00657380037597,baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,208405,0.0364405225352767,relative_legacy,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,208405,3.844104698818121,peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,215725,9.393359915190144,peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,215725,70.635036044803,baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,215725,11.445473607550836,spot_peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,215725,0.1128265386501393,relative_legacy,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,218666,34.592156631562474,baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,218666,-17.014643724483566,spot_peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,218666,-0.2642372544273779,relative_legacy,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,218666,-18.380433927353504,peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,218666,36.96060700318379,spot_baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,219886,25.226049467944748,spot_peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,219886,0.2997632346150922,relative_legacy,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,219886,95.72460136016842,spot_baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,219886,90.90734954921123,baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,219886,23.16589425446221,peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,220077,48.54268271702416,spot_baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,220077,47.76679868198004,baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,220077,-0.150637645288837,relative_legacy,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,220077,-9.992493879631096,peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,220077,-8.68922418632624,spot_peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,221727,-2.8683188563129765,peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,221727,56.61575722930403,baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,221727,-0.053965264442347,relative_legacy,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,221727,-1.5344078839757167,spot_peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,222631,2.576066003323931,baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,222631,-16.374495372638126,spot_peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,222631,-1.1153388166508995,peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29635,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-08 14:19:42.579234+00,222631,-0.0188964592050988,relative_legacy,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29783 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,182315,44.78989192428277,baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,182315,74.84612330040356,spot_baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,182315,14.142916810447202,peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,182315,0.0784869743338833,relative_legacy,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,182315,28.803170489743128,spot_peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,185690,-0.023584328052494,relative_legacy,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,185690,-24.542371966510533,spot_peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,185690,0.6333933722050485,spot_baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,185690,-2.081821045060218,peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,185690,0.0550597777082848,baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,185698,-46.51475346463218,peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,185698,13.750352374993504,spot_baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,185698,-15.113648699529437,spot_peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,185698,-0.7027780745280371,relative_legacy,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,185698,-51.51684498014949,baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,185699,94.11063109464314,spot_baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,185699,69.7524627133953,baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,185699,26.40955775702483,peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,185699,42.65087046561955,spot_peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,185699,0.2024661277061453,relative_legacy,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,187708,82.0485342986379,spot_baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,187708,33.9804025099832,spot_peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,187708,40.46641849426861,baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,187708,0.113943568353814,relative_legacy,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,187708,14.85099813983036,peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,188107,25.4564239843801,baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,188107,-0.3182900606044899,relative_legacy,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,188107,-9.084046441811225,peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,188107,-3.951950190691533,spot_peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,188107,29.2781749227846,spot_baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,189585,23.74344976106129,spot_peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,189585,66.75178836613641,baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,189585,18.04914201054676,peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,189585,0.0145825382371811,relative_legacy,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,189588,-1.155607953056325,relative_legacy,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,189588,-68.19919818864173,peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,189588,-50.49235196429945,baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,189588,-61.98618005066131,spot_peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,189869,4.467384549808244,peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,189869,16.661567750685037,baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,189869,17.050566087535387,spot_peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,189869,0.0236560824421961,relative_legacy,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,190772,-35.845397091247634,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,190772,-27.436629623808415,baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,190772,-0.7630223530848143,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,190772,-50.764030532414935,spot_peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,190772,-43.940392065067805,peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191026,-0.0059080285650603,relative_legacy,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191026,-20.69476740991649,spot_peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191026,-1.1026457984789435,peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191026,5.986066241980068,spot_baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191026,0.7298353522291912,baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191046,6.794535108311793,baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191046,-15.113648699529437,spot_peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191046,-9.518640881337584,peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191046,13.750352374993504,spot_baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191046,-0.2234088238254488,relative_legacy,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191471,39.41546676349628,baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191471,-0.0201553311046778,relative_legacy,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191471,17.050566087535387,spot_peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191471,7.69032446296637,peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191471,58.496250072115615,spot_baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191935,97.08536543404836,spot_baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191935,0.2612188522546883,relative_legacy,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191935,79.65917742308436,baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191935,44.78916691627361,spot_peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,191935,31.986273468519222,peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192049,31.159648481852013,peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192049,0.2324733230366245,relative_legacy,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192049,41.56495788678891,spot_peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192049,80.75143760236669,baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192418,-59.61783305564866,baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192418,-1.2087616132686436,relative_legacy,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192418,-72.83765563764844,peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192418,-64.38561897747249,spot_baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192418,-71.2792928036659,spot_peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192472,30.030447579061946,spot_peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192472,74.88503212266622,baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192472,24.231755898363872,peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192472,0.1002238715815178,relative_legacy,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192924,23.74344976106129,spot_peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192924,0.0389855135084698,relative_legacy,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192924,38.05240311137245,baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192924,67.80719051126377,spot_baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,192924,10.610308351862829,peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,193275,0.1401061827168848,relative_legacy,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,193275,58.53646356389512,baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,193275,20.183931827071262,peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,193275,37.445213768310005,spot_peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,193275,86.8686765322135,spot_baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,195286,27.027682020297643,peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,195286,76.00541847958515,baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,195286,0.1672419087137501,relative_legacy,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,195286,35.95798679209366,spot_peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,204737,-0.4283879523616833,relative_legacy,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,204737,-51.45731728297583,spot_baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,204737,-20.647924978797256,baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,204737,-25.91817392032107,peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,204737,-61.98618005066131,spot_peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,208405,0.0998851195203884,relative_legacy,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,208405,30.030447579061946,spot_peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,208405,74.54258353357552,baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,208405,24.083902278408413,peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,215725,78.28959531743965,baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,215725,84.79969065549501,spot_baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,215725,0.171819033340817,relative_legacy,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,215725,35.95798679209366,spot_peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,215725,28.10019249726112,peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,218666,98.5500430304885,spot_baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,218666,0.2789931059019943,relative_legacy,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,218666,90.99942191547296,baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,218666,45.84200543846807,spot_peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,218666,36.54212292694502,peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,219886,0.0304560326585911,relative_legacy,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,219886,67.0936997512637,baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,219886,18.811729407246908,peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,219886,24.888219091528164,spot_peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,219886,69.39975951028914,spot_baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,220077,66.74092786664559,baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,220077,18.06921458508191,peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,220077,23.74344976106129,spot_peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,220077,0.0147273312558798,relative_legacy,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,221727,-1.1394709928076712,relative_legacy,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,221727,-61.98618005066131,spot_peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,221727,-49.80252748983771,baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,221727,-67.0785698510697,peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,222631,-0.1316393736279849,relative_legacy,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,222631,-149.85410631303793,spot_peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,222631,-11.84600948761714,baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,222631,-10.141188179465145,peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29636,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.588175+00,222631,-173.6965594166206,spot_baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29784 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,182315,-3.0835419234627723,peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,182315,11.32127083977334,baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,182315,-2.713372428115868,spot_peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,182315,-0.026550156438528,relative_legacy,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,182315,18.903382439001717,spot_baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,185690,-0.3221285842092897,peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,185690,-4.548884127313001,spot_peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,185690,16.349873228287958,spot_baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,185690,1.4407239847852709,baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,185690,0.0010704249310854,relative_legacy,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,185698,-39.592867633113926,spot_baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,185698,-27.13897266190854,baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,185698,-0.3208577824695017,relative_legacy,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,185698,-44.76160586155515,spot_peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,185698,-25.380781325642733,peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,185699,23.223792550735304,peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,185699,0.2951158916846908,relative_legacy,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,185699,53.5289612504988,baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,185699,81.55754288625727,spot_baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,185699,42.323647223818845,spot_peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,187708,26.005459855015097,baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,187708,0.1623432804889835,relative_legacy,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,187708,51.80314926021694,spot_baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,187708,9.690277596355342,peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,187708,20.93561487446705,spot_peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,188107,-0.6912653676095653,relative_legacy,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,188107,-49.65090140199832,spot_peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,188107,-47.288375099801314,peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,188107,-40.48460738845087,baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,188107,-46.39470997597905,spot_baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,189585,18.591928601567982,spot_peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,189585,0.1547849003393636,relative_legacy,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,189585,16.00056292296678,peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,189585,47.80363135302079,baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,189588,2.6059321750375006,spot_peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,189588,-0.0646291629075977,relative_legacy,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,189588,-0.2922128176974903,peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,189588,25.81031415993831,baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,189869,-11.211195998070885,peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,189869,-39.44230125840176,spot_peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,189869,-9.169954523347732,baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,189869,-0.1320869397310199,relative_legacy,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,190772,14.05285877405924,peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,190772,21.513352879595757,spot_peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,190772,0.1739278893811964,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,190772,40.29564030579784,baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,190772,52.60688116675877,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191026,42.80077027401303,spot_baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191026,14.464531128047014,spot_peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191026,-0.7176623618576992,peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191026,-0.0057690330149488,relative_legacy,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191026,0.4321782584578833,baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191046,-6.4174698831463095,spot_peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191046,13.750352374993504,spot_baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191046,-0.0263610578439208,relative_legacy,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191046,6.81881848157925,baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191046,-4.039824548960779,peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191471,-83.65012677171204,spot_baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191471,-56.42189021507131,baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191471,-0.7438290383991123,relative_legacy,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191471,-53.75053631407375,peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191471,-76.43081396315918,spot_peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191935,0.5233297553145095,relative_legacy,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191935,52.421708678281576,spot_peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191935,40.47234085912882,peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191935,78.44601726803327,baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,191935,95.60566524124027,spot_baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192049,41.201524101624656,peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192049,50.26113670317203,spot_peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192049,0.5219381059968162,relative_legacy,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192049,80.88375519087415,baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192418,-11.144757004165116,baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192418,-0.4195628489428589,relative_legacy,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192418,-26.834933992333944,peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192418,-24.9484701972742,spot_peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192418,-12.029423371771196,spot_baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192472,-21.75914350726266,spot_baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192472,-31.94238079829238,spot_peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192472,-0.5352102908333832,relative_legacy,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192472,-35.0077484485814,peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192472,-21.30439402724572,baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192924,-12.834178416873906,spot_peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192924,-8.476736123439322,peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192924,-0.0934679849171639,relative_legacy,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192924,2.713162851713183,baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,192924,4.823618565284762,spot_baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,193275,35.88186222915326,spot_peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,193275,42.67046139203263,baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,193275,72.59592345091876,spot_baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,193275,0.2212771361114357,relative_legacy,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,193275,16.816463742500826,peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,195286,26.099776341781663,peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,195286,60.77447383515853,baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,195286,0.3107569368507646,relative_legacy,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,195286,32.43962857744441,spot_peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,204737,-6.4174698831463095,spot_peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,204737,5.536652597427371,baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,204737,-2.909490243209829,peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,204737,-0.003888007367773,relative_legacy,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,204737,13.750352374993504,spot_baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,208405,25.51803904971967,baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,208405,2.6059321750375006,spot_peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,208405,-0.5055079516493098,peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,208405,-0.0681685663877475,relative_legacy,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,215725,37.85116232537298,spot_baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,215725,6.932505637822663,peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,215725,10.9066574152561,spot_peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,215725,34.97117404855843,baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,215725,0.0422659645126216,relative_legacy,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,218666,88.59609316643987,baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,218666,53.27348926734412,spot_peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,218666,0.5669070376523067,relative_legacy,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,218666,45.72353692146553,peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,218666,96.79063702901466,spot_baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,219886,55.6601081653847,spot_baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,219886,50.19633783284437,baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,219886,18.300225066096065,peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,219886,0.2028736045796965,relative_legacy,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,219886,23.708071368477167,spot_peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,220077,-0.6402060897986188,relative_legacy,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,220077,-32.19280948873623,spot_baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,220077,-39.44230125840176,spot_peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,220077,-42.83417254593428,peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,220077,-31.698599698536725,baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,221727,7.697944108926451,peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,221727,0.04402987549573,relative_legacy,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,221727,36.64428976601488,baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,221727,10.9066574152561,spot_peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,222631,-3.556960344538595,peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,222631,-3.516155508616395,baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,222631,-0.045263243248476,relative_legacy,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29637,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.595657+00,222631,-53.290001234278186,spot_peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29785 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,182315,0.0522840448986574,relative_legacy,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,182315,16.199856024960013,peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,182315,31.034012061215048,spot_baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,182315,18.603479832159472,baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,182315,28.309766176264624,spot_peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,185690,1.8239561313895165,spot_peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,185690,-0.5228759123740795,baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,185690,-0.0128133034648406,relative_legacy,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,185690,0.1901167357516289,peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,185690,-5.859315889085481,spot_baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,185698,-0.6523361386294205,relative_legacy,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,185698,-147.39311883324118,spot_baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,185698,-59.6577738336367,baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,185698,-99.7835059213028,spot_peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,185698,-40.70593129088236,peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,185699,65.99245584023782,spot_baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,185699,0.1804236945303928,relative_legacy,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,185699,33.55298446751465,baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,185699,28.61214479175787,peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,185699,53.40651815925023,spot_peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,187708,22.148122383463686,baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,187708,43.50951516200971,spot_baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,187708,37.26596025523239,spot_peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,187708,0.1182386785965421,relative_legacy,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,187708,18.47774525613194,peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,188107,-20.55134846143592,baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,188107,-9.507101094230803,peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,188107,-0.3441081149039197,relative_legacy,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,188107,-23.44652536370228,spot_baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,188107,-10.801944410617123,spot_peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,189585,25.48379831726004,peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,189585,0.1262918061171437,relative_legacy,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,189585,24.913677383883428,spot_peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,189585,25.904951592743732,baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,189588,33.75181748032529,peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,189588,0.2391873941631615,relative_legacy,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,189588,33.20381496435684,spot_peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,189588,37.14485037032892,baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,189869,-30.91096019200202,spot_peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,189869,-0.1849181703506745,relative_legacy,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,189869,-8.656905097385117,peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,189869,-14.65789206985879,baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,190772,0.3013680544202299,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,190772,44.839231890846186,baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,190772,58.496250072115615,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,190772,48.024973769998,spot_peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,190772,36.54994116018018,peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191026,12.728160031379128,spot_peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191026,-0.0043390720271002,relative_legacy,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191026,0.0407439054195365,baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191026,9.329661523259322,spot_baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191026,0.4673177043259899,peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191046,15.90178476710035,spot_peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191046,13.750352374993504,spot_baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191046,6.803828538454423,baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191046,-0.0298181611918742,relative_legacy,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191046,7.373097929520672,peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191471,-37.44103942920631,peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191471,-83.65012677171204,spot_baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191471,-0.6924402327183161,relative_legacy,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191471,-54.02225657811659,spot_peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191471,-56.47867258818465,baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191935,91.07326619029126,spot_baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191935,74.72803080044027,baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191935,0.5957111499218597,relative_legacy,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191935,58.8319497087588,peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191935,71.41209303170197,spot_peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191975,43.79698148040015,spot_peer,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191975,0.1869617050420891,relative_legacy,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191975,52.60688116675877,spot_baseline,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191975,32.712394931521324,baseline,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,191975,26.56275076601053,peer,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192049,-173.6965594166206,spot_baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192049,-105.19024220149392,peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192049,-1.6581198280800256,relative_legacy,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192049,-118.66681001781951,spot_peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192049,-151.92413347931458,baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192418,-14.086470844160814,baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192418,-15.200309344505014,spot_baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192418,-4.881965834336757,spot_peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192418,-4.170041767473837,peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192418,-0.2737883690562182,relative_legacy,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192472,-30.91096019200202,spot_peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192472,-51.45731728297583,spot_baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192472,-50.42164158268784,baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192472,-0.6361151182953829,relative_legacy,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192472,-30.570371177339325,peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192924,-37.04882848340306,baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192924,-24.059130764635977,peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192924,-0.4906401183081944,relative_legacy,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192924,-41.16778175478483,spot_peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,192924,-65.744525452268,spot_baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,193275,52.48470660697288,spot_peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,193275,0.1830326429739468,relative_legacy,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,193275,64.70842126289537,spot_baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,193275,31.74591372897271,baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,193275,26.71103312993532,peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,195286,48.024973769998,spot_peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,195286,0.3867340108922179,relative_legacy,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,195286,52.42861080836119,baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,195286,43.84683558189413,peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,204737,26.303440583379377,spot_baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,204737,24.913677383883428,spot_peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,204737,9.979205261947069,peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,204737,0.0365875078033928,relative_legacy,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,204737,10.628985591606693,baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,208405,-46.87656631696804,spot_peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,208405,-0.8490264033752728,relative_legacy,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,208405,-71.76854016061094,baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,208405,-73.69655941662059,spot_baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,208405,-46.165058030922616,peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,215725,-1.3556535597088843,relative_legacy,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,215725,-83.17129802509767,peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,215725,-122.24270689499843,baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,215725,-132.19280948873626,spot_baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,215725,-88.8711667995994,spot_peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,218666,67.51306248033487,peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,218666,83.80339114665672,baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,218666,91.9912088677308,spot_baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,218666,72.07108631686992,spot_peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,218666,0.7015219172399338,relative_legacy,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,219886,14.403334885505712,spot_peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,219886,14.861092926137282,peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,219886,-0.0177803024513192,relative_legacy,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,219886,11.411840001718517,baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,219886,11.663091203630646,spot_baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,220077,6.03037328736669,spot_peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,220077,-0.1327577098102936,relative_legacy,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,220077,0.0,spot_baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,220077,0.0,baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,220077,6.378109935520002,peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,221727,-30.06214238482018,peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,221727,-30.91096019200202,spot_peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,221727,-49.8109588378179,baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,221727,-0.6292069835119692,relative_legacy,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,222631,-30.91096019200202,spot_peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,222631,-3.524681619695865,baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,222631,-2.09061392726332,peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29638,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.603756+00,222631,-0.039979372495644,relative_legacy,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29786 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,182315,-15.200309344505014,spot_baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,182315,-9.12009632316142,baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,182315,-7.678818700620213,peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,182315,-0.252181310946013,relative_legacy,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,182315,-12.805025435495084,spot_peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,185690,-9.0483819131136,spot_peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,185690,-9.974178756525008,spot_baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,185690,-0.79144278638338,peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,185690,-0.0222772336946063,relative_legacy,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,185690,-0.902058322495666,baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,185698,6.268196436580672,peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,185698,0.0133838033782965,relative_legacy,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,185698,37.85116232537298,spot_baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,185698,9.821616934853171,baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,185698,25.329396207130436,spot_peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,185699,49.423082749060974,spot_peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,185699,71.36958148433591,spot_baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,185699,0.2032974932029766,relative_legacy,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,185699,29.73744636755833,peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,185699,42.02500074674991,baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,187708,25.12323571801384,baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,187708,0.1093509176603095,relative_legacy,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,187708,16.975040027825667,peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,187708,48.12989415475651,spot_baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,187708,32.71794700874268,spot_peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,188107,-25.01956246652746,spot_peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,188107,-0.5153642718391964,relative_legacy,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,188107,-28.318159521802013,baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,188107,-32.19280948873627,spot_baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,188107,-20.81863809836057,peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,189585,-25.019562466527432,spot_peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,189585,-21.117041521278427,peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,189585,-0.5164088108622441,relative_legacy,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,189585,-31.725896855552865,baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,189588,0.276366037894409,relative_legacy,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,189588,37.34102792726613,peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,189588,48.54268271702416,spot_baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,189588,33.01466739344232,spot_peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,189588,47.66521238777907,baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,189869,-14.658463699427369,baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,189869,-0.2118980311999719,relative_legacy,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,189869,-11.140355272205856,peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,189869,-38.867262442403856,spot_peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,190772,25.329396207130436,spot_peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,190772,0.0844966366387081,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,190772,37.85116232537298,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,190772,29.035025312873262,baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,190772,20.203686434357657,peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191026,0.3664576743205406,peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191026,0.6359165822538642,baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191026,27.75086205488706,spot_baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191026,-0.0010767148049515,relative_legacy,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191026,18.069105453489964,spot_peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191046,46.86236736931874,spot_peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191046,23.13032749423277,peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191046,0.2013733014977592,relative_legacy,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191046,33.647934816545195,baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191471,-88.8968687611256,spot_baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191471,-0.7794069052101806,relative_legacy,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191471,-44.417645100660685,peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191471,-60.06738382780697,baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191471,-65.779534566783,spot_peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191935,57.9181917457307,spot_peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191935,0.4626722229878173,relative_legacy,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191935,48.90972841298287,peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191935,68.25856635728933,baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,191935,83.18772411916731,spot_baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192049,-0.0023231885148508,relative_legacy,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192049,16.608879256088183,peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192049,23.060090739367418,baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192049,17.028670966911832,spot_peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192418,-16.183331692569173,peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192418,-23.32073133682908,baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192418,-19.959841737845597,spot_peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192418,-25.153876699596427,spot_baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192418,-0.4526386321353829,relative_legacy,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192472,-25.153876699596427,spot_baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192472,-0.4473631257218941,relative_legacy,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192472,-24.67509543223913,baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192472,-16.000638835275222,peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192472,-19.959841737845597,spot_peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192924,-16.798640003393274,spot_peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192924,-0.2701080260748915,relative_legacy,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192924,-20.7561069935362,spot_baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192924,-9.628866002876402,peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,192924,-11.773967552110271,baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,193275,78.07300364763763,spot_baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,193275,34.71895145866154,peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,193275,0.2958015042274226,relative_legacy,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,193275,49.155063025604186,baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,193275,54.24163196508609,spot_peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,195286,40.16948369579284,spot_peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,195286,0.2950399583864667,relative_legacy,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,195286,38.35337876322247,peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,195286,52.42800547570848,baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,204737,29.395897902869443,spot_baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,204737,0.0184256588723454,relative_legacy,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,204737,11.923814825479852,baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,204737,7.624368553551768,peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,204737,19.251588967511164,spot_peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,208405,-96.90149230237364,spot_peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,208405,-132.19280948873626,spot_baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,208405,-129.0402752512929,baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,208405,-1.4922499542792074,relative_legacy,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,208405,-92.85357138081,peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,215725,-73.69655941662059,spot_baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,215725,-0.9018203100346855,relative_legacy,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,215725,-49.0465498004422,peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,215725,-68.19389115170156,baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,215725,-54.85325886893432,spot_peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,218666,53.636237929977966,spot_peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,218666,77.23079749584033,spot_baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,218666,53.14448453947912,peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,218666,70.45171864164114,baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,218666,0.4955028572330512,relative_legacy,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,219886,20.43875206554524,baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,219886,23.16781617985105,spot_baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,219886,-0.0283887472400342,relative_legacy,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,219886,14.767186690263944,peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,219886,14.774723633251936,spot_peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,220077,-25.019562466527432,spot_peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,220077,-31.71355238666455,baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,220077,-21.11817061311621,peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,220077,-0.5164169555382194,relative_legacy,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,220077,-32.19280948873623,spot_baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,221727,-34.72433039796076,peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,221727,-38.867262442403856,spot_peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,221727,-49.853710505122095,baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,221727,-0.7026492915904391,relative_legacy,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,222631,-2.629759833832396,peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,222631,-3.531840301631884,baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,222631,-0.0428401013268947,relative_legacy,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29639,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.614717+00,222631,-38.867262442403856,spot_peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29787 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,182315,15.029126174315982,spot_peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,182315,-0.0298901479332826,relative_legacy,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,182315,1.7171308688569664,baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,182315,6.971943074775974,peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,182315,2.856915219677092,spot_baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,185690,-14.880066140670587,spot_baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,185690,2.279441677873747,spot_peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,185690,0.1389821443515622,peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,185690,-0.0013296007968279,relative_legacy,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,185690,-1.3626642725487896,baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,185698,-0.5887577657573141,relative_legacy,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,185698,-111.88091858649598,spot_peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,185698,-61.05260968051232,baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,185698,-39.61407650201997,peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,185698,-173.6965594166206,spot_baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,185699,73.11832415721999,spot_baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,185699,44.2508543147502,baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,185699,65.53438284847752,spot_peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,185699,39.23105273666404,peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,185699,0.2972465860879545,relative_legacy,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,187708,0.1248267527340078,relative_legacy,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,187708,16.24075632619516,peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,187708,33.426945343807525,spot_peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,187708,15.08487987986211,baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,187708,28.45141332442453,spot_baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,188107,-7.400058144377692,spot_baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,188107,3.27523170347777,peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,188107,-0.2191866048841307,relative_legacy,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,188107,7.656215777484707,spot_peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,188107,-6.537243893314003,baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,189585,-0.4429535077934174,relative_legacy,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,189585,-31.73298815800258,baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,189585,-10.165292348242916,spot_peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,189585,-11.674073325495083,peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,189588,-132.19280948873626,spot_baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,189588,-129.8105789635079,baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,189588,-1.4248947236581098,relative_legacy,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,189588,-82.04722218408911,spot_peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,189588,-83.96835958907523,peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,189869,-11.47524898605047,peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,189869,-20.994351235514696,baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,189869,-0.1862720632523214,relative_legacy,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,189869,-39.99898875064981,spot_peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,189869,-73.69655941662059,spot_baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,190772,56.55971758542251,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,190772,0.3148386737449871,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,190772,53.63173689074424,spot_peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,190772,38.169861406447545,peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,190772,43.4187351616769,baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191026,11.350615080557706,spot_peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191026,2.3672391923458536,peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191026,2.14287408595181,baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191026,0.0302581661475045,relative_legacy,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191026,-2.2605198605422974,spot_baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191046,26.303440583379377,spot_baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191046,14.535016965200176,peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191046,12.985895777028691,baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191046,0.1142223034572328,relative_legacy,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191046,31.882941085196343,spot_peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191471,-67.62439830794379,baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191471,-0.7508200498178536,relative_legacy,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191471,-42.76231207110223,peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191471,-58.906409455208085,spot_peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191471,-100.0,spot_baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191935,62.29303509201767,spot_baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191935,57.75295615810127,spot_peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191935,0.3661230597744614,relative_legacy,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191935,51.114361746264734,baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,191935,44.236418344218905,peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192049,-81.26821510656266,peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192049,-1.391419989346323,relative_legacy,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192049,-124.41937503304062,baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192049,-82.04722218408911,spot_peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192049,-132.19280948873626,spot_baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192418,-39.592867633113926,spot_baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192418,-36.72948946818087,baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192418,-15.484596951396307,spot_peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192418,-17.655310595489716,peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192418,-0.521476513006672,relative_legacy,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192472,-24.012992324119352,spot_peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192472,-50.55950321188346,baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192472,-25.60818229838265,peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192472,-0.6322010235378206,relative_legacy,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192472,-51.45731728297583,spot_baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192924,-51.45731728297583,spot_baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192924,-0.3238701269286357,relative_legacy,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192924,-24.012992324119352,spot_peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192924,-15.591647600880084,peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,192924,-29.257159045084805,baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,193275,0.4068712103476172,relative_legacy,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,193275,51.64317592169304,baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,193275,43.95975435720501,peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,193275,70.41545804856494,spot_peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,193275,79.90873060740036,spot_baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,195286,68.0036353056039,spot_peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,195286,58.06570942668208,peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,195286,0.5262678612114424,relative_legacy,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,195286,68.355210606504,baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,204737,-54.04440795458655,spot_peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,204737,-22.58814155288985,peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,204737,-37.94851726961952,baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,204737,-0.3723218588490391,relative_legacy,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,204737,-93.23612831246366,spot_baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,208405,-100.0,spot_baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,208405,-58.906409455208085,spot_peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,208405,-1.105825643398298,relative_legacy,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,208405,-97.59911724005192,baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,208405,-60.480519408853176,peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,215725,0.2947002650067544,relative_legacy,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,215725,44.9528144077071,baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,215725,47.86893751172682,spot_peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,215725,41.97136505958093,peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,215725,48.54268271702416,spot_baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,218666,36.513259345252976,spot_baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,218666,34.608016732802646,baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,218666,35.84123004664051,peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,218666,39.221955843973376,spot_peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,218666,0.2053613921896258,relative_legacy,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,219886,0.5485797946761709,relative_legacy,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,219886,68.77185041712603,spot_peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,219886,60.4305584798789,peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,219886,70.86130114168934,baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,219886,77.6221926204649,spot_baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,220077,-32.19280948873623,spot_baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,220077,-11.664671518966085,peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,220077,-31.72310357449514,baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,220077,-10.165292348242916,spot_peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,220077,-0.4428856880951435,relative_legacy,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,221727,20.625596056313277,peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,221727,13.33070353062057,baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,221727,-0.003493185106185,relative_legacy,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,221727,22.85953902701253,spot_peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,221727,13.750352374993504,spot_baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,222631,-3.53828861806953,baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,222631,-1.7099567642106543,peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,222631,-24.012992324119352,spot_peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29640,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.754278+00,222631,-0.0264807120926954,relative_legacy,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29788 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,182315,-0.0092068285589545,relative_legacy,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,182315,1.019868364213432,peer,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,182315,0.0,baseline,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,182315,-0.3867326746283597,spot_peer,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,182315,0.0,spot_baseline,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,185690,56.73507388181744,spot_baseline,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,185690,3.8659015095790954,peer,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,185690,40.39553332541514,spot_peer,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,185690,0.0383087561083604,relative_legacy,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,185690,5.2564833667173705,baseline,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,185698,57.05320499329851,spot_peer,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,185698,0.2668010289694068,relative_legacy,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,185698,20.787170097122896,peer,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,185698,28.105710652822008,baseline,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,185698,79.90873060740036,spot_baseline,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,185699,-83.65012677171204,spot_baseline,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,185699,-60.51605810826678,spot_peer,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,185699,-16.436935598245586,baseline,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,185699,-0.1931771133267212,relative_legacy,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,185699,-11.514610205636862,peer,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,187708,22.041625326543816,peer,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,187708,0.2824359429523049,relative_legacy,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,187708,29.16338838616565,baseline,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,187708,38.71637006767187,spot_peer,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,187708,54.39907196648503,spot_baseline,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,188107,43.29594072761065,spot_baseline,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,188107,38.39605672294052,baseline,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,188107,0.3480109060028433,relative_legacy,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,188107,30.735225060962264,spot_peer,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,188107,28.332063506440143,peer,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,189585,18.52068802992989,spot_peer,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,189585,16.96838112772205,peer,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,189585,25.91665769371402,baseline,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,189585,0.2029718999680851,relative_legacy,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,189588,13.750352374993504,spot_baseline,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,189588,7.95428885473599,peer,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,189588,13.4872065848273,baseline,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,189588,9.497285971746065,spot_peer,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,189588,0.080295385371166,relative_legacy,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,189869,8.131048363347366,peer,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,189869,0.0935770067360795,relative_legacy,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,189869,26.821413270148486,spot_peer,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,189869,10.783308429489283,baseline,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,190772,-15.200309344504996,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,190772,-11.678563385295238,baseline,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,190772,-11.313008372477018,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,190772,-0.1424806835810805,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,190772,-8.067136414891161,peer,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191026,15.72126436964646,spot_peer,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191026,-0.9272395154393688,peer,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191026,-1.3562973423832074,baseline,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191026,-0.0255920387918292,relative_legacy,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191026,22.40896575962831,spot_baseline,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191046,-100.0,spot_baseline,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191046,-34.73480239813947,peer,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191046,-72.26866251047453,spot_peer,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191046,-0.5035431776693983,relative_legacy,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191046,-49.43452367600468,baseline,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191471,49.489174501382166,baseline,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191471,52.17212979321107,spot_peer,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191471,36.49736179569359,peer,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191471,0.475332085187331,relative_legacy,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191471,73.11832415721999,spot_baseline,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191935,8.406426478847456,spot_baseline,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191935,6.897951879318617,baseline,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191935,5.399681026637368,peer,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191935,5.655968908598754,spot_peer,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,191935,0.0388924413893043,relative_legacy,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192049,63.90163629129586,baseline,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192049,45.90606700710948,peer,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192049,48.35438443233681,spot_peer,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192049,0.5944501987788349,relative_legacy,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192418,54.29380654299414,baseline,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192418,39.20982169035677,peer,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192418,41.661500758810895,spot_peer,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192418,0.5021183820457319,relative_legacy,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192472,40.34147090230446,peer,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192472,41.661500758810895,spot_peer,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192472,57.58967329958513,baseline,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192472,0.520100882939356,relative_legacy,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192924,0.0,spot_baseline,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192924,0.9869184478405938,peer,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192924,-0.0091979409093515,relative_legacy,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192924,-0.3867326746283597,spot_peer,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,192924,0.0,baseline,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,193275,-0.5280689626590529,relative_legacy,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,193275,-50.15734287579336,baseline,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,193275,-71.44233380611544,spot_peer,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,193275,-35.78935262145973,peer,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,193275,-98.85043611621704,spot_baseline,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,195286,-332.1928094887362,spot_baseline,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,195286,-239.1733349110479,spot_peer,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,195286,-296.61370962455806,baseline,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,195286,-3.0011643813857707,relative_legacy,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,195286,-215.98247483341024,peer,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,204737,-0.3466194442134611,relative_legacy,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,204737,-33.742150330410965,baseline,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,204737,-23.57648509792357,peer,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,204737,-59.77795033964389,spot_peer,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,204737,-82.62329322632937,spot_baseline,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,208405,74.71401658534637,baseline,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,208405,53.12611684116146,peer,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,208405,54.64138225033746,spot_peer,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,208405,0.6941192787559209,relative_legacy,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,215725,8.891360077526294,peer,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,215725,12.742673572072764,baseline,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,215725,0.0874509229915714,relative_legacy,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,215725,9.497285971746065,spot_peer,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,215725,13.750352374993504,spot_baseline,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,218666,-26.53445665209948,spot_baseline,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,218666,-18.94159109532017,peer,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,218666,-0.2885495803031765,relative_legacy,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,218666,-19.460212187613525,spot_peer,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,218666,-24.10886647998498,baseline,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,219886,-0.2154409592784044,relative_legacy,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,219886,-13.217641758948805,peer,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,219886,-14.080472918218364,spot_peer,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,219886,-17.608992656839852,baseline,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,219886,-19.05032359991145,spot_baseline,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,220077,48.54268271702416,spot_baseline,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,220077,0.4222711582600641,relative_legacy,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,220077,33.146914797422575,peer,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,220077,47.8467975988904,baseline,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,220077,34.50668445646038,spot_peer,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,221727,-0.1962175830085723,relative_legacy,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,221727,-12.306175117945273,peer,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,221727,-14.72741961353959,baseline,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,221727,-11.313008372477018,spot_peer,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,221727,-15.200309344504996,spot_baseline,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,222631,48.54268271702416,spot_baseline,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,222631,0.0211800235131973,relative_legacy,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,222631,3.3438286268782416,baseline,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,222631,34.50668445646038,spot_peer,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29641,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-08 14:19:42.76189+00,222631,2.4514493233571724,peer,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4011,2024-11-09 15:30:00+00,29789 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,182315,-67.00599078028357,spot_peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,182315,-21.579238043712007,baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,182315,-40.041788617857776,peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,182315,-35.845397091247634,spot_baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,182315,-0.6335040557592461,relative_legacy,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,185690,67.67187441184333,spot_baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,185690,-1.4178685224185168e-05,relative_legacy,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,185690,0.6750080175661383,peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,185690,6.347574244335066,baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,185690,7.4042216895506465,spot_peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,185698,1.833660245892135,peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,185698,22.57765817253113,baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,185698,64.15460290875237,spot_baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,185698,4.875939055562602,spot_peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,185698,-0.0130673428780792,relative_legacy,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,185699,69.59938131099001,spot_baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,185699,52.24247813696872,baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,185699,-0.0618059627014737,relative_legacy,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,185699,3.171183305589749,peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,185699,8.78975084637637,spot_peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,187708,13.550104774239992,peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,187708,90.91970629916877,spot_baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,187708,24.115211895153383,spot_peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,187708,49.35427748463953,baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,187708,0.1127434560843975,relative_legacy,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,188107,84.79969065549501,spot_baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,188107,75.66571086864757,baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,188107,19.71602654422502,spot_peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,188107,18.37485092576898,peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,188107,0.1362609802111733,relative_legacy,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,189585,-130.27914174488177,baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,189585,-136.02003056072166,peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,189585,-136.26237015849972,spot_peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,189585,-1.9888693258281531,relative_legacy,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,189585,-132.19280948873626,spot_baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,189588,-0.1088741674214062,relative_legacy,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,189588,0.8086058396667632,spot_peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,189588,57.439369174113445,baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,189588,1.977313823764911,peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,189869,-14.031481648995664,spot_peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,189869,-0.079697002165253,relative_legacy,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,189869,10.7839522944103,baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,189869,-3.9076220351045214,peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,190772,4.875939055562602,spot_peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,190772,64.15460290875237,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,190772,4.307243204553813,peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,190772,-0.0315164570800023,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,190772,49.32795138331427,baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191026,-0.0085738341286766,relative_legacy,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191026,-10.861801930978215,spot_peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191026,42.260726349677725,spot_baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191026,3.763579973227537,baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191026,-0.1332429357426371,peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191046,42.09805073706783,baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191046,0.0699441624742525,relative_legacy,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191046,19.71602654422502,spot_peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191046,84.79969065549501,spot_baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191046,10.10341075914135,peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191471,28.59877217269248,baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191471,-0.1794823503816085,relative_legacy,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191471,-6.861714220541937,peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191471,-10.888704664294886,spot_peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191471,42.22330006830476,spot_baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191935,0.1061784009487407,relative_legacy,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191935,70.89311011033088,baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191935,15.816243556204066,peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191935,81.55754288625727,spot_baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,191935,17.385508159567088,spot_peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192049,80.0181089317252,baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192049,19.71602654422502,spot_peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192049,0.1446521651734768,relative_legacy,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192049,19.68435954022008,peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192418,35.150174703710064,baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192418,-14.031481648995664,spot_peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192418,-0.2913315329492223,relative_legacy,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192418,-12.521647137931971,peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192472,13.78848733119331,spot_peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192472,15.25834349406886,peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192472,75.49695017023686,baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192472,0.0684836171298163,relative_legacy,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192924,15.013880643623676,baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192924,26.303440583379377,spot_baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192924,-12.33987246781568,peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192924,-0.2475513424078413,relative_legacy,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,192924,-22.332206889214252,spot_peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,193275,0.0565414258297426,relative_legacy,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,193275,58.0286940543568,baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,193275,15.72241197632681,spot_peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,193275,79.2438930064638,spot_baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,193275,10.659662122011117,peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,195286,68.70520497842008,baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,195286,0.0626810187460001,relative_legacy,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,195286,13.103266542575572,peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,195286,13.78848733119331,spot_peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,204737,0.0947880352237579,relative_legacy,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,204737,10.55783583604028,peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,204737,25.322997638920278,spot_peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,204737,37.96076040686691,baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,204737,92.5999418556223,spot_baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,208405,19.71602654422502,spot_peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,208405,0.1478821805305292,relative_legacy,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,208405,82.77077088935773,baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,208405,20.67309109388995,peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,215725,37.85116232537298,spot_baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,215725,-14.031481648995664,spot_peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,215725,-0.2908307295829474,relative_legacy,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,215725,-12.50790063518203,peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,215725,35.10119574514636,baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,218666,91.90025560857826,baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,218666,27.60995350256472,peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,218666,0.2463817456757532,relative_legacy,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,218666,27.483569614029825,spot_peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,218666,95.60566524124027,spot_baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,219886,0.1237412540889792,relative_legacy,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,219886,82.18244833837804,spot_baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,219886,80.69428627526395,baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,219886,19.05184783833824,peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,219886,17.83470225820094,spot_peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,220077,15.25834349406886,peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,220077,13.78848733119331,spot_peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,220077,0.0684836171298163,relative_legacy,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,220077,75.47576523399947,baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,221727,0.8086058396667632,spot_peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,221727,56.681348081354265,baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,221727,1.7392267687578369,peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,221727,-0.1076181438207768,relative_legacy,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,222631,0.9288697656412698,peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,222631,5.283754587135031,baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,222631,13.78848733119331,spot_peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29642,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-08 14:19:42.769072+00,222631,0.0061159409664329,relative_legacy,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29790 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,182315,89.53026213333065,spot_baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,182315,27.832919832055616,spot_peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,182315,15.17184040990322,peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,182315,0.1724773519897202,relative_legacy,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,182315,53.94398801119585,baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,185690,0.0119417817182173,relative_legacy,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,185690,0.6431693776503438,peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,185690,5.693567561993015,baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,185690,6.562001002619051,spot_peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,185690,59.97938521222419,spot_baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,185698,-100.0,spot_baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,185698,-20.58542708822944,baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,185698,-108.5922303360078,spot_peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,185698,-28.127981134250263,peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,185698,-0.4027796398247399,relative_legacy,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,185699,62.060404774335154,baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,185699,0.0778494994671291,relative_legacy,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,185699,10.622350923524824,peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,185699,19.706730154004852,spot_peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,185699,78.24085649273731,spot_baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,187708,37.629038333705154,spot_baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,187708,20.858496946853272,baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,187708,-0.1239751117035868,relative_legacy,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,187708,-6.755098082515198,peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,187708,-9.525928148585573,spot_peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,188107,3.0665313179977662,peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,188107,-0.0294062813371458,relative_legacy,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,188107,60.09040445901777,spot_baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,188107,6.641913398902814,spot_peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,188107,53.92657642459968,baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,189585,57.659443737530815,baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,189585,5.494430410295908,spot_peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,189585,2.034440263048354,peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,189585,-0.0481430794688999,relative_legacy,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,189869,7.494236224297654,baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,189869,-0.0815944383028629,relative_legacy,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,189869,-17.678169149256657,spot_peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,189869,-5.240038115644014,peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,190772,-27.67568919932247,peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,190772,-32.53864137348041,spot_peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,190772,4.35373193035301,baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,190772,5.658352836636751,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,190772,-0.4392804083770525,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191026,1.1532285339770412,baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191026,-1.611574191625942,peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191026,61.48669386991546,spot_baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191026,7.646971854558771,spot_peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191026,-0.017498959463251,relative_legacy,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191046,84.79969065549501,spot_baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191046,11.029322850217063,peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191046,41.98063087348618,baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191046,24.42782284659119,spot_peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191046,0.1274306302418763,relative_legacy,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191471,0.0749121485283517,relative_legacy,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191471,16.01949712194114,spot_peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191471,49.57626965225025,baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191471,73.11832415721999,spot_baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191471,8.922923328327352,peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191935,6.869896265105752,spot_peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191935,3.1909980456418983,peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191935,52.50891531096493,baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191935,-0.0244790088871742,relative_legacy,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,191935,60.40713236688608,spot_baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192049,24.42782284659119,spot_peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192049,80.15194862506581,baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192049,0.2005590638557971,relative_legacy,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192049,20.34854574614731,peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192418,-36.78384710824466,baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192418,-65.11077248535011,spot_peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192418,-39.592867633113926,spot_baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192418,-64.60170471027796,peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192418,-0.9578553814650606,relative_legacy,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192472,5.494430410295908,spot_peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192472,57.79890878497818,baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192472,2.029526534186828,peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192472,-0.0481824254303535,relative_legacy,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192924,58.496250072115615,spot_baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192924,1.6204200637947912,peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192924,33.47592873771089,baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192924,5.494430410295908,spot_peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,192924,-0.0106156453286183,relative_legacy,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,193275,23.8492912453016,spot_peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,193275,0.1438529168440273,relative_legacy,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,193275,63.15228856365538,baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,193275,83.99595874895317,spot_baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,193275,14.803800451104792,peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,195286,60.85491358610175,baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,195286,12.196507605351382,spot_peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,195286,8.129422333826609,peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,195286,0.0398460155220873,relative_legacy,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,204737,-0.0771330886413353,relative_legacy,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,204737,-9.366041813927865,spot_peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,204737,37.85116232537298,spot_baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,204737,15.592557545145452,baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,204737,-4.507934861773345,peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,208405,57.105892609694585,baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,208405,2.0721112622735576,peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,208405,5.494430410295908,spot_peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,208405,-0.0480586252194172,relative_legacy,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,215725,8.486319715205365,peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,215725,0.0398460155220873,relative_legacy,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,215725,67.80719051126377,spot_baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,215725,12.196507605351382,spot_peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,215725,62.92260176234595,baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,218666,18.9089653040871,peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,218666,22.79974229497888,spot_peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,218666,82.53786038929313,spot_baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,218666,0.1808811886894025,relative_legacy,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,218666,79.5135448164598,baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,219886,11.845808900998737,peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,219886,0.0899535829676074,relative_legacy,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,219886,73.35799474604471,spot_baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,219886,16.192013614575316,spot_peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,219886,66.2208666335827,baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,220077,66.8719058423464,baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,220077,12.196507605351382,spot_peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,220077,0.0436426933595159,relative_legacy,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,220077,8.834034057888593,peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,221727,36.6793262182192,baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,221727,-12.65061732342268,peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,221727,-9.366041813927865,spot_peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,221727,-0.2481181803673829,relative_legacy,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,222631,-9.366041813927865,spot_peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,222631,-0.5898932669928161,peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,222631,2.6169612126565367,baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29643,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-08 14:19:42.776148+00,222631,-0.0033572731700099,relative_legacy,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29791 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,182315,30.50911134568616,baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,182315,50.58909297299573,spot_baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,182315,33.53296020254969,peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,182315,50.851941599637705,spot_peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,182315,0.2187891489383985,relative_legacy,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,185690,2.474394369335032,peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,185690,13.750352374993504,spot_baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,185690,-0.0013335550718006,relative_legacy,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,185690,1.3222100669738377,baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,185690,24.436766584929664,spot_peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,185698,11.63451555693081,peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,185698,24.436766584929664,spot_peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,185698,13.750352374993504,spot_baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,185698,0.0195865065418642,relative_legacy,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,185698,7.153883046099792,baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,185699,52.60688116675877,spot_baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,185699,41.54765548206738,peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,185699,33.03716749515116,baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,185699,52.29879421771425,spot_peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,185699,0.2199076063850675,relative_legacy,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,187708,7.278078996603568,baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,187708,12.961273813046963,spot_baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,187708,-0.0062884898288875,relative_legacy,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,187708,15.98739191148916,peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,187708,23.870958743081182,spot_peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,188107,-15.183121579495074,spot_peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,188107,-41.50374992788438,spot_baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,188107,-0.4716050960602565,relative_legacy,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,188107,-37.42790019445699,baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,188107,-8.460706814679392,peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,189585,-38.26693723268917,spot_peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,189585,-30.89597860781708,peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,189585,-72.77486441969837,baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,189585,-0.7802437951910949,relative_legacy,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,189585,-73.69655941662059,spot_baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,189588,-7.400058144377692,spot_baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,189588,9.27088994439082,spot_peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,189588,16.631641560537375,peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,189588,-7.27286159476453,baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,189588,-0.1285949207187463,relative_legacy,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,189869,-0.1858291264518957,relative_legacy,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,189869,-14.661479215518908,baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,189869,-22.32031518159351,spot_peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,189869,-5.331291317716064,peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,190772,25.6030215287763,peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,190772,28.13174064721373,spot_peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,190772,14.5549626005342,baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,190772,0.0315918036404444,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,190772,18.903382439001717,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191026,3.0317485356846783,baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191026,63.69967892682619,spot_baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191026,3.197812434436313,peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191026,0.0195928842792577,relative_legacy,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191026,60.25287162314089,spot_peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191046,-86.04662306605206,baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191046,-173.6965594166206,spot_baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191046,-109.97181798026972,spot_peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191046,-52.42553752783038,peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191046,-0.930962891681337,relative_legacy,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191284,-100.0,spot_baseline,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191284,-1.0340459120899816,relative_legacy,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191284,-57.12778793551207,spot_peer,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191284,-49.39640293075413,peer,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191284,-97.39676835884651,baseline,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191471,-27.7839921131626,peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191471,-83.65012677171204,spot_baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191471,-45.40413083478761,spot_peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191471,-0.6643385545271611,relative_legacy,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191471,-56.76515911843754,baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191935,43.29761728775254,spot_peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191935,34.817165798343744,baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191935,0.2374954330973993,relative_legacy,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191935,40.05379295837285,spot_baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,191935,42.82513122149122,peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192049,-51.45731728297583,spot_baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192049,-14.993754881144612,peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192049,-0.5613659312118958,relative_legacy,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192049,-22.32031518159351,spot_peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192049,-48.714907066678464,baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192418,-20.22506093730964,baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192418,-1.0252750915091369,spot_peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192418,-0.2853222651824267,relative_legacy,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192418,5.056071372447254,peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192418,-21.75914350726266,spot_baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192472,-51.45731728297583,spot_baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192472,-50.94465570188537,baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192472,-22.32031518159351,spot_peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192472,-0.5604181104784212,relative_legacy,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192472,-14.811432520871133,peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192924,-4.932526521475385,peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192924,-12.999435730160403,spot_peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192924,-22.05956961495156,baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192924,-0.3013247920418733,relative_legacy,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,192924,-38.458370273713,spot_baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,193275,0.4306687629421397,relative_legacy,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,193275,54.72701277010298,baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,193275,67.75162881163847,spot_peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,193275,74.15748474187959,spot_baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,193275,55.07613584752738,peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,195286,24.436766584929664,spot_peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,195286,12.340382976971943,baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,195286,13.750352374993504,spot_baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,195286,0.0242780383285977,relative_legacy,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,195286,27.483011765001372,peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,204737,40.59812306883685,spot_peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,204737,15.021969685767289,baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,204737,0.0902776157214451,relative_legacy,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,204737,18.55393455843774,peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,204737,36.28906426658603,spot_baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,208405,-97.86671957508828,baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,208405,-49.57149055040414,peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,208405,-57.12778793551207,spot_peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,208405,-1.0356247587122165,relative_legacy,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,208405,-100.0,spot_baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,215725,-0.7678594783578253,relative_legacy,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,215725,-38.26693723268917,spot_peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,215725,-29.984120898914117,peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,215725,-73.69655941662059,spot_baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,215725,-68.4279791322849,baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,218666,37.826293433920895,spot_peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,218666,43.7478458162504,peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,218666,0.2459755589366556,relative_legacy,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,218666,32.42345622705313,spot_baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,218666,30.81799992619889,baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,218945,2.455743605482501,peer,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,218945,-4.698380793948083,spot_peer,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,218945,-0.3220246842073919,relative_legacy,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,218945,-26.881675842779984,spot_baseline,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,218945,-26.17719164345474,baseline,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,219886,4.679451616896091,peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,219886,-2.698721742707729,spot_peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,219886,-0.2925376857898556,relative_legacy,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,219886,-24.09294091930989,spot_baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,219886,-23.676929425189797,baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,220077,-1.039440496237927,relative_legacy,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,220077,-98.64829904061776,baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,220077,-100.0,spot_baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,220077,-49.81776898038537,peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,220077,-57.12778793551207,spot_peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,221727,-15.00452064488033,peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,221727,-22.32031518159351,spot_peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,221727,-49.91929184605656,baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,221727,-0.5614153450161982,relative_legacy,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,222631,0.0153763310041017,relative_legacy,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,222631,2.922805460378994,peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,222631,2.6243458688719845,baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29644,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-08 14:19:42.783087+00,222631,41.71822361905031,spot_peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29792 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,182315,-2.6856423664283344,peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,182315,15.88174129381243,baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,182315,-2.8187387732958715,spot_peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,182315,26.303440583379377,spot_baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,182315,-0.0955914769556735,relative_legacy,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,185690,-1.1640741155368757,baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,185690,-0.0541587596839538,relative_legacy,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,185690,-30.21858840060166,spot_peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,185690,-11.951037331218078,spot_baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,185690,-2.963683975706432,peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,185698,-2.8187387732958715,spot_peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,185698,-0.023716449150943,relative_legacy,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,185698,26.303440583379377,spot_baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,185698,12.75375648457094,baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,185698,1.1330521684198207,peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,185699,52.83990412967703,baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,185699,67.80719051126377,spot_baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,185699,16.522357801764482,peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,185699,26.908408713388177,spot_peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,185699,0.1100137976107228,relative_legacy,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,187708,6.843306508135246,peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,187708,0.0383887018854695,relative_legacy,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,187708,13.257678514609994,spot_peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,187708,48.74863493485362,spot_baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,187708,27.69360446012281,baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,188107,9.545510296433193,peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,188107,0.0108587730296305,relative_legacy,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,188107,13.110164808854153,spot_peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,188107,48.54268271702416,spot_baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,188107,44.11060990320342,baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,189585,25.967896143391027,baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,189585,-5.776261846942486,peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,189585,-2.8187387732958715,spot_peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,189585,-0.1940125622821364,relative_legacy,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,189588,0.0020205004939118,baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,189588,-24.52903175673813,peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,189588,0.0,spot_baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,189588,-0.4511795882607464,relative_legacy,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,189588,-21.658632975337845,spot_peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,189869,0.0409988846353504,relative_legacy,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,189869,16.667659453263976,baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,189869,20.23942819583913,spot_peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,189869,5.450672710801714,peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,190772,35.57616205806071,spot_peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,190772,61.565681204186376,baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,190772,0.2637577826748489,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,190772,79.90873060740036,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,190772,26.04469382492261,peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191026,77.72694946992145,spot_baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191026,34.0134567658836,spot_peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191026,1.8110682917520495,peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191026,4.57674828425368,baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191026,0.015903709664817,relative_legacy,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191046,-55.32412059576564,baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191046,-101.8999412235675,spot_peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191046,-0.7563574648904898,relative_legacy,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191046,-112.0294233717712,spot_baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191046,-50.985787506455374,peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191284,26.908408713388177,spot_peer,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191284,67.80719051126377,spot_baseline,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191284,0.2114125669361774,relative_legacy,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191284,66.04137460350368,baseline,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191284,23.83992523881232,peer,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191471,31.034012061215048,spot_baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191471,-0.8715327001080686,peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191471,21.07857948595826,baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191471,-0.0877406578109178,relative_legacy,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191471,0.5695429184131979,spot_peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191935,21.37733368425204,peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191935,26.908408713388177,spot_peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191935,0.1797225627083136,relative_legacy,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191935,58.94277366717893,baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191935,67.80719051126377,spot_baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191975,20.697669892851923,spot_peer,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191975,0.0275877293227436,relative_legacy,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191975,11.005084797962516,baseline,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191975,3.6568363615271338,peer,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,191975,59.13602719193067,spot_baseline,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192049,-32.19280948873623,spot_baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192049,-45.62806914432807,peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192049,-44.71679994447284,spot_peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192049,-30.518714155029198,baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192049,-0.7457621361914131,relative_legacy,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192418,-0.57717139783451,relative_legacy,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192418,-33.23852277824322,peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192418,-32.54588625997991,spot_peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192418,-14.13510033706355,baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192418,-15.200309344505014,spot_baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192472,17.446433187286313,peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192472,57.989069867257726,baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192472,20.23942819583913,spot_peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192472,0.1237140138766254,relative_legacy,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192924,-68.74828651164535,spot_peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192924,-65.744525452268,spot_baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192924,-37.81103444100516,baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192924,-40.54587147006488,peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,192924,-0.6188396291036056,relative_legacy,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,193275,-13.827750506300772,baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,193275,-29.319001324456387,peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,193275,-0.5060217766689148,relative_legacy,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,193275,11.902410314227431,spot_baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,193275,-13.13350675245768,spot_peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,195286,33.17295296775309,spot_peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,195286,0.2621669383621361,relative_legacy,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,195286,68.70267995241959,baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,195286,27.663839997914646,peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,204737,18.16989277879085,baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,204737,3.631649362826791,peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,204737,0.0028714937995588,relative_legacy,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,204737,9.657895055304108,spot_peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,204737,43.72277389129098,spot_baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,208405,-2.8187387732958715,spot_peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,208405,-5.644480960666994,peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,208405,-0.1929727115812746,relative_legacy,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,208405,25.701882996613765,baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,215725,0.1944461600335089,relative_legacy,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,215725,22.77699715413113,peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,215725,26.908408713388177,spot_peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,215725,63.01002903556128,baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,215725,67.80719051126377,spot_baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,218666,47.71592111866412,spot_baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,218666,0.0003046569714113,relative_legacy,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,218666,8.427769322818486,peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,218666,12.517995088925703,spot_peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,218666,44.88779678264798,baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,218945,-0.2575344255996025,relative_legacy,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,218945,-10.30454547577668,peer,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,218945,-7.576612418441251,spot_peer,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,218945,19.15471553844093,baseline,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,218945,19.66070440948177,spot_baseline,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,219886,61.58870739160568,spot_baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,219886,58.691620962813246,baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,219886,19.05015572041733,peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,219886,0.1434381024585251,relative_legacy,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,219886,22.454407203579187,spot_peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,220077,24.160028979339398,peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,220077,0.2155862113169417,relative_legacy,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,220077,66.91480683401976,baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,220077,26.908408713388177,spot_peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,221727,20.23942819583913,spot_peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,221727,56.73133250571659,baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,221727,0.119368647316562,relative_legacy,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,221727,17.16358593970269,peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,222631,-4.052785245342357,peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,222631,-58.51504384900687,spot_peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,222631,-0.0660681451510187,relative_legacy,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29645,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-08 14:19:42.925784+00,222631,-3.5756089022466857,baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29793 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,182315,99.66234178536143,spot_peer,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,182315,35.61438102252753,spot_baseline,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,182315,21.526818117714647,baseline,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,182315,0.986062461239849,relative_legacy,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,182315,63.44032962864519,peer,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,185690,78.57952228835329,spot_peer,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,185690,0.6121393987815996,baseline,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,185690,7.851659367844384,peer,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,185690,0.1261451937632257,relative_legacy,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,185690,6.212171190779749,spot_baseline,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,185698,7.565905806092516,peer,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,185698,37.227684350507154,spot_peer,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,185698,-27.86067747606512,baseline,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,185698,0.1556167639722997,relative_legacy,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,185698,-51.45731728297583,spot_baseline,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,185699,5.819741568225029,peer,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,185699,-93.42970336077931,baseline,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,185699,-20.663604056605536,spot_peer,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,185699,0.2493626624083477,relative_legacy,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,185699,-132.19280948873623,spot_baseline,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,187708,-0.3559769572206543,relative_legacy,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,187708,-61.32318213690972,spot_peer,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,187708,-32.75179866456505,peer,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,187708,-188.8968687611256,spot_baseline,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,187708,-108.36799274671884,baseline,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,188107,-79.2068067552247,peer,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,188107,-92.36848480418608,spot_peer,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,188107,-212.2674056383877,baseline,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,188107,-0.920688235797152,relative_legacy,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,188107,-232.1928094887362,spot_baseline,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,189585,-72.76135990705721,baseline,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,189585,21.28106229941145,spot_peer,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,189585,0.5203625826629649,relative_legacy,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,189585,-73.69655941662063,spot_baseline,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,189585,26.682573224044543,peer,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,189588,-72.41039340386331,baseline,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,189588,-73.69655941662063,spot_baseline,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,189588,26.596245812037363,peer,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,189588,21.28106229941145,spot_peer,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,189588,0.5205093934451939,relative_legacy,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,189869,-50.42381844816909,spot_peer,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,189869,-173.6965594166206,spot_baseline,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,189869,-13.27661190485398,peer,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,189869,-49.49483403695786,baseline,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,189869,-0.1285022369470887,relative_legacy,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,190772,-127.87190425619109,baseline,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,190772,-164.38561897747246,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,190772,-43.74741970979965,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,190772,-29.262049923977948,peer,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,190772,-0.2628121929669934,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191026,-151.01956715672358,spot_baseline,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191026,-10.178616161213052,baseline,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191026,-0.0210828006161342,relative_legacy,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191026,-2.225143767237556,peer,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191026,-34.16330819107185,spot_peer,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191046,18.68050140716613,baseline,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191046,101.26622315115095,spot_peer,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191046,52.15670188090276,peer,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191046,0.7827307281208469,relative_legacy,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191046,37.85116232537298,spot_baseline,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191284,-156.92027430307851,peer,000_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191284,-332.1928094887362,spot_baseline,000_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191284,-323.53716434683497,baseline,000_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191284,-1.997205194842937,relative_legacy,000_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191284,-164.07336555176664,spot_peer,000_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191471,-15.200309344504996,spot_baseline,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191471,46.940924678695744,peer,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191471,-10.335029448911335,baseline,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191471,63.22572865542847,spot_peer,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191471,0.7515320111258381,relative_legacy,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191935,-74.87512551182567,peer,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191935,-232.19280948873623,spot_baseline,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191935,-201.84056128827507,baseline,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191935,-92.36848480418608,spot_peer,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,191935,-0.8663046880235583,relative_legacy,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192049,108.9325650980877,spot_peer,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192049,1.6811260999897588,relative_legacy,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192049,46.09398823230747,baseline,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192049,110.4462538433292,peer,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192418,26.303440583379377,spot_baseline,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192418,1.4550644337535354,relative_legacy,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192418,92.985943046992,spot_peer,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192418,93.50884800502764,peer,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192418,24.472994778059487,baseline,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192472,-172.37757094847728,baseline,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192472,-45.49201355584719,peer,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192472,-0.4666280714241814,relative_legacy,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192472,-173.6965594166206,spot_baseline,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192472,-50.42381844816909,spot_peer,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192924,0.3926762744191357,relative_legacy,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192924,21.250337022681148,peer,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192924,-33.838199786265506,baseline,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192924,32.07692595364347,spot_peer,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,192924,-58.64059175908248,spot_baseline,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,193275,-58.302579927365365,spot_peer,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,193275,-30.940657151051305,peer,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,193275,-133.89459823428666,baseline,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,193275,-0.2790375141356256,relative_legacy,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,193275,-184.68432119385795,spot_baseline,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,195286,-1.7945923988121593,relative_legacy,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,195286,-298.12191119042865,baseline,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,195286,-332.1928094887362,spot_baseline,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,195286,-164.07336555176664,spot_peer,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,195286,-142.4972067025163,peer,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,204737,-0.0320567635125631,relative_legacy,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,204737,-132.19280948873623,spot_baseline,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,204737,-55.21198436971121,baseline,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,204737,-6.996254906261498,peer,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,204737,-20.663604056605536,spot_peer,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,208405,37.227684350507154,spot_peer,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,208405,0.7384158432238193,relative_legacy,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,208405,42.40293723740813,peer,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,208405,-50.28704457873755,baseline,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,208405,-51.45731728297583,spot_baseline,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,215725,0.2801358847967104,relative_legacy,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,215725,8.177262409620516,peer,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,215725,2.420211596588567,spot_peer,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,215725,-100.0,spot_baseline,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,215725,-92.99740812044452,baseline,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,218666,-23.381631410471805,peer,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,218666,-140.54176680038265,baseline,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,218666,-32.718826427910855,spot_peer,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,218666,-0.1666441220908979,relative_legacy,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,218666,-149.00508536956892,spot_baseline,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,218945,1.4952651560456314,relative_legacy,SeidrBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,218945,97.50331365990888,peer,SeidrBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,218945,92.985943046992,spot_peer,SeidrBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,218945,26.303440583379377,spot_baseline,SeidrBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,218945,25.64292944631463,baseline,SeidrBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,219886,-79.56062766008749,spot_peer,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,219886,-0.7182246175599043,relative_legacy,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,219886,-188.672533386544,baseline,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,219886,-214.3309052354044,spot_baseline,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,219886,-64.43420527324692,peer,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,220077,-51.45731728297583,spot_baseline,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,220077,0.7400931654626619,relative_legacy,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,220077,-50.79762969301048,baseline,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,220077,37.227684350507154,spot_peer,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,220077,42.76073492337098,peer,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,221727,-49.92149245450049,baseline,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,221727,42.09539270237418,peer,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,221727,0.7360061131733543,relative_legacy,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,221727,37.227684350507154,spot_peer,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,222631,101.26622315115095,spot_peer,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,222631,7.060618059950247,peer,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,222631,2.635516442178783,baseline,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29646,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-08 14:19:42.933141+00,222631,0.1081616196502176,relative_legacy,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,0.4308,2024-11-09 15:30:00+00,29794 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,182315,36.5120732175998,peer,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,182315,54.59683691052925,spot_baseline,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,182315,61.59967233874352,spot_peer,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,182315,0.5715621780169059,relative_legacy,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,182315,33.0382288660116,baseline,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,185690,4.968952927746293,spot_peer,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,185690,0.0041434934331456,relative_legacy,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,185690,0.3830028325006904,peer,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,185690,-2.438378219847675,baseline,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,185690,-24.468509595490172,spot_baseline,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,185698,-38.63979842017388,peer,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,185698,-232.19280948873623,spot_baseline,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,185698,-0.5006684744653516,relative_legacy,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,185698,-64.29829052207634,baseline,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,185698,-143.81401030387218,spot_peer,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,185699,-0.1231049303005586,relative_legacy,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,185699,-46.69647039987852,baseline,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,185699,-16.82641757565113,peer,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,185699,-14.361836892684147,spot_peer,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,185699,-51.45731728297583,spot_baseline,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,187708,-162.15383783348432,baseline,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,187708,-104.48212873248492,peer,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,187708,-1.3875596936316985,relative_legacy,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,187708,-177.75943055764924,spot_peer,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,187708,-279.58592832197746,spot_baseline,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,188107,-81.1799772682729,spot_peer,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,188107,-0.9969413205626022,relative_legacy,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,188107,-144.74589769712213,spot_baseline,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,188107,-80.44378816541727,peer,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,188107,-134.44565022848082,baseline,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,189585,-72.73198522224843,baseline,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,189585,-30.29074047483417,spot_peer,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,189585,-0.3934633434484176,relative_legacy,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,189585,-36.25125415559592,peer,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,189585,-73.69655941662063,spot_baseline,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,189588,37.195832993414726,baseline,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,189588,43.996556428048656,peer,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,189588,49.60554797595894,spot_peer,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,189588,0.7048983195641315,relative_legacy,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,189869,10.78612183232514,baseline,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,189869,0.2168866882948159,relative_legacy,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,189869,49.60554797595894,spot_peer,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,189869,13.763307599696088,peer,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,190772,-0.5102071645419287,peer,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,190772,-22.285432859134477,baseline,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,190772,-28.63041851566411,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,190772,0.0791003618920077,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,190772,1.9879769795215827,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191026,0.0699020129123021,baseline,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191026,6.682455335229293,spot_peer,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191026,1.5272028031120328,peer,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191026,-22.076192086625323,spot_baseline,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191026,0.0200414263728414,relative_legacy,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191046,77.3261599240758,spot_peer,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191046,0.5733868620861974,relative_legacy,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191046,37.591589056404615,peer,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191046,37.9102801917514,baseline,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191284,26.303440583379377,spot_baseline,000_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191284,35.55560622381731,peer,000_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191284,41.33446818302685,spot_peer,000_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191284,25.61788036348469,baseline,000_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191284,0.5916338449556187,relative_legacy,000_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191471,-0.021690649236666,relative_legacy,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191471,-43.440282414577496,spot_baseline,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191471,-7.342801032444253,peer,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191471,-29.5640123242568,baseline,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191471,-8.619618940020361,spot_peer,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191935,-0.4959722703570117,relative_legacy,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191935,-42.781853769528645,peer,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191935,-100.0,spot_baseline,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191935,-49.13063467687616,spot_peer,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191935,-81.51840807745853,baseline,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191975,-7.204142342095168,peer,jkraybill_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191975,-0.0657809181777303,relative_legacy,jkraybill_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191975,-20.442021895053923,spot_peer,jkraybill_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191975,-19.89490976746911,baseline,jkraybill_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,191975,-59.94620704162712,spot_baseline,jkraybill_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192049,63.84302568718266,peer,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192049,0.9864565580861394,relative_legacy,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192049,64.50457843913654,baseline,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192049,71.06161566971089,spot_peer,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192418,38.07076331341293,peer,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192418,0.6358599671082805,relative_legacy,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192418,31.034012061215048,spot_baseline,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192418,28.884406191899064,baseline,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192418,44.722749874735904,spot_peer,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192472,-21.75914350726268,spot_baseline,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192472,0.1188315910345342,relative_legacy,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192472,1.167929607636363,peer,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192472,-21.61619404723714,baseline,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192472,6.909542041744559,spot_peer,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192924,-0.1469734229448838,relative_legacy,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192924,-38.02664862918094,baseline,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192924,-24.59507955532261,spot_peer,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192924,-65.74452545226798,spot_baseline,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,192924,-15.093048646811368,peer,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,193275,-53.34890744396918,spot_peer,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,193275,-46.318249179234726,peer,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,193275,-105.88936890535685,spot_baseline,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,193275,-86.4511898411912,baseline,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,193275,-0.5444021561774202,relative_legacy,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,195286,0.0,baseline,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,195286,16.85365598943806,peer,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,195286,0.3388009619649136,relative_legacy,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,195286,22.49457398098486,spot_peer,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,195286,0.0,spot_baseline,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,204737,67.64749741496352,spot_peer,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,204737,0.4256940268418827,relative_legacy,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,204737,63.04054714823233,spot_baseline,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,204737,27.752156052077886,peer,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,204737,26.43632331922511,baseline,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,208405,-0.5635929881501379,spot_peer,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,208405,0.020419100513134,relative_legacy,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,208405,-32.19280948873623,spot_baseline,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,208405,-31.421187166698807,baseline,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,208405,-5.992410907992836,peer,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,215725,-15.200309344504996,spot_baseline,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,215725,0.205550157012161,relative_legacy,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,215725,6.841126764777012,peer,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,215725,-14.147157411565235,baseline,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,215725,11.607320696342816,spot_peer,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,218666,0.7441078916868928,peer,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,218666,3.4892140376889365,spot_peer,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,218666,-26.53445665209948,spot_baseline,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,218666,-22.3831654494659,baseline,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,218666,0.11083780712845,relative_legacy,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,218945,31.397735484114477,baseline,SeidrBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,218945,32.19280948873624,spot_baseline,SeidrBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,218945,39.75951898359515,peer,SeidrBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,218945,0.6490599245119842,relative_legacy,SeidrBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,218945,45.55274095011989,spot_peer,SeidrBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,219886,-11.09267144855527,spot_peer,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,219886,-0.0848041383525873,relative_legacy,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,219886,-14.150589011421305,peer,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,219886,-43.07645655117389,baseline,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,219886,-46.89305072740458,spot_baseline,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,220077,77.3261599240758,spot_peer,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,220077,75.59762392939193,baseline,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,220077,1.089682407309153,relative_legacy,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,220077,72.13703835365872,peer,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,221727,-14.361836892684147,spot_peer,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,221727,-0.1627641829654738,relative_legacy,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,221727,-49.92672558083579,baseline,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,221727,-19.398902250109128,peer,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,222631,-0.0159261416552422,relative_legacy,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,222631,-1.0630694511424348,peer,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,222631,-3.5892325878897133,baseline,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29647,"On November 29, 2024, Will Apple have the largest market cap in the world?",2024-11-08 14:19:42.937116+00,222631,-14.361836892684147,spot_peer,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29795 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,182315,13.750352374993504,spot_baseline,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,182315,8.327468031728316,baseline,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,182315,0.6329767476569554,relative_legacy,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,182315,61.56205433253164,spot_peer,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,182315,36.45430074172487,peer,RyansAGI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,185690,-2.0183082766985763,peer,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,185690,-10.258872194307989,baseline,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,185690,-21.335185618704635,spot_peer,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,185690,-0.0018430905053269,relative_legacy,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,185690,-101.85857004000316,spot_baseline,annabot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,185698,-155.6393348524385,spot_baseline,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,185698,-0.7368969515743953,relative_legacy,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,185698,-59.89861889259817,spot_peer,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,185698,-108.248104138714,baseline,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,185698,-58.85375652997832,peer,RonanMcGovern,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,185699,-23.93144178965196,peer,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,185699,-0.1300466282925244,relative_legacy,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,185699,-24.225465138281336,spot_peer,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,185699,-97.52639092052064,baseline,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,185699,-105.88936890535685,spot_baseline,MWG,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,187708,-88.8968687611256,spot_baseline,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,187708,-8.039417126572847,peer,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,187708,0.0123276476048253,relative_legacy,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,187708,-52.14075772327036,baseline,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,187708,-12.04101317382787,spot_peer,twsummerbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,188107,0.0508394375097447,relative_legacy,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,188107,-80.86092190608373,baseline,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,188107,-11.118157734009817,peer,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,188107,-10.142826415048935,spot_peer,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,188107,-86.24964762500652,spot_baseline,Cassie,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,189585,-51.45731728297583,spot_baseline,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,189585,12.25330100088264,peer,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,189585,-50.79079360246781,baseline,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,189585,14.80497256600846,spot_peer,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,189585,0.3824221343766915,relative_legacy,mf-bot-1,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,189588,0.5716079338253396,relative_legacy,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,189588,-31.657722898273,baseline,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,189588,26.220321724987024,peer,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,189588,28.61856490647633,spot_peer,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,189588,-32.19280948873623,spot_baseline,mf-bot-3,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,189869,-132.19280948873623,spot_baseline,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,189869,-43.086315841104216,spot_peer,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,189869,-11.671660438497035,peer,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,189869,-0.091711612499785,relative_legacy,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,189869,-37.67121717382994,baseline,VeritasAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,190772,-39.09079739121264,peer,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,190772,-108.72216491696604,baseline,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,190772,-0.3689317904336296,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,190772,-48.39251870878186,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,190772,-139.59286763311394,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191026,-13.802927997809167,spot_baseline,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191026,0.0815740251307303,relative_legacy,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191026,1.3251919413954334,baseline,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191026,41.80500749916697,spot_peer,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191026,4.500276145967293,peer,manticAI,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191046,-36.40539414259703,baseline,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191046,-0.8067292627039414,peer,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191046,0.0920899023181929,relative_legacy,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191046,-1.141649485087225,spot_peer,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191046,-73.69655941662063,spot_baseline,archipelago,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191284,-32.19280948873623,spot_baseline,000_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191284,-31.353480005088272,baseline,000_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191284,28.61856490647633,spot_peer,000_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191284,26.22028034115561,peer,000_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191284,0.5697613041072384,relative_legacy,000_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191471,62.98614540154562,peer,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191471,39.84881040169397,baseline,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191471,1.0133961081141114,relative_legacy,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191471,93.64704691568744,spot_peer,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191471,58.496250072115615,spot_baseline,HSeldon,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191935,-105.88936890535685,spot_baseline,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191935,-86.46316022696347,baseline,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191935,-21.06109088818781,peer,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191935,-24.225465138281336,spot_peer,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,191935,-0.1138337809924397,relative_legacy,pgodzinai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192049,-0.3859965399460802,relative_legacy,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192049,-43.254055878125286,peer,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192049,-125.89642801187284,baseline,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192049,-43.086315841104216,spot_peer,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192049,-132.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192418,8.406426478847456,spot_baseline,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192418,52.99484507625889,peer,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192418,57.73019864146104,spot_peer,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192418,7.827739424736025,baseline,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192418,0.9322402145436716,relative_legacy,InstitutPelFutur,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192472,0.2979108947906392,relative_legacy,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192472,6.050166393590683,peer,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192472,8.718024287773984,spot_peer,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192472,-59.59813732921227,baseline,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192472,-59.94620704162712,spot_baseline,bestworldbot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192924,26.303440583379377,spot_baseline,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192924,70.56323126249333,spot_peer,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192924,15.2444560162237,baseline,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192924,0.6801685492848432,relative_legacy,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,192924,40.21514001655124,peer,acm_bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,193275,4.233495921538054,spot_peer,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,193275,-54.68540931080108,baseline,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,193275,2.4901844470648355,peer,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,193275,0.2131567715589898,relative_legacy,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,193275,-66.20035364849842,spot_baseline,histerio,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,195286,-83.65012677171204,spot_baseline,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,195286,-8.691606008167081,peer,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,195286,-74.40988712444744,baseline,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,195286,0.0693702675660901,relative_legacy,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,195286,-8.27884308718563,spot_peer,Unwrapped80T,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,204737,-42.08833305096184,baseline,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,204737,-20.002500187910115,spot_peer,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,204737,-8.15249968303929,peer,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,204737,-0.0186168944477527,relative_legacy,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,204737,-100.0,spot_baseline,SynapseSeer,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,208405,-173.6965594166206,spot_baseline,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,208405,-169.91475011546115,baseline,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,208405,-72.84653023266777,spot_peer,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,208405,-0.8126371606951797,relative_legacy,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,208405,-74.5478572318506,peer,mf-bot-4,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,215725,-161.7572082187066,baseline,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,215725,-0.7635214436883127,relative_legacy,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,215725,-70.10392056626004,peer,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,215725,-72.84653023266777,spot_peer,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,215725,-173.6965594166206,spot_baseline,estr.ai,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,218666,-141.11954329844497,spot_baseline,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,218666,-49.48721967400982,spot_peer,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,218666,-48.86756280446468,peer,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,218666,-0.4616328921054692,relative_legacy,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,218666,-134.8628747861901,baseline,GreeneiBot2,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,218945,1.140842809835584,relative_legacy,SeidrBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,218945,70.56323126249333,spot_peer,SeidrBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,218945,25.664004329141125,baseline,SeidrBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,218945,67.796554963235,peer,SeidrBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,218945,26.303440583379377,spot_baseline,SeidrBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,219886,-49.195679376241,spot_baseline,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,219886,0.3980425120269358,relative_legacy,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,219886,14.102403264997044,peer,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,219886,16.42667732997475,spot_peer,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,219886,-46.09733299742301,baseline,SaraBase,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,220077,1.6464219710949048,relative_legacy,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,220077,104.65271950949388,peer,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,220077,75.62890052755364,baseline,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,220077,106.59495825575704,spot_peer,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,221727,-100.0,spot_baseline,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,221727,-21.66436737715417,peer,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,221727,-20.002500187910115,spot_peer,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,221727,-96.98022463473454,baseline,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,221727,-0.0877844881379677,relative_legacy,mf-bot-5,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,222631,-5.063410040880941,peer,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,222631,-0.051464316343065,relative_legacy,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,222631,-72.84653023266777,spot_peer,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,222631,-12.136492685415709,baseline,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29648,"Will Matt Eberflus cease to be the Chicago Bears head coach before January 1, 2025?",2024-11-08 14:19:42.94098+00,222631,-173.6965594166206,spot_baseline,Grizeu_Bot,True,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29796 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,182315,73.11832415721999,spot_baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,182315,2.7429558990509477,peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,182315,3.771201173196917,spot_peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,182315,44.33300133972506,baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,182315,-0.0189194022222456,relative_legacy,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,185690,-0.7848049764639724,spot_peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,185690,-0.0595602941703351,peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,185690,-0.0071496804158214,relative_legacy,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,185690,6.795092995510124,baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,185690,66.75742659750188,spot_baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,185698,84.79969065549501,spot_baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,185698,12.138004301675863,spot_peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,185698,0.0361475888758786,relative_legacy,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,185698,5.085430034721556,peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,185698,30.91999774900045,baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,185699,0.0729897730227395,relative_legacy,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,185699,79.12729464035802,baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,185699,12.138004301675863,spot_peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,185699,12.558066825584106,peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,185699,84.79969065549501,spot_baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,187708,40.27221768456047,spot_baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,187708,-11.36068269680542,peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,187708,23.88638073105996,baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,187708,-19.75489112382868,spot_peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,187708,-0.2130612848338492,relative_legacy,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,188107,1.1188145174594732,peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,188107,-0.0863923160906005,relative_legacy,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,188107,63.910010291014,baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,188107,-0.0329093828170944,spot_peer,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,188107,67.80719051126377,spot_baseline,Cassie,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,189585,-13.831153287351114,spot_peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,189585,-0.2787644307737523,relative_legacy,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,189585,-12.33382429342434,peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,189585,47.97093431448099,baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,189588,17.112092446881427,peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,189588,15.526285993384906,spot_peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,189588,89.53026213333065,spot_baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,189588,88.07299166324019,baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,189588,0.124818654890525,relative_legacy,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,189869,16.670375860042476,baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,189869,-1.8348268719374263,peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,189869,-6.7018899003661225,spot_peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,189869,-0.0517295132435111,relative_legacy,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,190710,0.010665995934191,baseline,Bot_Pepa,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,190710,3.771201173196917,spot_peer,Bot_Pepa,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,190710,0.0,relative_legacy,Bot_Pepa,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,190710,0.0005501167709184,peer,Bot_Pepa,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,190710,73.11832415721999,spot_baseline,Bot_Pepa,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,190772,60.97430617975276,baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,190772,7.440225647077602,spot_peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,190772,78.24085649273731,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,190772,6.452106277430042,peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,190772,0.0121394651014866,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191026,0.1043878493699602,peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191026,70.85033576140313,spot_baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191026,2.1467497523570023,spot_peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191026,4.769290638556705,baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191026,-0.0028845744250037,relative_legacy,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191046,6.29235785959523,peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191046,42.02474251456015,baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191046,0.0396466640043414,relative_legacy,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191046,12.138004301675863,spot_peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191046,84.79969065549501,spot_baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191284,12.138004301675863,spot_peer,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191284,82.58755524244961,baseline,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191284,84.79969065549501,spot_baseline,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191284,13.504726423258342,peer,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191284,0.0757265989587507,relative_legacy,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191471,0.0235138003401018,relative_legacy,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191471,54.49504146806564,baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191471,6.424657729291612,peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191471,8.634843961855454,spot_peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191471,79.90873060740036,spot_baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191935,86.39384504239716,spot_baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191935,70.64704068913136,baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191935,0.0808939885221413,relative_legacy,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191935,11.63255873862403,peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,191935,13.279820707622982,spot_peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192049,12.138004301675863,spot_peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192049,80.85132481928808,baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192049,12.99292077153319,peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192049,0.0737663412582061,relative_legacy,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192418,-27.03360517938919,peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192418,-0.4718554040309345,relative_legacy,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192418,-29.760056869501145,spot_peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192418,26.303440583379377,spot_baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192418,24.499523856835523,baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192472,-6.7018899003661225,spot_peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192472,58.21952102781474,baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192472,-0.1804407384106381,relative_legacy,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192472,-5.150159370397186,peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192924,41.5758666522498,spot_baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192924,-18.82114983055514,spot_peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192924,-10.58879400979373,peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192924,24.158492609677765,baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,192924,-0.2015272415689176,relative_legacy,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,193275,-0.0542341230027516,relative_legacy,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,193275,1.9748322864724712,peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,193275,1.5055805748704636,spot_peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,193275,58.57475541804708,baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,193275,69.95516325230894,spot_baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,195286,71.36958148433591,spot_baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,195286,63.552634772946725,baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,195286,-0.046680015788428,relative_legacy,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,195286,3.1400685502317773,peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,195286,2.518660584854618,spot_peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,204737,39.31526820639072,baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,204737,18.050752135764625,spot_peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,204737,0.065987370512372,relative_legacy,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,204737,7.799964600907052,peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,204737,93.05481192478548,spot_baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,208405,13.633245657627608,peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,208405,12.138004301675863,spot_peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,208405,83.09950536194994,baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,208405,0.0771054657746229,relative_legacy,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,215725,0.0729897730227395,relative_legacy,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,215725,12.53807620396623,peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,215725,79.03785179182356,baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,215725,84.79969065549501,spot_baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,215725,12.138004301675863,spot_peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,218666,10.678374025924551,peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,218666,84.478735007906,spot_baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,218666,79.37980037032895,baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,218666,0.0389010780289815,relative_legacy,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,218666,11.908119149391046,spot_peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,218945,-60.66285294581326,baseline,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,218945,-90.89430186092918,peer,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,218945,-93.11418573443008,spot_peer,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,218945,-1.3578340148063928,relative_legacy,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,218945,-62.14883767462704,spot_baseline,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,219886,72.81382034189275,spot_baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,219886,-0.0301805275776768,relative_legacy,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,219886,3.55309968009763,spot_peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,219886,62.56721786980265,baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,219886,3.8572436744216834,peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,220077,67.00891631684766,baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,220077,-0.0884274837670335,relative_legacy,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,220077,1.573934163656992,peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,220077,-0.0329093828170944,spot_peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,221727,-0.0048562910585468,relative_legacy,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,221727,7.592351298325933,peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,221727,6.231634871547836,spot_peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,221727,74.31848078247583,baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,222631,6.231634871547836,spot_peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,222631,0.0017301023852705,relative_legacy,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,222631,0.446038625741728,peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29649,"Will IBM raise its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-11-08 14:19:42.944821+00,222631,5.359987720888736,baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29797 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,182315,74.84612330040356,spot_baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,182315,8.114000170717803,spot_peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,182315,5.61373829609125,peer,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,182315,45.42015301142324,baseline,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,182315,0.0175274855859471,relative_legacy,RyansAGI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,185690,-0.0115229261874783,relative_legacy,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,185690,-0.0284947108714426,peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,185690,-0.5823583233619408,spot_peer,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,185690,62.704645939240855,spot_baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,185690,6.45103408007664,baseline,annabot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,185698,9.336894127574771,spot_peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,185698,25.498689143794618,baseline,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,185698,-0.0062670721631961,relative_legacy,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,185698,2.314360775630142,peer,RonanMcGovern,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,185699,8.530625235814469,peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,185699,6.876460429223839,spot_peer,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,185699,68.99210554748421,baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,185699,0.0387654099531545,relative_legacy,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,185699,73.11832415721999,spot_baseline,MWG,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,187708,-0.2253499316866941,relative_legacy,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,187708,-20.796278766897856,spot_peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,187708,34.482849699744115,spot_baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,187708,-11.962803246100316,peer,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,187708,20.74932166834381,baseline,twsummerbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,189585,-10.725894031324184,spot_peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,189585,47.96817129967359,baseline,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,189585,-8.560385457357276,peer,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,189585,-0.1956224020744469,relative_legacy,mf-bot-1,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,189588,47.7564544023801,baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,189588,-8.543709977707993,peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,189588,-10.725894031324184,spot_peer,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,189588,-0.1953610455566277,relative_legacy,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,189588,48.54268271702416,spot_baseline,mf-bot-3,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,189869,2.7527454439518366,peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,189869,0.0058340888627995,relative_legacy,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,189869,21.81751767431325,baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,189869,9.336894127574771,spot_peer,VeritasAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,190710,1.4307027786919664e-05,relative_legacy,Bot_Pepa,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,190710,0.0089413398016264,peer,Bot_Pepa,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,190710,78.24085649273731,spot_baseline,Bot_Pepa,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,190710,10.54548490310453,spot_peer,Bot_Pepa,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,190710,0.0663391101215178,baseline,Bot_Pepa,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,190772,79.90873060740036,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,190772,11.74010321788239,spot_peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,190772,62.31082125965308,baseline,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,190772,0.0721298724200928,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,190772,10.459813419965265,peer,Jay_Bailey_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191026,5.713048488564495,baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191026,1.0047740143584625,peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191026,12.076580718718107,spot_peer,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191026,0.0056877687193944,relative_legacy,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191026,80.37850585432915,spot_baseline,manticAI,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191046,-0.0264983241976895,relative_legacy,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191046,3.0723498732098298,spot_peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191046,33.61571659247368,baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191046,1.875833263534432,peer,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191284,17.24512182942772,peer,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191284,84.79969065549501,spot_baseline,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191284,15.243263557702784,spot_peer,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191284,82.58636165058198,baseline,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191284,0.1581998166397279,relative_legacy,000_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191471,84.79969065549501,spot_baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191471,57.8734544594949,baseline,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191471,0.0867644971987369,relative_legacy,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191471,15.243263557702784,spot_peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191471,11.347641715340217,peer,HSeldon,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191935,-13.851032038973935,peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191935,-0.2639513048749985,relative_legacy,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191935,-18.3837178205421,spot_peer,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191935,31.005375430162378,baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191935,37.85116232537298,spot_baseline,pgodzinai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191975,41.97310345880455,baseline,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191975,21.2282724669974,spot_peer,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191975,9.844823580203228,peer,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191975,93.15569969399398,spot_baseline,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,191975,0.0877142899470344,relative_legacy,jkraybill_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192049,15.243263557702784,spot_peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192049,0.1516869415887836,relative_legacy,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192049,80.96769854608142,baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192049,16.789931883389983,peer,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192418,-0.5144428610986619,relative_legacy,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192418,12.812983895806108,baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192418,-31.82143892399125,peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192418,13.750352374993504,spot_baseline,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192418,-35.64597323573594,spot_peer,InstitutPelFutur,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192472,37.707860579572085,baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192472,-0.3013305069455729,relative_legacy,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192472,-18.3837178205421,spot_peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192472,-16.294032456073964,peer,bestworldbot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192924,64.70842126289537,spot_baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192924,37.69553916888599,baseline,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192924,0.8528499332403336,spot_peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192924,-0.0418606107123213,relative_legacy,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,192924,1.086027315582355,peer,acm_bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,193275,67.48144887125933,baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,193275,11.391060766400257,peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,193275,79.57669477823923,spot_baseline,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,193275,11.502281862426868,spot_peer,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,193275,0.0836670708365511,relative_legacy,histerio,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,195286,-1.5533590757767624,peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,195286,-3.5966306443391898,spot_peer,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,195286,-0.0954464426027207,relative_legacy,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,195286,52.14765247286108,baseline,Unwrapped80T,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,204737,0.0373476870072545,relative_legacy,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,204737,6.0943973590023806,peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,204737,35.138771849536894,baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,204737,82.8631581688019,spot_baseline,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,204737,13.85621812338159,spot_peer,SynapseSeer,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,208405,9.336894127574771,spot_peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,208405,0.0791917994483429,relative_legacy,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,208405,11.50240706118999,peer,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,208405,75.03605955686652,baseline,mf-bot-4,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,215725,79.08540856540264,baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,215725,84.79969065549501,spot_baseline,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,215725,15.243263557702784,spot_peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,215725,0.1477075104463503,relative_legacy,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,215725,16.32957288076448,peer,estr.ai,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,218666,56.05807589900383,baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,218666,-4.983676078660394,spot_peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,218666,-0.1136556570038295,relative_legacy,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,218666,56.55971758542251,spot_baseline,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,218666,-2.5502842617229664,peer,GreeneiBot2,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,218945,-0.4477413521894437,relative_legacy,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,218945,22.65085298086797,spot_baseline,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,218945,-26.944328572367585,peer,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,218945,22.118618752806597,baseline,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,218945,-29.27097110518416,spot_peer,SeidrBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,219886,-0.0762979098535085,relative_legacy,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,219886,54.568418712422925,baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,219886,-0.1405288606421593,peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,219886,60.644222813160766,spot_baseline,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,219886,-2.058140686651627,spot_peer,SaraBase,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,220077,67.02975652875153,baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,220077,5.368323126003415,peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,220077,-0.0052047921461773,relative_legacy,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,220077,3.0723498732098298,spot_peer,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,221727,-18.3837178205421,spot_peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,221727,-16.041057791952422,peer,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,221727,-0.2982615656613308,relative_legacy,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,221727,36.752406150454014,baseline,mf-bot-5,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,222631,-0.026118203104836,relative_legacy,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,222631,-18.3837178205421,spot_peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,222631,-1.2686839329134785,peer,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29650,"Will ModivCare file for bankruptcy before January 1, 2025?",2024-11-08 14:19:43.089829+00,222631,2.654871030309065,baseline,Grizeu_Bot,True,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,2024-11-09 15:30:00+00,29798 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,182315,-0.2803649392005686,relative_legacy,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,182315,36.94289625306035,baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,182315,-5.670685648549092,spot_peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,182315,-8.103074284982007,peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,182315,42.22330006830476,spot_baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,185690,1.0330919626223982,peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,185690,0.0059876967995529,relative_legacy,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,185690,67.39181830293744,spot_baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,185690,5.476666630091188,baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,185690,12.42093096959172,spot_peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,185698,2.119897593928016,baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,185698,-11.753596635021058,peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,185698,-29.97890699479958,spot_peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,185698,-0.2199173813571394,relative_legacy,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,185698,8.406426478847456,spot_baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,185699,62.36131516320775,baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,185699,0.0556222527853175,relative_legacy,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,185699,14.713370492098475,peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,185699,22.60352717531289,spot_peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,185699,81.55754288625727,spot_baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,188107,-41.340913181180085,spot_peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,188107,-3.86987256547404,baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,188107,-23.18935140713866,peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,188107,-0.4119030093958869,relative_legacy,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,188107,-7.400058144377692,spot_baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,189585,14.38092300587864,peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,189585,0.0241502633176674,relative_legacy,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,189585,75.39370205936281,baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,189585,19.00650634693909,spot_peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,189588,-6.0959404180615,peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,189588,-0.2508693705428247,relative_legacy,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,189588,48.54268271702416,spot_baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,189588,47.65717480015879,baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,189588,-1.1281914469379677,spot_peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,189869,19.00650634693909,spot_peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,189869,48.38761911661544,baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,189869,0.0245778924801709,relative_legacy,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,189869,10.04937894913999,peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,190772,71.2700907153306,baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,190772,30.541016654666084,spot_peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,190772,0.1408622436107569,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,190772,21.0026337648155,peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,190772,92.5999418556223,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191026,2.1800220102517693,baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191026,-1.7455970695783225,peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191026,-0.0343631276144909,relative_legacy,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191026,-19.15554956535646,spot_peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191026,23.46355899345855,spot_baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191471,12.746107167881329,baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191471,-22.433492476621826,spot_peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191471,-17.581802453751955,peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191471,18.903382439001717,spot_baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191471,-0.3662548904422427,relative_legacy,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191935,91.07326619029126,spot_baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191935,19.429845674288394,peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191935,0.0956623664822706,relative_legacy,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191935,29.44361272409187,spot_peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191935,75.15076806928225,baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191975,-0.0275796788334156,relative_legacy,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191975,63.41285575250407,spot_baseline,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191975,9.56077590089462,spot_peer,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191975,3.0642237621498416,peer,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,191975,26.40294711591578,baseline,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192049,-145.81770365638317,peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192049,-2.1636233225775445,relative_legacy,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192049,-160.87804754516077,spot_peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192049,-173.6965594166206,spot_baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192049,-151.54896148603737,baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192418,14.076320647378845,peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192418,19.00650634693909,spot_peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192418,0.0229562074974794,relative_legacy,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192418,71.19425268576879,baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192472,84.79969065549501,spot_baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192472,82.11899889280151,baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192472,20.098401407972336,peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192472,0.103034187574157,relative_legacy,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192472,24.93404555997082,spot_peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192924,0.215992166366819,peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192924,-0.0019052095981579,relative_legacy,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192924,3.1266097378735087,baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192924,3.6489577071765193,spot_peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,192924,55.18851034717248,spot_baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,193275,12.63541863291226,peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,193275,83.51156152582178,spot_baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,193275,24.008113482784,spot_peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,193275,51.51229945559066,baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,193275,0.0617058145232794,relative_legacy,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,195286,24.93404555997082,spot_peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,195286,0.0895435113106585,relative_legacy,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,195286,18.801844836360377,peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,195286,72.97902028659146,baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,204737,37.35000491144628,baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,204737,93.80975610740931,spot_baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,204737,31.410654486279675,spot_peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,204737,11.723315402583369,peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,204737,0.0958386115072005,relative_legacy,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,208405,0.1035416407017021,relative_legacy,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,208405,82.64083664405389,baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,208405,20.18422978838596,peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,208405,24.93404555997082,spot_peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,215725,0.0780684517984693,relative_legacy,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,215725,15.048051303122207,peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,215725,58.70894444624469,baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,215725,84.79969065549501,spot_baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,215725,24.93404555997082,spot_peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,218666,11.000324066448872,peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,218666,69.61919935251747,baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,218666,16.53725388981275,spot_peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,218666,-0.0191440917509428,relative_legacy,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,218666,73.11832415721999,spot_baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,219459,-0.2831444271038398,relative_legacy,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,219459,-18.773846422730728,peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,219459,-16.825146623176305,baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,219459,-101.21065474034695,spot_peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,219459,-90.68905956085182,spot_baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,219886,60.00794117921392,spot_baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,219886,-0.1287004134691416,relative_legacy,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,219886,55.003373653733846,baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,219886,2.90857688347412,peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,219886,7.113257596351702,spot_peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,220077,-0.05838368791779,relative_legacy,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,220077,12.71950852893847,spot_peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,220077,8.084708740566564,peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,220077,63.445429351264295,baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,221727,0.0231788250232106,relative_legacy,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,221727,19.00650634693909,spot_peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,221727,14.216407346748344,peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,221727,74.34839301599717,baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,222631,6.026624855412551,spot_peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,222631,3.707815061682089,baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,222631,0.3938535143339046,peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29714,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-11 15:11:34.449042+00,222631,-0.0003622646874345,relative_legacy,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29872 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,182315,-103.73495359488793,baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,182315,-118.44245711374276,spot_baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,182315,-0.8778614615056484,relative_legacy,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,182315,-69.39169937555562,spot_peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,182315,-61.18141138894993,peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,185690,-27.17747062402239,spot_baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,185690,-0.4036061540554765,peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,185690,-3.698551765241709,spot_peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,185690,-0.0020200830943883,relative_legacy,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,185690,-2.243996053572957,baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,185698,-19.037035630247964,peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,185698,-35.06308289010216,baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,185698,-100.0,spot_baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,185698,-0.2472891017701048,relative_legacy,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,185698,-56.11669541106755,spot_peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,185699,25.18799992217074,peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,185699,31.276820024747455,spot_peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,185699,16.702112869001564,baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,185699,21.412480535284764,spot_baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,185699,0.307965128927323,relative_legacy,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,188107,0.5164928810674213,relative_legacy,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,188107,71.98081757863233,spot_peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,188107,41.32232302525398,baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,188107,38.96674050624605,peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,188107,77.96099315747,spot_baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,189585,-132.19280948873626,spot_baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,189585,-79.28929497062013,spot_peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,189585,-130.3565711193186,baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,189585,-1.169069857281375,relative_legacy,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,189585,-79.49737205368437,peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,189588,-21.17534776194161,spot_peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,189588,-20.39395324514064,peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,189588,-0.3758618556708767,relative_legacy,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,189588,-50.56667188758269,baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,189869,-21.17534776194161,spot_peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,189869,-32.52589743606639,baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,189869,-12.69749640214429,peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,189869,-0.1921077823874677,relative_legacy,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,190772,0.8999522321373556,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,190772,75.90082319000483,baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,190772,98.5500430304885,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,190772,86.80095336659593,spot_peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,190772,68.18736530552867,peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,191026,87.22447814490798,spot_baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,191026,8.104791084843658,baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,191026,7.202748374629896,peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,191026,78.64873602218827,spot_peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,191026,0.0994328024807717,relative_legacy,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,191471,-48.12458729308501,spot_peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,191471,-0.4424741426100268,relative_legacy,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,191471,-59.994363951042665,baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,191471,-31.920848799563476,peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,191471,-88.8968687611256,spot_baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,191935,2.2277640543283663,baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,191935,16.471848411036653,peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,191935,-39.592867633113926,spot_baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,191935,0.1789526704613493,relative_legacy,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,191935,-12.63523756040989,spot_peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192049,-49.35843045005843,peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192049,-0.7163346465923088,relative_legacy,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192049,-56.11669541106755,spot_peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192049,-87.58235521752525,baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192049,-100.0,spot_baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192418,-47.861204762398,baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192418,-19.953792234746132,peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192418,-0.3398276488142203,relative_legacy,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192418,-21.17534776194161,spot_peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192472,96.80147879008108,baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192472,87.42124281015863,peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192472,99.85565831303312,spot_baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192472,1.085626651768539,relative_legacy,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192472,87.74074397827972,spot_peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192924,-1.882609076978428,peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192924,-31.45937574796788,spot_peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192924,-0.0220997419532515,relative_legacy,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192924,-65.744525452268,spot_baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,192924,-3.8110079388346856,baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,193275,0.195339738034059,relative_legacy,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,193275,19.66070440948177,spot_baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,193275,5.6307308765281885,baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,193275,15.144174034135398,peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,193275,30.01587985438364,spot_peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,195286,-56.11669541106755,spot_peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,195286,-0.7014292931175599,relative_legacy,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,195286,-86.05901733206377,baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,195286,-100.0,spot_baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,195286,-48.439713817496745,peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,204737,-151.4573172829758,spot_baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,204737,-36.67733774733077,peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,204737,-60.60216745836699,baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,204737,-93.15601651239744,spot_peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,204737,-0.4772105270772045,relative_legacy,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,208405,-132.19280948873626,spot_baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,208405,-79.28929497062013,spot_peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,208405,-1.1656420433067165,relative_legacy,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,208405,-79.08942554538619,peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,208405,-128.9943270968983,baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,215725,-100.0,spot_baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,215725,-69.29985071994639,baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,215725,-0.5355290102990642,relative_legacy,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,215725,-38.44265214545213,peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,215725,-56.11669541106755,spot_peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,218666,53.0512028383794,peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,218666,0.6226655436378241,relative_legacy,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,218666,50.4084635406312,baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,218666,51.80314926021694,spot_baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,218666,53.15222661068928,spot_peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,219459,53.24887264264979,spot_peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,219459,0.1147439977068016,relative_legacy,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,219459,9.635910607446652,baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,219459,9.969464486994749,peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,219459,51.93741590935794,spot_baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,219886,78.45039829295668,spot_baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,219886,0.8375465530562148,relative_legacy,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,219886,72.33309466805473,spot_peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,219886,68.16342603155512,baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,219886,64.49090436204851,peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,220077,0.8523607379763062,relative_legacy,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,220077,70.967676334306,spot_peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,220077,68.08472147911611,peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,220077,71.75071582342137,baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,221727,36.78640544385197,baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,221727,43.10949311101237,spot_peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,221727,43.23230238332251,peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,221727,0.486737326467048,relative_legacy,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,222631,1.564969777467598,peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,222631,25.76156893445281,spot_peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,222631,13.750352374993504,spot_baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,222631,0.0239809938057037,relative_legacy,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29715,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-11 15:11:34.45537+00,222631,0.8735474875225256,baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29873 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,182315,58.496250072115615,spot_baseline,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,182315,0.644685037322615,relative_legacy,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,182315,51.27191572098066,baseline,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,182315,60.95596975914653,spot_peer,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,182315,48.218464333146834,peer,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,185690,0.0454040875067085,relative_legacy,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,185690,2.8459437328262585,baseline,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,185690,43.26918889447578,spot_peer,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,185690,3.63407724943016,peer,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,185690,33.89092728089213,spot_baseline,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,185698,-0.3554538228324091,peer,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,185698,-15.200309344504996,spot_baseline,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,185698,-0.0012267080515463,relative_legacy,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,185698,7.981460627858614,spot_peer,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,185698,-10.440333352606912,baseline,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,185699,-28.76202898054508,peer,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,185699,-54.42133572990588,baseline,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,185699,-30.666346735048275,spot_peer,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,185699,-0.3897109888453113,relative_legacy,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,185699,-68.96598793878495,spot_baseline,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,187708,3.33524375115366,peer,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,187708,12.931383883389415,spot_peer,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,187708,-8.31412353002457,spot_baseline,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,187708,0.0453723498244647,relative_legacy,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,187708,-1.919671875993488,baseline,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,188107,-67.67100982543148,baseline,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,188107,-0.5139889094962388,relative_legacy,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,188107,-126.30344058337936,spot_baseline,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,188107,-39.29911462108718,peer,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,188107,-71.88161421469717,spot_peer,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,189585,-130.3246454496727,baseline,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,189585,-132.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,189585,-84.74847833301398,peer,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,189585,-1.201714401772528,relative_legacy,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,189585,-76.11500623901992,spot_peer,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,189588,-50.5526384355442,baseline,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,189588,-18.08077637905017,spot_peer,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,189588,-25.85021353059521,peer,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,189588,-0.4083617842459318,relative_legacy,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,189869,-0.0444275029183938,relative_legacy,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,189869,-20.347820568106968,baseline,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,189869,-4.4617180421667975,peer,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,189869,-4.233076403173742,spot_peer,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,190772,43.6899760531667,peer,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,190772,0.598788029484141,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,190772,60.95596975914653,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,190772,58.496250072115615,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,190772,45.08628679638892,baseline,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,191026,-55.87940441867844,spot_baseline,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,191026,-21.259457951215893,spot_peer,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,191026,-5.192631388437785,baseline,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,191026,-0.031772762724018,relative_legacy,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,191026,-1.9478826440291257,peer,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,191471,22.26964990681968,peer,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,191471,36.07219661227042,spot_peer,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,191471,23.87868595871165,spot_baseline,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,191471,0.312919860565451,relative_legacy,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,191471,16.129355421713427,baseline,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,191935,-9.949015865675772,peer,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,191935,-0.1547191385025649,relative_legacy,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,191935,-28.26095684768412,baseline,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,191935,-27.373889132054757,spot_peer,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,191935,-64.38561897747248,spot_baseline,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192049,72.06884183421185,baseline,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192049,0.8108847501824797,relative_legacy,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192049,73.93585125067307,spot_peer,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192049,63.13353151175358,peer,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192418,0.6942804540206,relative_legacy,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192418,54.03072975498932,peer,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192418,65.02330297504236,spot_peer,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192418,64.15460290875237,spot_baseline,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192418,59.67969725933799,baseline,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192472,77.53287207904685,spot_peer,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192472,79.12448863141314,baseline,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192472,68.84481112511556,peer,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192472,0.8807652214542154,relative_legacy,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192472,81.55754288625727,spot_baseline,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192924,7.981460627858614,spot_peer,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192924,0.4358750457928483,peer,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192924,0.0,relative_legacy,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192924,-0.9024753641562332,baseline,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,192924,-15.200309344504996,spot_baseline,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,193275,0.1441452679146245,relative_legacy,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,193275,-10.469737866669323,spot_baseline,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,193275,-1.1132082480551029,baseline,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,193275,11.381886698391009,spot_peer,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,193275,9.592583005384231,peer,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,195286,-105.94870264142683,spot_peer,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,195286,-1.3535138070387636,relative_legacy,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,195286,-149.4793336021354,baseline,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,195286,-173.6965594166206,spot_baseline,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,195286,-98.36100798924956,peer,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,204737,-1.0038123392038028,relative_legacy,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,204737,-279.58592832197746,spot_baseline,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,204737,-112.3404460414726,baseline,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,204737,-73.08469229036012,peer,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,204737,-182.06402450159567,spot_peer,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,208405,0.3482432885361016,relative_legacy,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,208405,37.81515703026551,spot_peer,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,208405,29.795028270134928,peer,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,208405,25.648614030938315,baseline,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,215725,-55.99842544915438,peer,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,215725,-91.6900039601513,baseline,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,215725,-76.11500623901992,spot_peer,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,215725,-0.7587723493075245,relative_legacy,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,215725,-132.19280948873623,spot_baseline,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,218666,0.205778786364619,relative_legacy,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,218666,19.03051971651004,peer,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,218666,11.58971565324664,baseline,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,218666,28.41396328394082,spot_peer,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,218666,13.22477982984395,spot_baseline,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,219459,-46.28130983661302,spot_peer,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,219459,-0.1182916664269789,relative_legacy,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,219459,-8.324997820072326,peer,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,219459,-90.68905956085185,spot_baseline,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,219459,-16.82581085969693,baseline,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,219886,-0.576000296091602,relative_legacy,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,219886,-38.44829871331549,peer,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,219886,-30.39906900023192,spot_peer,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,219886,-66.56476433877638,baseline,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,219886,-68.59415911417392,spot_baseline,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,220077,73.93585125067307,spot_peer,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,220077,62.97380398525155,peer,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,220077,0.8096207222956172,relative_legacy,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,220077,71.87627335420923,baseline,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,221727,0.457100198563795,relative_legacy,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,221727,36.76684155826217,baseline,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,221727,37.70933845229942,peer,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,221727,46.11588227048411,spot_peer,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,222631,2.897695941148925,peer,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,222631,0.034497225952713,relative_legacy,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,222631,2.409391523989129,baseline,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29716,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-11 15:11:34.460213+00,222631,46.11588227048411,spot_peer,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,2024-11-12 15:30:00+00,29874 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,182315,1.653093118593894,peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,182315,67.80719051126377,spot_baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,182315,6.074861231156572,spot_peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,182315,-0.0664741734621131,relative_legacy,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,182315,59.472203111685694,baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,185690,-0.0380508493594912,relative_legacy,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,185690,-23.08694239074717,spot_peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,185690,-2.0774429254112565,peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,185690,2.320812932965744,baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,185690,27.23815780930465,spot_baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,185698,-0.0683509022946163,relative_legacy,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,185698,-2.964565606651162,peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,185698,18.915700974290544,baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,185698,-23.758835171250347,spot_peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,185698,26.303440583379377,spot_baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,185699,-0.0042666242353322,relative_legacy,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,185699,60.9262400000631,baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,185699,74.84612330040356,spot_baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,185699,5.477638206006163,peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,185699,11.1345819598384,spot_peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,187708,17.587141213125324,baseline,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,187708,9.01428806173431,spot_peer,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,187708,71.89643357595385,spot_baseline,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,187708,1.2321518719326026,peer,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,187708,-0.001970654691307,relative_legacy,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,188107,20.19227190185374,spot_peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,188107,8.377318086278589,peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,188107,47.47026288012284,baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,188107,0.0689596283636481,relative_legacy,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,188107,87.44691179161411,spot_baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,189585,75.47978935152412,baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,189585,0.021052021112659,relative_legacy,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,189585,12.36185904915722,spot_peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,189585,8.189301684034966,peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,189588,27.120578386368894,spot_peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,189588,0.2227225196135249,relative_legacy,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,189588,97.08536543404836,spot_baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,189588,23.15686745053,peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,189588,95.37348040539824,baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,189869,23.89636935688419,spot_peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,189869,58.5224787258502,baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,189869,12.136677788473492,peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,189869,0.1112374566161599,relative_legacy,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,190772,0.0355097432849092,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,190772,7.924482793599571,peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,190772,79.90873060740036,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,190772,14.773681792118266,spot_peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,190772,61.63145372617788,baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,191026,1.3710380870436738,peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,191026,7.634115508589293,baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,191026,16.382716427365324,spot_peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,191026,82.14717167168666,spot_baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,191026,0.0092982908452503,relative_legacy,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,191471,-0.0740002019822007,relative_legacy,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,191471,64.15460290875237,spot_baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,191471,3.4493107735265154,spot_peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,191471,43.37306442101863,baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,191471,-0.949273511804847,peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,191935,0.1882896613079512,relative_legacy,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,191935,27.120578386368894,spot_peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,191935,84.47876298048583,baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,191935,20.214434529244027,peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,191935,97.08536543404836,spot_baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192049,19.331679216112956,peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192049,0.1695582189058095,relative_legacy,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192049,23.89636935688419,spot_peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192049,87.31732730795196,baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192418,-118.44245711374276,spot_baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192418,-1.7960661590639817,relative_legacy,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192418,-124.91562769210856,peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192418,-127.80497979416135,spot_peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192418,-110.20321714964084,baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192472,-15.458109931031755,spot_peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192472,36.7533847982668,baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192472,-0.3533949062796663,relative_legacy,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192472,-19.34858137450396,peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192924,4.478907271169319,baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192924,73.63884007034605,spot_baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192924,0.6157686157346299,peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192924,10.266763475488522,spot_peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,192924,0.0010597773008932,relative_legacy,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,193275,-4.420213414238068,spot_peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,193275,-0.142255568176145,relative_legacy,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,193275,-6.06827894375919,peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,193275,53.20675522890311,spot_baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,193275,35.04673240553116,baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,195286,6.909118067919098,peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,195286,12.36185904915722,spot_peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,195286,65.12246004733379,baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,195286,0.0096315568150888,relative_legacy,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,204737,0.0043486448768963,relative_legacy,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,204737,74.84612330040356,spot_baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,204737,11.1345819598384,spot_peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,204737,2.632230448077297,peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,204737,30.203836755938468,baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,208405,23.89636935688419,spot_peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,208405,0.1783547059585506,relative_legacy,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,208405,19.839917408335115,peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,208405,90.40028805649408,baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,215725,13.413484294977174,peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,215725,64.36902460447196,baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,215725,0.1211754112233348,relative_legacy,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,215725,23.89636935688419,spot_peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,218666,0.0160369012648927,relative_legacy,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,218666,7.790613342216188,peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,218666,13.09131366547809,spot_peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,218666,77.56827017390599,spot_baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,218666,73.66892187782713,baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,219459,-5.332639013292312,spot_peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,219459,-0.0372592130953042,relative_legacy,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,219459,51.93741590935794,spot_baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,219459,-1.6358336331131256,peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,219459,9.636288199657423,baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,219886,47.7262849349172,spot_baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,219886,-0.2558995369872028,relative_legacy,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,219886,45.80527382045352,baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,219886,-12.040486149389194,peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,219886,-8.359681225635388,spot_peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,220077,0.0182476886561604,relative_legacy,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,220077,72.02227808318615,baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,220077,8.215021827715596,peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,220077,12.36185904915722,spot_peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,221727,74.39550174452705,baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,221727,8.325922309028927,peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,221727,12.36185904915722,spot_peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,221727,0.022356833233362,relative_legacy,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,222631,-5.669258131259303,baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,222631,-106.56704070494516,spot_peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,222631,-88.8968687611256,spot_baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,222631,-0.1025434021951912,relative_legacy,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29717,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-11 15:11:34.468122+00,222631,-6.806669309112671,peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29875 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,182315,19.449082062834524,spot_peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,182315,54.67398653165124,baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,182315,62.29303509201767,spot_baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,182315,0.1354826635451205,relative_legacy,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,182315,14.512159680507963,peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,185690,2.308615030830221,baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,185690,-0.5584981238264559,peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,185690,4.030484448956721e-05,relative_legacy,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,185690,26.639677302455336,spot_baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,185690,-6.146550381828793,spot_peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,185698,1.9022020386082572,spot_peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,185698,-0.0463701793526141,relative_legacy,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,185698,-2.735914217900903,peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,185698,37.85116232537298,spot_baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,185698,9.821189694519514,baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,185699,20.07968516878004,peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,185699,27.22058346406489,spot_peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,185699,60.29830924201695,baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,185699,73.11832415721999,spot_baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,185699,0.2157713935061988,relative_legacy,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,187708,10.74905567481606,baseline,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,187708,4.420780331002846,spot_peer,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,187708,0.6327233240616812,peer,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,187708,0.0101092190059481,relative_legacy,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,187708,41.35940824091752,spot_baseline,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,188107,58.496250072115615,spot_baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,188107,16.72336084424941,spot_peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,188107,0.0709442777270964,relative_legacy,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,188107,7.615120565281388,peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,188107,32.34938515981501,baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,189585,14.344984049860226,peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,189585,16.72336084424941,spot_peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,189585,0.1169045965143888,relative_legacy,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,189585,57.67974955000539,baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,189588,-65.67647537100748,peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,189588,-62.212573117750615,spot_peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,189588,-0.963463284003484,relative_legacy,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,189588,-50.56028116905847,baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,189869,16.62686602786838,baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,189869,-0.1246787305484003,relative_legacy,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,189869,-6.008655569356156,peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,189869,-6.387935541865173,spot_peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,190772,-18.985443984837406,peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,190772,4.367593128464432,baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,190772,-0.3162632642973569,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,190772,-21.20909434750633,spot_peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,190772,5.658352836636751,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191026,-20.727182609071363,spot_peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191026,0.5882649575556875,baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191026,6.329630316126981,spot_baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191026,-1.9634300384273236,peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191026,-0.0197595357760963,relative_legacy,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191471,-8.926733809708741,spot_baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191471,-31.679763594898112,spot_peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191471,-6.041097284702647,baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191471,-0.3735648542730123,relative_legacy,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191471,-23.71892843895747,peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191935,-0.2457427681949352,relative_legacy,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191935,17.6023032161195,baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191935,-11.700455317718609,spot_peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191935,18.903382439001717,spot_baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191935,-13.106697306429732,peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191975,51.668757537327885,spot_baseline,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191975,11.821887314867856,spot_peer,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191975,0.0390680005058476,relative_legacy,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191975,7.256215456681732,peer,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,191975,42.91403653338276,baseline,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192049,35.606664940766144,spot_peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192049,31.285213084044816,peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192049,80.06079848374333,baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192049,0.3578456876934111,relative_legacy,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192418,-0.3089210482585315,relative_legacy,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192418,-15.399828158648246,spot_peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192418,13.750352374993504,spot_baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192418,-17.582590828388316,peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192418,12.796103431214144,baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192472,16.72336084424941,spot_peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192472,56.86114305547041,baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192472,13.698931727885086,peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192472,0.1136829032219626,relative_legacy,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192924,26.303440583379377,spot_baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192924,-0.3952057287931039,peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192924,-6.387935541865173,spot_peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192924,-0.0001695201584017,relative_legacy,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,192924,1.6414386601284594,baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,193275,38.30959312891841,baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,193275,9.873167013421526,spot_peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,193275,0.0753523138970346,relative_legacy,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,193275,48.95429356424735,spot_baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,193275,8.768597434372376,peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,195286,5.591651297241839,peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,195286,0.0131040533473188,relative_legacy,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,195286,41.84222358229121,baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,195286,9.577670583100865,spot_peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,204737,0.0986551790172912,relative_legacy,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,204737,67.80719051126377,spot_baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,204737,27.507037570743087,baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,204737,23.407707676355013,spot_peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,204737,8.410443711439049,peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,208405,47.39592176591096,baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,208405,6.712978589126172,peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,208405,9.577670583100865,spot_peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,208405,0.0169687567901378,relative_legacy,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,215725,0.148827757729792,relative_legacy,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,215725,14.312772487010584,peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,215725,67.80719051126377,spot_baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,215725,47.19122915478878,baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,215725,23.407707676355013,spot_peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,218666,31.034012061215048,spot_baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,218666,31.45315110084479,baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,218666,-4.927968428862821,peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,218666,-2.991846749483972,spot_peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,218666,-0.1407365073736377,relative_legacy,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,219459,-4.950510047821468,peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,219459,0.0,baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,219459,0.0,spot_baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,219459,-25.2712396383819,spot_peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,219459,-0.0635887917645618,relative_legacy,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,219886,0.2040601572159712,relative_legacy,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,219886,69.1176796812124,spot_baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,219886,24.3485110451344,spot_peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,219886,19.92164158661519,peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,219886,63.81963996502967,baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,220077,-6.387935541865173,spot_peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,220077,-9.166326837019795,peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,220077,-0.1944594241078093,relative_legacy,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,220077,26.303440583379377,spot_baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,220077,24.84086961246348,baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,221727,1.9022020386082572,spot_peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,221727,-1.0578924359078323,peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,221727,36.786476109470165,baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,221727,-0.0869801989596409,relative_legacy,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,222631,-36.18357876008536,spot_peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,222631,-0.026694398952395,relative_legacy,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,222631,-0.9712617056389102,baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,222631,-15.200309344505014,spot_baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29718,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.476358+00,222631,-2.3085808053716472,peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29876 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,182315,81.33109042832787,baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,182315,0.1576288251673641,relative_legacy,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,182315,92.5999418556223,spot_baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,182315,16.694266037036222,peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,182315,20.59635616198993,spot_peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,185690,2.860442360276275,baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,185690,-22.554866540986357,spot_peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,185690,32.49257840553212,spot_baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,185690,-2.026874623797083,peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,185690,-0.0263793577494292,relative_legacy,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,185698,58.496250072115615,spot_baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,185698,1.7201809124911742,peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,185698,0.0079880150860665,relative_legacy,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,185698,25.996405359018382,baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,185698,-3.8867672803767928,spot_peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,185699,13.95138759228512,peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,185699,18.39262560852114,spot_peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,185699,0.1250064894017808,relative_legacy,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,185699,75.23173785513828,baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,185699,89.53026213333065,spot_baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,187708,0.0039095913821613,relative_legacy,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,187708,5.607334388369239,spot_peer,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,187708,0.9379624199524844,peer,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,187708,71.72102990195957,spot_baseline,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,187708,19.608135611678584,baseline,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,188107,-0.0806228033805162,relative_legacy,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,188107,58.496250072115615,spot_baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,188107,-3.43155141240315,peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,188107,-3.8867672803767928,spot_peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,188107,32.481845679137926,baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,189585,1.241410622266088,peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,189585,-0.0614043668089375,relative_legacy,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,189585,66.85891841979789,baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,189585,2.797579551728797,spot_peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,189588,0.0245210977138247,relative_legacy,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,189588,9.076558239859544,spot_peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,189588,7.601191153121097,peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,189588,75.21791053186908,baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,189869,-0.0356406021162435,relative_legacy,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,189869,42.86157737475895,baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,189869,2.797579551728797,spot_peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,189869,0.3657382547225617,peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,190772,57.81419694127887,baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,190772,7.850846554991401,spot_peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,190772,0.0056872387267429,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,190772,4.48180135130028,peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,190772,74.84612330040356,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191026,3.970212233002494,baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191026,-1.4668316299712338,peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191026,-0.0188042750430001,relative_legacy,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191026,-15.215739054123352,spot_peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191026,42.7155935514968,spot_baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191471,-0.1425386485448793,relative_legacy,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191471,-8.11475956997465,spot_peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191471,-7.066445493037994,peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191471,52.60688116675877,spot_baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191471,35.62929441992193,baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191935,-0.1499088921954499,peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191935,1.494777108875438,spot_peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191935,65.99245584023782,spot_baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191935,59.37567171297718,baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191935,-0.0761688227907423,relative_legacy,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191975,12.157720362927323,spot_peer,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191975,73.24695648371528,baseline,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191975,80.84536997503885,spot_baseline,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191975,9.632749636551983,peer,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,191975,0.0570207868796624,relative_legacy,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192049,14.99653681613995,spot_peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192049,80.2344031203302,baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192049,13.011658299973668,peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192049,0.0996700817391826,relative_legacy,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192418,-1.171147372658594,relative_legacy,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192418,-82.82270124237684,spot_peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192418,-79.95371556871989,peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192418,-47.89330057563694,baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192472,-5.39107115375072,peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192472,-3.8867672803767928,spot_peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192472,-0.1515898792183584,relative_legacy,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192472,56.91762432512006,baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192924,-0.0033572734383985,relative_legacy,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192924,55.18851034717248,spot_baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192924,3.5280082184894748,baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192924,-0.4062358401279888,peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,192924,-6.261401689903341,spot_peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,193275,9.775484594602538,peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,193275,16.481866819172353,spot_peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,193275,86.8686765322135,spot_baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,193275,0.0898549347457305,relative_legacy,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,193275,58.77518237242133,baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,195286,-0.0589767946841199,relative_legacy,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,195286,58.43935834472571,baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,195286,0.7387168529563117,peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,195286,2.797579551728797,spot_peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,204737,91.8386234446348,spot_baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,204737,20.04980381940253,spot_peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,204737,0.0793980632784716,relative_legacy,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,204737,7.239522779974308,peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,204737,37.418141800400186,baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,208405,-11.032457541525345,spot_peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,208405,47.38141767897379,baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,208405,-12.572579671299357,peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,208405,-0.249279837806699,relative_legacy,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,215725,4.837618545959256,peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,215725,0.0196455011628023,relative_legacy,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,215725,9.076558239859544,spot_peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,215725,53.32446528840372,baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,218666,9.805082429373908,spot_peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,218666,8.3209645683057,peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,218666,0.0346782196927396,relative_legacy,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,218666,75.66425644390634,baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,218666,77.56827017390599,spot_baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,219459,12.581236248774823,baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,219459,0.0008930000537238,relative_legacy,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,219459,0.1874648867010213,peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,219459,2.797579551728797,spot_peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,219459,67.80719051126377,spot_baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,219886,71.32391469018893,baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,219886,83.40963114529852,spot_baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,219886,10.427176477403917,peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,219886,0.0744403094872317,relative_legacy,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,219886,13.99860970618302,spot_peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,220077,64.25922075344045,baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,220077,2.797579551728797,spot_peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,220077,-0.0611068145036776,relative_legacy,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,220077,1.236469875196911,peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,221727,1.2674405533750783,peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,221727,67.80719051126377,spot_baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,221727,65.89957028971243,baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,221727,-0.0611068145036776,relative_legacy,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,221727,2.797579551728797,spot_peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,222631,-18.70792608601796,spot_peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,222631,2.4237709996355608,baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,222631,-1.2039911288727965,peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29719,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-11 15:11:34.808158+00,222631,-0.0144727126937538,relative_legacy,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29877 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,182315,0.1060122737446747,relative_legacy,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,182315,10.63735331428018,peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,182315,98.5500430304885,spot_baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,182315,12.667757868285642,spot_peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,182315,86.62292796478718,baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,185690,8.034951588583263,baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,185690,89.71629633588346,spot_baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,185690,0.577125915475754,peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,185690,0.0045075769992221,relative_legacy,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,185690,6.340568365967872,spot_peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,185698,-9.437452262500637,peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,185698,79.90873060740036,spot_baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,185698,-0.6841210513150051,spot_peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,185698,-0.1470318899322218,relative_legacy,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,185698,15.444026564271155,baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,185699,97.08536543404836,spot_baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,185699,0.0891604749710183,relative_legacy,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,185699,11.618679483670444,spot_peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,185699,9.353769395687513,peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,185699,82.5733996706516,baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,187708,24.366382672189644,baseline,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,187708,0.7383906106312267,peer,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,187708,2.7041606403940683,spot_peer,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,187708,-0.0016482121783169,relative_legacy,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,187708,84.63930208523604,spot_baseline,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,188107,-4.1054007740671565,spot_peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,188107,75.13208871432761,spot_baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,188107,41.90391355030737,baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,188107,-0.0640099980042861,relative_legacy,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,188107,-2.676593831632013,peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,189585,66.93689831656376,baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,189585,-9.351874395987544,spot_peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,189585,-0.1745644069136057,relative_legacy,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,189585,-9.921814749139733,peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,189588,-0.0885283754057995,relative_legacy,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,189588,-3.0873301416226213,spot_peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,189588,75.28802438335154,baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,189588,-3.5852568293574345,peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,189869,-6.420641448549451,peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,189869,-9.351874395987544,spot_peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,189869,42.86271544466884,baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,189869,-0.1189759546368302,relative_legacy,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,190772,60.47819571643319,baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,190772,78.24085649273731,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,190772,-2.0895248565289397,peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,190772,-0.0660302179058662,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,190772,-1.8787393660928504,spot_peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191026,2.744840007834379,spot_peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191026,7.872696931397749,baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191026,1.150867090051091e-05,relative_legacy,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191026,0.2642146637717132,peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191026,84.69609684814505,spot_baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191284,0.0882686216911873,relative_legacy,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191284,9.091375752738992,peer,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191284,74.61889392534731,baseline,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191284,12.667757868285642,spot_peer,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191284,98.5500430304885,spot_baseline,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191471,8.405985486433904,spot_peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191471,92.5999418556223,spot_baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191471,0.0377455726748113,relative_legacy,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191471,5.24081571019923,peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191471,62.76674501508808,baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191935,-0.0433473886838847,relative_legacy,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191935,0.496844183792696,spot_peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191935,81.55754288625727,spot_baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191935,-0.2226355474081883,peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191935,73.18200340701456,baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191975,96.00173825346477,spot_baseline,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191975,2.465763714138192,peer,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191975,21.883137509882182,baseline,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191975,0.0242811662420217,relative_legacy,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,191975,10.842529254504152,spot_peer,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192049,80.36160110946288,baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192049,2.8190392885054045,spot_peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192049,2.1403076538954684,peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192049,-0.0103439381633743,relative_legacy,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192418,-15.772936032013812,peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192418,-16.02085491353657,spot_peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192418,54.4509465889805,baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192418,-0.2559007565994971,relative_legacy,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192472,7.830535834224434,peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192472,92.5999418556223,spot_baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192472,0.0676920182531616,relative_legacy,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192472,8.405985486433904,spot_peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192472,90.19372625751804,baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192924,-33.546475966775155,spot_peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192924,-2.182954308174897,peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192924,2.2287461786314933,baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192924,-0.0331502838169288,relative_legacy,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,192924,34.027740476625425,spot_baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,193275,1.8144210406827963,peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,193275,91.6858764699754,spot_baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,193275,58.88868655544098,baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,193275,-0.0096768032367778,relative_legacy,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,193275,7.751284246695024,spot_peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,195286,-0.0860338969839246,relative_legacy,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,195286,-3.0873301416226213,spot_peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,195286,-3.3679487077385897,peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,195286,65.97609171990743,baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,204737,0.0452153196046644,relative_legacy,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,204737,11.618679483670444,spot_peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,204737,39.70131799499457,baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,204737,97.08536543404836,spot_baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,204737,4.611217367803921,peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,208405,2.2992073751158584,peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,208405,82.99208783529087,baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,208405,-0.0080623465534743,relative_legacy,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,208405,2.8190392885054045,spot_peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,215725,5.381804401277722,peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,215725,64.56271549005349,baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,215725,8.405985486433904,spot_peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,215725,0.0385404829221948,relative_legacy,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,218666,9.272517468648871,spot_peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,218666,91.19541319899828,baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,218666,0.0757070769833411,relative_legacy,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,218666,93.80975610740931,spot_baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,218666,8.412687886657123,peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,218945,61.603234998227386,baseline,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,218945,-12.632573221827512,spot_peer,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,218945,-13.116036203320768,peer,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,218945,63.22682154995129,spot_baseline,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,218945,-0.2184473800783074,relative_legacy,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,219459,7.700935892237982,baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,219459,-0.0801109033172047,relative_legacy,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,219459,-5.222222424914478,peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,219459,-28.19176859802953,spot_peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,219459,41.50374992788437,spot_baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,219886,0.1043088484458047,relative_legacy,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,219886,10.517855458462616,peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,219886,11.618679483670444,spot_peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,219886,91.16539946612367,baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,219886,97.08536543404836,spot_baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,220077,-0.0884903461602359,relative_legacy,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,220077,-3.0873301416226213,spot_peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,220077,-3.568200885865399,peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,220077,72.77275615831265,baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,221727,-3.0873301416226213,spot_peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,221727,-0.0884903461602359,relative_legacy,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,221727,74.45967464742736,baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,221727,-3.607675327134475,peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,222631,4.911066581071118,baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,222631,-0.1849526807639183,peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,222631,-0.005187228555392,relative_legacy,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29720,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-11 15:11:34.81573+00,222631,-3.0873301416226213,spot_peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29878 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,182315,46.98324211083503,peer,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,182315,27.295633029706405,baseline,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,182315,31.034012061215048,spot_baseline,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,182315,0.7143223919878986,relative_legacy,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,182315,59.31214731779619,spot_peer,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,185690,-50.02178798526881,spot_baseline,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,185690,0.198276556354748,peer,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,185690,0.0012653750033613,relative_legacy,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,185690,1.1911825554675837,spot_peer,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,185690,-4.551852643640515,baseline,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,185698,-0.974822835166806,relative_legacy,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,185698,-332.1928094887362,spot_baseline,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,185698,-71.2768427030767,peer,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,185698,-116.89131856395989,baseline,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,185698,-201.1392119178236,spot_peer,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,185699,0.1618379844501916,spot_peer,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,185699,-51.45731728297583,spot_baseline,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,185699,-5.446943323703869,peer,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,185699,-44.360130603216426,baseline,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,185699,-0.0051893474882295,relative_legacy,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,187708,-3.0908697795574187,peer,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,187708,-66.20035364849842,spot_baseline,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,187708,-19.757901543097763,baseline,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,187708,-10.409638660020212,spot_peer,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,187708,-0.030102268862467,relative_legacy,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,188107,0.2859962450885756,relative_legacy,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,188107,19.45999572950659,peer,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,188107,0.0,baseline,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,188107,0.0,spot_baseline,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,188107,37.05924597811217,spot_peer,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,189585,46.918919750973366,spot_peer,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,189585,0.5956695476991261,relative_legacy,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,189585,38.8773773442133,peer,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,189585,13.558958346559857,baseline,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,189585,13.750352374993504,spot_baseline,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,189588,-31.644081059357816,baseline,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,189588,13.975430324918058,spot_peer,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,189588,0.1440016150896393,relative_legacy,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,189588,5.615065143761296,peer,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,189588,-32.19280948873623,spot_baseline,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,189869,-173.6965594166206,spot_baseline,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,189869,-57.77615364059626,peer,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,189869,-0.7752588156775077,relative_legacy,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,189869,-109.8066832351214,baseline,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,189869,-87.48966481422605,spot_peer,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,190772,-77.99594537760798,peer,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,190772,-1.0262551566312843,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,190772,-94.62685841632444,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,190772,-183.65012677171205,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,190772,-142.0542767397413,baseline,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191026,-3.909244678954324,peer,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191026,-43.04248239620007,spot_peer,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191026,-111.71028741584652,spot_baseline,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191026,-10.38442339042465,baseline,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191026,-0.0557620616136927,relative_legacy,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191284,66.59109275222414,peer,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191284,91.95182367419876,spot_peer,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191284,0.965513956502962,relative_legacy,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191284,57.96351081596527,baseline,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191471,-88.8968687611256,spot_baseline,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191471,-60.30922498008073,baseline,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191471,-0.2564890692471283,relative_legacy,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191471,-20.845635473661915,peer,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191471,-26.68414775538613,spot_peer,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191935,-147.39311883324126,spot_baseline,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191935,-0.8592556274348238,relative_legacy,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191935,-67.55158701921972,peer,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191935,-130.63964403302427,baseline,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,191935,-68.62881411140316,spot_peer,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192049,1.0123792237700229,relative_legacy,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192049,55.52622992644485,baseline,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192049,69.06697466184319,peer,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192049,79.00391233412917,spot_peer,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192049,58.496250072115615,spot_baseline,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192418,-47.90486885941441,baseline,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192418,-6.782218018291149,peer,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192418,0.1618379844501916,spot_peer,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192418,-0.0247079437756212,relative_legacy,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192472,-21.211847239015995,baseline,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192472,13.268609220646432,peer,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192472,21.456878074534536,spot_peer,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192472,0.2484413015272547,relative_legacy,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192472,-21.75914350726268,spot_baseline,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192924,52.94673783276395,spot_peer,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192924,1.4874625275826967,baseline,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192924,22.156778853840933,spot_baseline,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192924,0.0493788136660964,relative_legacy,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,192924,3.5855103958079004,peer,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,193275,3.070166356903373,baseline,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,193275,25.381444971989477,peer,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,193275,0.3855630700914156,relative_legacy,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,193275,42.86784099482298,spot_baseline,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,193275,67.79758024251244,spot_peer,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,195286,0.1618379844501916,spot_peer,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,195286,-44.34667709236411,baseline,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,195286,-0.0051850611638627,relative_legacy,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,195286,-5.441849607446375,peer,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,195286,-51.45731728297583,spot_baseline,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,204737,0.3947321800897863,relative_legacy,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,204737,72.30912115623009,spot_peer,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,204737,49.159659441044816,spot_baseline,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,204737,28.070080670401648,peer,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,204737,19.365703928830484,baseline,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,208405,0.717598890073461,relative_legacy,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,208405,55.92009668093505,spot_peer,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,208405,25.74287614458157,baseline,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,208405,47.748445913530695,peer,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,215725,-92.24567921482776,baseline,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,215725,-43.52234852873711,peer,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,215725,-132.19280948873623,spot_baseline,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,215725,-0.5661458769986308,relative_legacy,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,215725,-57.72945042266249,spot_peer,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,218666,-9.39196556162901,peer,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,218666,1.337399224137951,spot_peer,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,218666,-51.94247914872592,baseline,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,218666,-0.0592291178194861,relative_legacy,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,218666,-49.81787345790897,spot_baseline,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,218945,20.872625116921963,baseline,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,218945,52.41303961103698,spot_peer,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,218945,44.102721339055535,peer,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,218945,21.412480535284736,spot_baseline,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,218945,0.6692730322760083,relative_legacy,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,219459,-26.85781971634609,baseline,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,219459,-12.209360369108532,peer,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,219459,-0.1591991411970037,relative_legacy,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,219459,-66.7306273526242,spot_peer,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,219459,-144.74589769712213,spot_baseline,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,219886,50.61361777111974,peer,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,219886,0.7645165151649082,relative_legacy,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,219886,32.39544887277038,baseline,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,219886,36.97177294135653,spot_baseline,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,219886,63.56981167597812,spot_peer,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,220077,-173.6965594166206,spot_baseline,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,220077,-87.48966481422605,spot_peer,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,220077,-92.32475333322996,peer,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,220077,-1.196480384397674,relative_legacy,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,220077,-165.42879268673374,baseline,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,221727,-14.778006245345027,baseline,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,221727,0.3130601745053156,relative_legacy,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,221727,26.15988228937151,spot_peer,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,221727,17.9636121815734,peer,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,221727,-15.200309344504996,spot_baseline,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,222631,-3.307833233064033,baseline,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,222631,0.1618379844501916,spot_peer,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,222631,0.0,relative_legacy,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,222631,0.0396506519570483,peer,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29721,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-11 15:11:34.823132+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,2024-11-12 15:30:00+00,29879 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,182315,49.77821690046704,baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,182315,56.55971758542251,spot_baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,182315,-0.1380537848150549,relative_legacy,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,182315,3.252933396465965,peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,182315,5.94010594367849,spot_peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,185690,6.731395636075401,baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,185690,17.401314846479988,spot_peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,185690,0.0022920936222575,relative_legacy,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,185690,72.54357919053119,spot_baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,185690,1.756486571207972,peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,185698,-74.9684835345428,peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,185698,-173.6965594166206,spot_baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,185698,-1.121273308586772,relative_legacy,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,185698,-159.16488289445527,spot_peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,185698,-88.46835295066812,baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,185699,0.1234291069338823,relative_legacy,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,185699,75.6915967687012,baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,185699,22.22248518493811,peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,185699,27.33263145878336,spot_peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,185699,86.39384504239716,spot_baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,187708,10.55013208436966,baseline,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,187708,-2.2138433607004746,peer,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,187708,-0.1025934119143537,relative_legacy,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,187708,34.027740476625425,spot_baseline,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,187708,-10.216421372256606,spot_peer,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,188107,5.573184765547957,peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,188107,35.80294210188762,baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,188107,10.72074489076107,spot_peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,188107,-0.0394866402542972,relative_legacy,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,188107,63.22682154995129,spot_baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,189585,26.189544956722838,spot_peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,189585,83.70753083368515,baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,189585,23.162110716365557,peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,189585,0.1175159020650449,relative_legacy,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,189869,48.38837532570916,baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,189869,0.0359771229344709,relative_legacy,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,189869,11.90393222473485,peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,189869,20.276605593969528,spot_peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,190772,-0.0036665846276237,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,190772,16.55950119127332,spot_peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,190772,55.735223189754734,baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,190772,71.36958148433591,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,190772,11.21672519870913,peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191026,1.7068893103169742,peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191026,0.0015549488459519,relative_legacy,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191026,71.74177724642941,spot_baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191026,16.826383718630016,spot_peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191026,6.669496100051181,baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191284,25.810931557517225,peer,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191284,0.2033655599531244,relative_legacy,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191284,98.5500430304885,spot_baseline,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191284,36.04921872958402,spot_peer,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191284,74.61812021307479,baseline,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191471,62.29303509201767,spot_baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191471,42.29418913917262,baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191471,10.051174424662705,spot_peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191471,-0.0600056060413952,relative_legacy,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191471,5.555845000924064,peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191935,0.0804299039370749,relative_legacy,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191935,81.55754288625727,spot_baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191935,19.02271724871332,peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191935,71.08235110419321,baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,191935,23.86476676513056,spot_peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192049,11.211698402538744,peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192049,14.00509299226939,spot_peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192049,64.48021812752857,baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192049,-0.0452601563083017,relative_legacy,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192418,20.276605593969528,spot_peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192418,17.255933614018964,peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192418,71.27927757513146,baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192418,0.0379113044077775,relative_legacy,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192459,99.85565831303312,spot_baseline,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192459,34.134314234772305,peer,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192459,0.2661556892358437,relative_legacy,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192459,99.39864339728295,baseline,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192459,36.98540861095484,spot_peer,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192472,92.5999418556223,spot_baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192472,28.77964372532901,peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192472,31.782705777785846,spot_peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192472,90.3647420925259,baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192472,0.1942457306347473,relative_legacy,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192924,70.84079834835963,spot_baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192924,4.910578365775399,baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192924,16.180337874208227,spot_peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192924,1.167426039245362,peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,192924,0.0,relative_legacy,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,193275,59.83652053236445,spot_baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,193275,8.289733589116427,spot_peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,193275,4.384068643520356,peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,193275,-0.0810156708074974,relative_legacy,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,193275,42.05536232214104,baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,195286,0.1070790785600325,relative_legacy,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,195286,20.56342645827168,peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,195286,72.25438314768657,baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,195286,26.189544956722838,spot_peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,204737,6.3922909387456,peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,204737,27.857195819889743,baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,204737,14.00509299226939,spot_peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,204737,67.80719051126377,spot_baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,204737,4.480547221151769e-05,relative_legacy,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,208405,23.228055936274167,peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,208405,26.189544956722838,spot_peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,208405,83.0009636277012,baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,208405,0.1181260621088839,relative_legacy,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,215725,20.276605593969528,spot_peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,215725,0.0368164104814122,relative_legacy,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,215725,12.839407550648732,peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,215725,53.46392850715382,baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,218666,56.55971758542251,spot_baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,218666,-0.175789928755686,relative_legacy,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,218666,5.94010594367849,spot_peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,218666,53.72370518868621,baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,218666,1.5938862410965813,peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,218945,-0.2354673636617805,relative_legacy,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,218945,47.34084375395626,baseline,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,218945,48.54268271702416,spot_baseline,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,218945,0.1915006518015012,spot_peer,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,218945,-2.693883134903136,peer,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,219459,-87.4600021468747,spot_peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,219459,-15.608864696892264,peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,219459,-13.674762949182204,baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,219459,-0.2604291454816835,relative_legacy,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,219459,-73.69655941662059,spot_baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,219886,-296.2182047981897,spot_baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,219886,-233.92486000474017,peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,219886,-247.01888260528287,spot_peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,219886,-3.4072667470210587,relative_legacy,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,219886,-273.76662818177607,baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,220077,20.276605593969528,spot_peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,220077,73.06740671043096,baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,220077,17.289790192576117,peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,220077,0.0379113044077775,relative_legacy,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,221727,17.308826284479444,peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,221727,0.0379171324441595,relative_legacy,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,221727,74.46011364958008,baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,221727,20.276605593969528,spot_peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,222631,31.782705777785846,spot_peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,222631,0.0140179881853689,relative_legacy,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,222631,5.965606552779525,baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,222631,92.5999418556223,spot_baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29722,"Will George Soros be ranked in the top 400 richest people in the world on December 31, 2024?",2024-11-11 15:11:34.82738+00,222631,2.0769252948206605,peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29880 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,182315,61.29484763408129,baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,182315,69.59938131099001,spot_baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,182315,-7.913113362659498,spot_peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,182315,-0.1870648081206877,relative_legacy,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,182315,-7.097748753723612,peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,185690,94.2983598187102,spot_baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,185690,8.88373213137571,baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,185690,9.797259722171802,spot_peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,185690,0.0069363970030511,relative_legacy,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,185690,0.8977923753977517,peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,185698,84.79969065549501,spot_baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,185698,29.876252498313317,baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,185698,2.9862503260811404,spot_peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,185698,-0.0221451621388081,relative_legacy,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,185698,0.7716977826912154,peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,185699,77.89351486741683,baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,185699,87.97057662822883,spot_baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,185699,5.259930331471692,spot_peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,185699,4.711264643224147,peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,185699,-0.0247547868278358,relative_legacy,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,187708,0.0067940822566069,relative_legacy,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,187708,8.905575187794044,spot_peer,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,187708,93.05481192478548,spot_baseline,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,187708,2.605400246237211,peer,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,187708,29.821720537758697,baseline,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,188107,94.11063109464314,spot_baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,188107,9.662649064450571,spot_peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,188107,5.193831473957546,peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,188107,0.0139647491182794,relative_legacy,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,188107,53.75196681727089,baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,189585,-2.678910197456328,peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,189585,-0.1262956661903189,relative_legacy,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,189585,-2.92668903667216,spot_peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,189585,75.57071987801432,baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,189588,75.28635235902723,baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,189588,-2.678910197456328,peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,189588,-2.92668903667216,spot_peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,189588,-0.1262956661903189,relative_legacy,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,189869,8.579411147144159,spot_peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,189869,0.0053363383954362,relative_legacy,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,189869,5.1125150720056896,peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,189869,58.536185757168106,baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,190772,73.84664231012565,baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,190772,9.662649064450571,spot_peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,190772,94.11063109464314,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,190772,0.0213851005559236,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,190772,7.42168653168305,peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191026,-0.0193394646959912,relative_legacy,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191026,-0.9965917985226562,peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191026,-10.451926025527111,spot_peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191026,66.05873995380698,spot_baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191026,6.141592477982187,baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191284,70.1125724227378,baseline,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191284,0.0082568803917734,relative_legacy,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191284,6.283806442950506,peer,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191284,8.579411147144159,spot_peer,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191471,71.36958148433591,spot_baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191471,-4.881630882550251,peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191471,48.4876323195919,baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191471,-0.1367129176820932,relative_legacy,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191471,-6.643793439368355,spot_peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191935,9.44408958479496,peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191935,95.60566524124027,spot_baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191935,10.734661516403662,spot_peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191935,0.0404931138457605,relative_legacy,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,191935,83.45818793705358,baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192049,80.77174800147482,baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192049,-0.0473022255555066,relative_legacy,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192049,3.1009007027562947,peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192049,2.9862503260811404,spot_peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192418,-30.67813592577691,spot_peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192418,-0.4862547096942324,relative_legacy,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192418,-28.87406591512212,peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192418,35.24810778394062,baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192472,-12.838965988267775,peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192472,-0.2653500848386806,relative_legacy,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192472,62.29303509201767,spot_baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192472,-13.152120205978978,spot_peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192472,60.86172388113589,baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192924,-5.016624276415552,spot_peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192924,-0.360966065193105,peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192924,-0.0081353615703153,relative_legacy,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192924,73.63884007034605,spot_baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,192924,5.231976340235724,baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,193275,-0.1096930605851159,relative_legacy,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,193275,-2.657504911162787,peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,193275,-3.292446433117796,spot_peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,193275,54.388779706413786,baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,193275,76.04338746701116,spot_baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,195286,4.436431520913585,peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,195286,75.02359736611704,baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,195286,87.97057662822883,spot_baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,195286,-0.0267946216148903,relative_legacy,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,195286,5.259930331471692,spot_peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,204737,0.0072121704494062,relative_legacy,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,204737,8.905575187794044,spot_peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,204737,93.05481192478548,spot_baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,204737,38.37473837436713,baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,204737,3.3692372259783308,peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,208405,0.030756259632413,relative_legacy,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,208405,8.84555260332553,peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,208405,8.579411147144159,spot_peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,208405,90.63009918160007,baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,215725,64.71698973266875,baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,215725,0.0075235884436015,relative_legacy,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,215725,8.579411147144159,spot_peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,215725,5.731359759408284,peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,218666,12.845924098942334,spot_peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,218666,13.112710316031066,peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,218666,0.089098488132962,relative_legacy,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,218666,98.5500430304885,spot_baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,218666,96.70699085969493,baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,218945,47.36758470088726,baseline,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,218945,-0.3992041943699456,relative_legacy,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,218945,-22.637676497097807,peer,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,218945,48.54268271702416,spot_baseline,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,218945,-23.01179397884019,spot_peer,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,219459,-0.0192409838928136,relative_legacy,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,219459,14.72500486715302,baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,219459,-0.2877055868221825,peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,219459,79.35491225325737,spot_baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,219459,-0.9179215342133732,spot_peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,219886,11.55789691001006,spot_peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,219886,92.9273305579261,baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,219886,11.528378940918026,peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,219886,0.0681664970709131,relative_legacy,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,219886,96.75375360708584,spot_baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,220077,-2.92668903667216,spot_peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,220077,-2.6430391835828315,peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,220077,-0.1258474746147576,relative_legacy,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,220077,73.46679464028338,baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,221727,74.46345675103424,baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,221727,-2.92668903667216,spot_peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,221727,-0.1258474746147576,relative_legacy,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,221727,-2.6353832716092502,peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,222631,-20.09756532711297,spot_peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,222631,-1.2975559737061326,peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,222631,-0.0207845933487973,relative_legacy,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,222631,52.60688116675877,spot_baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29723,"Will there be a large-scale armed conflict in Russia before January 1, 2025? -",2024-11-11 15:11:34.834509+00,222631,3.396449858724362,baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29881 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,182315,1.1751147648228002,spot_peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,182315,1.1839721416571325,peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,182315,86.85082759343679,baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,182315,98.5500430304885,spot_baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,182315,0.0,relative_legacy,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,185690,9.45219369515787,baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,185690,98.5500430304885,spot_baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,185690,0.120335052011277,peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,185690,1.1751147648228002,spot_peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,185690,0.0,relative_legacy,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,185698,98.5500430304885,spot_baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,185698,1.1751147648228002,spot_peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,185698,-0.8099958772961373,peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,185698,-0.0179352676499032,relative_legacy,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,185698,32.94988434994915,baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,185699,98.5500430304885,spot_baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,185699,1.1751147648228002,spot_peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,185699,88.7477199214198,baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,185699,0.0,relative_legacy,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,185699,1.2174041568081846,peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,187708,93.65908298239384,spot_baseline,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,187708,31.14492661003754,baseline,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,187708,-0.7163233806462473,peer,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,187708,-0.0162641557978064,relative_legacy,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,187708,-2.328045574997615,spot_peer,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,189585,-0.0586689644440114,relative_legacy,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,189585,-3.086657617028944,spot_peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,189585,91.4098369427564,baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,189585,-2.94769600773039,peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,189588,0.0,relative_legacy,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,189588,1.1751147648228002,spot_peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,189588,1.358478106729903,peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,189588,98.5500430304885,spot_baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,189588,96.919141749163,baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,189869,58.53817409985162,baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,189869,-1.8571668117884008,peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,189869,-0.0376142847939488,relative_legacy,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,189869,-3.086657617028944,spot_peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,190772,1.047840921658758,peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,190772,77.38151708025232,baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,190772,98.5500430304885,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,190772,1.1751147648228002,spot_peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,190772,0.0,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191026,8.609789720144061,baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191026,-0.2798824261060586,peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191026,-3.086657617028944,spot_peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191026,-0.0055323058419468,relative_legacy,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191284,74.617349586849,baseline,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191284,1.0117704264384415,peer,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191284,0.0,relative_legacy,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191284,1.1751147648228002,spot_peer,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191284,98.5500430304885,spot_baseline,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191471,92.5999418556223,spot_baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191471,-3.086657617028944,spot_peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191471,-0.0404619262574422,relative_legacy,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191471,-2.00596069268211,peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191471,62.96988754800289,baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191935,0.0,relative_legacy,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191935,86.16541977185355,baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191935,1.1751147648228002,spot_peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191935,1.1727920125534388,peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191935,98.5500430304885,spot_baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191975,1.9031835375870876,spot_peer,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191975,0.7092620717321384,peer,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191975,99.56654097361088,spot_baseline,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191975,0.0034348277670625,relative_legacy,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,191975,33.64432972250008,baseline,jkraybill_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192049,98.5500430304885,spot_baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192049,1.3230217515589755,peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192049,93.95933077837162,baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192049,0.0,relative_legacy,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192049,1.1751147648228002,spot_peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192418,98.5500430304885,spot_baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192418,1.1751147648228002,spot_peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192418,0.0,relative_legacy,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192418,1.2762709440871147,peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192418,91.78698232463071,baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192459,99.43716054583182,baseline,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192459,99.85565831303312,spot_baseline,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192459,0.0129544691988517,relative_legacy,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192459,2.1102644352143125,spot_peer,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192459,2.3163132906276918,peer,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192472,99.85565831303312,spot_baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192472,2.2874240442336373,peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192472,2.1102644352143125,spot_peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192472,0.0127703638053221,relative_legacy,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192472,97.66989569791464,baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192924,-0.0003790264030792,relative_legacy,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192924,8.493232644719756,baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192924,98.11219897943108,spot_baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192924,0.0804335691139706,peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,192924,0.8615080496568781,spot_peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,193275,71.07026039570998,baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,193275,1.1751147648228002,spot_peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,193275,98.5500430304885,spot_baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,193275,0.9686247431589556,peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,193275,3.442790079951661e-06,relative_legacy,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,195286,1.14283557488105,peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,195286,84.17587136219373,baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,195286,1.1751147648228002,spot_peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,195286,98.5500430304885,spot_baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,195286,0.0,relative_legacy,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,204737,0.5641793855383488,peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,204737,40.84390715317284,baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,204737,1.1751147648228002,spot_peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,204737,0.0,relative_legacy,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,208405,98.5500430304885,spot_baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,208405,1.1751147648228002,spot_peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,208405,0.0,relative_legacy,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,208405,1.3534119906443742,peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,208405,96.45388776494362,baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,215725,1.1751147648228002,spot_peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,215725,0.0,relative_legacy,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,215725,98.5500430304885,spot_baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,215725,0.9437766735388552,peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,215725,68.93258636586108,baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,218666,96.7370557381496,baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,218666,0.9661494088101164,spot_peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,218666,98.25829469225908,spot_baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,218666,1.172284139845583,peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,218666,-0.0025761504241174,relative_legacy,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,218945,-0.0215015775294628,relative_legacy,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,218945,-0.4025240220253454,spot_peer,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,218945,94.05214503015756,baseline,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,218945,-0.2209992637908817,peer,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,218945,96.3474123974886,spot_baseline,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,219459,-0.0164243821879283,peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,219459,-0.0036300217889742,relative_legacy,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,219459,-0.2260366463592107,spot_peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,219459,17.924183803697833,baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,219459,96.59381639263673,spot_baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,219886,99.63873001360784,spot_baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,219886,0.0015647758152025,relative_legacy,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,219886,1.9548890881129848,spot_peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,219886,0.2969144262787306,peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,219886,14.321129709484694,baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,220077,73.66186852330932,baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,220077,-14.579973245085462,spot_peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,220077,-14.120552129791903,peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,220077,-0.2116570589009681,relative_legacy,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,221727,95.85601399405498,baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,221727,0.0,relative_legacy,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,221727,98.5500430304885,spot_baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,221727,1.1751147648228002,spot_peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,221727,1.349769106135786,peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,222631,1.1751147648228002,spot_peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,222631,98.5500430304885,spot_baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,222631,6.3753845522130055,baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,222631,0.0778864427875261,peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29724,"Will a mouse be confirmed to have lived for 2,500 days before January 1, 2025? -",2024-11-11 15:11:35.143804+00,222631,0.0,relative_legacy,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29882 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,182315,-0.0959379545368184,relative_legacy,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,182315,4.150022008305735,spot_peer,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,182315,71.92802078129378,baseline,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,182315,81.55754288625727,spot_baseline,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,182315,-0.2195233059097894,peer,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,185690,0.00024031480391,relative_legacy,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,185690,11.16884761308993,spot_peer,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,185690,1.207270536126248,peer,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,185690,8.877785285142425,baseline,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,185690,91.35692181485724,spot_baseline,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,185698,-112.05244331284185,baseline,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,185698,-232.19280948873623,spot_baseline,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,185698,-98.98262622737676,peer,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,185698,-1.4457047196768107,relative_legacy,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,185698,-220.5743225450576,spot_peer,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,185699,-0.5022079226074214,relative_legacy,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,185699,34.82081511998624,baseline,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,185699,-27.15476426522644,spot_peer,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,185699,37.85116232537298,spot_baseline,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,185699,-29.639193494408342,peer,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,187708,90.3038270112912,spot_baseline,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,187708,4.48292498063764,peer,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,187708,-0.0064323608070689,relative_legacy,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,187708,30.993603505427277,baseline,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,187708,10.414566262670672,spot_peer,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,188107,0.0014482435309095,relative_legacy,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,188107,3.798194059825648,peer,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,188107,12.059163310946944,spot_peer,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,188107,24.040029467555485,baseline,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,188107,92.5999418556223,spot_baseline,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,189585,91.4990580905367,baseline,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,189585,12.059163310946944,spot_peer,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,189585,0.0013814713400771,relative_legacy,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,189585,6.991038625762952,peer,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,189588,0.0014482435309095,relative_legacy,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,189588,12.059163310946944,spot_peer,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,189588,91.14792688859109,baseline,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,189588,6.999807710187284,peer,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,189869,58.542980584626754,baseline,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,189869,0.0014482435309095,relative_legacy,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,189869,12.059163310946944,spot_peer,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,189869,6.079411634274239,peer,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,190772,72.75586270614913,baseline,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,190772,12.059163310946944,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,190772,0.0014482435309095,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,190772,92.5999418556223,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,190772,6.551725651190766,peer,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191026,1.1138573057654733,peer,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191026,8.451167805111496,baseline,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191026,90.88775830868464,spot_baseline,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191026,10.832808272847284,spot_peer,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191026,-0.0001959353129904,relative_legacy,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191284,6.467947896677012,peer,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191284,12.059163310946944,spot_peer,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191284,70.11186820981793,baseline,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191284,0.0014482435309095,relative_legacy,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191284,92.5999418556223,spot_baseline,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191471,52.10247141629802,baseline,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191471,76.55347463629771,spot_baseline,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191471,-1.6525149919324629,peer,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191471,0.5658476828904178,spot_peer,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191471,-0.1077643824928616,relative_legacy,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191935,14.212018957573957,spot_peer,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191935,8.740320478636365,peer,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191935,95.60566524124027,spot_baseline,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191935,83.71615199516059,baseline,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,191935,0.0277675620745206,relative_legacy,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192049,16.32093569279868,spot_peer,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192049,0.0582449001300535,relative_legacy,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192049,98.5500430304885,spot_baseline,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192049,11.127089394507326,peer,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192049,94.07088698721812,baseline,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192418,6.982916988287391,peer,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192418,86.25810453862178,baseline,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192418,0.0014482435309095,relative_legacy,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192418,12.059163310946944,spot_peer,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192459,99.85565831303312,spot_baseline,biak_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192459,12.243354827679862,peer,biak_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192459,17.256085363190202,spot_peer,biak_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192459,99.4968000716211,baseline,biak_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192459,0.0730760327319413,relative_legacy,biak_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192472,7.000751075768815,peer,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192472,90.64039834194452,baseline,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192472,92.5999418556223,spot_baseline,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192472,0.0014482435309095,relative_legacy,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192472,12.059163310946944,spot_peer,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192924,94.11063109464314,spot_baseline,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192924,1.2557650673350076,peer,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192924,8.330010333911531,baseline,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192924,0.0026777043411384,relative_legacy,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,192924,13.141197630567474,spot_peer,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,193275,-2.8831308818216845,peer,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,193275,54.78664179799633,baseline,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,193275,-0.657046273966536,spot_peer,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,193275,74.84612330040356,spot_baseline,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,193275,-0.1267999486069107,relative_legacy,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,195286,72.5052846043971,baseline,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,195286,-0.0652453291554162,relative_legacy,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,195286,1.930225403728997,peer,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,195286,6.472217113018465,spot_peer,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,204737,98.25829469225908,spot_baseline,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,204737,38.88023814638036,baseline,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,204737,6.93455926947318,peer,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,204737,0.0238380180017273,relative_legacy,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,204737,16.11197033678601,spot_peer,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,208405,97.08536543404836,spot_baseline,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,208405,0.0454440798322576,relative_legacy,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,208405,10.211424224492635,peer,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,208405,15.271857308183504,spot_peer,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,208405,95.21622818637792,baseline,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,215725,97.08536543404836,spot_baseline,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,215725,0.032847509077072,relative_legacy,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,215725,8.569911006189134,peer,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,215725,15.271857308183504,spot_peer,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,215725,67.96257068278052,baseline,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,218666,90.5635913481849,baseline,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,218666,-0.0062232454006403,relative_legacy,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,218666,92.5999418556223,spot_baseline,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,218666,12.059163310946944,spot_peer,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,218666,6.403095874593702,peer,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,218945,12.059163310946944,spot_peer,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,218945,92.5999418556223,spot_baseline,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,218945,7.00199831413672,peer,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,218945,0.0014482435309095,relative_legacy,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,218945,90.42899563935634,baseline,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,219459,-9.606395545840552,peer,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,219459,0.0,spot_baseline,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,219459,0.0,baseline,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,219459,-54.26573826020052,spot_peer,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,219459,-0.1703858085799618,relative_legacy,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,219886,11.081364279083148,peer,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,219886,94.51631822762992,baseline,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,219886,0.0575340257598309,relative_legacy,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,219886,16.243145476814387,spot_peer,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,219886,98.44143571549152,spot_baseline,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,220077,-0.1534443230280249,relative_legacy,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,220077,-4.285275264426512,peer,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,220077,73.89516959309583,baseline,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,220077,0.5658476828904178,spot_peer,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,221727,87.97057662822883,spot_baseline,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,221727,3.7175963060536055,peer,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,221727,8.743370807291896,spot_peer,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,221727,85.62930530225356,baseline,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,221727,-0.043606766341321,relative_legacy,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,222631,5.3922401258100034,baseline,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,222631,5.317642717878854,spot_peer,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,222631,83.18772411916731,spot_baseline,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,222631,0.3761088013029837,peer,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29725,"Will the world remain ""normal"" through 2024, according to the specified criteria?",2024-11-11 15:11:35.153401+00,222631,-0.0050549707778028,relative_legacy,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29883 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,182315,-9.837085686898048,spot_peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,182315,-6.964748680080081,peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,182315,49.92721126826453,baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,182315,56.55971758542251,spot_baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,182315,-0.2326114530719997,relative_legacy,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,185690,-0.0049945690844266,relative_legacy,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,185690,0.2271169284517923,peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,185690,7.206612079747094,baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,185690,73.20520733002891,spot_baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,185690,2.08528107479915,spot_peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,185698,24.634133775245694,baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,185698,8.067658844752405,spot_peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,185698,81.55754288625727,spot_baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,185698,-0.0390613728966593,relative_legacy,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,185698,0.1087177099268931,peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,185699,89.53026213333065,spot_baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,185699,15.518439369158116,peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,185699,0.0602787760856203,relative_legacy,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,185699,84.28513446911374,baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,185699,13.778135641174186,spot_peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,187708,3.234793300565652,peer,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,187708,8.41933246836223,spot_peer,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,187708,0.0041138983723412,relative_legacy,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,187708,82.0485342986379,spot_baseline,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,187708,29.09456536734861,baseline,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,188107,1.3986783272033918,spot_peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,188107,72.2466024471091,spot_baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,188107,42.26893834796508,baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,188107,1.40965672332533,peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,188107,-0.0587578767025258,relative_legacy,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,189585,-1.7810597350278254,spot_peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,189585,1.7683494379762723,peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,189585,67.00132520935303,baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,189585,-0.1500520696314172,relative_legacy,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,189588,10.389853949465133,spot_peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,189588,84.79969065549501,spot_baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,189588,13.635779838793075,peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,189588,0.0171955161362913,relative_legacy,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,189588,83.46893381286966,baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,189869,10.847014092040943,peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,189869,58.54037280296927,baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,189869,0.063997898103455,relative_legacy,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,189869,15.976800147393632,spot_peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,190772,0.0391316683883139,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,190772,87.97057662822883,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,190772,12.66100764373858,spot_peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,190772,69.17371337437405,baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,190772,11.268234937716173,peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191026,0.8041958708306021,peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191026,8.455412406457084,spot_peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191026,82.09890753841053,spot_baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191026,7.634559371346427,baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191026,0.0032758798542609,relative_legacy,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191284,13.277544965960765,peer,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191284,0.0732572531694698,relative_legacy,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191284,70.11150220753555,baseline,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191284,15.976800147393632,spot_peer,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191471,2.189078867750218,peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191471,73.11832415721999,spot_baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191471,2.0230508209861804,spot_peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191471,49.80647014127248,baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191471,-0.0648848872310393,relative_legacy,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191935,15.976800147393632,spot_peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191935,92.5999418556223,spot_baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191935,15.97228508869161,peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191935,0.0849077910175319,relative_legacy,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,191935,81.22104149565598,baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192049,81.05994745370947,baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192049,12.632690024745283,peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192049,0.0157444651582879,relative_legacy,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192049,10.389853949465133,spot_peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192418,86.2695667114623,baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192418,15.976800147393632,spot_peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192418,0.0884145206454437,relative_legacy,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192418,17.34865433926885,peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192459,-200.0,spot_baseline,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192459,-2.7971722777285737,relative_legacy,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192459,-199.34421093265212,baseline,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192459,-191.73764791222212,peer,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192459,-193.59851873947585,spot_peer,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192472,75.00349924763093,baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192472,7.441748538394027,peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192472,-0.0637866870968547,relative_legacy,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192472,4.483484519337103,spot_peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192924,6.112453803404224,baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192924,-0.0096087693791199,relative_legacy,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192924,-1.7810597350278254,spot_peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192924,-0.1442221986035335,peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,192924,67.80719051126377,spot_baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,193275,-0.1027541835077353,relative_legacy,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,193275,0.2952246434783518,peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,193275,-0.8808258728189473,spot_peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,193275,51.157309042882375,baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,193275,69.06405786156932,spot_baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,195286,5.53254887926534,peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,195286,-0.0541822210312652,relative_legacy,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,195286,4.483484519337103,spot_peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,195286,65.60870650301362,baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,204737,0.0093018205770915,relative_legacy,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,204737,34.90532722119524,baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,204737,83.51156152582178,spot_baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,204737,9.467228772553993,spot_peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,204737,4.2883643968998175,peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,208405,90.81368585583252,baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,208405,0.0934733816925293,relative_legacy,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,208405,18.956922870556973,peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,208405,15.976800147393632,spot_peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,215725,10.389853949465133,spot_peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,215725,59.43155572150138,baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,215725,84.79969065549501,spot_baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,215725,0.014685813877288,relative_legacy,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,215725,8.200338043222835,peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,218666,80.50876627588154,baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,218666,81.55754288625727,spot_baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,218666,-0.0149719068228326,relative_legacy,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,218666,8.067658844752405,spot_peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,218666,11.692459621939422,peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,218945,-16.311605294523535,peer,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,218945,-19.3372935372189,spot_peer,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,218945,43.29594072761063,spot_baseline,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,218945,42.30018530232175,baseline,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,218945,-0.3884978176472887,relative_legacy,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,219459,67.80719051126377,spot_baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,219459,-0.2347721152939445,peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,219459,-1.7810597350278254,spot_peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,219459,-0.022288677299909,relative_legacy,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,219459,12.582956173444868,baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,219886,0.1373380305860272,relative_legacy,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,219886,19.189494144630174,spot_peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,219886,97.08536543404836,spot_baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,219886,22.093172143264592,peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,219886,95.09949022055154,baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,220077,65.67921163438972,baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,220077,-1.7810597350278254,spot_peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,220077,0.9912414874018568,peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,220077,-0.1477990522411762,relative_legacy,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,221727,0.047664599736077,relative_legacy,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,221727,12.66100764373858,spot_peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,221727,85.62961868234133,baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,221727,15.36286401074508,peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,221727,87.97057662822883,spot_baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,222631,0.2955600703534699,peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,222631,4.483484519337103,spot_peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,222631,4.97256404998458,baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29726,"Before January 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2024-11-11 15:11:35.158899+00,222631,-0.0025678658184821,relative_legacy,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29884 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,182315,-162.2089926278485,baseline,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,182315,-141.4444213802717,peer,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,182315,-183.65012677171205,spot_baseline,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,182315,-2.1049992179122685,relative_legacy,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,182315,-160.26921513125032,spot_peer,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,185690,0.0030215392573405,relative_legacy,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,185690,6.060089463992815,baseline,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,185690,1.4870592575398331,peer,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,185690,60.50201530624096,spot_baseline,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,185690,14.799787188409324,spot_peer,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,185698,27.030338976090384,baseline,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,185698,26.309466959272893,spot_peer,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,185698,9.602377773335672,peer,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,185698,0.061290929499151,relative_legacy,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,185699,-20.1522638943286,peer,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,185699,-0.4374486219634015,relative_legacy,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,185699,8.406426478847456,spot_baseline,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,185699,7.998220424952956,baseline,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,185699,-22.55529265502309,spot_peer,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,187708,33.5556696446919,baseline,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,187708,90.3038270112912,spot_baseline,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,187708,36.16914073213409,spot_peer,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,187708,0.1159394430438472,relative_legacy,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,187708,13.813545345098628,peer,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,188107,28.535951512004143,baseline,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,188107,-0.0421346728556814,relative_legacy,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,188107,48.54268271702416,spot_baseline,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,188107,4.956220105695023,peer,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,188107,6.224362017104888,spot_peer,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,189585,66.99968558437938,baseline,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,189585,0.1305733697391503,relative_legacy,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,189585,20.03795435757276,spot_peer,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,189585,21.2656037608809,peer,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,189588,0.0390219374406129,relative_legacy,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,189588,13.361555619203308,spot_peer,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,189588,14.5614766393739,peer,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,189588,57.56870094947672,baseline,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,189869,-83.56590701856771,baseline,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,189869,-1.1873390521269676,relative_legacy,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,189869,-77.12677069196548,peer,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,189869,-123.37180713758836,spot_peer,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,189869,-132.19280948873623,spot_baseline,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,190772,24.419449274275767,baseline,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,190772,-6.330209397129671,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,190772,-3.3708640719604923,peer,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,190772,-0.1918893633129349,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,190772,31.034012061215048,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191026,1.2354498137799368,peer,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191026,58.39805517193035,spot_baseline,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191026,13.291145083125258,spot_peer,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191026,0.0010648777694378,relative_legacy,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191026,5.430959629887327,baseline,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191284,57.96172457284247,baseline,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191284,0.157343565413392,relative_legacy,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191284,21.663629967665383,peer,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191284,26.309466959272893,spot_peer,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191471,37.22472174337796,baseline,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191471,-0.0073836365704543,relative_legacy,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191471,54.59683691052925,spot_baseline,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191471,10.565486061832347,spot_peer,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191471,8.724922515923392,peer,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191935,46.46682670034443,spot_baseline,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191935,40.82419835491395,baseline,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191935,6.272971374097419,peer,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191935,-0.0719275916569258,relative_legacy,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,191935,4.735871935853203,spot_peer,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192049,-48.70606386662783,peer,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192049,-51.6669263900078,spot_peer,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192049,-0.8284967108977015,relative_legacy,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192049,-32.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192049,-30.817386546343105,baseline,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192418,0.0877886554290599,relative_legacy,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192418,17.418870772991028,spot_peer,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192418,59.77742301268499,baseline,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192418,18.26267617750051,peer,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192418,64.15460290875237,spot_baseline,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192472,57.36513032123303,baseline,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192472,14.590164073146775,peer,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192472,0.0393629580750029,relative_legacy,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192472,13.361555619203308,spot_peer,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192924,-0.0079618430199549,relative_legacy,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192924,6.224362017104888,spot_peer,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192924,4.446115509683503,baseline,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192924,48.54268271702416,spot_baseline,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,192924,0.5689777555153552,peer,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,193275,0.0113292302686429,relative_legacy,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,193275,11.050621691233314,peer,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,193275,12.530641305693242,spot_peer,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,193275,43.16439615937488,baseline,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,193275,57.33745264459446,spot_baseline,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,195286,41.64087458936034,baseline,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,195286,-0.0541204876367322,relative_legacy,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,195286,6.224362017104888,spot_peer,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,195286,7.363519113660589,peer,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,204737,25.65307057356007,baseline,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,204737,0.0108024785744728,relative_legacy,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,204737,15.274788305703082,spot_peer,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,204737,6.929204680253864,peer,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,204737,61.164454337366166,spot_baseline,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,208405,75.07316806066005,baseline,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,208405,26.309466959272893,spot_peer,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,208405,0.2163813992934621,relative_legacy,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,208405,27.544112889038544,peer,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,215725,24.260995476550217,peer,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,215725,84.79969065549501,spot_baseline,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,215725,32.22240632202621,spot_peer,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,215725,0.2039357425568346,relative_legacy,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,215725,59.48264795819234,baseline,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,218666,72.1105321550098,baseline,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,218666,73.11832415721999,spot_baseline,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,218666,0.1798902058544654,relative_legacy,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,218666,24.881917704337216,peer,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,218666,23.846296404750287,spot_peer,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,218945,-0.0476187859842307,relative_legacy,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,218945,49.56951626240687,spot_baseline,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,218945,6.960651786297712,spot_peer,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,218945,8.23038404996099,peer,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,218945,48.45132421732736,baseline,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,219459,-9.722260033990803,spot_peer,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,219459,26.303440583379377,spot_baseline,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,219459,4.881211948899908,baseline,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,219459,-0.0577389846128259,relative_legacy,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,219459,-1.696927549766731,peer,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,219886,31.260476561521653,spot_peer,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,219886,83.4581784035037,spot_baseline,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,219886,75.69576078577735,baseline,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,219886,30.68435969366981,peer,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,219886,0.259367389567932,relative_legacy,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,220077,36.71767525910983,baseline,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,220077,0.0091181863961962,peer,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,220077,37.85116232537298,spot_baseline,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,220077,-1.4419799298318563,spot_peer,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,220077,-0.1606211182892677,relative_legacy,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,221727,13.361555619203308,spot_peer,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,221727,14.631851678638206,peer,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,221727,0.0396591890595514,relative_legacy,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,221727,56.94179592880936,baseline,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,222631,-0.0123076406280616,relative_legacy,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,222631,-1.4419799298318563,spot_peer,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,222631,2.463464273371143,baseline,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29727,"Will Texas have 15.0 million or more residents living in drought on December 31, 2024?",2024-11-11 15:11:35.16432+00,222631,-0.0938482683708178,peer,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29885 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,182315,-16.298691780949802,baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,182315,-0.440569374377847,relative_legacy,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,182315,-5.694266276530776,peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,182315,-10.70691369927652,spot_peer,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,182315,-18.44245711374277,spot_baseline,RyansAGI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,185690,17.823658460480534,spot_baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,185690,-0.0006277085656471,relative_legacy,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,185690,1.8114681332107,baseline,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,185690,1.616277853766667,peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,185690,15.268767252861933,spot_peer,annabot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,185698,44.40059586125525,spot_peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,185698,13.076992174035706,baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,185698,0.0361541996086817,relative_legacy,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,185698,10.632006630299294,peer,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,185698,58.496250072115615,spot_baseline,RonanMcGovern,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,185699,50.58909297299573,spot_baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,185699,0.1743977597132772,relative_legacy,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,185699,44.01035347667979,peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,185699,49.00499923713803,baseline,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,185699,38.73707809010576,spot_peer,MWG,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,187708,-9.222332561671736,baseline,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,187708,-5.144204081062309,peer,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,187708,-0.2019105728159813,relative_legacy,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,187708,-13.564238603429237,spot_peer,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,187708,-22.43172982609403,spot_baseline,twsummerbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,188107,32.19280948873624,spot_baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,188107,0.0226666985291221,relative_legacy,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,188107,15.87545557229964,peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,188107,25.560701659213265,spot_peer,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,188107,18.986839696311385,baseline,Cassie,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,189585,21.342428892120232,spot_peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,189585,29.56748009419771,peer,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,189585,-0.0627519483475459,relative_legacy,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,189585,25.98203009886477,baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,189588,48.54268271702416,spot_baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,189588,0.156112140771004,relative_legacy,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,189588,47.77054074236722,baseline,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,189588,44.28253754361833,peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,189588,37.27133247427026,spot_peer,mf-bot-3,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,189869,0.3528453239552891,relative_legacy,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,189869,63.24049006329722,spot_peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,189869,53.6099863534462,baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,189869,41.04925906020693,peer,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,190772,52.60688116675877,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,190772,40.18232309416222,spot_peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,190772,41.44480083352615,baseline,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,190772,0.1731793238495844,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,190772,34.30717514739432,peer,Jay_Bailey_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191026,-0.7619248165271442,peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191026,-0.0317879863905731,relative_legacy,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191026,-8.749577434119725,spot_peer,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191026,-1.4610833971222772,baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191026,-15.709709381716468,spot_baseline,manticAI,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191284,-51.45731728297583,spot_baseline,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191284,-0.6402488306144202,relative_legacy,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191284,-25.729097685259244,peer,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191284,-41.05945929020999,baseline,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191284,-34.353876183590764,spot_peer,000_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191471,12.901278103700498,baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191471,12.197838472102234,peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191471,16.042121805406698,spot_peer,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191471,-0.0723851011856202,relative_legacy,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191471,18.903382439001717,spot_baseline,HSeldon,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191935,42.22330006830476,spot_baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191935,32.745061466236315,spot_peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191935,37.16417605910976,baseline,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191935,32.929425271085414,peer,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,191935,0.0954134421821662,relative_legacy,pgodzinai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192049,0.423046211880006,relative_legacy,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192049,73.37331405033513,baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192049,61.31895134546308,peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192049,57.33412063316919,spot_peer,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192418,32.8584021959565,peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192418,35.27383069482985,baseline,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192418,0.0554825430243363,relative_legacy,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192418,29.61350868505233,spot_peer,InstitutPelFutur,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192459,-638.3113814946051,peer,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192459,-639.6736354802149,spot_peer,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192459,-9.219618547095877,relative_legacy,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192459,-894.1233180011435,baseline,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192459,-896.5784284662086,spot_baseline,biak_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192472,0.430822758510337,relative_legacy,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192472,57.33412063316919,spot_peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192472,63.86813413976318,peer,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192472,75.15170964161769,baseline,bestworldbot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192924,-0.0691604726882059,relative_legacy,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192924,15.496825904986146,spot_peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192924,11.6065881703012,baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192924,10.846987283625705,peer,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,192924,18.14206402801417,spot_baseline,acm_bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,193275,26.062790812669856,spot_baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,193275,19.660880091318173,peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,193275,21.17006299171488,spot_peer,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,193275,-0.0801848229569929,relative_legacy,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,193275,19.20946651670036,baseline,histerio,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,195286,29.61350868505233,spot_peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,195286,29.091000154195758,peer,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,195286,32.49775626131973,baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,195286,0.0569306858438081,relative_legacy,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,195286,37.85116232537298,spot_baseline,Unwrapped80T,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,204737,0.0,spot_baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,204737,2.502534690078257,spot_peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,204737,0.0,baseline,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,204737,1.524299608123163,peer,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,204737,-0.1128723309231951,relative_legacy,SynapseSeer,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,208405,36.105012318891866,peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,208405,29.61350868505233,spot_peer,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,208405,0.0509641805648452,relative_legacy,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,208405,37.12041201266168,baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,208405,37.85116232537298,spot_baseline,mf-bot-4,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,215725,41.889949795951445,peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,215725,0.3286872114928223,relative_legacy,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,215725,53.75365204638627,baseline,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,215725,57.33412063316919,spot_peer,estr.ai,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,218666,15.774826292329784,peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,218666,2.9840317744130305,baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,218666,1.672543614694281,spot_peer,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,218666,-0.2899313359125384,relative_legacy,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,218666,-1.1587974275211843,spot_baseline,GreeneiBot2,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,218945,-51.45731728297583,spot_baseline,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,218945,-34.353876183590764,spot_peer,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,218945,-50.31978702241403,baseline,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,218945,-0.8223349315488916,relative_legacy,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,218945,-27.706428267925155,peer,SeidrBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,219459,-6.160748738361262,peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,219459,-34.353876183590764,spot_peer,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,219459,-9.549286598319314,baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,219459,-0.1361134194199486,relative_legacy,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,219459,-51.45731728297583,spot_baseline,karamazov,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,219886,36.97177294135653,spot_baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,219886,0.0422704530796071,relative_legacy,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,219886,28.983644203835485,spot_peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,219886,36.39616998262455,baseline,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,219886,36.05348331233915,peer,SaraBase,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,220077,35.521870662900085,peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,220077,0.051007075084344,relative_legacy,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,220077,29.61350868505233,spot_peer,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,220077,36.90275607265608,baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,221727,67.80719051126377,spot_baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,221727,66.0025255906732,baseline,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,221727,0.3425936484711635,relative_legacy,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,221727,56.587216076388806,peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,221727,51.06957637880427,spot_peer,mf-bot-5,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,222631,29.61350868505233,spot_peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,222631,2.468528341362803,baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,222631,0.0124610418758928,relative_legacy,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,222631,1.9392289613737843,peer,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29728,Will Jelly Roll win an award in any of these 2024 CMA Awards categories?,2024-11-11 15:11:35.169261+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29886 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,182315,79.90873060740036,spot_baseline,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,182315,70.6640497034849,baseline,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,182315,41.62197199872101,peer,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,182315,0.3896187365319263,relative_legacy,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,182315,49.58312848507602,spot_peer,RyansAGI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,185690,5.079592555484502,baseline,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,185690,27.77200432835473,spot_peer,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,185690,0.0120597893328025,relative_legacy,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,185690,2.5981742927818825,peer,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,185690,49.39546936413704,spot_baseline,annabot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,185698,-173.6965594166206,spot_baseline,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,185698,-131.6959692625125,spot_peer,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,185698,-31.670319862319737,peer,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,185698,-0.5115170595421166,relative_legacy,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,185698,-39.15750918868633,baseline,RonanMcGovern,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,185699,13.416198516940277,peer,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,185699,14.647087206597147,spot_peer,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,185699,-0.0585242010359319,relative_legacy,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,185699,30.498365291039917,baseline,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,185699,31.034012061215048,spot_baseline,MWG,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,187708,35.16283291027824,spot_baseline,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,187708,0.0043564633714965,relative_legacy,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,187708,17.598401503742576,spot_peer,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,187708,6.2112607503348,peer,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,187708,14.867301945430826,baseline,twsummerbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,188107,-12.945211670010387,peer,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,188107,-9.0745662108413,baseline,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,188107,-18.401576993613716,spot_peer,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,188107,-0.2808823567759019,relative_legacy,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,188107,-15.200309344505014,spot_baseline,Cassie,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,189585,-73.69655941662063,spot_baseline,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,189585,-60.21516626726814,spot_peer,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,189585,-72.78432658168875,baseline,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,189585,-61.71676073946672,peer,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,189585,-1.090394232791238,relative_legacy,mf-bot-1,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,189588,-133.0151689560823,peer,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,189588,-2.0720840467776283,relative_legacy,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,189588,-131.6959692625125,spot_peer,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,189588,-170.9748417130218,baseline,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,189588,-173.6965594166206,spot_baseline,mf-bot-3,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,189869,39.47930870248474,baseline,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,189869,0.0708635601257713,relative_legacy,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,189869,19.12790468988019,peer,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,189869,19.52004095680967,spot_peer,VeritasAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,190710,-35.83757352939438,spot_peer,Bot_Pepa,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,190710,-0.0049191003165194,baseline,Bot_Pepa,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,190710,-0.0044525347576564,peer,Bot_Pepa,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,190710,-8.246742997648571e-05,relative_legacy,Bot_Pepa,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,190710,-39.592867633113926,spot_baseline,Bot_Pepa,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,190772,46.46682670034443,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,190772,0.0950927716891679,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,190772,17.710563979367837,peer,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,190772,25.67858703541444,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,190772,36.62604053404903,baseline,Jay_Bailey_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191026,0.0042593023399267,relative_legacy,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191026,1.8866053803218268,peer,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191026,3.9277383418444174,baseline,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191026,22.64873432373321,spot_peer,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191026,42.228132414995095,spot_baseline,manticAI,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191284,26.303440583379377,spot_baseline,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191284,19.9151946447928,baseline,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191284,-0.0569255061266289,relative_legacy,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191284,5.98960791024193,peer,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191284,11.265636727976217,spot_peer,000_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191471,30.126740198675968,peer,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191471,52.30147567532983,baseline,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191471,0.3009004155280471,relative_legacy,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191471,47.18476457438595,spot_peer,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191471,76.55347463629771,spot_baseline,HSeldon,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191935,2.856915219677092,spot_baseline,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191935,-9.448552153721083,peer,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191935,-5.494127876481819,spot_peer,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191935,0.0201047034634336,baseline,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191935,-0.3151767502854584,relative_legacy,pgodzinai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191975,-0.1720851450025258,relative_legacy,jkraybill_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191975,-2.570285121798631,spot_peer,jkraybill_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191975,4.703568624562335,baseline,jkraybill_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191975,-4.052071408361599,peer,jkraybill_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,191975,6.947304012424302,spot_baseline,jkraybill_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192049,58.496250072115615,spot_baseline,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192049,56.12700934799912,baseline,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192049,0.2018841810915396,relative_legacy,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192049,34.27731545725408,spot_peer,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192049,31.51958312512839,peer,gnosis-ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192418,47.18476457438595,spot_peer,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192418,73.88937092839355,baseline,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192418,44.704466323654046,peer,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192418,0.3727510070895213,relative_legacy,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192472,-173.6965594166206,spot_baseline,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192472,-132.8188040139619,peer,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192472,-2.0702065944443504,relative_legacy,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192472,-131.6959692625125,spot_peer,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192472,-170.6742221504831,baseline,bestworldbot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192924,-4.088312532507128,spot_peer,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192924,-0.1726703724402315,relative_legacy,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192924,3.095690385052389,baseline,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192924,-4.742212893697717,peer,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,192924,4.823618565284762,spot_baseline,acm_bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,193275,26.783539209761496,spot_baseline,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,193275,7.766334629921828,peer,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,193275,23.797470567087316,baseline,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,193275,11.608815081283288,spot_peer,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,193275,-0.0776635872383224,relative_legacy,histerio,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,195286,0.1114550653960456,relative_legacy,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,195286,20.805664556393232,peer,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,195286,41.728638595532765,baseline,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,195286,27.162425585162225,spot_peer,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,204737,24.734633536559453,baseline,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,204737,0.1030190373073993,relative_legacy,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,204737,13.296452065014693,peer,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,204737,34.27731545725408,spot_peer,SynapseSeer,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,208405,0.384100505318061,relative_legacy,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,208405,45.68491992409639,peer,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,208405,47.18476457438595,spot_peer,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,208405,75.07664458839247,baseline,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,215725,26.303440583379377,spot_baseline,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,215725,-0.0459550313956039,relative_legacy,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,215725,11.265636727976217,spot_peer,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,215725,18.48407970911148,baseline,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,215725,5.559931703611599,peer,estr.ai,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,218666,42.58086236218749,baseline,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,218666,22.645280123515462,spot_peer,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,218666,0.0601324900017828,relative_legacy,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,218666,22.290008859582265,peer,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,218666,42.22330006830478,spot_baseline,GreeneiBot2,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,218945,58.496250072115615,spot_baseline,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,218945,34.27731545725408,spot_peer,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,218945,0.2065187602445233,relative_legacy,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,218945,32.617863796793564,peer,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,218945,57.22401012126526,baseline,SeidrBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,219459,0.028554009575052,relative_legacy,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,219459,29.589008130588493,spot_peer,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,219459,9.638579107370278,baseline,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,219459,4.981602838816071,peer,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,219459,51.93741590935794,spot_baseline,karamazov,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,219886,74.57966580103832,spot_baseline,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,219886,69.7063334991923,baseline,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,219886,41.09923517788301,peer,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,219886,45.77387016935147,spot_peer,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,219886,0.3507457840275806,relative_legacy,SaraBase,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,220077,-0.1075290197763412,relative_legacy,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,220077,25.659571976814384,baseline,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,220077,9.646457373252767,peer,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,220077,11.265636727976217,spot_peer,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,220077,26.303440583379377,spot_baseline,mmBot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,221727,-0.8645355808119789,relative_legacy,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,221727,-50.10717729851494,baseline,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,221727,-45.3911808401363,peer,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,221727,-44.31837741008213,spot_peer,mf-bot-5,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,222631,-53.559631274956125,spot_peer,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,222631,-3.5984184237058088,peer,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,222631,-4.206715355452435,baseline,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,222631,-0.0653981323803952,relative_legacy,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,222631,-64.38561897747248,spot_baseline,Grizeu_Bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,226082,48.54268271702416,spot_baseline,hlb-bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,226082,20.741605404807444,peer,hlb-bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,226082,27.162425585162225,spot_peer,hlb-bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,226082,0.1076548832875835,relative_legacy,hlb-bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29729,"Will either major party candidate in California’s 22nd Congressional District concede the election before December 1, 2024?",2024-11-11 15:11:35.459867+00,226082,41.68179868105136,baseline,hlb-bot,True,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,2024-11-12 15:30:00+00,29887 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,182315,0.1938539232551995,relative_legacy,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,182315,31.199943241443084,spot_peer,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,182315,29.333281699937388,peer,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,182315,82.39011461491197,baseline,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,182315,94.11063109464314,spot_baseline,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,185690,5.619870014224319,baseline,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,185690,-0.009255808587896,relative_legacy,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,185690,7.313716910990916,spot_peer,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,185690,60.97549621724435,spot_baseline,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,185690,0.7736713566579209,peer,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,185699,73.11832415721999,spot_baseline,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,185699,16.067154539634306,spot_peer,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,185699,58.88336465921922,baseline,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,185699,14.307303541809654,peer,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,185699,0.005762268165201,relative_legacy,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,187708,-0.0010248331254208,relative_legacy,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,187708,15.312616767992417,spot_peer,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,187708,6.246502260659852,peer,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,187708,27.58718225958852,baseline,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,187708,72.07162425211312,spot_baseline,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,188107,13.489213152124526,peer,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,188107,42.47254298678204,baseline,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,188107,26.2069844460616,spot_peer,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,188107,87.18436485093177,spot_baseline,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,188107,0.0706767913305867,relative_legacy,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,189585,26.902672320490627,peer,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,189585,24.487937043135684,spot_peer,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,189585,0.1396800050192474,relative_legacy,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,189585,83.41448239293597,baseline,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,189588,32.52052185083979,peer,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,189588,90.81991275756882,baseline,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,189588,30.11092805524437,spot_peer,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,189588,0.2161014306552031,relative_legacy,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,189869,-6.042895071526719,peer,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,189869,28.63749009153275,baseline,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,189869,-9.35599260206561,spot_peer,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,189869,-0.2610681114854293,relative_legacy,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,190772,63.27414090786991,baseline,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,190772,22.1507600345216,spot_peer,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,190772,18.46022137063975,peer,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,190772,0.0710498118996471,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,190772,81.55754288625727,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191026,-0.0426088310861386,relative_legacy,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191026,44.99839685029872,spot_baseline,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191026,-4.203743723922512,spot_peer,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191026,9.486308359678038,baseline,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191026,-0.0177376950949619,peer,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191046,-49.06931006265168,peer,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191046,-40.84527815387196,baseline,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191046,-89.76774097834769,spot_peer,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191046,-0.809901555238722,relative_legacy,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191046,-73.69655941662059,spot_baseline,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191471,0.0497517834837634,relative_legacy,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191471,79.90873060740036,spot_baseline,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191471,54.07645334124414,baseline,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191471,20.96217566886484,spot_peer,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191471,15.281732865915943,peer,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191935,0.0088673704756615,relative_legacy,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191935,71.33503100204243,baseline,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191935,17.291895476887596,peer,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191935,71.36958148433591,spot_baseline,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,191935,14.806533044270452,spot_peer,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192049,45.86507349772577,baseline,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192049,0.7340698369130718,peer,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192049,-1.6487634980785446,spot_peer,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192049,-0.2061870654021182,relative_legacy,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192418,30.11092805524437,spot_peer,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192418,32.537397810209754,peer,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192418,90.99159497570768,baseline,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192418,0.2162771514091902,relative_legacy,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192472,20.96217566886484,spot_peer,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192472,0.0915693459280746,relative_legacy,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192472,23.362099130810343,peer,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192472,78.9149472486611,baseline,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192472,79.90873060740036,spot_baseline,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192924,21.53815175678881,baseline,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192924,-13.29353880954861,peer,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192924,-0.3742518108126615,relative_legacy,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192924,-17.680434200113414,spot_peer,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,192924,26.303440583379377,spot_baseline,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,193275,14.297974573674503,spot_peer,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,193275,54.17230981091188,baseline,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,193275,70.66410573094088,spot_baseline,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,193275,12.178487968719365,peer,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,193275,-0.0128860913140817,relative_legacy,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,195286,0.0328753801207881,relative_legacy,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,195286,18.543462003781027,spot_peer,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,195286,60.8364845514283,baseline,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,195286,16.062699433209104,peer,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,204737,0.0764590169190552,relative_legacy,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,204737,29.23143021334912,spot_peer,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,204737,37.18233052096368,baseline,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,204737,91.3798964950696,spot_baseline,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,204737,12.345799832409748,peer,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,208405,14.706276859977732,peer,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,208405,12.238501334871822,spot_peer,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,208405,-0.0260217708980436,relative_legacy,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,208405,66.15740432310093,baseline,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,215725,0.0585580402595696,relative_legacy,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,215725,18.543462003781027,spot_peer,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,215725,72.46061405981828,baseline,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,215725,20.169916570401345,peer,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,218666,12.912533338386076,baseline,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,218666,13.750352374993504,spot_baseline,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,218666,-0.5317994236290451,relative_legacy,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,218666,-26.72961740703488,spot_peer,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,218666,-23.22684469820804,peer,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,220077,-31.23451720414812,baseline,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,220077,-0.9952439820917004,relative_legacy,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,220077,-59.848805443362494,spot_peer,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,220077,-32.19280948873623,spot_baseline,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,220077,-56.51215552811666,peer,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,221727,-157.7604158522484,peer,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,221727,-2.3747745892477408,relative_legacy,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,221727,-161.85504775658202,spot_peer,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,221727,-173.6965594166206,spot_baseline,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,221727,-168.9775832629651,baseline,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,222631,-0.7808656212183934,peer,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,222631,18.543462003781027,spot_peer,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,222631,-0.5256550617681723,baseline,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29771,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.145639+00,222631,-0.013543968474984,relative_legacy,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29937 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,182315,8.406426478847456,spot_baseline,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,182315,2.588329301765809,spot_peer,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,182315,7.371886386135274,baseline,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,182315,0.4674138955864748,peer,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,182315,-0.0194567478902681,relative_legacy,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,185690,-0.9180250173893596,peer,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,185690,-12.357940175100532,spot_peer,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,185690,-0.0205262574561736,relative_legacy,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,185690,-1.173864627612509,baseline,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,185690,-12.437718746748851,spot_baseline,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,185698,-332.1928094887361,spot_baseline,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,185698,-112.2116631156434,peer,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,185698,-241.63794667596045,spot_peer,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,185698,-1.600294414828279,relative_legacy,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,185698,-156.75229023056963,baseline,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,185699,21.217143967971428,peer,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,185699,0.2799034275133384,relative_legacy,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,185699,26.83667818164621,spot_peer,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,185699,35.15068953796852,baseline,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,185699,42.22330006830476,spot_baseline,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,187708,39.61594890731542,spot_baseline,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,187708,16.15874173743989,baseline,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,187708,11.573119895215022,peer,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,187708,24.96708014098817,spot_peer,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,187708,0.1236095104862218,relative_legacy,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,188107,4.736377659692052,baseline,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,188107,2.600736071284851,peer,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,188107,3.236909958344642,spot_peer,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,188107,0.0036223137271,relative_legacy,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,188107,9.310940439148176,spot_baseline,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,189585,83.58143590719747,baseline,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,189585,54.06177236764934,peer,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,189585,0.6777310144908157,relative_legacy,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,189585,57.36602827881509,spot_peer,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,189588,47.89932961321807,peer,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,189588,0.5961682421382223,relative_legacy,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,189588,75.14027733182209,baseline,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,189588,51.45308891606179,spot_peer,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,189869,0.139080960363832,relative_legacy,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,189869,19.901517795147992,baseline,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,189869,11.185566526006149,peer,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,189869,15.421361922798086,spot_peer,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,190772,-0.0171224001325928,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,190772,0.6178263737629123,spot_peer,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,190772,-0.2394635448915181,peer,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,190772,4.3952545235245655,baseline,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,190772,5.658352836636751,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191026,75.45170544963062,spot_baseline,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191026,0.1179174305281014,relative_legacy,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191026,13.580410352127064,baseline,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191026,50.663066634648565,spot_peer,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191026,9.787306503629273,peer,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191046,-26.523304433218907,spot_peer,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191046,-0.2245479110379719,relative_legacy,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191046,-17.825839810390196,baseline,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191046,-13.992579143523132,peer,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191046,-32.19280948873623,spot_baseline,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191284,-32.19280948873623,spot_baseline,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191284,-26.523304433218907,spot_peer,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191284,-28.198316052901745,peer,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191284,-0.4397937858981478,relative_legacy,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191284,-30.634744612153323,baseline,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191471,-0.4897529514181268,relative_legacy,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191471,-33.75441118888181,peer,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191471,-43.64396394729793,baseline,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191471,-49.60712008641304,spot_peer,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191471,-64.38561897747249,spot_baseline,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191935,76.55347463629771,spot_baseline,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191935,51.45308891606179,spot_peer,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191935,48.39280965955522,peer,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191935,0.597008612499317,relative_legacy,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,191935,75.97065388895729,baseline,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192049,-94.77052285080708,baseline,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192049,-74.68397669040075,peer,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192049,-1.079259929893431,relative_legacy,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192049,-75.14436952760535,spot_peer,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192049,-100.0,spot_baseline,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192418,51.45308891606179,spot_peer,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192418,75.2450264117845,baseline,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192418,0.5961821017741779,relative_legacy,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192418,47.95633097557742,peer,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192472,-75.14436952760535,spot_peer,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192472,-79.25641680844028,peer,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192472,-1.147763215695051,relative_legacy,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192472,-98.9495077105584,baseline,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192472,-100.0,spot_baseline,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192924,-15.200309344505014,spot_baseline,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192924,-0.1919398002950146,relative_legacy,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192924,-13.062705002451535,peer,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192924,-14.338852468765465,spot_peer,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,192924,-12.489920257776044,baseline,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,193275,-0.5588838288836923,relative_legacy,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,193275,-49.69300655252945,baseline,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,193275,-48.64181035239053,spot_peer,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,193275,-39.43564047235908,peer,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,193275,-63.03939299681623,spot_baseline,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,195286,37.85116232537298,spot_baseline,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,195286,18.087753989514788,peer,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,195286,23.701642026957035,spot_peer,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,195286,0.2360207728238858,relative_legacy,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,195286,30.078957396109303,baseline,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,204737,19.212522319205533,peer,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,204737,43.48673363327293,spot_peer,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,204737,0.2298733454358519,relative_legacy,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,204737,26.800335380179344,baseline,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,204737,65.44355408453994,spot_baseline,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,208405,0.3224229921023677,relative_legacy,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,208405,27.85823721031818,peer,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,208405,47.47455118984209,baseline,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,208405,31.36798397389377,spot_peer,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,215725,-16.350937866159374,peer,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,215725,-14.338852468765465,spot_peer,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,215725,-0.2759794823861195,relative_legacy,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,215725,-14.414251360559607,baseline,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,215725,-15.200309344505014,spot_baseline,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,218666,86.07642026288279,spot_baseline,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,218666,53.06540485722716,peer,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,218666,58.28150572126157,spot_peer,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,218666,0.6790224655704205,relative_legacy,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,218666,81.13536517437426,baseline,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,218945,-96.92582079740586,baseline,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,218945,-1.116011679431318,relative_legacy,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,218945,-76.87554899110702,peer,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,218945,-75.14436952760535,spot_peer,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,218945,-100.0,spot_baseline,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,219886,67.80719051126376,spot_baseline,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,219886,45.18157631436162,spot_peer,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,219886,62.02536151518394,baseline,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,219886,39.51136448175382,peer,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,219886,0.5014491147833091,relative_legacy,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,220077,31.36798397389377,spot_peer,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,220077,47.41733334282002,baseline,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,220077,27.844632124507125,peer,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,220077,0.3225539745924447,relative_legacy,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,220077,48.54268271702416,spot_baseline,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,221727,74.52070957583899,baseline,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,221727,0.5952473649443958,relative_legacy,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,221727,47.66527663956278,peer,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,221727,51.45308891606179,spot_peer,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,222631,0.5929627963665368,peer,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,222631,0.8917162870906685,baseline,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,222631,38.50517757599221,spot_peer,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,222631,0.0077710307219714,relative_legacy,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29773,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-12 14:19:34.16934+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,2024-11-13 15:30:00+00,29939 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,182315,73.01117123921681,baseline,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,182315,83.18772411916731,spot_baseline,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,182315,29.89675399332896,spot_peer,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,182315,21.441724898738723,peer,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,182315,0.1600062060045617,relative_legacy,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,185690,1.099172005809064,baseline,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,185690,11.52996440255473,spot_baseline,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,185690,-0.0363695350354247,relative_legacy,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,185690,-21.485357157855898,spot_peer,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,185690,-2.192858911774479,peer,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,185698,-0.469170755078557,relative_legacy,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,185698,-205.8893689053569,spot_baseline,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,185698,-177.38563082847855,spot_peer,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,185698,-25.958967216929334,baseline,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,185698,-30.44050349376693,peer,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,185699,-4.215654941753924,spot_peer,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,185699,-8.495136711583456,peer,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,185699,30.251595352335507,baseline,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,185699,-0.2468887430966824,relative_legacy,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,185699,35.61438102252753,spot_baseline,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,187708,43.50951516200971,spot_baseline,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,187708,18.2469489704961,baseline,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,187708,-1.1794013432915706,peer,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,187708,-0.0725528615331955,relative_legacy,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,187708,1.4455415778232852,spot_peer,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,188107,-21.472624278787325,spot_peer,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,188107,-0.2644116234577356,relative_legacy,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,188107,-13.802241689754435,peer,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,188107,6.029625200927231,baseline,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,188107,11.547721741993588,spot_baseline,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,189585,25.13967331314033,spot_peer,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,189585,75.4967090963876,baseline,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,189585,0.1059167166068696,relative_legacy,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,189585,20.12952447253575,peer,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,189588,57.41355872260778,baseline,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,189588,7.081891232224051,peer,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,189588,12.191761973070752,spot_peer,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,189588,-0.0714583050095262,relative_legacy,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,189869,10.024428663167322,peer,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,189869,18.86816071144018,spot_peer,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,189869,0.0283668514512636,relative_legacy,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,189869,51.30310572916421,baseline,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,190772,9.268283209706317,peer,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,190772,0.0146365193145033,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,190772,17.56690737969603,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,190772,65.99245584023782,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,190772,51.29185038901672,baseline,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191026,6.253882452697278,spot_peer,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191026,50.21525237925796,spot_baseline,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191026,5.807686095020629,baseline,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191026,-2.0746021690086884,peer,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191026,-0.0458961650757169,relative_legacy,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191046,11.180681459418324,peer,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191046,0.0768594035563628,relative_legacy,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191046,25.13967331314033,spot_peer,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191046,42.444005986515485,baseline,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191284,30.012363637935177,peer,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191284,92.5999418556223,spot_baseline,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191284,36.64577349695664,spot_peer,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191284,0.2569137379306144,relative_legacy,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191284,88.11793925354726,baseline,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191471,13.360169446654776,peer,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191471,76.55347463629771,spot_baseline,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191471,25.13967331314033,spot_peer,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191471,0.0877050791568631,relative_legacy,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191471,51.93688479226989,baseline,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191935,16.569511407640416,peer,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191935,73.11832415721999,spot_baseline,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191935,69.61126281925206,baseline,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191935,22.67650275861773,spot_peer,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,191935,0.0715270119232463,relative_legacy,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192049,-0.1614917680980039,relative_legacy,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192049,5.054568370972328,spot_peer,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192049,-0.4188518027504563,peer,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192049,46.04711025241102,baseline,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192418,-154.30181517528445,spot_peer,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192418,-2.3542343695643213,relative_legacy,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192418,-170.7543353378025,baseline,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192418,-159.1316621672744,peer,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192472,73.11832415721999,spot_baseline,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192472,0.0720657839307492,relative_legacy,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192472,17.657635172883207,peer,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192472,72.41693243268952,baseline,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192472,22.67650275861773,spot_peer,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192924,62.07733710298366,baseline,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192924,70.84079834835963,spot_baseline,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192924,13.574070904558615,peer,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192924,21.043405593379028,spot_peer,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,192924,0.0517197311372782,relative_legacy,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,193275,-2.7710473193016063,spot_peer,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,193275,37.629038333705154,spot_baseline,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,193275,30.10512628659584,baseline,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,193275,-6.711549753148444,peer,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,193275,-0.2105026440312266,relative_legacy,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,195286,60.92394286994247,baseline,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,195286,25.13967331314033,spot_peer,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,195286,15.558727145228694,peer,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,195286,0.0977831676550257,relative_legacy,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,204737,18.86816071144018,spot_peer,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,204737,27.873888982540876,baseline,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,204737,0.0291956590599017,relative_legacy,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,204737,67.80719051126377,spot_baseline,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,204737,6.051315054974903,peer,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,208405,25.13967331314033,spot_peer,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,208405,74.83917192740446,baseline,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,208405,19.771141186885007,peer,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,208405,0.1052584418954629,relative_legacy,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,215725,72.64083530971506,baseline,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,215725,18.867170058691865,peer,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,215725,25.13967331314033,spot_peer,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,215725,76.55347463629771,spot_baseline,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,215725,0.1042158425182069,relative_legacy,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,218666,-26.80439240613185,peer,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,218666,9.47217347944171,baseline,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,218666,10.03049057956855,spot_baseline,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,218666,-22.560553074469325,spot_peer,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,218666,-0.5241320462953897,relative_legacy,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,218945,13.750352374993504,spot_baseline,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,218945,-19.89323061008505,spot_peer,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,218945,-0.5038863994219098,relative_legacy,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,218945,-24.768114122281105,peer,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,218945,13.334032989707357,baseline,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,219886,76.83325573858214,spot_baseline,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,219886,25.340290018887654,spot_peer,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,219886,0.1074775069130684,relative_legacy,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,219886,19.61873582853334,peer,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,219886,74.35382092471302,baseline,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,220077,74.98827255946088,baseline,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,220077,19.865047681293543,peer,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,220077,25.13967331314033,spot_peer,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,220077,0.1054219847120645,relative_legacy,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,221727,12.191761973070752,spot_peer,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,221727,-0.0705460794383842,relative_legacy,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,221727,56.94162089943893,baseline,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,221727,6.834965759734509,peer,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,222631,-0.1566942943388154,baseline,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,222631,-0.0144378441551485,relative_legacy,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,222631,-0.848072650038718,peer,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29774,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-12 14:19:34.206595+00,222631,-2.611773575964416,spot_peer,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29940 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,182315,78.24085649273731,spot_baseline,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,182315,18.25373403086129,spot_peer,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,182315,68.72897468380498,baseline,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,182315,0.094370981854173,relative_legacy,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,182315,17.664523676558037,peer,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,185690,-0.0003195330561949,relative_legacy,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,185690,6.512481862471131,baseline,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,185690,1.019292643211394,peer,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,185690,67.56353007675153,spot_baseline,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,185690,10.597569857248786,spot_peer,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,185698,25.23041825108881,spot_peer,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,185698,87.97057662822883,spot_baseline,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,185698,30.994797580923063,baseline,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,185698,8.989902217246714,peer,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,185698,0.0535344027655272,relative_legacy,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,185699,4.8866703882979445,baseline,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,185699,-28.02170718197072,peer,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,185699,-0.537803171380996,relative_legacy,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,185699,-33.7914636593539,spot_peer,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,185699,5.658352836636751,spot_baseline,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,187708,-8.971633148021521,spot_peer,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,187708,40.27221768456044,spot_baseline,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,187708,-3.6742398484268586,peer,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,187708,17.305319726046065,baseline,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,187708,-0.1364123909532566,relative_legacy,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,188107,42.15127379451332,baseline,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,188107,10.539180788841366,peer,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,188107,0.0396316753724985,relative_legacy,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,188107,19.05256638540374,spot_peer,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,188107,79.35491225325737,spot_baseline,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,189585,0.0161515135834405,relative_legacy,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,189585,11.982133256108828,peer,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,189585,66.86826599441703,baseline,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,189585,10.77228628124482,spot_peer,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,189588,75.14209399981418,baseline,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,189588,17.04379888294495,spot_peer,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,189588,18.21881897292569,peer,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,189588,0.1018915034649363,relative_legacy,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,189869,13.750352374993504,spot_baseline,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,189869,-27.989105040280435,spot_peer,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,189869,10.404194579970662,baseline,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,189869,-0.42565725493816,relative_legacy,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,189869,-20.34997766180577,peer,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,190772,0.0495421337150379,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,190772,60.06501350749839,baseline,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,190772,14.497511880619047,peer,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,190772,76.55347463629771,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,190772,17.04379888294495,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191026,9.630184876640332,spot_peer,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191026,66.21440994640243,spot_baseline,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191026,-0.0165667969812095,relative_legacy,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191026,11.719836615663583,baseline,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191026,1.1537201712621743,peer,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191046,-0.1858123523698905,relative_legacy,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191046,-5.53161323352816,peer,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191046,21.01985877349697,baseline,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191046,-10.707648006159792,spot_peer,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191046,37.85116232537298,spot_baseline,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191284,26.303440583379377,spot_baseline,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191284,-18.98792811031874,spot_peer,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191284,-0.3771027337353653,relative_legacy,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191284,-16.685561797878716,peer,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191284,25.030199893613048,baseline,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191471,48.46163906950853,baseline,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191471,9.83651979542024,peer,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191471,0.0003252438750704,relative_legacy,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191471,71.36958148433588,spot_baseline,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191471,13.326694480248753,spot_peer,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191935,8.1532026966631,spot_peer,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191935,64.15460290875237,spot_baseline,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191935,9.450920814843338,peer,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191935,-0.0169132915190726,relative_legacy,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,191935,61.16225572005448,baseline,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192049,23.69891821676377,peer,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192049,80.60947193715668,baseline,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192049,0.1793362004893451,relative_legacy,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192049,22.95673824569827,spot_peer,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192418,17.04379888294495,spot_peer,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192418,0.1020352224392861,relative_legacy,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192418,75.26788669875191,baseline,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192418,18.23408329924864,peer,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192472,57.99079015865964,baseline,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192472,5.278442771063058,peer,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192472,-0.0756207940409475,relative_legacy,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192472,4.095887542875369,spot_peer,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192924,41.5758666522498,spot_baseline,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192924,-0.2276121029704166,relative_legacy,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192924,-5.643743408981648,peer,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192924,-8.036853210372806,spot_peer,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,192924,36.49867887424519,baseline,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,193275,66.75241605594326,baseline,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,193275,0.1055111072952151,relative_legacy,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,193275,18.6489763958694,peer,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,193275,83.02553241676829,spot_baseline,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,193275,21.6845801963459,spot_peer,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,195286,17.04379888294495,spot_peer,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,195286,60.98541430346559,baseline,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,195286,0.0510328474235071,relative_legacy,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,195286,14.741178787275464,peer,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,204737,31.60420002032204,baseline,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,204737,7.215899166337903,peer,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,204737,0.0164449740656498,relative_legacy,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,204737,17.04379888294495,spot_peer,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,208405,-0.075668290528132,relative_legacy,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,208405,5.267863667942127,peer,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,208405,57.09351080321698,baseline,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,208405,4.095887542875369,spot_peer,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,215725,-0.9316811865422536,relative_legacy,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,215725,-30.56537569415943,baseline,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,215725,-56.92633869054618,peer,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,215725,-60.93259446633573,spot_peer,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,215725,-32.19280948873623,spot_baseline,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,218666,-48.28939108106858,spot_peer,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,218666,-14.560532224689933,spot_baseline,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,218666,-13.77651582582269,baseline,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,218666,-0.7616802328392638,relative_legacy,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,218666,-44.59760428035717,peer,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,218945,74.26820399474067,baseline,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,218945,18.135897103692173,peer,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,218945,0.1012922508515783,relative_legacy,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,218945,17.04379888294495,spot_peer,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,219886,-62.83796538261345,spot_peer,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,219886,-34.850049688305226,spot_baseline,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,219886,-31.54654122701109,baseline,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,219886,-0.9154281669529478,relative_legacy,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,219886,-55.85156897060205,peer,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,220077,18.216797134711797,peer,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,220077,0.1018915034649363,relative_legacy,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,220077,75.11710116878184,baseline,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,220077,17.04379888294495,spot_peer,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,221727,4.095887542875369,spot_peer,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,221727,-0.0738895608013767,relative_legacy,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,221727,5.375272546578549,peer,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,221727,56.944150285759214,baseline,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,222631,0.0986059544821603,baseline,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,222631,-0.0167408987042201,relative_legacy,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,222631,-0.8834982324225625,peer,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,222631,-10.707648006159792,spot_peer,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29775,"Will the Alta ski resort be listed as Open by On the Snow's Ski Report on November 22, 2024?",2024-11-12 14:19:34.414955+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29941 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,182315,79.90873060740036,spot_baseline,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,182315,48.406567879313656,spot_peer,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,182315,70.24804286348804,baseline,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,182315,-0.0159991250048838,relative_legacy,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,182315,35.65280643944676,peer,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,185690,-1.9919472332768455,peer,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,185690,-0.6266470735647645,baseline,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,185690,-6.431396483782156,spot_baseline,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,185690,-0.0734377082366814,relative_legacy,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,185690,-13.50351728872826,spot_peer,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,185698,-0.7305932413821863,relative_legacy,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,185698,-132.19280948873626,spot_baseline,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,185698,-103.68058851040286,spot_peer,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,185698,-46.59944462054108,baseline,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,185698,-39.569947461890735,peer,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,185699,79.11486536273866,baseline,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,185699,42.07110067159167,peer,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,185699,0.0688161488574927,relative_legacy,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,185699,55.30567558607283,spot_peer,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,185699,89.53026213333065,spot_baseline,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,187708,75.36045362799952,spot_baseline,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,187708,45.14523129516461,spot_peer,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,187708,-0.0015116726208272,relative_legacy,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,187708,33.00144186320433,baseline,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,187708,15.84164865834606,peer,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,188107,41.56843811270673,baseline,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,188107,20.077958100035403,peer,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,188107,46.60742208153408,spot_peer,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,188107,77.39963251111732,spot_baseline,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,188107,-0.0046090738898168,relative_legacy,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,189585,25.915580644290404,spot_peer,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,189585,-0.275329678028287,relative_legacy,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,189585,47.87461096500352,baseline,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,189585,21.248195470524703,peer,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,189588,-129.75599458290063,baseline,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,189588,-108.0200571604893,peer,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,189588,-2.049023787132456,relative_legacy,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,189588,-132.19280948873626,spot_baseline,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,189588,-103.68058851040286,spot_peer,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,189869,57.50678577027473,spot_peer,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,189869,36.84816880776867,peer,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,189869,70.06486671508698,baseline,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,189869,0.0837664257895996,relative_legacy,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,190772,70.29815918771284,baseline,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,190772,0.0605399856547119,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,190772,36.52348328353551,peer,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,190772,55.30567558607283,spot_peer,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,190772,89.53026213333065,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191026,37.08606177174744,spot_peer,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191026,64.12109385305267,spot_baseline,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191026,6.565070918806548,peer,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191026,13.737922546562892,baseline,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191026,-0.0030811095397805,relative_legacy,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191046,26.84049275886677,peer,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191046,51.40543731853639,baseline,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191046,57.50678577027473,spot_peer,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191046,0.0775808417708289,relative_legacy,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191284,57.50678577027473,spot_peer,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191284,88.1172078832009,baseline,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191284,0.103956273179742,relative_legacy,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191284,49.02118838014978,peer,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191471,-61.18689357567951,peer,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191471,-67.94708743994985,baseline,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191471,-1.227262943714292,relative_legacy,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191471,-80.59677285720873,spot_peer,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191471,-100.0,spot_baseline,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191935,57.50678577027473,spot_peer,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191935,92.5999418556223,spot_baseline,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191935,49.47897127975884,peer,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191935,0.1058180443945141,relative_legacy,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,191935,88.51170588413909,baseline,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192049,0.0297432224867682,relative_legacy,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192049,43.64071395622502,peer,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192049,80.70124371401943,baseline,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192049,51.91362494921172,spot_peer,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192418,-133.44080290196638,spot_peer,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192418,-2.460340623366652,relative_legacy,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192418,-137.97527672099974,peer,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192418,-170.80183590267063,baseline,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192472,37.69912171396175,peer,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192472,70.82289747010363,baseline,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192472,71.36958148433591,spot_baseline,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192472,-0.0502022567868344,relative_legacy,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192472,42.28358118376222,spot_peer,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192924,34.027740476625425,spot_baseline,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192924,15.50765862023228,spot_peer,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192924,29.928053409818453,baseline,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192924,6.469959936181475,peer,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,192924,-0.4195353965184481,relative_legacy,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,193275,39.02043207017808,peer,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,193275,74.26146623393932,baseline,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,193275,56.52207766587402,spot_peer,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,193275,0.0765842848874484,relative_legacy,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,193275,91.22666280664497,spot_baseline,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,195286,60.72305339820897,spot_peer,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,195286,0.1213431643669993,relative_legacy,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,195286,97.08536543404836,spot_baseline,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,195286,41.477650903569135,peer,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,195286,77.40095515884973,baseline,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,204737,20.113010206292145,baseline,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,204737,7.064048125375867,peer,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,204737,-0.1113213345343843,relative_legacy,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,204737,25.915580644290404,spot_peer,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,204737,48.54268271702416,spot_baseline,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,208405,-247.09035000556383,spot_peer,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,208405,-332.1928094887361,spot_baseline,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,208405,-324.6701277828208,baseline,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,208405,-249.87950374453632,peer,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,208405,-4.003218130933739,relative_legacy,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,215725,87.96968893518196,baseline,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,215725,48.88311231405698,peer,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,215725,0.1036180569384275,relative_legacy,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,215725,57.50678577027473,spot_peer,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,218666,80.90027749390863,spot_baseline,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,218666,49.11755539184076,spot_peer,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,218666,40.66517818682307,peer,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,218666,-0.0074441073465596,relative_legacy,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,218666,76.68009510507615,baseline,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,218945,33.83619270904008,peer,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,218945,-0.105786605243976,relative_legacy,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,218945,65.83896949781118,baseline,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,218945,67.80719051126377,spot_baseline,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,218945,39.72917298475827,spot_peer,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,219886,-0.1071142564417705,relative_legacy,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,219886,40.74571375900677,spot_peer,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,219886,69.22486356733785,spot_baseline,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,219886,27.785838920889265,peer,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,219886,59.19144757355572,baseline,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,220077,-0.2749852718540017,relative_legacy,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,220077,21.209023354869935,peer,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,220077,47.67392471051417,baseline,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,220077,25.915580644290404,spot_peer,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,220077,48.54268271702416,spot_baseline,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,221727,-80.59677285720873,spot_peer,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,221727,-100.0,spot_baseline,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,221727,-84.68295626042342,peer,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,221727,-97.36207086692168,baseline,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,221727,-1.7352166774912985,relative_legacy,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,222631,-0.0771339814651371,relative_legacy,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,222631,-4.6137748027057714,peer,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,222631,-6.027266836325999,baseline,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,222631,-247.09035000556383,spot_peer,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29776,"Will Elon Musk or Dana White be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-12 14:19:34.676267+00,222631,-332.1928094887361,spot_baseline,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29942 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,182315,11.085520633805464,peer,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,182315,83.18772411916731,spot_baseline,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,182315,0.065807558494375,relative_legacy,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,182315,16.84448587892071,spot_peer,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,182315,73.21190524225656,baseline,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,185690,77.73671094504128,spot_baseline,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,185690,7.669533890658478,baseline,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,185690,1.2844432710777307,peer,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,185690,0.0013523996655831,relative_legacy,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,185690,12.935843382878735,spot_peer,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,185698,13.750352374993504,spot_baseline,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,185698,-0.178642730787842,relative_legacy,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,185698,-32.945498724493305,spot_peer,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,185698,8.63800303677675,baseline,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,185698,-8.716986335065132,peer,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,185699,-0.319099116941255,relative_legacy,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,185699,-16.76115957146367,peer,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,185699,35.88220750390693,baseline,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,185699,-14.084648021670406,spot_peer,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,185699,40.05379295837288,spot_baseline,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,187708,-117.15557177664624,peer,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,187708,-1.705480304633483,relative_legacy,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,187708,-285.7259827883918,spot_baseline,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,187708,-247.68464772062336,spot_peer,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,187708,-134.9061785744411,baseline,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,188107,80.73549220576041,spot_baseline,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,188107,15.0861159097582,spot_peer,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,188107,7.746867116805779,peer,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,188107,44.57635057890851,baseline,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,188107,0.0281205714487221,relative_legacy,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,189585,75.5028441915766,baseline,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,189585,6.95908310286125,peer,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,189585,0.0067922561830892,relative_legacy,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,189585,12.08740519873208,spot_peer,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,189588,0.1640509905648384,relative_legacy,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,189588,18.42999995259934,peer,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,189588,90.88206129501437,baseline,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,189588,23.5935053825484,spot_peer,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,189869,12.08740519873208,spot_peer,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,189869,57.92207685922228,baseline,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,189869,0.0115545484426081,relative_legacy,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,189869,6.54359428163557,peer,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,190772,2.6653021290077903,peer,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,190772,54.68137603997811,baseline,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,190772,7.100980872744745,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,190772,-0.0430809073582334,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,190772,69.59938131099001,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191026,3.510575101116195,spot_peer,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191026,-0.0480624842316042,relative_legacy,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191026,64.59218272953264,spot_baseline,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191026,9.399056077954716,baseline,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191026,-1.3711009860287688,peer,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191046,42.41353492856134,baseline,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191046,6.088266187320863,peer,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191046,12.08740519873208,spot_peer,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191046,0.0050304686685939,relative_legacy,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191284,-5.5275108286915335,peer,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191284,-0.163891042879145,relative_legacy,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191284,-0.8605061413374973,spot_peer,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191284,55.6642185242389,baseline,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191284,58.496250072115615,spot_baseline,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191471,71.36958148433588,spot_baseline,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191471,48.52352974705192,baseline,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191471,8.370300796035881,spot_peer,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191471,-0.0236902699146306,relative_legacy,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191471,3.832274586490348,peer,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191935,3.34049926201869,peer,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191935,8.370300796035881,spot_peer,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191935,-0.0415942931593643,relative_legacy,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191935,71.36958148433588,spot_baseline,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,191935,68.37569006951632,baseline,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192049,12.642970621764418,peer,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192049,18.000344561485406,spot_peer,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192049,0.0864088417745739,relative_legacy,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192049,80.82306783210409,baseline,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192418,57.52924400906831,baseline,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192418,-5.95776173549001,peer,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192418,-0.8605061413374973,spot_peer,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192418,-0.1706596080740207,relative_legacy,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192472,0.1193649275510706,relative_legacy,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192472,15.17665246941452,peer,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192472,20.27402456687594,spot_peer,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192472,87.39214054860348,baseline,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192472,87.97057662822883,spot_baseline,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192924,0.0558182867888127,relative_legacy,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192924,10.36488593615181,peer,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192924,16.027631176621515,spot_peer,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192924,82.0485342986379,spot_baseline,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,192924,72.26385155206745,baseline,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,193275,0.5161419832534138,peer,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,193275,65.99245584023782,spot_baseline,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,193275,54.48563210219447,baseline,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,193275,4.514639265287792,spot_peer,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,193275,-0.0751884084752047,relative_legacy,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,195286,23.5935053825484,spot_peer,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,195286,15.890593014294522,peer,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,195286,73.91461450372032,baseline,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,195286,0.1389498388953149,relative_legacy,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,204737,5.234455996135063,peer,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,204737,0.0050304686685939,relative_legacy,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,204737,12.08740519873208,spot_peer,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,204737,31.837581191933232,baseline,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,208405,18.000344561485406,spot_peer,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,208405,82.91930905036656,baseline,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,208405,12.83062688228129,peer,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,208405,0.0872568312174924,relative_legacy,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,215725,72.7651749615318,baseline,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,215725,6.937760207415216,peer,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,215725,76.55347463629771,spot_baseline,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,215725,0.0078834370343405,relative_legacy,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,215725,12.08740519873208,spot_peer,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,218666,0.1457366462109222,relative_legacy,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,218666,91.07326619029126,spot_baseline,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,218666,22.498804417320443,spot_peer,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,218666,86.46640668248186,baseline,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,218666,16.936927196304246,peer,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,218945,0.110237681138402,relative_legacy,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,218945,87.18436485093177,spot_baseline,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,218945,14.461505162658888,peer,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,218945,84.69078447370181,baseline,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,218945,19.71027234954165,spot_peer,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,219886,41.84138305226823,baseline,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,219886,-9.082182158764748,spot_peer,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,219886,-12.115166099309096,peer,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,219886,-0.2547755990683638,relative_legacy,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,219886,47.03025789458219,spot_baseline,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,220077,-5.961147888448548,peer,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,220077,-0.8605061413374973,spot_peer,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,220077,57.54126823549922,baseline,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,220077,-0.1706967256938008,relative_legacy,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,221727,-5.820230431226115,peer,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,221727,-0.1688365398625695,relative_legacy,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,221727,56.94205476623451,baseline,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,221727,-0.8605061413374973,spot_peer,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,222631,2.1481160921065365,baseline,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,222631,8.370300796035881,spot_peer,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,222631,71.36958148433588,spot_baseline,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,222631,0.4182656590729009,peer,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29777,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high before January 1, 2025?",2024-11-12 14:19:34.791483+00,222631,0.0017229224361517,relative_legacy,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29943 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,182315,-78.58751946471526,spot_baseline,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,182315,-69.22747454119258,baseline,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,182315,-33.277344316763,peer,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,182315,-37.97352077037237,spot_peer,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,182315,-0.4289316169475509,relative_legacy,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,185690,-2.8933706792687794,baseline,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,185690,-0.2207416361686847,peer,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,185690,-2.4044621777225097,spot_peer,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,185690,0.000737779108797,relative_legacy,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,185690,-28.982725172033835,spot_baseline,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,185698,-51.45731728297583,spot_baseline,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,185698,-0.0750508821665957,relative_legacy,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,185698,-18.519841649378616,spot_peer,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,185698,-6.386714120829687,peer,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,185698,-18.164162794524835,baseline,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,185699,-71.36387169413625,spot_peer,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,185699,-64.93495694327831,peer,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,185699,-0.8594090289540677,relative_legacy,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,185699,-113.55941581291452,baseline,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,185699,-125.15387669959644,spot_baseline,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,187708,10.299399332332566,spot_baseline,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,187708,12.760898154455363,peer,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,187708,0.1900589940656809,relative_legacy,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,187708,25.762738353249528,spot_peer,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,187708,4.998943305479117,baseline,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,188107,1.204789577618667,peer,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,188107,1.565263292789397,spot_peer,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,188107,-13.324276515513702,baseline,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,188107,0.0288438294764039,relative_legacy,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,188107,-23.4465253637023,spot_baseline,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,189585,0.5629312752967126,relative_legacy,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,189585,25.95974125236573,baseline,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,189585,37.238417047106246,spot_peer,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,189585,37.265912389144304,peer,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,189588,-18.507394731062377,peer,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,189588,-50.559667097807136,baseline,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,189588,-18.519841649378616,spot_peer,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,189588,-0.2025015229812524,relative_legacy,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,189869,-173.6965594166206,spot_baseline,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,189869,-80.27705287397826,peer,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,189869,-1.0971681919669158,relative_legacy,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,189869,-106.17134444805484,spot_peer,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,189869,-131.43246185110553,baseline,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,190772,35.29498287930491,peer,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,190772,27.999288810843662,baseline,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,190772,0.5051822857190369,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,190772,43.91481578547568,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,190772,35.61438102252753,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191026,25.1652579510442,spot_baseline,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191026,36.42228454790064,spot_peer,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191026,7.107195428133995,peer,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191026,4.981142540779015,baseline,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191026,0.1046180689923959,relative_legacy,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191046,-0.1261748485639175,relative_legacy,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191046,-28.477757157660463,baseline,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191046,-9.990037551638434,peer,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191046,-18.519841649378616,spot_peer,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191046,-51.45731728297583,spot_baseline,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191284,48.54268271702416,spot_baseline,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191284,51.403343383164646,peer,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191284,46.1923597266498,baseline,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191284,0.7606635768289192,relative_legacy,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191284,53.18503909820193,spot_peer,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191471,22.696474314084902,baseline,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191471,29.3387425447982,peer,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191471,0.4196646347376825,relative_legacy,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191471,42.28567540946128,spot_peer,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191471,33.34237337251918,spot_baseline,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191935,-59.94620704162712,spot_baseline,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191935,-57.52131070115967,baseline,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191935,-23.757706275245347,peer,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191935,-24.6067899276131,spot_peer,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,191935,-0.2741842442265781,relative_legacy,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192049,28.23724011714456,spot_peer,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192049,0.4295859047817825,relative_legacy,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192049,13.12276928625011,baseline,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192049,27.44570600760808,peer,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192049,13.750352374993504,spot_baseline,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192418,-50.61340143796602,baseline,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192418,-18.519841649378616,spot_peer,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192418,-0.2024047214782333,relative_legacy,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192418,-18.55003982876316,peer,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192472,-24.6067899276131,spot_peer,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192472,-24.908046424989053,peer,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192472,-59.63569352175755,baseline,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192472,-0.2889896911750719,relative_legacy,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192472,-59.94620704162712,spot_baseline,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192924,4.823618565284762,spot_baseline,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192924,21.836336284238964,spot_peer,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192924,4.255747185670221,baseline,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192924,0.3058342178509796,relative_legacy,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,192924,19.909963898712427,peer,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,193275,0.0117541128770464,relative_legacy,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,193275,-22.847515755723062,baseline,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,193275,-0.5244265095061083,peer,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,193275,-1.1474810278074,spot_peer,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,193275,-27.22973271627619,spot_baseline,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,195286,-32.19280948873623,spot_baseline,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,195286,-3.2667340140098102,peer,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,195286,-25.723957356796785,baseline,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,195286,-0.0279038036828427,relative_legacy,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,195286,-4.706249308910746,spot_peer,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,204737,-1.7762807950384816,peer,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,204737,-4.706249308910746,spot_peer,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,204737,-13.442867425711803,baseline,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,204737,-0.0102532793180722,relative_legacy,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,204737,-32.19280948873623,spot_baseline,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,208405,-73.69655941662063,spot_baseline,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,208405,-34.4664637004743,spot_peer,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,208405,-34.31134564538666,peer,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,208405,-72.25623259363799,baseline,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,208405,-0.4207572805998252,relative_legacy,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,215725,-48.953684047015045,baseline,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,215725,-0.1907642857118161,relative_legacy,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,215725,-18.519841649378616,spot_peer,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,215725,-17.614462899322856,peer,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,218666,-98.85043611621704,spot_baseline,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,218666,-50.31455327400196,peer,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,218666,-0.6415551465321221,relative_legacy,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,218666,-94.03376431296282,baseline,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,218666,-52.50302099131337,spot_peer,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,218945,0.5534232098127484,relative_legacy,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,218945,25.566719805045462,baseline,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,218945,36.67740872887857,peer,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,218945,37.238417047106246,spot_peer,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,218945,26.303440583379377,spot_baseline,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,219886,14.025513403491576,spot_baseline,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,219886,26.002999303141877,peer,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,219886,0.3922195726055667,relative_legacy,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,219886,12.485695221223576,baseline,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,219886,28.434544004492924,spot_peer,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,220077,57.70274592205343,baseline,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,220077,0.8800109799257624,relative_legacy,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,220077,60.32223270030037,spot_peer,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,220077,60.33633020312176,peer,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,221727,36.85773401779076,baseline,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,221727,44.917667208898905,peer,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,221727,0.667444602753436,relative_legacy,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,221727,45.5186971512652,spot_peer,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,222631,-0.0134452772654966,relative_legacy,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,222631,-4.706249308910746,spot_peer,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,222631,-2.1776551016474834,baseline,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,222631,-1.048101866998958,peer,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29778,"Will Helldivers 2 win in any of these categories at the 2024 Golden Joystick Awards? -",2024-11-12 14:19:35.073334+00,222631,-32.19280948873623,spot_baseline,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29944 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,182315,78.24085649273731,spot_baseline,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,182315,68.97886226184868,baseline,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,182315,0.1696074014882417,relative_legacy,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,182315,15.490869454243471,peer,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,182315,17.107668641644057,spot_peer,RyansAGI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,185690,10.14217346213505,spot_peer,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,185690,1.0823132392434325,peer,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,185690,0.0059636857926429,relative_legacy,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,185690,6.91183698206907,baseline,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,185690,68.52674065168416,spot_baseline,annabot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,185698,26.303440583379377,spot_baseline,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,185698,2.224048132428557,peer,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,185698,21.82543266291099,baseline,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,185698,0.0125260237773516,relative_legacy,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,185698,-20.133993499536,spot_peer,RonanMcGovern,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,185699,-78.70147281779629,peer,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,185699,-85.16247550874711,spot_peer,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,185699,-59.125605191606965,baseline,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,185699,-1.132641562026866,relative_legacy,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,185699,-64.38561897747248,spot_baseline,MWG,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,187708,28.45141332442453,spot_baseline,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,187708,-0.1481594333489868,relative_legacy,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,187708,-8.848114325981955,peer,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,187708,-18.59379220707903,spot_peer,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,187708,14.116459042257912,baseline,twsummerbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,188107,44.08141428233076,baseline,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,188107,15.897733493727715,spot_peer,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,188107,0.1048891263272676,relative_legacy,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,188107,9.52367580766076,peer,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,188107,76.55347463629771,spot_baseline,Cassie,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,189585,15.590206236772278,peer,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,189585,75.64210105603317,baseline,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,189585,15.897733493727715,spot_peer,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,189585,0.164900944191232,relative_legacy,mf-bot-1,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,189588,15.558973447284949,peer,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,189588,75.20382903347864,baseline,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,189588,15.897733493727715,spot_peer,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,189588,0.1648281702058614,relative_legacy,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,189869,-0.1553037058756486,relative_legacy,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,189869,-8.70553575353735,peer,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,189869,28.640767567559735,baseline,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,189869,-11.853713395377042,spot_peer,VeritasAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,190772,46.012275030189066,baseline,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,190772,0.0009110899828045,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,190772,2.6333867280411445,peer,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,190772,2.949822153658128,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,190772,58.496250072115615,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191026,79.6417278067871,spot_baseline,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191026,18.112161746810497,spot_peer,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191026,12.516721314326864,baseline,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191026,1.643884144580319,peer,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191026,0.0136805254987482,relative_legacy,manticAI,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191046,42.460017975918674,baseline,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191046,0.1010646209927264,relative_legacy,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191046,15.897733493727715,spot_peer,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191046,9.195303629340543,peer,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191284,15.897733493727715,spot_peer,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191284,0.1641600753152108,relative_legacy,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191284,15.374703573164648,peer,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191284,72.8466566705706,baseline,000_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191471,-0.1099534835254396,relative_legacy,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191471,-5.629995062756645,peer,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191471,28.76594688170861,baseline,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191471,-8.718677240687839,spot_peer,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191471,42.22330006830478,spot_baseline,HSeldon,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191935,-5.889368905356857,spot_baseline,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191935,-5.659160268280636,baseline,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191935,-43.2178091527301,spot_peer,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191935,-0.6274559886871256,relative_legacy,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,191935,-41.99208018224201,peer,pgodzinai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192049,46.38823785695961,baseline,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192049,-3.991056076317839,peer,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192049,-0.1029295436555847,relative_legacy,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192049,-4.187371448440309,spot_peer,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192418,0.1648281702058614,relative_legacy,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192418,15.897733493727715,spot_peer,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192418,15.563441676227756,peer,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192418,75.30764477411155,baseline,InstitutPelFutur,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192472,0.0239942623930914,relative_legacy,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192472,62.02508441479887,baseline,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192472,5.318642624914517,peer,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192472,5.672302324420887,spot_peer,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192472,62.29303509201767,spot_baseline,bestworldbot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192924,22.156778853840933,spot_baseline,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192924,-20.33634021933464,peer,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192924,-0.3255144416272758,relative_legacy,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192924,-23.10735234770709,spot_peer,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,192924,19.590355480492526,baseline,acm_bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,193275,20.07200544444157,spot_peer,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,193275,17.38308431226729,peer,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,193275,69.76047779394737,baseline,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,193275,0.1980860749305724,relative_legacy,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,193275,82.37493603082727,spot_baseline,histerio,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,195286,0.0009110899828045,relative_legacy,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,195286,2.663326872729174,peer,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,195286,2.949822153658128,spot_peer,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,195286,46.7976865138339,baseline,Unwrapped80T,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,204737,-49.894207891099526,spot_peer,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,204737,-0.3080302892882745,relative_legacy,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,204737,-20.53761710982232,peer,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,204737,-6.372081100409371,baseline,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,204737,-15.200309344504996,spot_baseline,SynapseSeer,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,208405,75.0038650235651,baseline,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,208405,0.1647475795283448,relative_legacy,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,208405,15.897733493727715,spot_peer,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,208405,15.54449746608852,peer,mf-bot-4,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,215725,46.21053253943145,baseline,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,215725,-0.1024275639521124,relative_legacy,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,215725,-4.187371448440309,spot_peer,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,215725,-3.952995340376006,peer,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,215725,48.54268271702416,spot_baseline,estr.ai,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,218666,68.88517438658802,spot_baseline,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,218666,0.0912241505007886,relative_legacy,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,218666,65.64192824374908,baseline,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,218666,10.399187944306956,spot_peer,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,218666,10.091149373817425,peer,GreeneiBot2,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,218945,15.897733493727715,spot_peer,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,218945,0.1647464901737872,relative_legacy,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,218945,74.44895752689754,baseline,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,218945,15.52171435499537,peer,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,219886,59.893683382252746,spot_baseline,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,219886,58.74581537297783,baseline,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,219886,0.0014231221449041,relative_legacy,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,219886,3.9518500422189176,spot_peer,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,219886,3.680158263977973,peer,SaraBase,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,220077,15.897733493727715,spot_peer,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,220077,15.579862105643617,peer,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,220077,0.1648281702058614,relative_legacy,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,220077,75.56198850673825,baseline,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,221727,-0.0111585591682597,relative_legacy,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,221727,56.98431516253507,baseline,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,221727,2.756554685757084,peer,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,221727,2.949822153658128,spot_peer,mf-bot-5,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,222631,0.0017347769772225,relative_legacy,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,222631,1.7895294186807775,baseline,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,222631,0.2754107589861313,peer,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,222631,31.67034662934221,spot_peer,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29779,Will Morgan Wallen win an award in any of these 2024 CMA Awards categories?,2024-11-12 14:19:35.160672+00,222631,98.5500430304885,spot_baseline,Grizeu_Bot,True,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29945 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,182315,-70.49580300057455,spot_peer,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,182315,-1.4803564231614272,relative_legacy,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,182315,-88.22633440268261,baseline,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,182315,-60.872668172284776,peer,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,182315,-100.0,spot_baseline,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,185690,2.023107924112364,spot_peer,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,185690,-0.0544722287295783,relative_legacy,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,185690,1.13525072299049,spot_baseline,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,185690,0.1156656848087213,baseline,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,185690,-0.0976602197457387,peer,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,185698,11.068751519867192,spot_peer,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,185698,7.1744135038645,baseline,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,185698,4.2195371752767326,peer,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,185698,-0.158016558457203,relative_legacy,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,185698,13.750352374993504,spot_baseline,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,185699,79.90873060740036,spot_baseline,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,185699,58.21480639249023,peer,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,185699,74.61662427655287,baseline,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,185699,58.50753773594782,spot_peer,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,185699,0.1221685858449007,relative_legacy,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,187708,30.034901707551853,baseline,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,187708,20.59134233839059,peer,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,187708,58.68848128521847,spot_baseline,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,187708,43.29158326513803,spot_peer,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,187708,-0.0479675126852195,relative_legacy,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,188107,60.08092587355424,spot_peer,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,188107,33.86608712420347,peer,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,188107,48.098762886856605,baseline,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,188107,82.10298589546805,spot_baseline,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,188107,0.0759708045467775,relative_legacy,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,189585,-232.1928094887363,spot_baseline,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,189585,-159.90519934202018,peer,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,189585,-229.4646340313733,baseline,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,189585,-2.9155181111367408,relative_legacy,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,189585,-165.28449940134925,spot_peer,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,189588,28.350208553987837,spot_peer,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,189588,33.81407700869695,peer,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,189588,-0.2529564153053937,relative_legacy,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,189588,37.18393252864882,baseline,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,189869,0.0462640064520224,relative_legacy,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,189869,56.10165544309259,spot_peer,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,189869,42.45280674810228,peer,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,189869,57.92482503677865,baseline,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,190772,0.0735546016311125,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,190772,58.50753773594782,spot_peer,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,190772,46.428806336220326,peer,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,190772,62.88865806409842,baseline,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,190772,79.90873060740036,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191026,27.389742676827176,spot_peer,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191026,6.36218736270689,peer,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191026,9.60652308598015,baseline,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191026,-0.014927761435665,relative_legacy,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191026,36.51169161271433,spot_baseline,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191046,29.664840956533784,peer,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191046,56.10165544309259,spot_peer,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191046,76.55347463629771,spot_baseline,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191046,0.0434598522005839,relative_legacy,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191046,42.48671409007254,baseline,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191284,36.016550500924566,spot_peer,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191284,-0.1707191365211729,relative_legacy,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191284,38.17641652364986,peer,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191284,46.192010959773214,baseline,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191471,26.303440583379377,spot_baseline,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191471,17.940103227656174,baseline,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191471,12.905566472783812,peer,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191471,-0.296463324311021,relative_legacy,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191471,20.069928449828893,spot_peer,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191935,3.2576253983349264,spot_peer,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191935,2.749111817594654,baseline,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191935,2.856915219677092,spot_baseline,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191935,-0.6069999163899262,relative_legacy,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,191935,7.261488122946781,peer,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192049,81.1745713292,baseline,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192049,0.1769125332422365,relative_legacy,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192049,63.8007024674793,peer,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192049,62.014594805845896,spot_peer,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192418,33.956340028486466,peer,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192418,28.350208553987837,spot_peer,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192418,37.24025644120094,baseline,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192418,-0.2529564153053937,relative_legacy,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192472,-1.6671761641095364,relative_legacy,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192472,-68.9253502657168,peer,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192472,-105.53026626539022,baseline,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192472,-74.71876795094578,spot_peer,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192472,-105.88936890535685,spot_baseline,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192924,50.23847658295955,peer,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192924,65.26258600710243,baseline,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192924,0.0516961169176837,relative_legacy,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192924,54.01172020334919,spot_peer,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,192924,73.63884007034605,spot_baseline,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,193275,-0.4623248925090345,relative_legacy,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,193275,11.254442030532967,peer,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,193275,11.818379987532774,spot_peer,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,193275,12.297892319216912,baseline,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,193275,14.795788138710142,spot_baseline,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,195286,45.52098019256694,peer,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,195286,56.10165544309259,spot_peer,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,195286,61.308534892492894,baseline,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,195286,0.0510288253476988,relative_legacy,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,204737,0.0954119680918789,relative_legacy,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,204737,89.53026213333065,spot_baseline,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,204737,37.67274912168895,baseline,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,204737,65.406645442707,spot_peer,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,204737,26.023220119269197,peer,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,208405,-158.7403903691282,peer,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,208405,-227.61115846905687,baseline,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,208405,-2.899958534860786,relative_legacy,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,208405,-232.1928094887363,spot_baseline,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,208405,-165.28449940134925,spot_peer,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,215725,0.0961829604547954,relative_legacy,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,215725,72.92629595103013,baseline,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,215725,56.10165544309259,spot_peer,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,215725,57.59351559909226,peer,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,218666,42.22330006830476,spot_baseline,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,218666,-0.2307354373931116,relative_legacy,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,218666,40.336071501381845,baseline,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,218666,31.485244708677016,spot_peer,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,218666,34.08971548813744,peer,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,218945,-97.29837008344906,baseline,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,218945,-100.0,spot_baseline,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,218945,-1.5967568374360666,relative_legacy,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,218945,-64.42878814946991,peer,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,218945,-70.49580300057455,spot_peer,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,219886,0.0490094739066873,relative_legacy,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,219886,68.39724456239789,baseline,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,219886,54.8364072028497,peer,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,219886,71.11424495443494,spot_baseline,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,219886,52.20146228612588,spot_peer,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,220077,37.40123844883655,baseline,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,220077,28.350208553987837,spot_peer,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,220077,34.577846084626294,peer,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,220077,-0.2468567992483968,relative_legacy,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,221727,-228.58774477963084,peer,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,221727,-236.98938014892968,spot_peer,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,221727,-332.1928094887361,spot_baseline,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,221727,-3.85675666092884,relative_legacy,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,221727,-323.507082544246,baseline,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,222631,-4.291807060005223,peer,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,222631,-173.6965594166206,spot_baseline,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,222631,-0.0717911714497077,relative_legacy,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,222631,-123.3398330453322,spot_peer,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29780,"Before December 31, 2024, will Tech Crunch report new layoffs at Netflix?",2024-11-12 14:19:35.172839+00,222631,-6.079385763275932,baseline,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29946 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,182315,23.01789662102091,spot_peer,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,182315,-64.38561897747249,spot_baseline,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,182315,0.1498662213861178,relative_legacy,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,182315,20.81468751872105,peer,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,182315,-56.85955629751087,baseline,RyansAGI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,185690,-9.388413780330234,baseline,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,185690,0.3684480662261247,peer,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,185690,3.742423015004388,spot_peer,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,185690,-0.00864546408351,relative_legacy,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,185690,-91.26729482025245,spot_baseline,annabot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,185698,-0.0004763951929051,relative_legacy,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,185698,-100.0,spot_baseline,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,185698,-2.5193528201714046,spot_peer,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,185698,-27.415674983072595,baseline,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,185698,4.781263311797738,peer,RonanMcGovern,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,185699,37.17256090255224,peer,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,185699,-41.49160743622396,baseline,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,185699,38.03672522562416,spot_peer,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,185699,0.3754761911181694,relative_legacy,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,185699,-43.440282414577496,spot_baseline,MWG,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,187708,-75.1465163861321,spot_baseline,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,187708,15.30180796677204,spot_peer,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,187708,-39.50581354447336,baseline,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,187708,0.017370508970292,relative_legacy,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,187708,8.156437743495102,peer,twsummerbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,188107,20.7911949834252,peer,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,188107,-28.55136699080603,baseline,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,188107,0.1815488373210904,relative_legacy,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,188107,-48.06258409064208,spot_baseline,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,188107,34.72230932100861,spot_peer,Cassie,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,189585,-2.5193528201714046,spot_peer,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,189585,-100.0,spot_baseline,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,189585,-2.270208608087798,peer,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,189585,-0.1627838217127929,relative_legacy,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,189585,-98.801405054847,baseline,mf-bot-1,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,189588,-0.4789429807398623,relative_legacy,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,189588,-25.123007667490477,peer,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,189588,-129.86287504424996,baseline,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,189588,-132.19280948873626,spot_baseline,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,189588,-25.603168473365542,spot_peer,mf-bot-3,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,189869,16.341497882651495,spot_peer,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,189869,-73.69655941662059,spot_baseline,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,189869,-55.76110049178262,baseline,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,189869,12.605662833750117,peer,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,189869,0.0427282244992365,relative_legacy,VeritasAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,190772,-43.81498298141366,baseline,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,190772,0.190112427028684,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,190772,23.434208344907148,peer,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,190772,-55.63933485243855,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,190772,29.28940922272107,spot_peer,Jay_Bailey_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191026,-67.69355998372748,spot_baseline,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191026,20.64594146728544,spot_peer,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191026,4.657485046839385,peer,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191026,-11.940344309815409,baseline,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191026,0.0329373951407789,relative_legacy,manticAI,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191046,-96.203979877274,baseline,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191046,-30.67250752043048,peer,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191046,-55.36338286492906,spot_peer,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191046,-0.524590990167224,relative_legacy,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191046,-173.6965594166206,spot_baseline,archipelago,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191284,-55.36338286492906,spot_peer,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191284,-173.6965594166206,spot_baseline,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191284,-165.28467840618637,baseline,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191284,-52.81463295255029,peer,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191284,-0.8659231687507434,relative_legacy,000_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191471,3.843928302888756,peer,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191471,-60.67886811619957,baseline,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191471,-88.8968687611256,spot_baseline,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191471,-0.0610254373444741,relative_legacy,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191471,5.44213419391085,spot_peer,HSeldon,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191935,-47.39311883324123,spot_baseline,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191935,35.202348585474375,spot_peer,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191935,0.3602874802841946,relative_legacy,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191935,35.88282179754405,peer,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,191935,-46.68415906192734,baseline,pgodzinai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192049,-95.84817954732311,baseline,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192049,-2.0082644538622247,peer,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192049,-0.1647490257350548,relative_legacy,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192049,-100.0,spot_baseline,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192049,-2.5193528201714046,spot_peer,gnosis-ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192418,1.5379623336163173,spot_peer,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192418,-94.34164716336323,spot_baseline,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192418,-92.83701825423276,baseline,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192418,1.87768504146131,peer,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192418,-0.1071027284333728,relative_legacy,InstitutPelFutur,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192472,32.663654407773414,peer,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192472,-51.33609760951061,baseline,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192472,0.3167278440023848,relative_legacy,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192472,-51.45731728297583,spot_baseline,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192472,32.28811993374716,spot_peer,bestworldbot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192924,4.286275511346174,spot_peer,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192924,-90.5088352974533,spot_baseline,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192924,-0.0803818171609014,relative_legacy,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192924,4.1593856847667645,peer,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,192924,-80.35699424253042,baseline,acm_bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,193275,17.312744710696137,peer,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,193275,-60.29021201344642,baseline,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,193275,19.73354851951263,spot_peer,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,193275,-68.96598793878492,spot_baseline,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,193275,0.1013684746804864,relative_legacy,histerio,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,195286,-55.36338286492906,spot_peer,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,195286,-173.6965594166206,spot_baseline,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,195286,-0.7500202990686287,relative_legacy,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,195286,-139.24666061182342,baseline,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,195286,-44.446298428868765,peer,Unwrapped80T,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,204737,-3.757248638636171,peer,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,204737,-45.99263762568048,baseline,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,204737,-8.920256653077015,spot_peer,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,204737,-0.1252612623626679,relative_legacy,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,204737,-108.92673380970876,spot_baseline,SynapseSeer,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,208405,-2.5193528201714046,spot_peer,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,208405,-100.0,spot_baseline,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,208405,-97.98252884756413,baseline,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,208405,-2.102975576810622,peer,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,208405,-0.1626460965843112,relative_legacy,mf-bot-4,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,215725,-0.4715586041446474,relative_legacy,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,215725,-126.0262896852158,baseline,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,215725,-24.235155699916927,peer,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,215725,-132.19280948873626,spot_baseline,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,215725,-25.603168473365542,spot_peer,estr.ai,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,218666,-59.94620704162715,spot_baseline,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,218666,26.201171655512667,spot_peer,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,218666,-57.38898735938673,baseline,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,218666,25.79951319126457,peer,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,218666,0.2187025271192155,relative_legacy,GreeneiBot2,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,218945,-17.42237731874192,peer,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,218945,-118.52036206409664,baseline,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,218945,-121.75914350726268,spot_baseline,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,218945,-18.12172072374904,spot_peer,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,218945,-0.3744577600864335,relative_legacy,SeidrBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,219886,-131.0575587657458,spot_baseline,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,219886,-0.4395411806187942,relative_legacy,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,219886,-24.789138296259186,spot_peer,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,219886,-21.81820003888051,peer,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,219886,-116.0002868290249,baseline,SaraBase,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,220077,-99.12394575360749,baseline,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,220077,-0.1643940330375396,relative_legacy,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,220077,-2.400802202544913,peer,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,220077,-100.0,spot_baseline,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,220077,-2.5193528201714046,spot_peer,mmBot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,221727,-132.19280948873626,spot_baseline,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,221727,-25.603168473365542,spot_peer,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,221727,-0.476217248610632,relative_legacy,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,221727,-128.77219832972904,baseline,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,221727,-24.8163407057576,peer,mf-bot-5,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,222631,-3.195506029929451,baseline,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,222631,-0.4336620755309632,peer,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,222631,-0.0078382490590338,relative_legacy,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,222631,1.5379623336163173,spot_peer,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29781,Will the S&P 500 index go up in December 2024?,2024-11-12 14:19:35.339848+00,222631,-94.34164716336323,spot_baseline,Grizeu_Bot,True,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,2024-11-13 15:30:00+00,29947 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,182315,-0.9974880242777164,relative_legacy,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,182315,-191.45470847190103,baseline,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,182315,-56.14110308196956,spot_peer,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,182315,-218.44245711374276,spot_baseline,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,182315,-55.23158051550468,peer,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,185698,0.1657499927617681,relative_legacy,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,185698,26.303440583379377,spot_baseline,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,185698,120.28962301809835,spot_peer,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,185698,-14.17994651878618,baseline,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,185698,21.377696431441198,peer,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,185699,44.67655486559321,spot_peer,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,185699,-65.72657178350701,baseline,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,185699,-78.58751946471523,spot_baseline,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,185699,0.1811403020742323,relative_legacy,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,185699,32.70991187756221,peer,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,187708,-106.16225978606585,spot_peer,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,187708,-0.8140556544551,relative_legacy,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,187708,-48.23012990852356,peer,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,187708,-287.8321443411749,spot_baseline,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,187708,-118.1361550206865,baseline,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,188107,29.721091110489315,peer,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,188107,-25.035788531727466,baseline,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,188107,66.68115867255912,spot_peer,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,188107,0.2280523246054327,relative_legacy,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,188107,-48.062584090642034,spot_baseline,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,189585,-31.98235313572292,peer,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,189585,-0.6398394038804117,relative_legacy,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,189585,29.24087433329278,spot_peer,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,189585,-170.26981067650448,baseline,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,189585,-100.0,spot_baseline,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,189588,19.966179929436617,baseline,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,189588,-564.3856189774723,spot_baseline,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,189588,-305.522211453,spot_peer,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,189588,1.2564587877646831,relative_legacy,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,189588,109.60799362609718,peer,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,190772,13.55667959685495,peer,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,190772,-80.29419962047317,baseline,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,190772,-105.88936890535685,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,190772,24.99538690318624,spot_peer,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,190772,-0.0752350507028765,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191026,8.462609733543962,peer,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191026,-9.651234583597002,baseline,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191026,-55.52703922505629,spot_baseline,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191026,61.30023400049027,spot_peer,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191026,0.050507699029699,relative_legacy,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191046,-100.0,spot_baseline,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191046,-40.20145815859239,baseline,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191046,29.24087433329278,spot_peer,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191046,7.419291473466943,peer,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191046,-0.0431769863886368,relative_legacy,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191471,-25.153876699596427,spot_baseline,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191471,50.77763616382423,peer,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191471,-16.9322227001672,baseline,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191471,0.4682324037024642,relative_legacy,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191471,83.1954288484702,spot_peer,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191935,116.7896529973919,peer,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191935,33.34237337251918,spot_baseline,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191935,1.357853649407961,relative_legacy,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191935,32.19853297142554,baseline,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,191935,125.3638000917193,spot_peer,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192049,-66.05336178161937,spot_peer,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192049,-219.456684994189,baseline,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192049,-232.1928094887363,spot_baseline,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192049,-1.1822840047361465,relative_legacy,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192049,-70.54599283257103,peer,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192418,18.912520892589157,peer,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192418,-0.0112653744778041,relative_legacy,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192418,-81.82709914363093,baseline,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192418,29.24087433329278,spot_peer,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192472,-0.0608339170610956,peer,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192472,-119.4319854708466,baseline,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192472,-0.2415497620903634,relative_legacy,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192472,6.033944996614939,spot_peer,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192472,-132.19280948873626,spot_baseline,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192924,-223.53769562219136,baseline,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192924,-259.0744853315163,spot_baseline,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192924,-79.9883840583448,peer,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192924,-1.3419787961727463,relative_legacy,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,192924,-85.43163791353471,spot_peer,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,193275,-0.0476663718529034,relative_legacy,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,193275,-62.62263756326112,baseline,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,193275,11.885926301786713,peer,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,193275,-100.57823525940054,spot_baseline,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,193275,28.82404010794879,spot_peer,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,195286,29.24087433329278,spot_peer,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,195286,-95.62513616653504,baseline,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,195286,21.563169154034814,peer,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,195286,-100.0,spot_baseline,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,195286,0.067134347810802,relative_legacy,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,204737,80.18072501365195,spot_peer,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,204737,-11.685143187368416,baseline,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,204737,-29.335894269059175,spot_baseline,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,204737,27.72023865168121,peer,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,204737,0.2382726108470313,relative_legacy,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,208405,-173.6965594166206,spot_baseline,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,208405,-0.1167210825144915,peer,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,208405,-23.88499053837024,spot_peer,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,208405,-0.896756204925632,baseline,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,208405,-0.0037761594097524,relative_legacy,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,215725,-158.77670067457925,baseline,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,215725,-0.6165229000048796,relative_legacy,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,215725,-173.6965594166206,spot_baseline,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,215725,-28.10308027780692,peer,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,215725,-23.88499053837024,spot_peer,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,218666,-181.60371651574047,spot_baseline,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,218666,-0.7181282793325027,relative_legacy,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,218666,-175.9713252846902,baseline,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,218666,-37.10614208144726,peer,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,218666,-29.585047133849724,spot_peer,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,219886,-125.10302456201208,peer,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,219886,-138.14066855985357,spot_peer,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,219886,-332.1928094887361,spot_baseline,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,219886,-1.9611837598791608,relative_legacy,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,219886,-284.0492546660941,baseline,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,220077,-132.19280948873626,spot_baseline,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,220077,6.033944996614939,spot_peer,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,220077,-2.0589796701024405,peer,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,220077,-0.239343871178228,relative_legacy,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,220077,-129.50683039996682,baseline,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,221727,0.0531800283135641,peer,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,221727,-7.796122979358417e-05,relative_legacy,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,221727,-0.2081454295980842,baseline,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,221727,-100.0,spot_baseline,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,221727,29.24087433329278,spot_peer,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,222631,-22.933559417912047,baseline,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,222631,-83.65012677171204,spot_baseline,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,222631,7.96962400253377,peer,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,222631,41.02705760522112,spot_peer,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29828,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.401557+00,222631,0.0016265559117112,relative_legacy,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30003 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,182315,-4.925242731750728,spot_peer,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,182315,-5.789848179306315,peer,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,182315,-34.731401075489615,baseline,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,182315,-0.1499764007764686,relative_legacy,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,182315,-39.592867633113926,spot_baseline,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,185690,10.715219863491075,spot_baseline,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,185690,0.9650725026186172,baseline,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,185690,31.340502636189463,spot_peer,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,185690,0.024436915513104,relative_legacy,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,185690,3.0738261207136546,peer,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,185698,-5.335283077713055,baseline,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,185698,12.658695592818406,spot_peer,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,185698,0.0369282781340216,relative_legacy,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,185698,5.9334016624882535,peer,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,185698,-15.200309344505014,spot_baseline,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,185699,0.0,spot_baseline,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,185699,19.18704748197647,peer,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,185699,23.616189221232343,spot_peer,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,185699,0.1872993255801717,relative_legacy,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,185699,0.0,baseline,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,187708,-37.21430003783683,baseline,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,187708,-15.4474435575207,peer,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,187708,-0.2586373138895004,relative_legacy,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,187708,-40.46716927884462,spot_peer,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,187708,-88.8968687611256,spot_baseline,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,189585,0.4092598845545431,spot_peer,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,189585,-1.5562552846380646,peer,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,189585,-0.0792795446706809,relative_legacy,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,189585,-31.72383333144213,baseline,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,189588,-15.655706492411316,peer,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,189588,-13.47800494839584,spot_peer,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,189588,-50.55222079279653,baseline,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,189588,-0.2686267269694062,relative_legacy,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,190772,-12.029423371771196,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,190772,10.533366095751257,peer,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,190772,-9.131587257532,baseline,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,190772,0.0631477181061813,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,190772,14.944501891571027,spot_peer,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191026,4.635472453893787,peer,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191026,-0.1227821322631979,baseline,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191026,23.1069747611702,spot_peer,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191026,0.0303851722908565,relative_legacy,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191026,-0.7063857464236583,spot_baseline,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191046,-173.6965594166206,spot_baseline,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191046,-0.5897443034859129,relative_legacy,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191046,-39.5333207382626,peer,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191046,-101.596982428665,spot_peer,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191046,-70.01259746544955,baseline,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191471,23.99290997515152,baseline,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191471,0.3841173592696968,relative_legacy,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191471,49.28963732611102,spot_peer,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191471,33.13494366759021,peer,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191471,35.61438102252753,spot_baseline,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191935,-39.592867633113926,spot_baseline,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191935,-0.1506705903821,relative_legacy,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191935,-38.18245929032906,baseline,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191935,-6.859532145785036,peer,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,191935,-4.925242731750728,spot_peer,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192049,45.93865095600663,baseline,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192049,58.60930182983847,spot_peer,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192049,54.816121841881056,peer,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192049,0.68340533161687,relative_legacy,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192418,30.97825358110237,baseline,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192418,50.90207272585141,spot_peer,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192418,41.07594652523796,peer,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192418,0.4833424057925057,relative_legacy,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192472,-46.53830819376456,baseline,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192472,-13.47800494839584,spot_peer,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192472,-14.057972830914087,peer,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192472,-0.2561905584498854,relative_legacy,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192472,-51.45731728297583,spot_baseline,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192924,-149.81787345790892,spot_baseline,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192924,-84.38348082699733,spot_peer,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192924,-129.6873312617116,baseline,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192924,-75.66446156641497,peer,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,192924,-1.1041206903588707,relative_legacy,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,193275,0.0101601266493507,relative_legacy,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,193275,5.492441303816797,peer,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,193275,9.13293421854755,spot_peer,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,193275,-12.827610994704376,baseline,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,193275,-20.09126939259962,spot_baseline,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,195286,-73.69655941662059,spot_baseline,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,195286,-0.4771257632319604,relative_legacy,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,195286,-29.50967565043068,spot_peer,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,195286,-30.904163914649143,peer,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,195286,-70.5455092531307,baseline,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,204737,-36.55349350046126,peer,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,204737,-65.82315912104995,baseline,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,204737,-0.5483833369937406,relative_legacy,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,204737,-94.88497623035758,spot_peer,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,204737,-164.38561897747243,spot_baseline,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,208405,13.750352374993504,spot_baseline,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,208405,0.1878887114893277,peer,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,208405,33.52844792088213,spot_peer,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,208405,0.0017939846108803,relative_legacy,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,208405,0.0845462702693154,baseline,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,215725,34.62578997366673,baseline,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,215725,50.90207272585141,spot_peer,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,215725,0.558792677665021,relative_legacy,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,215725,45.78731218825639,peer,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,215725,37.85116232537298,spot_baseline,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,218666,22.40402742179301,spot_baseline,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,218666,39.76664919946001,spot_peer,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,218666,21.7559894101425,baseline,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,218666,37.6634951391162,peer,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,218666,0.4508700810380326,relative_legacy,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,219886,-9.295712266002296,peer,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,219886,-7.811233678852561,spot_peer,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,219886,-40.659933754240825,baseline,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,219886,-0.1869941889979742,relative_legacy,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,219886,-43.596333813339164,spot_baseline,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,220077,-32.19280948873623,spot_baseline,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,220077,-1.558177145461342,peer,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,220077,-31.63367465846701,baseline,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,220077,-0.0793061159868548,relative_legacy,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,220077,0.4092598845545431,spot_peer,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,221727,0.0644313400638834,peer,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,221727,0.0005420845208778,relative_legacy,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,221727,0.0234159752098936,baseline,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,221727,33.52844792088213,spot_peer,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,221727,13.750352374993504,spot_baseline,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,222631,-83.65012677171204,spot_baseline,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,222631,-22.59135624079601,baseline,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,222631,-0.1510403944338512,relative_legacy,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,222631,-36.68493428507364,spot_peer,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29829,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-13 14:25:34.431977+00,222631,-8.709606910447981,peer,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30004 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,182315,65.03249948692519,spot_peer,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,182315,47.688042289221954,peer,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,182315,0.6654992202633686,relative_legacy,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,182315,57.92990870567616,baseline,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,182315,65.99245584023782,spot_baseline,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,185690,-2.180437031834845,spot_baseline,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,185690,15.961195291075413,spot_peer,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,185690,-0.2009933202408407,baseline,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,185690,-0.0021333415085779,relative_legacy,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,185690,1.7010779916745613,peer,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,185698,-0.246064066602774,relative_legacy,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,185698,-50.11095523785723,baseline,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,185698,-28.791654234704325,peer,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,185698,-130.66985617589626,spot_peer,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,185698,-205.8893689053569,spot_baseline,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,185699,16.349873228287958,spot_baseline,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,185699,14.139108786318127,baseline,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,185699,0.2346916705851234,relative_legacy,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,185699,29.29943653784614,spot_peer,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,185699,15.630319637952136,peer,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,187708,-230.24277675247197,spot_peer,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,187708,-97.82379722613328,peer,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,187708,-1.1673259542400596,relative_legacy,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,187708,-146.9028000534104,baseline,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,187708,-344.22223286050746,spot_baseline,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,188107,-95.26942852216432,spot_baseline,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,188107,-50.062711455635736,baseline,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,188107,-27.974716816747836,peer,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,188107,-0.2362910790182784,relative_legacy,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,188107,-51.04488331671868,spot_peer,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,189585,31.942794212174974,peer,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,189585,0.4132159709768478,relative_legacy,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,189585,37.30658235738544,baseline,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,189585,44.77620821989681,spot_peer,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,189585,37.85116232537298,spot_baseline,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,189588,0.5893522470871695,baseline,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,189588,0.6070860057744996,peer,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,189588,0.0039790746349104,relative_legacy,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,189588,59.63668044412058,spot_peer,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,190772,63.7096006561921,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,190772,0.6128246276878679,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,190772,48.72854534895959,baseline,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,190772,41.757303143563554,peer,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,190772,64.15460290875237,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191026,17.38061403743173,spot_baseline,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191026,30.041370665351696,spot_peer,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191026,3.02116844565958,baseline,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191026,0.1078698034849795,relative_legacy,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191026,5.664797618223456,peer,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191046,-149.60324861219155,spot_peer,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191046,-0.6272715333266228,relative_legacy,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191046,-59.092575011355805,peer,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191046,-93.2871508929688,baseline,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191046,-232.19280948873623,spot_baseline,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191471,-112.02942337177116,spot_baseline,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191471,-48.04888294878345,peer,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191471,-75.57728793525693,baseline,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191471,-63.10883969200767,spot_peer,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191471,-0.5790976504868994,relative_legacy,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191935,32.94353513363186,spot_peer,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191935,19.28647882228869,peer,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191935,0.2599217210633675,relative_legacy,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191935,20.452108810710723,baseline,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,191935,21.412480535284736,spot_baseline,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192049,37.85116232537298,spot_baseline,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192049,30.78870599224429,peer,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192049,0.4184675643840379,relative_legacy,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192049,44.77620821989681,spot_peer,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192049,35.87262904264217,baseline,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192418,0.7298492493977821,relative_legacy,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192418,72.63439144319042,spot_peer,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192418,62.66567239572741,baseline,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192418,51.47983590717511,peer,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192472,64.15460290875237,spot_baseline,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192472,58.07598795244819,baseline,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192472,47.617482151465374,peer,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192472,0.6565795983094904,relative_legacy,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192472,63.7096006561921,spot_peer,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192924,-54.44998030218314,spot_peer,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192924,-0.7750140840803991,relative_legacy,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192924,-86.73452168399537,baseline,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192924,-58.5222722977216,peer,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,192924,-100.0,spot_baseline,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,193275,69.24271980897076,spot_baseline,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,193275,0.6487269927398678,relative_legacy,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,193275,48.57926626704701,baseline,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,193275,42.37071976726768,peer,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,193275,67.37206122777427,spot_peer,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,195286,45.62249555578759,peer,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,195286,59.63668044412058,spot_peer,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,195286,0.614126965256716,relative_legacy,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,195286,56.045749995924815,baseline,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,204737,-100.0,spot_baseline,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,204737,-54.44998030218314,spot_peer,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,204737,-0.0961739578071095,relative_legacy,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,204737,-20.550203898256964,peer,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,204737,-40.19359085184556,baseline,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,208405,-9.24324471607296e-06,relative_legacy,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,208405,0.1064623554758942,baseline,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,208405,0.1677578590842263,peer,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,208405,36.46408088456802,spot_peer,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,215725,-100.0,spot_baseline,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,215725,-62.71547096867481,peer,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,215725,-0.8434761380154658,relative_legacy,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,215725,-54.44998030218314,spot_peer,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,215725,-91.54392905450528,baseline,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,218666,57.294454703029686,baseline,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,218666,46.61972320936855,peer,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,218666,59.91323494537464,spot_peer,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,218666,0.6178655417828112,relative_legacy,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,218666,58.88045670155503,spot_baseline,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,219886,-129.37125877569264,spot_baseline,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,219886,-127.27026813458528,baseline,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,219886,-90.93137072637468,peer,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,219886,-1.2318302300748205,relative_legacy,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,219886,-75.59160878935363,spot_peer,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,220077,59.63668044412058,spot_peer,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,220077,0.6163380143027039,relative_legacy,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,220077,47.11503284460799,peer,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,220077,57.54795092769324,baseline,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,221727,-32.19280948873623,spot_baseline,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,221727,-5.641911111279819,spot_peer,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,221727,-0.0017379186716697,peer,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,221727,-0.0008806843360582,relative_legacy,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,221727,-0.0509434015343369,baseline,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,222631,18.39302903954957,peer,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,222631,0.3542318199920252,relative_legacy,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,222631,17.594161208665664,baseline,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,222631,63.7096006561921,spot_peer,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29830,"Will Dogecoin close at $0.420 a share before January 1, 2025?",2024-11-13 14:25:34.442223+00,222631,64.15460290875237,spot_baseline,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30005 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,182315,0.1039462097381292,relative_legacy,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,182315,70.19304084163349,baseline,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,182315,24.049220957620765,spot_peer,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,182315,23.680858282539177,peer,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,182315,79.90873060740036,spot_baseline,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,185690,-0.0060529560186445,relative_legacy,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,185690,5.575602963347375,baseline,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,185690,0.9994333623740412,peer,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,185690,59.7221268400312,spot_baseline,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,185690,9.557208918101184,spot_peer,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,185698,25.511341207926364,baseline,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,185698,7.150335590886741,peer,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,185698,79.90873060740036,spot_baseline,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,185698,24.049220957620765,spot_peer,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,185698,0.0144454894854827,relative_legacy,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,185699,-0.4315992371881047,relative_legacy,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,185699,18.903382439001685,spot_baseline,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,185699,-15.305612187826249,peer,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,185699,-19.74666716302557,spot_peer,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,185699,16.58624072676173,baseline,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,187708,-3.380085139305539,peer,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,187708,14.860215194418435,baseline,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,187708,33.799646351501586,spot_baseline,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,187708,-9.052602997919896,spot_peer,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,187708,-0.153139708204676,relative_legacy,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,189585,-6.144009806698701,spot_peer,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,189585,-19.885792863673903,peer,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,189585,-0.5080793924340736,relative_legacy,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,189585,13.873919333380575,baseline,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,189585,37.85116232537298,spot_baseline,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,189588,12.304212010687944,peer,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,189588,57.539961383254905,baseline,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,189588,8.677148998942474,spot_peer,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,189588,-0.0707507208582724,relative_legacy,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,190772,-0.6282027897283868,peer,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,190772,-0.2078632062381346,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,190772,32.227950393490225,baseline,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,190772,42.22330006830478,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,190772,-3.005241466111058,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191026,-10.239502219551568,spot_peer,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191026,32.14635871735251,spot_baseline,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191026,-0.0540309984906187,relative_legacy,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191026,-1.4617796144226824,peer,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191026,5.588066213279145,baseline,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191046,84.79969065549501,spot_baseline,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191046,0.0616062639654556,relative_legacy,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191046,27.56045309545919,spot_peer,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191046,11.677361401434826,peer,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191046,34.16178155131023,baseline,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191284,21.6404745191788,spot_peer,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191284,64.38084359428454,baseline,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191284,20.51454520132197,peer,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191284,0.065191609247681,relative_legacy,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191471,51.68729475316575,baseline,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191471,76.55347463629771,spot_baseline,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191471,21.6404745191788,spot_peer,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191471,0.0348300362388361,relative_legacy,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191471,15.991310011683742,peer,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191935,4.449156709344618,spot_peer,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191935,7.392157315234532,peer,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191935,-0.1331009246461398,relative_legacy,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191935,50.33080235849764,baseline,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191935,52.60688116675877,spot_baseline,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191975,8.076529150249096,baseline,jkraybill_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191975,0.0132513831788712,relative_legacy,jkraybill_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191975,79.68745831848912,spot_baseline,jkraybill_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191975,2.54504891810146,peer,jkraybill_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,191975,23.890369042168928,spot_peer,jkraybill_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192049,72.62867985037192,baseline,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192049,21.6404745191788,spot_peer,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192049,23.835039466524933,peer,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192049,0.0937626577113593,relative_legacy,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192418,-56.18097382721442,peer,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192418,-70.25878496305755,spot_peer,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192418,-0.9828919638409246,relative_legacy,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192418,-42.13048614956293,baseline,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192472,-15.674771709106532,peer,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192472,-19.74666716302557,spot_peer,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192472,18.903382439001685,spot_baseline,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192472,17.12964133682759,baseline,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192472,-0.4401597832872823,relative_legacy,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192924,23.085878452487595,peer,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192924,79.41038985597478,spot_baseline,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192924,69.05135950759495,baseline,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192924,23.6914609177117,spot_peer,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,192924,0.0968728198832291,relative_legacy,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,193275,20.469977031165943,peer,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,193275,83.83467365212307,spot_baseline,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,193275,0.0912900836498846,relative_legacy,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,193275,26.86766503698384,spot_peer,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,193275,59.07715221845638,baseline,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,195286,1.5314587377939266,spot_peer,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,195286,4.595852686550753,peer,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,195286,46.55464839174342,baseline,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,195286,-0.1717373726740047,relative_legacy,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,204737,0.0907499917734361,relative_legacy,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,204737,13.806349153661138,peer,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,204737,37.16169699040466,baseline,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,204737,32.72326154581439,spot_peer,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,204737,91.9912088677308,spot_baseline,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,208405,37.27966577632909,baseline,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,208405,-0.2708150140346522,relative_legacy,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,208405,15.361495831048062,spot_peer,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,208405,-2.4400680858878108,peer,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,215725,84.79969065549501,spot_baseline,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,215725,77.69112147032861,baseline,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,215725,0.1601921360533899,relative_legacy,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,215725,28.21431155656442,peer,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,215725,27.56045309545919,spot_peer,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,218666,-0.3396535158628044,relative_legacy,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,218666,-11.038058594790922,spot_peer,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,218666,30.274951390464384,baseline,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,218666,31.034012061215048,spot_baseline,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,218666,-7.518204830777188,peer,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,218945,8.952646666922673,peer,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,218945,-0.0836559972729029,relative_legacy,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,218945,46.89561108082464,baseline,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,218945,8.677148998942474,spot_peer,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,218945,58.496250072115615,spot_baseline,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,219886,-86.51662717102835,peer,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,219886,-90.18301670154408,spot_peer,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,219886,-79.21071483586674,spot_baseline,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,219886,-1.4168240591296477,relative_legacy,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,219886,-77.38628077870221,baseline,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,220077,48.54268271702416,spot_baseline,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,220077,47.82856409929386,baseline,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,220077,1.5314587377939266,spot_peer,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,220077,-0.1683915980909558,relative_legacy,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,220077,5.142081028659097,peer,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,221727,-6.144009806698701,spot_peer,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,221727,-0.0385601779811666,peer,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,221727,0.0737359875575433,baseline,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,221727,-0.0008825574070712,relative_legacy,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,222631,-64.38561897747248,spot_baseline,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,222631,-21.32671973984868,peer,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,222631,-0.3583163978161339,relative_legacy,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,222631,-79.54004425591802,spot_peer,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29831,"Will the Hudson Bay Mountain ski resort be listed as Open by On the Snow's Ski Report on December 8, 2024?",2024-11-13 14:25:34.451868+00,222631,-17.64915423962147,baseline,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30006 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,182315,12.08504233579112,baseline,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,182315,32.264243860544674,peer,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,182315,30.546465895617416,spot_peer,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,182315,0.2615055001884522,relative_legacy,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,182315,13.750352374993504,spot_baseline,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,185690,3.145314036980239,peer,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,185690,13.750352374993504,spot_baseline,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,185690,30.546465895617416,spot_peer,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,185690,0.0033114997770649,relative_legacy,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,185690,1.2960803400093208,baseline,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,185698,26.92142173944669,baseline,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,185698,75.5793698188428,spot_peer,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,185698,0.3264463064033065,relative_legacy,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,185698,28.202198172665017,peer,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,185699,-21.75914350726266,spot_baseline,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,185699,5.084424219178614,spot_peer,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,185699,9.764365108564675,peer,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,185699,-0.0505837825851967,relative_legacy,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,185699,-19.31605258079216,baseline,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,187708,-38.47250621807507,baseline,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,187708,-16.002381223294748,peer,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,187708,-85.20421186128986,spot_baseline,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,187708,-0.2737434434086148,relative_legacy,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,187708,-40.40878638429756,spot_peer,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,188107,-0.603739181567497,relative_legacy,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,188107,-74.1019042780184,spot_peer,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,188107,-36.97939582395769,peer,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,188107,-132.1928094887362,spot_baseline,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,188107,-70.3619496550234,baseline,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,189585,-70.79456301729455,baseline,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,189585,69.30785721714267,spot_peer,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,189585,-0.5313888069280613,relative_legacy,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,189585,-23.70495095686919,peer,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,189588,-51.01808862482432,spot_peer,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,189588,-100.0,spot_baseline,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,189588,94.0034336653002,peer,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,189588,1.0711642767826302,relative_legacy,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,189588,89.76241505354469,baseline,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,190772,54.51187676070122,baseline,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,190772,0.6385489029746222,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,190772,59.03399490480992,peer,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,190772,71.8622654161466,spot_peer,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,190772,71.36958148433591,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191026,-4.47017938306016,spot_peer,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191026,-35.08404343405205,spot_baseline,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191026,-0.1722064371141331,peer,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191026,-0.0427188117365826,relative_legacy,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191026,-6.098964137040987,baseline,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191046,-40.43716311703125,baseline,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191046,-0.3036519039952712,relative_legacy,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191046,-18.66781943618544,peer,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191046,-51.01808862482432,spot_peer,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191046,-100.0,spot_baseline,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191284,78.57808052986891,spot_peer,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191284,80.73549220576041,spot_baseline,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191284,71.3576123858467,peer,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191284,0.8081670594737772,relative_legacy,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191284,67.89684820061302,baseline,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191471,12.776113586083971,baseline,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191471,34.241439957901484,spot_peer,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191471,26.32713516918029,peer,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191471,18.903382439001717,spot_baseline,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191471,0.2038211332066835,relative_legacy,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191935,0.156619536133014,relative_legacy,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191935,0.0,spot_baseline,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191935,20.68679212275623,spot_peer,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191935,26.605513763225687,peer,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191935,0.0,baseline,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191975,46.06227722158482,spot_peer,jkraybill_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191975,35.38878362849074,spot_baseline,jkraybill_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191975,21.63505802798382,baseline,jkraybill_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191975,31.128146646556008,peer,jkraybill_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,191975,0.3012809785096988,relative_legacy,jkraybill_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192049,0.6129582387856246,relative_legacy,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192049,59.713427990863,peer,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192049,55.4942648766748,spot_peer,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192049,46.101801926558046,baseline,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192418,-81.89096807302148,baseline,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192418,-0.6945131838318854,relative_legacy,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192418,-37.91485573854868,peer,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192418,-51.01808862482432,spot_peer,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192472,-32.15723792200141,spot_peer,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192472,-73.69655941662059,spot_baseline,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192472,-0.5197152349820339,relative_legacy,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192472,-24.104243843293577,peer,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192472,-66.85531158114898,baseline,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192924,-137.9131271690517,baseline,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192924,-158.20799921880345,spot_baseline,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192924,-1.2400361796028516,relative_legacy,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192924,-76.86128212661693,peer,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,192924,-92.75606505021996,spot_peer,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,193275,15.648144964418812,baseline,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,193275,36.75157326820816,spot_peer,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,193275,29.47100433086825,peer,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,193275,22.40402742179301,spot_baseline,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,193275,0.2342683085439407,relative_legacy,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,195286,-43.46998297909073,peer,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,195286,-0.8028219595951478,relative_legacy,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,195286,-51.01808862482432,spot_peer,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,195286,-100.0,spot_baseline,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,195286,-96.01700284828742,baseline,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,204737,-40.36362839099728,baseline,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,204737,-52.26697633871424,spot_peer,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,204737,-101.74170530774094,spot_baseline,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,204737,-18.832291920899767,peer,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,204737,-0.3080126345308741,relative_legacy,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,208405,-2.397023530437881,spot_peer,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,208405,-137.28069771146053,peer,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,208405,-32.19280948873623,spot_baseline,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,208405,-2.0836456359505786,relative_legacy,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,208405,-225.3497455502699,baseline,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,215725,-29.51458650206161,baseline,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,215725,-0.1432056455005718,relative_legacy,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,215725,-32.19280948873623,spot_baseline,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,215725,-2.397023530437881,spot_peer,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,215725,3.3810977486281866,peer,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,218666,-17.399689604602486,spot_peer,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,218666,-53.11560570253625,spot_baseline,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,218666,-0.3499843238514592,relative_legacy,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,218666,-10.242278851158716,peer,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,218666,-51.94019324372013,baseline,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,218945,-53.47053546082476,baseline,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,218945,-66.65762662748085,spot_baseline,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,218945,-17.856824401572293,peer,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,218945,-0.4156988594094682,relative_legacy,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,218945,-27.109979559646412,spot_peer,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,219886,19.956887779306577,baseline,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,219886,20.93909774674277,spot_baseline,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,219886,40.80384213467457,peer,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,219886,0.3515090973131097,relative_legacy,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,219886,35.70114719167746,spot_peer,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,220077,-67.56418392569897,peer,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,220077,-74.10190427801845,spot_peer,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,220077,-1.1274470967363812,relative_legacy,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,220077,-132.19280948873626,spot_baseline,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,220077,-130.45248908482134,baseline,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,221727,-0.1440496319760907,baseline,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,221727,-0.0458638616872335,peer,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,221727,-16.210615870905748,spot_peer,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,221727,-0.0005472964775052,relative_legacy,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,222631,40.05379295837285,spot_baseline,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,222631,0.1138102133656694,relative_legacy,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,222631,14.497929318740889,peer,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,222631,49.407316598440296,spot_peer,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29832,"Will Apple stock continuously remain below its all-time high before January 1, 2025?",2024-11-13 14:25:34.4617+00,222631,10.783441871691956,baseline,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30007 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,182315,84.79969065549501,spot_baseline,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,182315,30.37596220644759,peer,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,182315,74.5851822109018,baseline,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,182315,0.1668069458134188,relative_legacy,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,182315,34.03928631891296,spot_peer,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,185690,8.283655379715468,spot_peer,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,185690,4.6628819203129925,baseline,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,185690,-0.004864652495517,relative_legacy,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,185690,0.7739941640934151,peer,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,185690,48.92346345320175,spot_baseline,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,185698,-51.45731728297583,spot_baseline,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,185698,-63.7799517396038,spot_peer,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,185698,-0.530876615929493,relative_legacy,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,185698,-32.922148172414154,peer,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,185698,-32.74768883284426,baseline,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,185699,-5.409511496308759,peer,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,185699,25.78049081244881,baseline,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,185699,-6.243350747342976,spot_peer,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,185699,-0.3271679723911969,relative_legacy,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,185699,28.688114778816157,spot_baseline,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,187708,88.90840985981492,spot_baseline,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,187708,41.30831348623592,baseline,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,187708,0.1237919702569703,relative_legacy,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,187708,17.017241200816013,peer,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,187708,36.98894584867792,spot_peer,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,188107,-0.0422872104974236,relative_legacy,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,188107,12.828436437718734,spot_peer,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,188107,29.94847066397586,baseline,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,188107,6.653898712852074,peer,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,188107,55.25410230287789,spot_baseline,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,189585,-0.0502842853404025,relative_legacy,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,189585,21.84032905450182,spot_peer,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,189585,57.83184637491346,baseline,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,189585,15.70687382740925,peer,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,189588,28.11930774263256,spot_peer,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,189588,28.661415931272675,peer,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,189588,75.29460045979029,baseline,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,189588,0.1259701503377929,relative_legacy,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,190772,-32.19280948873623,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,190772,-49.94991464634967,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,190772,-24.60578098657541,baseline,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,190772,-38.7717602981817,peer,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,190772,-0.7503614491350619,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191026,9.34149937539694,baseline,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191026,2.087221350919346,peer,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191026,-0.0014725624481241,relative_legacy,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191026,11.737564549909075,spot_peer,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191026,53.73457564915135,spot_baseline,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191046,0.0659944355951533,relative_legacy,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191046,30.87179254526145,baseline,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191046,11.30609413712896,peer,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191046,28.11930774263256,spot_peer,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191284,28.11930774263256,spot_peer,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191284,23.78249037505695,peer,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191284,0.0881150719315645,relative_legacy,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191284,64.37821174958509,baseline,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191471,84.79969065549501,spot_baseline,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191471,34.03928631891296,spot_peer,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191471,57.468818715200655,baseline,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191471,22.843541742802984,peer,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191471,0.1292772486302285,relative_legacy,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191935,-0.3154581689895237,relative_legacy,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191935,29.928910865906342,baseline,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191935,-4.559225371337159,spot_peer,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191935,-3.841919058491932,peer,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,191935,31.034012061215048,spot_baseline,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192049,-7.955314163718357,spot_peer,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192049,25.026320177512467,baseline,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192049,-0.3560176807211383,relative_legacy,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192049,-6.92135427573994,peer,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192418,0.0939282273340362,peer,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192418,31.002358200557133,baseline,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192418,0.3348234167550727,spot_peer,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192418,-0.230795179731109,relative_legacy,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192472,64.15460290875237,spot_baseline,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192472,19.2181275132718,spot_peer,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192472,18.0919751793544,peer,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192472,-0.005927872640672,relative_legacy,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192472,58.267354845937845,baseline,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192924,31.86422407194391,peer,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192924,0.1879504712694295,relative_legacy,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192924,76.50121281437646,baseline,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192924,35.97738831545749,spot_peer,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,192924,87.49936389329673,spot_baseline,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,193275,81.0648747782646,spot_baseline,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,193275,58.403273138683886,baseline,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,193275,22.33708247313886,peer,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,193275,31.358052898871165,spot_peer,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,193275,0.1054290781978743,relative_legacy,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,195286,68.59010088169724,baseline,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,195286,24.39777821564744,spot_peer,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,195286,24.550743085808083,peer,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,195286,0.0731048940966676,relative_legacy,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,195286,71.36958148433588,spot_baseline,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,204737,6.111902577335465,peer,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,204737,15.155982222396243,spot_peer,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,204737,23.853663620795206,baseline,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,204737,-0.0072450404321206,relative_legacy,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,208405,22.039085946148056,peer,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,208405,0.035935742771166,relative_legacy,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,208405,-7.955314163718357,spot_peer,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,208405,65.98729128764893,baseline,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,215725,37.85116232537298,spot_baseline,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,215725,0.3348234167550727,spot_peer,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,215725,0.8484246452345973,peer,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,215725,-0.244824512422027,relative_legacy,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,215725,34.73192141598236,baseline,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,218666,-28.105030146029623,peer,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,218666,-28.509161388687307,spot_peer,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,218666,-0.647666859048405,relative_legacy,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,218666,-2.280536577572684,baseline,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,218666,-2.326977932284703,spot_baseline,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,218945,0.0841677592751301,relative_legacy,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,218945,28.11930774263256,spot_peer,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,218945,61.44721318032644,baseline,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,218945,22.587335552085754,peer,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,219886,-2.9635210548414794,relative_legacy,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,219886,-207.7993269144883,spot_peer,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,219886,-236.49737509945248,baseline,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,219886,-197.2287133952977,peer,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,219886,-252.06866466189035,spot_baseline,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,220077,15.155982222396243,spot_peer,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,220077,57.82653600248476,baseline,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,220077,15.615409208407046,peer,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,220077,-0.0515691226388441,relative_legacy,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,221727,0.3348234167550727,spot_peer,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,221727,-0.0004415050448051,relative_legacy,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,221727,0.1052133995239807,baseline,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,221727,0.0009306955917023,peer,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,222631,-15.200309344504996,spot_baseline,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,222631,-10.14933846871714,peer,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,222631,-0.194519443372673,relative_legacy,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,222631,-37.75095738193853,spot_peer,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29833,Will Chris Stapleton win an award in any of these 2024 CMA Awards categories?,2024-11-13 14:25:34.622714+00,222631,-4.049578338236952,baseline,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30008 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,182315,65.99245584023782,spot_baseline,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,182315,7.957720602458472,spot_peer,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,182315,-0.0131698340711724,relative_legacy,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,182315,5.661197410506857,peer,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,182315,58.08252241690505,baseline,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,185690,7.20654197092329,baseline,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,185690,1.392973189376324,peer,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,185690,-4.850403989948229e-05,relative_legacy,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,185690,14.289127248464684,spot_peer,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,185690,74.81176932855675,spot_baseline,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,185698,0.026983232460167,relative_legacy,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,185698,15.539501733442584,spot_peer,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,185698,5.655764349444712,peer,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,185698,26.952744889974667,baseline,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,185699,-5.838734259488283,peer,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,185699,44.3149496165229,baseline,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,185699,-4.569514047942304,spot_peer,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,185699,48.54268271702416,spot_baseline,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,185699,-0.1759306575127296,relative_legacy,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,187708,27.059299655572964,spot_peer,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,187708,92.5999418556223,spot_baseline,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,187708,0.1175359390625111,relative_legacy,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,187708,12.94606837761683,peer,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,187708,43.89623319701264,baseline,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,188107,7.927439475721331,peer,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,188107,41.29702496366408,baseline,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,188107,75.13208871432761,spot_baseline,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,188107,0.0416421719773628,relative_legacy,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,188107,14.51908531613066,spot_peer,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,189585,15.539501733442584,spot_peer,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,189585,14.391257443627609,peer,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,189585,75.51639553971992,baseline,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,189585,0.0813568045487061,relative_legacy,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,189588,0.149974667390228,relative_legacy,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,189588,19.24753991125549,peer,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,189588,82.31798527544127,baseline,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,189588,2.5761762132062405,spot_peer,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,190772,-18.82315675653297,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,190772,-0.292810785480925,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,190772,28.688114778816157,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,190772,-15.246912368352724,peer,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,190772,21.940354292853826,baseline,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191026,7.113229287408929,baseline,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191026,-1.6846205440780482,peer,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191026,-0.0521411427561298,relative_legacy,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191026,-10.04518157372111,spot_peer,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191026,40.91536841426766,spot_baseline,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191046,2.5761762132062405,spot_peer,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191046,-0.0375390940235273,relative_legacy,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191046,58.496250072115615,spot_baseline,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191046,1.2849479685496097,peer,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191046,23.49395630782287,baseline,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191284,-5.067400373973542,peer,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191284,40.82158107702471,baseline,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191284,-4.569514047942304,spot_peer,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191284,48.54268271702416,spot_baseline,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191284,-0.156374016349674,relative_legacy,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191471,-62.52972065553965,spot_peer,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191471,-0.6729291085615197,relative_legacy,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191471,-32.19280948873623,spot_baseline,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191471,-21.836236874457107,baseline,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191471,-43.04811267246772,peer,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191935,12.3846814143409,peer,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191935,72.27937032675844,baseline,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191935,74.84612330040356,spot_baseline,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191935,0.0634489749695299,relative_legacy,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,191935,14.313790048574432,spot_peer,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192049,21.459480309722984,spot_peer,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192049,19.09764412388785,peer,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192049,0.158359249831736,relative_legacy,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192049,80.8048693050779,baseline,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192418,0.0768861983741441,relative_legacy,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192418,11.806374146885052,peer,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192418,62.71396646002873,baseline,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192418,15.539501733442584,spot_peer,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192472,15.539501733442584,spot_peer,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192472,0.0797817924681578,relative_legacy,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192472,12.72968708950184,peer,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192472,69.6044593753694,baseline,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192924,4.83558414737079,peer,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192924,56.69492257501975,baseline,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192924,-0.0239998128925496,relative_legacy,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192924,64.70842126289537,spot_baseline,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,192924,7.035909050181119,spot_peer,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,193275,60.40713236688608,spot_baseline,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,193275,-0.0479313784280111,relative_legacy,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,193275,3.948003269458376,spot_peer,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,193275,2.3655222862008776,peer,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,193275,44.3759283722348,baseline,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,195286,56.27222830712824,baseline,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,195286,0.8141248790774761,peer,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,195286,2.5761762132062405,spot_peer,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,195286,-0.0937699325240865,relative_legacy,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,204737,-111.20866797027658,spot_peer,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,204737,-100.0,spot_baseline,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,204737,-0.6879547220529644,relative_legacy,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,204737,-40.99721119442472,baseline,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,204737,-45.51314859427314,peer,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,208405,74.98999726953694,baseline,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,208405,13.953147776636705,peer,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,208405,0.0806510962956503,relative_legacy,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,208405,21.459480309722984,spot_peer,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,215725,15.539501733442584,spot_peer,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,215725,76.55347463629771,spot_baseline,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,215725,0.0797817924681578,relative_legacy,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,215725,70.29346539400436,baseline,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,215725,12.847808045927794,peer,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,218666,81.35722220705019,baseline,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,218666,18.54463505772472,peer,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,218666,0.1415562317725164,relative_legacy,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,218666,20.069238918179828,spot_peer,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,218666,82.8631581688019,spot_baseline,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,218945,9.26052304531184,spot_peer,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,218945,0.00636759824914,relative_legacy,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,218945,67.80719051126377,spot_baseline,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,218945,54.45788655945066,baseline,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,218945,6.5543544758284735,peer,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,219886,22.36793000565864,peer,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,219886,82.38098013517777,baseline,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,219886,0.2135608788545325,relative_legacy,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,219886,91.39521091619632,spot_baseline,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,219886,26.194420378219498,spot_peer,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,220077,-73.69655941662063,spot_baseline,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,220077,-92.32536387375984,spot_peer,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,220077,-94.80238444330412,peer,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,220077,-1.4007889837780223,relative_legacy,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,220077,-72.90782665861161,baseline,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,221727,0.0,relative_legacy,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,221727,0.0432753238304464,peer,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,221727,0.2131906454955379,baseline,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,221727,15.539501733442584,spot_peer,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,222631,15.539501733442584,spot_peer,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,222631,0.0184086261163116,relative_legacy,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,222631,4.349356356967214,peer,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29834,"Will Nebraska have 1.5 million or more residents living in drought on December 31, 2024?",2024-11-13 14:25:34.633419+00,222631,21.013632918076805,baseline,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30009 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,182315,-0.3226353969075478,relative_legacy,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,182315,-34.86935889558723,baseline,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,182315,-39.18543542478405,spot_peer,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,182315,-39.592867633113926,spot_baseline,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,182315,-33.26759896979953,peer,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,185690,2.490142707835563,peer,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,185690,49.40571323136817,spot_baseline,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,185690,4.812766500442124,baseline,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,185690,0.0118396221809294,relative_legacy,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,185690,24.70686266812701,spot_peer,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,185698,13.336754564679566,baseline,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,185698,37.85116232537298,spot_baseline,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,185698,0.0494302397512544,relative_legacy,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,185698,6.588193349845199,peer,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,185698,16.41182241417414,spot_peer,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,185699,67.80719051126377,spot_baseline,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,185699,36.17821300246683,peer,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,185699,37.9173280519209,spot_peer,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,185699,62.634789818720186,baseline,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,185699,0.6340571025516235,relative_legacy,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,187708,-13.844090454014244,baseline,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,187708,-13.850411834947511,peer,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,187708,-31.315466487784963,spot_peer,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,187708,-28.63041851566409,spot_baseline,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,187708,-0.1904110007715028,relative_legacy,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,188107,3.713724768896845,spot_peer,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,188107,3.640948261086942,peer,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,188107,11.170877760812605,baseline,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,188107,0.0589285477269219,relative_legacy,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,188107,20.163386116965043,spot_baseline,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,189585,8.12168483370071,spot_peer,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,189585,22.6909553064253,peer,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,189585,47.58038480293919,baseline,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,189585,0.4462950838714096,relative_legacy,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,189588,0.3441165714514935,relative_legacy,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,189588,16.41182241417414,spot_peer,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,189588,37.22600137727819,baseline,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,189588,15.181050600180306,peer,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,190772,0.5341570105639649,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,190772,67.80719051126377,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,190772,37.9173280519209,spot_peer,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,190772,51.915029503569045,baseline,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,190772,31.60162154800379,peer,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191026,16.052800331628575,spot_peer,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191026,37.35106361552376,spot_baseline,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191026,0.002324163395381,relative_legacy,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191026,3.007797774914511,peer,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191026,6.493797807330795,baseline,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191046,-63.66855886715076,spot_peer,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191046,-24.744240775097904,peer,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191046,-29.741600913562674,baseline,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191046,-73.69655941662059,spot_baseline,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191046,-0.3679395008626658,relative_legacy,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191284,-82.55186296366749,spot_peer,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191284,-68.01134394244761,peer,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191284,-84.09289706939902,baseline,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191284,-100.0,spot_baseline,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191284,-0.8011185018507495,relative_legacy,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191471,-41.53773374820969,peer,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191471,-50.08600291955635,baseline,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191471,-0.5141443615534343,relative_legacy,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191471,-63.66855886715076,spot_peer,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191471,-73.69655941662059,spot_baseline,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191935,0.6013329217279119,relative_legacy,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191935,64.15460290875237,spot_baseline,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191935,35.29512651069086,spot_peer,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191935,61.67162674946614,baseline,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,191935,33.93967618907774,peer,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192049,23.024442681047542,peer,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192049,0.4524160339049334,relative_legacy,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192049,46.30324231754423,baseline,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192049,24.08729095866676,spot_peer,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192418,-47.70295274218472,spot_peer,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192418,-0.3874634891845507,relative_legacy,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192418,-42.163042041127056,baseline,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192418,-37.182486808804704,peer,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192472,-78.58751946471523,spot_baseline,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192472,-71.52075419595678,baseline,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192472,-67.17979100498918,spot_peer,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192472,-0.7002699372890665,relative_legacy,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192472,-60.92825603966219,peer,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192924,-23.020162672163657,baseline,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192924,-26.188071121742333,spot_baseline,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192924,-24.608015322019,peer,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192924,-0.2035129850743316,relative_legacy,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,192924,-29.562099341667132,spot_peer,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,193275,-8.194175904592566,baseline,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,193275,-9.936344549151269,spot_peer,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,193275,-0.0730076942270034,relative_legacy,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,193275,-11.74567906168211,peer,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,193275,1.1495638837829438,spot_baseline,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,195286,0.720700893559374,relative_legacy,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,195286,73.74641473358082,baseline,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,195286,42.68604328041695,peer,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,195286,44.19630674005163,spot_peer,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,204737,31.2329812198153,spot_peer,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,204737,14.002507923085355,peer,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,204737,24.118832427603596,baseline,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,204737,0.1705642941499649,relative_legacy,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,208405,0.6365758151887554,relative_legacy,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,208405,36.63287449959845,peer,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,208405,66.22119848268937,baseline,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,208405,31.2329812198153,spot_peer,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,215725,16.090360672627693,peer,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,215725,34.77876084888692,baseline,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,215725,16.41182241417414,spot_peer,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,215725,37.85116232537298,spot_baseline,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,215725,0.3584769344904553,relative_legacy,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,218666,32.87700666814535,spot_peer,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,218666,0.5697983893547165,relative_legacy,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,218666,60.7862902831235,spot_baseline,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,218666,31.75471806749981,peer,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,218666,59.79653158852304,baseline,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,218945,-80.0877357986399,spot_baseline,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,218945,-53.0476116830173,peer,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,218945,-0.6135241614233538,relative_legacy,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,218945,-64.35461864743851,baseline,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,218945,-68.25679996715367,spot_peer,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,219886,34.43740332857326,spot_baseline,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,219886,13.73089179597604,peer,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,219886,13.961076511011864,spot_peer,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,219886,31.802386211222476,baseline,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,219886,0.3258839148287659,relative_legacy,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,220077,22.90939482079229,peer,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,220077,48.54268271702416,spot_baseline,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,220077,0.449347679386659,relative_legacy,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,220077,24.08729095866676,spot_peer,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,220077,48.0565236009748,baseline,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,221727,0.0010560984273371,relative_legacy,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,221727,0.2112125659871492,baseline,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,221727,44.19630674005163,spot_peer,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,221727,0.1216642814643588,peer,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,222631,0.1276355980956757,relative_legacy,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,222631,12.651881423343047,peer,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,222631,44.19630674005163,spot_peer,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29835,"Will the Crimean Bridge be hit with an attack before January 1, 2025?",2024-11-13 14:25:34.647271+00,222631,21.06862125157919,baseline,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30010 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,182315,-0.1364919056727566,relative_legacy,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,182315,1.3820594938886208,spot_peer,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,182315,-94.34164716336323,spot_baseline,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,182315,-83.14716280125646,baseline,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,182315,-6.080038016997663,peer,RyansAGI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,185690,4.74721922874993,peer,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,185690,-1.4470066867140785,baseline,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,185690,0.016368786781632,relative_legacy,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,185690,-14.678677305079162,spot_baseline,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,185690,58.57229969448661,spot_peer,annabot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,185698,36.60234838456026,peer,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,185698,67.80719051126377,spot_baseline,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,185698,21.10114971570982,baseline,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,185698,117.78910521860143,spot_peer,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,185698,0.4791780653712388,relative_legacy,RonanMcGovern,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,185699,-0.0307647238510203,relative_legacy,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,185699,-83.65012677171204,spot_baseline,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,185699,1.523774520767733,peer,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,185699,9.057528038381252,spot_peer,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,185699,-78.05199220589586,baseline,MWG,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,187708,-53.65597961976422,baseline,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,187708,-108.31412353002456,spot_baseline,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,187708,-8.648815340781423,spot_peer,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,187708,-0.1250962057031865,relative_legacy,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,187708,-7.996815204210829,peer,twsummerbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,188107,-84.39923203813784,baseline,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,188107,-26.3388196171366,peer,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,188107,-151.45731728297582,spot_baseline,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,188107,-0.3775248322999047,relative_legacy,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,188107,-39.62141927635565,spot_peer,Cassie,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,189585,-0.5100955714137531,relative_legacy,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,189585,-130.54087227217173,baseline,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,189585,-33.3922774407369,peer,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,189585,-132.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,189585,-25.79138218310153,spot_peer,mf-bot-1,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,189588,30.18772024801905,baseline,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,189588,1.0930944921911716,relative_legacy,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,189588,84.42460507088798,peer,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,189588,-336.063653372622,spot_peer,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,189588,-564.3856189774725,spot_baseline,mf-bot-3,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,190772,36.63594632231754,peer,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,190772,0.4673726874535487,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,190772,55.8702729974836,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,190772,-18.442457113742744,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,190772,-14.130930304493749,baseline,Jay_Bailey_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191026,75.20220261179848,spot_peer,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191026,11.286740931805015,peer,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191026,0.1085701087839502,relative_legacy,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191026,8.485895010078782,spot_baseline,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191026,1.4754026106755305,baseline,manticAI,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191046,-0.3770501913060629,relative_legacy,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191046,-173.6965594166206,spot_baseline,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191046,-69.95303336885685,baseline,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191046,-55.5870254013217,spot_peer,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191046,-25.60553226840252,peer,archipelago,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191284,-132.19280948873623,spot_baseline,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191284,-0.4533592568575466,relative_legacy,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191284,-111.16335116617972,baseline,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191284,-25.79138218310153,spot_peer,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191284,-29.13348930306672,peer,000_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191471,-0.0353613499583129,relative_legacy,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191471,-60.471284341269794,baseline,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191471,-1.836931285304581,peer,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191471,5.290879177826353,spot_peer,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191471,-88.8968687611256,spot_baseline,HSeldon,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191935,-0.4842904466989582,relative_legacy,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191935,-132.19280948873623,spot_baseline,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191935,-127.8313653533545,baseline,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191935,-32.221830008472075,peer,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,191935,-25.79138218310153,spot_peer,pgodzinai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192049,-171.343647839448,peer,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192049,-2.393911139296921,relative_legacy,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192049,-169.3718695848045,spot_peer,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192049,-317.2783335152943,baseline,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192049,-332.1928094887362,spot_baseline,gnosis-ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192418,58.1978187821611,spot_peer,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192418,-12.457219101321195,baseline,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192418,41.06809661441013,peer,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192418,0.5135308011110999,relative_legacy,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192418,-15.200309344504996,spot_baseline,InstitutPelFutur,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192472,-9.73676782538846,peer,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192472,-91.11015897106242,baseline,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192472,-0.1863612898356285,relative_legacy,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192472,-100.0,spot_baseline,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192472,-2.6800857969869463,spot_peer,bestworldbot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192924,32.16882442449582,spot_peer,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192924,0.2413535150778353,relative_legacy,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192924,-45.33803315503052,baseline,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192924,-51.45731728297583,spot_baseline,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,192924,21.386536617110337,peer,acm_bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,193275,-0.7558891068209327,relative_legacy,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,193275,-195.45570292388328,spot_baseline,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,193275,-136.18279392824152,baseline,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,193275,-52.5514155864599,peer,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,193275,-71.20796755240357,spot_peer,histerio,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,195286,-102.8537259562059,peer,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,195286,-1.4498491239019995,relative_legacy,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,195286,-97.581625883953,spot_peer,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,195286,-232.19280948873623,spot_baseline,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,195286,-224.3316646196748,baseline,Unwrapped80T,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,204737,-151.45731728297585,spot_baseline,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,204737,-39.62141927635568,spot_peer,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,204737,-0.292373497611293,relative_legacy,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,204737,-62.71245290721254,baseline,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,204737,-19.651942767378653,peer,SynapseSeer,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,208405,37.85116232537298,spot_baseline,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,208405,1.2637026278106982,relative_legacy,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,208405,96.75420253888804,peer,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,208405,96.28359958085468,spot_peer,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,208405,47.503028938810175,baseline,mf-bot-4,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,215725,34.80086331274316,baseline,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,215725,82.58455801464201,peer,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,215725,96.28359958085468,spot_peer,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,215725,37.85116232537298,spot_baseline,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,215725,1.079701716828509,relative_legacy,estr.ai,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,218666,-63.50107523348085,baseline,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,218666,-64.38561897747248,spot_baseline,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,218666,15.71516624465326,peer,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,218666,0.1583025845874149,relative_legacy,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,218666,22.887565131635373,spot_peer,GreeneiBot2,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,218945,61.60875047394037,peer,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,218945,0.800419352426939,relative_legacy,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,218945,84.48222986254284,spot_peer,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,218945,17.219720910606426,baseline,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,218945,21.412480535284736,spot_baseline,SeidrBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,219886,-8.865355589642801,spot_baseline,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,219886,-7.5736141604192015,baseline,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,219886,46.94093263993722,peer,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,219886,0.5937263531404047,relative_legacy,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,219886,62.74569752111291,spot_peer,SaraBase,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,220077,-25.79138218310153,spot_peer,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,220077,-33.437116921508945,peer,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,220077,-131.000744421265,baseline,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,220077,-132.19280948873623,spot_baseline,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,220077,-0.5105526359409388,relative_legacy,mmBot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,221727,96.28359958085468,spot_peer,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,221727,0.1081054483114653,baseline,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,221727,0.0020990953128281,relative_legacy,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,221727,0.3308861144812931,peer,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,222631,51.05212852101255,spot_peer,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,222631,0.1020427581111573,relative_legacy,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,222631,-8.246571287383757,baseline,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,222631,10.570586323566165,peer,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29836,Will China's youth unemployment rate be less than or equal to 17.0 for November 2024?,2024-11-13 14:25:34.660727+00,222631,-25.15387669959645,spot_baseline,Grizeu_Bot,True,yes,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30011 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,182315,-22.644640926926545,peer,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,182315,-47.39311883324123,spot_baseline,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,182315,-41.80089193876798,baseline,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,182315,-24.0751492429186,spot_peer,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,182315,-0.2406545079065912,relative_legacy,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,185690,-4.486938505183283,baseline,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,185690,-0.020270175024889,relative_legacy,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,185690,-45.00844463780446,spot_baseline,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,185690,-2.131634463902651,peer,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,185690,-22.365221454862333,spot_peer,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,185698,-44.98916602782988,baseline,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,185698,-28.39449729691428,peer,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,185698,-100.0,spot_baseline,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,185698,-0.3782622537681321,relative_legacy,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,185698,-61.79685064856439,spot_peer,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,185699,0.2514993788274945,relative_legacy,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,185699,7.943329699722429,baseline,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,185699,13.827503026310938,peer,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,185699,15.935848180806774,spot_peer,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,185699,8.406426478847456,spot_baseline,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,187708,0.1717310453425147,relative_legacy,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,187708,7.399507841070649,baseline,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,187708,20.330433867996454,spot_peer,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,187708,10.404123288497,peer,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,187708,14.535138557261984,spot_baseline,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,188107,-0.0216249511572026,relative_legacy,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,188107,-4.115167111801971,peer,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,188107,-23.44652536370232,spot_baseline,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,188107,-13.200928226216543,baseline,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,188107,-6.904272952477808,spot_peer,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,189585,-72.81107518790144,baseline,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,189585,-45.515492685782256,peer,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,189585,-73.69655941662059,spot_baseline,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,189585,-42.93599994574148,spot_peer,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,189585,-0.5532670988238724,relative_legacy,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,189588,35.34818904146216,peer,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,189588,37.27781656230075,baseline,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,189588,37.049160905998,spot_peer,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,189588,0.549131971769407,relative_legacy,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,190772,27.822894780268413,peer,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,190772,0.4401968520750302,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,190772,37.85116232537298,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,190772,29.023044998174814,baseline,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,190772,37.049160905998,spot_peer,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191026,4.08982467943067,spot_baseline,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191026,0.0295909828576076,relative_legacy,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191026,12.84063400818704,spot_peer,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191026,2.396340485194256,peer,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191026,0.7111060282778785,baseline,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191046,-40.339050610032345,baseline,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191046,-24.61753935755108,peer,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191046,-100.0,spot_baseline,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191046,-61.79685064856439,spot_peer,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191046,-0.3199014426895836,relative_legacy,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191284,-27.070838968084843,baseline,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191284,-32.19280948873623,spot_baseline,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191284,-0.1030290464188981,relative_legacy,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191284,-12.290054626247256,peer,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191284,-13.17578555417794,spot_peer,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191471,-23.25225691253659,peer,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191471,-0.2805564040586678,relative_legacy,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191471,-40.81932637543432,baseline,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191471,-33.07632617288031,spot_peer,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191471,-59.94620704162715,spot_baseline,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191935,15.935848180806774,spot_peer,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191935,13.962990063686645,peer,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191935,8.129177905071964,baseline,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191935,0.2485737929638288,relative_legacy,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191935,8.406426478847456,spot_baseline,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191975,-20.01212199886236,baseline,jkraybill_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191975,-41.119543298444974,spot_baseline,jkraybill_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191975,-9.468833946863262,peer,jkraybill_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191975,-19.576689387083544,spot_peer,jkraybill_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,191975,-0.1005025758473457,relative_legacy,jkraybill_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192049,-0.7850744397155336,relative_legacy,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192049,-95.61922223728013,baseline,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192049,-61.7097008944512,peer,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192049,-61.79685064856439,spot_peer,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192049,-100.0,spot_baseline,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192418,29.666034538390317,peer,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192418,31.032047381787088,baseline,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192418,37.049160905998,spot_peer,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192418,0.4712222363975741,relative_legacy,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192472,0.414734271950022,relative_legacy,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192472,25.34289367350141,peer,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192472,28.76888080183905,spot_peer,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192472,23.990813703920796,baseline,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192472,26.303440583379377,spot_baseline,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192924,-58.6405917590825,spot_baseline,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192924,-0.3407718744106226,relative_legacy,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192924,-51.80116533822,baseline,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192924,-29.897603573114026,peer,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,192924,-32.140136291509485,spot_peer,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,193275,35.38878362849074,spot_baseline,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,193275,35.28351519784475,spot_peer,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,193275,18.401606090711,peer,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,193275,16.161106710108154,baseline,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,193275,0.3121175904300824,relative_legacy,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,195286,58.52909519340261,spot_peer,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,195286,0.8224612516577489,relative_legacy,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,195286,55.89095694874619,peer,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,195286,65.51043050969442,baseline,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,204737,1.1893732093956662,baseline,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,204737,5.347024723874711,peer,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,204737,11.956577750345112,spot_peer,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,204737,2.856915219677092,spot_baseline,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,204737,0.0950135881742521,relative_legacy,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,208405,-97.47728334874226,baseline,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,208405,-63.367080900628,peer,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,208405,-0.7970724471378103,relative_legacy,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,208405,-32.19280948873623,spot_baseline,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,208405,-13.17578555417794,spot_peer,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,215725,-73.69655941662059,spot_baseline,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,215725,-41.39351084955842,peer,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,215725,-0.5039384373649147,relative_legacy,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,215725,-42.93599994574148,spot_peer,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,215725,-67.80894421728827,baseline,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,218666,42.5709466532513,peer,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,218666,0.6461527913214986,relative_legacy,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,218666,47.71592111866412,spot_baseline,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,218666,44.122674434763866,spot_peer,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,218666,47.161304443398976,baseline,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,218945,-26.98937789464581,spot_peer,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,218945,-22.90171679646705,peer,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,218945,-0.2518976657719852,relative_legacy,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,218945,-51.45731728297583,spot_baseline,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,218945,-41.407313255164354,baseline,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,219886,65.09299541628198,spot_baseline,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,219886,0.7250068270907655,relative_legacy,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,219886,55.88048735795858,baseline,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,219886,48.00212731125977,peer,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,219886,56.58288483728922,spot_peer,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,220077,58.52909519340261,spot_peer,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,220077,67.30132146229937,baseline,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,220077,0.8447302158507944,relative_legacy,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,220077,57.16221267717241,peer,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,221727,-0.0877621060431024,peer,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,221727,-26.98937789464581,spot_peer,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,221727,-0.1724352066132565,baseline,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,221727,-0.0005611779692108,relative_legacy,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,222631,13.750352374993504,spot_baseline,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,222631,19.767703871877373,spot_peer,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,222631,5.641649146460925,peer,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,222631,0.083023089505939,relative_legacy,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29837,Will China's youth unemployment rate be greater than 17.0 and less than or equal to 18.0 for November 2024?,2024-11-13 14:25:34.673789+00,222631,3.628538992340197,baseline,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30012 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,182315,-0.1518405654998751,relative_legacy,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,182315,-13.415924095653704,baseline,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,182315,-18.898784094755644,spot_peer,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,182315,-15.200309344505014,spot_baseline,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,182315,-19.12954043324001,peer,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,185690,17.043786850810765,spot_baseline,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,185690,0.0147900078227479,relative_legacy,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,185690,4.221806630230701,spot_peer,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,185690,0.5402402288200238,peer,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,185690,1.7198713322722932,baseline,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,185698,-147.39311883324118,spot_baseline,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,185698,-47.44532667256972,baseline,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,185698,-36.55072925851584,peer,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,185698,-0.4488544125383796,relative_legacy,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,185698,-113.68748049553028,spot_peer,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,185699,0.565818765976338,relative_legacy,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,185699,34.837117071754705,peer,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,185699,63.311232139408766,baseline,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,185699,39.32039135662731,spot_peer,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,185699,65.99245584023782,spot_baseline,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,187708,10.7787894334216,peer,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,187708,40.92551466848375,spot_baseline,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,187708,21.26442797583149,baseline,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,187708,21.34617108235488,spot_peer,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,187708,0.2018182856018455,relative_legacy,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,188107,-37.54444697334748,baseline,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,188107,-55.25028962970961,spot_peer,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,188107,-0.3889088520247335,relative_legacy,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,188107,-32.21427267396257,peer,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,188107,-65.89630821649325,spot_baseline,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,189585,0.2939880040922535,relative_legacy,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,189585,37.22126290510269,baseline,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,189585,10.861430296807915,spot_peer,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,189585,15.516872863844847,peer,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,189588,0.2956501206086222,relative_legacy,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,189588,19.141710400966847,spot_peer,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,189588,37.27993583496423,baseline,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,189588,15.521304951167576,peer,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,190772,78.24085649273731,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,190772,35.87316445415684,peer,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,190772,48.10309243798794,spot_peer,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,190772,0.5873087331826435,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,190772,60.03742327777931,baseline,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191026,-0.185816460648954,baseline,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191026,-1.3296002486544187,peer,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191026,-0.003487073382029,relative_legacy,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191026,-1.0686539151860708,spot_baseline,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191026,-8.765697421503504,spot_peer,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191046,-44.89682839967697,spot_peer,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191046,-20.649464753837176,baseline,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191046,-17.79144408796821,peer,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191046,-0.1735559124795764,relative_legacy,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191046,-51.45731728297583,spot_baseline,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191284,-15.200309344505014,spot_baseline,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191284,-18.898784094755644,spot_peer,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191284,-0.1297037173981388,relative_legacy,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191284,-17.832595907047114,peer,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191284,-12.781659053672293,baseline,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191471,13.750352374993504,spot_baseline,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191471,9.370534055615764,baseline,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191471,1.8602533668462256,spot_peer,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191471,0.0771913640707253,relative_legacy,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191471,0.2298104707329646,peer,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191935,32.484457318124186,peer,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191935,0.5319740886697828,relative_legacy,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191935,36.66772612076479,spot_peer,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191935,60.24432656205883,baseline,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191935,62.29303509201767,spot_baseline,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191975,86.71057295026547,spot_baseline,jkraybill_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191975,28.87990913235457,peer,jkraybill_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191975,0.4537116472562595,relative_legacy,jkraybill_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191975,46.71760295475182,baseline,jkraybill_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,191975,54.17629252351672,spot_peer,jkraybill_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192049,0.5831315944870704,relative_legacy,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192049,40.62164468837146,spot_peer,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192049,64.93270295291858,baseline,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192049,36.05361560069301,peer,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192418,-12.464091080598196,baseline,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192418,-15.200309344505014,spot_baseline,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192418,-0.1297037173981388,relative_legacy,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192418,-17.229616280184416,peer,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192418,-18.898784094755644,spot_peer,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192472,-19.866067942121827,baseline,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192472,-24.573664174677635,peer,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192472,-23.601788309592592,spot_peer,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192472,-21.75914350726266,spot_baseline,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192472,-0.2354173374840599,relative_legacy,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192924,-26.7775455739519,spot_peer,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192924,-26.188071121742333,spot_baseline,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192924,-26.285832554506197,peer,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192924,-0.2512734012718193,relative_legacy,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,192924,-23.18614053220354,baseline,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,193275,27.34330559428769,baseline,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,193275,0.261220460430261,relative_legacy,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,193275,12.098798294398138,peer,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,193275,25.019276784793835,spot_peer,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,193275,46.04804700400107,spot_baseline,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,195286,0.0,baseline,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,195286,-11.486781866807858,peer,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,195286,-0.0698433318699648,relative_legacy,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,195286,-7.999420406014978,spot_peer,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,195286,0.0,spot_baseline,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,204737,-24.81078615956908,spot_baseline,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,204737,-0.0732210920681338,relative_legacy,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,204737,-25.78996503427121,spot_peer,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,204737,-10.617294041514398,peer,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,204737,-10.3807836748835,baseline,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,208405,36.95613056074979,peer,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,208405,0.5896576251049677,relative_legacy,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,208405,40.62164468837146,spot_peer,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,208405,66.54447280099494,baseline,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,215725,62.43191356600689,baseline,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,215725,67.80719051126377,spot_baseline,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,215725,40.62164468837146,spot_peer,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,215725,35.06942129110867,peer,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,215725,0.5824623042287446,relative_legacy,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,218666,36.93607458735582,spot_peer,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,218666,33.931498442778604,peer,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,218666,62.072154644054976,baseline,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,218666,0.5424141484032656,relative_legacy,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,218666,62.66727526059934,spot_baseline,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,218945,-100.0,spot_baseline,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,218945,-66.28341452154169,peer,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,218945,-80.52029648257626,baseline,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,218945,-0.8125133407192596,relative_legacy,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,218945,-79.70430115359552,spot_peer,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,219886,31.30307015640516,peer,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,219886,56.320777456723725,baseline,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,219886,37.31994251730427,spot_peer,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,219886,0.5401652292378465,relative_legacy,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,219886,63.20261947419584,spot_baseline,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,220077,-79.70430115359552,spot_peer,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,220077,-84.59534211473029,peer,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,220077,-99.39854543987248,baseline,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,220077,-1.0688108846805182,relative_legacy,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,220077,-100.0,spot_baseline,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,221727,46.8931572900716,spot_peer,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,221727,0.1678876212562354,peer,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,221727,0.0017842565541167,relative_legacy,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,221727,0.2748350990453982,baseline,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,222631,10.583094520634395,baseline,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,222631,0.1196699233583044,relative_legacy,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,222631,5.678040271583829,peer,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29838,Will China's youth unemployment rate be greater than 18.0 and less than or equal to 19.0 for November 2024?,2024-11-13 14:25:35.116964+00,222631,19.141710400966847,spot_peer,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30013 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,182315,0.0087860043925268,relative_legacy,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,182315,29.45101401147094,baseline,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,182315,8.184552562928397,spot_peer,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,182315,7.435295068496527,peer,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,182315,33.34237337251918,spot_baseline,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,185690,-2.376235325761003,peer,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,185690,-24.63593829978205,spot_peer,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,185690,-1.2620266712559578,baseline,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,185690,-0.0310156464595156,relative_legacy,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,185690,-12.374828813717702,spot_baseline,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,185698,-23.356719761116707,baseline,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,185698,-0.3059938961901632,relative_legacy,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,185698,-21.91590593456209,peer,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,185698,-21.75914350726266,spot_baseline,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,185698,-31.3729606879328,spot_peer,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,185699,74.84612330040356,spot_baseline,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,185699,72.66740378480776,baseline,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,185699,37.98019578114857,spot_peer,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,185699,0.3839381049506933,relative_legacy,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,185699,36.353757336674015,peer,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,187708,44.14649644240835,baseline,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,187708,0.3004043967528735,relative_legacy,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,187708,82.70060096389767,spot_baseline,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,187708,43.61894443719995,spot_peer,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,187708,23.82112275971907,peer,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,188107,-22.109070911788343,peer,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,188107,-38.86331492296552,spot_peer,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,188107,-32.19280948873623,spot_baseline,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,188107,-0.3414884413110921,relative_legacy,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,188107,-18.58876721339922,baseline,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,189585,17.575985959088758,peer,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,189585,47.96744525581767,baseline,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,189585,0.124774114292281,relative_legacy,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,189585,19.09689168463184,spot_peer,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,189588,0.5126019304311935,relative_legacy,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,189588,87.97057662822883,spot_baseline,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,189588,47.40227280959884,spot_peer,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,189588,86.58335531767513,baseline,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,189588,45.98592055957685,peer,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,190772,11.65500834178104,peer,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,190772,14.56019148072684,spot_peer,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,190772,0.0882049465762385,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,190772,42.22330006830476,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,190772,32.422277612265674,baseline,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191026,14.346660613261166,spot_baseline,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191026,2.4946756931356275,baseline,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191026,-5.452515919656666,spot_peer,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191026,-0.0037641726329455,relative_legacy,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191026,-0.7234420938210755,peer,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191046,19.53454355235696,baseline,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191046,8.177439672371824,peer,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191046,19.09689168463184,spot_peer,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191046,0.1021370192887511,relative_legacy,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191046,48.54268271702416,spot_baseline,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191284,33.5671905883904,peer,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191284,76.55347463629771,spot_baseline,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191284,64.37083267595435,baseline,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191284,0.3775435374329091,relative_legacy,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191284,39.20590746601671,spot_peer,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191471,-21.95632589504462,baseline,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191471,-0.4193321026047018,relative_legacy,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191471,-38.86331492296552,spot_peer,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191471,-32.19280948873623,spot_baseline,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191471,-26.21069132187404,peer,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191935,45.12588604229711,spot_peer,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191935,84.79969065549501,spot_baseline,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191935,82.01189188105592,baseline,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191935,0.4802015327352227,relative_legacy,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,191935,43.30776775047696,peer,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192049,-68.65895814118566,spot_peer,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192049,-70.65263504707112,baseline,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192049,-73.69655941662059,spot_baseline,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192049,-1.0401178342348232,relative_legacy,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192049,-67.68664927481376,peer,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192418,-87.54226223770242,spot_peer,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192418,-82.01406737030656,baseline,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192418,-1.0741848381414305,relative_legacy,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192418,-72.14796480261961,peer,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192472,-1.5114098018828364,relative_legacy,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192472,-102.51065492420064,peer,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192472,-110.65355862381702,spot_peer,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192472,-132.19280948873626,spot_baseline,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192472,-120.8165272347361,baseline,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192924,-74.70085718895689,spot_peer,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192924,-66.95900157471826,peer,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192924,-1.0163888808302477,relative_legacy,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192924,-72.86690180581637,baseline,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,192924,-82.11260418302045,spot_baseline,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,193275,23.112942716169428,peer,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,193275,33.05631221578785,spot_peer,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,193275,0.246465015127043,relative_legacy,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,193275,48.6246049449967,baseline,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,193275,67.98741477466231,spot_baseline,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,195286,32.92692877788596,spot_peer,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,195286,0.3159529459058023,relative_legacy,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,195286,65.50816076368561,baseline,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,195286,31.305931749069625,peer,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,204737,-0.0920484373187675,relative_legacy,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,204737,-6.099143414735653,peer,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,204737,-15.545082546788368,spot_peer,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,204737,0.1212394797153158,baseline,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,204737,0.2882508533121365,spot_baseline,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,208405,75.03195346737647,baseline,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,208405,32.92692877788596,spot_peer,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,208405,0.3997518605349087,relative_legacy,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,208405,37.69220910631165,peer,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,215725,24.32134157394129,peer,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,215725,53.9013929847934,baseline,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,215725,58.496250072115615,spot_baseline,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,215725,26.24258194578039,spot_peer,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,215725,0.2306779941098792,relative_legacy,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,218666,76.89253355637511,spot_baseline,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,218666,38.20142199779526,peer,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,218666,76.37422916111618,baseline,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,218666,39.449318691029774,spot_peer,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,218666,0.4055076390111233,relative_legacy,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,218945,-58.6405917590825,spot_baseline,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,218945,-57.8502422683177,spot_peer,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,218945,-56.08671313948442,baseline,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,218945,-57.90756236090671,peer,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,218945,-0.9086575467331032,relative_legacy,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,219886,43.68314582632768,spot_peer,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,219886,0.4421784219817338,relative_legacy,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,219886,72.56273335126309,baseline,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,219886,82.79003009217206,spot_baseline,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,219886,38.85382560058655,peer,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,220077,48.54268271702416,spot_baseline,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,220077,17.46538070958516,peer,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,220077,0.1239200901887663,relative_legacy,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,220077,48.31984821570906,baseline,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,220077,19.09689168463184,spot_peer,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,221727,0.0933876265086568,peer,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,221727,0.0003431863163371,relative_legacy,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,221727,26.24258194578039,spot_peer,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,221727,0.2104857056032477,baseline,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,222631,7.720392823257926,peer,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,222631,26.24258194578039,spot_peer,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,222631,0.09121017545087,relative_legacy,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29839,Will China's youth unemployment rate be greater than 19.0 for November 2024?,2024-11-13 14:25:35.131557+00,222631,16.341693264591424,baseline,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,0.4644,2024-11-14 15:30:00+00,30014 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,182315,49.99907125220168,baseline,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,182315,-0.1167630930195005,relative_legacy,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,182315,56.55971758542251,spot_baseline,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,182315,-3.220722474846023,spot_peer,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,182315,-4.868020189007846,peer,RyansAGI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,185690,-0.008414802696261,relative_legacy,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,185690,-2.1485881447675337,spot_peer,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,185690,-0.4373437869407995,peer,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,185690,5.977671295150768,baseline,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,185690,58.05314381551871,spot_baseline,annabot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,185698,12.529918065022583,baseline,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,185698,-7.361599324938954,peer,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,185698,-0.1127242327242575,relative_legacy,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,185698,-28.453009607255886,spot_peer,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,185698,21.412480535284764,spot_baseline,RonanMcGovern,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,185699,15.895588308408026,spot_peer,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,185699,81.84330367153525,baseline,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,185699,83.18772411916731,spot_baseline,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,185699,13.897270028946574,peer,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,185699,0.1258071461167653,relative_legacy,MWG,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,187708,7.714035824736738,peer,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,187708,16.360034954738484,spot_peer,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,187708,83.83467365212307,spot_baseline,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,187708,0.0875388078659573,relative_legacy,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,187708,45.90971459097728,baseline,twsummerbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,188107,32.25351042917031,baseline,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,188107,-4.158026867980375,spot_peer,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,188107,-0.0701453916940505,relative_legacy,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,188107,55.25410230287789,spot_baseline,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,188107,-3.7832718255967297,peer,Cassie,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,189585,0.1403866769252747,relative_legacy,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,189585,11.132844436933455,spot_peer,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,189585,83.65312764057853,baseline,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,189585,15.006977565134966,peer,mf-bot-1,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,189588,11.132844436933455,spot_peer,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,189588,-60.89212468305026,peer,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,189588,-20.369614857289957,baseline,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,189588,-0.8968829434317387,relative_legacy,mf-bot-3,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,190772,65.54454869721124,baseline,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,190772,0.1151181915277122,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,190772,83.18772411916731,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,190772,15.895588308408026,spot_peer,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,190772,10.81675161183428,peer,Jay_Bailey_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191026,0.1359417127221845,peer,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191026,11.363903902444749,baseline,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191026,-0.0026434398600315,relative_legacy,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191026,3.090083109936552,spot_peer,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191026,65.35033488863097,spot_baseline,manticAI,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191046,0.0016288368230735,relative_legacy,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191046,27.22428086434843,baseline,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191046,0.961189648002012,peer,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191046,4.853865748802713,spot_peer,archipelago,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191284,22.65264235906384,spot_peer,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191284,17.289591891526783,peer,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191284,77.86310419141132,baseline,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191284,0.1968568770884029,relative_legacy,000_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191471,12.906307898210583,baseline,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191471,-22.30439084151244,peer,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191471,-0.3307605328102985,relative_legacy,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191471,-30.2542972452709,spot_peer,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191471,18.903382439001717,spot_baseline,HSeldon,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191935,91.07326619029126,spot_baseline,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191935,21.55663817840108,spot_peer,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191935,87.67220115778143,baseline,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191935,0.2017068134450108,relative_legacy,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,191935,19.103052834824982,peer,pgodzinai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192049,65.07584072773875,baseline,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192049,2.7687331661107377,peer,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192049,4.853865748802713,spot_peer,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192049,-0.021766352200636,relative_legacy,gnosis-ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192418,0.0628565931168245,relative_legacy,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192418,7.311152175044127,peer,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192418,62.79699366330809,baseline,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192418,11.132844436933455,spot_peer,InstitutPelFutur,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192472,26.303440583379377,spot_baseline,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192472,-24.941777469417477,spot_peer,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192472,24.062947586263192,baseline,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192472,-0.3996415832881277,relative_legacy,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192472,-25.08661103886769,peer,bestworldbot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192924,10.936863672499673,peer,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192924,0.099863713626207,relative_legacy,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192924,72.089798562166,baseline,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192924,14.37158959317204,spot_peer,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,192924,81.0648747782646,spot_baseline,acm_bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,193275,41.96680012852143,baseline,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,193275,-0.1256748395694795,relative_legacy,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,193275,-5.914723969434317,spot_peer,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,193275,-6.612050470159506,peer,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,193275,52.80711645787357,spot_baseline,histerio,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,195286,-15.200309344505014,spot_baseline,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,195286,-14.51963365209864,baseline,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,195286,-54.737420687637645,spot_peer,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,195286,-55.02210827491199,peer,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,195286,-0.8139782630322024,relative_legacy,Unwrapped80T,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,204737,10.370491795970873,peer,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,204737,41.663245405853054,baseline,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,204737,0.1297379768749075,relative_legacy,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,204737,26.9242344929475,spot_peer,SynapseSeer,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,208405,13.79511996896821,peer,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,208405,-115.6153252667857,spot_peer,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,208405,81.52030754398268,baseline,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,208405,0.1247909027952332,relative_legacy,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,208405,-100.0,spot_baseline,mf-bot-4,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,215725,22.65264235906384,spot_peer,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,215725,85.38544165869452,baseline,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,215725,0.2075370353586887,relative_legacy,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,215725,19.17802135559902,peer,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,218666,81.55754288625727,spot_baseline,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,218666,12.738482503805102,peer,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,218666,14.72527722853635,spot_peer,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,218666,81.15540873218197,baseline,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,218666,0.1095406989965549,relative_legacy,GreeneiBot2,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,218945,-4.73434444636285,peer,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,218945,-1.830481083302885,spot_peer,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,218945,58.496250072115615,spot_baseline,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,218945,-0.1275332187478167,relative_legacy,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,218945,56.024953156384576,baseline,SeidrBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,219886,11.470698581149207,peer,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,219886,81.55754288625727,spot_baseline,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,219886,14.72527722853635,spot_peer,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,219886,0.1042449385106394,relative_legacy,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,219886,73.66763429682094,baseline,SaraBase,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,220077,15.116388431783337,peer,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,220077,84.70208344079767,baseline,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,220077,84.79969065549501,spot_baseline,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,220077,17.052823013213857,spot_peer,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,220077,0.1418023167539184,relative_legacy,mmBot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,221727,0.2839685808638396,baseline,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,221727,11.132844436933455,spot_peer,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,221727,2.4791207256167978e-05,relative_legacy,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,221727,0.0426542039450103,peer,mf-bot-5,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,222631,2.448447908745321,peer,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,222631,21.24934539172516,baseline,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,222631,0.0262655589103912,relative_legacy,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29840,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-13 14:25:35.142706+00,222631,11.132844436933455,spot_peer,Grizeu_Bot,True,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,2024-11-14 15:30:00+00,30015 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,182315,-25.21627085710279,spot_peer,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,182315,-0.4475510992418332,relative_legacy,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,182315,25.206784894309685,baseline,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,182315,28.688114778816157,spot_baseline,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,182315,-21.21802407405806,peer,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,185690,-0.9253297386542872,peer,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,185690,50.23306017160115,spot_baseline,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,185690,-0.0254851027970837,relative_legacy,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,185690,4.640334654853278,baseline,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,185690,-9.767493456074943,spot_peer,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,185698,58.496250072115615,spot_baseline,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,185698,3.4517937575692725,peer,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,185698,27.439918370402115,baseline,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,185698,-3.842382991964939,spot_peer,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,185698,0.0001552484968231,relative_legacy,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,185699,23.82789615985522,spot_peer,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,185699,17.945850577114687,peer,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,185699,0.0949576660539985,relative_legacy,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,185699,97.08536543404836,spot_baseline,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,185699,78.91730646116824,baseline,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,187708,32.724898985988524,baseline,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,187708,5.6404296141547725,spot_peer,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,187708,2.494182285526608,peer,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,187708,71.72102990195957,spot_baseline,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,187708,-0.0277850165143349,relative_legacy,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,188107,11.114295850563446,spot_peer,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,188107,6.097605403751367,peer,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,188107,0.006903486618864,relative_legacy,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,188107,43.08390964845774,baseline,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,188107,79.35491225325737,spot_baseline,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,189585,-0.2913970352958095,relative_legacy,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,189585,47.871448471157606,baseline,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,189585,-10.979576594063367,spot_peer,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,189585,-8.58196538271172,peer,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,189588,-0.1934640133101102,relative_legacy,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,189588,-1.4338949571805064,peer,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,189588,-3.842382991964939,spot_peer,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,189588,57.555638306795785,baseline,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,190710,81.55754288625727,spot_baseline,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,190710,12.693689519265693,spot_peer,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,190710,0.0341548635412898,relative_legacy,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,190710,80.80683385350233,baseline,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,190710,15.169902353628368,peer,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,190772,-10.979576594063367,spot_peer,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,190772,-0.240076229764852,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,190772,48.54268271702416,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,190772,-7.883043158998237,peer,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,190772,37.671501970947205,baseline,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191026,0.0034102980541028,relative_legacy,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191026,19.00756227235116,baseline,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191026,80.31177696101929,spot_baseline,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191026,11.80041454817982,spot_peer,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191026,2.662468070998191,peer,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191046,84.79969065549501,spot_baseline,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191046,15.018467710857966,spot_peer,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191046,0.0229378309162044,relative_legacy,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191046,29.4861450668534,baseline,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191046,5.0584327627742764,peer,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191284,16.923762141193663,peer,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191284,15.018467710857966,spot_peer,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191284,81.50835172532412,baseline,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191284,84.79969065549501,spot_baseline,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191284,0.0637191985293544,relative_legacy,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191471,12.908928157421418,peer,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191471,89.53026213333065,spot_baseline,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191471,60.63609084803696,baseline,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191471,18.41051834771908,spot_peer,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191471,0.0685033530765841,relative_legacy,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191935,0.0088391352951729,relative_legacy,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191935,13.003437725252688,peer,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191935,76.32365435610882,baseline,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191935,11.51141064095989,spot_peer,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,191935,79.90873060740036,spot_baseline,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192049,20.611628531920964,spot_peer,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192049,87.88916045345566,baseline,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192049,21.563702674778423,peer,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192049,0.1280085126603438,relative_legacy,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192418,9.10552834810465,spot_peer,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192418,64.61356260855642,baseline,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192418,8.724176729759538,peer,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192418,-0.0250547001525968,relative_legacy,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192472,-0.1562108081556208,relative_legacy,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192472,-1.1199028212021676,spot_peer,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192472,1.2686549681925663,peer,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192472,61.120532340243145,baseline,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192472,62.29303509201767,spot_baseline,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192924,0.0445459806227015,relative_legacy,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192924,73.82676191670447,baseline,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192924,14.293811184727144,peer,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,192924,15.018467710857966,spot_peer,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,193275,16.728395498914235,spot_peer,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,193275,14.04294472009954,peer,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,193275,87.18436485093177,spot_baseline,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,193275,68.79325801426413,baseline,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,193275,0.0600208602386528,relative_legacy,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,195286,81.9510980376237,baseline,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,195286,19.61856087373058,peer,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,195286,20.611628531920964,spot_peer,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,195286,0.1152366621905264,relative_legacy,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,204737,31.039048267098185,baseline,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,204737,-0.0057355191768369,relative_legacy,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,204737,3.561891095385108,peer,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,204737,9.10552834810465,spot_peer,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,208405,-24.44746638114669,peer,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,208405,25.7969986618765,baseline,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,208405,-26.926198645159054,spot_peer,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,208405,-0.5092939512099911,relative_legacy,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,215725,4.717611241030765,peer,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,215725,39.58067544626974,baseline,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,215725,9.10552834810465,spot_peer,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,215725,-0.0074374668681163,relative_legacy,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,218666,2.8340157464045044,spot_peer,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,218666,4.474173419649371,peer,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,218666,-0.107270003440444,relative_legacy,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,218666,67.80719051126377,spot_baseline,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,218666,64.33731987073108,baseline,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,218945,-84.05119241492541,baseline,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,218945,-86.24964762500649,spot_baseline,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,218945,-1.604314573227344,relative_legacy,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,218945,-104.1300993075678,peer,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,218945,-107.6322563227013,spot_peer,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,219886,73.28335747409284,spot_baseline,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,219886,8.120566747503299,peer,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,219886,-0.0557154214372277,relative_legacy,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,219886,6.760694736639483,spot_peer,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,219886,68.99155719710419,baseline,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,220077,-0.5106054274273114,relative_legacy,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,220077,-24.571093999616192,peer,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,220077,25.932259408069548,baseline,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,220077,26.303440583379377,spot_baseline,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,220077,-26.926198645159054,spot_peer,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,221727,-0.1937092558607818,relative_legacy,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,221727,57.21574387831808,baseline,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,221727,-1.46153327899699,peer,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,221727,-3.842382991964939,spot_peer,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,222631,19.843207469264787,baseline,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,222631,-0.0663826798386823,relative_legacy,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,222631,-1.4500066111563985,peer,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29908,"Will Lara Trump be chosen for a paid position within the Trump White House before January 1, 2025?",2024-11-14 14:14:44.756421+00,222631,-3.842382991964939,spot_peer,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30065 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,182315,-51.45731728297583,spot_baseline,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,182315,-27.560956204253664,spot_peer,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,182315,-45.23960121149506,baseline,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,182315,-18.20467766259544,peer,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,182315,-0.2692514744958116,relative_legacy,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,185690,0.5020247007082367,baseline,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,185690,1.3098425927930846,peer,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,185690,0.0027194417574743,relative_legacy,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,185690,13.23317652041535,spot_peer,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,185690,5.3667449038825294,spot_baseline,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,185698,-13.730919110999515,spot_peer,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,185698,-0.3016676775908681,relative_legacy,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,185698,-32.19280948873623,spot_baseline,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,185698,-31.660865254346817,baseline,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,185698,-18.288384562394867,peer,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,185699,7.612051816413274,baseline,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,185699,20.150736420724837,peer,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,185699,0.261318964085442,relative_legacy,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,185699,81.55754288625727,spot_baseline,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,185699,67.93073606958562,spot_peer,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,187708,-56.064282152574286,spot_baseline,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,187708,-30.868307511351,spot_peer,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,187708,-0.2190192987258563,relative_legacy,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,187708,-26.08318874599604,baseline,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,187708,-12.515603976256884,peer,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,188107,7.830756276022132,peer,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,188107,0.0,baseline,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,188107,9.380377275115055,spot_peer,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,188107,0.0,spot_baseline,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,188107,0.0658131848728975,relative_legacy,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,189585,19.251788754848715,spot_peer,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,189585,13.750352374993504,spot_baseline,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,189585,13.564855575953963,baseline,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,189585,26.67854551108689,peer,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,189585,0.368679289734569,relative_legacy,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,189588,35.72254585867634,peer,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,189588,0.4923111942964653,relative_legacy,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,189588,25.881621659702976,baseline,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,189588,28.26368137163179,spot_peer,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,190772,78.24085649273731,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,190772,65.54967882488467,spot_peer,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,190772,60.75678538582726,baseline,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,190772,56.15442972776985,peer,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,190772,0.7381554919841453,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191026,-0.0174570521490341,relative_legacy,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191026,0.7252413413562925,peer,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191026,-2.974761345489159,baseline,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191026,0.357263215033813,spot_peer,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191026,-12.568719083445922,spot_baseline,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191046,37.85116232537298,spot_baseline,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191046,36.55381895210522,spot_peer,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191046,0.1460985773908557,relative_legacy,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191046,13.911892885077496,peer,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191046,13.184783017106003,baseline,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191284,-73.22058658034464,baseline,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191284,-0.5129385388226994,relative_legacy,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191284,-37.2039791752978,peer,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191284,-43.52656232921968,spot_peer,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191284,-73.69655941662059,spot_baseline,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191471,-32.19280948873623,spot_baseline,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191471,-13.730919110999515,spot_peer,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191471,-0.1134634974677215,relative_legacy,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191471,-5.5420253612739705,peer,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191471,-21.81567967976383,baseline,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191935,31.89410420087904,baseline,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191935,39.4914459400227,peer,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191935,0.5405287255228082,relative_legacy,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191935,33.316948374894395,spot_peer,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,191935,33.34237337251918,spot_baseline,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192049,37.85116232537298,spot_baseline,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192049,36.55381895210522,spot_peer,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192049,0.5792549639446916,relative_legacy,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192049,42.33475699989021,peer,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192049,35.97872784789097,baseline,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192418,-0.6789072113036443,relative_legacy,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192418,-84.41957738195305,baseline,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192418,-47.37179178624667,peer,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192418,-62.40986642573643,spot_peer,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192472,-88.8968687611256,spot_baseline,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192472,-54.43890145092312,spot_peer,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192472,-0.6392764017143946,relative_legacy,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192472,-87.32146171020102,baseline,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192472,-46.93887053275798,peer,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192924,-0.0013973975016709,relative_legacy,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192924,-18.10875802071431,baseline,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192924,1.3236090148143138,peer,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192924,-20.7561069935362,spot_baseline,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,192924,-5.520482518354051,spot_peer,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,193275,-9.420102803736071,spot_peer,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,193275,-0.0631280665003512,relative_legacy,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,193275,-26.188071121742333,spot_baseline,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,193275,-2.1685935661904887,peer,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,193275,-20.5620870003699,baseline,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,195286,-65.27135758631137,baseline,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,195286,-32.598289819927814,peer,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,195286,-0.4661981407264821,relative_legacy,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,195286,-43.52656232921968,spot_peer,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,195286,-73.69655941662059,spot_baseline,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,204737,44.22928749659782,spot_peer,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,204737,48.54268271702416,spot_baseline,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,204737,19.518239248923265,peer,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,204737,19.765494623951906,baseline,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,204737,0.2242628583604164,relative_legacy,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,208405,-50.47901828112339,baseline,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,208405,-0.2706655954131469,relative_legacy,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,208405,-20.022197722117525,peer,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,208405,-51.45731728297583,spot_baseline,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,208405,-27.560956204253664,spot_peer,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,215725,58.05932458985197,spot_peer,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,215725,67.80719051126377,spot_baseline,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,215725,0.4066447931526901,relative_legacy,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,215725,35.10777754993366,baseline,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,215725,32.398884485588326,peer,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,218666,-0.2854216713143036,relative_legacy,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,218666,-50.50956785996678,baseline,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,218666,-20.594479167163737,peer,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,218666,-28.75144550191908,spot_peer,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,218666,-53.11560570253625,spot_baseline,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,218945,-34.007544159762176,spot_baseline,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,218945,-15.033721553852894,spot_peer,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,218945,-7.460688073034957,peer,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,218945,-33.154307437193566,baseline,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,218945,-0.1005459478083582,relative_legacy,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,219886,-49.07247050801852,baseline,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,219886,-19.312080852181783,peer,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,219886,-0.2659108993489326,relative_legacy,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,219886,-27.20646152194094,spot_peer,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,219886,-50.963525001409145,spot_baseline,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,220077,26.303440583379377,spot_baseline,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,220077,28.26368137163179,spot_peer,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,220077,25.967259683351973,baseline,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,220077,35.73794489360259,peer,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,220077,0.4924192388118589,relative_legacy,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,221727,-0.7454209069866585,relative_legacy,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,221727,-97.80306001417571,baseline,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,221727,-54.57390075371217,peer,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,221727,-62.40986642573643,spot_peer,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,221727,-100.0,spot_baseline,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,222631,21.412480535284764,spot_baseline,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,222631,24.75244923379337,spot_peer,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,222631,0.0848549773875822,relative_legacy,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,222631,9.506691814803515,peer,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29909,Will either Matt Dolan or Jane Timken be announced as the successor to occupy JD Vance's Senate seat?,2024-11-14 14:14:44.776164+00,222631,7.25644160817248,baseline,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30066 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,182315,-139.59286763311397,spot_baseline,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,182315,-122.80320500916858,baseline,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,182315,0.2297660341782775,relative_legacy,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,182315,8.984121664519359,peer,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,182315,9.407645270840773,spot_peer,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,185690,15.906941498553543,spot_peer,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,185690,-12.354849325507164,baseline,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,185690,1.349041568812006,peer,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,185690,0.0218908338344448,relative_legacy,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,185690,-130.52891527735736,spot_baseline,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,185698,-30.121664347629924,peer,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,185698,-0.3508108500820917,relative_legacy,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,185698,-128.6959133566426,spot_peer,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,185698,-332.1928094887361,spot_baseline,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,185698,-96.3056926887262,baseline,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,185699,37.85116232537298,spot_baseline,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,185699,81.97119917975823,peer,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,185699,1.238981347121335,relative_legacy,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,185699,136.64367534627493,spot_peer,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,185699,-24.49820045682192,baseline,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,187708,73.61215797261363,peer,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,187708,153.90064468330831,spot_peer,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,187708,29.57947863256736,baseline,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,187708,1.0794889158234977,relative_legacy,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,187708,61.91782160590692,spot_baseline,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,188107,-61.83401742424416,baseline,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,188107,17.237027566666903,peer,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,188107,0.2985117645680308,relative_legacy,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,188107,30.660470189614134,spot_peer,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,188107,-109.95356735509142,spot_baseline,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,189585,-173.6965594166206,spot_baseline,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,189585,-0.0701407827321132,relative_legacy,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,189585,-12.303653717772914,peer,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,189585,-15.046366253045091,spot_peer,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,189585,-171.32490293787134,baseline,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,189588,-12.268946308807932,peer,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,189588,-0.0699558842530798,relative_legacy,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,189588,-173.6965594166206,spot_baseline,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,189588,-170.92855425406196,baseline,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,189588,-15.046366253045091,spot_peer,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,190710,12.313218875355242,peer,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,190710,-138.5293316282579,baseline,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,190710,9.407645270840773,spot_peer,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,190710,0.267048716156944,relative_legacy,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,190710,-139.59286763311397,spot_baseline,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,190772,-62.37286346814873,peer,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,190772,-80.07484826225628,spot_peer,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,190772,-0.7646398294460063,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,190772,-205.4362093564803,baseline,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,190772,-264.3856189774725,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191026,0.4767483342883425,relative_legacy,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191026,31.89894405131196,peer,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191026,35.74298813518867,spot_baseline,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191026,135.132011557252,spot_peer,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191026,8.459908218601798,baseline,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191046,-115.18962195280076,baseline,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191046,-332.1928094887361,spot_baseline,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191046,-128.6959133566426,spot_peer,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191046,-0.5474349942601401,relative_legacy,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191046,-44.17055792757628,peer,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191284,-164.99944917513062,baseline,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191284,-12.334977613532269,peer,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191284,-0.070252349616711,relative_legacy,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191284,-173.6965594166206,spot_baseline,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191284,-15.046366253045091,spot_peer,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191471,-131.82237696479083,baseline,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191471,-20.16148559704063,peer,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191471,-194.3416471633633,spot_baseline,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191471,-0.1999924891549799,relative_legacy,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191471,-29.84990180208028,spot_peer,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191935,-197.22948263261205,baseline,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191935,-0.378245582272925,relative_legacy,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191935,-205.8893689053569,spot_baseline,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191935,-34.680621684387155,peer,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,191935,-38.13018190623922,spot_peer,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192049,-0.070252349616711,relative_legacy,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192049,-15.046366253045091,spot_peer,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192049,-12.320486795574542,peer,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192049,-165.30730089934528,baseline,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192049,-173.6965594166206,spot_baseline,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192418,-0.0599563940026826,relative_legacy,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192418,-15.046366253045091,spot_peer,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192418,-146.6658242849448,baseline,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192418,-12.401957448680475,peer,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192472,-214.7542761137924,baseline,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192472,-218.44245711374276,spot_baseline,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192472,-0.5096946019613674,relative_legacy,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192472,-44.262070834132174,peer,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192472,-47.13135883620093,spot_peer,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192924,102.439216185504,spot_peer,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192924,91.00085964048615,peer,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192924,1.3626951788190949,relative_legacy,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192924,-9.85055449524252,spot_baseline,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,192924,-8.614996578313438,baseline,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,193275,65.62675347942893,spot_baseline,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,193275,156.56012986022628,spot_peer,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,193275,1.8784489700445623,relative_legacy,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,193275,128.06016450016452,peer,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,193275,53.12740669648568,baseline,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,195286,-132.19280948873626,spot_baseline,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,195286,13.891465222078242,peer,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,195286,0.2976790788059137,relative_legacy,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,195286,14.71384813851842,spot_peer,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,195286,-117.1891438891724,baseline,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,204737,-91.99760709994102,baseline,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,204737,-20.978566546153434,peer,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,204737,-0.2276572472444569,relative_legacy,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,204737,-225.15387669959645,spot_baseline,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,204737,-51.943774246707086,spot_peer,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,208405,-232.1928094887363,spot_baseline,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,208405,-56.99103260906213,spot_peer,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,208405,-227.74647366522004,baseline,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,208405,-53.9681293328396,peer,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,208405,-0.6434156944741802,relative_legacy,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,215725,-68.52555594954335,baseline,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,215725,7.530952656972815,peer,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,215725,14.71384813851842,spot_peer,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,215725,-132.19280948873626,spot_baseline,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,215725,0.1551890098054895,relative_legacy,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,218666,-235.7474357953524,baseline,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,218666,-247.3931188332413,spot_baseline,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,218666,-0.772132039171543,relative_legacy,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,218666,-67.8903962978028,spot_peer,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,218666,-63.287075751489446,peer,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,218945,-0.0698580635918427,relative_legacy,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,218945,-169.40820528871666,baseline,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,218945,-12.251915791109887,peer,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,218945,-173.6965594166206,spot_baseline,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,218945,-15.046366253045091,spot_peer,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,219886,-126.29520227595768,baseline,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,219886,-128.41944674408472,spot_baseline,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,219886,17.41953339474444,spot_peer,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,219886,20.15335162695296,peer,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,219886,0.3754911142223227,relative_legacy,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,220077,-15.046366253045091,spot_peer,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,220077,-173.6965594166206,spot_baseline,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,220077,-0.0703842477520853,relative_legacy,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,220077,-12.344961633253543,peer,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,220077,-171.86099744514107,baseline,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,221727,-15.046366253045091,spot_peer,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,221727,-173.6965594166206,spot_baseline,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,221727,-0.069927415065587,relative_legacy,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,221727,-169.8975628314772,baseline,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,221727,-12.254934218107865,peer,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,222631,-218.44245711374276,spot_baseline,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,222631,-74.05718035072829,baseline,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,222631,-15.517635509455127,peer,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,222631,-0.1495400437677019,relative_legacy,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29910,"Will Google have over a 90% global search engine market share, according to StatCounter, on December 31, 2024?",2024-11-14 14:14:44.793565+00,222631,-47.13135883620093,spot_peer,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30067 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,182315,0.1184077688511833,relative_legacy,RyansAGI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,182315,10.268594031688933,peer,RyansAGI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,182315,54.83237745227908,baseline,RyansAGI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,182315,14.545954914439417,spot_peer,RyansAGI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,182315,62.29303509201767,spot_baseline,RyansAGI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,185690,53.96303246846662,spot_baseline,annabot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,185690,0.8210531803319627,peer,annabot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,185690,5.172474997917795,baseline,annabot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,185690,0.0024356776942673,relative_legacy,annabot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,185690,8.565825730704796,spot_peer,annabot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,185698,29.80686416231197,baseline,RonanMcGovern,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,185698,9.60699891030478,peer,RonanMcGovern,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,185698,0.1185967214395029,relative_legacy,RonanMcGovern,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,185698,30.70353779237104,spot_peer,RonanMcGovern,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,185698,84.79969065549501,spot_baseline,RonanMcGovern,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,185699,-154.87155009196326,spot_peer,MWG,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,185699,-173.6965594166206,spot_baseline,MWG,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,185699,-0.3888501268146604,relative_legacy,MWG,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,185699,-26.30103278966331,peer,MWG,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,185699,5.280869668382913,baseline,MWG,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,187708,22.00058425441968,baseline,twsummerbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,187708,2.279721630403019,spot_peer,twsummerbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,187708,-0.5644078385607793,peer,twsummerbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,187708,-0.022532474660198,relative_legacy,twsummerbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,187708,45.20682302238109,spot_baseline,twsummerbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,189585,-11.291062690260286,spot_peer,mf-bot-1,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,189585,-0.2264378892353644,relative_legacy,mf-bot-1,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,189585,25.93367871759765,baseline,mf-bot-1,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,189585,-14.272342588327152,peer,mf-bot-1,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,189588,4.674543434705759,spot_peer,mf-bot-3,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,189588,-0.0070558115764475,relative_legacy,mf-bot-3,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,189588,47.766293111764746,baseline,mf-bot-3,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,189588,1.7148993778603672,peer,mf-bot-3,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,189588,48.54268271702416,spot_baseline,mf-bot-3,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,190710,48.54268271702416,spot_baseline,Bot_Pepa,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,190710,4.674543434705759,spot_peer,Bot_Pepa,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,190710,-0.0070711684263481,relative_legacy,Bot_Pepa,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,190710,48.22136607008155,baseline,Bot_Pepa,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,190710,1.7322238237046066,peer,Bot_Pepa,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,190772,-3.517342812000584,peer,Jay_Bailey_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,190772,31.143765253994896,baseline,Jay_Bailey_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,190772,-1.4196512105266357,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,190772,-0.0666273883677208,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,190772,40.05379295837288,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191026,32.59105321026649,spot_baseline,manticAI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191026,-6.777170262452524,spot_peer,manticAI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191026,-0.039697781128571,relative_legacy,manticAI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191026,-2.180341305733901,peer,manticAI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191026,7.714133837593887,baseline,manticAI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191046,26.69370082363741,baseline,archipelago,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191046,7.466831708044822,peer,archipelago,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191046,24.783559216090637,spot_peer,archipelago,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191046,0.0889847756966301,relative_legacy,archipelago,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191284,84.79969065549501,spot_baseline,000_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191284,80.55306286871333,baseline,000_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191284,26.61651962185713,peer,000_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191284,30.70353779237104,spot_peer,000_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191284,0.3383675839178511,relative_legacy,000_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191471,-1.0246780469771952,peer,HSeldon,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191471,30.1167723552172,baseline,HSeldon,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191471,-0.0290141722311988,relative_legacy,HSeldon,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191471,1.6722628299760678,spot_peer,HSeldon,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191471,44.36066514756148,spot_baseline,HSeldon,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191935,2.856915219677092,spot_baseline,pgodzinai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191935,-28.123380388244115,spot_peer,pgodzinai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191935,2.7698960406853077,baseline,pgodzinai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191935,-0.4494237224828703,relative_legacy,pgodzinai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,191935,-30.55339319423142,peer,pgodzinai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192049,23.557847531222485,spot_peer,gnosis-ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192049,0.2443580277048705,relative_legacy,gnosis-ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192049,71.3294496299518,baseline,gnosis-ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192049,19.81302786018981,peer,gnosis-ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192049,74.84612330040356,spot_baseline,gnosis-ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192418,48.54268271702416,spot_baseline,InstitutPelFutur,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192418,1.404426320763797,peer,InstitutPelFutur,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192418,-0.0034708606817838,relative_legacy,InstitutPelFutur,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192418,4.674543434705759,spot_peer,InstitutPelFutur,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192418,40.9980727646131,baseline,InstitutPelFutur,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192472,-0.2258944450484265,relative_legacy,bestworldbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192472,25.88130036221657,baseline,bestworldbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192472,-14.23467390773038,peer,bestworldbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192472,-11.291062690260286,spot_peer,bestworldbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192472,26.303440583379377,spot_baseline,bestworldbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192924,44.99574836280035,spot_baseline,acm_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192924,-0.7632169965169004,peer,acm_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192924,2.12819061789925,spot_peer,acm_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192924,-0.0334274812487751,relative_legacy,acm_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,192924,39.45319129377132,baseline,acm_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,193275,4.7892347858539095,peer,histerio,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,193275,44.67525184757015,baseline,histerio,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,193275,0.0440489535687069,relative_legacy,histerio,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,193275,8.736688725581326,spot_peer,histerio,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,193275,54.20103555366092,spot_baseline,histerio,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,195286,37.85116232537298,spot_baseline,Unwrapped80T,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,195286,-0.0967376308233587,relative_legacy,Unwrapped80T,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,195286,33.58537212609434,baseline,Unwrapped80T,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,195286,-5.350783785826405,peer,Unwrapped80T,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,195286,-3.000925109786861,spot_peer,Unwrapped80T,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,204737,0.0413112348673715,relative_legacy,SynapseSeer,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,204737,24.93239418166622,baseline,SynapseSeer,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,204737,13.450666201245838,spot_peer,SynapseSeer,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,204737,4.109314233184498,peer,SynapseSeer,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,204737,60.767356034905646,spot_baseline,SynapseSeer,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,208405,66.51168841991607,baseline,mf-bot-4,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,208405,15.452724295783948,peer,mf-bot-4,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,208405,0.1818465222356917,relative_legacy,mf-bot-4,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,208405,18.504580527959902,spot_peer,mf-bot-4,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,215725,39.72250959326421,baseline,estr.ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,215725,11.123083648211429,peer,estr.ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,215725,0.139046007997291,relative_legacy,estr.ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,215725,24.783559216090637,spot_peer,estr.ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,215725,76.55347463629771,spot_baseline,estr.ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,218666,57.33745264459446,spot_baseline,GreeneiBot2,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,218666,7.707735121018492,peer,GreeneiBot2,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,218666,54.75030654204473,baseline,GreeneiBot2,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,218666,0.0774978368813044,relative_legacy,GreeneiBot2,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,218666,10.988330198637655,spot_peer,GreeneiBot2,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,218945,0.0900223634655697,relative_legacy,SeidrBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,218945,57.07691806482537,baseline,SeidrBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,218945,11.8202336958543,spot_peer,SeidrBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,218945,8.742505343978992,peer,SeidrBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,218945,58.496250072115615,spot_baseline,SeidrBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,219886,-42.64036444200679,spot_peer,SaraBase,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,219886,-17.364473238418487,spot_baseline,SaraBase,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,219886,-0.611858432005885,relative_legacy,SaraBase,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,219886,-42.52188928712617,peer,SaraBase,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,219886,-16.03128773919453,baseline,SaraBase,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,220077,4.674543434705759,spot_peer,mmBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,220077,48.0999891551133,baseline,mmBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,220077,-0.0070711684263481,relative_legacy,mmBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,220077,1.7322238237046066,peer,mmBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,220077,48.54268271702416,spot_baseline,mmBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,221727,0.0900130851226164,relative_legacy,mf-bot-5,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,221727,8.74861624274166,peer,mf-bot-5,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,221727,57.18854680076228,baseline,mf-bot-5,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,221727,11.8202336958543,spot_peer,mf-bot-5,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,222631,-0.5659097765297257,peer,Grizeu_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,222631,1.6722628299760678,spot_peer,Grizeu_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,222631,-0.02192455663484,relative_legacy,Grizeu_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,222631,15.046213614130457,baseline,Grizeu_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29911,Will Kelsea Ballerini or Lainey Wilson win the 2024 CMA Award for Female Vocalist of the Year?,2024-11-14 14:14:44.810802+00,222631,44.36066514756148,spot_baseline,Grizeu_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30068 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,182315,37.87157099409423,peer,RyansAGI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,182315,55.25003542524068,spot_peer,RyansAGI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,182315,0.6029249930575267,relative_legacy,RyansAGI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,182315,58.11981316650488,baseline,RyansAGI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,182315,65.99245584023782,spot_baseline,RyansAGI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,185690,5.922874032059101,baseline,annabot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,185690,5.099236209365571,peer,annabot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,185690,51.72976130140225,spot_peer,annabot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,185690,0.0790458878457699,relative_legacy,annabot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,185690,61.08890078544886,spot_baseline,annabot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,185698,-139.02026871260009,baseline,RonanMcGovern,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,185698,-332.1928094887362,spot_baseline,RonanMcGovern,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,185698,-1.332685366973022,relative_legacy,RonanMcGovern,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,185698,-97.54273545474182,peer,RonanMcGovern,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,185698,-230.60813693531196,spot_peer,RonanMcGovern,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,185699,0.0990778974900229,relative_legacy,MWG,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,185699,1.8360128573158665,peer,MWG,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,185699,-116.82329275182909,spot_peer,MWG,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,185699,9.266315369590195,baseline,MWG,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,185699,-173.6965594166206,spot_baseline,MWG,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,187708,-79.62302207231136,peer,twsummerbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,187708,-113.49532411184408,baseline,twsummerbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,187708,-229.3358942690592,spot_baseline,twsummerbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,187708,-1.0475241508924154,relative_legacy,twsummerbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,187708,-156.76690683592753,spot_peer,twsummerbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,188107,0.7282002922086109,spot_peer,Cassie,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,188107,0.0425128063665757,relative_legacy,Cassie,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,188107,-2.8855741308976697,peer,Cassie,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,188107,-9.953567355091424,spot_baseline,Cassie,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,188107,-5.6864696450530205,baseline,Cassie,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,189585,66.86731427199892,baseline,mf-bot-1,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,189585,0.6303390044613824,relative_legacy,mf-bot-1,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,189585,56.55283786809404,spot_peer,mf-bot-1,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,189585,41.32710729037618,peer,mf-bot-1,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,189588,49.868491035988455,spot_peer,mf-bot-3,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,189588,57.55457033203193,baseline,mf-bot-3,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,189588,34.60296208180249,peer,mf-bot-3,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,189588,0.5384790246994458,relative_legacy,mf-bot-3,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,190772,-16.465115479944874,peer,Jay_Bailey_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,190772,-25.15387669959645,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,190772,-10.184138829494843,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,190772,-19.568588502027005,baseline,Jay_Bailey_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,190772,-0.1170780859737417,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191026,-39.72166646755242,spot_peer,manticAI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191026,-66.29808532095154,spot_baseline,manticAI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191026,-9.434751106022246,peer,manticAI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191026,-0.1119024401547649,relative_legacy,manticAI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191026,-15.692876195747557,baseline,manticAI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191046,74.35161447835517,spot_peer,archipelago,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191046,32.217164821376024,baseline,archipelago,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191046,25.53384308676681,peer,archipelago,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191046,0.3787190000441059,relative_legacy,archipelago,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191046,92.5999418556223,spot_baseline,archipelago,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191284,-35.65012755321641,baseline,000_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191284,-31.88043934080297,peer,000_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191284,-15.237405832757446,spot_peer,000_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191284,-32.19280948873623,spot_baseline,000_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191284,-0.3692428720383792,relative_legacy,000_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191471,-41.499311047879566,peer,HSeldon,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191471,-56.84813510657752,baseline,HSeldon,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191471,-83.65012677171204,spot_baseline,HSeldon,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191471,-0.4526427538336053,relative_legacy,HSeldon,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191471,-52.17873931212616,spot_peer,HSeldon,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191935,-0.9794221718052352,relative_legacy,pgodzinai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191935,-100.0,spot_baseline,pgodzinai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191935,-95.97819082880464,baseline,pgodzinai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191935,-76.05213873673146,peer,pgodzinai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,191935,-63.91635314749435,spot_peer,pgodzinai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192049,-87.02764953360894,spot_peer,gnosis-ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192049,-1.1337979590469462,relative_legacy,gnosis-ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192049,-115.82849359330925,baseline,gnosis-ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192049,-88.16457137762359,peer,gnosis-ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192049,-132.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192418,43.1859325454338,peer,InstitutPelFutur,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192418,0.6830895332679777,relative_legacy,InstitutPelFutur,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192418,64.67044357769086,baseline,InstitutPelFutur,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192418,62.83181655622479,spot_peer,InstitutPelFutur,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192472,34.607402706731406,peer,bestworldbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192472,0.5385246568279434,relative_legacy,bestworldbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192472,57.6177882371909,baseline,bestworldbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192472,49.868491035988455,spot_peer,bestworldbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192924,-0.1107281992228263,relative_legacy,acm_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192924,-13.924082231913118,peer,acm_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192924,-3.0384485683462974,spot_peer,acm_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192924,-13.36048755412176,baseline,acm_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,192924,-15.200309344504996,spot_baseline,acm_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,193275,64.15460290875237,spot_baseline,histerio,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,193275,0.5777984686351374,relative_legacy,histerio,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,193275,53.35880687028718,baseline,histerio,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,193275,35.22075055668738,peer,histerio,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,193275,53.930636326864,spot_peer,histerio,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,195286,56.55283786809404,spot_peer,Unwrapped80T,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,195286,60.213887553233086,baseline,Unwrapped80T,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,195286,0.6195882814077623,relative_legacy,Unwrapped80T,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,195286,39.22493952231389,peer,Unwrapped80T,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,204737,39.10947752122284,spot_peer,SynapseSeer,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,204737,0.2464739928165539,relative_legacy,SynapseSeer,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,204737,17.96615553295161,baseline,SynapseSeer,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,204737,43.50951516200971,spot_baseline,SynapseSeer,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,204737,15.178658368702887,peer,SynapseSeer,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,208405,75.09707955067638,baseline,mf-bot-4,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,208405,47.54146072531605,peer,mf-bot-4,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,208405,0.7156528091087319,relative_legacy,mf-bot-4,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,208405,62.83181655622479,spot_peer,mf-bot-4,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,215725,-132.19280948873623,spot_baseline,estr.ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,215725,-47.98724920136446,peer,estr.ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,215725,-69.19713604823004,baseline,estr.ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,215725,-0.5973559959584922,relative_legacy,estr.ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,215725,-87.02764953360894,spot_peer,estr.ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,218666,0.7148355079676011,relative_legacy,GreeneiBot2,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,218666,62.83181655622479,spot_peer,GreeneiBot2,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,218666,76.55347463629771,spot_baseline,GreeneiBot2,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,218666,47.26972908336076,peer,GreeneiBot2,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,218666,73.23776758382708,baseline,GreeneiBot2,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,218945,74.72757376330323,baseline,SeidrBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,218945,0.7151061362078746,relative_legacy,SeidrBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,218945,62.83181655622479,spot_peer,SeidrBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,218945,47.48393371381116,peer,SeidrBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,219886,-0.4916993629505846,relative_legacy,SaraBase,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,219886,-49.87901755888307,spot_baseline,SaraBase,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,219886,-47.599136082067055,baseline,SaraBase,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,219886,-27.934377707755523,spot_peer,SaraBase,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,219886,-40.60322664123862,peer,SaraBase,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,220077,42.722800774839904,spot_peer,mmBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,220077,27.42494178043881,peer,mmBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,220077,48.54268271702416,spot_baseline,mmBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,220077,0.4403721927131965,relative_legacy,mmBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,220077,48.14892131312785,baseline,mmBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,221727,74.87393273020753,baseline,mf-bot-5,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,221727,62.83181655622479,spot_peer,mf-bot-5,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,221727,0.7151061362078746,relative_legacy,mf-bot-5,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,221727,47.50324751443367,peer,mf-bot-5,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,222631,52.60688116675877,spot_baseline,Grizeu_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,222631,45.64049874639059,spot_peer,Grizeu_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,222631,17.850595421489672,baseline,Grizeu_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,222631,15.150487784520529,peer,Grizeu_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29912,"Will Arkansas have 1 million or more residents living in drought on December 31, 2024?",2024-11-14 14:14:44.827934+00,222631,0.2337465015089289,relative_legacy,Grizeu_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30069 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,182315,-6.679130267299914,spot_peer,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,182315,-5.415260698244666,peer,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,182315,-0.1061959359788151,relative_legacy,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,182315,70.41609054835484,baseline,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,182315,79.90873060740036,spot_baseline,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,185690,0.5431416948399213,peer,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,185690,0.0008223007505423,relative_legacy,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,185690,96.93807649416078,spot_baseline,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,185690,5.531741892894673,spot_peer,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,185690,9.51799852216332,baseline,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,185698,2.072108691117238,peer,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,185698,97.08536543404836,spot_baseline,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,185698,5.637355251595413,spot_peer,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,185698,34.17656085720594,baseline,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,185698,0.0122762395568039,relative_legacy,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,185699,98.5500430304885,spot_baseline,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,185699,5.061042215980681,peer,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,185699,6.687600575459339,spot_peer,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,185699,0.0361654461462796,relative_legacy,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,185699,89.67490988327299,baseline,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,187708,91.9912088677308,spot_baseline,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,187708,46.60276665901546,baseline,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,187708,-0.0065974547639976,relative_legacy,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,187708,1.9845963606223789,spot_peer,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,187708,1.126245546975692,peer,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,188107,4.0196288983966335,peer,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,188107,0.0306222025967621,relative_legacy,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,188107,6.687600575459339,spot_peer,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,188107,98.5500430304885,spot_baseline,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,188107,56.53829925114563,baseline,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,189585,2.914401967977977,peer,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,189585,0.0061259038664787,relative_legacy,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,189585,91.4780505133884,baseline,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,189585,2.421087623661156,spot_peer,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,189588,2.9065538105201534,peer,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,189588,0.0060173636969075,relative_legacy,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,189588,91.18774319627856,baseline,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,189588,2.421087623661156,spot_peer,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,190710,4.148865170343719,spot_peer,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,190710,94.60635443112302,baseline,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,190710,0.0301770789278763,relative_legacy,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,190710,4.685995044968479,peer,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,190710,95.0095094173686,spot_baseline,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,190772,5.637355251595413,spot_peer,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,190772,4.843827988812476,peer,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,190772,0.0347293855336574,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,190772,75.58644867816083,baseline,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,190772,97.08536543404836,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191026,-1.166663750952315,spot_peer,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191026,-0.2327954392217625,peer,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191026,87.59644511006147,spot_baseline,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191026,-0.0152808486787101,relative_legacy,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191026,20.734805804611696,baseline,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191046,-0.0034371564794596,relative_legacy,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191046,2.421087623661156,spot_peer,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191046,32.303755885545165,baseline,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191046,0.9304687513338026,peer,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191284,88.68859384539383,baseline,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191284,2.421087623661156,spot_peer,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191284,0.0118126454318396,relative_legacy,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191284,3.335215807802065,peer,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191471,2.421087623661156,spot_peer,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191471,92.5999418556223,spot_baseline,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191471,62.99546684488848,baseline,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191471,-0.0035136121075605,relative_legacy,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191471,1.942926442033744,peer,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191935,4.576337992920683,spot_peer,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191935,0.0334304385169919,relative_legacy,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191935,95.60566524124027,spot_baseline,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191935,91.87943345698412,baseline,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,191935,4.922034159459007,peer,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192049,0.0045446856589214,relative_legacy,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192049,2.8054872649149827,peer,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192049,2.421087623661156,spot_peer,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192049,88.46298997439465,baseline,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192418,49.42718638145783,baseline,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192418,-22.032923900224738,spot_peer,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192418,-0.2853509075452792,relative_legacy,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192418,-18.28144522463349,peer,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192472,-0.1354563523752785,relative_legacy,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192472,78.24085649273731,spot_baseline,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192472,-7.415807718748145,peer,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192472,77.14639695061771,baseline,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192472,-7.875077412238816,spot_peer,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192924,-9.085012560155148,spot_peer,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192924,-0.1358843901291921,relative_legacy,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192924,67.51748734854881,baseline,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192924,-7.566077372988865,peer,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,193275,74.9995691071026,baseline,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,193275,-0.0027315289304903,spot_peer,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,193275,89.2196710465485,spot_baseline,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,193275,0.5341081925800683,peer,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,193275,-0.0257072059319085,relative_legacy,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,195286,-2.321708058469024,peer,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,195286,-0.0636899056385648,relative_legacy,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,195286,-3.1720731974018377,spot_peer,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,195286,75.37117377701203,baseline,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,204737,2.431568520849059,peer,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,204737,40.24686778098887,baseline,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,204737,97.08536543404836,spot_baseline,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,204737,0.0150807711854885,relative_legacy,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,204737,5.637355251595413,spot_peer,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,208405,83.35473179773312,baseline,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,208405,-2.681594940244665,peer,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,208405,-0.0705673186877467,relative_legacy,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,208405,-3.1720731974018377,spot_peer,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,215725,98.5500430304885,spot_baseline,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,215725,6.687600575459339,spot_peer,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,215725,3.644822580194005,peer,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,215725,0.0276689982507753,relative_legacy,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,215725,51.64698048493378,baseline,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,218666,0.0276448542348536,relative_legacy,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,218666,4.148865170343719,spot_peer,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,218666,4.493852212014424,peer,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,218666,91.08421439186463,baseline,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,218666,95.0095094173686,spot_baseline,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,218945,82.37493603082727,spot_baseline,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,218945,-4.3942579364280805,peer,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,218945,-0.0940954852915278,relative_legacy,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,218945,-4.910740609441278,spot_peer,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,218945,80.4393925514826,baseline,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,219459,0.0032184802081652,relative_legacy,karamazov,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,219459,4.931220933967844,spot_peer,karamazov,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,219459,18.271221292312397,baseline,karamazov,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,219459,0.9607477349361428,peer,karamazov,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,219459,96.10058683841363,spot_baseline,karamazov,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,220077,-2.738474943360569,peer,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,220077,84.13429563655713,baseline,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,220077,84.79969065549501,spot_baseline,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,220077,-0.0711199781093804,relative_legacy,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,220077,-3.1720731974018377,spot_peer,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,221727,2.8842031996545985,peer,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,221727,92.5999418556223,spot_baseline,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,221727,2.421087623661156,spot_peer,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,221727,0.0057394326233076,relative_legacy,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,221727,90.64186273694908,baseline,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,222631,-17.97560874643701,spot_peer,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,222631,-0.0997815124031917,relative_legacy,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,222631,64.15460290875237,spot_baseline,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,222631,-6.010958393021819,peer,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29913,"Will a new nuclear-armed state emerge before January 1, 2025?",2024-11-14 14:14:44.979974+00,222631,21.799106623690587,baseline,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30070 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,182315,79.90873060740036,spot_baseline,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,182315,42.2910049016489,peer,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,182315,70.45429522413404,baseline,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,182315,0.3203133366693736,relative_legacy,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,182315,48.1775133116864,spot_peer,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,185690,44.847812141147706,spot_baseline,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,185690,4.452691809249054,baseline,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,185690,2.3041182923014176,peer,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,185690,23.007194501006797,spot_peer,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,185690,0.0,relative_legacy,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,185698,54.59683691052925,spot_baseline,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,185698,14.196677948838587,baseline,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,185698,30.006043141402184,spot_peer,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,185698,-0.001638271623279,relative_legacy,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,185698,7.730942563043424,peer,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,185699,21.516716696896165,baseline,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,185699,84.79969065549501,spot_baseline,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,185699,-0.1929889563313428,relative_legacy,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,185699,51.68874544952484,spot_peer,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,185699,6.623839564660576,peer,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,187708,-60.36229913141918,baseline,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,187708,-47.78310599096461,peer,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,187708,-0.8213642750712127,relative_legacy,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,187708,-115.84293626044824,spot_baseline,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,187708,-92.35308538122104,spot_peer,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,189585,-100.0,spot_baseline,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,189585,-98.83364928196347,baseline,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,189585,-80.97940283047468,spot_peer,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,189585,-80.83643559802647,peer,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,189585,-1.406675876063605,relative_legacy,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,189588,32.94210034649475,peer,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,189588,57.5886738287939,baseline,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,189588,32.805441353008106,spot_peer,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,189588,0.154146499538498,relative_legacy,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,190710,0.2191256706279201,relative_legacy,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,190710,38.08485666807795,peer,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,190710,63.94671852173665,baseline,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,190710,36.86758664388367,spot_peer,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,190710,64.15460290875237,spot_baseline,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,190772,81.55754288625727,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,190772,38.23234304584594,peer,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,190772,63.541937266393504,baseline,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,190772,0.2979629836396134,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,190772,49.36119966484734,spot_peer,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191026,1.3268641680891426,spot_peer,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191026,-0.062782187242125,relative_legacy,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191026,3.467474751050021,baseline,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191026,14.648262431776132,spot_baseline,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191026,0.7190151877250434,peer,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191046,-0.7441348753128403,relative_legacy,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191046,-60.26788071436789,baseline,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191046,-133.88634243480945,spot_peer,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191046,-173.6965594166206,spot_baseline,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191046,-45.74746317963899,peer,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191284,-2.0604023034323897,relative_legacy,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191284,-133.88634243480945,spot_peer,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191284,-173.6965594166206,spot_baseline,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191284,-164.99510542609102,baseline,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191284,-128.71781365425383,peer,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191471,-0.0022835310867062,relative_legacy,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191471,21.12305088795456,spot_peer,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191471,42.22330006830476,spot_baseline,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191471,14.297614175635143,peer,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191471,28.74798646752545,baseline,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191935,0.3989018534378838,relative_legacy,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191935,50.21560729843658,peer,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191935,84.79969065549501,spot_baseline,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191935,51.68874544952484,spot_peer,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,191935,81.63060842663967,baseline,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192049,64.85768660079545,baseline,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192049,38.07254476561884,peer,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192049,0.2338931295367036,relative_legacy,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192049,39.48978818511371,spot_peer,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192418,45.76876687324444,spot_peer,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192418,64.6995228891237,baseline,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192418,0.2792025394478376,relative_legacy,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192418,38.42860299278258,peer,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192472,-61.83860271835808,peer,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192472,-62.09609873395796,spot_peer,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192472,-1.14669629453261,relative_legacy,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192472,-72.72604556848022,baseline,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192472,-73.69655941662059,spot_baseline,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192924,44.99574836280035,spot_baseline,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192924,20.04078963909893,peer,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192924,23.11339827505307,spot_peer,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192924,39.75281851701657,baseline,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,192924,0.0124909573725362,relative_legacy,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,193275,-0.6206716467809921,relative_legacy,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,193275,-24.99226979183717,baseline,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,193275,-26.55091535800952,peer,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,193275,-30.249469117204907,spot_peer,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,193275,-29.335894269059175,spot_baseline,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,195286,25.65975109185956,spot_peer,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,195286,0.0443871192300936,relative_legacy,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,195286,22.51700507245576,peer,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,195286,43.20653466180354,baseline,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,204737,-25.90167243002998,baseline,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,204737,-21.710310691038924,peer,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,204737,-0.4298266493241679,relative_legacy,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,204737,-53.80596115348457,spot_peer,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,204737,-62.14883767462704,spot_baseline,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,208405,-31.6130606850628,baseline,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,208405,-32.19280948873623,spot_baseline,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,208405,-0.7390606494271689,relative_legacy,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,208405,-32.300455515737774,spot_peer,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,208405,-32.02288450215457,peer,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,215725,57.288564795374825,spot_peer,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,215725,0.2663256783100383,relative_legacy,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,215725,30.666999630858346,peer,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,215725,48.57816880611575,baseline,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,218666,19.565556446627163,spot_peer,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,218666,40.05379295837285,spot_baseline,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,218666,-0.0315685636879511,relative_legacy,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,218666,18.893113702039688,peer,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,218666,38.499070450764464,baseline,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,218945,17.98428254736694,spot_peer,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,218945,36.97943049886221,baseline,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,218945,37.85116232537298,spot_baseline,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,218945,-0.0530381126986373,relative_legacy,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,218945,17.790488621820103,peer,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,219886,82.56846702359701,baseline,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,219886,0.4022328617539039,relative_legacy,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,219886,51.267851709951856,spot_peer,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,219886,50.98647494965056,peer,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,219886,84.2134080105623,spot_baseline,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,220077,-100.0,spot_baseline,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,220077,-1.412645807702385,relative_legacy,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,220077,-99.40455213658235,baseline,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,220077,-80.97940283047468,spot_peer,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,220077,-81.49004137573226,peer,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,221727,74.93362056824999,baseline,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,221727,45.76876687324444,spot_peer,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,221727,0.3253780103316158,relative_legacy,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,221727,45.404463198262405,peer,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,222631,52.60688116675877,spot_baseline,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,222631,0.039984872624637,relative_legacy,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,222631,10.455648451720313,peer,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,222631,28.57744906341025,spot_peer,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29914,"Will Kalshi outrank the Wells Fargo Mobile App in the top free Finance apps on December 31, 2024?",2024-11-14 14:14:44.998462+00,222631,17.864406131749902,baseline,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30071 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,182315,-0.9768834540131576,relative_legacy,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,182315,-53.16713555692616,spot_peer,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,182315,-100.0,spot_baseline,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,182315,-46.33181197726188,peer,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,182315,-88.22035688548176,baseline,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,185690,-2.486091024931324,peer,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,185690,-6.082304781983374,baseline,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,185690,-0.0922124373745061,relative_legacy,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,185690,-24.965019737715156,spot_peer,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,185690,-60.62543293391751,spot_baseline,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,185698,37.85116232537298,spot_baseline,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,185698,8.399863858079122,baseline,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,185698,45.569047095908935,spot_peer,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,185698,-0.0071112412839918,relative_legacy,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,185698,12.898373420863525,peer,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,185699,80.33784488010096,spot_peer,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,185699,45.53891970415821,peer,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,185699,0.2595485480178795,relative_legacy,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,185699,36.29014678465879,baseline,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,185699,86.39384504239716,spot_baseline,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,187708,24.36690809668629,spot_baseline,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,187708,-0.0193891445664033,relative_legacy,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,187708,35.91092186865564,spot_peer,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,187708,18.3836252700137,peer,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,187708,12.981925555162068,baseline,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,188107,39.11052364754577,peer,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,188107,0.2424704873746545,relative_legacy,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,188107,68.09593611666735,spot_peer,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,188107,40.54172188048037,baseline,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,188107,69.30222465786092,spot_baseline,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,189585,-173.6965594166206,spot_baseline,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,189585,-1.7880638848269932,relative_legacy,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,189585,-103.57773250592244,peer,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,189585,-171.52205078014688,baseline,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,189585,-105.95245001274516,spot_peer,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,189588,-132.19280948873626,spot_baseline,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,189588,-130.1531412320201,baseline,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,189588,-1.3781978380810262,relative_legacy,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,189588,-73.71212136591056,peer,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,189588,-76.2253025260612,spot_peer,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,190710,-21.95326852901712,peer,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,190710,-24.47852277510396,spot_peer,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,190710,-59.798712608896906,baseline,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,190710,-0.6653584233950396,relative_legacy,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,190710,-59.94620704162715,spot_baseline,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,190772,76.55347463629771,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,190772,0.4405595628376081,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,190772,60.212001447107774,baseline,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,190772,57.993410719654136,peer,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,190772,73.28965904402578,spot_peer,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191026,0.0576963680715409,relative_legacy,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191026,55.584304089472965,spot_peer,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191026,12.270265340363034,baseline,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191026,13.279402950856008,peer,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191026,51.83402838780202,spot_baseline,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191046,-332.1928094887361,spot_baseline,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191046,-219.47571984178316,spot_peer,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191046,-1.2433810998099086,relative_legacy,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191046,-115.37068941121436,baseline,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191046,-75.9101723402462,peer,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191284,-34.32724135488416,spot_peer,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191284,-70.00434272176207,baseline,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191284,-31.5527165492275,peer,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191284,-0.8017288204523868,relative_legacy,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191284,-73.69655941662059,spot_baseline,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191471,26.303440583379377,spot_baseline,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191471,24.823828235479127,peer,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191471,37.29796730297684,spot_peer,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191471,17.92641649175284,baseline,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191471,-0.0090719059255184,relative_legacy,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191935,86.3054968734492,baseline,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191935,82.58431016586289,spot_peer,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191935,82.20857251015846,peer,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191935,0.7646744082300635,relative_legacy,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191935,89.53026213333065,spot_baseline,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191975,97.23250415571516,spot_baseline,jkraybill_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191975,70.09014381195769,baseline,jkraybill_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191975,88.10105708572924,spot_peer,jkraybill_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191975,0.5225929631832467,relative_legacy,jkraybill_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,191975,63.29553707750706,peer,jkraybill_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192049,88.67999761871577,baseline,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192049,84.78297467208232,spot_peer,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192049,0.7825405216956162,relative_legacy,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192049,83.63539084274072,peer,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192418,-146.83100587501633,baseline,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192418,-89.61801795488087,peer,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192418,-1.5865403598174952,relative_legacy,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192418,-105.95245001274516,spot_peer,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192472,-76.2253025260612,spot_peer,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192472,-73.81172463564188,peer,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192472,-1.3785555720496117,relative_legacy,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192472,-130.54926571945543,baseline,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192472,-132.19280948873626,spot_baseline,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192924,34.327912186859244,spot_peer,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192924,22.156778853840933,spot_baseline,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192924,19.619796477617072,baseline,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192924,0.1007880086335143,relative_legacy,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,192924,31.67620739430101,peer,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,193275,-22.949741380539216,baseline,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,193275,0.3243143155564987,peer,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,193275,0.1952313225959637,spot_peer,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,193275,-0.3381503896891204,relative_legacy,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,193275,-25.49778509627353,spot_baseline,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,195286,-73.69655941662059,spot_baseline,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,195286,-34.32724135488416,spot_peer,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,195286,-65.67930098454173,baseline,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,195286,-0.7492627001309793,relative_legacy,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,195286,-29.824580106840862,peer,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,204737,0.1645271111324048,relative_legacy,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,204737,67.02511478966088,spot_peer,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,204737,28.385938233869144,baseline,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,204737,27.938065425747823,peer,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,204737,67.80719051126377,spot_baseline,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,208405,75.32822580917542,peer,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,208405,75.21609268662239,baseline,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,208405,73.28965904402578,spot_peer,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,208405,0.6732542512769909,relative_legacy,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,215725,37.82555914511956,peer,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,215725,73.28965904402578,spot_peer,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,215725,40.20421193391295,baseline,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,215725,0.254683298419348,relative_legacy,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,218666,-61.78323514729479,spot_peer,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,218666,-1.1777811507406268,relative_legacy,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,218666,-58.5977217260571,peer,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,218666,-107.89400802883767,baseline,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,218666,-112.0294233717712,spot_baseline,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,218945,-97.74557008345924,baseline,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,218945,-1.0623618425531836,relative_legacy,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,218945,-50.588660831735965,peer,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,218945,-53.16713555692616,spot_peer,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,218945,-100.0,spot_baseline,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,219886,42.84640262579792,spot_baseline,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,219886,49.146898384049855,spot_peer,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,219886,0.2950268272579804,relative_legacy,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,219886,40.23246376001708,baseline,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,219886,47.962774904051685,peer,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,220077,-51.17870803802568,baseline,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,220077,-15.775173326523714,peer,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,220077,-18.398337772734163,spot_peer,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,220077,-0.5809291461873186,relative_legacy,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,221727,37.05878555640559,baseline,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,221727,0.2864245812230032,relative_legacy,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,221727,45.569047095908935,spot_peer,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,221727,47.33429129660495,peer,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,222631,-59.277948518934295,baseline,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,222631,-173.6965594166206,spot_baseline,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,222631,-105.95245001274516,spot_peer,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,222631,-35.817229795336495,peer,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29915,"Before 2025, will OpenAI's commercial operations cease to be governed by its nonprofit board of directors? -",2024-11-14 14:14:45.021126+00,222631,-0.6806085543828561,relative_legacy,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30072 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,182315,10.879862270756568,peer,RyansAGI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,182315,13.982116461736595,spot_peer,RyansAGI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,182315,0.0130319880200905,relative_legacy,RyansAGI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,182315,94.11063109464314,spot_baseline,RyansAGI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,182315,83.08607584101546,baseline,RyansAGI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,185690,14.518914205704007,spot_peer,annabot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,185690,94.86008474933556,spot_baseline,annabot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,185690,0.0022935089730593,relative_legacy,annabot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,185690,9.626048696431251,baseline,annabot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,185690,1.478659887345786,peer,annabot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,185698,2.631325858648054,peer,RonanMcGovern,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,185698,31.30140593695428,baseline,RonanMcGovern,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,185698,92.5999418556223,spot_baseline,RonanMcGovern,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,185698,12.900082142116078,spot_peer,RonanMcGovern,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,185698,-0.0139658954039436,relative_legacy,RonanMcGovern,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,185699,-37.72898077982283,peer,MWG,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,185699,-164.38561897747246,spot_baseline,MWG,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,185699,-171.1663620251624,spot_peer,MWG,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,185699,-0.6818858421963023,relative_legacy,MWG,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,185699,21.411360068706376,baseline,MWG,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,187708,92.75172461984762,spot_baseline,twsummerbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,187708,5.623342594975376,peer,twsummerbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,187708,0.0001450872484455,relative_legacy,twsummerbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,187708,50.2397488676578,baseline,twsummerbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,187708,13.008796863699136,spot_peer,twsummerbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,188107,13.442515583684282,spot_peer,Cassie,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,188107,55.288525064330365,baseline,Cassie,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,188107,93.3572638261024,spot_baseline,Cassie,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,188107,6.471092736807894,peer,Cassie,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,188107,0.003807994808269,relative_legacy,Cassie,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,189585,12.900082142116078,spot_peer,mf-bot-1,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,189585,91.48306358647706,baseline,mf-bot-1,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,189585,11.618520063678742,peer,mf-bot-1,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,189585,-0.0010005338517753,relative_legacy,mf-bot-1,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,189588,96.32941490133253,baseline,mf-bot-3,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,189588,15.355664772507042,peer,mf-bot-3,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,189588,97.81956296816516,spot_baseline,mf-bot-3,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,189588,16.63864665512466,spot_peer,mf-bot-3,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,189588,0.0504003465970091,relative_legacy,mf-bot-3,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,190710,95.4338291412746,baseline,Bot_Pepa,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,190710,0.0291599083333377,relative_legacy,Bot_Pepa,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,190710,95.60566524124027,spot_baseline,Bot_Pepa,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,190710,13.845501677454324,peer,Bot_Pepa,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,190710,15.052937788743094,spot_peer,Bot_Pepa,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,190772,98.5500430304885,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,190772,17.161854523967822,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,190772,11.965029234681436,peer,Jay_Bailey_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,190772,77.56520368317501,baseline,Jay_Bailey_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,190772,0.0461540551148441,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191026,19.94026147131025,baseline,manticAI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191026,-0.0198083588736763,relative_legacy,manticAI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191026,1.1411387564371502,peer,manticAI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191026,84.23241877981421,spot_baseline,manticAI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191026,6.906826279573857,spot_peer,manticAI,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191046,12.900082142116078,spot_peer,archipelago,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191046,92.5999418556223,spot_baseline,archipelago,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191046,0.0,relative_legacy,archipelago,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191046,32.18095606508975,baseline,archipelago,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191046,3.580028935808373,peer,archipelago,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191284,7.313135944187585,spot_peer,000_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191284,81.50366450209135,baseline,000_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191284,84.79969065549501,spot_baseline,000_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191284,6.4447571532814685,peer,000_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191284,-0.064871351319947,relative_legacy,000_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191471,63.17008112016372,baseline,HSeldon,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191471,12.900082142116078,spot_peer,HSeldon,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191471,-0.0006770568128507,relative_legacy,HSeldon,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191471,7.241334292567051,peer,HSeldon,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191471,92.5999418556223,spot_baseline,HSeldon,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191935,13.547441989378676,peer,pgodzinai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191935,0.0285188424725454,relative_legacy,pgodzinai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191935,92.34389790657234,baseline,pgodzinai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191935,15.052937788743094,spot_peer,pgodzinai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,191935,95.60566524124027,spot_baseline,pgodzinai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192049,98.5500430304885,spot_baseline,gnosis-ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192049,15.419684094334816,peer,gnosis-ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192049,94.47960646412442,baseline,gnosis-ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192049,0.0564736758166444,relative_legacy,gnosis-ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192049,17.161854523967822,spot_peer,gnosis-ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192418,78.29642108165419,baseline,InstitutPelFutur,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192418,9.380480378485682,peer,InstitutPelFutur,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192418,12.900082142116078,spot_peer,InstitutPelFutur,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192418,-0.0003052130193184,relative_legacy,InstitutPelFutur,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192472,98.5500430304885,spot_baseline,bestworldbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192472,17.161854523967822,spot_peer,bestworldbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192472,15.896897701116943,peer,bestworldbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192472,0.0577915977350984,relative_legacy,bestworldbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192472,97.39078934560844,baseline,bestworldbot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192924,11.034214488234342,spot_peer,acm_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192924,8.313909258464362,peer,acm_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192924,79.85730162517814,baseline,acm_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192924,-0.0234211592216685,relative_legacy,acm_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,192924,89.99489861896717,spot_baseline,acm_bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,193275,84.15706373955169,spot_baseline,histerio,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,193275,4.4643096758076215,peer,histerio,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,193275,-0.0731810100898355,relative_legacy,histerio,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,193275,73.3255643406614,baseline,histerio,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,193275,6.852853074751604,spot_peer,histerio,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,195286,12.900082142116078,spot_peer,Unwrapped80T,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,195286,10.074763545795152,peer,Unwrapped80T,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,195286,82.65726570755197,baseline,Unwrapped80T,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,195286,-0.0003052130193184,relative_legacy,Unwrapped80T,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,204737,41.41687279637564,baseline,SynapseSeer,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,204737,6.087442559780563,peer,SynapseSeer,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,204737,17.161854523967822,spot_peer,SynapseSeer,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,204737,0.0244889477968009,relative_legacy,SynapseSeer,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,208405,96.86194840017696,baseline,mf-bot-4,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,208405,0.0575696933877395,relative_legacy,mf-bot-4,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,208405,17.161854523967822,spot_peer,mf-bot-4,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,208405,15.87006976888883,peer,mf-bot-4,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,208405,98.5500430304885,spot_baseline,mf-bot-4,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,215725,51.033512465420976,baseline,estr.ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,215725,7.083792541720472,peer,estr.ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,215725,16.11277613935263,spot_peer,estr.ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,215725,97.08536543404836,spot_baseline,estr.ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,215725,0.0229008448697462,relative_legacy,estr.ai,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,218666,10.778561699204184,peer,GreeneiBot2,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,218666,91.68587646997544,spot_baseline,GreeneiBot2,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,218666,12.245380902377212,spot_peer,GreeneiBot2,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,218666,88.46887692687858,baseline,GreeneiBot2,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,218666,-0.0093328662607489,relative_legacy,GreeneiBot2,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,218945,7.78495908824073,peer,SeidrBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,218945,9.021163812479356,spot_peer,SeidrBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,218945,87.18436485093177,spot_baseline,SeidrBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,218945,-0.0536085673816895,relative_legacy,SeidrBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,218945,85.25294002627508,baseline,SeidrBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,219459,12.900082142116078,spot_peer,karamazov,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,219459,2.154756507719405,peer,karamazov,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,219459,92.5999418556223,spot_baseline,karamazov,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,219459,17.605969272650228,baseline,karamazov,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,219459,0.0,relative_legacy,karamazov,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,219886,-3.0625281988400737,relative_legacy,SaraBase,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,219886,-222.02780187929275,spot_baseline,SaraBase,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,219886,-212.45269580353704,spot_peer,SaraBase,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,219886,-210.60983582777175,peer,SaraBase,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,219886,-216.08628540318276,baseline,SaraBase,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,220077,7.313135944187585,spot_peer,mmBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,220077,84.79969065549501,spot_baseline,mmBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,220077,84.54710418678484,baseline,mmBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,220077,-0.0785779680761859,relative_legacy,mmBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,220077,5.943732440765638,peer,mmBot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,221727,0.043208036186597,relative_legacy,mf-bot-5,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,221727,14.816695008825858,peer,mf-bot-5,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,221727,95.03732940730276,baseline,mf-bot-5,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,221727,97.08536543404836,spot_baseline,mf-bot-5,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,221727,16.11277613935263,spot_peer,mf-bot-5,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,222631,2.4450621141165336,peer,Grizeu_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,222631,92.5999418556223,spot_baseline,Grizeu_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,222631,12.900082142116078,spot_peer,Grizeu_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,222631,29.99105222607161,baseline,Grizeu_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29916,"Will the United Nations have exactly 193 member states on December 31, 2024?",2024-11-14 14:14:45.042492+00,222631,-0.0148132854160072,relative_legacy,Grizeu_Bot,True,yes,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30073 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,182315,23.05586288087956,peer,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,182315,67.80719051126377,spot_baseline,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,182315,59.90083484603652,baseline,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,182315,0.0874072076775284,relative_legacy,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,182315,24.17561583440237,spot_peer,RyansAGI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,185690,-1.1547092411032451,baseline,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,185690,-11.24747292584125,spot_baseline,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,185690,-3.3031960534298763,peer,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,185690,-0.066594192642285,relative_legacy,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,185690,-32.388530820095404,spot_peer,annabot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,185698,-20.645776641270032,peer,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,185698,-0.3732036628934004,relative_legacy,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,185698,-47.375060868559714,spot_peer,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,185698,-17.187347983030357,baseline,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,185698,-32.19280948873623,spot_baseline,RonanMcGovern,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,185699,-0.001152186974733,relative_legacy,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,185699,19.155987058625264,peer,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,185699,40.82265042496984,spot_peer,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,185699,56.16186874018025,baseline,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,185699,91.07326619029126,spot_baseline,MWG,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,187708,34.948262577550025,spot_peer,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,187708,0.1269491104998704,relative_legacy,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,187708,45.63350154584336,baseline,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,187708,82.8631581688019,spot_baseline,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,187708,19.58011581043441,peer,twsummerbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,188107,5.355326100832881,spot_peer,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,188107,24.78059591157619,baseline,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,188107,-0.1021454021315792,relative_legacy,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,188107,3.6116369468543943,peer,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,188107,41.50374992788439,spot_baseline,Cassie,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,189585,-0.0863245966823911,relative_legacy,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,189585,10.391730144129074,spot_peer,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,189585,13.05556639184985,peer,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,189585,47.94926104582135,baseline,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,189588,5.37594877561442,peer,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,189588,-0.1917566098065498,relative_legacy,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,189588,2.74187495406746,spot_peer,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,189588,37.258624619287616,baseline,mf-bot-3,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,190710,52.55817944482322,baseline,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,190710,-0.0445097314764054,relative_legacy,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,190710,16.15903245754819,peer,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,190710,13.299691637465465,spot_peer,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,190710,52.60688116675877,spot_baseline,Bot_Pepa,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,190772,53.40515197583818,baseline,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,190772,20.271309472294,peer,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,190772,67.80719051126377,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,190772,24.17561583440237,spot_peer,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,190772,0.0800075290524573,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191026,11.244723651412173,baseline,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191026,2.3844171499825526,peer,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191026,-0.0184435309801808,relative_legacy,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191026,47.49852288648651,spot_baseline,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191026,9.644626719518891,spot_peer,manticAI,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191046,26.649198183598017,baseline,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191046,0.0683145941874878,relative_legacy,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191046,30.43364131222791,spot_peer,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191046,10.898040510673528,peer,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191046,76.55347463629771,spot_baseline,archipelago,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191284,84.79969065549501,spot_baseline,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191284,0.2587935843884376,relative_legacy,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191284,81.50325482398259,baseline,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191284,37.71678932721812,peer,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191284,36.33386467635163,spot_peer,000_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191471,5.784467770480796,peer,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191471,30.28072391117522,baseline,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191471,-0.0850876515101385,relative_legacy,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191471,7.399468273341746,spot_peer,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191471,44.36066514756145,spot_baseline,HSeldon,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191935,86.39384504239716,spot_baseline,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191935,0.2726715815295539,relative_legacy,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191935,39.072468115611976,peer,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191935,83.59352025206584,baseline,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191935,37.474492927870095,spot_peer,pgodzinai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191975,-4.295214518454711,spot_baseline,jkraybill_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191975,-27.41414288347177,spot_peer,jkraybill_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191975,-0.457834137042391,relative_legacy,jkraybill_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191975,-19.632861188869818,peer,jkraybill_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,191975,-3.2039781916959487,baseline,jkraybill_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192049,65.08573074548511,baseline,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192049,24.17561583440237,spot_peer,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192049,25.71575406406689,peer,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192049,0.0897766875247811,relative_legacy,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192418,-0.168711540068916,relative_legacy,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192418,3.670765295375966,peer,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192418,32.01273416111348,baseline,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192418,2.74187495406746,spot_peer,InstitutPelFutur,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192472,-5.520598096104043,spot_peer,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192472,26.303440583379377,spot_baseline,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192472,-0.3059539244430418,relative_legacy,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192472,26.157573288149987,baseline,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192472,-2.912431803998245,peer,bestworldbot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192924,53.19589265946888,baseline,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192924,0.0169943528728454,relative_legacy,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192924,59.83652053236445,spot_baseline,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192924,18.106920503603373,peer,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,192924,18.472547526740083,spot_peer,acm_bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,193275,5.380644369579351,spot_baseline,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,193275,-0.4620199621595314,relative_legacy,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,193275,4.757406676828845,baseline,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,193275,-20.49100037225969,spot_peer,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,193275,-16.71127372810596,peer,histerio,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,195286,71.36958148433591,spot_baseline,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,195286,25.671615105482054,peer,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,195286,26.72453068244074,spot_peer,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,195286,63.77321546890751,baseline,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,195286,0.1196874487003938,relative_legacy,Unwrapped80T,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,204737,0.1623808586469228,relative_legacy,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,204737,45.2296268689764,spot_peer,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,204737,19.312496234087263,peer,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,204737,41.0051354146478,baseline,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,204737,97.23250415571516,spot_baseline,SynapseSeer,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,208405,-14.914102881829814,baseline,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,208405,-32.4219506300139,peer,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,208405,-0.7127570982351225,relative_legacy,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,208405,-15.200309344505014,spot_baseline,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,208405,-35.21681202661047,spot_peer,mf-bot-4,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,215725,0.0843105320999877,relative_legacy,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,215725,16.29133549264529,peer,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,215725,40.28234800994926,baseline,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,215725,30.43364131222791,spot_peer,estr.ai,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,218666,-21.75914350726266,spot_baseline,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,218666,-0.77332196843265,relative_legacy,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,218666,-36.72407443614699,peer,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,218666,-21.038991570200523,baseline,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,218666,-39.90970225388863,spot_peer,GreeneiBot2,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,218945,-95.89156453263564,spot_peer,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,218945,-1.540469181251424,relative_legacy,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,218945,-92.42638031992666,peer,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,218945,-97.82639690626551,baseline,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,218945,-100.0,spot_baseline,SeidrBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,219459,34.404354171871375,spot_peer,karamazov,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,219459,0.0473509730535724,relative_legacy,karamazov,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,219459,15.610487107632624,baseline,karamazov,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,219459,6.5764067444222665,peer,karamazov,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,219459,82.10298589546805,spot_baseline,karamazov,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,219886,74.17624988994059,baseline,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,219886,76.55347463629771,spot_baseline,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,219886,32.246867798471634,peer,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,219886,30.43364131222791,spot_peer,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,219886,0.1781410593344757,relative_legacy,SaraBase,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,220077,-3.0615158146289048,peer,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,220077,26.26605971881989,baseline,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,220077,26.303440583379377,spot_baseline,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,220077,-5.520598096104043,spot_peer,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,220077,-0.3071703286646043,relative_legacy,mmBot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,221727,-132.19280948873626,spot_baseline,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,221727,-118.9257375715218,spot_peer,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,221727,-115.33435678798573,peer,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,221727,-129.40382773635028,baseline,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,221727,-1.856413538029298,relative_legacy,mf-bot-5,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,222631,-0.3676643675678969,relative_legacy,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,222631,-17.496901043695168,baseline,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,222631,-61.15894655883302,spot_peer,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29917,"Will 1 Euro be worth less than 1 US Dollar before 2025? -",2024-11-14 14:14:45.064384+00,222631,-20.539986501845565,peer,Grizeu_Bot,True,no,2024-11-15 15:30:00+00,2024-11-15 15:30:00+00,1.0,2024-11-15 15:30:00+00,30074 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,182315,-0.6500934404916987,relative_legacy,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,182315,-88.8968687611256,spot_baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,182315,-77.78769238608878,baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,182315,-53.667256777018544,spot_peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,182315,-41.4933290163398,peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,185690,-15.373413575397423,spot_peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,185690,-1.2340231630118603,peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,185690,-35.62361456626575,spot_baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,185690,-3.148485943058504,baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,185690,-0.0230936749769064,relative_legacy,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,185698,27.53651214724944,peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,185698,52.28176148555726,spot_peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,185698,58.496250072115615,spot_baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,185698,0.3373681759775117,relative_legacy,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,185698,32.89769915238332,baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,185699,52.28176148555726,spot_peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,185699,0.0008060892608379,relative_legacy,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,185699,58.496250072115615,spot_baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,185699,0.0806089260837936,baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,185699,0.072045244642592,peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,187708,33.72325425281685,peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,187708,38.474458242011,baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,187708,80.73549220576041,spot_baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,187708,0.4008221013061894,relative_legacy,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,187708,68.26775791208775,spot_peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,188107,15.930251248754145,baseline,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,188107,18.05722456418209,spot_baseline,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,188107,0.2893962499712323,relative_legacy,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,188107,26.9443535130648,peer,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,188107,23.213409543644552,spot_peer,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,189585,0.0197020728565477,relative_legacy,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,189585,-15.200309344505014,spot_baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,189585,-14.984947870567732,baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,189585,6.145779795338128,peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,189585,-0.6927476457306656,spot_peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,189588,-14.08649562889723,peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,189588,-20.992185273622024,spot_peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,189588,-42.68319377174592,baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,189588,-43.440282414577496,spot_baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,189588,-0.2567168638716988,relative_legacy,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,189869,0.0,baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,189869,10.23352805211801,spot_peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,189869,4.985707172108572,peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,189869,0.0083911844536785,relative_legacy,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,189869,0.0,spot_baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,190710,59.59670916440458,peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,190710,57.81517408505798,baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,190710,52.28176148555726,spot_peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,190710,58.496250072115615,spot_baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,190710,0.7465129828682245,relative_legacy,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191026,-18.111594170001915,spot_baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191026,-2.7854353613159835,spot_peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191026,-0.0099285628741136,relative_legacy,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191026,-0.152097244442306,peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191026,-1.8319747327792213,baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191046,45.12694518320674,spot_peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191046,17.538556269343417,peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191046,18.456750460138903,baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191046,0.1929586890550675,relative_legacy,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191046,48.54268271702416,spot_baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191471,-26.75498465263943,spot_peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191471,-51.45731728297583,spot_baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191471,-14.83502805509096,peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191471,-34.50249009591821,baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191471,-0.2994652456667617,relative_legacy,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191935,45.12694518320674,spot_peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191935,48.54268271702416,spot_baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191935,51.69564548455941,peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191935,47.319150633594994,baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,191935,0.6399605199662544,relative_legacy,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192049,-0.5354350822958115,relative_legacy,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192049,-34.09209548320717,peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192049,-42.7409810791699,spot_peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192049,-69.38336581035361,baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192049,-73.69655941662059,spot_baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192418,-114.62291091501606,spot_peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192418,-99.69891064588823,peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192418,-158.78373974574197,baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192418,-1.4413107008472972,relative_legacy,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192472,-0.7581850395728295,relative_legacy,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192472,-92.8367309904387,baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192472,-50.90479542969796,peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192472,-57.58106856783233,spot_peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192472,-94.34164716336323,spot_baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192924,0.5097302459232097,relative_legacy,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192924,38.87002922528054,baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192924,44.99574836280035,spot_baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192924,42.577340319380056,spot_peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,192924,43.181225709730704,peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,193275,3.391424989139733,peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,193275,-11.740597503870022,baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,193275,-15.200309344505014,spot_baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,193275,-0.0563587962335885,relative_legacy,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,193275,-0.6927476457306656,spot_peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,195286,-50.07719956588634,baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,195286,-19.63928702650536,peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,195286,-26.75498465263943,spot_peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,195286,-0.3345230077347466,relative_legacy,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,195286,-51.45731728297583,spot_baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,204737,10.23352805211801,spot_peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,204737,0.0,baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,204737,0.0083911844536785,relative_legacy,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,204737,0.0,spot_baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,204737,4.522832589027536,peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,208405,-0.1469344570850419,relative_legacy,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,208405,-12.907284676762997,spot_peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,208405,-5.95039259358961,peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,208405,-32.19280948873623,spot_baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,208405,-31.463807585495854,baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,215725,27.45002040895691,baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,215725,37.85116232537298,spot_baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,215725,0.3283748041550187,relative_legacy,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,215725,37.441673996894856,spot_peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,215725,31.306713133107497,peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,218666,13.046828853803351,peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,218666,0.1085993777768018,relative_legacy,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,218666,-5.0351675857453175,baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,218666,-5.289494843212547,spot_baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,218666,6.431337080249254,spot_peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,219886,-98.8898352859091,baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,219886,-57.02235319496818,peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,219886,-113.87909820181996,spot_baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,219886,-71.62496541500859,spot_peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,219886,-0.8645405581100203,relative_legacy,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,220077,25.536054007948948,baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,220077,0.4203983518036761,relative_legacy,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,220077,29.14094875667626,spot_peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,220077,26.303440583379377,spot_baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,220077,35.672992619152616,peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,221727,-0.3347796090641095,relative_legacy,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,221727,-50.12553028248923,baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,221727,-26.75498465263943,spot_peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,221727,-19.666430653762006,peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,222631,-0.6927476457306656,spot_peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,222631,-5.317886661362945,baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,222631,-15.200309344505014,spot_baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,222631,-0.0447876821599508,relative_legacy,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29940,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-15 14:08:43.462329+00,222631,-0.5853428020884917,peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30110 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,182315,62.48676992159514,baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,182315,0.1315930570813814,relative_legacy,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,182315,71.36958148433591,spot_baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,182315,19.20394042341257,spot_peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,182315,16.379169331127624,peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,185690,-0.013943348959397,relative_legacy,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,185690,2.094072503204729,baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,185690,-1.213515705837055,peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,185690,-15.315283220412391,spot_peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,185690,23.41333956124827,spot_baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,185698,-73.69655941662059,spot_baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,185698,-85.2156379275745,spot_peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,185698,-0.7432559121206714,relative_legacy,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,185698,-50.8660589402715,peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,185698,-55.84540092631409,baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,185699,0.2039305028362165,peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,185699,0.0026410446767602,relative_legacy,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,185699,67.80719051126377,spot_baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,185699,16.639707577489375,spot_peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,185699,0.8310214823474402,baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,187708,32.87446511361162,baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,187708,8.352740727829426,peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,187708,0.0564811495103846,relative_legacy,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,187708,16.509818687702346,spot_peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,187708,67.62674082658896,spot_baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,189585,47.88504127467081,baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,189585,2.772986035712017,spot_peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,189585,1.3721867150279443,peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,189585,-0.0776863563297959,relative_legacy,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,189588,22.935341381503743,spot_peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,189588,75.29887351878999,baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,189588,21.6484189574743,peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,189588,0.1979299145125365,relative_legacy,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,189869,32.611481200513246,baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,189869,0.0913020488104983,relative_legacy,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,189869,22.935341381503743,spot_peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,189869,10.324157289331112,peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,190710,67.06890710337917,baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,190710,67.80719051126377,spot_baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,190710,0.1122643040892057,relative_legacy,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,190710,16.639707577489375,spot_peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,190710,15.356377245078614,peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191026,-0.9957316753351164,peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191026,28.395780164263247,spot_baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191026,2.872417356891974,baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191026,-11.728889154267964,spot_peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191026,-0.0115799923473038,relative_legacy,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191046,11.730627826014748,peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191046,0.1175751181319119,relative_legacy,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191046,32.2799981564698,baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191046,84.79969065549501,spot_baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191046,28.8710228187292,spot_peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191471,12.670581630776532,spot_peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191471,8.292565522084196,peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191471,0.0375764147797308,relative_legacy,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191471,62.29303509201767,spot_baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191471,41.804610305342784,baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191935,0.129249517469295,relative_legacy,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191935,69.59938131099001,spot_baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191935,16.55083993532988,peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191935,67.95135977154439,baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,191935,17.929738500416455,spot_peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192049,26.715124663526247,peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192049,79.94791380588678,baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192049,28.8710228187292,spot_peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192049,0.2677024898050466,relative_legacy,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192418,-1.429572898882659,relative_legacy,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192418,-97.427837867052,peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192418,-104.1490303638698,spot_peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192418,-91.42834687840056,baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192472,48.54268271702416,spot_baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192472,47.815635396848165,baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192472,1.385420372005019,peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192472,2.772986035712017,spot_peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192472,-0.0775874395868236,relative_legacy,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192924,44.99574836280035,spot_baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192924,0.2198789674020364,spot_peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192924,-0.4707892030821561,peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192924,-0.0981753651753008,relative_legacy,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,192924,38.95992203607265,baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,193275,34.97804522799336,baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,193275,-0.076334561587949,relative_legacy,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,193275,0.3398893852134728,peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,193275,1.1281601556999286,spot_peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,193275,46.25758880422043,spot_baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,195286,0.0207028447657926,relative_legacy,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,195286,8.598510390481824,peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,195286,9.937630382433904,spot_peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,195286,57.00400355406688,baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,204737,13.750352374993504,spot_baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,204737,-0.1626229455461191,relative_legacy,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,204737,5.510143117673117,baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,204737,-22.27076601834944,spot_peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,204737,-8.34615130005851,peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,208405,47.40651983945724,baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,208405,2.772986035712017,spot_peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,208405,-0.0767271260618657,relative_legacy,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,208405,1.4331898391729496,peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,215725,67.80719051126377,spot_baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,215725,11.778084937449124,peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,215725,16.639707577489375,spot_peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,215725,49.21834248285638,baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,215725,0.0805990816452224,relative_legacy,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,218666,-14.278657900366886,spot_peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,218666,-0.3001416645662861,relative_legacy,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,218666,23.71267863781407,baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,218666,24.85348361386787,spot_baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,218666,-14.919363779595132,peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,219886,8.7301762343322,spot_peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,219886,0.0041952829604268,relative_legacy,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,219886,7.409174791169115,peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,219886,52.576341606152766,baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,219886,56.81878003875468,spot_baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,220077,-14.356057374055109,peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,220077,26.303440583379377,spot_baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,220077,-13.234969177118662,spot_peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,220077,-0.2921919431519266,relative_legacy,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,220077,25.57686318438935,baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,221727,0.1965600635189428,relative_legacy,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,221727,22.935341381503743,spot_peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,221727,74.55454235272136,baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,221727,21.49871638288197,peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,222631,-0.7736189687471955,peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,222631,-0.0394441205046551,relative_legacy,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,222631,-4.922841841789863,spot_peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29941,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-15 14:08:43.489443+00,222631,11.298072534283662,baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30111 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,182315,0.0353149990707156,relative_legacy,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,182315,3.1802267426767483,spot_peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,182315,83.75385123000534,baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,182315,3.2209332431791,peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,182315,95.60566524124027,spot_baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,185690,0.4690210692003483,peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,185690,0.0051842479103016,relative_legacy,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,185690,98.33128710671213,spot_baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,185690,8.894487199201818,baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,185690,5.142147589052006,spot_peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,185698,0.0134686710085379,relative_legacy,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,185698,33.820407300085776,baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,185698,1.3618707688015854,peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,185698,1.0166869489200705,spot_peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,185698,92.5999418556223,spot_baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,185699,0.000669396550204,relative_legacy,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,185699,3.1802267426767483,spot_peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,185699,2.129207990285324,baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,185699,95.60566524124027,spot_baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,185699,0.0708259722302054,peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,187708,-0.02534688585305,relative_legacy,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,187708,87.02660703959828,spot_baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,187708,43.01694472829573,baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,187708,-1.3807976508331363,peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,187708,-2.9950367233560127,spot_peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,189585,0.006881043006813,relative_legacy,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,189585,1.237030379820181,peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,189585,1.0166869489200705,spot_peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,189585,91.3343784053484,baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,189588,0.0510018847507039,relative_legacy,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,189588,97.08536543404836,spot_baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,189588,4.482594390099034,peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,189588,4.245324836961764,spot_peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,189588,95.49450692930864,baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,189869,94.11063109464314,spot_baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,189869,0.9598162333751832,peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,189869,0.0064358058699508,relative_legacy,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,189869,2.104091165908456,spot_peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,189869,40.092809055571045,baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,190710,94.41087991079549,spot_baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,190710,2.552068639950464,peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,190710,93.4540062984046,baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,190710,0.0247429226457568,relative_legacy,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,190710,2.320212271690228,spot_peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191026,-2.571605536033189,spot_peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191026,-0.2549348336404267,peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191026,-0.0050430478385027,relative_legacy,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191026,8.863370832324513,baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191026,87.61486385170262,spot_baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191046,1.0166869489200705,spot_peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191046,0.0,relative_legacy,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191046,0.4272250473918245,peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191046,35.3172955769415,baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191471,62.19922394252484,baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191471,1.0166869489200705,spot_peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191471,92.5999418556223,spot_baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191471,0.910215959569182,peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191471,0.0022019114502969,relative_legacy,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191935,5.299609565917497,spot_peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191935,96.3599989677738,baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191935,5.518388899498386,peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191935,98.5500430304885,spot_baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,191935,0.065169444829811,relative_legacy,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192049,-0.0651900343199892,relative_legacy,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192049,80.0546376594898,baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192049,-4.597986029147007,spot_peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192049,-4.10067219516541,peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192418,-9.420171402390896,peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192418,-0.1377519220773579,relative_legacy,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192418,70.00376715628896,baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192418,-10.533667466372457,spot_peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192472,91.29441138192269,baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192472,1.2375721563002324,peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192472,1.0166869489200705,spot_peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192472,92.5999418556223,spot_baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192472,0.0068849633619833,relative_legacy,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192924,-20.30481662485572,peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192924,-0.2865943254706279,relative_legacy,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192924,58.496250072115615,spot_baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192924,-23.531378465442305,spot_peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,192924,50.74315578161783,baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,193275,89.37505017205658,spot_baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,193275,68.32511518883085,baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,193275,-0.6612635759332534,peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,193275,-0.019092216648869,relative_legacy,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,193275,-1.304611651388358,spot_peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,195286,0.0070212955000939,relative_legacy,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,195286,90.44067708337413,baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,195286,1.2496391516857246,peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,195286,1.0166869489200705,spot_peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,204737,39.64136710587376,baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,204737,5.299609565917497,spot_peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,204737,2.1863767573268675,peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,204737,0.0239340478945291,relative_legacy,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,208405,4.245324836961764,spot_peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,208405,4.465082987182216,peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,208405,0.0508341962092128,relative_legacy,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,208405,94.88257479023255,baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,208405,97.08536543404836,spot_baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,215725,4.245324836961764,spot_peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,215725,97.08536543404836,spot_baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,215725,3.3784253112899183,peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,215725,70.52667345663546,baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,215725,0.0365511674641459,relative_legacy,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,218666,92.54279292541196,baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,218666,4.033177360020977,spot_peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,218666,4.212970415841153,peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,218666,96.79063702901466,spot_baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,218666,0.0480097733333522,relative_legacy,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,219886,75.54512867322173,baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,219886,87.97057662822883,spot_baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,219886,-2.3155611006588117,spot_peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,219886,-0.0305133306171871,relative_legacy,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,219886,-1.623269988407744,peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,220077,84.79969065549501,spot_baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,220077,-4.313287440079724,peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,220077,-4.597986029147007,spot_peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,220077,82.52645030105869,baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,220077,-0.0687355950186424,relative_legacy,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,221727,0.0508277101290459,relative_legacy,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,221727,4.245324836961764,spot_peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,221727,4.4602688626438285,peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,221727,94.55066249471272,baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,221727,97.08536543404836,spot_baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,222631,89.53026213333065,spot_baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,222631,-0.3411125340791489,peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,222631,-1.1928890436825794,spot_peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,222631,26.723011568534368,baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29942,"Will a country change its official name before Jan 1, 2025?",2024-11-15 14:08:43.509669+00,222631,-0.0093113464979522,relative_legacy,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30112 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,182315,74.70705026757386,spot_peer,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,182315,0.5153123202715487,relative_legacy,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,182315,65.20856252866957,peer,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,182315,28.688114778816157,spot_baseline,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,182315,25.146091453694016,baseline,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,185690,-9.268591045983603,baseline,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,185690,-18.71308181844396,spot_peer,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,185690,-101.27519074088475,spot_baseline,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,185690,-0.045592754995969,relative_legacy,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,185690,-1.778043711847241,peer,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,185698,-173.6965594166206,spot_baseline,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,185698,-53.42016279665259,peer,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,185698,-100.66724024883534,baseline,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,185698,-0.8260860069243638,relative_legacy,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,185698,-70.77095923609588,spot_peer,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,185699,-205.8893689053569,spot_baseline,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,185699,-93.9117719649769,spot_peer,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,185699,-0.0489870224244315,relative_legacy,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,185699,-2.978952899243688,peer,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,185699,-6.530967519735447,baseline,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,187708,0.0,baseline,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,187708,54.08547973103821,spot_peer,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,187708,0.200812953012142,relative_legacy,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,187708,0.0,spot_baseline,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,187708,26.21762392322035,peer,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,188107,-110.04066826474327,baseline,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,188107,-120.64508774674265,spot_baseline,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,188107,-0.7936431118761164,relative_legacy,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,188107,-30.55049919158285,peer,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,188107,-32.63653759347037,spot_peer,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,189585,-72.69471390134451,baseline,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,189585,2.2044941650428163,peer,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,189585,1.1109705997502852,spot_peer,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,189585,-0.3343453799426467,relative_legacy,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,189585,-73.69655941662063,spot_baseline,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,189588,-132.19280948873623,spot_baseline,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,189588,-40.93726283368896,spot_peer,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,189588,-39.97246518994553,peer,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,189588,-130.03420341900215,baseline,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,189588,-0.9098331517950232,relative_legacy,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,189869,-0.0184115025730373,relative_legacy,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,189869,-21.922445558517943,baseline,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,189869,6.926894825734509,peer,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,189869,17.096967026280772,spot_peer,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,190710,-0.2869246770686152,relative_legacy,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,190710,5.751747449471496,peer,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,190710,-68.30742900834906,baseline,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,190710,4.511396670282684,spot_peer,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,190710,-68.96598793878495,spot_baseline,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191026,-2.407397369717329,baseline,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191026,36.98115021668664,spot_peer,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191026,-23.79503381922554,spot_baseline,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191026,3.6750636349689225,peer,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191026,0.0279865575972419,relative_legacy,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191046,-173.6965594166206,spot_baseline,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191046,-27.233921871489123,peer,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191046,-0.4683592517268713,relative_legacy,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191046,-70.77095923609588,spot_peer,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191046,-66.55177926165273,baseline,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191471,53.16007739269412,peer,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191471,0.4172901912853252,relative_legacy,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191471,81.29362567581506,spot_peer,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191471,37.85116232537298,spot_baseline,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191471,25.47001697921633,baseline,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191935,-51.21134784771163,peer,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191935,-145.74811750181132,baseline,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191935,-51.86353853153762,spot_peer,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191935,-1.0624430173696706,relative_legacy,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,191935,-147.39311883324126,spot_baseline,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192049,-0.8989701534620752,relative_legacy,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192049,-38.99038272617353,peer,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192049,-124.92966342291736,baseline,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192049,-132.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192049,-40.93726283368896,spot_peer,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192418,-158.86137906996368,baseline,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192418,-1.2785598800670868,relative_legacy,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192418,-70.77095923609588,spot_peer,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192418,-65.95254171653093,peer,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192472,-0.1148704587777677,relative_legacy,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192472,17.096967026280772,spot_peer,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192472,-51.45731728297583,spot_baseline,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192472,-50.77517988028532,baseline,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192472,18.30382774861875,peer,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192924,22.156778853840933,spot_baseline,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192924,60.42865171061141,peer,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192924,0.4493623807593653,relative_legacy,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192924,19.26334591198755,baseline,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,192924,70.01219996063976,spot_peer,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,193275,73.68196412493987,spot_peer,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,193275,27.26204546629918,spot_baseline,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,193275,21.13336599772694,baseline,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,193275,55.54113710203469,peer,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,193275,0.397890757477391,relative_legacy,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,195286,-0.9091189226662568,relative_legacy,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,195286,-129.88098400746549,baseline,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,195286,-132.19280948873623,spot_baseline,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,195286,-39.93194567717731,peer,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,195286,-40.93726283368896,spot_peer,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,204737,-20.774939229729355,baseline,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,204737,-0.0069364392851514,relative_legacy,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,204737,-51.45731728297583,spot_baseline,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,204737,6.737614078265611,peer,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,204737,17.096967026280772,spot_peer,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,208405,-100.0,spot_baseline,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,208405,-16.7923256644342,peer,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,208405,-17.79645010480796,spot_peer,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,208405,-97.7571582626413,baseline,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,208405,-0.5947299402749421,relative_legacy,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,215725,27.52194458355497,baseline,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,215725,57.56578831243871,peer,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,215725,81.29362567581506,spot_peer,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,215725,37.85116232537298,spot_baseline,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,215725,0.4474348189248431,relative_legacy,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,218666,-68.77014937146353,baseline,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,218666,2.959831411259027,peer,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,218666,-0.324438807483708,relative_legacy,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,218666,2.48454967012281,spot_peer,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,218666,-71.78567712185016,spot_baseline,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,219886,0.1310918196528455,relative_legacy,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,219886,-17.755536059538315,spot_baseline,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,219886,-15.958048366459272,baseline,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,219886,41.32245775874252,spot_peer,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,219886,36.95890517873606,peer,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,220077,30.944667002157207,spot_peer,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,220077,-32.19280948873623,spot_baseline,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,220077,-31.36634117147887,baseline,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,220077,0.0659341972244336,relative_legacy,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,220077,31.554059633289317,peer,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,221727,-173.6965594166206,spot_baseline,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,221727,-1.3124604083471447,relative_legacy,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,221727,-169.1630028314542,baseline,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,221727,-70.77095923609588,spot_peer,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,221727,-69.27959786312104,peer,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,222631,-15.823946334063942,baseline,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,222631,17.096967026280772,spot_peer,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,222631,4.897908060853897,peer,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29943,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-15 14:08:43.53065+00,222631,-0.0044865920931181,relative_legacy,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30113 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,182315,-0.0733984456765588,spot_peer,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,182315,-0.0366028895328642,relative_legacy,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,182315,-4.538473289027316,peer,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,182315,-18.442457113742744,spot_baseline,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,182315,-16.17737732370066,baseline,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,185690,-0.649400236121347,peer,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,185690,-2.582947362335465,baseline,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,185690,-27.91086837524372,spot_baseline,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,185690,0.0048340237213944,relative_legacy,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,185690,-6.879475185238043,spot_peer,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,185698,-0.4123759221030383,relative_legacy,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,185698,-51.45731728297583,spot_baseline,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,185698,-23.80511706792742,spot_peer,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,185698,-30.091887687367308,peer,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,185698,-46.90151663803338,baseline,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,185699,-62.93192622333891,spot_peer,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,185699,-105.88936890535685,spot_baseline,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,185699,-0.0274335627593511,relative_legacy,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,185699,-4.381713350881507,baseline,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,185699,-2.60412980245408,peer,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,187708,-17.078914336453114,peer,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,187708,-29.90709484808346,spot_peer,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,187708,-0.228690341624865,relative_legacy,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,187708,-30.455964326536197,baseline,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,187708,-59.94620704162712,spot_baseline,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,188107,30.2928678450046,peer,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,188107,31.394720836358523,baseline,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,188107,37.69778743608355,spot_peer,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,188107,0.4569141337381983,relative_legacy,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,188107,34.10369178350671,spot_baseline,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,189585,57.69541410559842,baseline,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,189585,55.231629070269285,spot_peer,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,189585,49.58615438624922,peer,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,189585,0.732930257804009,relative_legacy,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,189588,40.39154158160688,spot_peer,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,189588,34.54417753787064,peer,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,189588,0.5286453327308595,relative_legacy,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,189588,37.17633262933342,baseline,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,189869,32.09081634138827,spot_peer,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,189869,0.172808572751848,relative_legacy,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,189869,11.206415168084066,baseline,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,189869,12.3132431794383,peer,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,190710,31.46252611994138,peer,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,190710,33.04642662545955,baseline,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,190710,37.15053707007012,spot_peer,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,190710,0.4850437433912503,relative_legacy,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,190710,33.34237337251918,spot_baseline,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191026,-133.144310911047,spot_baseline,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191026,-82.52330451266967,spot_peer,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191026,-8.36998531007383,peer,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191026,-0.1006308802081321,relative_legacy,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191026,-13.471358504755663,baseline,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191046,14.294612848475472,peer,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191046,0.2012270293886281,relative_legacy,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191046,40.39154158160688,spot_peer,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191046,14.39929478299764,baseline,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191046,37.85116232537298,spot_baseline,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191471,3.2631773270162423,peer,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191471,8.95000361250726,spot_peer,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191471,0.0525080413935379,relative_legacy,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191471,-3.967438481454459,baseline,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191471,-5.889368905356857,spot_baseline,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191935,-78.58751946471526,spot_baseline,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191935,-0.6202517299191111,relative_legacy,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191935,-43.30682996452857,spot_peer,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191935,-49.5669727653379,peer,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,191935,-77.60175234726626,baseline,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192049,54.33016783339479,peer,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192049,0.7972674482262027,relative_legacy,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192049,61.924512743795184,spot_peer,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192049,64.17765720344767,baseline,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192418,-47.0701931418196,baseline,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192418,-0.3262030479894667,relative_legacy,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192418,-23.80511706792742,spot_peer,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192418,-26.917861621857,peer,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192472,18.676078701105723,baseline,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192472,0.3423900506412421,relative_legacy,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192472,18.903382439001685,spot_baseline,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192472,26.77151173823488,spot_peer,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192472,20.99997593647061,peer,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192924,0.9663229651711708,peer,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192924,-9.850554495242504,spot_baseline,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192924,6.102626966118008,spot_peer,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192924,-8.579005687747122,baseline,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,192924,0.0382253665498593,relative_legacy,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,193275,11.721284960437265,spot_peer,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,193275,-2.0340448284175534,spot_baseline,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,193275,5.722561336317035,peer,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,193275,0.0928525544216279,relative_legacy,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,193275,-1.4535587377155783,baseline,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,195286,32.09081634138827,spot_peer,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,195286,0.4159650233302055,relative_legacy,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,195286,25.72362380801095,baseline,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,195286,26.303440583379377,spot_baseline,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,195286,26.20506066845491,peer,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,204737,26.303440583379377,spot_baseline,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,204737,11.757092720605408,peer,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,204737,32.09081634138827,spot_peer,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,204737,10.659704810863646,baseline,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,204737,0.1652940563517128,relative_legacy,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,208405,-51.45731728297583,spot_baseline,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,208405,-29.37346218834024,peer,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,208405,-23.80511706792742,spot_peer,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,208405,-50.27972882248791,baseline,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,208405,-0.343905272563332,relative_legacy,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,215725,-32.40910924042473,peer,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,215725,-53.64018930320266,baseline,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,215725,-73.69655941662063,spot_baseline,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,215725,-0.4342253225398152,relative_legacy,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,215725,-39.7911134944579,spot_peer,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,218666,-51.45731728297583,spot_baseline,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,218666,-0.3315386031740776,relative_legacy,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,218666,-28.590759165569278,peer,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,218666,-49.397043837490585,baseline,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,218666,-23.80511706792742,spot_peer,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,219886,-78.12160514632855,spot_peer,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,219886,-1.0451358716666137,relative_legacy,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,219886,-120.0899600644917,baseline,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,219886,-80.14834858333093,peer,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,219886,-127.02079784400344,spot_baseline,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,220077,0.7301119014072383,relative_legacy,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,220077,49.14863295495784,peer,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,220077,57.08235668526582,baseline,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,220077,55.231629070269285,spot_peer,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,221727,-23.80511706792742,spot_peer,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,221727,-0.3413776705413247,relative_legacy,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,221727,-50.11737113974035,baseline,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,221727,-29.21490806954177,peer,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,222631,-0.0658856682278215,relative_legacy,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,222631,-15.276721695204378,spot_peer,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,222631,-5.332361363468555,peer,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,222631,-11.944809308254063,baseline,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29944,Will Astro Bot win the Game of the Year 2024 award?,2024-11-15 14:08:43.551807+00,222631,-39.592867633113926,spot_baseline,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30114 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,182315,78.6747312729318,peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,182315,51.3446763351228,baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,182315,80.31850456081476,spot_peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,182315,1.1070441727201712,relative_legacy,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,182315,58.496250072115615,spot_baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,185690,0.2833699716346895,baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,185690,40.54401817567964,spot_peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,185690,0.0166947225115148,relative_legacy,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,185690,3.896973319464231,peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,185690,3.026544285766928,spot_baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,185698,-61.03387923065091,baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,185698,-86.17507258754044,spot_peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,185698,-28.79043242641074,peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,185698,-173.6965594166206,spot_baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,185698,-0.4164241434103822,relative_legacy,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,185699,70.18260024769022,spot_peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,185699,3.705283628193177,peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,185699,44.36066514756145,spot_baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,185699,2.3420170487688456,baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,185699,0.0310744020299035,relative_legacy,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,187708,-15.16713886305949,baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,187708,17.338570202932548,spot_peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,187708,11.720261606420392,peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,187708,0.135008185589882,relative_legacy,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,187708,-29.335894269059175,spot_baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,188107,70.78192485066896,spot_baseline,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,188107,89.12793300981201,spot_peer,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,188107,65.4513946198109,baseline,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,188107,1.3091065193485154,relative_legacy,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,188107,91.75706482112888,peer,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,189585,-327.8616317298456,baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,189585,-199.82461969113797,spot_peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,189585,-2.582239245088528,relative_legacy,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,189585,-332.1928094887361,spot_baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,189585,-191.3489846252307,peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,189588,-173.6965594166206,spot_baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,189588,-170.99790376905312,baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,189588,-1.0120416574949966,relative_legacy,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,189588,-86.17507258754044,spot_peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,189588,-76.86011608631048,peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,189869,80.31850456081476,spot_peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,189869,0.4612165405952916,relative_legacy,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,189869,36.16927802319741,peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,189869,24.92268448045857,baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,190710,81.55754288625727,spot_baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,190710,106.79895752109216,peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,190710,1.5016530859351664,relative_legacy,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,190710,96.85457707204536,spot_peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,190710,80.89523259887713,baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191026,34.52632230592918,spot_baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191026,0.0510133480327474,relative_legacy,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191026,6.521043689775223,peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191026,63.13089644078956,spot_peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191026,3.493546933984677,baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191046,0.552664546558706,relative_legacy,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191046,104.77251608470064,spot_peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191046,41.78429435042454,peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191046,35.40445549413946,baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191284,-73.52656950424858,peer,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191284,-0.9547620136722276,relative_legacy,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191284,-173.6965594166206,spot_baseline,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191284,-163.6923052423874,baseline,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191284,-86.17507258754044,spot_peer,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191471,-83.65012677171204,spot_baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191471,-56.41019616247495,baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191471,-10.219041366331002,peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191471,-21.607385442058327,spot_peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191471,-0.1458053117089187,relative_legacy,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191935,13.750352374993504,spot_baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191935,13.4654716940987,baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191935,48.23351197765894,spot_peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191935,57.22826703291732,peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,191935,0.8252839805841328,relative_legacy,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192049,-114.20676399154507,peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192049,-1.5102138746376714,relative_legacy,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192049,-220.0875122751131,baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192049,-232.1928094887363,spot_baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192049,-128.11973894355748,spot_peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192418,-86.17507258754044,spot_peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192418,-0.9377233780272703,relative_legacy,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192418,-71.63841512503012,peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192418,-158.91672476650007,baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192472,57.84723956957525,baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192472,90.12262550442703,peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192472,80.31850456081476,spot_peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192472,1.273598786974267,relative_legacy,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192924,-82.11260418302045,spot_baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192924,-0.1246336524687967,relative_legacy,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192924,-20.504906703369908,spot_peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192924,-71.66145751003886,baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,192924,-10.77261804441448,peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,193275,-87.73769654533758,baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,193275,-26.87464210179526,peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,193275,-110.78032895345152,spot_baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,193275,-41.061064563052106,spot_peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,193275,-0.3542675173395155,relative_legacy,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,195286,-31.51628429147226,baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,195286,-32.19280948873623,spot_baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,195286,24.45871284892162,peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,195286,0.375460574540745,relative_legacy,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,195286,15.290022551603638,spot_peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,204737,-6.186460201652724,baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,204737,12.921616753788982,peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,204737,-15.200309344505014,spot_baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,204737,27.47447451605707,spot_peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,204737,0.1439890066019773,relative_legacy,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,208405,25.457489271710045,baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,208405,57.23468890762062,spot_peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,208405,65.97769026919107,peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,208405,0.9447779187840524,relative_legacy,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,215725,104.77251608470064,spot_peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,215725,82.0143786124945,peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,215725,67.454373232693,baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,215725,1.1372556216299523,relative_legacy,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,218666,-0.804388959168707,relative_legacy,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,218666,-149.70963067751077,baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,218666,-73.22716124747085,spot_peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,218666,-62.36123093323791,peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,218666,-155.6393348524385,spot_baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,218945,-0.27016079085495,relative_legacy,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,218945,-81.35736463550064,baseline,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,218945,-20.92306059555084,peer,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,218945,-33.331042542782804,spot_peer,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,218945,-100.0,spot_baseline,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,219886,1.4996461028805352,relative_legacy,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,219886,99.28275184981872,spot_peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,219886,84.94388807288566,spot_baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,219886,80.97248137406972,baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,219886,104.82793651094178,peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,220077,48.54268271702416,spot_baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,220077,81.80532582560754,peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,220077,47.42057798302647,baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,220077,73.18131095871631,spot_peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,220077,1.1645820553217328,relative_legacy,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,221727,-2.546417369280223,relative_legacy,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,221727,-199.82461969113797,spot_peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,221727,-188.42650814978128,peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,221727,-332.1928094887361,spot_baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,221727,-323.7361142519152,baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,222631,-51.9480934249725,baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,222631,-173.6965594166206,spot_baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,222631,-0.3409114166930964,relative_legacy,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,222631,-24.43605864103105,peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29945,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-15 14:08:43.857465+00,222631,-86.17507258754044,spot_peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30115 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,182315,-41.87924526596882,spot_peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,182315,-37.08061048225564,peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,182315,-0.509799731396459,relative_legacy,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,182315,0.0,spot_baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,182315,0.0,baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,185690,-0.6794502768701902,peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,185690,-0.0086403552539925,relative_legacy,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,185690,48.17122620033039,spot_baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,185690,-7.338124964374625,spot_peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,185690,4.559215216913313,baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,185698,24.286424834072744,baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,185698,76.55347463629771,spot_baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,185698,0.0406976986381136,relative_legacy,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,185698,2.727649440750059,peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,185698,13.01333243011779,spot_peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,185699,4.150143251776837,baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,185699,65.99245584023782,spot_baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,185699,5.440566496673491,spot_peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,185699,0.3446575209705739,peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,185699,0.0054429711167992,relative_legacy,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,187708,-0.3669859906275609,peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,187708,30.02532613035677,baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,187708,-0.7654932234619004,spot_peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,187708,57.33745264459444,spot_baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,187708,-0.0020148463519807,relative_legacy,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,188107,3.457471726909324,spot_peer,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,188107,0.0456084289334812,relative_legacy,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,188107,3.1404175822141065,peer,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,188107,59.30437262609573,baseline,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,188107,63.22682154995129,spot_baseline,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,189585,0.3323491128240882,relative_legacy,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,189585,24.519432613934097,spot_peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,189585,91.40782311043117,baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,189585,24.074306589272584,peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,189588,57.58772496896125,baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,189588,-0.4162546579951365,peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,189588,0.0654210900481901,spot_peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,189588,-0.0038100600199593,relative_legacy,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,189869,-14.738114458986972,spot_peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,189869,-6.270487703461522,peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,189869,16.127431902502966,baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,189869,-0.0839102348596352,relative_legacy,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,190710,12.543967570842447,peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,190710,76.55347463629771,spot_baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,190710,76.00576118434523,baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,190710,0.1741022007978294,relative_legacy,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,190710,13.01333243011779,spot_peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191026,5.79086510258049,baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191026,-0.844775709083625,spot_peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191026,-6.953401977538579e-05,relative_legacy,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191026,-0.069153055764713,peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191026,57.22688487738648,spot_baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191046,48.54268271702416,spot_baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191046,-7.071772512050231,spot_peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191046,18.506415403057893,baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191046,-2.6742923818456164,peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191046,-0.0340937977577916,relative_legacy,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191284,-22.137112062343093,peer,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191284,24.78834040766731,baseline,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191284,26.303440583379377,spot_baseline,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191284,-0.3025604309171787,relative_legacy,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191284,-23.01839456314592,spot_peer,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191471,6.3581610535598605,peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191471,71.36958148433591,spot_baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191471,0.0909657833144439,relative_legacy,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191471,9.296228027421586,spot_peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191471,48.18416110677955,baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191935,67.80719051126377,spot_baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191935,67.12686859168507,baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191935,6.224663604616758,peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191935,6.74181982841764,spot_peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,191935,0.0875168901987764,relative_legacy,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192049,64.36059087386828,baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192049,6.271242990778502,peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192049,6.74181982841764,spot_peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192049,0.0885705612987902,relative_legacy,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192418,0.0654210900481901,spot_peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192418,0.0023205114288481,relative_legacy,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192418,0.0205423640282007,peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192418,53.528011558777806,baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192472,8.798820804692367,peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192472,71.36958148433591,spot_baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192472,70.63552058992717,baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192472,0.1227855902737664,relative_legacy,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192472,9.296228027421586,spot_peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192924,51.18144660332521,baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192924,0.0040533113835935,relative_legacy,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192924,0.0654210900481901,spot_peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192924,58.496250072115615,spot_baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,192924,0.176611125227058,peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,193275,55.97472620634336,baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,193275,0.0953491230783308,relative_legacy,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,193275,6.818650119989447,peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,193275,10.923397190374398,spot_peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,193275,73.63884007034605,spot_baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,195286,0.173949767121684,relative_legacy,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,195286,13.01333243011779,spot_peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,195286,75.35284548966517,baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,195286,12.530665160382982,peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,204737,21.98407892130672,spot_peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,204737,9.044058320291864,peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,204737,89.06412439634438,spot_baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,204737,0.1288162126812415,relative_legacy,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,204737,36.40986676916808,baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,208405,0.173605891489566,relative_legacy,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,208405,12.510641766568726,peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,208405,13.01333243011779,spot_peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,208405,75.01122458198778,baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,215725,35.39174809597034,baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,215725,-0.0685166680180859,relative_legacy,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,215725,-7.071772512050231,spot_peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,215725,48.54268271702416,spot_baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,215725,-5.141915293346743,peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,218666,77.23079749584033,spot_baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,218666,12.874160369117728,peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,218666,74.4231507971372,baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,218666,0.1788651035838314,relative_legacy,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,218666,13.49900597882892,spot_peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,218945,-0.3601604969319031,relative_legacy,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,218945,-26.12754936622377,peer,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,218945,11.192239874312586,baseline,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,218945,13.750352374993504,spot_baseline,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,218945,-32.01957149310761,spot_peer,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,219886,-26.432112131059466,peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,219886,-0.361434272806819,relative_legacy,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,219886,21.515131052060507,baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,219886,-26.139134623481027,spot_peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,219886,21.951240248062025,spot_baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,220077,66.32500147237424,baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,220077,6.74181982841764,spot_peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,220077,0.0880548897304951,relative_legacy,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,220077,6.280312606125509,peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,221727,0.0654210900481901,spot_peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,221727,-0.0027017978507682,relative_legacy,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,221727,-0.3228695153232576,peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,221727,57.01814899544304,baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,222631,-10.07048322307634,spot_peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,222631,44.36066514756145,spot_baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,222631,-3.0207360723121184,peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,222631,-0.0393867463845342,relative_legacy,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29946,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.878018+00,222631,13.214026195523484,baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30116 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,182315,-0.3729279261303362,relative_legacy,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,182315,-17.396959011192436,spot_peer,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,182315,-164.38561897747246,spot_baseline,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,182315,-144.49430012119478,baseline,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,182315,-18.705702430350872,peer,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,185690,-7.958026024798534,baseline,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,185690,-83.05880480086452,spot_baseline,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,185690,40.91833610995071,spot_peer,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,185690,3.9301183746050894,peer,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,185690,0.0405967564572684,relative_legacy,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,185698,-0.6669738721695997,relative_legacy,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,185698,-48.050193930384914,peer,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,185698,-116.86750057782228,baseline,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,185698,-137.72290485315943,spot_peer,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,185698,-332.1928094887362,spot_baseline,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,185699,-9.110001423013609,baseline,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,185699,0.7813405828346721,peer,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,185699,0.0,relative_legacy,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,185699,-125.15387669959644,spot_baseline,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,185699,10.734115004356704,spot_peer,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,187708,-37.2974996298948,spot_peer,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,187708,-20.2530503315435,peer,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,187708,-192.13901653036336,spot_baseline,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,187708,-0.299264156080896,relative_legacy,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,187708,-102.4165708775824,baseline,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,188107,-126.30344058337936,spot_baseline,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,188107,-0.047493596470112,relative_legacy,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,188107,9.9098215923729,spot_peer,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,188107,-119.07338888788728,baseline,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,188107,5.842450781466804,peer,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,189585,-332.1928094887362,spot_baseline,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,189585,-141.70469499210745,peer,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,189585,-137.72290485315943,spot_peer,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,189585,-327.9210987667781,baseline,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,189585,-2.069550788730998,relative_legacy,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,189588,0.6976821959935791,relative_legacy,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,189588,-50.650782981830346,baseline,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,189588,63.578145049114354,spot_peer,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,189588,60.022121349455865,peer,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,189869,-232.19280948873623,spot_baseline,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,189869,-98.94886461448748,baseline,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,189869,-27.788133300301133,peer,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,189869,-0.3741967803865995,relative_legacy,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,189869,-66.01802410557887,spot_peer,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,190710,-124.34941738985192,baseline,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,190710,-125.15387669959644,spot_baseline,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,190710,10.734115004356704,spot_peer,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,190710,-0.0259717801407934,relative_legacy,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,190710,7.309092140064246,peer,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191026,-14.96499545222978,baseline,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191026,-0.5442266879803932,peer,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191026,-0.0215051926735786,relative_legacy,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191026,-5.558255507262498,spot_peer,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191026,-147.87530143632043,spot_baseline,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191046,0.2631775769903674,relative_legacy,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191046,-73.69655941662063,spot_baseline,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191046,18.707006238394367,peer,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191046,47.631522998018674,spot_peer,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191046,-28.07083528383564,baseline,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191284,41.847040934852565,peer,000_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191284,47.631522998018674,spot_peer,000_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191284,0.4481131611658288,relative_legacy,000_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191284,-69.45124905729618,baseline,000_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191284,-73.69655941662063,spot_baseline,000_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191471,18.07281066618482,peer,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191471,28.770672295195794,spot_peer,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191471,-67.5768811688931,baseline,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191471,0.1918678527883933,relative_legacy,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191471,-100.0,spot_baseline,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191935,-38.87689329859704,spot_peer,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191935,-194.3416471633633,spot_baseline,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191935,-192.3923408668657,baseline,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191935,-0.7107228267670359,relative_legacy,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,191935,-42.669813632494495,peer,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192049,-232.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192049,-67.18583948397045,peer,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192049,-66.01802410557887,spot_peer,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192049,-220.6846496770501,baseline,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192049,-1.0505569520778475,relative_legacy,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192418,-47.09431321431863,baseline,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192418,55.334359521935056,peer,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192418,63.578145049114354,spot_peer,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192418,0.6382106436885505,relative_legacy,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192472,0.4837834343161435,relative_legacy,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192472,-73.00653713361503,baseline,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192472,47.631522998018674,spot_peer,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192472,-73.69655941662063,spot_baseline,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192472,44.54542028002801,peer,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192924,-3.5025792586827134,spot_peer,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192924,-6.337007186502088,peer,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192924,-0.2017124395220423,relative_legacy,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192924,-145.00844463780444,spot_baseline,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,192924,-127.1575718721545,baseline,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,193275,-169.89977439671858,spot_baseline,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,193275,-21.35087757879911,spot_peer,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,193275,-0.3030601261809023,relative_legacy,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,193275,-13.90642876785591,peer,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,193275,-129.08512436329963,baseline,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,195286,-232.19280948873623,spot_baseline,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,195286,-228.5486783652416,baseline,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,195286,-69.59415639152026,peer,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,195286,-66.01802410557887,spot_peer,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,195286,-1.0813224994117734,relative_legacy,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,204737,-107.1359019039816,baseline,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,204737,-0.4783824718766031,relative_legacy,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,204737,-260.82322800440033,spot_baseline,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,204737,-86.54743155976905,spot_peer,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,204737,-35.1720109547566,peer,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,208405,0.8792443595327143,relative_legacy,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,208405,-31.679932198479065,baseline,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,208405,-32.19280948873623,spot_baseline,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,208405,73.25054337935684,peer,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,208405,77.39173738958223,spot_peer,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,215725,-100.0,spot_baseline,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,215725,-72.97590253474536,baseline,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,215725,0.1932446062414037,relative_legacy,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,215725,28.770672295195794,spot_peer,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,215725,19.23019783052857,peer,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,218666,-164.05619420455588,baseline,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,218666,-0.4585008648599968,relative_legacy,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,218666,-21.35087757879911,spot_peer,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,218666,-24.57625131260102,peer,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,218666,-169.89977439671858,spot_baseline,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,218945,35.4545018490985,peer,SeidrBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,218945,0.3788953673817235,relative_legacy,SeidrBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,218945,-61.19375059419588,baseline,SeidrBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,218945,46.59183308213921,spot_peer,SeidrBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,218945,-75.14651638613213,spot_baseline,SeidrBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,219886,0.1706046370059116,relative_legacy,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,219886,-94.22699882014744,baseline,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,219886,26.942193845539748,spot_peer,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,219886,-102.5500055653014,spot_baseline,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,219886,21.49027751451751,peer,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,220077,-24.073357749561872,spot_peer,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,220077,-27.62846036502018,peer,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,220077,-173.6965594166206,spot_baseline,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,220077,-0.5062200437311922,relative_legacy,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,220077,-170.39888369997195,baseline,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,221727,127.61668384975818,spot_peer,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,221727,36.87042472523084,baseline,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,221727,122.5116061462462,peer,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,221727,1.5554641591806584,relative_legacy,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,222631,-20.486467880513132,baseline,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,222631,-68.96598793878495,spot_baseline,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,222631,51.0235736348798,spot_peer,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,222631,0.2106756556044047,relative_legacy,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29947,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.898564+00,222631,15.787082177819569,peer,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30117 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,182315,0.122215765938273,relative_legacy,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,182315,18.953289808439298,spot_peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,182315,18.91203631209728,peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,182315,67.34166243095518,baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,182315,76.55347463629771,spot_baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,185690,-0.0185551718884136,relative_legacy,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,185690,-0.5238462269326412,peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,185690,4.105805077283719,baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,185690,-5.508835623906933,spot_peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,185690,42.43846715380966,spot_baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,185698,92.5999418556223,spot_baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,185698,30.459389992255623,spot_peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,185698,10.898770133073397,peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,185698,0.1023420953952843,relative_legacy,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,185698,32.59572827259196,baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,185699,0.0105037286038325,relative_legacy,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,185699,17.729035569094183,spot_peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,185699,6.114046452999128,baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,185699,1.4482533263781106,peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,185699,74.84612330040356,spot_baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,187708,0.0039428199160348,relative_legacy,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,187708,5.806880022970441,peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,187708,63.41285575250407,spot_baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,187708,9.530824708321026,spot_peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,187708,34.35232337653987,baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,188107,25.351840729110545,peer,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,188107,0.1926366143919299,relative_legacy,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,188107,79.03225532442369,baseline,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,188107,83.45763907926283,spot_baseline,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,188107,23.903912688884315,spot_peer,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,189585,-51.45731728297583,spot_baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,189585,-1.127039376031778,relative_legacy,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,189585,-70.18658858686074,peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,189585,-72.83669588130925,spot_peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,189585,-50.76746129923059,baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,189588,8.83954364279232,peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,189588,-0.0419131571645841,relative_legacy,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,189588,6.005378468369725,spot_peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,189588,57.58641041926385,baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,189869,0.1029176486260123,relative_legacy,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,189869,87.97057662822883,spot_baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,189869,37.48999346908815,baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,189869,11.852542487761845,peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,189869,27.13990917658316,spot_peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,190710,73.81192887825765,spot_baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,190710,19.913250725949364,peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,190710,16.98746769199633,spot_peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,190710,73.41818060875087,baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,190710,0.1093789083069799,relative_legacy,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191026,6.803023415897779,spot_peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191026,6.032793841548556,baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191026,59.60864986863153,spot_baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191026,-0.0019434919441543,relative_legacy,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191026,0.699876617325145,peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191046,18.541457659491204,baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191046,48.54268271702416,spot_baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191046,-1.1318151337287072,spot_peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191046,-0.0571965799107277,relative_legacy,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191046,-0.2546468688599151,peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191284,63.90083811687061,baseline,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191284,67.80719051126377,spot_baseline,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191284,12.68177720673916,spot_peer,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191284,14.499680616302967,peer,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191284,0.045083110930567,relative_legacy,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191471,52.60688116675877,spot_baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191471,35.58100794595828,baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191471,-0.0625247891813392,relative_legacy,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191471,2.3469182387642245,peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191471,1.782413517998491,spot_peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191935,0.2180428109125093,relative_legacy,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191935,84.79969065549501,spot_baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191935,24.866229171192607,spot_peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191935,27.833073472561296,peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,191935,83.94942898575356,baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192049,30.459389992255623,spot_peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192049,0.2803495291267934,relative_legacy,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192049,88.12738710119167,baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192049,31.832137038535897,peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192418,-21.8829034217311,peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192418,-26.07961411478608,spot_peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192418,13.750352374993504,spot_baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192418,12.586766323024372,baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192418,-0.4495467771532516,relative_legacy,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192472,6.005378468369725,spot_peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192472,-0.042472334764215,relative_legacy,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192472,57.997614084803104,baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192472,8.81979353396799,peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192924,42.6456193002643,baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192924,-0.1239564068712895,relative_legacy,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192924,-1.1318151337287072,spot_peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192924,48.54268271702416,spot_baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,192924,1.0473660853532456,peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,193275,25.054807405267063,peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,193275,73.14075757910918,baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,193275,29.034006989893804,spot_peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,193275,0.2219107909416612,relative_legacy,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,193275,90.61209529971,spot_baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,195286,83.46792936984235,baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,195286,27.68976364215959,peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,195286,24.866229171192607,spot_peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,195286,0.2170066900805946,relative_legacy,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,204737,6.522718288948583,peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,204737,29.437802709610352,baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,204737,71.36958148433591,spot_baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,204737,15.236185405743102,spot_peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,204737,0.0310802991348412,relative_legacy,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,208405,-73.69655941662059,spot_baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,208405,-88.78331793240493,spot_peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,208405,-1.3362290871360931,relative_legacy,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,208405,-85.37218557754504,peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,208405,-72.10529679418062,baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,215725,58.496250072115615,spot_baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,215725,42.72272205355337,baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,215725,6.005378468369725,spot_peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,215725,5.778706679068236,peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,215725,-0.0226916576269462,relative_legacy,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,218666,13.197729776846645,spot_peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,218666,0.0528435275242931,relative_legacy,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,218666,15.610835134745331,peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,218666,68.52674065168416,spot_baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,218666,66.30913108147836,baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,218945,-0.6309512294556162,relative_legacy,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,218945,-46.83865157638794,spot_peer,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,218945,-15.200309344505014,spot_baseline,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,218945,-36.73798698705044,peer,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,218945,-12.383690217773747,baseline,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,219886,79.75834896377998,baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,219886,82.03546285674358,spot_baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,219886,22.88414292450644,spot_peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,219886,0.1855932083354655,relative_legacy,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,219886,25.297365109562666,peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,220077,37.18497572416983,baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,220077,-0.2447141243075673,relative_legacy,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,220077,-8.798157080665447,spot_peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,220077,-5.935726270950244,peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,221727,-50.15762498717007,baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,221727,-1.1145128103146844,relative_legacy,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,221727,-69.23600522121104,peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,221727,-72.83669588130925,spot_peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,222631,21.412480535284764,spot_baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,222631,6.565872799628459,baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,222631,-5.92627008155451,peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,222631,-0.1223920905707521,relative_legacy,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29948,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.918331+00,222631,-20.58549425472245,spot_peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30118 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,182315,0.3989554565727291,relative_legacy,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,182315,65.87820786183993,baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,182315,38.314737222416056,spot_peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,182315,39.745270195519545,peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,182315,74.84612330040356,spot_baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,185690,1.505812052119671,peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,185690,15.311271588958284,spot_peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,185690,4.1882396502311305,baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,185690,-0.0216641051748144,relative_legacy,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,185690,42.8035163281905,spot_baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,185698,19.01655043265661,peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,185698,51.0602468294146,spot_peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,185698,32.61401283941662,baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,185698,0.1512748897237908,relative_legacy,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,185698,92.5999418556223,spot_baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,185699,6.564391113046453,baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,185699,35.818919380299086,spot_peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,185699,71.36958148433591,spot_baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,185699,0.0046102291207934,relative_legacy,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,185699,3.2945323647521807,peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,187708,36.65511588462702,baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,187708,66.72109124808708,spot_baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,187708,32.481756911285764,spot_peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,187708,20.419133401430415,peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,187708,0.1539411799508009,relative_legacy,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,188107,35.99392247195645,baseline,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,188107,37.85116232537298,spot_baseline,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,188107,17.417352656811733,peer,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,188107,0.0734301829901435,relative_legacy,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,188107,11.755964581406726,spot_peer,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,189585,-72.74968821881872,baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,189585,-1.0272699125450395,relative_legacy,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,189585,-68.32441669991819,spot_peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,189585,-73.69655941662059,spot_baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,189585,-62.44012474634898,peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,189869,18.372668197520067,peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,189869,0.1305897482892791,relative_legacy,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,189869,39.540448907284215,spot_peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,189869,32.62603965037787,baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,190710,-0.987075965096866,relative_legacy,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,190710,-68.65307917083602,baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,190710,-64.92832790753698,spot_peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,190710,-68.96598793878492,spot_baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,190710,-59.58168702769498,peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191026,37.58838362253405,spot_peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191026,0.0090435382352371,relative_legacy,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191026,3.8190190318421946,peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191026,7.473107958549932,baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191026,73.83435127897302,spot_baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191046,-52.35881057495216,spot_peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191046,-51.45731728297583,spot_baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191046,-0.3790898602108917,relative_legacy,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191046,-19.64479278397895,baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191046,-18.86288511746168,peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191284,-43.95413965552037,peer,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191284,-52.35881057495216,spot_peer,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191284,-0.7682004669994484,relative_legacy,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191284,-51.45731728297583,spot_baseline,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191284,-48.49265778738332,baseline,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191471,-5.546065615849782,spot_peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191471,13.750352374993504,spot_baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191471,-0.1370685346037748,relative_legacy,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191471,-0.0041077883449131,peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191471,9.33270304771118,baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191935,0.472582960326788,relative_legacy,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191935,40.75182445418617,spot_peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191935,77.45657712736984,baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191935,47.2938748696063,peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,191935,78.24085649273731,spot_baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192049,24.86792010491518,peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192049,46.26269946443136,baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192049,19.43143312589933,spot_peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192049,0.1750993874326367,relative_legacy,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192418,-0.7441990941573532,relative_legacy,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192418,-52.35881057495216,spot_peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192418,-47.1097585789556,baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192418,-42.62229415127941,peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192472,52.303429617320006,peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192472,84.15592480477747,baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192472,45.46042748356462,spot_peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192472,84.79969065549501,spot_baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192472,0.5389075361763515,relative_legacy,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192924,-8.797882643562273,spot_peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192924,9.22074380970886,spot_baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192924,8.119078965439236,baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192924,-0.1786672980151228,relative_legacy,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,192924,-2.21214156991921,peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,193275,0.2263742214255479,relative_legacy,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,193275,30.24014899876735,spot_peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,193275,46.58473884285664,baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,193275,26.18940907419792,peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,193275,63.598650374562304,spot_baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,195286,25.61900321419799,peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,195286,47.77978955395847,baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,195286,0.1760471389389052,relative_legacy,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,195286,19.43143312589933,spot_peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,204737,2.8224053308179253,peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,204737,3.4658270009332828,spot_peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,204737,26.303440583379377,spot_baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,204737,-0.0822236309418624,relative_legacy,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,204737,10.903717351166405,baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,208405,-32.19280948873623,spot_baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,208405,-0.6143100665038543,relative_legacy,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,208405,-31.538048174658496,baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,208405,-38.52877348169802,spot_peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,208405,-32.201381671627146,peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,215725,-37.61501896549392,baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,215725,-0.6113654295252074,relative_legacy,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,215725,-34.27708376208776,peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,215725,-52.35881057495216,spot_peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,218666,0.348973337658092,relative_legacy,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,218666,64.33746683477513,baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,218666,66.35723354175227,spot_baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,218666,32.22054257718367,spot_peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,218666,37.84696890838864,peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,218945,-87.20772079643491,spot_peer,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,218945,-81.52660467116921,baseline,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,218945,-66.60377742107626,peer,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,218945,-1.0537116927708512,relative_legacy,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,218945,-100.0,spot_baseline,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,219886,-54.66668025396123,spot_baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,219886,-54.662820073067465,spot_peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,219886,-52.687472956741466,baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,219886,-0.8184764944838089,relative_legacy,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,219886,-47.33607749314337,peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,220077,0.3656030447893638,relative_legacy,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,220077,33.261470219153466,spot_peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,220077,66.71986410356436,baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,220077,39.448965205167646,peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,221727,0.0725892400118914,relative_legacy,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,221727,36.89532731063073,baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,221727,17.782778849808285,peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,221727,11.755964581406726,spot_peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,222631,12.33060689743188,peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,222631,0.0648132482217581,relative_legacy,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,222631,39.540448907284215,spot_peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29949,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:43.93904+00,222631,22.587286951578815,baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30119 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,182315,-0.647131933073958,relative_legacy,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,182315,-73.69655941662059,spot_baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,182315,-45.90457411351847,peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,182315,-64.91461406362745,baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,182315,-57.12140966786456,spot_peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,185690,-0.0088310377783352,relative_legacy,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,185690,18.44996047102167,spot_peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,185690,3.1339721104663254,baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,185690,1.8348617885545568,peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,185690,31.695666818183025,spot_baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,185698,14.577045919705204,peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,185698,21.09148580608957,baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,185698,67.80719051126377,spot_baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,185698,44.34368547127952,spot_peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,185698,0.0945283959379447,relative_legacy,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,185699,0.0218239061617411,relative_legacy,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,185699,40.38976690367285,spot_peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,185699,6.298711270469713,baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,185699,4.0966130408612855,peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,185699,62.29303509201767,spot_baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,187708,-0.253465934132144,peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,187708,-0.1118685819014739,relative_legacy,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,187708,0.0,baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,187708,0.0,spot_baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,187708,-4.277379623106928,spot_peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,188107,0.5119104327842814,relative_legacy,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,188107,32.9642825180731,spot_peer,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,188107,36.9427785397228,peer,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,188107,51.93741590935793,spot_baseline,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,188107,49.65505925805127,baseline,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,189585,0.4798934143579093,relative_legacy,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,189585,35.41697856096808,peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,189585,47.96202041554096,baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,189585,30.53009313081165,spot_peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,189588,22.863751183874903,spot_peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,189588,37.29928052956837,baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,189588,0.3745370675837239,relative_legacy,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,189588,27.64980213564608,peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,189869,17.43391694520139,peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,189869,24.934814256124472,baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,189869,0.1374795606597708,relative_legacy,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,189869,37.66728673291008,spot_peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,190710,-68.02077335660522,spot_peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,190710,-0.882007821264731,relative_legacy,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,190710,-88.8968687611256,spot_baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,190710,-63.96462868840598,peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,190710,-88.57352734941172,baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191026,40.62700446940583,spot_baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191026,4.112331711244514,baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191026,-8.353037067377395e-05,relative_legacy,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191026,2.52862989561374,peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191026,24.854165482994738,spot_peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191046,-41.174787616768896,spot_peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191046,-51.45731728297583,spot_baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191046,-0.308495264974797,relative_legacy,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191046,-14.677622838798635,peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191046,-19.662668307332314,baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191284,-30.33792894413388,baseline,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191284,-0.2815517852232153,relative_legacy,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191284,-21.03165086226838,peer,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191284,-32.19280948873623,spot_baseline,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191284,-27.361195276301032,spot_peer,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191471,27.531382419785537,spot_peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191471,0.2281415680746059,relative_legacy,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191471,44.36066514756145,spot_baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191471,21.765065434754323,peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191471,30.13234444678479,baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191935,69.59938131099001,spot_baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191935,50.72785820373007,peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191935,68.90191332421303,baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191935,0.6891222715544669,relative_legacy,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,191935,45.62877374699232,spot_peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192049,-41.174787616768896,spot_peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192049,-51.45731728297583,spot_baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192049,-0.4746655282933905,relative_legacy,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192049,-49.0952250602126,baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192049,-34.77878488789151,peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192418,-0.9024557553845224,relative_legacy,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192418,-65.25263564569492,peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192418,-91.5690453298114,baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192418,-75.98226037068747,spot_peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192472,0.0847933125906601,relative_legacy,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192472,1.750438458683683,spot_peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192472,8.352587269914904,baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192472,6.784963214120936,peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192472,8.406426478847456,spot_baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192924,-53.33489529620026,peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192924,-75.17381783110542,baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192924,-0.7492598266300605,relative_legacy,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192924,-85.20421186128986,spot_baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,192924,-65.37295813016071,spot_peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,193275,36.697235510917295,spot_peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,193275,0.3713117844498363,relative_legacy,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,193275,39.15550221140333,baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,193275,57.14341158765092,spot_baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,193275,29.09485890633593,peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,195286,57.57631811138322,baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,195286,42.42703073820275,peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,195286,37.66728673291008,spot_peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,195286,0.5777960871182464,relative_legacy,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,204737,-15.176743311847584,spot_peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,204737,-5.069907323382841,peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,204737,-6.328156133516045,baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,204737,-0.1751501432366343,relative_legacy,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,204737,-15.200309344505014,spot_baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,208405,-36.218511735563375,peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,208405,-50.513717684202255,baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,208405,-0.5019379521299968,relative_legacy,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,208405,-51.45731728297583,spot_baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,208405,-41.174787616768896,spot_peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,215725,-41.174787616768896,spot_peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,215725,-27.02505219499612,peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,215725,-0.4327980390689409,relative_legacy,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,215725,-37.64743767640106,baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,218666,47.300756791617374,spot_baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,218666,45.95460012186589,baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,218666,34.11157980740118,peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,218666,0.4675813919146704,relative_legacy,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,218666,29.63957162702541,spot_peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,218945,43.69510481470068,spot_peer,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,218945,54.57147613027127,baseline,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,218945,40.106825432684,peer,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,218945,0.5164523511541321,relative_legacy,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,218945,66.90267655096306,spot_baseline,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,219886,-20.15586041295228,peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,219886,-29.408498308371225,baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,219886,-32.19280948873623,spot_baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,219886,-0.2815517852232153,relative_legacy,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,219886,-27.361195276301032,spot_peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,220077,44.34368547127952,spot_peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,220077,49.118625553345225,peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,220077,0.6695400687793699,relative_legacy,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,220077,66.7756238555325,baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,221727,-0.4954516952474713,relative_legacy,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,221727,-35.86461528137373,peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,221727,-50.19789400911032,baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,221727,-41.174787616768896,spot_peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,222631,27.531382419785537,spot_peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,222631,0.0160262556624521,relative_legacy,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,222631,13.241271778540307,baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,222631,44.36066514756145,spot_baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29950,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.941637+00,222631,8.914771098330903,peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30120 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,182315,81.55754288625727,spot_baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,182315,0.2553988382886569,relative_legacy,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,182315,71.88885667254463,baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,182315,32.10067971544591,peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,182315,31.615738009455395,spot_peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,185690,5.052413329455494,baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,185690,0.9241250849236958,peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,185690,0.0,relative_legacy,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,185690,9.366128153457316,spot_peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,185690,50.52812114532668,spot_baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,185698,37.85116232537298,spot_baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,185698,0.2761299491896088,spot_peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,185698,-0.0228637109071749,relative_legacy,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,185698,2.659613534346592,peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,185698,16.566313832834258,baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,185699,9.248509958430864,baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,185699,0.0341377996433563,relative_legacy,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,185699,31.615738009455395,spot_peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,185699,3.5720821409356533,peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,185699,81.55754288625727,spot_baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,187708,58.88045670155503,spot_baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,187708,0.0275890161727544,relative_legacy,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,187708,15.3551604036886,spot_peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,187708,33.39206043702497,baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,187708,10.011491618279914,peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,188107,14.089997111926934,peer,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,188107,48.39585470166183,baseline,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,188107,-0.0191156756478294,relative_legacy,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,188107,9.166726135471473,spot_peer,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,188107,50.25003405291831,spot_baseline,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,189585,39.53367702211068,spot_peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,189585,0.3972710116099742,relative_legacy,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,189585,91.48511228620876,baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,189585,44.67096869475402,peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,189588,15.079665498224774,spot_peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,189588,0.0605845677889468,relative_legacy,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,189588,20.12375874061579,peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,189588,57.62070983815296,baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,189869,86.39384504239716,spot_baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,189869,15.433661098101275,peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,189869,36.82763958111735,baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,189869,0.1368249852356384,relative_legacy,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,189869,35.083602703108184,spot_peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,190710,9.40984792977702,spot_peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,190710,14.466093087449522,peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,190710,50.44350209121067,baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,190710,-0.0175054446120698,relative_legacy,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,190710,50.58909297299573,spot_baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191026,29.48441872013612,spot_baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191026,2.984656114764088,baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191026,-5.723233575401314,spot_peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191026,-0.0213347900790286,relative_legacy,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191026,-0.5917026116300264,peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191046,25.875516271272662,baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191046,8.621387840233636,peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191046,0.053148751992472,relative_legacy,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191046,21.756064236594217,spot_peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191284,-0.0352053883078803,relative_legacy,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191284,45.745582660402285,baseline,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191284,7.942471896126351,spot_peer,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191284,12.51363963315325,peer,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191471,-0.1343889594383661,relative_legacy,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191471,0.006750695762717,peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191471,22.670331214438736,baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191471,-2.956891792614304,spot_peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191471,33.34237337251918,spot_baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191935,67.80719051126377,spot_baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191935,26.857481522877457,peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191935,67.12790649463423,baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191935,21.756064236594217,spot_peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,191935,0.1526763822343375,relative_legacy,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192049,-221.8232271264761,baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192049,-2.717406943630763,relative_legacy,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192049,-182.0458461509997,peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192049,-193.35857800614747,spot_peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192049,-232.1928094887363,spot_baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192418,-54.534149626387446,peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192418,-47.12756993612319,baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192418,-63.7624088514542,spot_peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192418,-0.951062887775986,relative_legacy,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192472,37.63864686100373,baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192472,-0.1441695795901505,relative_legacy,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192472,5.192437465341793,peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192472,0.2761299491896088,spot_peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192924,34.027740476625425,spot_baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192924,30.08870359886824,baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192924,-2.4654501279317658,spot_peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192924,1.779246404805272,peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,192924,-0.1635523748279097,relative_legacy,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,193275,26.344997451749403,peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,193275,29.717551250676447,spot_peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,193275,63.27770021394489,baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,193275,0.187061712935054,relative_legacy,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,193275,78.91032175013815,spot_baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,195286,83.4652346084535,baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,195286,0.3194797149682383,relative_legacy,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,195286,38.97559436009559,peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,195286,33.94051620104767,spot_peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,204737,13.264265587468296,peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,204737,0.1084224132931173,relative_legacy,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,204737,30.67099833049618,spot_peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,204737,33.56119153265141,baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,204737,80.24000401148393,spot_baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,208405,-73.69655941662059,spot_baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,208405,-1.2370894192667703,relative_legacy,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,208405,-72.32581212700792,baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,208405,-74.33889877464162,peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,208405,-79.70903090254986,spot_peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,215725,-0.0334612831930905,relative_legacy,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,215725,7.942471896126351,spot_peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,215725,8.271033989797123,peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,215725,35.549098930698335,baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,215725,48.54268271702416,spot_baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,218666,56.169272139830895,spot_baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,218666,54.66532825895534,baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,218666,18.38215987013781,peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,218666,0.037892561619649,relative_legacy,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,218666,13.4111087468575,spot_peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,218945,57.5284011758289,baseline,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,218945,22.676748503259446,peer,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,218945,0.1440852827550252,relative_legacy,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,218945,23.67775929586337,spot_peer,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,218945,70.48719644563528,spot_baseline,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,219886,53.16684113151503,spot_baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,219886,13.95098196836119,peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,219886,0.0051234478647163,relative_legacy,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,219886,46.83435203907554,baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,219886,11.258219172816228,spot_peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,220077,47.94752844626922,baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,220077,-0.0379548180018562,relative_legacy,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,220077,12.960082991794396,peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,220077,7.942471896126351,spot_peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,220077,48.54268271702416,spot_baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,221727,-1.0118614458362705,relative_legacy,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,221727,-63.7624088514542,spot_peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,221727,-57.96132062678703,peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,221727,-50.19816436133336,baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,222631,13.24826210509058,baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,222631,1.6226386788290696,peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,222631,-0.0250743712859271,relative_legacy,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,222631,4.943761185100244,spot_peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29951,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-15 14:08:44.962934+00,222631,44.36066514756145,spot_baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,2024-11-16 15:30:00+00,30121 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,182315,45.69527001088546,spot_peer,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,182315,-38.32391277770463,baseline,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,182315,-43.440282414577496,spot_baseline,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,182315,0.2086846870747262,relative_legacy,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,182315,41.4110730121371,peer,RyansAGI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,185690,-9.116832155961784,baseline,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,185690,12.138362496863865,spot_peer,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,185690,-90.23892033735775,spot_baseline,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,185690,-0.0040152308974343,relative_legacy,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,185690,1.1470904229486627,peer,annabot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,185698,-8.084949915243016,spot_peer,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,185698,-118.44245711374272,spot_baseline,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,185698,-21.60997260650148,baseline,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,185698,0.0152356180577744,relative_legacy,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,185698,11.298119161719148,peer,RonanMcGovern,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,185699,-5.086952082807246,peer,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,185699,-20.002042083714933,baseline,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,185699,-164.38561897747246,spot_baseline,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,185699,-41.02843934129832,spot_peer,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,185699,-0.0981209366463284,relative_legacy,MWG,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,187708,-3.937247446083219,spot_peer,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,187708,-2.7317521117605934,peer,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,187708,-64.82709600821939,baseline,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,187708,-112.65804965651432,spot_baseline,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,187708,-0.2546195613144288,relative_legacy,twsummerbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,188107,-119.40971882724828,spot_peer,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,188107,-113.92420291872992,peer,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,188107,-265.0775150473362,baseline,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,188107,-273.6965594166206,spot_baseline,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,188107,-1.9237291615507213,relative_legacy,Cassie,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,189585,-13.90944725628366,peer,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,189585,-17.944623688104205,spot_peer,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,189585,-132.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,189585,-0.5479556550902667,relative_legacy,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,189585,-130.60202929179312,baseline,mf-bot-1,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,189588,-132.19280948873623,spot_baseline,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,189588,-17.944623688104205,spot_peer,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,189588,-0.547840561843134,relative_legacy,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,189588,-130.25457785717282,baseline,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,189588,-13.95590278864533,peer,mf-bot-3,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,189869,-69.2570675985958,peer,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,189869,-1.128830246579377,relative_legacy,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,189869,-141.61310026765398,baseline,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,189869,-332.1928094887362,spot_baseline,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,189869,-161.3543851832653,spot_peer,VeritasAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,190710,-24.98009886829877,peer,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,190710,-0.6992573893599517,relative_legacy,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,190710,-28.84398737684486,spot_peer,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,190710,-147.06094314439844,baseline,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,190710,-147.39311883324126,spot_baseline,Bot_Pepa,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191026,1.7381871271873068,peer,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191026,-8.314113299344863,baseline,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191026,0.0041803689944921,relative_legacy,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191026,17.95509908452722,spot_peer,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191026,-82.12686920915108,spot_baseline,manticAI,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191046,-89.64950443568476,spot_peer,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191046,-88.20345339027439,baseline,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191046,-232.19280948873623,spot_baseline,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191046,-0.628532193232724,relative_legacy,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191046,-34.421524782092334,peer,archipelago,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191284,48.54268271702416,spot_baseline,000_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191284,111.65154546658904,spot_peer,000_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191284,45.74540255525911,baseline,000_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191284,108.74676864844842,peer,000_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191284,1.1391062858306278,relative_legacy,000_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191471,-6.0752654103504025,baseline,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191471,47.6488429587265,peer,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191471,-8.926733809708741,spot_baseline,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191471,70.44316887976484,spot_peer,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191471,0.3789195682243872,relative_legacy,HSeldon,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191935,-1.855001027426628,relative_legacy,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191935,-264.38561897747246,spot_baseline,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191935,-109.13838471255671,peer,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191935,-112.73332008887888,spot_peer,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,191935,-261.435711258936,baseline,pgodzinai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192049,-166.13114686110816,baseline,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192049,-43.42683891667506,peer,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192049,-173.6965594166206,spot_baseline,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192049,-47.704838079667766,spot_peer,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192049,-0.9552204027546878,relative_legacy,gnosis-ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192418,53.58400268317073,baseline,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192418,1.1717227963937726,relative_legacy,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192418,118.78873906868746,spot_peer,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192418,111.44430111093538,peer,InstitutPelFutur,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192472,-0.3473288699882473,relative_legacy,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192472,0.7918411227040492,peer,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192472,-112.02942337177116,spot_baseline,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192472,-3.4864917182602064,spot_peer,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192472,-111.48820443906833,baseline,bestworldbot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192924,16.817109424861332,peer,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192924,-0.1314111796984276,relative_legacy,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192924,-82.11260418302048,spot_baseline,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192924,17.96532780450278,spot_peer,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,192924,-72.73767551827069,baseline,acm_bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,193275,-71.31188522118384,spot_baseline,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,193275,25.70997045596906,spot_peer,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,193275,-0.0363474120326937,relative_legacy,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,193275,-60.90880840002701,baseline,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,193275,22.91569404015108,peer,histerio,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,195286,-0.9557302728879676,relative_legacy,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,195286,-173.6965594166206,spot_baseline,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,195286,-170.65698461454306,baseline,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,195286,-47.704838079667766,spot_peer,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,195286,-43.69603352232266,peer,Unwrapped80T,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,204737,24.562620597013645,baseline,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,204737,49.81826638701188,peer,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,204737,118.78873906868746,spot_peer,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,204737,0.5276741062525846,relative_legacy,SynapseSeer,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,208405,-170.58973515657163,baseline,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,208405,-47.704838079667766,spot_peer,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,208405,-173.6965594166206,spot_baseline,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,208405,-0.9553355831974424,relative_legacy,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,208405,-43.66871996405957,peer,mf-bot-4,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,215725,0.7545832170144626,relative_legacy,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,215725,37.85116232537298,spot_baseline,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,215725,27.74743346676164,baseline,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,215725,76.2855464400467,peer,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,215725,103.98520351965227,spot_peer,estr.ai,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,218666,7.024249032820596,peer,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,218666,-99.79608203474284,baseline,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,218666,-102.3269779322847,spot_baseline,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,218666,-0.2591767246828764,relative_legacy,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,218666,3.4706352137226384,spot_peer,GreeneiBot2,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,218945,-100.0,spot_baseline,SeidrBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,218945,4.274265314817267,peer,SeidrBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,218945,-81.65285416554522,baseline,SeidrBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,218945,-0.2708871153535495,relative_legacy,SeidrBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,218945,5.139191965089911,spot_peer,SeidrBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,219886,45.45734516953073,spot_peer,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,219886,-43.77209363701334,spot_baseline,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,219886,0.1982606172319293,relative_legacy,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,219886,40.01586566188575,peer,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,219886,-37.76076284603551,baseline,SaraBase,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,220077,-0.5478224711319478,relative_legacy,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,220077,-130.9376022781267,baseline,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,220077,-132.19280948873623,spot_baseline,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,220077,-17.944623688104205,spot_peer,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,220077,-13.886549739780593,peer,mmBot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,221727,-43.604501955085375,peer,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,221727,-173.6965594166206,spot_baseline,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,221727,-169.4418883702927,baseline,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,221727,-0.9552204027546878,relative_legacy,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,221727,-47.704838079667766,spot_peer,mf-bot-5,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,222631,54.59683691052925,spot_baseline,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,222631,0.3560762164610573,relative_legacy,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,222631,16.233704064348903,baseline,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,222631,34.31075735129197,peer,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29952,"Before January 1, 2025, will the International Criminal Court issue an arrest warrant for Benjamin Netanyahu?",2024-11-15 14:08:44.9882+00,222631,115.99266951131648,spot_peer,Grizeu_Bot,True,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.5283,2024-11-16 15:30:00+00,30122 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,182315,-0.5572269254244979,spot_peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,182315,-0.9316346718450114,peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,182315,28.688114778816157,spot_baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,182315,-0.0251770371742139,relative_legacy,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,182315,25.3296222425485,baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,185690,0.4577114663818537,baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,185690,-1.674111926201805,peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,185690,-0.0291696127505959,relative_legacy,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,185690,-17.909626620608535,spot_peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,185690,4.488367823976478,spot_baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,185698,-0.3814678522850929,relative_legacy,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,185698,26.303440583379377,spot_baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,185698,-27.081574152549468,peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,185698,-2.267154713480765,spot_peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,185698,-28.788701784938787,baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,185699,60.40713236688608,spot_baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,185699,0.0342143363341122,relative_legacy,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,185699,3.1249864536847216,peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,185699,22.186856810405157,spot_peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,185699,7.863297695853997,baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,187708,0.1306458512278817,relative_legacy,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,187708,18.020591382342385,spot_peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,187708,31.82502420103866,baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,187708,10.905842093525305,peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,187708,54.59683691052925,spot_baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,188107,74.83781599082833,baseline,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,188107,76.55347463629771,spot_baseline,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,188107,33.764572279782925,spot_peer,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,188107,32.0718360027689,peer,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,188107,0.4321799268605938,relative_legacy,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,189585,0.513889422885716,relative_legacy,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,189585,83.77641890902675,baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,189585,38.118037748216224,peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,189585,39.67751164253625,spot_peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,189588,-11.26833164344245,spot_peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,189588,13.566351332648258,baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,189588,-0.1864035638363817,relative_legacy,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,189588,13.750352374993504,spot_baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,189588,-12.84977252585404,peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,189869,36.15134753383615,baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,189869,39.67751164253625,spot_peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,189869,17.83921219664854,peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,189869,0.2331821328503317,relative_legacy,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,190710,50.52528787936406,baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,190710,50.58909297299573,spot_baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,190710,0.1747967511563463,relative_legacy,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,190710,13.399075055991586,peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,190710,15.146843371265584,spot_peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191026,4.340232804486334,baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191026,42.86990659405888,spot_baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191026,1.1228537135825976,peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191026,9.611809983565449,spot_peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191026,0.0098130500767658,relative_legacy,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191046,-173.6965594166206,spot_baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191046,-145.67691620864184,spot_peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191046,-66.18477794245288,baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191046,-54.56122897537946,peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191046,-0.7662454085043027,relative_legacy,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191284,-1.2353283038227705,relative_legacy,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191284,-94.23705028825336,baseline,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191284,-92.8328861638842,spot_peer,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191284,-89.16658225214904,peer,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191284,-100.0,spot_baseline,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191471,-6.083008519297115,baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191471,-18.822258109145707,peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191471,-8.926733809708741,spot_baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191471,-27.52890924920926,spot_peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191471,-0.276700167657864,relative_legacy,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191935,0.5439025349364822,relative_legacy,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191935,87.97057662822883,spot_baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191935,40.24206994271478,peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191935,86.27663887013419,baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,191935,41.95119164792679,spot_peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192049,45.27067246359924,spot_peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192049,0.5827081542124102,relative_legacy,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192049,42.944378782195386,peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192049,88.70269801656153,baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192418,-0.7544719068118421,relative_legacy,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192418,-58.02541340996562,spot_peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192418,-47.143350591054585,baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192418,-54.238493420188185,peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192472,0.3817740840884563,relative_legacy,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192472,28.550470802518124,peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192472,30.047467877086746,spot_peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192472,71.36958148433591,spot_baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192472,71.08536269514327,baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192924,-22.60154170046973,peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192924,-4.430284778449166,baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192924,-0.3225358416960277,relative_legacy,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192924,-24.706430737298728,spot_peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,192924,-4.990490582631392,spot_baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,193275,6.6477793804211975,spot_peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,193275,5.493196206274112,peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,193275,33.77725913617894,baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,193275,38.73625408359953,spot_baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,193275,0.0631779063146435,relative_legacy,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,195286,20.816660939713348,spot_peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,195286,19.22428251747744,peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,195286,57.40717262683439,baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,195286,0.254775378520178,relative_legacy,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,204737,27.4930596780828,spot_peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,204737,28.570929547394,baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,204737,0.1592989464361133,relative_legacy,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,204737,12.511952819529409,peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,204737,67.80719051126377,spot_baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,208405,0.5129207652841311,relative_legacy,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,208405,83.28625894406612,baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,208405,38.00164748063027,peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,208405,39.67751164253625,spot_peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,215725,62.22639583441171,baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,215725,0.3865722397871623,relative_legacy,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,215725,84.79969065549501,spot_baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,215725,39.67751164253625,spot_peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,215725,29.21077609400507,peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,218666,-26.505205322008425,peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,218666,-0.3737151445405248,relative_legacy,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,218666,-25.35097036667488,spot_peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,218666,-5.889368905356857,spot_baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,218666,-5.756974372302006,baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,218945,-78.31920321584025,peer,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,218945,-81.09661756099828,spot_baseline,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,218945,-79.27823832873894,spot_peer,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,218945,-1.0856147160418217,relative_legacy,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,218945,-79.09160811755272,baseline,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,219886,24.771674974527084,peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,219886,0.3311725880811681,relative_legacy,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,219886,61.08154789275845,baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,219886,28.00257869765105,spot_peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,219886,68.51776838860783,spot_baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,220077,67.27366600775152,baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,220077,0.3460412439110518,relative_legacy,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,220077,27.4930596780828,spot_peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,220077,25.91629127169247,peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,221727,0.054656157622489,relative_legacy,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,221727,4.607677296384519,peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,221727,36.928624193475066,baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,221727,6.0131253906781845,spot_peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,222631,21.412480535284764,spot_baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,222631,-5.774211783378815,spot_peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,222631,-1.3046551807353926,peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,222631,5.762833080798408,baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29953,"Will the US enact export controls for some generative AI software before 2025? -",2024-11-15 14:08:45.015908+00,222631,-0.0208005636937906,relative_legacy,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30123 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,182315,-0.1644729555133992,relative_legacy,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,182315,-15.61204722931569,spot_peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,182315,48.24158692514631,baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,182315,54.59683691052925,spot_baseline,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,182315,-12.914112775688835,peer,RyansAGI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,185690,0.00601934951598,relative_legacy,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,185690,4.329581119076494,spot_peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,185690,0.5119251381315091,peer,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,185690,82.40753562515623,spot_baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,185690,8.492026858289545,baseline,annabot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,185698,-0.1879461916200016,peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,185698,92.5999418556223,spot_baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,185698,11.638033851941175,spot_peer,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,185698,-0.0050635286053118,relative_legacy,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,185698,26.31941863239373,baseline,RonanMcGovern,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,185699,94.11063109464314,spot_baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,185699,1.8565618906730783,peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,185699,12.7212717692476,spot_peer,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,185699,13.109626985338728,baseline,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,185699,0.0244439381054419,relative_legacy,MWG,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,187708,67.62674082658896,spot_baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,187708,-6.268970164780753,spot_peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,187708,-0.0357925889325098,relative_legacy,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,187708,-3.087065479943733,peer,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,187708,40.04212656806173,baseline,twsummerbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,188107,-1.9680113270265016,peer,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,188107,72.2466024471091,spot_baseline,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,188107,-0.0151375338187446,relative_legacy,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,188107,71.2684312605707,baseline,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,188107,-2.9563038990835357,spot_peer,Cassie,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,189585,7.055554704081283,peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,189585,0.1088940549096031,relative_legacy,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,189585,6.044873030878169,spot_peer,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,189585,83.77974132402208,baseline,mf-bot-1,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,189588,91.24551695772487,baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,189588,11.638033851941175,spot_peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,189588,0.185374279012504,relative_legacy,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,189588,12.606882207987988,peer,mf-bot-3,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,189869,36.152491661305234,baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,189869,6.044873030878169,spot_peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,189869,0.0377196668816795,relative_legacy,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,189869,2.9517791653820367,peer,VeritasAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,190710,-2.5379420348039305,peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,190710,71.33138438925167,baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,190710,87.97057662822883,spot_baseline,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,190710,-0.0233910542458184,relative_legacy,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,190710,8.318553036268717,spot_peer,Bot_Pepa,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191026,-1.7495410751873304,peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191026,-0.0255077614644602,relative_legacy,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191026,-17.923278976235615,spot_peer,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191026,51.37358108355697,spot_baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191026,5.201556398787226,baseline,manticAI,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191046,0.1319336681248687,spot_peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191046,0.0022669840423934,relative_legacy,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191046,29.09435414062837,baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191046,0.3694204983248724,peer,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191046,76.55347463629771,spot_baseline,archipelago,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191284,-17.94839749082372,peer,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191284,45.744970098343565,baseline,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191284,-19.953171274043157,spot_peer,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191284,-0.2344289794489029,relative_legacy,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191471,-5.24186480255252,peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191471,-8.758662518157001,spot_peer,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191471,43.80639754387898,baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191471,-0.0596649362951895,relative_legacy,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191471,64.15460290875237,spot_baseline,HSeldon,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191935,95.60566524124027,spot_baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191935,0.2142975839172311,relative_legacy,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191935,14.707344970278784,peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191935,93.90290272342484,baseline,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,191935,13.7932842212007,spot_peer,pgodzinai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192049,0.1073978280991913,relative_legacy,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192049,6.903754311594057,peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192049,6.044873030878169,spot_peer,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192049,81.35967370248905,baseline,gnosis-ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192418,0.1319336681248687,spot_peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192418,1.1720716262420456,peer,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192418,70.14877783848958,baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192418,0.0295351789079063,relative_legacy,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192472,-0.1517547061441697,relative_legacy,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192472,58.308361144687694,baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192472,-12.815977671944731,spot_peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192472,-11.917172663796,peer,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192924,60.31237769452026,baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192924,-4.489321257017354,peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192924,-0.0482602860855895,relative_legacy,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192924,67.80719051126377,spot_baseline,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,192924,-6.139578933575294,spot_peer,acm_bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,193275,71.87941483455398,baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,193275,4.338337136110303,peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,193275,81.55754288625727,spot_baseline,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,193275,0.0737738742187397,relative_legacy,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,193275,3.720094839285893,spot_peer,histerio,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,195286,0.1081050228402434,relative_legacy,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,195286,6.044873030878169,spot_peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,195286,83.11473890659134,baseline,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,195286,6.984347469919637,peer,Unwrapped80T,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,204737,37.07307139417898,baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,204737,0.0492260435460102,relative_legacy,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,204737,87.65660587517209,spot_baseline,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,204737,3.796009240372902,peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,204737,8.093420682207107,spot_peer,SynapseSeer,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,208405,0.0272802029699205,relative_legacy,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,208405,0.1319336681248687,spot_peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,208405,75.20969911841304,baseline,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,208405,1.1190137663096336,peer,mf-bot-4,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,215725,-3.704998342474609,peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,215725,-6.139578933575294,spot_peer,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,215725,49.80273561740276,baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,215725,67.80719051126377,spot_baseline,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,215725,-0.0347241374553872,relative_legacy,estr.ai,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,218666,0.0666809166240169,relative_legacy,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,218666,3.97177607103566,peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,218666,3.012350168591069,spot_peer,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,218666,80.57051848385113,spot_baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,218666,78.91761271743609,baseline,GreeneiBot2,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,218945,-0.1679964961779632,relative_legacy,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,218945,52.67992808332348,baseline,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,218945,-13.150571559897076,peer,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,218945,-12.815977671944731,spot_peer,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,218945,58.496250072115615,spot_baseline,SeidrBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,219886,93.0629527724808,baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,219886,14.289508332060082,peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,219886,0.2087321932066253,relative_legacy,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,219886,95.08416375491488,spot_baseline,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,219886,13.419342202334184,spot_peer,SaraBase,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,220077,-6.139578933575294,spot_peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,220077,-0.0589837196753709,relative_legacy,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,220077,-5.141438079835857,peer,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,220077,67.4916792180651,baseline,mmBot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,221727,0.1319336681248687,spot_peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,221727,0.0276389452811569,relative_legacy,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,221727,1.1237541235517194,peer,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,221727,74.68249009873308,baseline,mf-bot-5,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,222631,0.2803424286120021,peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,222631,0.1319336681248687,spot_peer,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,222631,-1.321082820716284e-05,relative_legacy,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,222631,22.99948590960773,baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29954,"On December 31, 2024, will Cruise operate a rider-only ride-hailing service anywhere in the United States? - -",2024-11-15 14:08:45.039448+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,2024-11-16 15:30:00+00,30124 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,182315,19.79380636235924,peer,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,182315,69.59938131099001,spot_baseline,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,182315,21.092107972769337,spot_peer,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,182315,0.06235795426434,relative_legacy,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,182315,60.96976979320159,baseline,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,185690,0.0501922547144804,peer,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,185690,3.5000067516633804,baseline,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,185690,-0.5805590377193592,spot_peer,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,185690,-0.0001309614399987,relative_legacy,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,185690,39.37456706608247,spot_baseline,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,185699,-26.765497746000985,spot_peer,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,185699,-2.51636049983697,peer,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,185699,2.856915219677092,spot_baseline,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,185699,-0.0366435109760621,relative_legacy,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,185699,0.2796710010848809,baseline,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,187708,12.990878093982396,peer,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,187708,28.246328696272663,spot_peer,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,187708,79.57669477823923,spot_baseline,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,187708,37.65587970653891,baseline,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,187708,0.0841973785963675,relative_legacy,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,188107,67.80719051126378,spot_baseline,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,188107,19.807019697056543,spot_peer,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,188107,0.0288454620424075,relative_legacy,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,188107,32.7207766110042,baseline,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,188107,9.160917579531818,peer,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,188909,18.903382439001685,spot_baseline,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,188909,-15.259397562184684,spot_peer,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,188909,-0.0634380075240588,relative_legacy,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,188909,-2.847470747075639,peer,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,188909,3.5539385288284224,baseline,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,189585,0.5854892219164106,peer,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,189585,37.85116232537298,spot_baseline,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,189585,-1.6729145903480802,spot_peer,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,189585,37.34488008686701,baseline,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,189585,-0.2373570731046596,relative_legacy,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,189588,5.99342735658866,spot_peer,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,189588,47.77465984302659,baseline,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,189588,8.330372383820132,peer,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,189588,-0.1321334387016144,relative_legacy,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,189588,48.54268271702416,spot_baseline,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,189869,19.807019697056525,spot_peer,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,189869,13.889764538795486,peer,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,189869,47.08956360758736,baseline,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,189869,0.0368147757458874,relative_legacy,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,190710,74.84612330040356,spot_baseline,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,190710,25.33523259939202,peer,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,190710,24.85427805941155,spot_peer,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,190710,69.95572927022592,baseline,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,190710,0.1179092271180666,relative_legacy,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,190772,-7.469014932822478,peer,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,190772,-0.2796231360063106,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,190772,-9.953194694507038,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,190772,26.303440583379377,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,190772,20.57175554731191,baseline,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191026,-1.528520780126249,peer,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191026,-0.0327685093115771,relative_legacy,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191026,24.27759371565158,spot_baseline,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191026,-11.405825775139853,spot_peer,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191026,3.4173171924150685,baseline,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191046,8.566345131916549,peer,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191046,25.697102261580827,baseline,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191046,26.07853229875668,spot_peer,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191046,0.057862912728019,relative_legacy,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191284,-0.2179161094744361,relative_legacy,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191284,26.303440583379377,spot_baseline,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191284,-4.921435988821864,peer,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191284,20.48972250785007,baseline,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191284,-9.953194694507038,spot_peer,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191471,43.166310117288425,baseline,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191471,0.0112196760316973,relative_legacy,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191471,11.593505551422073,peer,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191471,17.187936112474798,spot_peer,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191471,64.15460290875237,spot_baseline,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191935,0.0699967685004933,relative_legacy,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191935,69.59938131099001,spot_baseline,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191935,21.092107972769337,spot_peer,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191935,65.75811943392641,baseline,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191935,22.13880841828472,peer,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191975,-7.0922317149326,baseline,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191975,-43.61758094636509,spot_peer,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191975,-0.2753573639257226,relative_legacy,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191975,-20.645087746742632,spot_baseline,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,191975,-15.286151804768412,peer,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192049,5.99342735658866,spot_peer,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192049,7.485973875897662,peer,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192049,-0.1285683724058099,relative_legacy,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192049,45.67802689435479,baseline,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192418,-0.0348756100132941,relative_legacy,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192418,15.392465828722791,peer,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192418,57.251992445013606,baseline,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192418,13.13062095868708,spot_peer,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192472,-0.0345374869098495,relative_legacy,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192472,15.48013261489506,peer,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192472,57.45070445356938,baseline,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192472,13.13062095868708,spot_peer,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192924,67.80719051126377,spot_baseline,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192924,19.807019697056525,spot_peer,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192924,18.186335833223048,peer,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192924,0.0451705914913926,relative_legacy,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,192924,58.316452038090645,baseline,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,193275,17.187936112474798,spot_peer,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,193275,64.15460290875237,spot_baseline,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,193275,47.32146078570324,baseline,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,193275,13.011979749940728,peer,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,193275,0.013891824254132,relative_legacy,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,204737,36.28573277145247,baseline,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,204737,36.37982158053952,spot_peer,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,204737,0.1207450386665999,relative_legacy,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,204737,14.217492428541878,peer,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,204737,90.91970629916877,spot_baseline,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,208405,57.063946516260536,baseline,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,208405,15.24285085303826,peer,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,208405,-0.0366203676758144,relative_legacy,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,208405,13.13062095868708,spot_peer,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,215725,0.0742371141952844,relative_legacy,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,215725,26.07853229875668,spot_peer,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,215725,12.92071481322168,peer,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,215725,38.90841005624062,baseline,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,215725,76.55347463629771,spot_baseline,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,218666,40.49031221451307,spot_baseline,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,218666,16.671071783133147,baseline,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,218666,0.2194846904097123,spot_peer,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,218666,-10.31079032878333,peer,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,218666,-0.3198582587124897,relative_legacy,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,219886,-22.21840572961022,baseline,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,219886,-43.10686402308923,peer,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,219886,-0.8315968928225819,relative_legacy,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,219886,-22.60036748888269,spot_baseline,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,219886,-45.01961195374821,spot_peer,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,220077,-205.8893689053569,spot_baseline,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,220077,-2.582843429735946,relative_legacy,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,220077,-198.41968170502696,baseline,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,220077,-171.63022181590537,peer,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,220077,-176.44677184286223,spot_peer,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,221727,15.313304713480468,peer,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,221727,57.05326309091385,baseline,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,221727,13.13062095868708,spot_peer,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,221727,-0.0349336520833013,relative_legacy,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,222631,-0.0697319258674925,peer,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,222631,-1.6729145903480802,spot_peer,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,222631,-0.0006349992226634,relative_legacy,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29985,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-18 13:57:46.43153+00,222631,1.5777460848865883,baseline,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30190 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,182315,73.11832415721999,spot_baseline,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,182315,64.13698999791247,baseline,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,182315,79.06403801445336,spot_peer,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,182315,72.87125971963516,peer,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,182315,0.8921199502033038,relative_legacy,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,185690,12.501333196031016,spot_peer,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,185690,0.0038970590968218,relative_legacy,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,185690,-1.7726889791830638,baseline,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,185690,-19.71037052081736,spot_baseline,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,185690,1.1173252796098934,peer,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,185699,-73.69655941662063,spot_baseline,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,185699,-26.2093991718683,spot_peer,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,185699,-2.265574654497917,peer,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,185699,-6.345375442331716,baseline,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,185699,-0.042585794370996,relative_legacy,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,187708,-23.02725755029155,baseline,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,187708,-47.79442508390357,spot_baseline,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,187708,-0.1165404835563198,relative_legacy,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,187708,-7.636304637515409,spot_peer,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,187708,-3.5624588083430964,peer,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,188107,7.969268677258354,peer,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,188107,15.735267184148723,spot_peer,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,188107,0.0408096865259281,relative_legacy,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,188107,-15.200309344504996,spot_baseline,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,188107,-7.469932081823833,baseline,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,188909,-16.349725399007085,spot_peer,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,188909,-3.230418652912644,peer,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,188909,-0.0730101427460942,relative_legacy,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,188909,-11.397765126052628,baseline,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,188909,-59.94620704162712,spot_baseline,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,189585,-6.209721084872981,peer,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,189585,-10.262777120772604,spot_peer,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,189585,-51.45731728297583,spot_baseline,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,189585,-0.1861250712406485,relative_legacy,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,189585,-50.76656213286434,baseline,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,189588,-23.09148788728205,baseline,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,189588,-23.4465253637023,spot_baseline,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,189588,0.0893946620116037,relative_legacy,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,189588,14.078009258586764,peer,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,189588,9.822327821395412,spot_peer,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,189869,75.25569596727581,spot_peer,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,189869,0.6318681201897935,relative_legacy,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,189869,52.99203013104349,peer,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,189869,47.09023356375231,baseline,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,190710,-78.58751946471526,spot_baseline,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,190710,-0.4385938328537935,relative_legacy,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,190710,-24.60432434026736,peer,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,190710,-29.71645624176636,spot_peer,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,190710,-73.57075083224028,baseline,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,190772,3.550815219695269,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,190772,-0.049845673786361,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,190772,4.214699895617356,peer,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,190772,-32.19280948873623,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,190772,-25.195246977960437,baseline,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191026,14.119497409040926,spot_baseline,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191026,5.095475845235892,peer,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191026,36.75899965219989,spot_peer,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191026,1.9875716909390384,baseline,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191026,0.0492687689885854,relative_legacy,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191046,22.76161190364496,peer,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191046,0.2579163569053783,relative_legacy,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191046,19.51418735106016,baseline,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191046,68.57929722890638,spot_peer,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191046,58.496250072115615,spot_baseline,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191284,58.496250072115615,spot_baseline,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191284,68.57929722890638,spot_peer,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191284,0.5856571849811999,relative_legacy,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191284,49.55219932632517,peer,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191284,43.10574116067251,baseline,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191471,13.41048899255646,spot_peer,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191471,-12.425071374234983,baseline,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191471,-18.442457113742744,spot_baseline,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191471,9.177333942037263,peer,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191471,0.0293274113811312,relative_legacy,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191935,28.6831785242183,spot_peer,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191935,0.3303362611249261,relative_legacy,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191935,31.84381751053405,peer,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191935,2.7086090345488283,baseline,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191935,2.856915219677092,spot_baseline,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191975,0.0,relative_legacy,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191975,-0.700793542524833,baseline,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191975,0.1562265338133623,peer,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191975,6.357229087445547,spot_peer,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,191975,-28.278970098040404,spot_baseline,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192049,-0.6429403556083007,relative_legacy,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192049,-39.46153842249775,peer,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192049,-100.0,spot_baseline,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192049,-94.41783820479004,baseline,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192049,-45.07024987469118,spot_peer,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192418,-10.262777120772604,spot_peer,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192418,-0.1848460533304812,relative_legacy,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192418,-50.38406873359339,baseline,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192418,-6.026142715833342,peer,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192472,58.48218572903984,peer,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192472,37.23383260875202,baseline,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192472,0.6924004826375052,relative_legacy,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192472,53.7757616798712,spot_peer,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192924,81.52720856897596,spot_peer,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192924,66.26020275812414,baseline,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192924,73.88459792713837,peer,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192924,76.55347463629771,spot_baseline,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,192924,0.907369800634915,relative_legacy,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,193275,-8.564308529230217,peer,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,193275,-41.77081906970344,baseline,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,193275,-63.03939299681623,spot_baseline,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,193275,-18.56769069947636,spot_peer,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,193275,-0.224660255358919,relative_legacy,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,204737,10.890205471599415,peer,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,204737,0.3463400032451135,baseline,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,204737,0.8630305143440056,spot_baseline,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,204737,0.0787251883950984,relative_legacy,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,204737,27.25346587401496,spot_peer,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,208405,-6.010079313381619,peer,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,208405,-51.45731728297583,spot_baseline,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,208405,-10.262777120772604,spot_peer,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,208405,-0.1848609226804128,relative_legacy,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,208405,-50.35261621093484,baseline,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,215725,-68.15406552788528,spot_peer,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,215725,-132.19280948873623,spot_baseline,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,215725,-67.27274609823438,baseline,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,215725,-0.5495466290075527,relative_legacy,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,215725,-34.72994344343753,peer,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,218666,-99.30286822967028,spot_peer,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,218666,-175.6330919033137,spot_baseline,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,218666,-102.11358026538416,baseline,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,218666,-0.8168818410364823,relative_legacy,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,218666,-51.59806737139734,peer,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,219886,-2.6100909732687416,relative_legacy,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,219886,-291.7038697934804,baseline,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,219886,-183.45219440850693,peer,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,219886,-305.3613481712134,spot_baseline,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,219886,-192.32435968248345,spot_peer,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,220077,-0.6550140725318564,relative_legacy,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,220077,-40.36008150849519,peer,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,220077,-96.90507546646728,baseline,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,220077,-45.07024987469118,spot_peer,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,220077,-100.0,spot_baseline,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,221727,-50.1853797458184,baseline,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,221727,-10.262777120772604,spot_peer,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,221727,-0.1845944993371683,relative_legacy,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,221727,-5.9412674851802665,peer,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,222631,-25.15387669959645,spot_baseline,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,222631,0.0080168526862507,relative_legacy,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,222631,0.9298735877345669,peer,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,222631,-0.2350909746363199,baseline,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29987,"On December 30, 2024, Will Apple have the largest market cap in the world?",2024-11-18 13:57:46.48821+00,222631,8.598073582050294,spot_peer,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30192 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,182315,18.625208859074547,spot_peer,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,182315,79.93994988788005,baseline,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,182315,0.1626568527216079,relative_legacy,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,182315,91.07326619029126,spot_baseline,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,182315,17.35906297621442,peer,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,185690,-0.1622027304977403,peer,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,185690,-2.090006503296985,spot_peer,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,185690,-0.0082298906240384,relative_legacy,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,185690,5.664275390917458,baseline,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,185690,62.218070422059256,spot_baseline,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,185699,0.0087386430899164,relative_legacy,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,185699,6.369266333365271,baseline,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,185699,1.0141735134633456,peer,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,185699,12.96415898908149,spot_peer,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,185699,83.18772411916731,spot_baseline,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,187708,-1.2322672028686434,spot_peer,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,187708,31.40451461907888,baseline,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,187708,-0.2575268572253086,peer,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,187708,-0.0376657969131177,relative_legacy,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,187708,63.41285575250407,spot_baseline,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,188107,4.031954356463723,peer,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,188107,38.03629502735569,baseline,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,188107,75.13208871432761,spot_baseline,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,188107,7.180998700295004,spot_peer,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,188107,0.0205449473945685,relative_legacy,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,188909,65.99245584023782,spot_baseline,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,188909,12.612898043329489,baseline,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,188909,0.6196339866228162,spot_peer,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,188909,-0.0097297713690091,relative_legacy,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,188909,0.1954594508856364,peer,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,189585,8.7162514253143,peer,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,189585,0.0397424653606226,relative_legacy,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,189585,75.52987356891822,baseline,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,189585,8.201415117606922,spot_peer,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,189588,-4.761910402629416,spot_peer,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,189588,-0.1381038952543949,relative_legacy,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,189588,57.55195553900448,baseline,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,189588,-4.394649961223953,peer,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,189869,-0.0828455972052029,relative_legacy,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,189869,-1.7996917099527012,peer,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,189869,40.62504808308115,baseline,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,189869,-4.761910402629416,spot_peer,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,190710,52.9918932969472,baseline,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,190710,-6.15215179417256,spot_peer,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,190710,56.55971758542251,spot_baseline,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,190710,-5.276843540752985,peer,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,190710,-0.1488567690703841,relative_legacy,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,190772,48.54268271702416,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,190772,-0.1789871729496963,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,190772,-11.907600663777965,spot_peer,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,190772,-8.219754167237468,peer,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,190772,38.01248008836225,baseline,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191026,5.132695939926792,spot_peer,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191026,10.175102215580909,baseline,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191026,0.0015612009732112,relative_legacy,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191026,72.27891166020945,spot_baseline,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191026,0.7708788475074752,peer,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191046,25.64387192373252,baseline,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191046,76.55347463629771,spot_baseline,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191046,0.0184191365448991,relative_legacy,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191046,2.930243441377104,peer,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191046,8.201415117606922,spot_peer,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191284,-0.4168655021004472,relative_legacy,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191284,5.972956277267961,baseline,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191284,-26.359810647193815,peer,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191284,14.121393693887327,spot_peer,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191284,84.79969065549501,spot_baseline,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191471,1.922436429476175,spot_peer,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191471,45.74681193089776,baseline,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191471,67.80719051126377,spot_baseline,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191471,-0.0175455203130945,relative_legacy,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191471,2.9278339636823447,peer,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191935,-0.349437625358944,relative_legacy,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191935,-21.188859956638414,spot_peer,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191935,35.61438102252753,spot_baseline,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191935,-19.92775557029535,peer,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,191935,33.76570009011915,baseline,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192049,0.1164297468695917,relative_legacy,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192049,14.121393693887327,spot_peer,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192049,80.1710805990943,baseline,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192049,14.19600171588467,peer,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192418,0.0388582029751819,relative_legacy,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192418,8.201415117606922,spot_peer,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192418,8.64588210959594,peer,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192418,74.9681260754593,baseline,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192472,-4.761910402629416,spot_peer,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192472,-4.390991701074021,peer,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192472,57.59664636678277,baseline,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192472,-0.1380527909689023,relative_legacy,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192924,0.0837312933739451,relative_legacy,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192924,11.49382062880901,peer,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192924,12.14633184070813,spot_peer,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192924,82.0485342986379,spot_baseline,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,192924,71.15533162824583,baseline,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,193275,16.285141593565587,spot_peer,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,193275,0.119921377016571,relative_legacy,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,193275,87.81367666269476,spot_baseline,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,193275,67.41187191613737,baseline,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,193275,13.50620652364312,peer,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,204737,1.902130487143117,peer,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,204737,-0.0007171782684544,relative_legacy,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,204737,28.557855582311163,baseline,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,204737,4.100270888655424,spot_peer,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,204737,70.84079834835963,spot_baseline,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,208405,14.556832642319725,peer,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,208405,14.121393693887327,spot_peer,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,208405,82.95983487938423,baseline,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,208405,0.1193765691967385,relative_legacy,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,215725,-60.46065284180947,peer,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,215725,-50.96360575462933,baseline,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,215725,-118.5467545861122,spot_peer,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,215725,-0.8718523648070455,relative_legacy,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,215725,-100.0,spot_baseline,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,218666,72.07162425211312,spot_baseline,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,218666,4.983883804493268,spot_peer,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,218666,3.0473843870448274,peer,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,218666,-0.0240526569218881,relative_legacy,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,218666,53.98388681167065,baseline,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,219886,15.670573969738811,peer,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,219886,0.1377814162453869,relative_legacy,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,219886,87.95489430807761,spot_baseline,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,219886,16.38652208533453,spot_peer,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,219886,79.12845431762912,baseline,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,220077,2.3634866654554423,peer,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,220077,-0.0463228929294671,relative_legacy,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,220077,65.91754078487789,baseline,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,220077,1.922436429476175,spot_peer,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,221727,74.66597611651902,baseline,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,221727,8.201415117606922,spot_peer,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,221727,0.0387025352266048,relative_legacy,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,221727,8.618585063519978,peer,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,222631,-0.0129260834596212,relative_legacy,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,222631,-2.0361891840443103,spot_peer,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,222631,1.7333248692244967,baseline,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,222631,62.29303509201767,spot_baseline,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29988,"On December 30, 2024, Will Microsoft have the largest market cap in the world?",2024-11-18 13:57:46.506608+00,222631,-0.6968824408001638,peer,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30193 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,182315,19.990681100087848,peer,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,182315,-22.090087679004657,baseline,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,182315,0.1531918118459384,relative_legacy,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,182315,-25.153876699596427,spot_baseline,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,182315,16.00804250617239,spot_peer,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,185690,-27.63146653093333,spot_peer,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,185690,-7.929415386837166,baseline,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,185690,-86.0137631984359,spot_baseline,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,185690,-2.595824072099826,peer,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,185690,-0.0439279762751267,relative_legacy,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,185699,-25.153876699596427,spot_baseline,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,185699,0.0117182309812232,relative_legacy,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,185699,1.6964097209399327,peer,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,185699,-2.82760147301323,baseline,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,185699,16.00804250617239,spot_peer,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,187708,34.04459979701144,spot_peer,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,187708,0.1481442085618674,relative_legacy,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,187708,0.0,baseline,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,187708,17.856695426011974,peer,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,187708,0.0,spot_baseline,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,188107,-1.2919895070679788,baseline,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,188107,18.05188614643397,peer,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,188107,0.1433703272617768,relative_legacy,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,188107,-2.4247546246677185,spot_baseline,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,188107,32.30593238497201,spot_peer,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,188909,88.93717749309805,spot_peer,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,188909,14.709805763487331,baseline,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,188909,16.88999022815524,peer,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,188909,76.55347463629771,spot_baseline,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,188909,0.2049790443800768,relative_legacy,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,189585,-173.6965594166206,spot_baseline,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,189585,-81.7185064396723,peer,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,189585,-90.50431099532676,spot_peer,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,189585,-1.246306784017272,relative_legacy,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,189585,-171.48949058206188,baseline,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,189588,-100.0,spot_baseline,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,189588,-37.6602809505691,spot_peer,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,189588,-98.4758743111848,baseline,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,189588,-0.5197951840984322,relative_legacy,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,189588,-28.487742880987604,peer,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,189869,-69.45125773604269,baseline,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,189869,-100.0,spot_baseline,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,189869,-0.4351691572500437,relative_legacy,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,189869,-23.59800947190061,peer,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,189869,-37.6602809505691,spot_peer,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,190710,-8.939756474885025,spot_peer,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,190710,-59.94620704162715,spot_baseline,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,190710,-1.4091775423100426,peer,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,190710,-56.22584080630486,baseline,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,190710,-0.144139308794354,relative_legacy,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,190772,39.63711273253074,baseline,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,190772,50.58909297299573,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,190772,59.61131107646924,peer,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,190772,0.7090657487460523,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,190772,70.3194485845807,spot_peer,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191026,33.22167708183981,spot_peer,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191026,-1.14765230287258,spot_baseline,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191026,4.508667178432358,peer,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191026,0.0447430541103207,relative_legacy,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191026,-0.1615722868302143,baseline,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191046,-17.187163603323448,baseline,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191046,-0.8861189086465744,peer,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191046,-0.0703591625381153,relative_legacy,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191046,-51.45731728297583,spot_baseline,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191046,-2.852808196650521,spot_peer,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191284,68.85207255093003,spot_peer,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191284,37.73084492352509,peer,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191284,16.604988261496146,baseline,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191284,0.4138002832861825,relative_legacy,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191471,-34.776721094962674,baseline,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191471,-51.45731728297583,spot_baseline,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191471,-0.1006419748204935,relative_legacy,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191471,0.6075044847787442,peer,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191471,-2.852808196650521,spot_peer,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191935,91.34305978595329,spot_peer,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191935,75.76106099662833,baseline,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191935,95.51699513899264,peer,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191935,1.1858863676150977,relative_legacy,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,191935,79.90873060740036,spot_baseline,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192049,104.10771337123832,peer,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192049,1.3037176064036788,relative_legacy,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192049,87.67364958016775,baseline,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192049,100.44327767691436,spot_peer,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192418,-28.54797386392508,peer,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192418,-37.6602809505691,spot_peer,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192418,-97.94508438998902,baseline,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192418,-0.5198191553945433,relative_legacy,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192472,-0.2606244703816623,relative_legacy,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192472,-73.69655941662059,spot_baseline,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192472,-72.62415911890938,baseline,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192472,-9.488238048681088,peer,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192472,-18.799430247746194,spot_peer,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192924,-65.744525452268,spot_baseline,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192924,-57.12517643634269,baseline,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192924,-13.09743377660006,spot_peer,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192924,-6.001276964163887,peer,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,192924,-0.2027351608338415,relative_legacy,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,193275,-0.0796208418427841,relative_legacy,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,193275,-39.43123245667232,baseline,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,193275,-30.757280191029224,spot_baseline,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,193275,2.332013204962696,peer,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,193275,11.990128714834729,spot_peer,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,204737,17.959954675591263,spot_peer,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,204737,7.537483966086302,peer,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,204737,-22.43172982609403,spot_baseline,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,204737,-9.084403482210057,baseline,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,204737,0.0265886665841475,relative_legacy,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,208405,-60.74409660376324,spot_peer,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,208405,-129.6660046708181,baseline,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,208405,-51.63926589010858,peer,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,208405,-132.19280948873626,spot_baseline,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,208405,-0.8356275088500019,relative_legacy,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,215725,-26.255078595443653,baseline,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,215725,-0.8924474615918806,peer,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,215725,-0.1119460611366779,relative_legacy,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,215725,-2.852808196650521,spot_peer,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,218666,0.0614204550766782,spot_peer,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,218666,16.71035054283483,peer,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,218666,-47.39311883324123,spot_baseline,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,218666,0.1163099099928987,relative_legacy,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,218666,-20.16296210468126,baseline,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,218945,-173.6965594166206,spot_baseline,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,218945,-81.09204632445785,peer,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,218945,-169.23324416814518,baseline,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,218945,-1.237847645768416,relative_legacy,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,218945,-90.50431099532676,spot_peer,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,219886,-36.75391829519951,spot_peer,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,219886,-98.73598192212296,spot_baseline,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,219886,-27.53835429457538,peer,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,219886,-0.507194437020281,relative_legacy,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,219886,-97.35381686042844,baseline,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,220077,-0.5198191553945433,relative_legacy,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,220077,-97.53431870126064,baseline,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,220077,-28.593385709144293,peer,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,220077,-100.0,spot_baseline,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,220077,-37.6602809505691,spot_peer,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,221727,-28.583118158387325,peer,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,221727,-0.5197620416697871,relative_legacy,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,221727,-100.0,spot_baseline,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,221727,-37.6602809505691,spot_peer,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,221727,-97.5983316656034,baseline,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,222631,-0.0292384125837486,relative_legacy,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,222631,-4.921383363539712,baseline,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,222631,-2.0770604782968496,peer,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,222631,-100.0,spot_baseline,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29989,"On December 30, 2024, Will Nvidia have the largest market cap in the world?",2024-11-18 13:57:46.525523+00,222631,-37.6602809505691,spot_peer,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30194 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,182315,-48.895915231705125,baseline,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,182315,-55.63933485243855,spot_baseline,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,182315,-87.18278214782481,spot_peer,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,182315,-1.1998642116810023,relative_legacy,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,182315,-74.24782424406735,peer,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,185690,15.498250007535018,spot_peer,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,185690,8.189740796079166,baseline,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,185690,1.4829968959001478,peer,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,185690,-0.001879011149222,relative_legacy,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,185690,87.71945471262383,spot_baseline,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,185699,17.900424476405597,spot_peer,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,185699,91.07326619029126,spot_baseline,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,185699,2.2996144451435647,peer,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,185699,11.447436287995998,baseline,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,185699,0.0012269219890181,relative_legacy,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,187708,91.9912088677308,spot_baseline,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,187708,18.55790283448124,spot_peer,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,187708,10.440589494818369,peer,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,187708,0.0202272046459266,relative_legacy,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,187708,47.75853298301291,baseline,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,188107,10.495972289407312,spot_peer,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,188107,44.05888656810211,baseline,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,188107,80.73549220576041,spot_baseline,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,188107,-0.037097907431095,relative_legacy,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,188107,6.635684422724676,peer,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,188909,-20.220018468945625,spot_peer,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,188909,7.316900162196418,baseline,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,188909,-3.76247654978188,peer,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,188909,-0.0984533511199918,relative_legacy,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,188909,37.85116232537298,spot_baseline,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,189585,75.55039560270903,baseline,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,189585,11.556536363005902,peer,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,189585,-0.0391434402719317,relative_legacy,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,189585,7.500593479171226,spot_peer,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,189588,7.500593479171226,spot_peer,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,189588,11.559644996412302,peer,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,189588,75.39875138139004,baseline,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,189588,-0.0391208858466131,relative_legacy,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,189869,14.965634361013144,peer,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,189869,64.31293332131723,baseline,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,189869,0.0589832932934256,relative_legacy,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,189869,18.993909107227744,spot_peer,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,190710,2.5197096246572066,spot_peer,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,190710,-0.1034337821564853,relative_legacy,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,190710,6.112941242590472,peer,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,190710,65.33645839160927,baseline,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,190710,69.59938131099001,spot_baseline,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,190772,67.80719051126377,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,190772,1.2360492248063035,spot_peer,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,190772,-0.1132084524149889,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,190772,3.3348431532868728,peer,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,190772,53.1500183210234,baseline,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191026,2.6691711605457584,peer,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191026,12.93801790134508,baseline,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191026,0.0022876327470309,relative_legacy,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191026,18.487087973960104,spot_peer,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191026,91.89234024054204,spot_baseline,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191046,18.993909107227744,spot_peer,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191046,6.688493469209406,peer,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191046,31.00341538002706,baseline,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191046,0.0086733835196464,relative_legacy,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191284,58.48475402573759,baseline,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191284,84.79969065549501,spot_baseline,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191284,13.406962909299262,spot_peer,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191284,0.0129866873439505,relative_legacy,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191284,11.489314545038123,peer,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191471,-8.225894106161054,spot_peer,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191471,54.59683691052925,spot_baseline,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191471,-4.062910270338239,peer,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191471,-0.2022615061145838,relative_legacy,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191471,36.94321534268699,baseline,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191935,15.678116603572697,spot_peer,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191935,0.0695681905096379,relative_legacy,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191935,87.97057662822883,spot_baseline,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191935,83.57658518076478,baseline,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191935,18.94175761250036,peer,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191975,4.374028008500563,spot_peer,jkraybill_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191975,-0.077990629053195,relative_legacy,jkraybill_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191975,72.18829995931264,spot_baseline,jkraybill_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191975,7.602985576745734,peer,jkraybill_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,191975,65.88210697296374,baseline,jkraybill_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192049,22.07642743593375,peer,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192049,18.993909107227744,spot_peer,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192049,87.7681778396907,baseline,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192049,0.1131916333573937,relative_legacy,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192418,-0.039078925615842,relative_legacy,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192418,11.569973949602224,peer,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192418,7.500593479171226,spot_peer,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192418,74.9920917821835,baseline,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192472,13.981796945702374,peer,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192472,-0.0060521351707373,relative_legacy,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192472,78.81020725550296,baseline,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192472,9.90380256947886,spot_peer,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192472,79.90873060740036,spot_baseline,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192924,-0.2523639024786008,relative_legacy,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192924,-5.6054262432584085,peer,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192924,-10.082659105585408,spot_peer,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192924,52.00450240398179,spot_baseline,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,192924,45.30870787168824,baseline,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,193275,0.5881892134014473,spot_peer,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,193275,53.20209948793781,baseline,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,193275,2.886165045688495,peer,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,193275,66.90267655096306,spot_baseline,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,193275,-0.1212594681104461,relative_legacy,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,204737,7.931423536289418,peer,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,204737,37.29111720350277,baseline,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,204737,91.6858764699754,spot_baseline,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,204737,0.0105653119431336,relative_legacy,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,204737,18.33920786748887,spot_peer,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,208405,23.065704527913045,peer,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,208405,0.1182722702064575,relative_legacy,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,208405,90.82714379299097,baseline,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,208405,18.993909107227744,spot_peer,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,215725,10.480171681143185,peer,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,215725,18.993909107227744,spot_peer,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,215725,0.0224122446368741,relative_legacy,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,215725,47.313373969527184,baseline,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,218666,75.71781161500475,baseline,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,218666,19.24081314645617,peer,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,218666,17.900424476405597,spot_peer,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,218666,91.07326619029126,spot_baseline,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,218666,0.10481523822592,relative_legacy,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,218945,-2.4783372408481794,relative_legacy,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,218945,-166.4852611911902,peer,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,218945,-171.74151557759976,spot_peer,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,218945,-173.6965594166206,spot_baseline,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,218945,-169.31938819266142,baseline,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,219886,59.89368338225272,spot_baseline,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,219886,-0.6071373644987056,peer,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,219886,-4.432016768502573,spot_peer,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,219886,-0.1838497674295008,relative_legacy,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,219886,52.28931181152038,baseline,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,220077,0.0415864460255592,relative_legacy,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,220077,82.9519690713514,baseline,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,220077,13.406962909299262,spot_peer,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,220077,84.79969065549501,spot_baseline,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,220077,17.46564661713646,peer,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,221727,7.500593479171226,spot_peer,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,221727,-0.0389001671753015,relative_legacy,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,221727,11.582978009172212,peer,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,221727,74.71948209808566,baseline,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,222631,0.9362661078507082,baseline,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,222631,-0.0279060022123131,relative_legacy,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,222631,-1.2902727708374253,peer,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,222631,-1.3801242669036569,spot_peer,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29990,"Will Nick Sirianni cease to be the Philadelphia Eagles head coach before January 1, 2025?",2024-11-18 13:57:46.832638+00,222631,64.15460290875237,spot_baseline,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30195 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,182315,0.1275927442323046,relative_legacy,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,182315,97.08536543404836,spot_baseline,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,182315,16.976121262199744,spot_peer,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,182315,85.37725660054974,baseline,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,182315,13.647594523932044,peer,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,185690,-0.0133617116103922,relative_legacy,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,185690,-6.623854821710656,spot_peer,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,185690,64.1361056327364,spot_baseline,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,185690,-0.6947103242199406,peer,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,185690,6.053377941691272,baseline,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,185699,0.0046198365303189,relative_legacy,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,185699,7.021906671895092,spot_peer,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,185699,0.8506726633865115,peer,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,185699,83.18772411916731,spot_baseline,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,185699,11.406040917751174,baseline,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,187708,5.557854894061874,peer,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,187708,48.106169658846405,baseline,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,187708,90.91970629916877,spot_baseline,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,187708,12.55995504170977,spot_peer,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,187708,0.0294529868845782,relative_legacy,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,188107,5.724765574356637,peer,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,188107,50.05238027487713,baseline,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,188107,12.394753834127734,spot_peer,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,188107,0.0304275046013285,relative_legacy,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,188107,90.68905956085185,spot_baseline,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,188909,10.998687624032687,baseline,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,188909,-2.581925920092515,peer,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,188909,-12.05045856932848,spot_peer,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,188909,56.55971758542251,spot_baseline,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,188909,-0.0479167400130808,relative_legacy,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,189585,-5.277116283689495,peer,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,189585,-3.994432617458252,spot_peer,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,189585,-0.1376366605060671,relative_legacy,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,189585,66.94784254679905,baseline,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,189588,-25.45050031121019,spot_peer,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,189588,-26.918484765619443,peer,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,189588,-0.4327840521747786,relative_legacy,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,189588,37.26981440674631,baseline,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,189869,64.31396761655564,baseline,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,189869,0.0642298034346295,relative_legacy,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,189869,8.350916140510085,peer,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,189869,13.763427264963198,spot_peer,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,190710,73.11832415721999,spot_baseline,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,190710,-0.0849223059042435,relative_legacy,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,190710,-0.190322061444243,spot_peer,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,190710,-1.6783120312106683,peer,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,190710,68.70058660917519,baseline,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,190772,-0.012020423835917,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,190772,81.55754288625727,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,190772,63.98111449195714,baseline,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,190772,5.854285962321985,spot_peer,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,190772,3.247639740832557,peer,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191026,12.943714358725234,spot_peer,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191026,0.0162017041303732,relative_legacy,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191026,91.4554943606718,spot_baseline,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191026,12.877339401723551,baseline,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191026,1.7088008531940369,peer,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191046,0.0041256007790847,relative_legacy,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191046,8.176481067034713,spot_peer,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191046,28.267778265238967,baseline,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191046,84.79969065549501,spot_baseline,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191046,2.0953364486322683,peer,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191284,46.07172879508067,baseline,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191284,67.80719051126377,spot_baseline,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191284,-3.994432617458252,spot_peer,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191284,-3.88338198747618,peer,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191284,-0.1037836630278653,relative_legacy,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191471,-0.0814760939199769,relative_legacy,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191471,-2.269018104655825,peer,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191471,48.34522296429669,baseline,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191471,71.36958148433591,spot_baseline,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191471,-1.4428626497865211,spot_peer,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191935,12.669942634141051,spot_peer,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191935,0.0855819316751294,relative_legacy,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191935,86.68593677835243,baseline,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191935,10.806560139368203,peer,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191935,91.07326619029126,spot_baseline,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191975,-53.80897436705873,spot_peer,jkraybill_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191975,-0.1193686716528196,relative_legacy,jkraybill_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191975,-0.2543239318012877,baseline,jkraybill_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191975,-1.7417053077409084,spot_baseline,jkraybill_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,191975,-7.985094267149064,peer,jkraybill_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192049,0.0997518097276499,relative_legacy,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192049,87.94493239205413,baseline,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192049,11.829530909931588,peer,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192049,13.763427264963198,spot_peer,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192418,-0.2288610603156065,relative_legacy,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192418,-12.001419266240536,peer,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192418,-10.663413135007271,spot_peer,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192418,57.311990542876686,baseline,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192472,67.80719051126377,spot_baseline,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192472,-0.1376366605060671,relative_legacy,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192472,66.92878653260568,baseline,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192472,-3.994432617458252,spot_peer,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192472,-5.277116283689495,peer,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192924,-8.347341668527601,spot_peer,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192924,-8.897597708592123,peer,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192924,-0.1815868207286708,relative_legacy,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192924,53.91979593698783,baseline,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,192924,61.72984828408463,spot_baseline,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,193275,81.0648747782646,spot_baseline,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,193275,65.59850839407989,baseline,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,193275,3.097017125540624,peer,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,193275,5.501411401981509,spot_peer,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,193275,-0.0153081555447404,relative_legacy,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,204737,86.8686765322135,spot_baseline,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,204737,9.658396518336003,spot_peer,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,204737,0.0110225167400864,relative_legacy,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,204737,35.48754474935738,baseline,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,204737,3.118572532330861,peer,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,208405,6.874855732490479,peer,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,208405,0.0290350481682403,relative_legacy,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,208405,83.1766234474999,baseline,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,208405,8.176481067034713,spot_peer,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,215725,13.763427264963198,spot_peer,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,215725,5.988075660614023,peer,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,215725,47.36954132592803,baseline,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,215725,0.0364046516780829,relative_legacy,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,218666,-11.7715560158481,spot_peer,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,218666,56.94910919587163,spot_baseline,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,218666,-0.230024153358347,relative_legacy,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,218666,43.16019057477559,baseline,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,218666,-12.539407512212058,peer,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,218945,0.0468587973460444,peer,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,218945,-0.0639767624798548,relative_legacy,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,218945,75.36045362799952,spot_baseline,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,218945,1.4156078503809746,spot_peer,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,218945,73.49198940452791,baseline,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,219886,94.14218659740528,spot_baseline,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,219886,14.86806327928016,spot_peer,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,219886,0.1075881911888687,relative_legacy,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,219886,85.93510142462698,baseline,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,219886,12.275846561615207,peer,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,220077,-3.994432617458252,spot_peer,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,220077,66.44379049107454,baseline,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,220077,-5.326557838692708,peer,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,220077,-0.1376366605060671,relative_legacy,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,221727,74.71969150736797,baseline,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,221727,-0.0522689283733103,relative_legacy,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,221727,0.904823308269638,peer,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,221727,2.2701116369066803,spot_peer,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,222631,-25.45050031121019,spot_peer,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,222631,-0.0113617922906847,relative_legacy,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,222631,-0.7955793128726566,peer,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29991,"Will Bausch Health, Inc., file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.852875+00,222631,2.01591032065511,baseline,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30196 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,182315,71.75999685927971,baseline,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,182315,28.69675702957684,peer,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,182315,0.1723277496335674,relative_legacy,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,182315,29.07234324712148,spot_peer,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,182315,81.55754288625727,spot_baseline,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,185690,10.283152222570193,spot_peer,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,185690,-0.0099855230837108,relative_legacy,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,185690,0.8940823413938335,peer,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,185690,5.287657069996775,baseline,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,185690,55.38519681811257,spot_baseline,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,185699,23.01380755509773,spot_peer,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,185699,1.167355493586922,peer,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,185699,0.0048818480416024,relative_legacy,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,185699,73.11832415721999,spot_baseline,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,185699,3.724619081388716,baseline,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,187708,14.858056069844665,peer,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,187708,78.07300364763763,spot_baseline,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,187708,42.16971191217518,baseline,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,187708,26.57078403586465,spot_peer,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,187708,0.0782003535310363,relative_legacy,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,188909,-0.0021935912428044,relative_legacy,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,188909,12.546941923538862,baseline,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,188909,3.109899238619818,peer,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,188909,64.15460290875237,spot_baseline,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,188909,16.578730226157816,spot_peer,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,189585,66.94036615058656,baseline,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,189585,19.200931767387825,spot_peer,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,189585,24.989805218944436,peer,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,189585,0.0776846915800816,relative_legacy,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,189588,46.46682670034443,spot_baseline,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,189588,3.880632580880528,spot_peer,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,189588,45.77187294908395,baseline,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,189588,-0.13424170351728,relative_legacy,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,189588,9.174970477621516,peer,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,189869,0.2165134980724466,relative_legacy,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,189869,27.112310756011937,peer,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,189869,64.3160917123865,baseline,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,189869,36.99970837764895,spot_peer,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,190710,76.69338521707324,baseline,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,190710,31.61358494676185,peer,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,190710,29.07234324712148,spot_peer,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,190710,81.55754288625727,spot_baseline,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,190710,0.1887130798901902,relative_legacy,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,190772,-0.0395977589904401,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,190772,10.590773002754544,peer,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,190772,44.40005707620177,baseline,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,190772,11.126343543739091,spot_peer,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,190772,56.55971758542251,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191026,23.513781452012044,spot_peer,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191026,0.0114090570162663,relative_legacy,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191026,73.81476126502214,spot_baseline,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191026,3.1802451859377125,peer,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191026,10.393993522515077,baseline,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191046,12.516584935282248,spot_peer,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191046,4.150040424232183,peer,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191046,58.496250072115615,spot_baseline,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191046,-0.0162455858445672,relative_legacy,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191046,19.57149360251439,baseline,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191284,32.19280948873624,spot_baseline,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191284,-6.366719161234486,spot_peer,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191284,23.62043476583969,baseline,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191284,-1.9259769777155764,peer,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191284,-0.1797681445319614,relative_legacy,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191471,-12.325406659100146,peer,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191471,9.326647700173496,baseline,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191471,-19.60660406761541,spot_peer,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191471,13.750352374993504,spot_baseline,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191471,-0.3235114625277829,relative_legacy,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191935,0.1941733911687672,relative_legacy,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191935,29.07234324712148,spot_peer,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191935,32.340789205239055,peer,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191935,77.7493136849997,baseline,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,191935,81.55754288625727,spot_baseline,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192049,1.84333367034643,peer,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192049,-2.3045738703589174,spot_peer,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192049,35.996599166418044,baseline,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192049,37.85116232537298,spot_baseline,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192049,-0.2222838876710677,relative_legacy,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192418,13.474004326449712,baseline,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192418,-0.4544775963774856,relative_legacy,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192418,-19.60660406761541,spot_peer,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192418,-14.599844341832116,peer,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192418,13.750352374993504,spot_baseline,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192472,-173.6965594166206,spot_baseline,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192472,-154.17519885253532,spot_peer,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192472,-2.3066761340424926,relative_legacy,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192472,-150.34387673157545,peer,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192472,-171.58434248735782,baseline,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192924,-5.049417733286392,spot_peer,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192924,-1.78021100394708,peer,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192924,-0.2444549486752169,relative_legacy,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192924,34.027740476625425,spot_baseline,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,192924,29.797175007399037,baseline,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,193275,71.19353569789214,spot_baseline,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,193275,58.36615167431619,baseline,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,193275,19.9941884111414,peer,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,193275,21.6319972294204,spot_peer,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,193275,0.0752859423674993,relative_legacy,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,204737,12.039403624554984,peer,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,204737,81.55754288625727,spot_baseline,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,204737,33.49178293648144,baseline,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,204737,0.0687966195512591,relative_legacy,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,204737,29.07234324712148,spot_peer,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,208405,31.399889031798963,spot_peer,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,208405,0.241802204078667,relative_legacy,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,208405,36.44607679282039,peer,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,208405,83.17559073274549,baseline,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,215725,39.200426522747634,baseline,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,215725,25.479910455518585,spot_peer,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,215725,13.430545319520316,peer,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,215725,0.0643814733711818,relative_legacy,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,218666,16.04622813504302,spot_peer,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,218666,-0.0346245426521603,relative_legacy,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,218666,46.38941756970867,baseline,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,218666,63.41285575250407,spot_baseline,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,218666,11.574258033325597,peer,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,218945,-59.27365876556923,spot_peer,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,218945,-41.50374992788438,spot_baseline,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,218945,-0.9912775017946632,relative_legacy,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,218945,-40.48968382209628,baseline,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,218945,-54.04389195480064,peer,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,219886,-0.0116821812265977,relative_legacy,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,219886,55.42972391207034,baseline,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,219886,16.35856439179579,peer,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,219886,60.644222813160766,spot_baseline,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,219886,14.058619800706415,spot_peer,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,220077,0.1609672873630067,relative_legacy,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,220077,30.54925805265748,peer,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,220077,25.479910455518585,spot_peer,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,220077,75.1196476323742,baseline,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,221727,-101.26825924820056,spot_peer,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,221727,-95.85674228887184,peer,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,221727,-97.60489206705932,baseline,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,221727,-100.0,spot_baseline,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,221727,-1.5626535732848312,relative_legacy,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,222631,-2.783298273055433,baseline,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,222631,-0.0548279576336833,relative_legacy,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,222631,-3.2383477288449294,peer,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29992,"Will iRobot file for bankruptcy before January 1, 2025?",2024-11-18 13:57:46.873476+00,222631,-66.41934902671778,spot_peer,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30197 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,182315,-0.6119792622526912,relative_legacy,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,182315,-116.38985028246496,baseline,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,182315,-57.18590441230935,peer,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,182315,-132.19280948873626,spot_baseline,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,182315,-64.18842011867231,spot_peer,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,185690,-45.97615007242827,spot_peer,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,185690,-106.7938828656576,spot_baseline,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,185690,-10.319757708045335,baseline,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,185690,-0.0696442184535273,relative_legacy,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,185690,-4.465368496716014,peer,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,185699,27.539674899128546,baseline,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,185699,34.55101786245315,peer,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,185699,0.4067728271734292,relative_legacy,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,185699,71.15635432789793,spot_peer,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,185699,56.55971758542251,spot_baseline,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,187708,-71.69573317055185,spot_peer,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,187708,-142.6625473554056,spot_baseline,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,187708,-78.60112676194963,baseline,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,187708,-0.5807158346786915,relative_legacy,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,187708,-39.51463483334851,peer,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,188107,-62.73024572911648,peer,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,188107,-0.8998173246165586,relative_legacy,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,188107,-110.99492397242123,baseline,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,188107,-112.80948521305876,spot_peer,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,188107,-200.0,spot_baseline,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,188909,26.377311331731143,spot_peer,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,188909,-5.889368905356857,spot_baseline,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,188909,0.0282664435851528,relative_legacy,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,188909,4.958325947248645,peer,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,188909,-1.1587629813521112,baseline,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,189585,77.41573650762535,peer,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,189585,79.22134137648881,spot_peer,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,189585,1.2055537439868902,relative_legacy,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,189585,66.93843389018912,baseline,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,189588,83.42555924748912,peer,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,189588,75.33540189420872,baseline,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,189588,1.2897863405107206,relative_legacy,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,189588,85.49285397818896,spot_peer,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,189869,28.65354090137448,peer,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,189869,0.4456746903897873,relative_legacy,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,189869,9.550597473465226,baseline,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,189869,13.750352374993504,spot_baseline,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,189869,40.45995005496357,spot_peer,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,190710,-45.3275694158494,spot_peer,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,190710,-105.88936890535685,spot_baseline,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,190710,-44.46277485637922,peer,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,190710,-0.4312695479281901,relative_legacy,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,190710,-99.65811116032263,baseline,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,190772,-0.9107306511450284,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,190772,-73.91939593411237,peer,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,190772,-136.41391865893326,baseline,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,190772,-173.6965594166206,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,190772,-93.94863451023582,spot_peer,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191026,25.72151981995855,spot_peer,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191026,-6.8039391618518845,spot_baseline,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191026,0.0269785435039549,relative_legacy,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191026,3.495002622615388,peer,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191026,-0.958132383683286,baseline,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191046,-0.0234868999734265,relative_legacy,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191046,2.13731646076469,peer,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191046,-10.759668744121042,baseline,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191046,-32.19280948873623,spot_baseline,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191046,7.51646062890827,spot_peer,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191284,85.49285397818896,spot_peer,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191284,76.55347463629771,spot_baseline,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191284,58.610903783739765,peer,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191284,0.85016652409907,relative_legacy,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191284,51.81552437845478,baseline,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191471,-51.08401228918378,peer,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191471,-100.08138985637636,baseline,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191471,-0.6662063699110226,relative_legacy,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191471,-75.08778380741292,spot_peer,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191471,-147.39311883324118,spot_baseline,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191935,74.84612330040356,spot_baseline,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191935,84.26859973884383,spot_peer,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191935,1.2705396012167445,relative_legacy,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191935,71.47005443707415,baseline,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,191935,80.32566333005494,peer,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192049,-41.24072529468546,peer,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192049,-95.26805060881156,baseline,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192049,-0.3951853311169904,relative_legacy,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192049,-100.0,spot_baseline,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192049,-41.10460446547818,spot_peer,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192418,-1.1689983308965208,relative_legacy,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192418,-93.94863451023582,spot_peer,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192418,-96.46117999068926,peer,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192418,-170.66011060352284,baseline,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192472,-72.87824962005188,baseline,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192472,-0.1914604259608414,relative_legacy,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192472,-25.061647422441947,peer,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192472,-73.69655941662059,spot_baseline,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192472,-22.24375376265528,spot_peer,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192924,-120.42330522176078,spot_baseline,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192924,-105.77280276427636,baseline,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192924,-0.507922380857208,relative_legacy,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192924,-49.50569568083208,peer,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,192924,-55.74911111945615,spot_peer,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,193275,-103.06941740756275,baseline,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,193275,-0.5300885958024056,relative_legacy,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,193275,-48.53514406558468,peer,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,193275,-124.46850959549022,spot_baseline,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,193275,-58.64972009163474,spot_peer,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,204737,62.71285139464757,spot_peer,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,204737,44.78436443620852,spot_baseline,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,204737,24.4618590545372,peer,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,204737,17.706737701627915,baseline,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,204737,0.2527685720471814,relative_legacy,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,208405,85.49285397818896,spot_peer,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,208405,1.2891533273936429,relative_legacy,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,208405,83.21421180185199,peer,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,208405,75.09252373453621,baseline,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,215725,79.22134137648881,spot_peer,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,215725,67.80719051126377,spot_baseline,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,215725,34.76366809163378,baseline,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,215725,0.5063013629714476,relative_legacy,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,215725,40.69006345510789,peer,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,218666,-0.0566523971346064,relative_legacy,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,218666,-13.05753099676786,peer,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,218666,-53.39001144060846,baseline,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,218666,-97.70995978899212,spot_baseline,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,218666,-39.46253386310335,spot_peer,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,218945,-72.25340716726313,spot_peer,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,218945,-143.44028241457744,spot_baseline,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,218945,-0.8583589322583725,relative_legacy,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,218945,-73.94187031874937,peer,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,218945,-139.9921269925076,baseline,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,219886,-10.713823257584831,baseline,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,219886,0.4509112996990946,relative_legacy,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,219886,20.246876874660632,peer,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,219886,-11.472240450736026,spot_baseline,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,219886,22.3741199478264,spot_peer,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,220077,57.74140708908421,spot_peer,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,220077,37.19736384709648,baseline,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,220077,0.909497507574147,relative_legacy,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,220077,55.53440624295252,peer,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,221727,1.2886944237586628,relative_legacy,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,221727,82.9125788272627,peer,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,221727,85.49285397818896,spot_peer,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,221727,74.72013098993668,baseline,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,222631,-6.297131711559613,spot_peer,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,222631,0.005786065519036,relative_legacy,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,222631,-1.0412509412897994,baseline,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29993,"Will the USDA-posted recall affecting Dearborn Sausage Company, Inc be closed before December 1, 2024?",2024-11-18 13:57:46.893964+00,222631,0.5330674011777088,peer,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30198 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,182315,89.53026213333065,spot_baseline,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,182315,8.192689800371435,spot_peer,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,182315,78.87260155098764,baseline,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,182315,0.0671440581444377,relative_legacy,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,182315,6.701381626458641,peer,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,185690,-0.0992762570821942,peer,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,185690,76.41762763559282,spot_baseline,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,185690,7.466546749648867,baseline,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,185690,-1.1894889163460431,spot_peer,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,185690,-0.0053520937075234,relative_legacy,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,185698,32.673774665192795,baseline,RonanMcGovern,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,185698,3.540646987233762,peer,RonanMcGovern,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,185698,0.0335421070634235,relative_legacy,RonanMcGovern,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,185698,92.5999418556223,spot_baseline,RonanMcGovern,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,185698,10.389066414284724,spot_peer,RonanMcGovern,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,185699,-4.801400097848193,spot_peer,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,185699,48.62837186558252,baseline,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,185699,-3.60112650504725,peer,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,185699,-0.0697692502176904,relative_legacy,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,185699,71.36958148433591,spot_baseline,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,187708,36.52171281609265,baseline,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,187708,-5.576795138566633,peer,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,187708,-0.1000762583546783,relative_legacy,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,187708,64.89255594531211,spot_baseline,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,187708,-9.435755701243387,spot_peer,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,188107,80.73549220576041,spot_baseline,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,188107,45.0328042751719,baseline,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,188107,-0.0111217391029217,relative_legacy,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,188107,1.899972402726307,spot_peer,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,188107,0.8279619307478376,peer,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,188909,-32.01012483309676,spot_peer,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,188909,-6.3228282829251885,peer,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,188909,6.598919086149711,baseline,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,188909,33.34237337251918,spot_baseline,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,188909,-0.0958221650714223,relative_legacy,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,189585,83.78550359324787,baseline,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,189585,0.0264439988247025,relative_legacy,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,189585,4.807933896062703,spot_peer,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,189585,3.689989556674536,peer,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,189588,9.31740811674554,peer,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,189588,91.28122884871826,baseline,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,189588,0.1034189929887626,relative_legacy,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,189588,10.389066414284724,spot_peer,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,189869,-0.035325731559282,relative_legacy,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,189869,-1.0807735191842571,peer,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,189869,-1.092289468061017,spot_peer,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,189869,53.17297134215061,baseline,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,190710,-18.22623914282346,spot_peer,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,190710,-0.2760676409886547,relative_legacy,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,190710,52.60688116675877,spot_baseline,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,190710,49.544106073789855,baseline,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,190710,-18.25954535606868,peer,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,190772,28.688114778816157,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,190772,-0.4189521520685955,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,190772,-28.43324169796546,peer,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,190772,22.54203255363852,baseline,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,190772,-35.34027835239705,spot_peer,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191026,0.0008865150561297,relative_legacy,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191026,82.80263662903967,spot_baseline,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191026,3.3790282260101585,spot_peer,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191026,11.660901927348103,baseline,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191026,0.4927341476383928,peer,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191046,25.67488608614825,baseline,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191046,76.55347463629771,spot_baseline,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191046,-0.4845327266928412,peer,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191046,-1.092289468061017,spot_peer,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191046,-0.0216375530913178,relative_legacy,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191284,4.807933896062703,spot_peer,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191284,2.971901081253943,peer,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191284,0.0213660758068033,relative_legacy,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191284,57.39650917305877,baseline,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191284,84.79969065549501,spot_baseline,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191471,-1.092289468061017,spot_peer,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191471,76.55347463629771,spot_baseline,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191471,52.031339473936455,baseline,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191471,-0.0344482803223616,relative_legacy,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191471,-1.0535395693096952,peer,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191935,83.18772411916731,spot_baseline,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191935,0.0117332498725837,relative_legacy,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191935,2.6419797792627104,peer,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191935,79.55410187985724,baseline,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191935,3.6545609310949327,spot_peer,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191975,97.23250415571516,spot_baseline,jkraybill_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191975,77.08597768240632,baseline,jkraybill_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191975,0.1204176986790057,relative_legacy,jkraybill_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191975,13.703696088687453,spot_peer,jkraybill_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,191975,10.543928232278107,peer,jkraybill_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192049,80.93243860503722,baseline,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192049,0.0271177850903736,relative_legacy,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192049,3.7657378843313336,peer,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192049,4.807933896062703,spot_peer,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192418,90.99589399989824,baseline,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192418,10.389066414284724,spot_peer,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192418,9.307629482350864,peer,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192418,0.1033475127481135,relative_legacy,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192472,10.389066414284724,spot_peer,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192472,0.1035000846326334,relative_legacy,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192472,92.5999418556223,spot_baseline,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192472,9.32880382035789,peer,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192472,91.65986450756542,baseline,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192924,56.97582797216225,baseline,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192924,-0.1514416219113073,relative_legacy,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192924,-9.135418989091566,peer,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192924,-9.567505312557437,spot_peer,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,192924,64.70842126289537,spot_baseline,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,193275,88.44025529836873,spot_baseline,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,193275,7.412782533847639,spot_peer,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,193275,5.246368510775678,peer,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,193275,0.0457137517419559,relative_legacy,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,193275,73.7115211576006,baseline,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,204737,88.75252707415875,spot_baseline,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,204737,36.85030289257254,baseline,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,204737,2.999699295130556,peer,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,204737,7.636215102577747,spot_peer,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,204737,0.0224313072032394,relative_legacy,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,208405,91.01611709535398,baseline,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,208405,0.1032687497211157,relative_legacy,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,208405,10.389066414284724,spot_peer,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,208405,9.300561169280856,peer,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,215725,0.0078742317607148,relative_legacy,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,215725,4.807933896062703,spot_peer,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,215725,43.52221581454136,baseline,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,215725,84.79969065549501,spot_baseline,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,215725,2.2516621973059032,peer,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,218666,72.82465063259785,baseline,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,218666,91.6858764699754,spot_baseline,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,218666,6.066552878132597,peer,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,218666,0.0575943997674052,relative_legacy,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,218666,9.735046445346825,spot_peer,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,218945,-1.092289468061017,spot_peer,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,218945,74.74325330768892,baseline,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,218945,-2.134034942577203,peer,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,218945,-0.0533634075083912,relative_legacy,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,219886,51.54621321692398,baseline,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,219886,-13.694322266469245,peer,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,219886,-14.474463917721351,spot_peer,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,219886,57.85040281880038,spot_baseline,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,219886,-0.2138255139415896,relative_legacy,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,220077,4.807933896062703,spot_peer,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,220077,83.40847048346978,baseline,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,220077,84.79969065549501,spot_baseline,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,220077,0.0266961869312963,relative_legacy,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,220077,3.713090748611765,peer,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,221727,74.71042421615174,baseline,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,221727,-2.1810875196516424,peer,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,221727,-1.092289468061017,spot_peer,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,221727,-0.0540522698213368,relative_legacy,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,222631,-1.092289468061017,spot_peer,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,222631,2.41071492954676,baseline,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,222631,-0.651514673939038,peer,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,222631,-0.0105170543152849,relative_legacy,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29994,Will the Federal Register list exactly zero executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:46.914329+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30199 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,182315,71.36958148433591,spot_baseline,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,182315,0.3541659658664879,relative_legacy,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,182315,62.9083621541261,baseline,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,182315,52.20936369908132,peer,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,182315,55.46555136676718,spot_peer,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,185690,8.280447127036593,spot_peer,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,185690,0.6641149754336421,peer,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,185690,-0.013715565268177,relative_legacy,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,185690,5.491791912895793,spot_baseline,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,185690,0.54308924000768,baseline,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,185698,39.11573749456143,spot_peer,RonanMcGovern,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,185698,0.034209827490177,relative_legacy,RonanMcGovern,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,185698,17.137210699229826,baseline,RonanMcGovern,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,185698,13.449708959220246,peer,RonanMcGovern,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,185698,48.54268271702416,spot_baseline,RonanMcGovern,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,185699,78.24085649273731,spot_baseline,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,185699,0.3174799525857221,relative_legacy,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,185699,54.20477162131183,baseline,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,185699,60.38711642899014,spot_peer,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,185699,43.07259375098078,peer,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,187708,-0.0313485582813026,relative_legacy,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,187708,28.92442851566425,spot_baseline,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,187708,25.06412198780781,spot_peer,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,187708,14.565414173979695,peer,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,187708,16.50454810740378,baseline,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,188107,25.160746947682075,peer,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,188107,55.25410230287789,spot_baseline,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,188107,31.27251292092791,baseline,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,188107,43.922805776833705,spot_peer,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,188107,0.1176711577935288,relative_legacy,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,188909,8.56715430388307,peer,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,188909,44.857955447225216,spot_peer,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,188909,11.253185890911617,baseline,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,188909,56.55971758542251,spot_baseline,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,188909,0.0466559250973008,relative_legacy,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,189585,-98.79502813807056,baseline,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,189585,-100.0,spot_baseline,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,189585,-61.28080088969883,peer,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,189585,-1.214235623297259,relative_legacy,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,189585,-67.27826894749158,spot_peer,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,189588,-173.6965594166206,spot_baseline,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,189588,-1.940795331070789,relative_legacy,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,189588,-120.0635834033106,spot_peer,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,189588,-114.3030846938235,peer,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,189588,-171.24293955864536,baseline,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,189869,-48.43837474544959,spot_peer,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,189869,-51.18944451436155,baseline,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,189869,-0.7368031863820463,relative_legacy,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,189869,-32.9731071578859,peer,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,189869,-73.69655941662059,spot_baseline,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,190710,23.878685958711674,spot_baseline,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,190710,25.04121375675367,peer,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,190710,21.450098353052027,spot_peer,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,190710,22.50591223341991,baseline,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,190710,-0.0320064228053118,relative_legacy,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,190772,-9.457276297441172,baseline,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,190772,-4.269159879999182,spot_peer,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,190772,-0.3410098441634309,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,190772,-1.730948222337046,peer,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,190772,-12.029423371771196,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191026,-0.0154385729421202,relative_legacy,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191026,2.222167535443914,baseline,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191026,1.946274129647384,peer,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191026,15.64828595222889,spot_peer,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191026,15.778447914677184,spot_baseline,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191046,0.0307051411260493,relative_legacy,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191046,12.726276204594267,peer,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191046,16.270024065544863,baseline,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191046,48.54268271702416,spot_baseline,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191046,39.11573749456143,spot_peer,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191284,0.1304937037285028,relative_legacy,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191284,29.13878446044719,peer,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191284,39.11573749456143,spot_peer,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191284,35.151528921919954,baseline,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191471,-0.6294670235347901,relative_legacy,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191471,-25.61983359528481,peer,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191471,-38.58965616566939,spot_peer,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191471,-40.779720604721845,baseline,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191471,-59.94620704162715,spot_baseline,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191935,50.58909297299573,spot_baseline,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191935,40.58148311039694,spot_peer,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191935,0.2313593708549882,relative_legacy,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191935,44.46598267130873,peer,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,191935,48.37990163654334,baseline,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192049,-0.5604861546962838,relative_legacy,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192049,-30.75742714912789,baseline,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192049,-18.711227258765565,spot_peer,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192049,-13.227178797428165,peer,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192049,-32.19280948873623,spot_baseline,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192418,-67.27826894749158,spot_peer,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192418,-61.12843506199759,peer,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192418,-98.28253674893467,baseline,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192418,-1.2141274420693942,relative_legacy,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192472,34.58946648652749,spot_peer,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192472,0.1910911340043555,relative_legacy,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192472,42.22330006830476,spot_baseline,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192472,41.57767751143501,peer,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192472,41.826497276275646,baseline,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192924,20.42239409014681,baseline,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192924,-0.0709227118618881,relative_legacy,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192924,23.143240844796505,spot_baseline,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192924,21.408246234063096,peer,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,192924,20.923334255646257,spot_peer,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,193275,0.1797973701819977,relative_legacy,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,193275,38.64964563674754,peer,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,193275,52.40636757772108,spot_baseline,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,193275,41.883109837917786,spot_peer,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,193275,44.903191615230085,baseline,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,204737,-8.102998501101156,baseline,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,204737,-0.2330068784914978,relative_legacy,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,204737,-9.569466966712715,spot_peer,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,204737,-4.235562947139344,peer,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,204737,-19.42948151614885,spot_baseline,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,208405,13.511292602216294,baseline,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,208405,-0.0960021724931983,relative_legacy,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,208405,14.195658290149687,spot_peer,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,208405,13.750352374993504,spot_baseline,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,208405,20.547091750639947,peer,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,215725,2.259078686692825,peer,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,215725,-0.1799670799678319,relative_legacy,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,215725,4.346939710369429,spot_peer,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,215725,0.0,spot_baseline,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,215725,0.0,baseline,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,218666,17.852585571223475,peer,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,218666,6.393211197641348,spot_peer,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,218666,-0.0901812561225019,relative_legacy,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,218666,2.856915219677092,spot_baseline,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,218666,16.999872612597272,baseline,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,218945,-0.9571882481198476,relative_legacy,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,218945,-48.43837474544959,spot_peer,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,218945,-42.22488250585612,peer,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,218945,-71.98881269291574,baseline,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,218945,-73.69655941662059,spot_baseline,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,219886,34.36559230634599,spot_peer,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,219886,0.0954598644424518,relative_legacy,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,219886,33.591019048069086,peer,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,219886,41.9107366784361,spot_baseline,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,219886,37.09833375770414,baseline,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,220077,-1.2146352283988449,relative_legacy,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,220077,-67.27826894749158,spot_peer,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,220077,-98.8393857917852,baseline,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,220077,-100.0,spot_baseline,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,220077,-61.324950098825376,peer,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,221727,-26.353620810895976,peer,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,221727,-0.7397589357251373,relative_legacy,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,221727,-32.50947116329959,spot_peer,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,221727,-50.23985132461514,baseline,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,222631,-100.0,spot_baseline,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,222631,-3.7195713244018,baseline,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,222631,-2.490567690711225,peer,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,222631,-0.0439862858415862,relative_legacy,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29995,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.140334+00,222631,-67.27826894749158,spot_peer,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30200 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,182315,0.0914468767448758,relative_legacy,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,182315,19.440615415542432,peer,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,182315,35.61438102252753,spot_baseline,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,182315,28.23840981776815,spot_peer,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,182315,31.41019951853512,baseline,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,185690,46.69663842730796,spot_baseline,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,185690,3.522632336595036,peer,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,185690,36.16783998485268,spot_peer,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,185690,0.0282341061080537,relative_legacy,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,185690,4.677517161837755,baseline,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,185698,-132.19280948873623,spot_baseline,RonanMcGovern,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,185698,-91.82877054926983,spot_peer,RonanMcGovern,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,185698,-46.69328628101452,baseline,RonanMcGovern,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,185698,-32.71037910490447,peer,RonanMcGovern,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,185698,-0.5092242186385918,relative_legacy,RonanMcGovern,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,185699,-76.29857923777652,peer,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,185699,-104.51513460650636,baseline,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,185699,-147.39311883324126,spot_baseline,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,185699,-1.206764850597293,relative_legacy,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,185699,-102.70469474620675,spot_peer,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,187708,34.04001978510312,spot_peer,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,187708,25.26280808648755,baseline,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,187708,43.72277389129098,spot_baseline,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,187708,18.152407665870037,peer,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,187708,0.1353376388325029,relative_legacy,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,188107,-7.202671408379737,baseline,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,188107,-6.225740367641456,spot_peer,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,188107,-0.1877961708000434,relative_legacy,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,188107,-5.20334392594684,peer,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,188107,-12.553088208385896,spot_baseline,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,188909,-13.795344357702856,baseline,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,188909,-46.58955187250546,spot_peer,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,188909,-68.96598793878495,spot_baseline,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,188909,-9.35710652243639,peer,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,188909,-0.1437239393309155,relative_legacy,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,189585,47.96073899832278,baseline,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,189585,37.48869716638102,spot_peer,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,189585,0.2206378522073455,relative_legacy,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,189585,30.724745556508683,peer,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,189588,-99.49763717802831,peer,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,189588,-1.5613149034703082,relative_legacy,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,189588,-91.82877054926983,spot_peer,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,189588,-130.31852037271747,baseline,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,189588,-132.19280948873623,spot_baseline,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,189869,-37.68976262460336,peer,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,189869,-51.1908667359795,baseline,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,189869,-0.6694624228783055,relative_legacy,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,189869,-49.9743077768142,spot_peer,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,189869,-73.69655941662063,spot_baseline,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,190710,9.01632018647126,peer,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,190710,16.281577247433006,spot_peer,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,190710,17.832093209802217,baseline,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,190710,18.903382439001685,spot_baseline,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,190710,-0.061546507731484,relative_legacy,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,190772,19.54040135966913,peer,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,190772,0.108076550023892,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,190772,37.85116232537298,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,190772,29.838841976319404,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,190772,29.773806751214774,baseline,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191026,-18.21642021485429,spot_peer,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191026,-0.0519745380028633,relative_legacy,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191026,-2.62896093551014,peer,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191026,-4.128307775158362,baseline,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191026,-29.311392112332687,spot_baseline,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191046,29.838841976319404,spot_peer,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191046,9.900583562058834,peer,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191046,12.69882869490544,baseline,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191046,37.85116232537298,spot_baseline,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191046,0.0832230600865413,relative_legacy,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191284,23.17183077918038,peer,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191284,33.05521389667996,baseline,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191284,37.48869716638102,spot_peer,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191284,48.54268271702416,spot_baseline,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191284,0.177988286808107,relative_legacy,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191471,37.85116232537298,spot_baseline,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191471,25.772679308888023,baseline,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191471,17.898271156422553,peer,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191471,0.1037822532499285,relative_legacy,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191471,29.838841976319404,spot_peer,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191935,0.0067582604230958,relative_legacy,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191935,14.247025957938863,peer,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191935,25.154917444342523,baseline,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191935,21.576368926147893,spot_peer,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191935,26.303440583379377,spot_baseline,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191975,0.0095398779433151,relative_legacy,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191975,26.303440583379377,spot_baseline,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191975,2.897484392572755,baseline,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191975,2.277730089880756,peer,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,191975,21.576368926147893,spot_peer,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192049,-49.236564887731895,baseline,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192049,-0.7374027690235706,relative_legacy,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192049,-34.06197953658107,spot_peer,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192049,-51.45731728297583,spot_baseline,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192049,-39.91200118762765,peer,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192418,0.3160071446298591,relative_legacy,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192418,57.499413880897805,baseline,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192418,44.61054196503407,spot_peer,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192418,37.61800866834957,peer,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192472,-32.19280948873623,spot_baseline,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192472,-27.765032859528706,peer,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192472,-31.91649178700767,baseline,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192472,-20.27809384630776,spot_peer,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192472,-0.5783727448314381,relative_legacy,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192924,0.0775976903258392,relative_legacy,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192924,27.103157770331634,spot_peer,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192924,18.460546768311524,peer,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192924,30.09293504998667,baseline,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,192924,34.027740476625425,spot_baseline,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,193275,36.06452024602161,spot_baseline,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,193275,39.98032301260453,baseline,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,193275,28.560487478283623,spot_peer,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,193275,25.90502955585444,peer,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,193275,0.1827745367601677,relative_legacy,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,204737,-88.36352433082153,spot_baseline,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,204737,-60.46862042471096,spot_peer,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,204737,-24.451262326953945,peer,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,204737,-35.12817500626425,baseline,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,204737,-0.40523092336772,relative_legacy,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,208405,22.797617008460342,peer,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,208405,37.85116232537298,spot_baseline,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,208405,37.19649923799208,baseline,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,208405,29.838841976319404,spot_peer,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,208405,0.1129504615049626,relative_legacy,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,215725,-73.69655941662063,spot_baseline,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,215725,-26.909806976375997,peer,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,215725,-49.9743077768142,spot_peer,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,215725,-37.91704644224795,baseline,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,215725,-0.4738296431814277,relative_legacy,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,218666,-1.0175316292645538,baseline,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,218666,12.697285625776551,spot_baseline,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,218666,-3.219985919112781,peer,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,218666,-0.2121368561070305,relative_legacy,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,218666,11.84107298072946,spot_peer,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,218945,37.35335211688813,peer,SeidrBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,218945,0.3147337461892888,relative_legacy,SeidrBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,218945,44.61054196503407,spot_peer,SeidrBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,218945,58.496250072115615,spot_baseline,SeidrBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,218945,57.16595181383639,baseline,SeidrBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,219886,26.454812128824624,baseline,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,219886,15.289364942593853,peer,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,219886,22.82470417129713,spot_peer,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,219886,28.048127430062348,spot_baseline,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,219886,0.0247160988614033,relative_legacy,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,220077,23.166138133371497,peer,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,220077,37.85116232537298,spot_baseline,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,220077,37.62528233099582,baseline,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,220077,0.1160549508676901,relative_legacy,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,220077,29.838841976319404,spot_peer,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,221727,0.3146958473925759,relative_legacy,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,221727,57.13739245718348,baseline,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,221727,37.33476594564908,peer,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,221727,44.61054196503407,spot_peer,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,222631,-0.3504023923840187,baseline,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,222631,-0.0114342427637727,relative_legacy,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,222631,-34.06197953658107,spot_peer,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29996,Will the Federal Register list 3 or more executive orders by President Joe Biden for December 2024?,2024-11-18 13:57:47.161823+00,222631,-0.1735284068114092,peer,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,0.5,2024-11-19 15:30:00+00,30201 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,182315,94.11063109464314,spot_baseline,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,182315,1.9429582764941076,spot_peer,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,182315,0.0089109805389893,relative_legacy,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,182315,1.9833099877718092,peer,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,182315,83.05451488330883,baseline,RyansAGI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,185690,9.566519604434689,baseline,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,185690,0.2149733074746217,peer,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,185690,0.000497874701388,relative_legacy,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,185690,2.0236559247448103,spot_peer,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,185690,94.22329764007156,spot_baseline,annabot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,185698,97.08536543404836,spot_baseline,RonanMcGovern,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,185698,4.073617954110119,spot_peer,RonanMcGovern,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,185698,0.0130151545978341,relative_legacy,RonanMcGovern,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,185698,1.4594058084230463,peer,RonanMcGovern,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,185698,34.313580507722634,baseline,RonanMcGovern,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,185699,2.318194793877161,peer,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,185699,69.10057734908061,baseline,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,185699,95.60566524124027,spot_baseline,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,185699,0.0173999858013067,relative_legacy,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,185699,3.0137796035005944,spot_peer,MWG,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,187708,1.5115032307444387,spot_peer,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,187708,93.50825233186616,spot_baseline,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,187708,0.001039274422251,relative_legacy,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,187708,0.94962457483354,peer,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,187708,54.68147252607912,baseline,twsummerbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,188107,53.962553114298224,baseline,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,188107,0.3543922389369129,peer,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,188107,-0.0072377139700601,relative_legacy,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,188107,92.09284290088011,spot_baseline,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,188107,0.4977132724376428,spot_peer,Cassie,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,188909,74.84612330040356,spot_baseline,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,188909,-11.8552856280399,spot_peer,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,188909,-0.0368464818115898,relative_legacy,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,188909,-2.3518379749557474,peer,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,188909,15.048701067770278,baseline,silicoqr,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,189585,83.78723989675953,baseline,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,189585,-0.0812806769483399,relative_legacy,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,189585,-4.430722322806568,peer,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,189585,-4.72602224105491,spot_peer,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,189588,0.8609239568735755,spot_peer,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,189588,1.1884388064053188,peer,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,189588,91.25453409580238,baseline,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,189588,-0.0044157721089745,relative_legacy,mf-bot-3,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,189869,68.45768854896804,baseline,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,189869,3.693372516479477,peer,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,189869,5.122696338725321,spot_peer,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,189869,0.0370079405541805,relative_legacy,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,189869,98.5500430304885,spot_baseline,VeritasAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,190710,84.79969065549501,spot_baseline,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,190710,-4.72602224105491,spot_peer,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,190710,-0.0780509491630573,relative_legacy,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,190710,80.04593277103231,baseline,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,190710,-4.243748752168335,peer,Bot_Pepa,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,190772,-1.782532195661,peer,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,190772,69.248648536094,baseline,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,190772,87.97057662822883,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,190772,-0.0407657990030575,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,190772,-2.4548685467814657,spot_peer,Jay_Bailey_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191026,-0.0011503232842343,relative_legacy,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191026,0.8609239568735755,spot_peer,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191026,0.1403227776485971,peer,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191026,13.04277951495723,baseline,manticAI,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191046,30.90789383303081,baseline,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191046,0.3054438681321146,peer,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191046,-0.0023558047602006,relative_legacy,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191046,0.8609239568735755,spot_peer,archipelago,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191284,84.79969065549501,spot_baseline,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191284,-4.72602224105491,spot_peer,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191284,-0.0569229024195529,relative_legacy,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191284,57.395206378745385,baseline,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191284,-3.1180580611693696,peer,000_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191471,61.02976058868282,baseline,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191471,-0.8134144497577366,peer,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191471,-1.337740549345867,spot_peer,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191471,89.53026213333065,spot_baseline,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191471,-0.0250532205660202,relative_legacy,HSeldon,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191935,0.0385139291869217,relative_legacy,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191935,4.073617954110119,spot_peer,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191935,97.08536543404836,spot_baseline,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191935,92.931429831898,baseline,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,191935,4.251151865677398,peer,pgodzinai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192049,1.1278366721433035,peer,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192049,88.72953334033377,baseline,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192049,0.8609239568735755,spot_peer,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192049,-0.004421154250345,relative_legacy,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192418,-0.0044157721089745,relative_legacy,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192418,0.8609239568735755,spot_peer,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192418,1.1807638174745585,peer,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192418,91.03622138050032,baseline,InstitutPelFutur,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192472,2.3203872214958188,peer,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192472,93.41042741478238,baseline,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192472,94.11063109464314,spot_baseline,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192472,0.0108995485911366,relative_legacy,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192472,1.9429582764941076,spot_peer,bestworldbot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192924,78.24085649273731,spot_baseline,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192924,-9.423800895653171,spot_peer,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192924,-0.131779597691572,relative_legacy,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192924,69.396019625176,baseline,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,192924,-8.21348823947018,peer,acm_bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,193275,0.9203124500985476,peer,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,193275,80.71682096003327,baseline,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,193275,92.44799923590224,spot_baseline,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,193275,0.7520947384588585,spot_peer,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,193275,-0.0054894041741768,relative_legacy,histerio,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,204737,3.6509861447858554,spot_peer,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,204737,0.0129234126042721,relative_legacy,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,204737,96.49530529007993,spot_baseline,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,204737,1.5581228624864942,peer,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,204737,40.545744863699525,baseline,SynapseSeer,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,208405,-0.0043716832478035,relative_legacy,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,208405,91.03192739741824,baseline,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,208405,1.1842015576854945,peer,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,208405,0.8609239568735755,spot_peer,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,215725,95.60566524124027,spot_baseline,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,215725,3.0137796035005944,spot_peer,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,215725,0.0111762832655634,relative_legacy,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,215725,49.24740554945973,baseline,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,215725,1.5971162314406344,peer,estr.ai,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,218666,3.645749962503619,peer,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,218666,80.0456746316751,baseline,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,218666,0.0334972541126905,relative_legacy,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,218666,98.5500430304885,spot_baseline,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,218666,5.122696338725321,spot_peer,GreeneiBot2,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,218945,-7.637012860946869,spot_peer,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,218945,80.73549220576041,spot_baseline,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,218945,-0.1204287965196578,relative_legacy,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,218945,78.9448217531476,baseline,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,218945,-7.287598181899337,peer,SeidrBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,219886,2.855869129413443,peer,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,219886,91.52601159791465,baseline,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,219886,95.05281363826704,spot_baseline,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,219886,2.617798489302654,spot_peer,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,219886,0.019197459721557,relative_legacy,SaraBase,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,220077,84.79969065549501,spot_baseline,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,220077,-0.0815171014661506,relative_legacy,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,220077,-4.72602224105491,spot_peer,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,220077,-4.462252154594873,peer,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,220077,84.51826673470615,baseline,mmBot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,221727,3.3070320187448425,peer,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,221727,93.3817945599347,baseline,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,221727,0.0249294531384823,relative_legacy,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,221727,95.60566524124027,spot_baseline,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,221727,3.0137796035005944,spot_peer,mf-bot-5,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,222631,0.0009048083687294,relative_legacy,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,222631,4.073617954110119,spot_peer,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,222631,97.08536543404836,spot_baseline,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,222631,4.166596192151803,baseline,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29997,"Will the CDC confirm a case of Marburg virus disease in a US resident before January 1, 2025?",2024-11-18 13:57:47.183209+00,222631,0.1476298633363905,peer,Grizeu_Bot,True,no,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30202 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,182315,37.28841277371531,baseline,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,182315,0.2420680530479256,relative_legacy,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,182315,37.63092031670041,spot_peer,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,182315,28.811492087121582,peer,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,182315,42.22330006830478,spot_baseline,RyansAGI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,185690,-6.945188075214521,spot_baseline,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,185690,-0.00705856609899,relative_legacy,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,185690,2.4505343253966867,spot_peer,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,185690,0.2839715056394177,peer,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,185690,-0.7139247779221086,baseline,annabot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,185698,-81.92512171798418,peer,RonanMcGovern,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,185698,-332.1928094887362,spot_baseline,RonanMcGovern,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,185698,-117.4927677599266,baseline,RonanMcGovern,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,185698,-230.26633975626632,spot_peer,RonanMcGovern,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,185698,-1.2027294160427222,relative_legacy,RonanMcGovern,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,185699,-23.66195263780193,spot_peer,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,185699,-43.440282414577496,spot_baseline,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,185699,-21.17025276880905,peer,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,185699,-31.882549439118275,baseline,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,185699,-0.4075285791615576,relative_legacy,MWG,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,187708,38.63088486563091,baseline,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,187708,64.89255594531211,spot_baseline,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,187708,29.57561164214393,peer,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,187708,0.3153742031127724,relative_legacy,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,187708,53.850926300225176,spot_peer,twsummerbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,188107,0.0491439691958967,relative_legacy,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,188107,12.07522502281616,baseline,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,188107,20.163386116965043,spot_baseline,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,188107,10.449600975957882,peer,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,188107,21.846902604425697,spot_peer,Cassie,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,188909,-77.3265161769925,spot_peer,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,188909,-15.685078907603494,peer,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,188909,-118.44245711374272,spot_baseline,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,188909,-0.2479064759184427,relative_legacy,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,188909,-24.078470531866724,baseline,silicoqr,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,189585,7.4198633915060865,spot_peer,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,189585,2.7055911848355123,peer,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,189585,-0.0004197789767344,baseline,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,189585,0.0,spot_baseline,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,189585,-0.1411656989638276,relative_legacy,mf-bot-1,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,189588,-20.465645249379374,peer,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,189588,-32.19280948873623,spot_baseline,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,189588,-15.614309647380066,spot_peer,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,189588,-0.4587704729403908,relative_legacy,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,189588,-31.760477397656327,baseline,mf-bot-3,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,189869,-15.200309344504996,spot_baseline,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,189869,-0.1868693877146509,relative_legacy,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,189869,-10.55909292685756,baseline,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,189869,-3.4560608054308086,spot_peer,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,189869,-5.835472842074909,peer,VeritasAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,190710,0.2521646327492006,relative_legacy,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,190710,39.891789491936976,baseline,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,190710,31.13162466556973,peer,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,190710,42.22330006830478,spot_baseline,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,190710,37.63092031670041,spot_peer,Bot_Pepa,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,190772,0.0500363505367454,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,190772,18.903382439001685,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,190772,12.559101505681802,peer,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,190772,20.94536144636071,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,190772,14.89030844967282,baseline,Jay_Bailey_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191026,1.174272272162865,peer,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191026,0.1339006782973466,baseline,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191026,-0.0012738202529964,relative_legacy,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191026,0.9505990988051468,spot_baseline,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191026,8.100023479433439,spot_peer,manticAI,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191046,62.19439253340754,spot_peer,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191046,0.2322197183820112,relative_legacy,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191046,20.78343881879963,peer,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191046,25.76701410370545,baseline,archipelago,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191284,84.79969065549501,spot_baseline,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191284,41.406401186508205,peer,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191284,55.02881860193355,baseline,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191284,68.09461589753128,spot_peer,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191284,0.4700241354413881,relative_legacy,000_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191471,-4.019562028897068,baseline,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191471,3.2059800861894288,spot_peer,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191471,-1.1445626608331625,peer,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191471,-5.889368905356857,spot_baseline,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191471,-0.12012487899114,relative_legacy,HSeldon,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191935,0.0555478759767693,relative_legacy,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191935,22.74063811339236,spot_peer,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191935,21.412480535284736,spot_baseline,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191935,17.19794726928208,peer,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191935,20.530212420558325,baseline,pgodzinai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191975,1.95850801016961,baseline,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191975,7.22201594072669,spot_baseline,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191975,12.587264668691846,spot_peer,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191975,3.3294253835223477,peer,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,191975,0.003127753062431,relative_legacy,jkraybill_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192049,25.246688593427155,baseline,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192049,20.642621811308484,peer,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192049,26.240153125075597,spot_peer,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192049,0.1027126377054576,relative_legacy,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192418,-29.39819533765338,spot_peer,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192418,-34.19860126412313,peer,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192418,-0.6479333134236506,relative_legacy,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192418,-50.59629802329166,baseline,InstitutPelFutur,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192472,-32.19280948873623,spot_baseline,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192472,-15.614309647380066,spot_peer,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192472,-31.98231457912466,baseline,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192472,-20.785384232665777,peer,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192472,-0.4613664578902683,relative_legacy,bestworldbot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192924,15.36422892813871,spot_peer,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192924,-0.0333535653002615,relative_legacy,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192924,11.103131238874395,spot_baseline,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192924,9.86919158040494,baseline,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,192924,8.962275989687285,peer,acm_bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,193275,39.396527566024254,spot_baseline,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,193275,26.902637194650065,peer,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,193275,35.608345462465444,spot_peer,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,193275,34.66555418053642,baseline,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,193275,0.2164445336142479,relative_legacy,histerio,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,204737,-73.69655941662063,spot_baseline,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,204737,-0.3486093631267393,relative_legacy,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,204737,-20.04159973078644,peer,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,204737,-31.13492828044773,baseline,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,204737,-45.3105235778865,spot_peer,SynapseSeer,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,208405,-69.09096405736204,peer,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,208405,-64.130813311456,spot_peer,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,208405,-98.4369133195729,baseline,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,208405,-100.0,spot_baseline,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,208405,-1.126418394726958,relative_legacy,mf-bot-4,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,215725,17.25833356485576,spot_peer,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,215725,7.090304032167283,baseline,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,215725,0.0160305635241609,relative_legacy,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,215725,13.750352374993504,spot_baseline,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,215725,7.094201067095753,peer,estr.ai,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,218666,-8.31412353002457,spot_baseline,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,218666,-0.2165565355843154,relative_legacy,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,218666,1.471051743853315,spot_peer,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,218666,-5.996862548747383,peer,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,218666,-10.764076877661225,baseline,GreeneiBot2,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,218945,47.48568279357099,baseline,SeidrBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,218945,0.3305070482467933,relative_legacy,SeidrBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,218945,48.54268271702416,spot_baseline,SeidrBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,218945,42.15248136530871,spot_peer,SeidrBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,218945,37.148065990437175,peer,SeidrBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,219886,46.02875828858571,baseline,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,219886,41.07033117022792,spot_peer,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,219886,0.3160922826325346,relative_legacy,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,219886,36.09571955234879,peer,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,219886,47.03025789458219,spot_baseline,SaraBase,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,220077,37.85116232537298,spot_baseline,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,220077,0.2344933867480141,relative_legacy,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,220077,34.5026261752471,spot_peer,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,220077,37.77219089664164,baseline,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,220077,30.280107552456407,peer,mmBot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,221727,-68.59789788541507,peer,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,221727,-97.66123843855328,baseline,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,221727,-1.1209621640744494,relative_legacy,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,221727,-100.0,spot_baseline,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,221727,-64.130813311456,spot_peer,mf-bot-5,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,222631,-3.4560608054308086,spot_peer,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,222631,-2.7477190941680294,baseline,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,222631,-0.0254779988287016,relative_legacy,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,222631,-15.200309344504996,spot_baseline,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -29998,Will Lainey Wilson or Chris Stapleton win the 2024 CMA Award for Single of the Year?,2024-11-18 13:57:47.204339+00,222631,-1.596663789425068,peer,Grizeu_Bot,True,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,2024-11-19 15:30:00+00,30203 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,182315,67.80719051126377,spot_baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,182315,59.398987470673084,baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,182315,-7.136059739424558,peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,182315,-0.0847799365650379,relative_legacy,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,182315,-8.519793818000354,spot_peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,185690,-0.1258567910987096,peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,185690,77.33212221316623,spot_baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,185690,7.04340063148029,baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,185690,0.0002487233272622,relative_legacy,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,185690,-1.6975416119939588,spot_peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,185699,3.4870799430193906,peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,185699,89.53026213333065,spot_baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,185699,0.0483841200582304,relative_legacy,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,185699,7.039401558201659,spot_peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,185699,42.2925401596607,baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,187708,26.98486967164582,baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,187708,-4.242732627794441,peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,187708,65.07645591169023,spot_baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,187708,-0.0576187704168202,relative_legacy,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,187708,-10.475688172837296,spot_peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,188107,0.0308117987133496,relative_legacy,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,188107,44.96730605672754,baseline,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,188107,3.651119866492616,spot_peer,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,188107,84.79969065549501,spot_baseline,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,188107,2.1274353788688503,peer,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,188389,12.450760061657649,spot_peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,188389,0.1809293856575987,peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,188389,97.08536543404836,spot_baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,188389,1.4108050783517565,baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,188389,0.0028704610345077,relative_legacy,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,188909,-5.968223850328621,spot_peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,188909,-0.0106924878624479,relative_legacy,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,188909,71.36958148433591,spot_baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,188909,-1.13496979279058,peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,188909,14.433299425355784,baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,189585,83.56991012458091,baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,189585,3.651119866492616,spot_peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,189585,3.919883702879559,peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,189585,0.0672465074375561,relative_legacy,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,189588,-2.009405409275535,peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,189588,75.24231284266948,baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,189588,-2.255249563635425,spot_peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,189588,-0.0138192107691313,relative_legacy,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,189869,74.01091982623602,baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,189869,-0.0131305622837344,relative_legacy,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,189869,-1.94262387502062,peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,189869,-2.255249563635425,spot_peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,190710,-4.141459717600271,peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,190710,68.30618325862648,baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,190710,-4.715683261986338,spot_peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,190710,73.11832415721999,spot_baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,190710,-0.043165154622007,relative_legacy,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,190772,76.55347463629771,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,190772,59.94997350715714,baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,190772,-1.3929239215626137,peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,190772,-2.255249563635425,spot_peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,190772,-0.0107335153109251,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191026,70.25807606345751,spot_baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191026,11.826392798673778,baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191026,-1.090353259649093,peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191026,-0.0109439860508905,relative_legacy,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191026,-6.764341927276216,spot_peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191046,3.651119866492616,spot_peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191046,0.0292954983222595,relative_legacy,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191046,2.0449137068355863,peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191046,84.79969065549501,spot_baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191046,43.40802354695682,baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191284,-1.9546964541042304,peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191284,-0.0131305622837344,relative_legacy,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191284,74.29530663518739,baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191284,-2.255249563635425,spot_peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191284,76.55347463629771,spot_baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191471,-8.519793818000354,spot_peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191471,-0.0704719837454743,relative_legacy,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191471,-5.484451516989568,peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191471,67.80719051126377,spot_baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191471,45.76778649759361,baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191935,0.1401303481149288,relative_legacy,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191935,88.0498588887953,baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191935,9.23197950288991,peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191935,92.5999418556223,spot_baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,191935,9.238066064421096,spot_peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192049,-12.984511223716694,peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192049,-15.188774335549382,spot_peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192049,50.96886049953008,baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192049,58.496250072115615,spot_baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192049,-0.1654985560718601,relative_legacy,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192418,80.91320831465687,baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192418,81.55754288625727,spot_baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192418,1.328924761779874,spot_peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192418,0.0353061979779576,relative_legacy,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192418,1.5812444382269564,peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192472,2.496545471352998,spot_peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192472,82.17536272520316,baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192472,2.762635195512423,peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192472,83.18772411916731,spot_baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192472,0.0514096237587016,relative_legacy,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192924,-3.422496280940945,peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192924,64.471610260164,baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192924,-4.342862653112429,spot_peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192924,-0.0336805758971439,relative_legacy,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,192924,73.63884007034605,spot_baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,193275,-0.0180832025616645,relative_legacy,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,193275,-1.8733865378977528,peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,193275,56.945839764259006,baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,193275,75.53149040450981,spot_baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,193275,-2.987247902103939,spot_peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,195286,13.324766366956297,baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,195286,1.3774247765192713,peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,195286,0.0226297653924693,relative_legacy,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,195286,9.238066064421096,spot_peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,204737,94.86008474933556,spot_baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,204737,10.85689812800904,spot_peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,204737,4.465915750245058,peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,204737,0.0629147665934821,relative_legacy,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,204737,37.79688326270664,baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,208405,0.0670498707370469,relative_legacy,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,208405,3.900757171721152,peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,208405,3.651119866492616,spot_peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,208405,82.90394753507084,baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,215725,1.328924761779874,spot_peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,215725,54.82839742439719,baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,215725,1.2217857004681714,peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,215725,0.0221758131055249,relative_legacy,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,215725,81.55754288625727,spot_baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,218666,3.880494729451618,spot_peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,218666,4.085144648765893,peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,218666,0.069464648173753,relative_legacy,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,218666,82.07006731948952,baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,218666,85.1199338593294,spot_baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,219886,88.84558670809228,baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,219886,92.15582006358086,spot_baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,219886,9.029134428469218,peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,219886,0.1372885357778872,relative_legacy,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,219886,8.919962904176373,spot_peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,220077,1.581549073878269,peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,220077,0.0351322615543227,relative_legacy,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,220077,78.57869300565793,baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,220077,1.328924761779874,spot_peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,220077,81.55754288625727,spot_baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,221727,-1.9702656332067725,peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,221727,74.61657506934334,baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,221727,-0.0133333682377756,relative_legacy,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,221727,-2.255249563635425,spot_peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,222631,3.557790954355726,baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,222631,-2.255249563635425,spot_peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,222631,-0.0001131499017159,relative_legacy,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30079,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-19 14:16:57.23123+00,222631,-0.0916200228848409,peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30274 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,182315,0.3750546050584767,relative_legacy,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,182315,54.61051863612191,baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,182315,62.29303509201767,spot_baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,182315,43.497764475482754,spot_peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,182315,45.813367501404485,peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,185690,0.0123736135681356,relative_legacy,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,185690,33.75624979697781,spot_peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,185690,4.488640519298351,baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,185690,48.70746800517239,spot_baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,185690,3.327780123108392,peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,185699,15.952801239486462,spot_peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,185699,0.0089884661939316,relative_legacy,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,185699,23.878685958711674,spot_baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,185699,11.596069533734752,baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,185699,11.697500173953133,peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,187708,35.16283291027821,spot_baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,187708,24.044085354488992,spot_peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,187708,15.085015943089834,baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,187708,0.051663339378733,relative_legacy,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,187708,13.681152229958762,peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,188389,91.07326619029126,spot_baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,188389,64.13459486337794,spot_peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,188389,1.5684163405832017,baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,188389,1.1044925782087376,peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,188389,0.0091656334370988,relative_legacy,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,188909,73.11832415721999,spot_baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,188909,11.364679844814017,peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,188909,0.0834290601229269,relative_legacy,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,188909,14.867416731289453,baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,188909,51.26002509026697,spot_peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,189585,-98.55114493589984,baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,189585,-100.0,spot_baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,189585,-72.87426279887757,spot_peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,189585,-63.56230740591288,peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,189585,-1.1783558474090348,relative_legacy,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,189588,-98.28784272681784,baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,189588,-63.50430980120783,peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,189588,-1.1779346712388088,relative_legacy,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,189588,-72.87426279887757,spot_peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,189588,-100.0,spot_baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,189869,61.62211562950208,peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,189869,74.01165439134923,baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,189869,53.72319564478958,spot_peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,189869,0.5353935240799343,relative_legacy,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,190710,-24.81289968564117,baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,190710,-0.4495072683987781,relative_legacy,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,190710,-20.1958825507034,spot_peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,190710,-11.173807805738548,peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,190710,-26.53445665209948,spot_baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,190772,47.05440132134263,peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,190772,0.4164810753914378,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,190772,57.28930855219211,baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,190772,73.11832415721999,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,190772,51.26002509026697,spot_peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191026,5.992705436503239,baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191026,0.0029960280406636,relative_legacy,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191026,23.48585682702794,spot_peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191026,4.726693920070413,peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191026,34.384324499635774,spot_baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191046,-23.629401699829653,peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191046,-73.69655941662059,spot_baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191046,-37.68699031092441,baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191046,-0.4862170565068043,relative_legacy,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191046,-54.01341209605464,spot_peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191284,-72.87426279887757,spot_peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191284,-97.0494612408457,baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191284,-63.12812175721404,peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191284,-100.0,spot_baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191284,-1.1733148377437344,relative_legacy,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191471,17.691468651525884,spot_peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191471,17.772215181302126,baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191471,26.303440583379377,spot_baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191471,0.0454058179850105,relative_legacy,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191471,17.847755619071084,peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191935,0.4849303807819887,relative_legacy,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191935,51.26002509026697,spot_peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191935,73.11832415721999,spot_baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191935,69.65685216131044,baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,191935,58.0299334098461,peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192049,13.750352374993504,spot_baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192049,-0.0486759276925783,relative_legacy,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192049,8.690291721564186,spot_peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192049,14.798433109349698,peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192049,11.998327109271392,baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192418,-83.01945122721415,baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192418,-51.82992700326183,peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192418,-1.0177930218688658,relative_legacy,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192418,-83.65012677171204,spot_baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192418,-61.15060569815309,spot_peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192472,-50.8782348873887,baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192472,-0.6994877915659321,relative_legacy,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192472,-28.439409691093548,peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192472,-51.45731728297583,spot_baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192472,-38.066790044958985,spot_peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192924,-0.090214962855964,relative_legacy,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192924,9.22074380970886,spot_baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192924,11.985751829373692,peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192924,5.442341301494653,spot_peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,192924,8.084039638757899,baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,193275,-41.67581683810803,spot_peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,193275,-0.5739849702337213,relative_legacy,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,193275,-25.73601413829998,peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,193275,-56.49048483799029,spot_baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,193275,-42.96125063788836,baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,195286,59.63613500754289,spot_peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,195286,9.173318140942367,peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,195286,0.0726659228657358,relative_legacy,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,195286,12.361475311917031,baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,204737,-54.01341209605464,spot_peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,204737,-0.3873025530082797,relative_legacy,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,204737,-29.497913976755605,baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,204737,-73.69655941662059,spot_baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,204737,-18.7082493469182,peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,208405,-1.1693820512970134,spot_peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,208405,0.0,spot_baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,208405,8.008488644025586,peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,208405,-0.20053760597676,relative_legacy,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,208405,0.0100702541342776,baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,215725,-95.95807845207167,spot_peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,215725,-132.19280948873626,spot_baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,215725,-1.0206938288599272,relative_legacy,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,215725,-59.42461755221572,peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,215725,-88.91737656080728,baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,218666,-1.204679666726009,relative_legacy,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,218666,-103.50469470992,spot_baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,218666,-99.9956646892451,baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,218666,-65.3827563817018,peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,218666,-75.38729996119247,spot_peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,219886,0.4471916670838154,relative_legacy,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,219886,64.97673085039635,baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,219886,48.89629066554174,spot_peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,219886,54.152429416030735,peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,219886,69.82184782244138,spot_baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,220077,0.3664060365091131,relative_legacy,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,220077,49.35781405917665,peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,220077,56.92262618443904,baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,220077,40.77528430471999,spot_peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,220077,58.496250072115615,spot_baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,221727,57.01559172493833,baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,221727,49.49608296956558,peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,221727,0.367335691914106,relative_legacy,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,221727,40.77528430471999,spot_peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,222631,1.7645230373999556,baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,222631,25.971748755684818,spot_peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,222631,1.276732063649821,peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,222631,0.0007902593779101,relative_legacy,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30080,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-19 14:16:57.280181+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30275 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,182315,-264.38561897747246,spot_baseline,RyansAGI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,182315,-149.51947102882605,peer,RyansAGI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,182315,-2.6601833681910114,relative_legacy,RyansAGI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,182315,-231.91074551021924,baseline,RyansAGI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,182315,-175.7052191963895,spot_peer,RyansAGI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,185690,2.2499670121973034,peer,annabot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,185690,22.234222531418474,spot_peer,annabot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,185690,1.1143922394528556,baseline,annabot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,185690,-0.002647696562794,relative_legacy,annabot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,185690,11.968817451919586,spot_baseline,annabot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,185699,-15.200309344504996,spot_baseline,MWG,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,185699,2.7742787729605323,spot_peer,MWG,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,185699,5.327183393483657,peer,MWG,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,185699,-11.157687344982904,baseline,MWG,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,185699,-0.3777599619681708,relative_legacy,MWG,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,187708,25.36052144800579,peer,twsummerbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,187708,0.0989548567267987,relative_legacy,twsummerbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,187708,25.5662587902694,baseline,twsummerbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,187708,54.72960215339561,spot_peer,twsummerbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,187708,57.33745264459446,spot_baseline,twsummerbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,188107,-32.19280948873625,spot_baseline,Cassie,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,188107,-17.491103210103745,baseline,Cassie,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,188107,-0.3696498862228341,relative_legacy,Cassie,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,188107,-3.8026036238559584,peer,Cassie,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,188107,-9.396634911532445,spot_peer,Cassie,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,188389,32.673505122614216,spot_peer,Panshul42,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,188389,0.0018047829932311,relative_legacy,Panshul42,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,188389,0.6617198724397931,peer,Panshul42,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,188389,0.5375758380843426,baseline,Panshul42,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,188389,26.54368960490984,spot_baseline,Panshul42,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,188909,-155.6393348524385,spot_baseline,silicoqr,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,188909,-19.4262940216391,peer,silicoqr,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,188909,-97.81546628416352,spot_peer,silicoqr,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,188909,-0.3511595734816586,relative_legacy,silicoqr,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,188909,-31.830382018784547,baseline,silicoqr,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,189585,-28.6813907584174,peer,mf-bot-1,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,189585,-1.056363061990374,relative_legacy,mf-bot-1,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,189585,-72.629761174571,baseline,mf-bot-1,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,189585,-39.123782398216456,spot_peer,mf-bot-1,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,189585,-73.69655941662063,spot_baseline,mf-bot-1,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,189588,-332.1928094887362,spot_baseline,mf-bot-3,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,189588,-3.5965110204277457,relative_legacy,mf-bot-3,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,189588,-326.45196978447115,baseline,mf-bot-3,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,189588,-224.27226088511551,spot_peer,mf-bot-3,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,189588,-213.93503139482397,peer,mf-bot-3,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,189869,65.55637999805867,baseline,VeritasAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,189869,70.44721255999903,peer,VeritasAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,189869,62.22857374632859,spot_peer,VeritasAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,189869,0.3074186537777977,relative_legacy,VeritasAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,190710,54.59683691052925,spot_baseline,Bot_Pepa,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,190710,0.1596084297815324,relative_legacy,Bot_Pepa,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,190710,51.106169944927935,baseline,Bot_Pepa,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,190710,52.76663041536124,spot_peer,Bot_Pepa,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,190710,58.17114977021455,peer,Bot_Pepa,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,190772,43.663288143149,peer,Jay_Bailey_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,190772,39.65591292060226,baseline,Jay_Bailey_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,190772,0.1051628292955035,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,190772,49.89607545763008,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,190772,50.58909297299573,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191026,-19.50115280379332,spot_baseline,manticAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191026,-0.0579114517221913,relative_legacy,manticAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191026,-3.140174929354285,baseline,manticAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191026,0.5359232436826925,peer,manticAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191026,-0.3062093288027019,spot_peer,manticAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191046,36.42715916756492,peer,archipelago,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191046,68.49311800069353,spot_peer,archipelago,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191046,0.2019996155378267,relative_legacy,archipelago,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191046,39.25359778950072,baseline,archipelago,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191284,-32.19280948873623,spot_baseline,000_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191284,-0.6583349581125145,relative_legacy,000_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191284,0.3047602420078472,peer,000_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191284,-31.24267985264542,baseline,000_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191284,-9.39663491153243,spot_peer,000_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191471,0.1355494208060118,relative_legacy,HSeldon,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191471,40.1901919618738,peer,HSeldon,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191471,39.56347375613454,baseline,HSeldon,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191471,55.55959322877957,spot_peer,HSeldon,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191471,58.496250072115615,spot_baseline,HSeldon,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191935,76.55347463629771,spot_baseline,pgodzinai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191935,0.3783897657837513,relative_legacy,pgodzinai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191935,73.05575857299532,baseline,pgodzinai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191935,68.49311800069353,spot_peer,pgodzinai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,191935,75.08460536736327,peer,pgodzinai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192049,79.98643362875005,spot_peer,gnosis-ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192049,0.4686696252234062,relative_legacy,gnosis-ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192049,80.91861841524253,baseline,gnosis-ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192049,77.10168800272687,peer,gnosis-ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192418,-73.69655941662063,spot_baseline,InstitutPelFutur,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192418,-1.059033741355843,relative_legacy,InstitutPelFutur,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192418,-28.99271128733309,peer,InstitutPelFutur,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192418,-39.123782398216456,spot_peer,InstitutPelFutur,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192418,-73.15274358093353,baseline,InstitutPelFutur,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192472,51.9431715952944,peer,bestworldbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192472,37.45565697065949,baseline,bestworldbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192472,0.0447878970687089,relative_legacy,bestworldbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192472,40.77250605257666,spot_peer,bestworldbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192924,58.496250072115615,spot_baseline,acm_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192924,51.38005630183903,baseline,acm_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192924,55.55959322877957,spot_peer,acm_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192924,55.88885907639486,peer,acm_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,192924,0.1720807724449854,relative_legacy,acm_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,193275,21.230746437360477,spot_peer,histerio,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,193275,20.487944072103843,peer,histerio,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,193275,-0.2056942834872299,relative_legacy,histerio,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,193275,8.073651712295934,baseline,histerio,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,193275,10.567807789453692,spot_baseline,histerio,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,195286,68.49311800069353,spot_peer,Unwrapped80T,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,195286,48.30775168879802,peer,Unwrapped80T,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,195286,0.2535074008620513,relative_legacy,Unwrapped80T,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,195286,51.1205791728117,baseline,Unwrapped80T,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,204737,11.390602655707244,peer,SynapseSeer,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,204737,-0.0620258429600596,relative_legacy,SynapseSeer,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,204737,7.095951058491425,baseline,SynapseSeer,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,204737,26.290687439108314,spot_peer,SynapseSeer,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,204737,17.632277264046287,spot_baseline,SynapseSeer,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,208405,-232.19280948873623,spot_baseline,mf-bot-4,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,208405,-141.6016560936629,peer,mf-bot-4,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,208405,-152.64705222725448,spot_peer,mf-bot-4,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,208405,-2.6051326343553725,relative_legacy,mf-bot-4,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,208405,-226.941536417364,baseline,mf-bot-4,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,215725,9.254811858687994,baseline,estr.ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,215725,-0.1658768268443819,relative_legacy,estr.ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,215725,23.510250637382825,spot_peer,estr.ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,215725,18.23044617635128,peer,estr.ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,215725,13.750352374993504,spot_baseline,estr.ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,218666,16.864203555883922,spot_baseline,GreeneiBot2,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,218666,16.323727654084713,baseline,GreeneiBot2,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,218666,-0.1845390788924371,relative_legacy,GreeneiBot2,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,218666,34.70550893995887,peer,GreeneiBot2,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,218666,25.740553042990847,spot_peer,GreeneiBot2,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,219886,-38.02233464540176,baseline,SaraBase,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,219886,-0.730126327894032,relative_legacy,SaraBase,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,219886,-6.3565821612093085,peer,SaraBase,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,219886,-15.283251327795243,spot_peer,SaraBase,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,219886,-40.4114472094052,spot_baseline,SaraBase,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,220077,-15.200309344504996,spot_baseline,mmBot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,220077,12.873326732323504,peer,mmBot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,220077,2.7742787729605323,spot_peer,mmBot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,220077,-0.4853378632081103,relative_legacy,mmBot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,220077,-14.85060645653194,baseline,mmBot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,221727,-110.74899105607749,spot_peer,mf-bot-5,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,221727,-169.3210193823531,baseline,mf-bot-5,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,221727,-2.031738872950357,relative_legacy,mf-bot-5,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,221727,-99.85479971424012,peer,mf-bot-5,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,221727,-173.6965594166206,spot_baseline,mf-bot-5,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,222631,64.15460290875237,spot_baseline,Grizeu_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,222631,2.817558962367809,peer,Grizeu_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,222631,59.61240025461864,spot_peer,Grizeu_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,222631,2.999260650622215,baseline,Grizeu_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30081,Will the number of FBI firearms background checks initiated through the NICS exceed 2.4M for November 2024?,2024-11-19 14:16:57.312194+00,222631,0.0217494262851346,relative_legacy,Grizeu_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30276 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,182315,1.1588229525877367,relative_legacy,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,182315,85.38638407000427,spot_peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,182315,84.25454795713391,peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,182315,64.19773259468424,baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,182315,73.11832415721999,spot_baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,185690,43.74933694740072,spot_peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,185690,14.925936549962287,spot_baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,185690,1.4037440582193634,baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,185690,4.307510769842247,peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,185690,0.0331383213131152,relative_legacy,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,185699,-10.365711883362268,baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,185699,0.4011749535794909,relative_legacy,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,185699,29.5143454767512,peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,185699,-12.029423371771196,spot_baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,185699,24.462594515681392,spot_peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,187708,-107.09665213541436,spot_baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,187708,-48.837040997035146,baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,187708,-16.737694707154407,peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,187708,-0.2706208505858567,relative_legacy,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,187708,-43.55865098745832,spot_peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,188107,0.4814561630652776,relative_legacy,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,188107,37.100042413809376,peer,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,188107,20.6986408314963,baseline,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,188107,37.85116232537296,spot_baseline,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,188107,60.15249112538896,spot_peer,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,188389,4.544297076116711,spot_baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,188389,36.32120365100239,spot_peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,188389,0.1039919662120612,baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,188389,0.8311765977421827,peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,188389,0.0,relative_legacy,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,188909,9.122079488233018,baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,188909,14.173261457609868,peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,188909,0.160327719431709,relative_legacy,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,188909,64.81008444466325,spot_peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,188909,44.36066514756145,spot_baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,189585,92.5601095050688,peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,189585,1.2530740110196246,relative_legacy,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,189585,81.5862320057239,spot_peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,189585,66.87814615092991,baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,189588,-370.7520012509347,spot_peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,189588,-555.2152775885484,baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,189588,-359.9593835770467,peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,189588,-4.966102265528407,relative_legacy,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,189588,-564.3856189774723,spot_baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,189869,-73.69655941662059,spot_baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,189869,-19.660658627744603,spot_peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,189869,-0.1302085925454591,relative_legacy,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,189869,-8.842059037963244,peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,189869,-71.25100570416704,baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,190710,-0.4319700257841923,relative_legacy,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,190710,-99.25610169813037,baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,190710,-30.64000486542133,peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,190710,-42.69483166663079,spot_peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,190710,-105.88936890535685,spot_baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,190772,-55.63933485243855,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,190772,-43.63276174540454,baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,190772,-6.740592258298842,spot_peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,190772,0.0113974455715997,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,190772,1.7795278640260608,peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191026,8.207394272537655,peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191026,44.81091938788498,spot_peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191026,0.0787907187362521,relative_legacy,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191026,2.877669898335629,baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191026,16.409615656019298,spot_baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191046,-3.7483303875115137,spot_peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191046,-51.45731728297583,spot_baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191046,-0.0145332315266303,relative_legacy,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191046,1.7845548702417149,peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191046,-26.37773572011785,baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191284,-0.1302085925454591,relative_legacy,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191284,-19.660658627744603,spot_peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191284,-71.52108578191425,baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191284,-8.85259840963445,peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191284,-73.69655941662059,spot_baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191471,-51.67665122685064,spot_peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191471,-118.44245711374276,spot_baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191471,-80.17976435023459,baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191471,-0.431442571055356,relative_legacy,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191471,-29.618393784222764,peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191935,-8.803593524083942,peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191935,-70.32979662515046,baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191935,-0.1302085925454591,relative_legacy,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191935,-19.660658627744603,spot_peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,191935,-73.69655941662059,spot_baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192049,-73.69655941662059,spot_baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192049,-0.1302085925454591,relative_legacy,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192049,-8.943202243782757,peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192049,-19.660658627744603,spot_peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192049,-64.49212605318984,baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192418,37.5774511104314,baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192418,70.9899459505608,peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192418,0.9572758776294222,relative_legacy,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192418,60.15249112538898,spot_peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192472,62.29303509201767,spot_baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192472,77.64081648880025,spot_peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192472,1.1993459749580375,relative_legacy,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192472,88.68493328805118,peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192472,61.69445856946748,baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192924,-0.20423446981637,relative_legacy,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192924,-25.682395609727926,spot_peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192924,-72.22463435454537,baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192924,-14.302101768264484,peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,192924,-82.11260418302045,spot_baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,193275,-20.00531940353967,spot_peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,193275,-74.17826104639818,spot_baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,193275,-8.391715748218342,peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,193275,-57.76742800238875,baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,193275,-0.1295202862343102,relative_legacy,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,195286,-7.733591319579617,peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,195286,-49.21175922398957,baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,195286,-0.1285346763339891,relative_legacy,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,195286,-73.69655941662059,spot_baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,195286,-19.660658627744603,spot_peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,204737,6.891379046275759,spot_peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,204737,-36.58714424749593,spot_baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,204737,5.492757793932111,peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,204737,-14.792456805068005,baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,204737,0.0317227384805265,relative_legacy,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,208405,0.7226992442086617,relative_legacy,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,208405,13.518177904564215,baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,208405,42.90819851499763,spot_peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,208405,53.48352687273419,peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,208405,13.750352374993504,spot_baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,215725,58.496250072115615,spot_baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,215725,56.35681332317607,peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,215725,74.92419111410364,spot_peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,215725,0.761707320285083,relative_legacy,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,215725,39.39383591311446,baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,218666,43.06459163003565,peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,218666,0.0,baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,218666,0.5850022652736835,relative_legacy,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,218666,33.069728341647966,spot_peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,218666,0.0,spot_baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,218945,-41.50374992788438,spot_baseline,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,218945,3.3735144111415494,spot_peer,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,218945,-39.74446438976391,baseline,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,218945,0.1780734235506104,relative_legacy,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,218945,13.538495806159425,peer,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,219886,-154.269934554117,baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,219886,-0.9765363891784978,relative_legacy,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,219886,-70.10465104627342,peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,219886,-83.74597671603563,spot_peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,219886,-163.26289343514705,spot_baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,220077,-73.69655941662059,spot_baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,220077,-19.660658627744603,spot_peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,220077,-8.829992654652326,peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,220077,-72.07666911055269,baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,220077,-0.1327778313597334,relative_legacy,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,221727,-97.50375843203882,baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,221727,-27.433405233372927,peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,221727,-0.3867012634894002,relative_legacy,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,221727,-38.48094836131413,spot_peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,221727,-100.0,spot_baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,222631,44.36066514756145,spot_baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,222631,64.81008444466325,spot_peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,222631,2.080159340752774,baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,222631,0.0226496878817124,relative_legacy,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30082,Will the number of FBI firearms background checks initiated through the NICS exceed 2.6M for November 2024?,2024-11-19 14:16:57.352044+00,222631,3.0688520702580755,peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30277 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,182315,26.45703039078695,spot_peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,182315,31.291733611974333,baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,182315,35.61438102252753,spot_baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,182315,23.18410128124028,peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,182315,0.2795894395512517,relative_legacy,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,185690,-2.759233229732105,peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,185690,-42.08198518728497,spot_baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,185690,-29.13524540594547,spot_peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,185690,-0.0378213374414103,relative_legacy,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,185690,-3.998205023306904,baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,185699,46.87775228290772,spot_peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,185699,41.30141448330079,peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,185699,56.35216794496103,baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,185699,64.15460290875237,spot_baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,185699,0.5301147159061401,relative_legacy,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,187708,-0.0204086044727569,relative_legacy,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,187708,-2.3941379937409133,peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,187708,-9.541956507868262,spot_baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,187708,-5.852634686484867,spot_peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,187708,-4.477267826524102,baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,188107,5.429521756665566,peer,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,188107,6.353957356212251,baseline,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,188107,11.547721741993618,spot_baseline,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,188107,0.0834953862369889,relative_legacy,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,188107,9.237172815768712,spot_peer,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,188389,-0.0059980377542906,relative_legacy,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,188389,-25.842515258120457,spot_baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,188389,-17.515794778654218,spot_peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,188389,-0.6760519398418763,baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,188389,-0.4582211491298405,peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,188909,73.11832415721999,spot_baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,188909,0.1546667976201031,relative_legacy,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,188909,11.018010301294144,peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,188909,53.29135549395351,spot_peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,188909,15.11606729917882,baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,189585,18.60647310201182,peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,189585,19.794989499166707,spot_peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,189585,25.94943481661073,baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,189585,0.2327250416348582,relative_legacy,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,189588,91.10610403498222,baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,189588,67.2305847898444,spot_peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,189588,66.16718304927589,peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,189588,0.8864305255922703,relative_legacy,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,189869,19.01515352545236,peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,189869,0.2378678565718781,relative_legacy,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,189869,25.430870404158583,baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,189869,19.794989499166707,spot_peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,190710,-30.20749556050157,baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,190710,-22.05947327328896,spot_peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,190710,-21.16536602674345,peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,190710,-32.19280948873623,spot_baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,190710,-0.3161824036018645,relative_legacy,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,190772,-0.3810426161489323,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,190772,-26.148710274832972,peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,190772,-47.39311883324123,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,190772,-32.93539747022587,spot_peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,190772,-37.18135186192881,baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191026,1.2571669088164672,peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191026,0.0179121723227242,relative_legacy,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191026,9.84525620762956,spot_baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191026,1.551930917085301,baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191026,8.019047205296538,spot_peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191046,-73.69655941662059,spot_baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191046,-37.73709116233756,baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191046,-26.25285737596977,peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191046,-51.75568720379536,spot_peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191046,-0.3530068378308914,relative_legacy,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191284,-0.7326067770384803,relative_legacy,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191284,-73.69655941662059,spot_baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191284,-51.75568720379536,spot_peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191284,-71.52064149818891,baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191284,-51.39192058223759,peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191471,-60.23079439035566,baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191471,-62.63161140073228,spot_peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191471,-42.57693298003896,peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191471,-0.5833936788768815,relative_legacy,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191471,-88.8968687611256,spot_baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191935,-2.781498456401032,baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191935,-1.2822935159903666,peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191935,-0.0414563535784737,relative_legacy,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191935,-1.1107409897596467,spot_peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,191935,-2.914634565951651,spot_baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192049,23.05872910488316,baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192049,19.794989499166707,spot_peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192049,0.1971296808298655,relative_legacy,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192049,17.230310781329475,peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192418,0.931556405979579,relative_legacy,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192418,69.5291255966578,peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192418,97.08536543404836,spot_baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192418,70.43993571320244,spot_peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192418,96.4032423158354,baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192472,77.56312302182646,baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192472,0.7447436548389402,relative_legacy,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192472,55.86663674024732,peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192472,78.24085649273731,spot_baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192472,56.9565620443442,spot_peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192924,-51.45731728297583,spot_baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192924,-45.30650029503087,baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192924,-32.187979450676615,peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192924,-35.84335896356228,spot_peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,192924,-0.4858001516985186,relative_legacy,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,193275,0.4244064446857254,relative_legacy,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,193275,43.70265651516355,baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,193275,32.1920505742404,peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,193275,40.18041448328358,spot_peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,193275,54.79433112903506,spot_baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,195286,0.0,baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,195286,0.0,spot_baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,195286,0.9746997655971976,spot_peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,195286,0.8118358727620867,peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,195286,0.0199558126748663,relative_legacy,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,204737,-17.796267914032068,baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,204737,-30.38648262218753,spot_peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,204737,-12.06722860946429,peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,204737,-0.1554405498876687,relative_legacy,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,204737,-43.8307278601691,spot_baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,208405,34.70533004111597,peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,208405,0.4544024637547644,relative_legacy,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,208405,47.533986947537215,baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,208405,35.707317739399805,spot_peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,215725,33.72583612249493,peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,215725,49.491203429673135,spot_peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,215725,0.4752662329582149,relative_legacy,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,215725,45.6913393800638,baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,215725,67.80719051126377,spot_baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,218666,0.2517993042641698,relative_legacy,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,218666,20.822120425945364,spot_peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,218666,26.980464571887712,baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,218666,27.73896988108641,spot_baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,218666,20.0363251592226,peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,218945,-58.877532002448426,spot_peer,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,218945,-0.8155253957511002,relative_legacy,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,218945,-83.65012677171204,spot_baseline,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,218945,-57.39910337980647,peer,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,218945,-80.13971826190406,baseline,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,219886,-137.5571523253729,spot_baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,219886,-1.3266916717188193,relative_legacy,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,219886,-94.47865696354822,peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,219886,-97.44837357653148,spot_peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,219886,-131.34112939225287,baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,220077,-9.901224431339712,spot_peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,220077,-10.598008795758444,peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,220077,-15.200309344505014,spot_baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,220077,-14.882564323171232,baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,220077,-0.1693768529344748,relative_legacy,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,221727,-97.54280599326714,baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,221727,-0.994180506257469,relative_legacy,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,221727,-100.0,spot_baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,221727,-70.5759769373649,spot_peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,221727,-70.44355022776642,peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,222631,0.0216284602596054,relative_legacy,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,222631,1.5277252593083448,peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,222631,2.086597861547729,baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,222631,44.36066514756145,spot_baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30083,Will the number of FBI firearms background checks initiated through the NICS exceed 2.8M for November 2024?,2024-11-19 14:16:57.384346+00,222631,32.715055868612474,spot_peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30278 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,182315,0.5277335420668302,relative_legacy,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,182315,74.55476952514955,baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,182315,84.79969065549501,spot_baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,182315,44.77660623389497,peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,182315,53.93279599583748,spot_peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,185690,1.4346752824753652,baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,185690,-0.0014274272521859,relative_legacy,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,185690,3.937652095565062,spot_peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,185690,0.2870127561554723,peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,185690,14.925936549962287,spot_baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,185699,74.84612330040356,spot_baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,185699,66.66960587297851,baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,185699,46.8109511971844,spot_peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,185699,0.4437375374501184,relative_legacy,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,185699,38.94684399931744,peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,187708,-130.0448367476911,spot_baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,187708,-62.369199209743584,baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,187708,-48.32334169737433,peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,187708,-99.78991722042304,spot_peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,187708,-0.7073645517490553,relative_legacy,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,188107,-7.400058144377692,spot_baseline,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,188107,-0.1393717707688142,relative_legacy,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,188107,-7.320147072086509,peer,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,188107,-4.110929964093234,baseline,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,188107,-12.03674818890261,spot_peer,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,188389,-69.66576055126691,spot_baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,188389,-1.6574070409105757,peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,188389,-0.0247759563168049,relative_legacy,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,188389,-2.0404317437084507,baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,188389,-56.588279614884414,spot_peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,188909,9.489545713205205,peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,188909,0.1123693439377276,relative_legacy,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,188909,46.8109511971844,spot_peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,188909,74.84612330040356,spot_baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,188909,15.555191387818272,baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,189585,66.90604480931277,baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,189585,0.4361711826585143,relative_legacy,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,189585,38.25659708296163,peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,189585,41.77454715388821,spot_peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,189588,48.03257263171373,spot_peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,189588,44.324809820226015,peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,189588,0.5207173130916357,relative_legacy,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,189588,75.32309070111414,baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,189869,-17.61788070712463,spot_peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,189869,-15.200309344505014,spot_baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,189869,-14.69623640226668,baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,189869,-0.3690578915183852,relative_legacy,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,189869,-20.697200604538864,peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,190710,-34.092310485026104,peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,190710,-32.389580695839285,spot_peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,190710,-33.670381526384745,baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,190710,-0.55228004987912,relative_legacy,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,190710,-35.845397091247634,spot_baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,190772,-21.831093971688297,peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,190772,-25.153876699596427,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,190772,-19.742409588865883,baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,190772,-0.3649776248416725,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,190772,-24.739725505777677,spot_peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191026,-3.630844762435215,peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191026,-22.47179622985646,spot_baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191026,-0.0604645727663552,relative_legacy,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191026,-22.820678779960737,spot_peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191026,-3.2150968180868094,baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191046,-78.2926332131498,spot_peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191046,-0.5980381060831922,relative_legacy,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191046,-40.46172700297919,peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191046,-100.0,spot_baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191046,-51.016274002415166,baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191284,-61.98227861118316,peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191284,-59.47234347958029,spot_peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191284,-0.938892804419988,relative_legacy,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191284,-73.69655941662059,spot_baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191284,-71.52020750060264,baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191471,-46.89940119664028,peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191471,-56.7237829764572,baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191471,-0.7103467216654764,relative_legacy,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191471,-66.59418827823333,spot_peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191471,-83.65012677171204,spot_baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191935,44.34456229711984,baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191935,46.46682670034443,spot_baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191935,26.5053724363014,spot_peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191935,0.221858701213266,relative_legacy,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,191935,22.2516696683717,peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192049,-31.97877884967721,peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192049,-0.5253508781039973,relative_legacy,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192049,-30.57612842040969,baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192049,-32.19280948873623,spot_baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192049,-29.776129549073875,spot_peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192418,-0.2224946484956557,peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192418,13.750352374993504,spot_baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192418,13.656435044617476,baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192418,-0.095121529953624,relative_legacy,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192418,3.09651366316195,spot_peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192472,-0.9628585864942758,relative_legacy,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192472,-63.7009005410294,peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192472,-73.12920975156052,baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192472,-73.69655941662059,spot_baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192472,-59.47234347958029,spot_peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192924,55.18851034717248,spot_baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192924,0.2676079464732336,relative_legacy,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192924,26.021493795986164,peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192924,48.65515583117856,baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,192924,32.74579610549845,spot_peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,193275,5.399883177114801,peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,193275,22.897256976016106,spot_baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,193275,0.0073745159856361,relative_legacy,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,193275,9.641185802568009,spot_peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,193275,18.4485529190096,baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,195286,37.85116232537298,spot_baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,195286,25.27435567894608,baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,195286,20.34080627355329,spot_peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,195286,0.1120108461126791,relative_legacy,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,195286,12.29913436174488,peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,204737,0.1831401033689181,relative_legacy,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,204737,40.99743578141941,spot_peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,204737,66.72109124808708,spot_baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,204737,16.46577164005956,peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,204737,27.212202539835022,baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,208405,37.89855097361133,peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,208405,0.4344987871517212,relative_legacy,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,208405,66.44736574698646,baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,208405,41.77454715388821,spot_peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,215725,35.19494597638228,peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,215725,0.4295210489928314,relative_legacy,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,215725,57.17410264904208,baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,215725,53.93279599583748,spot_peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,215725,84.79969065549501,spot_baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,218666,20.84849832362816,peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,218666,43.935717847425664,spot_baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,218666,24.69434692394944,spot_peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,218666,42.84445792553346,baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,218666,0.2015712469726058,relative_legacy,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,218945,-0.9273415308502136,relative_legacy,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,218945,-70.63907781513925,baseline,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,218945,-59.47234347958029,spot_peer,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,218945,-73.69655941662059,spot_baseline,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,218945,-61.1074798693341,peer,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,219886,82.88752595943306,spot_baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,219886,47.14556217815424,peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,219886,78.64346494761725,baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,219886,0.566695492200997,relative_legacy,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,219886,52.564629216130015,spot_peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,220077,3.09651366316195,spot_peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,220077,13.478924005361964,baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,220077,13.750352374993504,spot_baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,220077,-0.5699665990394261,peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,220077,-0.0952375090343339,relative_legacy,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,221727,43.94078700506087,peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,221727,0.5196772580712382,relative_legacy,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,221727,74.6782605205514,baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,221727,48.03257263171373,spot_peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,222631,0.0093923419694348,relative_legacy,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,222631,20.34080627355329,spot_peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,222631,1.7864200996001238,baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30084,Will the number of FBI firearms background checks initiated through the NICS exceed 3.0M for November 2024?,2024-11-19 14:16:57.57745+00,222631,0.9276602465637136,peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.4644,2024-11-20 15:30:00+00,30279 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,182315,27.07678408749472,peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,182315,78.759140166778,baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,182315,0.2400999501489891,relative_legacy,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,182315,89.53026213333065,spot_baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,182315,29.02838317899086,spot_peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,185690,5.377677645195431,baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,185690,-0.0045934074186301,relative_legacy,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,185690,0.4753465031418446,peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,185690,55.38519681811257,spot_baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,185690,4.597357885283922,spot_peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,185699,26.78425552620059,spot_peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,185699,78.13376568032007,baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,185699,25.81535603773723,peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,185699,86.39384504239716,spot_baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,185699,0.2138301576733045,relative_legacy,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,187708,24.374205049091817,spot_peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,187708,40.49456032556633,baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,187708,83.02553241676829,spot_baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,187708,12.71651429519965,peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,187708,0.1080919933151315,relative_legacy,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,188389,1.0694881618679564,peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,188389,0.0112195142464301,relative_legacy,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,188389,3.0890939634099177,baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,188389,32.841907327809885,spot_peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,188389,94.86008474933556,spot_baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,188909,71.36958148433591,spot_baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,188909,14.922266241018455,baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,188909,3.4809511959308663,peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,188909,16.034293280771244,spot_peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,188909,0.0153699238718386,relative_legacy,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,189585,6.8233375411126405,spot_peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,189585,-0.0386004243439029,relative_legacy,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,189585,8.599041503770112,peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,189585,57.72100448311561,baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,189588,48.54268271702416,spot_baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,189588,1.448120567859434,peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,189588,-0.298507257540431,spot_peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,189588,-0.1365564590630219,relative_legacy,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,189588,47.76067533875052,baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,189869,0.2893367987212373,relative_legacy,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,189869,89.53023836578528,baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,189869,31.224759792904145,spot_peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,189869,32.26689062414835,peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,190710,9.248429656176006,peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,190710,-0.021191181867002,relative_legacy,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,190710,8.190586754017996,spot_peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,190710,56.81026366750624,baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,190710,60.40713236688608,spot_baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,190772,6.8233375411126405,spot_peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,190772,58.496250072115615,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,190772,45.9313654260562,baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,190772,6.588104259041246,peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,190772,-0.0194094652036219,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191026,14.915961828786042,baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191026,28.56121233062124,spot_peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191026,88.87733910045837,spot_baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191026,0.0397902344136542,relative_legacy,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191026,4.838297565048407,peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191046,24.773732300915245,baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191046,-0.298507257540431,spot_peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191046,48.54268271702416,spot_baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191046,0.6652447011090048,peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191046,-0.0623441821302234,relative_legacy,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191284,-97.04626984728706,baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191284,-103.16237776157888,peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191284,-106.58180193430512,spot_peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191284,-100.0,spot_baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191284,-1.577795794792646,relative_legacy,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191471,58.496250072115615,spot_baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191471,5.835313257944643,peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191471,6.8233375411126405,spot_peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191471,39.70719754156303,baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191471,-0.0116277239938846,relative_legacy,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191935,81.0285208502803,baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191935,0.2102316962077076,relative_legacy,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191935,26.355583520296808,peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191935,84.79969065549501,spot_baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191935,25.643627274682142,spot_peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191975,-52.78341062383959,spot_peer,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191975,-0.4139393880983328,relative_legacy,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191975,-24.851046839883367,peer,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191975,-11.984211289032825,baseline,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,191975,-24.81078615956908,spot_baseline,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192049,33.6537425188857,peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192049,33.375375215133,spot_peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192049,95.60566524124027,spot_baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192049,90.94167226084136,baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192049,0.3118856518384152,relative_legacy,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192418,-25.19265505799337,spot_peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192418,-23.83284648474468,peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192418,13.658595280043883,baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192418,13.750352374993504,spot_baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192418,-0.4824592108837545,relative_legacy,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192472,0.1413811140015004,relative_legacy,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192472,76.04837774069644,baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192472,19.74340391055841,spot_peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192472,21.85280915824681,peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192924,-45.90704942827997,spot_peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192924,-13.42939192790341,baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192924,-39.697269884425296,peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192924,-15.200309344505014,spot_baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,192924,-0.6840818681545074,relative_legacy,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,193275,65.80972053513713,spot_baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,193275,0.0350615657644747,relative_legacy,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,193275,11.176749863348114,peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,193275,54.05932944532949,baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,193275,12.056175147875772,spot_peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,195286,-0.1483893660443318,relative_legacy,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,195286,-4.1550158219099895,peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,195286,37.85116232537298,spot_baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,195286,-7.948362447602027,spot_peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,195286,25.089129191410187,baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,204737,9.26155137809438,peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,204737,32.186199052143785,baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,204737,0.0707041379534351,relative_legacy,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,204737,78.5759774427011,spot_baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,204737,21.19051835487645,spot_peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,208405,27.25683730341844,peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,208405,0.2187555031813721,relative_legacy,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,208405,83.09750308501157,baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,208405,25.643627274682142,spot_peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,215725,-15.200309344505014,spot_baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,215725,-30.01049208822575,peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,215725,-45.90704942827997,spot_peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,215725,-10.2531093209633,baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,215725,-0.5086537715371217,relative_legacy,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,218666,-0.9185416531056936,relative_legacy,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,218666,-55.31527490555659,peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,218666,-31.473259348315835,spot_baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,218666,-57.5504552755413,spot_peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,218666,-30.758399118203904,baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,218945,-6.15199837162106,peer,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,218945,-7.948362447602027,spot_peer,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,218945,37.85116232537298,spot_baseline,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,218945,-0.2383748703117372,relative_legacy,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,218945,36.2981261723087,baseline,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,219886,0.0919861173061654,relative_legacy,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,219886,16.34717714906181,peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,219886,16.974140196169344,spot_peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,219886,72.6831217032493,spot_baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,219886,63.88527754902604,baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,220077,-0.2414845967224274,relative_legacy,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,220077,-7.948362447602027,spot_peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,220077,-6.172125471801477,peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,220077,37.14768176607166,baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,221727,57.0635538315155,baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,221727,8.497895610719345,peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,221727,6.8233375411126405,spot_peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,221727,-0.0396488093644831,relative_legacy,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,222631,-1.1777812887937988,peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,222631,0.6511936660441581,baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,222631,-25.19265505799337,spot_peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,222631,-0.0218131818059994,relative_legacy,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30085,"Will AMC Theatres file for bankruptcy before January 1, 2025?",2024-11-19 14:16:57.611104+00,222631,13.750352374993504,spot_baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30280 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,182315,0.1464228932662534,relative_legacy,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,182315,14.721374806908065,spot_peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,182315,89.53026213333065,spot_baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,182315,12.128233265493137,peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,182315,78.81247078874004,baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,185690,8.21700987774808,baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,185690,1.0132867428847732,peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,185690,83.7943241891027,spot_baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,185690,10.617272392551008,spot_peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,185690,0.0109616103641512,relative_legacy,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,185699,14.721374806908065,spot_peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,185699,0.1515863917039608,relative_legacy,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,185699,12.589690331429477,peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,185699,89.53026213333065,spot_baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,185699,82.22424295552099,baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,187708,40.68046768927084,baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,187708,3.8556509931932,peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,187708,81.0648747782646,spot_baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,187708,0.0323050865691734,relative_legacy,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,187708,8.664332868831323,spot_peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,188107,-0.0036680738409659,relative_legacy,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,188107,3.392253365966732,spot_peer,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,188107,41.569695746190966,baseline,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,188107,1.3710727387000663,peer,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,188107,73.69655941662063,spot_baseline,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,188389,2.4642231815741127,baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,188389,69.33196788115745,spot_baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,188389,0.009573645384406,peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,188389,-0.0007242163794701,relative_legacy,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,188389,0.2693585870226381,spot_peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,188909,1.727284908688426,spot_peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,188909,-0.0038552070209076,relative_legacy,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,188909,71.36958148433591,spot_baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,188909,15.073884408627215,baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,188909,0.2513943332255389,peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,189585,-2.211961585916141,peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,189585,66.90311376270525,baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,189585,-0.8216299393499156,spot_peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,189585,-0.0536108214378552,relative_legacy,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,189588,4.827391964056177,spot_peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,189588,0.0242213605695108,relative_legacy,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,189588,74.47716860219317,baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,189588,3.439507501493035,peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,189588,75.70232465074595,spot_baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,189869,74.0165363527812,baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,189869,4.062759139970711,peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,189869,0.0326130863679026,relative_legacy,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,189869,5.436395538475602,spot_peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,190710,-0.8216299393499156,spot_peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,190710,-0.0497181159958786,relative_legacy,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,190710,-1.923351865431316,peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,190710,67.80719051126377,spot_baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,190710,63.82879224931047,baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,190772,64.15460290875237,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,190772,-3.5024834535199747,peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,190772,50.395642324706735,baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,190772,-0.0674241278781956,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,190772,-3.4350810861153267,spot_peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191026,-35.17172484130266,spot_peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191026,-0.08786187256436,relative_legacy,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191026,3.53022508401828,baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191026,-5.852991200632425,peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191026,19.79912617868604,spot_baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191046,39.22430004366523,baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191046,76.55347463629771,spot_baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191046,2.2774229748870454,peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191046,0.0099671580400444,relative_legacy,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191046,5.436395538475602,spot_peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191284,14.16490010911438,spot_peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191284,0.1509996310638893,relative_legacy,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191284,12.64017458057446,peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191284,86.13050125710377,baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191284,88.75252707415875,spot_baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191471,42.335567381463136,baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191471,-3.8725419978354543,peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191471,62.29303509201767,spot_baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191471,-4.767045456273557,spot_peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191471,-0.0755422931582669,relative_legacy,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191935,11.336618902599335,spot_peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191935,0.1115412624454192,relative_legacy,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191935,9.787353861113989,peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191935,81.16552973866148,baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,191935,84.79969065549501,spot_baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192049,25.05793311584634,baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192049,-30.605398633955375,peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192049,-30.517843869856332,spot_peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192049,-0.4460931073620034,relative_legacy,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192418,0.0326858732645872,relative_legacy,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192418,5.436395538475602,spot_peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192418,76.05429704763937,baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192418,4.064461172860081,peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192472,76.1215301261841,baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192472,4.064461172860081,peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192472,0.0326858732645872,relative_legacy,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192472,5.436395538475602,spot_peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192924,-30.517843869856332,spot_peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192924,-0.4122246009948652,relative_legacy,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192924,23.274351127391757,baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192924,26.303440583379377,spot_baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,192924,-28.250739758459915,peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,193275,56.98520024449031,baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,193275,68.88517438658803,spot_baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,193275,-1.131790556477216,peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,193275,-0.0346809390043885,relative_legacy,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,193275,-0.0503251818065821,spot_peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,195286,0.0204740254263714,relative_legacy,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,195286,5.436395538475602,spot_peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,195286,3.05668990014912,peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,195286,51.194846974280544,baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,204737,35.18366225736287,baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,204737,4.463149169507493,peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,204737,85.43946777531006,spot_baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,204737,11.794383761217738,spot_peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,204737,0.0436858287816368,relative_legacy,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,208405,11.336618902599335,spot_peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,208405,0.1134644788458399,relative_legacy,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,208405,83.09910556521785,baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,208405,9.915836246138364,peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,215725,37.85116232537298,spot_baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,215725,-15.725933884919002,peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,215725,25.546744586310627,baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,215725,-0.2401975291308162,relative_legacy,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,215725,-22.255370819684828,spot_peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,218666,12.929992645034355,spot_peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,218666,0.1351792886600984,relative_legacy,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,218666,11.491323622144089,peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,218666,85.2274967860988,baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,218666,87.02660703959828,spot_baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,218945,-15.450182811103229,peer,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,218945,48.54268271702416,spot_baseline,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,218945,47.01946076843084,baseline,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,218945,-14.605515629623236,spot_peer,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,218945,-0.2366764629618236,relative_legacy,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,219886,-0.0116505644969151,relative_legacy,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,219886,2.0038613428024217,spot_peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,219886,71.75612770144882,spot_baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,219886,66.20718132590622,baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,219886,0.7777039105498398,peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,220077,4.052527719680371,peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,220077,75.26925058386081,baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,220077,0.0326414632121136,relative_legacy,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,220077,5.436395538475602,spot_peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,221727,0.0326130863679026,relative_legacy,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,221727,5.436395538475602,spot_peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,221727,4.051550252308085,peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,221727,74.67876975804982,baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,222631,44.36066514756145,spot_baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,222631,2.108234872501966,baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,222631,-0.8364475262972235,peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,222631,-0.012882270411897,relative_legacy,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30086,"Will the number of active US oil drilling rigs exceed 590 on December 27, 2024?",2024-11-19 14:16:57.643299+00,222631,-17.59777750041056,spot_peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30281 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,182315,18.81817510785,spot_peer,RyansAGI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,182315,-98.675383681506,baseline,RyansAGI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,182315,0.1789639022986409,relative_legacy,RyansAGI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,182315,14.886570824919453,peer,RyansAGI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,182315,-112.02942337177116,spot_baseline,RyansAGI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,185690,-65.63079308209811,spot_baseline,annabot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,185690,4.800888763733497,peer,annabot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,185690,-6.499858387509275,baseline,annabot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,185690,52.01670906101662,spot_peer,annabot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,185690,0.0726709371986199,relative_legacy,annabot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,185699,-1.87699746133913,relative_legacy,MWG,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,185699,-138.7102175109938,spot_peer,MWG,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,185699,-309.5345365618742,baseline,MWG,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,185699,-132.6013921288381,peer,MWG,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,185699,-332.1928094887362,spot_baseline,MWG,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,187708,-163.486740654747,spot_baseline,twsummerbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,187708,-83.90307138933673,baseline,twsummerbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,187708,-0.1459290274083002,relative_legacy,twsummerbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,187708,-17.999883621309483,spot_peer,twsummerbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,187708,-11.511752031336185,peer,twsummerbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,188107,-7.44503528650341,spot_peer,Cassie,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,188107,-6.636752614211041,peer,Cassie,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,188107,-0.0795638408701449,relative_legacy,Cassie,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,188107,-84.73141124169369,baseline,Cassie,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,188107,-148.73517040947337,spot_baseline,Cassie,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,188389,-357.3466861883327,spot_baseline,Panshul42,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,188389,-156.70798650658378,spot_peer,Panshul42,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,188389,-6.088773522994551,peer,Panshul42,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,188389,-0.0810544696656359,relative_legacy,Panshul42,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,188389,-13.884442585840707,baseline,Panshul42,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,188909,-12.727962090806708,baseline,silicoqr,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,188909,56.084068840735725,spot_peer,silicoqr,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,188909,0.1606496758864938,relative_legacy,silicoqr,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,188909,10.995903792456936,peer,silicoqr,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,188909,-59.94620704162712,spot_baseline,silicoqr,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,189585,-100.0,spot_baseline,mf-bot-1,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,189585,27.42530893381655,spot_peer,mf-bot-1,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,189585,-98.78221004461678,baseline,mf-bot-1,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,189585,0.286422671478762,relative_legacy,mf-bot-1,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,189585,24.932116778685955,peer,mf-bot-1,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,189588,-50.66801733913425,baseline,mf-bot-3,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,189588,59.52591885708231,peer,mf-bot-3,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,189588,0.7642471103715981,relative_legacy,mf-bot-3,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,189588,62.15792690761916,spot_peer,mf-bot-3,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,189869,-332.1928094887362,spot_baseline,VeritasAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,189869,-138.7102175109938,spot_peer,VeritasAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,189869,-138.07136790277016,peer,VeritasAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,189869,-321.1877646558792,baseline,VeritasAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,189869,-1.959596932328584,relative_legacy,VeritasAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,190710,0.9905504994092138,relative_legacy,Bot_Pepa,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,190710,80.97821664118867,spot_peer,Bot_Pepa,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,190710,75.18996827324577,peer,Bot_Pepa,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,190710,-23.69800400292701,baseline,Bot_Pepa,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,190710,-25.15387669959645,spot_baseline,Bot_Pepa,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,190772,-218.44245711374276,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,190772,-0.664682298777344,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,190772,-57.32107063468205,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,190772,-47.53390667318678,peer,Jay_Bailey_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,190772,-171.67452956497732,baseline,Jay_Bailey_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191026,-5.361712069523886,peer,manticAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191026,-0.0682560419073602,relative_legacy,manticAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191026,-31.176825906550448,spot_peer,manticAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191026,-29.83446180134291,baseline,manticAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191026,-181.90297777846305,spot_baseline,manticAI,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191046,-15.200309344504996,spot_baseline,archipelago,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191046,-7.775682067205406,baseline,archipelago,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191046,43.06161446925825,peer,archipelago,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191046,0.6130862564996403,relative_legacy,archipelago,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191046,88.10006143984172,spot_peer,archipelago,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191284,104.01238968007485,spot_peer,000_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191284,6.830939944217012,baseline,000_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191284,99.88543751492035,peer,000_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191284,1.324169682063424,relative_legacy,000_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191284,7.0389327891398015,spot_baseline,000_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191471,-5.889368905356857,spot_baseline,HSeldon,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191471,94.76210233146196,spot_peer,HSeldon,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191471,-4.005987665044298,baseline,HSeldon,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191471,0.873798988609997,relative_legacy,HSeldon,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191471,62.22934022252177,peer,HSeldon,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191935,0.3916828381134474,relative_legacy,pgodzinai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191935,35.36967447044915,spot_peer,pgodzinai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191935,-85.08765174361463,baseline,pgodzinai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191935,32.15549520481208,peer,pgodzinai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,191935,-88.8968687611256,spot_baseline,pgodzinai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192049,-332.1928094887362,spot_baseline,gnosis-ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192049,-138.7102175109938,spot_peer,gnosis-ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192049,-1.929630143677824,relative_legacy,gnosis-ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192049,-316.90048645154104,baseline,gnosis-ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192049,-135.9778510919453,peer,gnosis-ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192418,37.6462362385969,baseline,InstitutPelFutur,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192418,1.6540953070215494,relative_legacy,InstitutPelFutur,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192418,125.57804496208426,peer,InstitutPelFutur,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192418,126.05874842051963,spot_peer,InstitutPelFutur,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192472,-332.1928094887362,spot_baseline,bestworldbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192472,-2.026310240853624,relative_legacy,bestworldbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192472,-143.48746155179668,peer,bestworldbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192472,-330.5750044274833,baseline,bestworldbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192472,-138.7102175109938,spot_peer,bestworldbot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192924,-79.1533254300574,peer,acm_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192924,-86.39356178263749,spot_peer,acm_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192924,-229.51003645052612,baseline,acm_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192924,-1.122659895190271,relative_legacy,acm_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,192924,-259.0744853315162,spot_baseline,acm_bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,193275,-135.84539709124763,spot_baseline,histerio,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,193275,-0.0114850594408631,relative_legacy,histerio,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,193275,-113.441092675251,baseline,histerio,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,193275,1.7776847481649702,spot_peer,histerio,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,193275,0.2898256755990194,peer,histerio,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,195286,75.94181259789246,spot_peer,Unwrapped80T,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,195286,-21.52828066012893,baseline,Unwrapped80T,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,195286,48.45061351677006,peer,Unwrapped80T,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,195286,0.6834041128613605,relative_legacy,Unwrapped80T,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,195286,-32.19280948873623,spot_baseline,Unwrapped80T,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,204737,-173.6965594166206,spot_baseline,SynapseSeer,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,204737,-71.88184532964377,baseline,SynapseSeer,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,204737,-25.30507803557604,spot_peer,SynapseSeer,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,204737,-12.249057603631094,peer,SynapseSeer,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,204737,-0.157143446808369,relative_legacy,SynapseSeer,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,208405,24.742065927045434,peer,mf-bot-4,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,208405,-98.2455170813618,baseline,mf-bot-4,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,208405,0.2852632594314552,relative_legacy,mf-bot-4,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,208405,27.42530893381655,spot_peer,mf-bot-4,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,208405,-100.0,spot_baseline,mf-bot-4,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,215725,-132.19280948873623,spot_baseline,estr.ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,215725,0.014674635626348,relative_legacy,estr.ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,215725,4.391135894930375,spot_peer,estr.ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,215725,0.3198291879966902,peer,estr.ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,215725,-89.26735198256814,baseline,estr.ai,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,218666,-0.0302502928398268,relative_legacy,GreeneiBot2,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,218666,-129.77658072424012,baseline,GreeneiBot2,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,218666,4.391135894930375,spot_peer,GreeneiBot2,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,218666,1.8486198300399517,peer,GreeneiBot2,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,218666,-132.19280948873623,spot_baseline,GreeneiBot2,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,218945,-30.40061868900999,spot_baseline,SeidrBot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,218945,-29.386364137578045,baseline,SeidrBot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,218945,0.9581826012673088,relative_legacy,SeidrBot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,218945,77.22413724290482,spot_peer,SeidrBot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,218945,73.33129437388655,peer,SeidrBot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,219886,-144.59299204146356,baseline,SaraBase,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,219886,-8.780615720766905,peer,SaraBase,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,219886,-6.255652122567775,spot_peer,SaraBase,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,219886,-0.1767030007960069,relative_legacy,SaraBase,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,219886,-147.07287562940684,spot_baseline,SaraBase,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,220077,-132.19280948873623,spot_baseline,mmBot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,220077,1.8073210143730152,peer,mmBot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,220077,4.391135894930375,spot_peer,mmBot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,220077,-0.0309587511946623,relative_legacy,mmBot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,220077,-130.30835317344517,baseline,mmBot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,221727,24.674805542484812,peer,mf-bot-5,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,221727,-97.63677640070844,baseline,mf-bot-5,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,221727,27.42530893381655,spot_peer,mf-bot-5,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,221727,0.2853676955551655,relative_legacy,mf-bot-5,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,221727,-100.0,spot_baseline,mf-bot-5,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,222631,-173.6965594166206,spot_baseline,Grizeu_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,222631,-25.30507803557604,spot_peer,Grizeu_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,222631,-0.0130425230959039,relative_legacy,Grizeu_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,222631,-1.2517063908586523,peer,Grizeu_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30087,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on December 27, 2024?",2024-11-19 14:16:57.689202+00,222631,-8.283373409979287,baseline,Grizeu_Bot,True,yes,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30282 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,182315,-0.2270673806609099,relative_legacy,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,182315,1.046897876006223,peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,182315,-110.30256170440576,baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,182315,-3.198383013192482,spot_peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,182315,-125.15387669959644,spot_baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,185690,-95.4557029238833,spot_baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,185690,-0.0101041142296885,relative_legacy,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,185690,18.030110076610384,spot_peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,185690,1.951398018185353,peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,185690,-9.55130610287022,baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,185699,0.7021705290156927,relative_legacy,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,185699,-23.778882056311723,baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,185699,68.2824199820519,spot_peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,185699,69.5549178862699,peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,185699,-25.153876699596427,spot_baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,187708,-66.20035364849844,spot_baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,187708,38.94206865771887,spot_peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,187708,23.38224500521439,peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,187708,0.1678083227859924,relative_legacy,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,187708,-35.21125142542914,baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,188107,0.7272150471478683,relative_legacy,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,188107,106.4869599206308,spot_peer,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,188107,64.43964174472029,peer,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,188107,16.301703007167557,baseline,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,188107,28.293396327149885,spot_baseline,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,188389,-74.41971633972821,spot_baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,188389,0.0,relative_legacy,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,188389,-3.1315850728587664,baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,188389,1.3914525516253806,peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,188389,33.0668022049363,spot_peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,188909,0.0234653904292758,relative_legacy,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,188909,-15.728821713865116,baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,188909,33.58372058048932,spot_peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,188909,7.8343215022527986,peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,188909,-73.69655941662059,spot_baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,189585,-173.6965594166206,spot_baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,189585,-37.89708241475504,spot_peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,189585,-171.6030423849025,baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,189585,-33.798873067370195,peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,189585,-0.7325240587496858,relative_legacy,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,189588,0.4714273074660382,relative_legacy,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,189588,49.48050943767532,spot_peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,189588,53.6179496091132,peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,189588,-50.67449579249517,baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,189869,-173.6965594166206,spot_baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,189869,-167.94412744563584,baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,189869,-32.84489155868455,peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,189869,-37.89708241475504,spot_peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,189869,-0.7179363038588297,relative_legacy,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,190710,-93.74336750273687,peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,190710,-1.5555181981255537,relative_legacy,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,190710,-102.72235041768742,spot_peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,190710,-249.3131441778349,baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,190710,-264.3856189774725,spot_baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,190772,-68.96598793878492,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,190772,0.236643225752359,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,190772,-54.226078615878485,baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,190772,36.96517105911026,spot_peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,190772,32.926649642135395,peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191026,0.1184287489253561,relative_legacy,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191026,-1.7474123908145962,baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191026,78.12422908903372,spot_peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191026,13.690212283470611,peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191026,-11.3854120285482,spot_baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191046,-173.6965594166206,spot_baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191046,-37.89708241475504,spot_peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191046,-0.3874070678529658,relative_legacy,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191046,-88.79709719792655,baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191046,-16.94918977184608,peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191284,14.78181003611274,spot_peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191284,-0.0053773211973983,relative_legacy,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191284,18.7689464486624,peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191284,-97.04452266433724,baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191284,-100.0,spot_baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191471,-112.0294233717712,spot_baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191471,-76.2711986842695,baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191471,6.183081614273089,spot_peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191471,-0.0892667588086679,relative_legacy,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191471,7.915548601718195,peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191935,70.70900252747818,spot_peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191935,0.7435096140935007,relative_legacy,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191935,72.77882879155126,peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191935,-20.82689150676844,baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191935,-21.75914350726266,spot_baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191975,-148.4657594925471,spot_baseline,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191975,-0.3051435493975636,relative_legacy,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191975,-19.8619040269038,spot_peer,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191975,-91.217718422564,baseline,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,191975,-9.15234979485808,peer,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192049,-2.2238144806065607,relative_legacy,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192049,-317.38660395256164,baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192049,-151.19147468365375,spot_peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192049,-141.9025875324526,peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192049,-332.1928094887361,spot_baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192418,19.38463941014109,peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192418,-0.0023285211687765,relative_legacy,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192418,-99.4745677753731,baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192418,14.78181003611274,spot_peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192472,-37.89708241475504,spot_peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192472,-0.7354218606188202,relative_legacy,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192472,-172.98680513711864,baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192472,-34.152727717836264,peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192472,-173.6965594166206,spot_baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192924,-100.0,spot_baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192924,17.16466230375397,peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192924,14.78181003611274,spot_peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192924,-88.69435119435744,baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,192924,-0.0053773211973983,relative_legacy,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,193275,60.37527269222085,spot_peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,193275,53.5917018042571,peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,193275,0.5083736164576508,relative_legacy,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,193275,-34.18901143586968,baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,193275,-36.21579396758951,spot_baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,195286,13.750352374993504,spot_baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,195286,96.0914753236781,spot_peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,195286,68.24989203533863,peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,195286,9.19506078721482,baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,195286,0.7532964025387243,relative_legacy,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,204737,-102.72235041768742,spot_peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,204737,-0.6623735838644924,relative_legacy,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,204737,-38.83925568094596,peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,204737,-104.8174534206061,baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,204737,-264.3856189774725,spot_baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,208405,-232.1928094887363,spot_baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,208405,-228.006981506484,baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,208405,-79.71067168840953,spot_peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,208405,-75.14548021616807,peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,208405,-1.3034819219589662,relative_legacy,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,215725,-211.9645937911229,peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,215725,-3.1449677528154627,relative_legacy,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,215725,-317.1647594034204,spot_peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,215725,-381.324415826792,baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,215725,-564.3856189774723,spot_baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,218666,-52.28407888133589,spot_baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,218666,48.88953360831123,spot_peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,218666,52.98284088508802,peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,218666,0.4631578897547714,relative_legacy,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,218666,-51.44883287500797,baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,218945,-96.71682564803848,baseline,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,218945,18.73326930195135,peer,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,218945,14.78181003611274,spot_peer,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,218945,-0.0053773211973983,relative_legacy,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,218945,-100.0,spot_baseline,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,219886,-93.6497057693842,spot_baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,219886,19.32105134471758,spot_peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,219886,23.34183896994924,peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,219886,-91.4775137545603,baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,219886,0.0566172264167033,relative_legacy,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,220077,0.3468885471515569,relative_legacy,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,220077,-63.58340548518411,baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,220077,40.239255572801326,spot_peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,220077,44.53968234487022,peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,220077,-64.38561897747249,spot_baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,221727,-100.0,spot_baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,221727,-0.0054832363489714,relative_legacy,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,221727,-97.63527686472106,baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,221727,18.83266410897843,peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,221727,14.78181003611274,spot_peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,222631,49.48050943767532,spot_peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,222631,2.373115508768419,peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,222631,0.0109423774517076,relative_legacy,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,222631,-2.461444856140823,baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30088,"Will the number of active US oil drilling rigs be less than 585 on December 27, 2024?",2024-11-19 14:16:57.742746+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,0.5,2024-11-20 15:30:00+00,30283 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,182315,-78.58751946471523,spot_baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,182315,-0.2707073021333405,relative_legacy,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,182315,-69.3111497594122,baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,182315,-27.254160000812675,spot_peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,182315,-23.82660831725533,peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,185690,-11.265718383894791,baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,185690,-0.0689095951197434,relative_legacy,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,185690,-50.84601028185098,spot_peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,185690,-5.067841835526204,peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,185690,-111.55974470163136,spot_baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,185699,13.750352374993504,spot_baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,185699,13.129717182237531,baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,185699,37.58337020905805,peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,185699,38.81421215361281,spot_peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,185699,0.5855430775511711,relative_legacy,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,187708,-4.28472293996388,peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,187708,-8.43387026724318,spot_peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,187708,-0.0233790829026209,relative_legacy,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,187708,-28.592185254110262,baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,187708,-52.28407888133589,spot_baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,188107,-73.69655941662066,spot_baseline,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,188107,-42.97451016170628,baseline,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,188107,-23.754644989129464,spot_peer,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,188107,-0.1494303489284547,relative_legacy,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,188107,-13.66077245732404,peer,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,188389,-3.580684263387825,baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,188389,-0.0163238099658239,relative_legacy,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,188389,-1.262437390531277,peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,188389,-79.83661388303496,spot_baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,188389,-28.147895509779357,spot_peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,188909,-39.592867633113926,spot_baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,188909,0.6467772626620691,spot_peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,188909,0.0055343043578209,relative_legacy,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,188909,0.2287237287058626,peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,188909,-8.495214871540103,baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,189585,-42.57493472269896,spot_peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,189585,-0.5179148944268448,relative_legacy,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,189585,-98.82402113435974,baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,189585,-42.31083774051601,peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,189585,-100.0,spot_baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,189588,-100.0,spot_baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,189588,-0.5176834520639493,relative_legacy,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,189588,-42.263125532432895,peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,189588,-42.57493472269896,spot_peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,189588,-98.48456978935889,baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,189869,-7.842316748896335,spot_peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,189869,-7.594799326148118,peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,189869,-49.75370138601629,baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,189869,-0.0373152391022096,relative_legacy,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,190710,-6.087728220527709,spot_peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,190710,-49.00508536956894,spot_baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,190710,-0.0118211007111968,relative_legacy,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,190710,-46.249595088344336,baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,190710,-5.664523535012403,peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,190772,-34.17205777120066,baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,190772,-1.3790119827284375,peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,190772,-2.106074049044897,spot_peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,190772,0.0339735286504539,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,190772,-43.440282414577496,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191026,-2.288256179867873,spot_baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191026,0.0649194034124507,relative_legacy,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191026,-0.5592912030279248,baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191026,4.551596846427189,peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191026,27.338479198870328,spot_peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191046,-88.88814104196396,baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191046,-48.59147774201712,peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191046,-95.30532169209152,spot_peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191046,-0.6446999501852932,relative_legacy,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191046,-173.6965594166206,spot_baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191284,-32.19280948873623,spot_baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191284,-31.24115702402609,baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191284,5.917445323640651,peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191284,5.941568941376968,spot_peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191284,0.1483550849828251,relative_legacy,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191471,-0.0843542971998621,relative_legacy,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191471,-40.84724043350258,baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191471,-9.547847781593406,peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191471,-59.94620704162715,spot_baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191471,-13.916174815779792,spot_peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191935,76.55347463629771,spot_baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191935,83.75027112216459,spot_peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191935,1.1895134884905068,relative_legacy,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191935,73.36725323914658,baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,191935,81.29064907824214,peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192049,-70.54748646279127,baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192049,-23.754644989129435,spot_peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192049,-0.2499910549460675,relative_legacy,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192049,-22.931936703295083,peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192049,-73.69655941662059,spot_baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192418,-42.57493472269896,spot_peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192418,-0.5176834520639493,relative_legacy,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192418,-99.49032305567351,baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192418,-42.28944792434224,peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192472,-42.28944792434224,peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192472,-99.67969348392,baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192472,-42.57493472269896,spot_peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192472,-0.5176834520639493,relative_legacy,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192472,-100.0,spot_baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192924,-15.200309344505014,spot_baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192924,-13.496887322944511,baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192924,18.099817783326216,spot_peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192924,16.64998070640676,peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,192924,0.2883433516343758,relative_legacy,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,193275,-178.0726569241348,baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,193275,-102.825938876599,peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,193275,-1.366701609692637,relative_legacy,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,193275,-118.3394947309777,spot_peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,193275,-205.8893689053569,spot_baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,195286,32.22018986299546,baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,195286,0.6375390355184644,relative_legacy,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,195286,63.70835995406576,spot_peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,195286,42.54348299885517,peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,204737,0.0,baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,204737,12.4056136694306,peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,204737,28.97574198026313,spot_peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,204737,0.1952097006772794,relative_legacy,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,204737,0.0,spot_baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,208405,37.85116232537298,spot_baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,208405,0.835649868582727,relative_legacy,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,208405,37.13289070226238,baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,208405,55.95996621894979,peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,208405,56.05850476400415,spot_peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,215725,51.75047838487087,baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,215725,0.8388473125676732,relative_legacy,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,215725,83.75027112216459,spot_peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,215725,56.96414453389168,peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,218666,53.40616024211184,spot_baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,218666,67.18821103456244,spot_peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,218666,0.9949581145723064,relative_legacy,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,218666,67.49875585715978,peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,218666,52.66045233721891,baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,218945,-23.14017194735345,peer,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,218945,-71.25212789735747,baseline,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,218945,-23.754644989129435,spot_peer,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,218945,-0.2520296212820715,relative_legacy,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,218945,-73.69655941662059,spot_baseline,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,219886,-3.481045909918099,spot_baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,219886,26.48503007537596,spot_peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,219886,0.4268044982172302,relative_legacy,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,219886,26.08417900148369,peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,219886,-3.375951422830085,baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,220077,-98.9978981503734,baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,220077,-42.57493472269896,spot_peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,220077,-0.5176834520639493,relative_legacy,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,220077,-42.28944792434224,peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,220077,-100.0,spot_baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,221727,1.029635464195089,relative_legacy,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,221727,70.83020475271881,spot_peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,221727,57.106850526293655,baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,221727,70.14738427154379,peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,222631,70.83020475271881,spot_peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,222631,3.395105437527795,peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,222631,0.0487787262210264,relative_legacy,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,222631,2.80605349188879,baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30089,"Will Larry Ellison be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-11-19 14:16:57.979238+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30284 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,182315,2.2595433587109373,spot_peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,182315,1.9679014845717404,peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,182315,0.0143368567204774,relative_legacy,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,182315,84.38570113194623,baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,182315,95.60566524124027,spot_baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,185690,97.74631112394668,spot_baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,185690,0.0031192166030468,relative_legacy,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,185690,9.964122173378804,baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,185690,3.789694224954072,spot_peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,185690,0.4002259860462583,peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,185699,93.71809042499804,baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,185699,97.08536543404836,spot_baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,185699,3.206794417926055,peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,185699,0.0276367040722021,relative_legacy,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,185699,3.317244938452301,spot_peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,187708,90.76598278532894,spot_baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,187708,-0.6588576585631337,peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,187708,-0.0145300651597125,relative_legacy,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,187708,-1.199900523194475,spot_peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,187708,50.94857634496347,baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,188107,57.84542154672451,baseline,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,188107,3.667415054194668,spot_peer,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,188107,97.57524537533226,spot_baseline,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,188107,2.1944882545210014,peer,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,188107,0.0243121811683942,relative_legacy,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,188389,98.5500430304885,spot_baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,188389,0.0006907791888227,relative_legacy,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,188389,4.364208245679167,spot_peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,188389,4.647870558579353,baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,188389,0.2058271553501614,peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,188909,-10.152961373307445,spot_peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,188909,16.886069204389354,baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,188909,-2.1413888648095014,peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,188909,78.24085649273731,spot_baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,188909,-0.0331169323391367,relative_legacy,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,189585,91.48988247156224,baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,189585,0.1110281468553369,spot_peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,189585,-0.0156707023501035,relative_legacy,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,189585,0.1246741044040027,peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,189588,-0.0156689983906911,relative_legacy,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,189588,0.1125380145913851,peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,189588,0.1110281468553369,spot_peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,189588,91.19743319465653,baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,189869,95.28826361345996,baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,189869,0.0418698423020939,relative_legacy,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,189869,4.240240386242489,peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,189869,98.5500430304885,spot_baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,189869,4.364208245679167,spot_peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,190710,93.80975610740931,spot_baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,190710,-0.0033812899387322,relative_legacy,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,190710,88.61227551518179,baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,190710,0.9758130887836088,spot_peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,190710,0.8869320759869488,peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,190772,77.56756288431765,baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,190772,4.364208245679167,spot_peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,190772,98.5500430304885,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,190772,3.426532366692548,peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,190772,0.0366206746585004,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191026,15.26652032605094,baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191026,90.4646046841856,spot_baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191026,-1.4153280099435663,spot_peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191026,-0.0055772064753074,relative_legacy,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191026,-0.189625810536974,peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191046,-0.0032473218097363,relative_legacy,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191046,47.310292674323726,baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191046,0.1110281468553369,spot_peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191046,0.0881484168732108,peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191284,89.86192369129381,baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191284,0.0824846903883342,peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191284,0.1110281468553369,spot_peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191284,-0.0156618230166113,relative_legacy,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191471,84.79969065549501,spot_baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191471,57.85018485325379,baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191471,-5.464654046641835,spot_peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191471,-0.060272321068956,relative_legacy,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191471,-3.759452458426431,peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191935,98.5500430304885,spot_baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191935,4.364208245679167,spot_peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191935,4.19822343586374,peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191935,94.59905523232077,baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191935,0.0414537227883687,relative_legacy,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191975,41.97454487216021,baseline,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191975,0.0266269005345023,relative_legacy,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191975,4.987321923950307,spot_peer,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191975,2.167396352230609,peer,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,191975,99.4217647405994,spot_baseline,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192049,98.5500430304885,spot_baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192049,0.0414387082867833,relative_legacy,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192049,94.498030967259,baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192049,4.192681858016335,peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192049,4.364208245679167,spot_peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192418,76.17534150661602,baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192418,-0.1747514013039492,relative_legacy,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192418,-11.359115473886543,spot_peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192418,-11.430327245395269,peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192472,-3.19807929126814,spot_peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192472,-0.0611443250238541,relative_legacy,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192472,87.97057662822883,spot_baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192472,87.76834657093167,baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192472,-3.153977867458884,peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192924,0.0051141615514437,relative_legacy,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192924,1.3115164923976277,peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192924,84.07260380279979,baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192924,1.5126440772203182,spot_peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,192924,94.56077031813722,spot_baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,193275,78.50205877151316,baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,193275,-1.5924351041632934,peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,193275,-1.7510776770790446,spot_peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,193275,89.99489861896717,spot_baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,193275,-0.0346705336436234,relative_legacy,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,195286,-0.0065884671557858,relative_legacy,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,195286,0.1110281468553369,spot_peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,195286,61.53391307634261,baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,195286,0.0701283919834259,peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,204737,-4.732940440619046,peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,204737,32.136335994578744,baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,204737,-0.0694882861776053,relative_legacy,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,204737,-11.359115473886543,spot_peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,208405,96.7733806808437,baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,208405,98.5500430304885,spot_baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,208405,4.336205019764194,peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,208405,4.364208245679167,spot_peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,208405,0.0427211550358429,relative_legacy,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,215725,65.66599806656542,baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,215725,0.023393275540715,relative_legacy,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,215725,97.08536543404836,spot_baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,215725,2.252411576472256,peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,215725,3.317244938452301,spot_peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,218666,4.390104375446133,peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,218666,97.36289478675596,baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,218666,0.0431108453358812,relative_legacy,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,218666,4.364208245679167,spot_peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,218666,98.5500430304885,spot_baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,218945,74.1262322931922,baseline,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,218945,-0.1710387229203509,relative_legacy,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,218945,-11.359115473886543,spot_peer,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,218945,-11.168286749355966,peer,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,219886,4.364208245679167,spot_peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,219886,0.0413952480546044,relative_legacy,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,219886,94.20561113631796,baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,219886,98.5500430304885,spot_baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,219886,4.177875356539806,peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,220077,84.79969065549501,spot_baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,220077,-0.09273814442917,relative_legacy,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,220077,84.23539449715176,baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,220077,-5.458611972233238,peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,220077,-5.464654046641835,spot_peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,221727,92.5999418556223,spot_baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,221727,0.092843762726067,peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,221727,0.1110281468553369,spot_peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,221727,-0.0156618230166113,relative_legacy,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,221727,90.40220047550189,baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,222631,0.1597301965274561,peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,222631,3.317244938452301,spot_peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,222631,4.67092095009509,baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,222631,3.1083608887709614e-05,relative_legacy,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30090,Will Planet Nine be discovered before 2025?,2024-11-19 14:16:58.016323+00,222631,97.08536543404836,spot_baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30285 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,182315,-54.18650242567618,peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,182315,-125.15387669959644,spot_baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,182315,-0.6793208056689143,relative_legacy,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,182315,-61.17732314917406,spot_peer,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,182315,-110.5294788920346,baseline,RyansAGI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,185690,-4.673239234503965,baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,185690,-45.324132956522746,spot_baseline,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,185690,-0.4998620203302966,peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,185690,-4.1143812925791154,spot_peer,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,185690,-0.0035723339422379,relative_legacy,annabot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,185699,17.41836971816219,spot_peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,185699,18.004594973446792,peer,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,185699,0.3114811652115984,relative_legacy,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,185699,-15.200309344505014,spot_baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,185699,-14.93456501195173,baseline,MWG,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,187708,20.83025651611344,baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,187708,0.4541870239889576,relative_legacy,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,187708,31.04613153720239,peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,187708,36.28906426658603,spot_baseline,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,187708,54.22338743259152,spot_peer,twsummerbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,188107,0.3199284836917149,peer,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,188107,0.8830339291593069,spot_peer,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,188107,0.0290019531976941,relative_legacy,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,188107,-38.332863955150586,spot_baseline,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,188107,-22.92392753337002,baseline,Cassie,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,188389,-2.0239918273060087,baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,188389,-40.35418604410144,spot_baseline,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,188389,-0.5618233311430074,spot_peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,188389,-0.0321123927214058,peer,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,188389,0.0,relative_legacy,Panshul42,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,188909,-17.739684563180237,spot_peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,188909,-0.0457114367941021,relative_legacy,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,188909,-64.38561897747249,spot_baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,188909,-4.0285996617931,peer,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,188909,-13.966956834924964,baseline,silicoqr,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,189585,-23.820124867700645,peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,189585,-72.8133560847741,baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,189585,-24.39521955549224,spot_peer,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,189585,-73.69655941662059,spot_baseline,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,189585,-0.2632545390806385,relative_legacy,mf-bot-1,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,189588,-132.19280948873626,spot_baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,189588,-66.20880882914672,spot_peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,189588,-0.8393565890993993,relative_legacy,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,189588,-130.19047964666575,baseline,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,189588,-65.51335529223124,peer,mf-bot-3,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,189869,0.0,baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,189869,0.0,spot_baseline,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,189869,28.28367289537553,spot_peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,189869,28.18345034034067,peer,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,189869,0.4513876304527406,relative_legacy,VeritasAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,190710,0.0715856757968519,relative_legacy,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,190710,-0.017626817618495,spot_peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,190710,0.3952862144147376,peer,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,190710,-39.592867633113926,spot_baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,190710,-37.42590673824891,baseline,Bot_Pepa,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,190772,-40.52384043237927,baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,190772,-0.0481127717895438,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,190772,-51.45731728297583,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,190772,-8.498430698306251,spot_peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,190772,-6.500473978630928,peer,Jay_Bailey_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191026,24.674820585821735,spot_peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191026,0.0600423041974541,relative_legacy,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191026,-5.048701411194127,spot_baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191026,3.98108627719966,peer,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191026,-0.9048441437080252,baseline,manticAI,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191046,-37.627639895651534,baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191046,-0.1555072539742333,relative_legacy,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191046,-24.39521955549224,spot_peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191046,-12.8056325382736,peer,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191046,-73.69655941662059,spot_baseline,archipelago,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191284,-32.19280948873623,spot_baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191284,5.271994166097657,spot_peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191284,0.1407878501088103,relative_legacy,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191284,5.693709267570068,peer,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191284,-31.24074717185333,baseline,000_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191471,-50.32217776760764,baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191471,-73.69655941662059,spot_baseline,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191471,-24.39521955549224,spot_peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191471,-16.758429955924967,peer,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191471,-0.199968856378175,relative_legacy,HSeldon,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191935,0.50293277175373,relative_legacy,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191935,32.328308939307675,spot_peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191935,31.913203778640305,peer,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191935,5.658352836636751,spot_baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191935,5.439769112021746,baseline,pgodzinai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191975,0.7691495802470082,baseline,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191975,11.725175028928462,spot_baseline,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191975,0.0338509464626449,relative_legacy,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191975,36.66492215865148,spot_peer,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,191975,2.3691010299716924,peer,jkraybill_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192049,38.112535187696544,spot_peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192049,37.48368383331157,peer,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192049,13.750352374993504,spot_baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192049,0.5800698977128584,relative_legacy,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192049,13.199511858838516,baseline,gnosis-ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192418,-99.52358210059228,baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192418,-0.5279283378065324,relative_legacy,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192418,-43.19713009986882,spot_peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192418,-43.13603037927704,peer,InstitutPelFutur,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192472,47.08558343975211,spot_peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192472,0.7296201761403733,relative_legacy,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192472,26.303440583379377,spot_baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192472,48.45844598595134,peer,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192472,26.26772691857081,baseline,bestworldbot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192924,-65.57928758659362,baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192924,-0.2271634696996994,relative_legacy,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192924,-73.69655941662059,spot_baseline,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192924,-21.547415782949614,peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,192924,-24.39521955549224,spot_peer,acm_bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,193275,-29.8184301779049,peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,193275,-87.30271437422344,spot_baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,193275,-0.3420729331496136,relative_legacy,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,193275,-34.121008375964,spot_peer,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,193275,-76.71193101916123,baseline,histerio,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,195286,-10.12589065455019,baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,195286,0.1920456651464471,relative_legacy,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,195286,11.651299543715602,peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,195286,-15.200309344505014,spot_baseline,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,195286,17.41836971816219,spot_peer,Unwrapped80T,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,204737,37.85116232537298,spot_baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,204737,0.3346354825751865,relative_legacy,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,204737,55.33998766858555,spot_peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,204737,23.077718810032703,peer,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,204737,15.961021831059297,baseline,SynapseSeer,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,208405,-42.40881883805904,peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,208405,-98.21506022919476,baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,208405,-100.0,spot_baseline,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,208405,-43.19713009986882,spot_peer,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,208405,-0.5215837944655861,relative_legacy,mf-bot-4,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,215725,-0.0494852731556963,relative_legacy,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,215725,-5.790457217177479,peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,215725,-8.498430698306251,spot_peer,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,215725,-34.81899896239453,baseline,estr.ai,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,218666,16.184959523289024,baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,218666,40.840555843720814,peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,218666,39.970693567660255,spot_peer,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,218666,16.349873228287958,spot_baseline,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,218666,0.6264183325213788,relative_legacy,GreeneiBot2,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,218945,-24.39521955549224,spot_peer,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,218945,-23.52799798094717,peer,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,218945,-0.2625509868631975,relative_legacy,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,218945,-73.69655941662059,spot_baseline,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,218945,-71.49600685539552,baseline,SeidrBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,219886,83.19427673441784,baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,219886,93.1077868003314,spot_baseline,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,219886,94.83786655135252,spot_peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,219886,1.2611301822766607,relative_legacy,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,219886,86.04568023217215,peer,SaraBase,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,220077,-0.0455088570728387,relative_legacy,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,220077,-8.050827796978517,peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,220077,-8.498430698306251,spot_peer,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,220077,-51.29330229246144,baseline,mmBot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,221727,-50.23996801635786,baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,221727,-0.0460742399572149,relative_legacy,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,221727,-8.498430698306251,spot_peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,221727,-7.843780728485378,peer,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,222631,-132.19280948873626,spot_baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,222631,-0.0443183651698766,relative_legacy,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,222631,-66.20880882914672,spot_peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,222631,-3.1950241163203086,peer,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30091,"Will Astro Bot or Final Fantasy 7 Rebirth win Console Game of the Year in the 2024 Golden Joystick Awards? -",2024-11-19 14:16:58.047142+00,222631,-6.379199713599375,baseline,Grizeu_Bot,True,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,2024-11-20 15:30:00+00,30286 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,182315,12.036157566324414,spot_peer,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,182315,0.0613285002296116,relative_legacy,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,182315,9.12512384947032,peer,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,182315,38.96246000471327,baseline,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,182315,44.36066514756148,spot_baseline,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,185690,23.731896557455087,spot_baseline,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,185690,-0.2199301819149864,peer,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,185690,2.1941635182622283,baseline,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,185690,-2.6959113653815763,spot_peer,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,185690,-0.0093789397609704,relative_legacy,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,185699,0.0966514538695685,relative_legacy,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,185699,48.54268271702416,spot_baseline,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,185699,11.797341036243903,peer,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,185699,43.05589553619563,baseline,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,185699,15.02275227447766,spot_peer,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,187708,52.12056280989093,baseline,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,187708,26.38638859361905,peer,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,187708,0.3277238663317318,relative_legacy,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,187708,47.45779819739021,spot_peer,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,187708,93.9602720356044,spot_baseline,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,188107,-51.45731728297581,spot_baseline,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,188107,-0.4830576890175805,relative_legacy,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,188107,-28.78222211455979,baseline,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,188107,-56.39241178321366,spot_peer,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,188107,-31.706390596558887,peer,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,188389,63.78420603241049,spot_baseline,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,188389,25.907511155052067,spot_peer,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,188389,61.62367881651611,baseline,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,188389,0.229983274255401,relative_legacy,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,188389,22.682372211648776,peer,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,189585,22.131108730709038,spot_peer,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,189585,57.69772265945887,baseline,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,189585,0.1770555149083113,relative_legacy,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,189585,19.14326949673259,peer,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,189588,17.925206264985768,spot_peer,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,189588,51.80812313511292,baseline,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,189588,14.962052653813078,peer,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,189588,0.1192615234624568,relative_legacy,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,189588,52.60688116675877,spot_baseline,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,189869,-114.04979599474206,spot_peer,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,189869,-1.4098818690910175,relative_legacy,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,189869,-110.50269209564354,baseline,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,189869,-97.06645316581108,peer,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,189869,-132.19280948873623,spot_baseline,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,190710,-0.394790548210377,relative_legacy,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,190710,-2.7301634668972232,baseline,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,190710,-21.72557528284629,spot_peer,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,190710,-22.730541943046106,peer,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,190710,-2.914634565951651,spot_baseline,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,190772,37.85116232537298,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,190772,7.3873854465184445,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,190772,0.0151257627255713,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,190772,29.041538471938384,baseline,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,190772,5.013341673117272,peer,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191026,-0.0004918487521787,relative_legacy,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191026,0.8292399928173094,peer,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191026,9.379689366413707,spot_peer,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191026,5.942966948238251,baseline,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191026,40.64091145804434,spot_baseline,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191046,-0.0303900556788094,relative_legacy,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191046,26.303440583379377,spot_baseline,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191046,11.00692919544073,baseline,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191046,-0.8594389804519782,spot_peer,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191046,-0.0762044244967766,peer,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191284,-72.27460303814331,spot_peer,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191284,-73.69655941662063,spot_baseline,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191284,-51.50654690012584,baseline,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191284,-51.114275933915,peer,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191284,-0.7631254950078712,relative_legacy,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191471,22.631201771985157,baseline,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191471,-0.0141216360245435,relative_legacy,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191471,2.55439961951954,peer,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191471,4.167426418822836,spot_peer,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191471,33.34237337251918,spot_baseline,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191935,-20.651291272135325,peer,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191935,-0.3517370585400807,relative_legacy,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191935,-2.914634565951651,spot_baseline,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191935,-21.72557528284629,spot_peer,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191935,-2.550522859046509,baseline,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191975,0.2615736687085765,relative_legacy,jkraybill_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191975,42.99342902528681,spot_peer,jkraybill_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191975,87.70898180752766,spot_baseline,jkraybill_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191975,21.26520498673116,peer,jkraybill_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,191975,43.11611174923481,baseline,jkraybill_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192049,-1.6339886432349078,relative_legacy,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192049,-114.04979599474206,spot_peer,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192049,-111.97293628612208,peer,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192049,-132.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192049,-125.7309097834296,baseline,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192418,0.3534759969797014,relative_legacy,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192418,74.50221283756206,baseline,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192418,35.02670527748539,spot_peer,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192418,31.71533635244071,peer,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192472,75.7042358148822,baseline,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192472,0.3551655354544258,relative_legacy,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192472,35.02670527748539,spot_peer,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192472,32.07338338258998,peer,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192924,29.53027496005738,peer,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192924,76.55347463629771,spot_baseline,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192924,0.3442737328688147,relative_legacy,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192924,67.40602621708047,baseline,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,192924,35.02670527748539,spot_peer,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,193275,39.83503703459648,spot_baseline,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,193275,6.331399054830866,peer,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,193275,8.804172824809452,spot_peer,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,193275,0.030976469658653,relative_legacy,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,193275,32.10527169769091,baseline,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,195286,35.87051620817113,peer,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,195286,77.73966807336039,baseline,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,195286,0.4232996745630827,relative_legacy,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,195286,40.91575397614678,spot_peer,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,204737,-132.19280948873623,spot_baseline,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,204737,-0.6778487152702067,relative_legacy,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,204737,-114.04979599474206,spot_peer,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,204737,-54.09028798575702,baseline,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,204737,-46.48305288720763,peer,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,208405,0.4350268160639272,relative_legacy,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,208405,83.182243716936,baseline,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,208405,40.91575397614678,spot_peer,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,208405,37.75995892625688,peer,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,215725,28.7805321206406,spot_peer,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,215725,67.80719051126377,spot_baseline,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,215725,25.19269192598987,peer,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,215725,63.97868497810138,baseline,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,215725,0.2679416758207321,relative_legacy,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,216863,31.61867000611922,baseline,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,216863,0.0116125619463613,relative_legacy,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,216863,7.3873854465184445,spot_peer,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,216863,37.85116232537298,spot_baseline,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,216863,5.173251279227944,peer,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,218666,19.346336424074902,spot_peer,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,218666,0.1408933503046317,relative_legacy,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,218666,16.26620545941004,peer,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,218666,52.8602795905594,baseline,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,218666,54.59683691052925,spot_baseline,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,218945,27.46236146003757,peer,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,218945,0.2944386833842318,relative_legacy,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,218945,68.67855023575608,baseline,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,218945,70.48719644563528,spot_baseline,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,218945,30.694462755427875,spot_peer,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,219459,6.181472399769047,baseline,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,219459,0.0008634947256202,relative_legacy,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,219459,0.9429012138476802,peer,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,219459,4.71112321103097,spot_peer,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,219459,34.10369178350669,spot_baseline,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,219886,0.286320638047823,relative_legacy,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,219886,65.15091451644187,baseline,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,219886,69.8218478224414,spot_baseline,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,219886,30.219302944618388,spot_peer,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,219886,26.332584428886797,peer,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,220077,-0.905597375318148,relative_legacy,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,220077,-50.67414570931152,baseline,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,220077,-59.32913643296484,peer,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,220077,-51.45731728297583,spot_baseline,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,220077,-56.39241178321367,spot_peer,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,221727,35.02670527748539,spot_peer,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,221727,0.3535449058572465,relative_legacy,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,221727,31.813963009707724,peer,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,221727,74.85673696608782,baseline,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,222631,17.925206264985768,spot_peer,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,222631,52.60688116675877,spot_baseline,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,222631,1.1266513490052066,peer,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,222631,0.0113197664759302,relative_legacy,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30120,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-20 13:59:15.263607+00,222631,3.283430097295397,baseline,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30321 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,182315,-1.0601933827376742,relative_legacy,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,182315,-56.44743765647074,peer,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,182315,-66.038924020127,spot_peer,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,182315,-78.58751946471523,spot_baseline,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,182315,-69.08102538439846,baseline,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,185690,24.586070184035325,spot_baseline,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,185690,-0.0142150968748168,relative_legacy,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,185690,0.7234663918604815,peer,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,185690,7.710386339818222,spot_peer,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,185690,2.315674015863374,baseline,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,185699,48.43405250558289,spot_peer,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,185699,46.25895388621758,peer,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,185699,81.55754288625727,spot_baseline,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,185699,0.3562482543321015,relative_legacy,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,185699,73.74261408248442,baseline,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,187708,24.095514871376093,spot_peer,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,187708,14.57676761974236,peer,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,187708,47.50848829487828,spot_baseline,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,187708,26.75629143019866,baseline,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,187708,0.0217955636810615,relative_legacy,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,188107,-0.0019290704672195,relative_legacy,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,188107,21.08435204373654,spot_peer,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,188107,43.29594072761063,spot_baseline,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,188107,12.938274234122224,peer,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,188107,24.492651074078715,baseline,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,188389,78.873263170806,baseline,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,188389,50.20811543591365,peer,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,188389,81.0648747782646,spot_baseline,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,188389,0.3765825691776421,relative_legacy,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,188389,48.08188938588826,spot_peer,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,189585,-81.34473704794894,spot_peer,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,189585,-98.6292832570206,baseline,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,189585,-100.0,spot_baseline,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,189585,-1.399913462824429,relative_legacy,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,189585,-78.12684110497548,peer,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,189588,37.26844335151375,baseline,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,189588,20.35707395367452,peer,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,189588,-0.0418676163569777,relative_legacy,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,189588,17.192380720505437,spot_peer,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,189869,16.436800774676254,peer,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,189869,17.192380720505437,spot_peer,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,189869,31.64119659172352,baseline,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,189869,-0.0328082255628526,relative_legacy,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,190710,68.58690119108137,baseline,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,190710,42.40163119154201,spot_peer,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,190710,0.2888150111143814,relative_legacy,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,190710,42.41966382915471,peer,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,190710,73.11832415721999,spot_baseline,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,190772,24.32232286922129,peer,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,190772,0.0959002706598822,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,190772,29.16232338094568,spot_peer,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,190772,54.59683691052925,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,190772,41.93814490976636,baseline,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191026,0.0444917062203287,relative_legacy,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191026,11.968562089821493,baseline,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191026,6.82506388496002,peer,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191026,67.03441091193753,spot_baseline,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191026,38.05280115028007,spot_peer,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191046,-6.368032104656653,baseline,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191046,-15.200309344505014,spot_baseline,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191046,-0.2469938188342777,relative_legacy,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191046,-8.219947590193566,peer,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191046,-20.72923722991793,spot_peer,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191284,-121.3955317695266,baseline,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191284,-92.46006402994134,peer,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191284,-173.6965594166206,spot_baseline,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191284,-1.5112252806495274,relative_legacy,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191284,-134.02362949881672,spot_peer,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191471,0.1075089362236963,relative_legacy,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191471,58.496250072115615,spot_baseline,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191471,31.94965522094985,spot_peer,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191471,39.735712105227016,baseline,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191471,23.376402420431347,peer,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191935,73.11832415721999,spot_baseline,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191935,64.0772075327733,baseline,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191935,0.27259641659617,relative_legacy,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191935,39.48113536379324,peer,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,191935,42.40163119154201,spot_peer,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192049,80.76992853768446,baseline,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192049,0.4033032881120556,relative_legacy,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192049,50.75156576532644,spot_peer,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192049,51.27080960842103,peer,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192418,-97.33438758331316,baseline,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192418,-81.34473704794894,spot_peer,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192418,-77.23234121896371,peer,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192418,-1.385114782287856,relative_legacy,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192472,-59.328052438111406,baseline,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192472,-52.71396421125139,spot_peer,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192472,-59.94620704162715,spot_baseline,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192472,-1.0049037374209906,relative_legacy,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192472,-49.46033065132734,peer,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192924,22.29938819074461,spot_peer,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192924,21.881605315975,peer,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192924,44.99574836280035,spot_baseline,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192924,0.0260805552521821,relative_legacy,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,192924,39.70310357855081,baseline,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,193275,-5.792221077334619,peer,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,193275,0.5055874980644293,baseline,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,193275,-0.335226906927662,relative_legacy,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,193275,-9.247032910957532,spot_peer,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,193275,0.8630305143439737,spot_baseline,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,195286,-15.200309344505014,spot_baseline,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,195286,-13.948504313277835,baseline,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,195286,-17.019237831626736,peer,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,195286,-20.72923722991793,spot_peer,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,195286,-0.5269797168864727,relative_legacy,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,204737,0.1752604390075428,relative_legacy,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,204737,86.39384504239716,spot_baseline,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,204737,51.89108012206802,spot_peer,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,204737,21.857044369266717,peer,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,204737,35.5193211087271,baseline,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,208405,74.90540287633881,baseline,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,208405,44.85710433808173,spot_peer,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,208405,47.46786608491414,peer,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,208405,0.335007442397059,relative_legacy,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,215725,-0.0425327830859074,relative_legacy,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,215725,35.728032750219505,baseline,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,215725,18.699341745660178,peer,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,215725,37.85116232537298,spot_baseline,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,215725,17.192380720505437,spot_peer,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,216863,-26.87608081478284,baseline,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,216863,-32.19280948873623,spot_baseline,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,216863,-32.875612781982454,spot_peer,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,216863,-0.61749057815113,relative_legacy,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,216863,-25.668890917574267,peer,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,218666,53.80414533336636,spot_baseline,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,218666,0.1109151271212557,relative_legacy,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,218666,28.595701076313983,spot_peer,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,218666,52.20445567336223,baseline,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,218666,30.867249608419225,peer,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,218945,-129.3036783063348,peer,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,218945,-173.6965594166206,spot_baseline,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,218945,-2.1056998615414524,relative_legacy,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,218945,-134.02362949881672,spot_peer,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,218945,-169.33449205758012,baseline,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,219459,-0.0288230208578563,relative_legacy,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,219459,4.767865158778099,baseline,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,219459,8.93797649167198,spot_peer,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,219459,1.647213828035692,peer,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,219459,26.303440583379377,spot_baseline,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,219886,24.883374268692258,peer,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,219886,44.29358949460544,baseline,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,219886,0.0429294323436379,relative_legacy,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,219886,23.66430885056307,spot_peer,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,219886,46.90524098546893,spot_baseline,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,220077,13.560686850053369,baseline,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,220077,3.248140604774988,peer,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,220077,-0.0350717603835708,spot_peer,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,220077,-0.2781798871711795,relative_legacy,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,220077,13.750352374993504,spot_baseline,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,221727,37.017804420210666,baseline,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,221727,-0.0433489360290482,relative_legacy,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,221727,19.990438159741792,peer,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,221727,17.192380720505437,spot_peer,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,222631,-0.0061338729257893,peer,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,222631,13.750352374993504,spot_baseline,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,222631,-0.0150810416611319,relative_legacy,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,222631,0.8604260082937832,baseline,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30121,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-20 13:59:15.300357+00,222631,-0.0350717603835708,spot_peer,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30322 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,182315,27.30185260417949,baseline,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,182315,21.640520990727275,peer,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,182315,0.1333996934758999,relative_legacy,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,182315,31.034012061215048,spot_baseline,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,182315,26.171160481852063,spot_peer,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,185690,-0.0202525500869832,relative_legacy,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,185690,-13.832930285689068,spot_peer,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,185690,-1.2483250624598576,peer,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,185690,-24.982229440694287,spot_baseline,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,185690,-2.3827378756654327,baseline,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,185699,48.2148371199725,baseline,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,185699,36.64825254047583,peer,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,185699,0.3246792869024576,relative_legacy,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,185699,52.60688116675877,spot_baseline,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,185699,41.57746034552711,spot_peer,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,187708,-23.726298793017964,spot_peer,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,187708,-13.636870311907405,peer,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,187708,-0.2903584823183947,relative_legacy,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,187708,-38.83554566263384,spot_baseline,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,187708,-22.32165495206227,baseline,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,188107,33.79862576762047,baseline,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,188107,58.496250072115615,spot_baseline,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,188107,0.2702892164153538,relative_legacy,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,188107,45.78336281125038,spot_peer,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,188107,26.59855943783576,peer,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,188389,23.11609275779923,peer,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,188389,25.00129856821728,spot_peer,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,188389,29.395897902869443,spot_baseline,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,188389,0.1138933050751949,relative_legacy,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,188389,28.67761707314349,baseline,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,189585,47.8407193392971,baseline,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,189585,37.441969950666525,peer,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,189585,0.3061327359519057,relative_legacy,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,189585,38.675006355019,spot_peer,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,189588,-32.740157702672334,spot_peer,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,189588,-0.6793324311052432,relative_legacy,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,189588,-33.99947086026525,peer,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,189588,-50.65932822931144,baseline,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,189869,48.90336335419736,baseline,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,189869,0.3675006314132812,relative_legacy,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,189869,37.293557925909774,peer,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,189869,45.78336281125038,spot_peer,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,190710,-0.6094644246993761,relative_legacy,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,190710,-30.10812500666831,peer,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,190710,-47.39311883324123,spot_baseline,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,190710,-29.837703712164224,spot_peer,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,190710,-44.500148384934846,baseline,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,190772,-9.249678903969471,baseline,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,190772,-0.1921829913696766,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,190772,-4.241390473404784,peer,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,190772,-12.029423371771196,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,190772,-4.582662581493039,spot_peer,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191026,63.92097005085454,spot_baseline,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191026,6.294337940127872,peer,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191026,49.65743548373714,spot_peer,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191026,0.067598846944375,relative_legacy,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191026,7.6716574136870275,baseline,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191046,-72.87835715844398,baseline,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191046,-50.18595625407698,peer,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191046,-120.03751301529329,spot_peer,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191046,-173.6965594166206,spot_baseline,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191046,-0.7721554193154122,relative_legacy,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191284,-0.78569173007939,relative_legacy,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191284,-47.493586236929126,peer,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191284,-100.0,spot_baseline,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191284,-67.40699420303972,spot_peer,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191284,-69.88888763553567,baseline,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191471,-100.18887134817756,baseline,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191471,-69.20423188802921,peer,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191471,-1.0851997543101837,relative_legacy,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191471,-147.39311883324118,spot_baseline,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191471,-101.25286776985554,spot_peer,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191935,0.2314573831879735,relative_legacy,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191935,34.162008869002754,spot_peer,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191935,28.62472347383225,peer,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191935,42.22330006830476,spot_baseline,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191935,37.00252647080163,baseline,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191975,14.711656328398512,baseline,jkraybill_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191975,13.216765470955083,peer,jkraybill_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191975,21.08044470612361,spot_baseline,jkraybill_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191975,19.062804025620704,spot_peer,jkraybill_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,191975,0.0604679673435743,relative_legacy,jkraybill_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192049,64.56800805668813,spot_peer,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192049,60.36907652530053,peer,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192049,0.6392169742859379,relative_legacy,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192049,80.86306824066699,baseline,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192418,-50.09246109153987,baseline,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192418,-33.83391402053661,peer,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192418,-0.6731933037253003,relative_legacy,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192418,-32.740157702672334,spot_peer,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192472,-1.8868786708498315,relative_legacy,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192472,-121.51532406984916,peer,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192472,-173.6965594166206,spot_baseline,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192472,-120.03751301529329,spot_peer,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192472,-172.04122740164712,baseline,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192924,-20.79314569850719,peer,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192924,-31.664857857744234,baseline,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192924,-21.5908792851938,spot_peer,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192924,-35.845397091247634,spot_baseline,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,192924,-0.4580311358237903,relative_legacy,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,193275,0.0035441018234038,relative_legacy,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,193275,10.8825191712766,peer,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,193275,15.315678806142053,spot_baseline,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,193275,14.945887000607025,spot_peer,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,193275,12.120197435803298,baseline,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,195286,44.59025862461095,baseline,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,195286,0.2874304209877418,relative_legacy,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,195286,38.675006355019,spot_peer,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,195286,34.03991850964422,peer,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,204737,0.198008144903177,relative_legacy,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,204737,58.68848128521847,spot_baseline,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,204737,19.305422240265003,peer,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,204737,45.920645047457874,spot_peer,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,204737,24.220685793741424,baseline,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,208405,47.488621809369775,baseline,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,208405,36.855738860255535,peer,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,208405,38.675006355019,spot_peer,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,208405,0.3003156122918342,relative_legacy,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,215725,0.3853159950090754,relative_legacy,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,215725,58.496250072115615,spot_baseline,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,215725,45.78336281125038,spot_peer,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,215725,41.80490324198807,peer,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,215725,55.233303503424,baseline,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,216863,-26.872374996475124,baseline,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,216863,-17.174743522723205,peer,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,216863,-18.98237785650938,spot_peer,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,216863,-32.19280948873623,spot_baseline,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,216863,-0.3897178523860634,relative_legacy,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,218666,17.14590588545352,spot_peer,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,218666,18.396283484259488,spot_baseline,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,218666,0.0060090929842547,relative_legacy,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,218666,17.887123492305495,baseline,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,218666,15.256109087084235,peer,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,218945,-100.38133671288485,baseline,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,218945,-70.14676571450659,peer,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,218945,-1.1766430862193311,relative_legacy,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,218945,-69.48848525999625,spot_peer,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,218945,-102.91463456595166,spot_baseline,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,219459,-38.332863955150586,spot_baseline,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,219459,-23.36730782693079,spot_peer,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,219459,-4.142134934388961,peer,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,219459,-0.0782411282766643,relative_legacy,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,219459,-6.948696609737319,baseline,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,219886,61.224465128768216,baseline,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,219886,64.42254724390277,spot_baseline,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,219886,46.16335129068869,peer,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,219886,0.4434232439477544,relative_legacy,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,219886,50.01563765902849,spot_peer,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,220077,-6.847156001003218,spot_peer,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,220077,-0.3214253288488446,relative_legacy,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,220077,-15.200309344505014,spot_baseline,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,220077,-15.013210124515464,baseline,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,220077,-7.932640408520368,peer,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,221727,29.187740662170672,peer,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,221727,37.01930557370665,baseline,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,221727,0.1964023514103804,relative_legacy,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,221727,31.039639527059787,spot_peer,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,222631,13.750352374993504,spot_baseline,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,222631,13.828006561763898,spot_peer,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,222631,0.0082783406500526,relative_legacy,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,222631,0.917064385769788,peer,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30122,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-20 13:59:15.337167+00,222631,0.8628369201268767,baseline,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30323 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,182315,0.0190270824523633,relative_legacy,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,182315,1.003251014463848,peer,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,182315,84.16491419008837,baseline,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,182315,1.111746673400899,spot_peer,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,182315,95.60566524124027,spot_baseline,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,185690,0.002733191467104,relative_legacy,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,185690,2.010656738600538,spot_peer,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,185690,0.205691949926018,peer,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,185690,9.390496659432555,baseline,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,185690,96.86437559647167,spot_baseline,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,185699,97.08536543404836,spot_baseline,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,185699,2.0276632494937736,peer,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,185699,2.1684769936567423,spot_peer,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,185699,0.0328011655177976,relative_legacy,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,185699,90.0002146326536,baseline,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,187708,-1.4695232755345915,spot_peer,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,187708,54.04613578565479,baseline,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,187708,-0.0081671161418473,relative_legacy,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,187708,-0.830816263388889,peer,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,187708,91.9912088677308,spot_baseline,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,188107,95.60566524124027,spot_baseline,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,188107,1.111746673400899,spot_peer,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,188107,0.0129596455202152,relative_legacy,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,188107,0.6876496401051163,peer,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,188107,55.82399031564061,baseline,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,188389,98.5500430304885,spot_baseline,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,188389,0.0474330691489949,relative_legacy,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,188389,3.162448367737095,peer,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,188389,3.2144789020707165,spot_peer,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,188389,96.43079330485534,baseline,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,189585,-0.0109143164659325,relative_legacy,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,189585,-1.051529328851707,peer,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,189585,-1.034795613558585,spot_peer,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,189585,91.46629104795676,baseline,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,189588,-0.0109136347833598,relative_legacy,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,189588,91.25332037424708,baseline,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,189588,-1.034795613558585,spot_peer,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,189588,-1.0514663280046046,peer,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,189869,98.5500430304885,spot_baseline,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,189869,82.38994390178779,baseline,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,189869,0.0430173700103197,relative_legacy,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,189869,2.7297724310179485,peer,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,189869,3.2144789020707165,spot_peer,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,190710,-0.1708047808515637,spot_peer,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,190710,0.0022332789950961,relative_legacy,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,190710,93.80975610740931,spot_baseline,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,190710,88.17952781283148,baseline,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,190710,-0.1685396276062381,peer,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,190772,0.0402229476938504,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,190772,98.5500430304885,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,190772,2.5418284102140785,peer,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,190772,76.54492220629841,baseline,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,190772,3.2144789020707165,spot_peer,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191026,-0.0088040571973348,relative_legacy,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191026,15.766337736995398,baseline,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191026,-0.6811758071287712,peer,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191026,-1.034795613558585,spot_peer,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191046,-0.0045907237750402,relative_legacy,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191046,-1.034795613558585,spot_peer,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191046,38.72324848910943,baseline,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191046,-0.4159688117441487,peer,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191284,-6.605357805041541,spot_peer,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191284,-0.0593310227584489,relative_legacy,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191284,84.79969065549501,spot_baseline,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191284,-4.594620208894751,peer,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191284,59.26504476554785,baseline,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191471,-0.6619001036693272,peer,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191471,62.989095684781766,baseline,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191471,-1.034795613558585,spot_peer,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191471,92.5999418556223,spot_baseline,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191471,-0.0045907237750402,relative_legacy,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191935,0.0561394979750275,peer,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191935,82.57129234132894,baseline,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191935,94.11063109464314,spot_baseline,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191935,0.0440655848900413,spot_peer,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191935,0.0059029366621709,relative_legacy,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191975,1.647865554211558,peer,jkraybill_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191975,0.0238826933187783,relative_legacy,jkraybill_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191975,99.85565831303312,spot_baseline,jkraybill_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191975,4.146886198062263,spot_peer,jkraybill_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,191975,39.18609313103481,baseline,jkraybill_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192049,3.2144789020707165,spot_peer,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192049,98.5500430304885,spot_baseline,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192049,3.087931632777187,peer,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192049,0.0470096040136209,relative_legacy,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192049,94.10519824191532,baseline,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192418,2.1684769936567423,spot_peer,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192418,2.1161794109409566,peer,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192418,97.08536543404836,spot_baseline,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192418,94.52429071321788,baseline,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192418,0.0330234329948168,relative_legacy,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192472,-1.051529328851707,peer,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192472,92.5999418556223,spot_baseline,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192472,-1.034795613558585,spot_peer,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192472,-0.0109143164659325,relative_legacy,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192472,91.79143506625564,baseline,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192924,-4.158505264186313,peer,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192924,87.49936389329673,spot_baseline,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192924,-0.0526514040289581,relative_legacy,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192924,77.46677279635833,baseline,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,192924,-4.677381733243841,spot_peer,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,193275,-0.0296035454319861,relative_legacy,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,193275,-3.005679786000526,spot_peer,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,193275,75.02132699082156,baseline,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,193275,89.8401859992193,spot_baseline,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,193275,-2.4939067001978663,peer,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,195286,85.13474230588325,baseline,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,195286,-0.00843702241513,relative_legacy,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,195286,-1.034795613558585,spot_peer,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,195286,-0.9576301834138852,peer,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,204737,0.0140035420716019,relative_legacy,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,204737,40.24661357250386,baseline,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,204737,0.91895383810534,peer,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,204737,97.08536543404836,spot_baseline,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,204737,2.1684769936567423,spot_peer,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,208405,3.1788196608134447,peer,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,208405,0.0475712174921847,relative_legacy,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,208405,96.9160179658128,baseline,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,208405,98.5500430304885,spot_baseline,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,208405,3.2144789020707165,spot_peer,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,215725,87.46974400431519,baseline,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,215725,-0.0093458001055194,relative_legacy,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,215725,-1.034795613558585,spot_peer,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,215725,-0.99570371085306,peer,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,216863,77.33074504654431,baseline,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,216863,-0.0066992272898644,relative_legacy,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,216863,92.5999418556223,spot_baseline,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,216863,-0.8467256497830994,peer,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,216863,-1.034795613558585,spot_peer,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,218666,3.2144789020707165,spot_peer,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,218666,0.0473147195277033,relative_legacy,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,218666,3.1500404836171763,peer,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,218666,98.5500430304885,spot_baseline,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,218666,96.05371094428862,baseline,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,218945,84.79969065549501,spot_baseline,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,218945,-0.0868400864949129,relative_legacy,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,218945,82.75942351610959,baseline,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,218945,-6.542618621186497,peer,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,218945,-6.605357805041541,spot_peer,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,219459,84.79969065549501,spot_baseline,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,219459,-0.0155413107087212,relative_legacy,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,219459,15.372553604450044,baseline,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,219459,-6.605357805041541,spot_peer,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,219459,-1.165487139682326,peer,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,219886,95.37047795784292,spot_baseline,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,219886,0.0163331486104979,relative_legacy,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,219886,0.94378728911983,spot_peer,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,219886,0.9194895301213464,peer,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,219886,93.79425755888902,baseline,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,220077,-1.051529328851707,peer,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,220077,-0.0109143164659325,relative_legacy,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,220077,-1.034795613558585,spot_peer,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,220077,91.6962841772466,baseline,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,221727,1.07987504264438,peer,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,221727,0.0186208236073401,relative_legacy,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,221727,93.55548951557677,baseline,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,221727,95.60566524124027,spot_baseline,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,221727,1.111746673400899,spot_peer,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,222631,3.2144789020707165,spot_peer,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,222631,0.0023424510834204,relative_legacy,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,222631,98.5500430304885,spot_baseline,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,222631,6.200110072672308,baseline,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30123,"Will we detect an exoplanet atmosphere with >5% oxygen atmosphere before 2025? -",2024-11-20 13:59:15.378637+00,222631,0.2060526921305192,peer,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30324 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,182315,16.349873228287958,spot_baseline,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,182315,19.539412940325587,spot_peer,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,182315,16.895959909581574,peer,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,182315,14.40252797166032,baseline,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,182315,0.2067276976026527,relative_legacy,RyansAGI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,185690,-0.1480581713141262,peer,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,185690,0.0005106838150264,relative_legacy,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,185690,-1.3577956760405665,baseline,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,185690,-1.9484119241101427,spot_peer,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,185690,-13.76478004679799,spot_baseline,annabot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,185699,11.103131238874395,spot_baseline,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,185699,0.1657626561931424,relative_legacy,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,185699,10.590269777052873,baseline,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,185699,14.304476498380865,peer,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,185699,15.795684863912,spot_peer,MWG,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,187708,0.1074142775816072,relative_legacy,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,187708,10.15638845903574,peer,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,187708,7.593532426123197,baseline,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,187708,16.933168000766354,spot_peer,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,187708,12.697285625776551,spot_baseline,twsummerbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,188107,0.0,spot_baseline,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,188107,0.0,baseline,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,188107,4.614022536122247,peer,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,188107,7.873224746957612,spot_peer,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,188107,0.0295776932757879,relative_legacy,Cassie,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,188389,68.50868830621344,baseline,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,188389,0.7340927485074262,relative_legacy,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,188389,56.14878996893067,peer,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,188389,57.66174959773038,spot_peer,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,188389,69.77738195551859,spot_baseline,Panshul42,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,188909,2.856915219677092,spot_baseline,silicoqr,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,188909,0.007688696527194,relative_legacy,silicoqr,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,188909,9.911730498034936,spot_peer,silicoqr,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,188909,0.1321523092311946,baseline,silicoqr,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,188909,0.4594226808876034,peer,silicoqr,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,189585,6.797299836120183,peer,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,189585,7.873224746957612,spot_peer,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,189585,0.0490327755423418,relative_legacy,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,189585,-0.0045722239041824,baseline,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,189585,0.0,spot_baseline,mf-bot-1,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,189588,13.750352374993504,spot_baseline,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,189588,16.543450481535363,peer,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,189588,13.54505417390399,baseline,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,189588,17.684566785638115,spot_peer,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,189588,0.1844564071843318,relative_legacy,mf-bot-3,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,189869,-53.68266160433648,peer,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,189869,-0.7733292373002548,relative_legacy,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,189869,-83.60316551863043,baseline,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,189869,-63.4801614871544,spot_peer,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,189869,-100.0,spot_baseline,VeritasAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,190710,-43.440282414577496,spot_baseline,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,190710,-40.87167202261048,baseline,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,190710,-23.122887745504908,spot_peer,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,190710,-22.74621144310939,peer,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,190710,-0.3474201294439434,relative_legacy,Bot_Pepa,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,190772,-11.92389673633375,baseline,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,190772,-0.0567415603275767,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,190772,-2.478056945137381,peer,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,190772,-2.972710688406865,spot_peer,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,190772,-15.200309344505014,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191026,-41.13110396453372,spot_baseline,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191026,-0.0333498250374196,relative_legacy,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191026,-21.475210727210296,spot_peer,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191026,-6.212282713298681,baseline,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191026,-2.898208132395547,peer,manticAI,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191046,-0.1858279057366677,relative_legacy,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191046,-12.076160858325707,peer,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191046,-28.84331359967661,spot_peer,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191046,-21.54055990124557,baseline,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191046,-51.45731728297583,spot_baseline,archipelago,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191284,-73.69655941662059,spot_baseline,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191284,-44.71176593483552,spot_peer,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191284,-31.391725541622485,peer,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191284,-51.50483076235442,baseline,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191284,-0.4655584011741791,relative_legacy,000_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191471,-21.917766429089525,baseline,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191471,-15.097434947152212,spot_peer,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191471,-10.303908896333246,peer,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191471,-0.1724312609539977,relative_legacy,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191471,-32.19280948873623,spot_baseline,HSeldon,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191935,13.750352374993504,spot_baseline,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191935,17.684566785638115,spot_peer,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191935,0.1835329882799394,relative_legacy,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191935,15.219726212891642,peer,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191935,12.083057039388992,baseline,pgodzinai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191975,-0.6690480640114232,relative_legacy,jkraybill_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191975,-45.98610407069752,peer,jkraybill_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191975,-73.17504818974727,baseline,jkraybill_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191975,-49.15259606166384,spot_peer,jkraybill_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,191975,-79.9202726294145,spot_baseline,jkraybill_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192049,-51.45731728297583,spot_baseline,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192049,-28.796331880172627,peer,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192049,-0.4330449211812594,relative_legacy,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192049,-28.84331359967661,spot_peer,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192049,-49.2014760525622,baseline,gnosis-ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192418,49.612279993386295,spot_peer,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192418,47.68323087706598,peer,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192418,56.96152132272656,baseline,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192418,0.6194951944472142,relative_legacy,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192472,0.0,spot_baseline,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192472,0.0,baseline,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192472,7.873224746957612,spot_peer,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192472,0.0501446708856411,relative_legacy,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192472,6.964242835192865,peer,bestworldbot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192924,-18.398461346382604,baseline,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192924,-6.667320150631714,peer,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192924,-6.936960443305804,spot_peer,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192924,-0.1212821955777765,relative_legacy,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,192924,-20.7561069935362,spot_baseline,acm_bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,193275,-18.44245711374277,spot_baseline,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,193275,-15.852564131376342,baseline,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,193275,-0.0958232234277139,relative_legacy,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,193275,-4.958367353453559,peer,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,193275,-5.286092908471722,spot_peer,histerio,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,195286,7.873224746957612,spot_peer,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,195286,6.68329995996975,peer,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,195286,0.0,baseline,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,195286,0.0627024178860495,relative_legacy,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,195286,0.0,spot_baseline,Unwrapped80T,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,204737,33.34237337251918,spot_baseline,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,204737,0.1680504475922501,relative_legacy,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,204737,31.664137199070947,spot_peer,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,204737,13.2687002204827,peer,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,204737,13.881777495613948,baseline,SynapseSeer,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,208405,-1.6589527093984089,relative_legacy,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,208405,-116.06515216894752,spot_peer,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,208405,-116.66388295243688,peer,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,208405,-170.7958574843701,baseline,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,208405,-173.6965594166206,spot_baseline,mf-bot-4,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,215725,0.0,spot_baseline,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,215725,7.873224746957612,spot_peer,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,215725,0.0,baseline,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,215725,6.6878742613256605,peer,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,215725,0.0608348959969441,relative_legacy,estr.ai,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,216863,11.48093393087857,baseline,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,216863,17.684566785638115,spot_peer,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,216863,14.63197257949973,peer,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,216863,0.1773067463445465,relative_legacy,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,216863,13.750352374993504,spot_baseline,tombot61,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,218666,51.80314926021694,spot_baseline,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,218666,44.836525920033736,spot_peer,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,218666,0.5553578240736068,relative_legacy,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,218666,50.59688961113322,baseline,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,218666,43.11177725498206,peer,GreeneiBot2,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,218945,11.55181247768861,peer,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,218945,6.872536997791353,baseline,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,218945,0.1182482529105353,relative_legacy,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,218945,12.895741646752091,spot_peer,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,218945,7.0389327891398015,spot_baseline,SeidrBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,219459,-58.49625007211565,spot_baseline,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,219459,-6.012446117874228,peer,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,219459,-33.86583049947109,spot_peer,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,219459,-10.604751142073992,baseline,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,219459,-0.0768148387846293,relative_legacy,karamazov,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,219886,49.612279993386295,spot_peer,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,219886,47.6741145596136,peer,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,219886,0.6194524269700203,relative_legacy,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,219886,56.949403490767786,baseline,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,219886,58.496250072115615,spot_baseline,SaraBase,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,220077,-30.144627625827585,peer,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,220077,-28.84331359967661,spot_peer,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,220077,-51.06267128246561,baseline,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,220077,-0.4604712382242582,relative_legacy,mmBot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,221727,34.881310795081696,spot_peer,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,221727,0.4195215105598045,relative_legacy,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,221727,33.35438062774571,peer,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,221727,37.03864654513004,baseline,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,222631,2.2031295066161505,peer,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,222631,34.881310795081696,spot_peer,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,222631,0.0325532165837624,relative_legacy,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30124,"Will the domestic opening weekend box office revenue of Kraven the Hunter, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 13:59:15.414496+00,222631,2.387202535682753,baseline,Grizeu_Bot,True,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30325 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,182315,70.44889393875258,baseline,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,182315,43.69946602124669,peer,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,182315,0.0675057913812914,relative_legacy,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,182315,79.90873060740036,spot_baseline,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,182315,42.96566902474138,spot_peer,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,185690,41.72769361059552,spot_peer,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,185690,0.0033223714804353,relative_legacy,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,185690,78.17373878783341,spot_baseline,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,185690,4.088905377577639,peer,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,185690,7.827717664951187,baseline,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,185699,24.17601866697958,peer,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,185699,42.79934614395015,baseline,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,185699,17.60092057842758,spot_peer,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,185699,44.36066514756148,spot_baseline,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,185699,-0.2616460630982841,relative_legacy,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,187708,59.07217700098411,spot_baseline,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,187708,28.0980824520774,spot_peer,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,187708,-0.0854246998639937,relative_legacy,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,187708,18.76285889661255,peer,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,187708,35.942199717725835,baseline,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,188107,29.666955739507507,peer,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,188107,51.01513929635722,baseline,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,188107,86.1293729168408,spot_baseline,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,188107,0.0771039660674296,relative_legacy,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,188107,47.40430795803899,spot_peer,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,188389,3.5623909730721217,spot_baseline,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,188389,-11.510029570147797,spot_peer,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,188389,-0.6664381382251825,relative_legacy,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,188389,-3.690095096458216,peer,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,188389,3.512981274509502,baseline,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,188909,-5.136436371283566,peer,silicoqr,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,188909,-5.931384179641976,baseline,silicoqr,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,188909,-94.34164716336323,spot_baseline,silicoqr,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,188909,-81.36787604043084,spot_peer,silicoqr,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,188909,-0.10574406074241,relative_legacy,silicoqr,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,189585,0.1347068923127957,relative_legacy,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,189585,46.45553463841447,spot_peer,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,189585,83.75882020416115,baseline,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,189585,54.45728836337232,peer,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,189588,48.33518935565208,peer,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,189588,75.43850660669885,baseline,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,189588,40.5715802725374,spot_peer,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,189588,0.052841004430742,relative_legacy,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,189869,-3.3824905078163425,relative_legacy,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,189869,-332.1928094887362,spot_baseline,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,189869,-251.08273455677892,spot_peer,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,189869,-206.50967968617044,peer,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,189869,-277.72813945819536,baseline,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,190710,76.83700176533634,baseline,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,190710,44.1421524183496,spot_peer,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,190710,48.476426435244505,peer,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,190710,0.0932194465312967,relative_legacy,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,190710,81.55754288625727,spot_baseline,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,190772,33.03593574072762,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,190772,65.99245584023782,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,190772,-0.0527698281377038,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,190772,30.199888553904103,peer,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,190772,51.81535614538055,baseline,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191026,6.700418450584905,peer,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191026,13.086012284180136,baseline,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191026,20.02879151959865,spot_peer,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191026,47.76326601811466,spot_baseline,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191026,-0.0012295472729159,relative_legacy,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191046,40.5715802725374,spot_peer,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191046,0.0143978357366809,relative_legacy,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191046,17.398319936340112,peer,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191046,32.00037221781213,baseline,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191284,35.15567331485809,peer,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191284,59.26404010992652,baseline,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191284,0.0810765417362822,relative_legacy,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191284,84.79969065549501,spot_baseline,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191284,46.45553463841447,spot_peer,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191471,3.84491148539925e-05,relative_legacy,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191471,38.120484083478125,spot_peer,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191471,73.11832415721999,spot_baseline,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191471,49.82403780293466,baseline,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191471,28.41525576489812,peer,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191935,57.08226496893113,baseline,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191935,33.99072168708626,peer,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191935,83.18772411916731,spot_baseline,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191935,-0.0651583406952237,relative_legacy,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191935,45.30534192978392,spot_peer,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191975,71.36958148433588,spot_baseline,jkraybill_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191975,-0.0060144130559045,relative_legacy,jkraybill_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191975,36.8726969698544,spot_peer,jkraybill_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191975,12.955076720591142,peer,jkraybill_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,191975,24.70290492751264,baseline,jkraybill_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192049,36.23430179829381,baseline,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192049,19.31889648395749,peer,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192049,37.85116232537298,spot_baseline,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192049,-0.3215394952353074,relative_legacy,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192049,12.956169887790995,spot_peer,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192418,0.0489514430643132,relative_legacy,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192418,40.5715802725374,spot_peer,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192418,74.55877191179393,baseline,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192418,47.31138840923781,peer,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192472,53.31113025312014,peer,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192472,80.99827819636103,baseline,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192472,44.1421524183496,spot_peer,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192472,0.107258178490588,relative_legacy,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192472,81.55754288625727,spot_baseline,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192924,-0.370418718801174,relative_legacy,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192924,7.592590874701817,spot_peer,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192924,30.334239448733086,spot_baseline,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192924,26.930763918141967,baseline,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,192924,12.392308704569574,peer,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,193275,61.68137744455069,baseline,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,193275,72.07162425211314,spot_baseline,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,193275,37.37362825747516,spot_peer,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,193275,37.45927324883633,peer,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,193275,-0.003098868994643,relative_legacy,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,195286,-132.19280948873623,spot_baseline,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,195286,-1.8783765966724424,relative_legacy,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,195286,-108.37596208855494,spot_peer,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,195286,-121.86979963931908,baseline,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,195286,-94.69284520815582,peer,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,204737,14.350189958387883,peer,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,204737,27.74569621056626,baseline,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,204737,-0.0282314404294177,relative_legacy,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,204737,66.35723354175227,spot_baseline,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,204737,33.29621698298513,spot_peer,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,208405,-332.1928094887362,spot_baseline,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,208405,-251.08273455677892,spot_peer,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,208405,-3.963307917210344,relative_legacy,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,208405,-242.1906509118025,peer,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,208405,-326.3296628366397,baseline,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,215725,32.959771667155515,peer,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,215725,55.30488382564772,baseline,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,215725,-0.1240456320822623,relative_legacy,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,215725,58.496250072115615,spot_baseline,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,215725,27.687139086095595,spot_peer,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,216863,76.55347463629771,spot_baseline,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,216863,0.0347990572211079,relative_legacy,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,216863,40.5715802725374,spot_peer,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,216863,63.97937929927501,baseline,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,216863,39.232225325624974,peer,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,218666,51.51905324866132,peer,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,218666,80.14181439565031,baseline,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,218666,0.102252601785668,relative_legacy,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,218666,44.37584417925805,spot_peer,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,218666,81.88505608954335,spot_baseline,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,218945,84.79969065549501,spot_baseline,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,218945,46.45553463841447,spot_peer,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,218945,0.1294976850578842,relative_legacy,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,218945,82.82946249063131,baseline,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,218945,53.37885971369984,peer,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,219459,5.69908096189221,peer,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,219459,11.742778763698428,baseline,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,219459,64.76982560691188,spot_baseline,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,219459,32.163547668127535,spot_peer,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,219459,-0.0168226283690926,relative_legacy,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,219886,0.0926657927542592,relative_legacy,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,219886,81.39350704813171,spot_baseline,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,219886,44.02510729320952,spot_peer,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,219886,48.886427299755006,peer,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,219886,77.34116821796313,baseline,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,220077,-230.8953878983424,baseline,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,220077,-173.4427615799848,peer,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,220077,-3.008730536534598,relative_legacy,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,220077,-179.72934832266694,spot_peer,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,220077,-232.19280948873623,spot_baseline,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,221727,-137.99029307623826,spot_peer,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,221727,-2.398158077427208,relative_legacy,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,221727,-173.6965594166206,spot_baseline,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,221727,-129.178309084909,peer,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,221727,-169.91050482458346,baseline,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,222631,4.840837446912348,baseline,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,222631,2.543709379410936,peer,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,222631,0.0016999634291477,relative_legacy,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30125,"Will iHeartMedia continuously operate through January 1, 2025, without filing for bankruptcy?",2024-11-20 13:59:15.776319+00,222631,40.5715802725374,spot_peer,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30326 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,182315,81.6896965953941,baseline,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,182315,0.4838987269867041,relative_legacy,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,182315,79.7143878330548,spot_peer,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,182315,92.5999418556223,spot_baseline,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,182315,66.21149830837818,peer,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,185690,76.12796432202667,spot_peer,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,185690,8.028124896847341,peer,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,185690,87.5780063068488,spot_baseline,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,185690,8.887335033795647,baseline,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,185690,0.0699020397602877,relative_legacy,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,185699,53.97620254373173,spot_peer,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,185699,0.1425565011598058,relative_legacy,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,185699,56.55971758542251,spot_baseline,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,185699,55.14440118445738,baseline,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,185699,44.47291393928232,peer,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,187708,0.4044288788865668,relative_legacy,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,187708,49.02651702506425,peer,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,187708,90.45804349213174,spot_baseline,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,187708,78.18474760281902,spot_peer,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,187708,56.212025880322656,baseline,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,188107,-117.3006757992064,peer,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,188107,-196.62058277229147,spot_peer,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,188107,-1.9012819667517848,relative_legacy,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,188107,-175.47879290235505,baseline,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,188107,-294.3416471633633,spot_baseline,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,188389,67.61498978777345,baseline,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,188389,0.2554168696391679,relative_legacy,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,188389,68.34718928552276,spot_baseline,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,188389,52.636336300364,peer,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,188389,62.39424479661227,spot_peer,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,188909,1.4046328811394608,peer,silicoqr,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,188909,0.5602155736135592,baseline,silicoqr,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,188909,8.406426478847456,spot_baseline,silicoqr,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,188909,-0.0123738704647186,relative_legacy,silicoqr,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,188909,19.58745070079345,spot_peer,silicoqr,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,189585,83.76247276029618,baseline,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,189585,64.4106984502519,peer,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,189585,74.14382564157187,spot_peer,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,189585,0.4180534650707107,relative_legacy,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,189588,0.336764370460331,relative_legacy,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,189588,68.25477694291048,spot_peer,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,189588,58.52016255291934,peer,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,189588,75.44059326900947,baseline,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,189869,-223.65205244469965,spot_peer,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,189869,-332.1928094887362,spot_baseline,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,189869,-277.73224256635365,baseline,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,189869,-3.071922876118752,relative_legacy,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,189869,-191.2720433544013,peer,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,190710,-46.15488782894958,spot_peer,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,190710,-78.91599119600309,baseline,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,190710,-1.171820130410619,relative_legacy,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,190710,-50.896763835625386,peer,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,190710,-83.65012677171204,spot_baseline,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,190772,-309.67922465283107,peer,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,190772,-4.6884189258861735,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,190772,-564.3856189774725,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,190772,-389.4729282712433,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,190772,-443.6201604490723,baseline,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191026,-0.073928705330092,relative_legacy,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191026,-4.621246067155906,peer,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191026,-11.155697893373851,baseline,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191026,45.288826796682216,spot_peer,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191026,44.39510820353887,spot_baseline,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191046,38.776894849564016,baseline,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191046,79.7143878330548,spot_peer,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191046,34.82916476110339,peer,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191046,92.5999418556223,spot_baseline,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191046,0.3199781047648922,relative_legacy,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191284,-73.69655941662063,spot_baseline,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191284,-51.50385304612836,baseline,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191284,-39.04653137271825,spot_peer,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191284,-27.99153997542561,peer,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191284,-0.7005322962267043,relative_legacy,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191471,30.65316765312096,peer,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191471,30.266678563094228,baseline,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191471,44.36066514756148,spot_baseline,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191471,45.26422923174948,spot_peer,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191471,0.1179726474133093,relative_legacy,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191935,-0.3068950367775486,relative_legacy,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191935,2.517171569834165,baseline,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191935,9.232579390364952,peer,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191935,2.856915219677092,spot_baseline,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,191935,15.624258130656896,spot_peer,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192049,-541.0190798847304,baseline,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192049,-389.4729282712433,spot_peer,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192049,-384.8418257971607,peer,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192049,-564.3856189774725,spot_baseline,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192049,-5.805260900084447,relative_legacy,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192418,69.8458421972048,peer,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192418,90.20035364825029,baseline,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192418,79.7143878330548,spot_peer,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192418,0.4937994634682769,relative_legacy,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192472,0.3364067945103023,relative_legacy,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192472,68.25477694291048,spot_peer,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192472,76.08810924219624,baseline,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192472,58.48925490906524,peer,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192924,4.823618565284762,spot_baseline,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192924,4.287638117195902,baseline,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192924,10.3331102085783,peer,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192924,-0.2952551151169792,relative_legacy,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,192924,17.02878255145071,spot_peer,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,193275,80.52297557600987,baseline,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,193275,0.4797818321625031,relative_legacy,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,193275,65.58895724103114,peer,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,193275,92.2958964236172,spot_baseline,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,193275,79.49725328897844,spot_peer,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,195286,78.2469342645941,baseline,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,195286,0.4156395182719053,relative_legacy,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,195286,62.861100102451765,peer,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,195286,74.14382564157187,spot_peer,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,204737,-383.65012677171205,spot_baseline,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,204737,-105.06536189415344,peer,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,204737,-1.6256666213646824,relative_legacy,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,204737,-156.29218681873354,baseline,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,204737,-260.4003800020236,spot_peer,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,208405,0.4943984744692352,relative_legacy,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,208405,91.05092615735336,baseline,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,208405,79.7143878330548,spot_peer,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,208405,69.91749937387605,peer,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,215725,73.53288659301498,peer,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,215725,93.90399222131396,baseline,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,215725,98.5500430304885,spot_baseline,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,215725,83.9636623486841,spot_peer,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,215725,0.5483657896738744,relative_legacy,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,216863,92.5999418556223,spot_baseline,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,216863,77.36751440207665,baseline,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,216863,79.7143878330548,spot_peer,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,216863,64.21588565230918,peer,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,216863,0.4794991961920722,relative_legacy,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,218666,68.16825819311114,peer,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,218666,90.1494455047575,spot_baseline,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,218666,77.96436184385695,spot_peer,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,218666,0.4702983842462317,relative_legacy,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,218666,88.44117775655101,baseline,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,218945,68.25477694291048,spot_peer,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,218945,58.54459588914787,peer,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,218945,0.3373105633002247,relative_legacy,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,218945,74.8053115740854,baseline,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,219459,-26.689643187400662,peer,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,219459,-42.0992243147285,baseline,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,219459,-232.19280948873623,spot_baseline,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,219459,-0.3834505787997259,relative_legacy,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,219459,-152.23688838700832,spot_peer,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,219886,76.7824267877021,spot_baseline,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,219886,58.69048240994708,peer,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,219886,0.3391611518638259,relative_legacy,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,219886,68.41828349744954,spot_peer,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,219886,75.34103778887315,baseline,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,220077,84.79969065549501,spot_baseline,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,220077,0.4183676706539874,relative_legacy,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,220077,74.14382564157187,spot_peer,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,220077,64.45024325645136,peer,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,220077,84.46580533448984,baseline,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,221727,90.6152573944904,baseline,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,221727,79.7143878330548,spot_peer,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,221727,69.88349037396318,peer,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,221727,92.5999418556223,spot_baseline,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,221727,0.4941452688362496,relative_legacy,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,222631,4.853772903701522,baseline,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,222631,68.25477694291048,spot_peer,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,222631,4.41092200437231,peer,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30126,"Will any of the Waltons be worth $100 billion or more on December 31, 2024, according to Forbes?",2024-11-20 13:59:15.846997+00,222631,0.0308338738454318,relative_legacy,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30327 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,182315,3.4870879327830524,spot_peer,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,182315,4.650772973160299,peer,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,182315,65.99245584023782,spot_baseline,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,182315,-0.1349979108264525,relative_legacy,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,182315,58.2553121037913,baseline,RyansAGI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,185690,61.84266166459309,spot_baseline,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,185690,6.362982046191133,baseline,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,185690,0.5260692667145657,spot_peer,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,185690,-0.0151359330766682,relative_legacy,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,185690,0.0494033400319276,peer,annabot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,185699,-0.3431143076898032,relative_legacy,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,185699,46.46682670034443,spot_baseline,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,185699,-10.445109642045423,spot_peer,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,185699,-8.358281524408572,peer,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,185699,45.83466186068331,baseline,MWG,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,187708,30.25204425788849,baseline,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,187708,-5.294936493962718,peer,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,187708,-9.553838477313032,spot_peer,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,187708,47.71592111866412,spot_baseline,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,187708,-0.2160415100953183,relative_legacy,twsummerbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,188107,22.472430196527675,spot_peer,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,188107,0.0633546181012692,relative_legacy,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,188107,14.274323436512908,peer,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,188107,92.5999418556223,spot_baseline,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,188107,55.72519713457048,baseline,Cassie,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,188389,0.1718553712607311,relative_legacy,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,188389,98.5500430304885,spot_baseline,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,188389,97.76412666636212,baseline,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,188389,26.71802886915037,spot_peer,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,188389,29.31412133965719,peer,Panshul42,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,188909,5.232762534614763,baseline,silicoqr,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,188909,0.5957346640496983,peer,silicoqr,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,188909,73.11832415721999,spot_baseline,silicoqr,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,188909,-0.0024583887739318,relative_legacy,silicoqr,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,188909,8.571636275533542,spot_peer,silicoqr,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,189585,11.022732464592812,spot_peer,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,189585,-0.0463410109982039,relative_legacy,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,189585,13.169021219447908,peer,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,189585,75.61898006270127,baseline,mf-bot-1,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,189588,81.17676311774804,baseline,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,189588,15.176542297901218,spot_peer,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,189588,0.0110183223237649,relative_legacy,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,189588,17.199296944091532,peer,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,189588,82.37493603082727,spot_baseline,mf-bot-3,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,189869,16.906686830469884,spot_peer,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,189869,15.623649888803405,peer,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,189869,0.0271461757498236,relative_legacy,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,189869,70.8987609771715,baseline,VeritasAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,190710,15.756494121839353,spot_peer,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,190710,78.5782091400114,baseline,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,190710,16.90415417618275,peer,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,190710,0.0178739926099021,relative_legacy,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,190710,83.18772411916731,spot_baseline,Bot_Pepa,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,190772,-17.121149096517453,baseline,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,190772,-59.12664967624952,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,190772,-21.75914350726268,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,190772,-0.8148707638588568,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,190772,-45.53261976894014,peer,Jay_Bailey_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191026,-10.580484769995666,spot_peer,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191026,-0.0401629397885821,relative_legacy,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191026,-0.5160982095713817,peer,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191026,10.132464780533445,baseline,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191026,46.27710181818385,spot_baseline,manticAI,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191046,4.896711920136454,peer,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191046,11.022732464592812,spot_peer,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191046,32.02567373043682,baseline,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191046,-0.0209769158914166,relative_legacy,archipelago,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191284,12.828385263745854,peer,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191284,0.0194337068043116,relative_legacy,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191284,84.79969065549501,spot_baseline,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191284,16.906686830469884,spot_peer,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191284,59.26293678361295,baseline,000_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191471,14.822545198995734,peer,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191471,89.53026213333067,spot_baseline,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191471,61.13437301836176,baseline,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191471,0.051477403522793,relative_legacy,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191471,20.28210976813071,spot_peer,HSeldon,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191935,0.0315277840452064,relative_legacy,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191935,86.39384504239716,spot_baseline,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191935,16.612400092537005,peer,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191935,18.044169967324216,spot_peer,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191935,74.87856737733489,baseline,pgodzinai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191975,16.229157373543305,baseline,jkraybill_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191975,-25.52094072559964,spot_peer,jkraybill_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191975,-0.361671581987361,relative_legacy,jkraybill_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191975,-15.615452752082785,peer,jkraybill_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,191975,25.338423580007447,spot_baseline,jkraybill_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192049,65.08167594142394,baseline,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192049,6.529306743409317,peer,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192049,-0.1293021857833869,relative_legacy,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192049,4.781962571724528,spot_peer,gnosis-ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192418,12.80322082813349,peer,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192418,11.022732464592812,spot_peer,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192418,-0.0459587530914123,relative_legacy,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192418,74.58174406352565,baseline,InstitutPelFutur,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192472,76.15496300352874,baseline,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192472,13.984322039987177,peer,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192472,-0.0442362653676026,relative_legacy,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192472,11.022732464592812,spot_peer,bestworldbot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192924,64.70842126289537,spot_baseline,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192924,-0.1475013999143233,relative_legacy,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192924,2.5708857814323216,spot_peer,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192924,3.899839076152727,peer,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,192924,57.59363001554452,baseline,acm_bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,193275,23.012805067160112,spot_peer,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,193275,21.91143103762355,peer,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,193275,0.1054061918321902,relative_legacy,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,193275,82.14157715479949,baseline,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,193275,93.35726382610238,spot_baseline,histerio,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,195286,-1.9717298497407725,relative_legacy,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,195286,-137.92480989649948,spot_peer,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,195286,-122.10428452408252,baseline,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,195286,-132.19280948873623,spot_baseline,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,195286,-126.7259186762822,peer,Unwrapped80T,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,204737,0.0477419715463585,relative_legacy,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,204737,22.6889206579608,spot_peer,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,204737,39.23263344995408,baseline,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,204737,9.8899612686559,peer,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,204737,92.90334786458564,spot_baseline,SynapseSeer,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,208405,22.472430196527675,spot_peer,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,208405,24.388545915396776,peer,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,208405,0.1114294746994997,relative_legacy,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,208405,91.06128824555567,baseline,mf-bot-4,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,215725,23.527450179305863,peer,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,215725,22.472430196527675,spot_peer,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,215725,92.5999418556223,spot_baseline,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,215725,0.1078303228049433,relative_legacy,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,215725,88.28804709272572,baseline,estr.ai,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,216863,76.55347463629771,spot_baseline,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,216863,10.661868649068122,peer,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,216863,11.022732464592812,spot_peer,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,216863,-0.0417787109622226,relative_legacy,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,216863,63.9685739844572,baseline,tombot61,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,218666,-0.016568377714841,relative_legacy,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,218666,13.179902409179824,spot_peer,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,218666,78.36702721929824,baseline,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,218666,79.57669477823923,spot_baseline,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,218666,15.181843301812648,peer,GreeneiBot2,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,218945,80.73549220576041,spot_baseline,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,218945,-0.005215708374413,relative_legacy,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,218945,14.006743613309965,spot_peer,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,218945,78.93382073421472,baseline,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,218945,15.813676146028058,peer,SeidrBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,219459,0.0192134106104288,relative_legacy,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,219459,90.04643264490855,spot_baseline,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,219459,3.779948722402981,peer,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,219459,16.32740673376579,baseline,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,219459,20.65041490688346,spot_peer,karamazov,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,219886,85.74751380368853,baseline,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,219886,95.72311526367956,spot_baseline,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,219886,24.700920181139868,spot_peer,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,219886,23.946404539794436,peer,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,219886,0.1293103833836296,relative_legacy,SaraBase,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,220077,-2.533709431082747,relative_legacy,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,220077,-166.84469010283308,peer,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,220077,-167.53914088418284,spot_peer,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,220077,-173.6965594166206,spot_baseline,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,220077,-173.32190772283076,baseline,mmBot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,221727,20.947848423500314,peer,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,221727,0.0655635712686605,relative_legacy,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,221727,87.97057662822883,spot_baseline,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,221727,19.169221345637933,spot_peer,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,221727,86.08971503589284,baseline,mf-bot-5,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,222631,4.866885571875108,baseline,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,222631,0.0,relative_legacy,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,222631,11.022732464592812,spot_peer,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30127,"Will WeWork continuously operate through January 1, 2025, without announcing Adam Neumann's return as CEO?",2024-11-20 13:59:15.895381+00,222631,0.6818101994564048,peer,Grizeu_Bot,True,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,2024-11-21 15:30:00+00,30328 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,182315,-109.64560133702004,baseline,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,182315,-0.87173722343124,relative_legacy,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,182315,-52.903436832808886,peer,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,182315,-66.21977465907764,spot_peer,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,182315,-125.15387669959644,spot_baseline,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,185690,-25.748797979948176,spot_peer,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,185690,-68.77995373623223,spot_baseline,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,185690,-6.298422036844338,baseline,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,185690,-2.2596683554631936,peer,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,185690,-0.0772457094033719,relative_legacy,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,187708,0.1895509225390371,relative_legacy,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,187708,27.44433087220948,peer,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,187708,18.783242265241924,baseline,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,187708,36.28906426658603,spot_baseline,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,187708,49.68050609836656,spot_peer,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,188107,46.73979481074042,spot_peer,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,188107,32.19280948873624,spot_baseline,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,188107,26.11834137565111,peer,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,188107,16.78082245525291,baseline,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,188107,0.1707047665809135,relative_legacy,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,188389,2.4532583132534844,baseline,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,188389,5.033912912729931,peer,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,188389,0.0027008793384455,relative_legacy,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,188389,36.92636709706716,spot_peer,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,188389,18.52322542301609,spot_baseline,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,189585,66.91367633448822,baseline,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,189585,80.55193847667313,peer,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,189585,72.30744573936275,spot_peer,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,189585,0.9618646246602092,relative_legacy,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,189588,-13.312835054742884,spot_peer,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,189588,-50.69534168648271,baseline,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,189588,-5.669550952116202,peer,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,189588,-0.2143790398544675,relative_legacy,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,190710,46.46682670034443,spot_baseline,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,190710,56.98714655285542,spot_peer,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,190710,37.83889611224385,baseline,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,190710,56.461985942753984,peer,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,190710,0.6394615088980533,relative_legacy,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,190772,-0.5180113145459548,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,190772,-26.406085736168965,peer,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,190772,-67.50632110923583,baseline,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,190772,-88.8968687611256,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,190772,-40.19078030141236,spot_peer,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191026,39.13761017016072,spot_peer,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191026,21.603369686500905,spot_baseline,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191026,0.522934731187694,relative_legacy,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191026,34.041038076141895,baseline,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191026,48.61353312331643,peer,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191046,0.0404493217997645,relative_legacy,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191046,9.234268809911253,baseline,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191046,15.627545288275693,peer,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191046,26.303440583379377,spot_baseline,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191046,42.51180252114256,spot_peer,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191284,-32.19280948873623,spot_baseline,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191284,0.51720203851126,spot_peer,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191284,-30.87103350104765,baseline,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191284,7.628858037050274,peer,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191284,-0.0331468998965126,relative_legacy,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191471,3.690654917222205,peer,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191471,-21.81035509522985,baseline,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191471,-0.1235919014002723,relative_legacy,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191471,0.51720203851126,spot_peer,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191471,-32.19280948873623,spot_baseline,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191935,67.80719051126377,spot_baseline,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191935,72.30744573936275,spot_peer,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191935,61.33432599902322,baseline,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191935,72.26148552598336,peer,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,191935,0.8530697206889488,relative_legacy,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192049,-0.429274698771079,relative_legacy,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192049,-69.76936647755352,baseline,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192049,-21.22870808581613,peer,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192049,-73.69655941662059,spot_baseline,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192049,-29.27844117970891,spot_peer,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192418,-48.16174527622566,spot_peer,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192418,-33.83780609538041,peer,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192418,-0.6163933903148573,relative_legacy,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192418,-79.33903865405807,baseline,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192472,-94.04305730179878,peer,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192472,-171.82323806491897,baseline,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192472,-1.421456713166671,relative_legacy,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192472,-173.6965594166206,spot_baseline,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192472,-101.0686848805604,spot_peer,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192924,-58.6405917590825,spot_baseline,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192924,-10.648883006609584,peer,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192924,-51.67308966585124,baseline,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192924,-18.46972530684093,spot_peer,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,192924,-0.289023422107439,relative_legacy,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,193275,-0.4444829845929832,relative_legacy,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,193275,-18.53910856840308,peer,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,193275,-43.19214338350013,baseline,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,193275,-41.73665121671095,spot_peer,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,193275,-91.0501849160898,spot_baseline,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,195286,-48.16174527622566,spot_peer,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,195286,-100.0,spot_baseline,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,195286,-75.55790529620869,baseline,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,195286,-0.6013268057651678,relative_legacy,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,195286,-32.36482856122138,peer,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,204737,23.83113218677637,baseline,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,204737,27.71960697492705,peer,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,204737,0.2045518238757847,relative_legacy,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,204737,65.62309890725716,spot_peer,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,208405,-73.69655941662059,spot_baseline,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,208405,-29.27844117970891,spot_peer,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,208405,-21.62668844773081,peer,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,208405,-0.4327447536502749,relative_legacy,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,208405,-72.31189776851325,baseline,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,215725,0.2256125964393997,relative_legacy,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,215725,9.95365549850672,baseline,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,215725,28.29450372182341,peer,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,215725,33.499909904359484,spot_peer,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,215725,13.750352374993504,spot_baseline,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,218666,-68.03820657998384,spot_baseline,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,218666,-0.3757064323765992,relative_legacy,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,218666,-17.362550041172373,peer,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,218666,-64.7617167934641,baseline,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,218666,-25.216295888833336,spot_peer,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,218945,-0.6875219707919443,relative_legacy,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,218945,-40.21903419048468,peer,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,218945,-97.46946490280054,baseline,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,218945,-48.16174527622566,spot_peer,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,218945,-100.0,spot_baseline,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,219886,-67.56004189835026,spot_peer,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,219886,-127.0207978440036,spot_baseline,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,219886,-59.54086187153269,peer,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,219886,-0.9523057629645072,relative_legacy,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,219886,-124.0441022884686,baseline,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,220077,-50.54993950976741,baseline,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,220077,-5.675219156540016,peer,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,220077,-0.2143790398544675,relative_legacy,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,220077,-13.312835054742884,spot_peer,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,221727,13.750352374993504,spot_baseline,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,221727,33.499909904359484,spot_peer,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,221727,13.426469106115915,baseline,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,221727,0.4229053798733332,relative_legacy,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,221727,40.815516042588015,peer,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,222631,65.62309890725716,spot_peer,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,222631,0.0048517919430807,relative_legacy,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,222631,2.0632739920429017,peer,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,222631,1.2989353113522768,baseline,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30154,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-21 14:47:24.980341+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30356 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,182315,-1.7624515579117923,spot_peer,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,182315,-15.200309344505014,spot_baseline,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,182315,2.3539841330876405,peer,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,182315,-0.0612024463795666,relative_legacy,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,182315,-13.32939238157154,baseline,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,185690,0.5238231873595102,peer,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,185690,-5.964528846670677,spot_baseline,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,185690,-0.5551313436610316,baseline,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,185690,-0.0019027431082623,relative_legacy,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,185690,4.867937769159192,spot_peer,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,187708,7.929314231119275,baseline,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,187708,0.1334307166169458,relative_legacy,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,187708,12.629780816572636,peer,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,187708,19.77181992603333,spot_peer,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,187708,14.795788138710142,spot_baseline,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,188107,-19.90966042649342,peer,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,188107,-0.3172325996570651,relative_legacy,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,188107,-37.1370173962818,baseline,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,188107,-69.74372299795691,spot_baseline,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,188107,-40.91930114248842,spot_peer,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,188389,57.17948210212048,spot_peer,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,188389,7.8724141470127105,peer,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,188389,0.0939976657553008,relative_legacy,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,188389,9.03490954269529,baseline,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,188389,66.90267655096306,spot_baseline,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,189585,-1.7624515579117923,spot_peer,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,189585,-15.200309344505014,spot_baseline,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,189585,-0.0579373797471073,relative_legacy,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,189585,4.215469833716249,peer,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,189585,-15.003272947698616,baseline,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,189588,-50.699544053622816,baseline,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,189588,-27.791445915577068,spot_peer,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,189588,-0.416108456917081,relative_legacy,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,189588,-22.091884245638248,peer,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,190710,-0.3030341602775661,relative_legacy,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,190710,-38.70467943879639,baseline,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,190710,-14.76801040462651,peer,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,190710,-18.189401111920784,spot_peer,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,190710,-38.08217839409309,spot_baseline,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,190772,9.149887563791657,spot_peer,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,190772,0.0,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,190772,0.0543447373435274,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,190772,10.013353629341138,peer,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,190772,0.0,baseline,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191026,-4.341997036715821,spot_peer,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191026,-0.1337294702206366,relative_legacy,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191026,-3.384971336147928,peer,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191026,-18.793479315556983,spot_baseline,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191026,-19.47588336497546,baseline,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191046,-5.320612707257965,baseline,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191046,-1.7624515579117923,spot_peer,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191046,0.3718185312355789,peer,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191046,-0.0168787728256998,relative_legacy,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191046,-15.200309344505014,spot_baseline,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191284,-37.46469177339464,peer,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191284,-70.67033340455976,baseline,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191284,-43.75705204054309,spot_peer,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191284,-73.69655941662059,spot_baseline,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191284,-0.6179875123824292,relative_legacy,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191471,-0.2403668155537871,relative_legacy,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191471,-22.03599704597165,spot_peer,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191471,-43.440282414577496,spot_baseline,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191471,-29.450438985954023,baseline,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191471,-12.375584845272924,peer,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191935,14.81760659527227,baseline,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191935,23.43448728534095,peer,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191935,16.349873228287958,spot_baseline,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191935,0.2242374523412498,relative_legacy,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,191935,20.88750139915986,spot_peer,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192049,-0.0584282320013132,relative_legacy,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192049,3.2205905709311584,peer,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192049,-15.200309344505014,spot_baseline,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192049,-1.7624515579117923,spot_peer,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192049,-14.414042706258488,baseline,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192418,10.911888332209786,baseline,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192418,13.750352374993504,spot_baseline,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192418,19.02129904352532,spot_peer,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192418,18.434875912416658,peer,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192418,0.1685417661405853,relative_legacy,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192472,-171.97642367403,baseline,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192472,-1.622100575886017,relative_legacy,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192472,-115.54729574139458,spot_peer,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192472,-173.6965594166206,spot_baseline,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192472,-110.36849056044748,peer,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192924,0.2324569555245824,relative_legacy,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192924,23.747584536302178,peer,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192924,18.14206402801417,spot_baseline,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192924,22.174119541867547,spot_peer,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,192924,16.005305361250993,baseline,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,193275,-9.40251711844274,spot_peer,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,193275,-0.1088216042605212,relative_legacy,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,193275,-4.966561021693379,peer,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,193275,-16.295917856627444,baseline,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,193275,-25.842515258120457,spot_baseline,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,195286,0.0,spot_baseline,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,195286,0.0541375743057531,relative_legacy,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,195286,0.0,baseline,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,195286,9.149887563791657,spot_peer,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,195286,9.961605474225507,peer,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,204737,28.03319166030838,spot_peer,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,204737,0.1441340927016899,relative_legacy,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,204737,26.303440583379377,spot_baseline,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,204737,10.780673845481015,baseline,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,204737,12.761637035996085,peer,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,208405,19.02129904352532,spot_peer,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,208405,0.2244566069816273,relative_legacy,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,208405,24.549623608401365,peer,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,208405,13.750352374993504,spot_baseline,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,208405,13.465624465525044,baseline,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,215725,0.0,baseline,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,215725,9.510517860888854,peer,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,215725,0.0541375743057531,relative_legacy,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,215725,9.149887563791657,spot_peer,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,215725,0.0,spot_baseline,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,218666,0.5019007704745578,relative_legacy,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,218666,40.38547453165736,spot_peer,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,218666,43.50951516200971,spot_baseline,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,218666,44.08658356540915,peer,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,218666,41.51591195000535,baseline,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,218945,-15.033527389188382,peer,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,218945,-20.64575565442851,spot_peer,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,218945,-41.50374992788438,spot_baseline,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,218945,-40.471373125154464,baseline,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,218945,-0.3150444780987705,relative_legacy,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,219886,-4.085442795103831,peer,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,219886,-9.377742228103012,spot_peer,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,219886,-0.1590181455995749,relative_legacy,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,219886,-24.56134264473276,baseline,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,219886,-25.808005150531223,spot_baseline,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,220077,4.921895274193803,spot_peer,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,220077,0.0323260180301255,relative_legacy,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,220077,10.659382985788756,peer,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,220077,-5.889368905356857,spot_baseline,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,220077,-5.795731751972515,baseline,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,221727,13.4336087610383,baseline,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,221727,24.38252889999604,peer,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,221727,13.750352374993504,spot_baseline,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,221727,0.2237636077478258,relative_legacy,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,221727,19.02129904352532,spot_peer,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,222631,0.0187774612064766,relative_legacy,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,222631,36.32332924078181,spot_peer,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,222631,1.7187627839847175,peer,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30155,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-21 14:47:25.01691+00,222631,1.7865055862419157,baseline,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30357 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,182315,0.4945941828352145,relative_legacy,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,182315,39.07536375572331,peer,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,182315,45.07933873297215,spot_peer,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,182315,70.13720675152192,baseline,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,182315,79.90873060740036,spot_baseline,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,185690,2.7624123117073465,baseline,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,185690,0.9195602295195356,peer,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,185690,0.0046361911801946,relative_legacy,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,185690,8.732526751970179,spot_peer,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,185690,29.2192773901891,spot_baseline,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,187708,19.5896407869228,spot_peer,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,187708,10.99430531584854,peer,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,187708,44.36066514756148,spot_baseline,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,187708,24.43039663116696,baseline,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,187708,0.1337809895000526,relative_legacy,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,188107,-0.8038049971215361,spot_peer,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,188107,8.625950011617508,baseline,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,188107,-0.2645464371142267,peer,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,188107,-0.0219520152750003,relative_legacy,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,188107,15.919859484925396,spot_baseline,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,188389,0.0306784002521877,relative_legacy,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,188389,2.791292334147866,peer,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,188389,19.43739899953079,spot_peer,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,188389,44.14834795826448,spot_baseline,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,188389,6.039338523364191,baseline,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,189585,0.2178607229219632,relative_legacy,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,189585,47.90572135368515,baseline,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,189585,21.506980156025683,peer,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,189585,22.588351497948896,spot_peer,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,189588,-50.69080786910501,baseline,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,189588,-49.11652924963165,spot_peer,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,189588,-50.437632993182575,peer,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,189588,-0.7672384658519441,relative_legacy,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,190710,0.1496172007583927,relative_legacy,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,190710,13.462593015844762,peer,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,190710,40.05379295837288,spot_baseline,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,190710,34.1055000736624,baseline,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,190710,16.50140321971441,spot_peer,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,190772,-18.442457113742744,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,190772,-25.4432631363026,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,190772,-14.034190912048873,baseline,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,190772,-0.2921102999938919,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,190772,-19.55373511884068,peer,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191026,0.0452843822555057,relative_legacy,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191026,21.484485000094487,baseline,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191026,5.241815171551236,peer,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191026,6.892400291036392,spot_peer,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191026,26.65302744771796,spot_baseline,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191046,-16.792616218447584,peer,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191046,-0.2440975217147196,relative_legacy,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191046,-18.036044735818496,baseline,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191046,-49.11652924963165,spot_peer,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191046,-51.45731728297583,spot_baseline,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191284,28.045830657278312,peer,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191284,0.3130376736611038,relative_legacy,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191284,56.09391740328938,baseline,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191284,29.72554510004733,spot_peer,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191284,58.496250072115615,spot_baseline,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191471,9.329037491987506,baseline,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191471,-2.359447483108484,spot_peer,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191471,13.750352374993504,spot_baseline,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191471,-1.5151150377789044,peer,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191471,-0.0347967537664998,relative_legacy,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191935,66.38322663839769,baseline,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191935,0.4399663325310816,relative_legacy,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191935,73.11832415721999,spot_baseline,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191935,40.2102858855943,spot_peer,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191935,35.95217055791092,peer,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191975,5.395833089401519,baseline,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191975,-7.50079250575735,spot_peer,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191975,-6.68606190007571,peer,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191975,6.580205839574638,spot_baseline,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,191975,-0.1221969594878546,relative_legacy,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192049,80.59656565476521,baseline,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192049,45.890352418216416,peer,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192049,48.58639580287021,spot_peer,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192049,0.5614462806663225,relative_legacy,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192418,46.42999968424946,baseline,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192418,29.72554510004733,spot_peer,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192418,23.45953536127388,peer,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192418,0.2989137525887351,relative_legacy,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192472,0.2178700396873096,relative_legacy,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192472,22.588351497948896,spot_peer,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192472,48.54268271702416,spot_baseline,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192472,48.103272340625615,baseline,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192472,21.508271733952043,peer,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192924,41.5758666522498,spot_baseline,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192924,14.785053771423875,peer,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192924,0.1577476707092311,relative_legacy,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192924,36.72615085443799,baseline,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,192924,17.592804346799156,spot_peer,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,193275,28.150516914874505,baseline,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,193275,25.21482398120608,spot_peer,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,193275,0.1731058439688936,relative_legacy,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,193275,13.77955940552369,peer,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,193275,52.20557491609642,spot_baseline,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,195286,-49.11652924963165,spot_peer,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,195286,-39.03020675380475,baseline,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,195286,-37.55412829845844,peer,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,195286,-0.541079073459071,relative_legacy,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,195286,-51.45731728297583,spot_baseline,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,204737,-51.45731728297583,spot_baseline,SynapseSeer,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,204737,-49.11652924963165,spot_peer,SynapseSeer,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,204737,-0.2855651445611704,relative_legacy,SynapseSeer,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,204737,-21.203011249020868,baseline,SynapseSeer,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,204737,-19.84608841721867,peer,SynapseSeer,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,208405,41.4515790131793,peer,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,208405,0.492585839697626,relative_legacy,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,208405,42.6734564401169,spot_peer,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,208405,75.08898509645101,baseline,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,215725,-0.5132749459084078,relative_legacy,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,215725,-35.75194526608875,peer,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,215725,-49.11652924963165,spot_peer,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,215725,-37.285955036597976,baseline,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,218666,0.0457184129806325,relative_legacy,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,218666,30.567874324228757,spot_baseline,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,218666,9.699536575288844,spot_peer,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,218666,29.22835776595365,baseline,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,218666,8.510179984922718,peer,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,218945,12.158257403324582,peer,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,218945,35.61438102252753,spot_baseline,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,218945,13.318128185222651,spot_peer,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,218945,34.74396927702557,baseline,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,218945,0.0919162246127712,relative_legacy,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,219886,-199.79279022880507,peer,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,219886,-257.0050625332189,baseline,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,219886,-267.04285917704146,spot_baseline,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,219886,-2.8191913060222324,relative_legacy,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,219886,-203.70188497379675,spot_peer,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,220077,47.86362171121343,baseline,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,220077,21.507625944988863,peer,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,220077,22.588351497948896,spot_peer,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,220077,0.2178655105241345,relative_legacy,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,220077,48.54268271702416,spot_baseline,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,221727,57.17841016404825,baseline,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,221727,29.72554510004733,spot_peer,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,221727,28.457695881089627,peer,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,221727,0.3151157642323696,relative_legacy,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,222631,-1.1066484639113998,baseline,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,222631,-1.3033621957343846,peer,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,222631,-0.0202786422312081,relative_legacy,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30156,"Will lithium carbonate (CNY/T) prices continuously remain above 70,000 before December 21, 2024?",2024-11-21 14:47:25.050671+00,222631,14.922009551012158,spot_peer,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30358 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,182315,92.5999418556223,spot_baseline,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,182315,18.05121517647924,peer,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,182315,81.35221806315194,baseline,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,182315,17.153672617844926,spot_peer,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,182315,0.101289374022,relative_legacy,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,185690,0.4671945716719231,peer,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,185690,74.72584859223784,spot_baseline,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,185690,4.337075358623763,spot_peer,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,185690,7.178123939811414,baseline,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,185690,-0.0097994274789008,relative_legacy,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,187708,0.0215846380683234,relative_legacy,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,187708,48.98843294798973,baseline,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,187708,8.497705344341433,peer,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,187708,13.157319534351512,spot_peer,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,187708,87.02660703959828,spot_baseline,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,188107,0.0701884349958399,peer,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,188107,79.35491225325737,spot_baseline,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,188107,7.656339936487398,spot_peer,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,188107,-9.525921230606482e-06,relative_legacy,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,188107,0.7053781358345694,baseline,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,188389,2.406148372410424,peer,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,188389,16.60777015913694,spot_peer,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,188389,12.77154564194178,baseline,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,188389,91.8386234446348,spot_baseline,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,188389,0.0087763670101243,relative_legacy,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,189585,-18.33594875961893,peer,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,189585,37.85116232537298,spot_baseline,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,189585,-22.10387445507614,spot_peer,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,189585,-0.4218571469879901,relative_legacy,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,189585,37.3583722566646,baseline,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,189588,84.79969065549501,spot_baseline,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,189588,0.0409770276403904,relative_legacy,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,189588,11.560511796781912,spot_peer,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,189588,15.48220973853876,peer,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,189588,83.53687796116068,baseline,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,190710,73.79264602911178,baseline,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,190710,6.857507581944949,spot_peer,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,190710,10.226615321478285,peer,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,190710,78.24085649273731,spot_baseline,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,190710,-0.0216407649772088,relative_legacy,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,190772,-1.501801230042436,peer,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,190772,-0.1469662907848039,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,190772,47.460034232401846,baseline,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,190772,62.29303509201767,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,190772,-4.577858735278211,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191026,-0.2062727493764714,relative_legacy,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191026,44.776549372704096,baseline,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191026,-9.36049485459833,spot_peer,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191026,55.62314586068873,spot_baseline,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191026,-5.304161379687894,peer,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191046,32.60278661728864,baseline,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191046,6.504933040934933,peer,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191046,92.5999418556223,spot_baseline,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191046,0.0264509615294245,relative_legacy,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191046,17.153672617844926,spot_peer,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191284,0.1140629127788955,relative_legacy,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191284,88.79652512616866,baseline,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191284,92.5999418556223,spot_baseline,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191284,17.153672617844926,spot_peer,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191284,20.442753746990583,peer,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191471,13.834191802172464,spot_peer,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191471,87.97057662822883,spot_baseline,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191471,0.0382010199880236,relative_legacy,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191471,11.011229581131156,peer,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191471,59.739018610405296,baseline,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191935,71.20171790117739,baseline,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191935,9.44960926330204,peer,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191935,-0.0247611295801301,relative_legacy,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191935,78.24085649273731,spot_baseline,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191935,6.857507581944949,spot_peer,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191975,0.1264498146055852,relative_legacy,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191975,97.23250415571516,spot_baseline,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191975,18.66119464003122,peer,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191975,77.49758149188851,baseline,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,191975,20.475445890683872,spot_peer,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192049,-0.3064347129050908,relative_legacy,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192049,-10.285344315551734,peer,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192049,46.2058895796251,baseline,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192049,-14.437532508139403,spot_peer,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192418,-0.0383183580037354,relative_legacy,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192418,60.78586642368368,baseline,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192418,6.705809417945435,peer,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192418,5.647572434028606,spot_peer,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192472,11.560511796781912,spot_peer,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192472,0.0415310158330307,relative_legacy,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192472,84.79969065549501,spot_baseline,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192472,84.09877659336301,baseline,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192472,15.538582228972524,peer,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192924,-0.0654613560797325,relative_legacy,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192924,73.63884007034605,spot_baseline,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192924,65.12617937320908,baseline,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192924,3.557637194285221,spot_peer,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,192924,6.050107007493171,peer,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,193275,44.35040299953258,baseline,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,193275,5.60075726270174,peer,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,193275,-0.0171678555964587,relative_legacy,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,193275,8.290993926230422,spot_peer,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,193275,80.24000401148393,spot_baseline,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,195286,28.75360337499538,baseline,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,195286,-14.921519492281966,peer,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,195286,-0.3323201454039495,relative_legacy,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,195286,37.85116232537298,spot_baseline,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,195286,-22.10387445507614,spot_peer,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,204737,35.96733362495894,baseline,SynapseSeer,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,204737,86.86867653221348,spot_baseline,SynapseSeer,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,204737,6.014422640188337,peer,SynapseSeer,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,204737,0.0103793553943898,relative_legacy,SynapseSeer,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,204737,13.044075652367194,spot_peer,SynapseSeer,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,208405,0.0407532935643632,relative_legacy,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,208405,83.16216039946428,baseline,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,208405,15.39344018705742,peer,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,208405,11.560511796781912,spot_peer,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,215725,61.47416225263985,baseline,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,215725,0.0204494238331908,relative_legacy,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,215725,10.233693894651294,peer,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,215725,11.560511796781912,spot_peer,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,215725,84.79969065549501,spot_baseline,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,218666,2.4338669607640995,spot_peer,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,218666,6.1234272824578415,peer,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,218666,69.12397851757792,baseline,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,218666,-0.0827885358667275,relative_legacy,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,218666,72.07162425211314,spot_baseline,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,218945,75.54130172619946,baseline,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,218945,-0.0316258661068278,relative_legacy,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,218945,10.083210831293965,peer,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,218945,6.254308929104283,spot_peer,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,218945,77.39963251111732,spot_baseline,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,219886,-159.2939765029956,peer,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,219886,-163.26289343514705,spot_baseline,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,219886,-157.77573545555552,baseline,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,219886,-166.31246830477969,spot_peer,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,219886,-2.357366040670541,relative_legacy,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,220077,57.76767163977856,baseline,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,220077,-7.300338906040976,spot_peer,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,220077,-0.2182272621324497,relative_legacy,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,220077,-3.458528203742508,peer,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,221727,74.83653677065952,baseline,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,221727,-0.0398821018302307,relative_legacy,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,221727,9.488570840122932,peer,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,221727,5.647572434028606,spot_peer,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,222631,0.5982610587306695,peer,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,222631,4.08095415371215,baseline,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,222631,0.0003714382283002,relative_legacy,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,222631,87.97057662822883,spot_baseline,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30157,"Will Rivian make any posts at its Stories site before Jan 1, 2025?",2024-11-21 14:47:25.081252+00,222631,13.834191802172464,spot_peer,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30359 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,182315,-6.482738635783552,spot_peer,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,182315,18.82777454546217,baseline,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,182315,-4.639145440986676,peer,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,182315,-0.2289736829895936,relative_legacy,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,182315,21.412480535284736,spot_baseline,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,185690,56.93938720361152,spot_baseline,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,185690,0.0098412121874343,relative_legacy,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,185690,18.991787424044407,spot_peer,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,185690,5.541038353255771,baseline,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,185690,1.84081616075991,peer,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,187708,4.985805448196763,spot_peer,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,187708,-0.064689089430237,relative_legacy,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,187708,2.6974941337319507,peer,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,187708,21.35549283599595,baseline,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,187708,37.40657182225377,spot_baseline,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,188107,35.9895945086383,spot_baseline,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,188107,17.562681552952355,peer,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,188107,3.969763555248527,spot_peer,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,188107,0.1425280638289403,relative_legacy,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,188107,41.81082963046456,baseline,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,188389,-5.719152734057002,peer,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,188389,-3.667281553099179,baseline,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,188389,-40.49069304090991,spot_peer,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,188389,-0.1047672105462062,relative_legacy,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,188389,-26.015189730067256,spot_baseline,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,189585,21.64852892160714,peer,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,189585,20.108134087308635,spot_peer,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,189585,57.78915872444324,baseline,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,189585,0.1120628530884313,relative_legacy,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,189588,6.785073942645709,peer,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,189588,37.325483346701766,baseline,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,189588,5.304598538273484,spot_peer,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,189588,-0.0915266298931874,relative_legacy,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,190710,73.11832415721999,spot_baseline,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,190710,0.243183267703203,relative_legacy,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,190710,68.76241055826154,baseline,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,190710,30.776700862035653,peer,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,190710,30.592874872855614,spot_peer,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,190772,22.07936974825964,baseline,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,190772,-1.2657537778292038,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,190772,-0.1418531010023788,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,190772,-0.4505816632820826,peer,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,190772,28.688114778816157,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191026,-8.761340976563103,spot_baseline,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191026,-0.5315910155672819,relative_legacy,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191026,-28.11884136784184,spot_peer,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191026,-15.08077055665276,baseline,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191026,-27.872150342192292,peer,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191046,11.331453203830234,peer,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191046,33.056045427378216,spot_peer,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191046,26.86467426215728,baseline,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191046,0.0922098203923275,relative_legacy,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191284,37.85116232537298,spot_baseline,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191284,7.001032307649087,peer,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191284,36.29625168551895,baseline,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191284,-0.0884784722310616,relative_legacy,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191284,5.304598538273484,spot_peer,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191471,7.013369517333673,peer,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191471,30.15040779088737,baseline,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191471,9.972229774184118,spot_peer,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191471,-0.0197544807424097,relative_legacy,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191471,44.36066514756148,spot_baseline,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191935,67.80719051126377,spot_baseline,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191935,61.81110083796793,baseline,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191935,26.78453282567808,spot_peer,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191935,26.04189159131635,peer,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191935,0.1845921364967139,relative_legacy,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191975,1.3063561294863808,baseline,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191975,-13.23502766234524,peer,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191975,-0.2956122041405691,relative_legacy,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191975,-20.39830069950235,spot_peer,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,191975,2.005765234125348,spot_baseline,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192049,-132.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192049,-126.19538959020456,baseline,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192049,-1.7117713997011987,relative_legacy,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192049,-111.04669757957792,peer,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192049,-116.625228669483,spot_peer,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192418,0.0875606634506598,relative_legacy,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192418,46.45639503520823,baseline,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192418,16.7592782889217,peer,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192418,20.108134087308635,spot_peer,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192472,73.11832415721999,spot_baseline,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192472,0.2568076581885201,relative_legacy,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192472,30.592874872855614,spot_peer,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192472,32.2436031688812,peer,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192472,72.56897910359677,baseline,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192924,0.0971000995340084,relative_legacy,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192924,51.78601883049932,baseline,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192924,20.108134087308635,spot_peer,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192924,19.144054830901105,peer,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,192924,58.496250072115615,spot_baseline,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,193275,51.60151470036647,spot_baseline,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,193275,15.16427231113466,spot_peer,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,193275,0.0175416440688993,relative_legacy,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,193275,8.56235162030585,peer,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,193275,29.32650757415511,baseline,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,195286,44.50063310962979,baseline,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,195286,20.108134087308635,spot_peer,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,195286,0.0857250277914846,relative_legacy,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,195286,15.890175082500328,peer,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,204737,69.24271980897076,spot_baseline,SynapseSeer,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,204737,27.813877396695457,spot_peer,SynapseSeer,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,204737,0.0779631269840976,relative_legacy,SynapseSeer,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,204737,28.777117355082986,baseline,SynapseSeer,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,204737,11.28276328759481,peer,SynapseSeer,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,208405,12.97094048521022,spot_peer,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,208405,47.66974389929964,baseline,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,208405,14.4114275621879,peer,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,208405,0.0127869888370856,relative_legacy,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,215725,37.85116232537298,spot_baseline,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,215725,5.304598538273484,spot_peer,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,215725,-0.0639973170371455,relative_legacy,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,215725,27.45042717843673,baseline,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,215725,4.220983235961112,peer,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,218666,-102.97454174443898,baseline,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,218666,-94.33821134409192,peer,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,218666,-1.4821667410375414,relative_legacy,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,218666,-98.6300589670584,spot_peer,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,218666,-107.09665213541436,spot_baseline,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,218945,58.496250072115615,spot_baseline,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,218945,20.108134087308635,spot_peer,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,218945,21.57551267710497,peer,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,218945,0.1107334533174441,relative_legacy,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,218945,57.1160417007645,baseline,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,219886,-55.60931768330702,baseline,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,219886,-60.14993507613245,peer,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,219886,-1.011963773903353,relative_legacy,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,219886,-63.00309779036196,spot_peer,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,219886,-57.41110659756957,spot_baseline,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,220077,37.85116232537298,spot_baseline,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,220077,37.46430083338619,baseline,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,220077,-0.0922594454978425,relative_legacy,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,220077,6.703754766390476,peer,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,220077,5.304598538273484,spot_peer,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,221727,33.056045427378216,spot_peer,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,221727,74.91987432077642,baseline,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,221727,34.456771436770815,peer,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,221727,0.2876552873425214,relative_legacy,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,222631,-0.4988163087167052,peer,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,222631,-0.0126965980096772,relative_legacy,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,222631,0.7330875870768899,baseline,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30158,"Will Comex Gold Spot prices remain below $2,800 per ounce through December 27, 2024, according to Yahoo Finance?",2024-11-21 14:47:25.11008+00,222631,5.304598538273484,spot_peer,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30360 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,182315,2.0857687967101834,peer,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,182315,58.496250072115615,spot_baseline,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,182315,51.4915970557328,baseline,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,182315,0.0350776873274484,relative_legacy,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,182315,8.444918590618085,spot_peer,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,185690,61.20221628080618,spot_baseline,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,185690,0.7373391866515894,peer,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,185690,10.385228433629468,spot_peer,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,185690,6.0328262416916605,baseline,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,185690,0.0124787582758031,relative_legacy,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,185699,-7.831107617103644,peer,MWG,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,185699,28.688114778816157,spot_baseline,MWG,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,185699,-12.928969274519767,spot_peer,MWG,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,185699,12.704634794418704,baseline,MWG,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,185699,-0.0971455492719306,relative_legacy,MWG,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,187708,0.0826411356527313,relative_legacy,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,187708,38.76005316339673,baseline,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,187708,66.72109124808708,spot_baseline,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,187708,14.34253114752632,spot_peer,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,187708,5.415236567421066,peer,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,188107,0.0,spot_baseline,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,188107,-18.80764014836754,peer,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,188107,-33.499747765398915,spot_peer,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,188107,-0.253701433582552,relative_legacy,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,188107,4.834954698981442,baseline,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,188389,1.2393540891260852,baseline,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,188389,8.678376614206666,spot_baseline,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,188389,-0.0569299916044462,relative_legacy,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,188389,-27.27692816335611,spot_peer,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,188389,-4.371034113499673,peer,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,189585,14.56384197486574,peer,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,189585,75.62285582931528,baseline,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,189585,21.39282993068767,spot_peer,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,189585,0.2030413782822239,relative_legacy,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,189588,1.5459216958263449,peer,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,189588,8.444918590618085,spot_peer,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,189588,0.0245406151565996,relative_legacy,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,189588,57.68688996545333,baseline,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,190710,0.1878533665836233,relative_legacy,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,190710,70.93758280918026,baseline,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,190710,74.84612330040356,spot_baseline,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,190710,20.16857569134256,spot_peer,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,190710,13.215660442789538,peer,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,190772,-0.4380397879086622,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,190772,-2.914634565951651,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,190772,-35.58968300514232,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,190772,-32.17023997964017,peer,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,190772,-2.26577377404509,baseline,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191026,-16.000850261474273,spot_peer,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191026,24.404053561605146,spot_baseline,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191026,-0.0732947215363958,relative_legacy,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191026,35.794919642547455,baseline,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191026,-5.860147845017071,peer,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191046,0.0,relative_legacy,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191046,1.30772498851966,spot_peer,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191046,-1.1181755295072242,peer,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191046,48.54268271702416,spot_baseline,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191046,17.001333397283876,baseline,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191284,73.40834997245715,baseline,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191284,0.1997910996513758,relative_legacy,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191284,14.194923726948156,peer,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191284,21.39282993068767,spot_peer,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191471,58.496250072115615,spot_baseline,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191471,0.0348608497974264,relative_legacy,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191471,2.142597273806708,peer,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191471,39.8025559348283,baseline,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191471,8.444918590618085,spot_peer,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191935,60.40713236688608,spot_baseline,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191935,0.050169591881686,relative_legacy,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191935,55.19058585206432,baseline,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191935,9.815114461309872,spot_peer,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191935,3.155278432157981,peer,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191975,-0.5062689719796623,relative_legacy,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191975,-2.980640109550431,baseline,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191975,-37.09156631018698,peer,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191975,-35.94214765910242,spot_peer,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,191975,-3.4061836073633143,spot_baseline,jkraybill_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192049,0.2783879386304756,relative_legacy,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192049,81.06697825504514,baseline,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192049,27.30576929344098,spot_peer,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192049,19.893442301549705,peer,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192418,46.4634904041784,baseline,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192418,0.0393551262918765,relative_legacy,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192418,2.275251208446529,peer,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192418,8.444918590618085,spot_peer,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192472,48.21759430861172,baseline,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192472,1.30772498851966,spot_peer,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192472,48.54268271702416,spot_baseline,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192472,-5.632056571873926,peer,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192472,-0.0736400664804579,relative_legacy,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192924,0.1170376749696451,relative_legacy,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192924,60.10895939011516,baseline,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192924,67.80719051126377,spot_baseline,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192924,8.025191912993506,peer,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,192924,15.12131732898752,spot_peer,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,193275,18.42990827930311,spot_peer,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,193275,72.42136867573582,spot_baseline,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,193275,41.511106478924766,baseline,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,193275,7.692400582191755,peer,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,193275,0.1144576114192609,relative_legacy,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,195286,-0.0366153591296029,relative_legacy,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,195286,1.30772498851966,spot_peer,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,195286,37.05014532088137,baseline,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,195286,-3.204335750212507,peer,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,208405,14.497917475291777,peer,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,208405,0.2022467824020935,relative_legacy,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,208405,21.39282993068767,spot_peer,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,208405,75.3202360201889,baseline,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,215725,48.54268271702416,spot_baseline,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,215725,-2.9873302298079305,peer,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,215725,35.221677759313835,baseline,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,215725,-0.0328661277291143,relative_legacy,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,215725,1.30772498851966,spot_peer,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,218666,68.52674065168416,spot_baseline,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,218666,0.1230063803578689,relative_legacy,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,218666,66.07865032321072,baseline,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,218666,15.637269899095024,spot_peer,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,218666,8.627257401778271,peer,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,218945,65.07645591169023,spot_baseline,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,218945,13.16324734083039,spot_peer,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,218945,0.0897361333446008,relative_legacy,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,218945,6.242257075181342,peer,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,218945,63.56785469780903,baseline,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,219886,55.70270461271193,baseline,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,219886,9.132285078756224,spot_peer,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,219886,2.395659496076448,peer,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,219886,59.45485495503544,spot_baseline,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,219886,0.0393602084933708,relative_legacy,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,220077,1.30772498851966,spot_peer,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,220077,-0.0736400664804579,relative_legacy,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,220077,48.54268271702416,spot_baseline,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,220077,-5.632056571873926,peer,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,220077,48.13972047170167,baseline,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,221727,1.5583916792887844,peer,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,221727,8.444918590618085,spot_peer,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,221727,57.25103732035209,baseline,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,221727,0.0254594970662854,relative_legacy,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,222631,-3.5586465628850195,peer,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,222631,-100.0,spot_baseline,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,222631,-2.627553366664486,baseline,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,222631,-0.0495578950496581,relative_legacy,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30159,"Will the yield curve be non-inverted on Friday December 27, 2024?",2024-11-21 14:47:25.284909+00,222631,-105.20462851297944,spot_peer,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30361 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,182315,97.08536543404836,spot_baseline,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,182315,0.0367703656308883,relative_legacy,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,182315,85.55643632739806,baseline,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,182315,35.77508294366844,spot_peer,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,182315,20.53941405398652,peer,RyansAGI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,185690,7.996459469372436,baseline,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,185690,2.4538503288228517,peer,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,185690,23.473692571457704,spot_peer,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,185690,79.95018140615956,spot_baseline,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,185690,-0.0119736642505539,relative_legacy,annabot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,185699,-0.1299107958957003,relative_legacy,MWG,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,185699,1.5265679417521572,peer,MWG,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,185699,64.15460290875237,spot_baseline,MWG,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,185699,12.134008274209792,spot_peer,MWG,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,185699,29.452616213259518,baseline,MWG,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,187708,31.127906538812493,spot_peer,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,187708,90.61209529971,spot_baseline,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,187708,-0.0111563098600662,relative_legacy,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,187708,12.77672613263835,peer,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,187708,53.99885614810263,baseline,twsummerbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,188107,0.0015287576126714,relative_legacy,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,188107,34.177548517085164,spot_peer,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,188107,2.305789865096236,peer,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,188107,6.338727960305906,baseline,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,188107,94.86008474933556,spot_baseline,Cassie,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,188389,-439.0965487757836,spot_peer,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,188389,-564.3856189774725,spot_baseline,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,188389,-81.65789249044204,baseline,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,188389,-63.40176897340707,peer,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,188389,-0.9498783790298544,relative_legacy,Panshul42,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,189585,32.55498642570093,spot_peer,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,189585,17.451492198685617,peer,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,189585,-0.0067108848214064,relative_legacy,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,189585,91.47902258287982,baseline,mf-bot-1,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,189588,20.68634637673688,peer,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,189588,0.0375209815804914,relative_legacy,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,189588,95.73826949394024,baseline,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,189588,35.77508294366844,spot_peer,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,189588,97.08536543404836,spot_baseline,mf-bot-3,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,190710,90.80878910779607,baseline,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,190710,0.0295771043225862,relative_legacy,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,190710,96.19936774202552,spot_baseline,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,190710,35.139023041381336,spot_peer,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,190710,20.069492209379813,peer,Bot_Pepa,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,190772,-0.2084147932592298,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,190772,13.45340737258644,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,190772,51.81227068807661,baseline,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,190772,65.99245584023782,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,190772,2.513388035560649,peer,Jay_Bailey_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191026,17.82795761944915,peer,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191026,74.46704115054428,baseline,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191026,5.32186565580858e-05,relative_legacy,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191026,92.5999418556223,spot_baseline,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191026,32.55498642570093,spot_peer,manticAI,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191046,32.55498642570093,spot_peer,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191046,0.0006783766769736,relative_legacy,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191046,8.831467742786009,peer,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191046,32.46876962598829,baseline,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191046,92.5999418556223,spot_baseline,archipelago,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191284,88.79515439314018,baseline,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191284,17.510610476724676,peer,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191284,92.5999418556223,spot_baseline,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191284,32.55498642570093,spot_peer,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191284,-0.005686507036705,relative_legacy,000_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191471,-0.4510537353270236,relative_legacy,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191471,-17.195843399123625,peer,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191471,17.923137647645433,baseline,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191471,-15.03943340278037,spot_peer,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191471,26.303440583379377,spot_baseline,HSeldon,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191935,33.639513911956534,spot_peer,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191935,0.0080277970321621,relative_legacy,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191935,85.94822409319823,baseline,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191935,18.47416535709658,peer,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,191935,94.11063109464314,spot_baseline,pgodzinai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192049,0.0582569742642187,relative_legacy,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192049,99.27684307689242,spot_baseline,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192049,37.348350084115886,spot_peer,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192049,22.169017102675525,peer,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192049,95.06345726415958,baseline,gnosis-ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192418,-464.38561897747246,spot_baseline,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192418,-4.4244620190619175,relative_legacy,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192418,-367.3063050749322,spot_peer,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192418,-302.59300465673107,peer,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192418,-368.9175477080507,baseline,InstitutPelFutur,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192472,97.96911210405352,baseline,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192472,98.5500430304885,spot_baseline,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192472,0.0522677832087944,relative_legacy,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192472,36.82657855958461,spot_peer,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192472,21.777809955212152,peer,bestworldbot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192924,0.0104598320055503,relative_legacy,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192924,83.53737388950933,baseline,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192924,33.639513911956534,spot_peer,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192924,94.11063109464314,spot_baseline,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,192924,18.6306895604119,peer,acm_bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,193275,93.35726382610238,spot_baseline,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,193275,54.27937706714268,baseline,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,193275,0.0050514584038052,relative_legacy,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,193275,13.651084501040796,peer,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,193275,33.09866971390868,spot_peer,histerio,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,195286,0.000611438867069,relative_legacy,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,195286,70.80158189160376,baseline,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,195286,32.55498642570093,spot_peer,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,195286,17.184770503024332,peer,Unwrapped80T,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,208405,97.08536543404836,spot_baseline,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,208405,0.0375269535896152,relative_legacy,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,208405,20.682061425353904,peer,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,208405,95.51546724053208,baseline,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,208405,35.77508294366844,spot_peer,mf-bot-4,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,215725,84.79969065549501,spot_baseline,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,215725,-0.0559332620089848,relative_legacy,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,215725,12.26302187683492,peer,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,215725,61.55738726219544,baseline,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,215725,26.95516707985095,spot_peer,estr.ai,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,218666,93.20611713434246,spot_baseline,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,218666,-0.0001226756809827,relative_legacy,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,218666,17.922680961708224,peer,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,218666,32.990161135548455,spot_peer,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,218666,90.11480183679492,baseline,GreeneiBot2,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,218945,0.0302484210723841,relative_legacy,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,218945,20.144916581244413,peer,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,218945,35.24530466032436,spot_peer,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,218945,96.3474123974886,spot_baseline,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,218945,94.1561017949587,baseline,SeidrBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,219886,20.42209655472651,peer,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,219886,35.524305824767104,spot_peer,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,219886,0.0340463689714384,relative_legacy,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,219886,96.73604621464813,spot_baseline,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,219886,94.54707300076689,baseline,SaraBase,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,220077,91.07326619029126,spot_baseline,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,220077,31.458982245038182,spot_peer,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,220077,-0.0219959471542328,relative_legacy,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,220077,90.45930657277144,baseline,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,220077,16.320781811043062,peer,mmBot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,221727,32.55498642570093,spot_peer,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,221727,-0.006378744114524,relative_legacy,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,221727,17.47089250420408,peer,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,221727,90.62939041896846,baseline,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,221727,92.5999418556223,spot_baseline,mf-bot-5,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,222631,92.5999418556223,spot_baseline,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,222631,0.0002668328507148,relative_legacy,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,222631,4.480076531424021,baseline,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,222631,1.5835253530663913,peer,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30160,"Will Alphabet/Google continuously operate through January 1, 2025, without announcing Eric Schmidt's return as CEO or as a member of its Board of Directors?",2024-11-21 14:47:25.315004+00,222631,32.55498642570093,spot_peer,Grizeu_Bot,True,yes,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30362 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,182315,-0.6919767368279651,peer,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,182315,-1.8840112744898967,spot_peer,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,182315,80.33962605069111,baseline,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,182315,-0.0347019834328602,relative_legacy,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,182315,91.07326619029126,spot_baseline,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,185690,96.28081110181218,spot_baseline,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,185690,0.0001546558467927,relative_legacy,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,185690,9.76322863717057,baseline,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,185690,0.8686903687698027,peer,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,185690,1.8459036343387976,spot_peer,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,185699,0.0059053132992054,relative_legacy,MWG,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,185699,2.422167353568794,spot_peer,MWG,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,185699,1.90946693162332,peer,MWG,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,185699,45.61963168800415,baseline,MWG,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,185699,97.08536543404836,spot_baseline,MWG,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,187708,84.1570637395517,spot_baseline,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,187708,-0.0670794485307167,relative_legacy,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,187708,50.899960579891406,baseline,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,187708,-6.837755711032193,spot_peer,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,187708,-3.3297377153372056,peer,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,188107,2.872208082093968,peer,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,188107,3.4712457381840096,spot_peer,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,188107,58.10122295082277,baseline,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,188107,0.0191568097410781,relative_legacy,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,188107,98.5500430304885,spot_baseline,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,188389,98.5500430304885,spot_baseline,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,188389,14.451112060524746,baseline,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,188389,0.003586070759844,relative_legacy,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,188389,1.1962911631445363,peer,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,188389,3.4712457381840096,spot_peer,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,189585,0.2369155093917259,peer,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,189585,-0.7905266436677478,spot_peer,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,189585,91.47964779216812,baseline,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,189585,-0.0214877046703386,relative_legacy,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,189588,-0.0214877046703386,relative_legacy,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,189588,91.31567213770882,baseline,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,189588,-0.7905266436677478,spot_peer,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,189588,0.2369155093917259,peer,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,190710,0.6852932669601882,peer,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,190710,88.03286522266366,baseline,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,190710,-0.3563523354520762,spot_peer,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,190710,-0.0155026939592901,relative_legacy,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,190710,93.20611713434243,spot_baseline,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,190772,95.60566524124027,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,190772,75.13177523463426,baseline,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,190772,0.0023859731263097,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,190772,1.9693215427919284,peer,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,190772,1.3623290029592554,spot_peer,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191026,-0.0396353860868428,relative_legacy,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191026,-4.313209236247636,spot_peer,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191026,-1.060161101440616,peer,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191026,72.62776482711833,baseline,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191026,87.68172568761499,spot_baseline,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191046,-0.0112446386839178,relative_legacy,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191046,-0.7905266436677478,spot_peer,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191046,32.38878861247838,baseline,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191046,0.4595060444567154,peer,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191284,-0.7905266436677478,spot_peer,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191284,0.2433107359206335,peer,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191284,88.79471669325876,baseline,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191284,-0.0214877046703386,relative_legacy,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191471,92.5999418556223,spot_baseline,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191471,-0.018340258832272,relative_legacy,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191471,-0.7905266436677478,spot_peer,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191471,0.2973363149260117,peer,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191471,63.169563812073456,baseline,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191935,89.00664494445343,baseline,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191935,3.2443783816955536,peer,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191935,0.0196340959311794,relative_legacy,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191935,2.422167353568794,spot_peer,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191935,97.08536543404836,spot_baseline,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191975,99.13177569001992,spot_baseline,jkraybill_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191975,0.0265781025411338,relative_legacy,jkraybill_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191975,3.5789189784038653,peer,jkraybill_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191975,3.887912969404296,spot_peer,jkraybill_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,191975,69.36780480666071,baseline,jkraybill_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192049,0.0355655307702551,relative_legacy,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192049,4.3870284924934495,peer,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192049,3.4712457381840096,spot_peer,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192049,94.49585212852402,baseline,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192049,98.5500430304885,spot_baseline,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192418,97.08536543404836,spot_baseline,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192418,2.422167353568794,spot_peer,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192418,2.837920990222048,peer,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192418,77.14243047215653,baseline,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192418,0.0144059121540535,relative_legacy,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192472,-0.0214877046703386,relative_legacy,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192472,-0.7905266436677478,spot_peer,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192472,0.2369155093917259,peer,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192472,92.12502423596008,baseline,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192472,92.5999418556223,spot_baseline,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192924,-11.075251496194491,spot_peer,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192924,69.54936512584143,baseline,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192924,-8.957536962092739,peer,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192924,-0.1488743934123865,relative_legacy,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,192924,78.24085649273731,spot_baseline,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,193275,-0.6970992998683372,peer,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,193275,-2.5456997681279443,spot_peer,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,193275,53.081360169048686,baseline,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,193275,-0.0304487623585026,relative_legacy,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,193275,90.14944550475748,spot_baseline,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,195286,97.08536543404836,spot_baseline,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,195286,74.3446315723979,baseline,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,195286,0.013235056867089,relative_legacy,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,195286,2.422167353568794,spot_peer,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,195286,2.743438254630598,peer,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,204737,0.0008267653964716,relative_legacy,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,204737,40.41307008042579,baseline,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,204737,1.681423440778841,spot_peer,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,204737,1.462310810677104,peer,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,204737,96.05117101190244,spot_baseline,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,208405,0.2375432200054288,peer,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,208405,91.10199677197168,baseline,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,208405,-0.7905266436677478,spot_peer,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,208405,-0.0214940330942425,relative_legacy,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,215725,3.4712457381840096,spot_peer,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,215725,0.0232855717307212,relative_legacy,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,215725,3.3890334043457497,peer,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,215725,71.56529469675296,baseline,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,215725,98.5500430304885,spot_baseline,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,218666,91.3798964950696,spot_baseline,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,218666,-0.6175549073017748,peer,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,218666,-1.6643866788841688,spot_peer,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,218666,-0.0333187118599627,relative_legacy,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,218666,88.6127882926017,baseline,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,218945,86.77250906975097,baseline,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,218945,-0.0591035163013344,relative_legacy,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,218945,-3.546245508824403,spot_peer,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,218945,-2.4955310971254203,peer,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,218945,88.75252707415875,spot_baseline,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,219886,95.60566524124027,spot_baseline,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,219886,94.27159256226132,baseline,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,219886,1.3623290029592554,spot_peer,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,219886,2.39560934045681,peer,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,219886,0.0081501133029849,relative_legacy,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,220077,-0.0214877046703386,relative_legacy,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,220077,-0.7905266436677478,spot_peer,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,220077,0.2369155093917259,peer,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,220077,92.11766478035864,baseline,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,221727,95.60566524124027,spot_baseline,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,221727,93.57081223418317,baseline,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,221727,2.379503355359911,peer,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,221727,0.0079206010841758,relative_legacy,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,221727,1.3623290029592554,spot_peer,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,222631,3.4712457381840096,spot_peer,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,222631,-20.25517389655054,peer,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,222631,-24.702322312092612,baseline,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,222631,-0.2933587118336231,relative_legacy,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30161,"Will Joe Biden no longer be US President before January 1, 2025? - -",2024-11-21 14:47:25.351657+00,222631,98.5500430304885,spot_baseline,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30363 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,182315,-59.97082335182109,spot_peer,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,182315,-192.86980124825584,baseline,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,182315,-218.44245711374276,spot_baseline,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,182315,-0.5350137270038958,relative_legacy,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,182315,-51.28180284915596,peer,RyansAGI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,185690,-0.0035238179566717,relative_legacy,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,185690,-6.530016590710625,spot_peer,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,185690,-14.773621268825428,baseline,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,185690,-143.8307278601691,spot_baseline,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,185690,-0.6972086794479524,peer,annabot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,185699,-12.029423371771196,spot_baseline,MWG,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,185699,42.68322487471602,peer,MWG,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,185699,0.6748516406257524,relative_legacy,MWG,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,185699,-5.779635540203524,baseline,MWG,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,185699,87.87294276288712,spot_peer,MWG,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,187708,0.6519452487258692,relative_legacy,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,187708,-49.41090702700428,spot_baseline,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,187708,38.57339131017225,peer,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,187708,-30.395058956746816,baseline,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,187708,61.09837709542222,spot_peer,twsummerbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,188107,0.7649521260066585,peer,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,188107,-120.64508774674265,spot_baseline,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,188107,-9.51573153123948,baseline,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,188107,10.076746519191806,spot_peer,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,188107,0.0144827816294421,relative_legacy,Cassie,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,188389,5.027313941861001,peer,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,188389,0.0810051501683074,relative_legacy,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,188389,-96.57842846620878,spot_baseline,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,188389,-12.962947625970832,baseline,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,188389,27.31454144585067,spot_peer,Panshul42,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,189585,-0.1549793828508153,relative_legacy,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,189585,-27.921480760424316,spot_peer,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,189585,-171.55390615900686,baseline,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,189585,-173.6965594166206,spot_baseline,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,189585,-24.801103849344564,peer,mf-bot-1,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,189588,-173.6965594166206,spot_baseline,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,189588,-171.27150938353498,baseline,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,189588,-0.1550765236614362,relative_legacy,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,189588,-24.78918936954545,peer,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,189588,-27.921480760424316,spot_peer,mf-bot-3,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,190710,-46.27687578798718,peer,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,190710,-50.97964772955933,spot_peer,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,190710,-205.8893689053569,spot_baseline,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,190710,-194.64026295303591,baseline,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,190710,-0.4547391074283046,relative_legacy,Bot_Pepa,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,190772,-147.39311883324118,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,190772,0.0764329914597647,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,190772,-5.615520361775548,peer,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,190772,-9.081586558382318,spot_peer,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,190772,-115.94966610762825,baseline,Jay_Bailey_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191026,33.93677872239789,peer,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191026,54.11387809904811,spot_peer,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191026,-59.16236063845221,spot_baseline,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191026,-63.61822211909868,baseline,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191026,0.6207428964344519,relative_legacy,manticAI,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191046,-61.017364217986206,baseline,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191046,-27.921480760424316,spot_peer,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191046,-9.597408639200452,peer,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191046,-173.6965594166206,spot_baseline,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191046,-0.0662208411348201,relative_legacy,archipelago,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191284,-27.921480760424316,spot_peer,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191284,-24.32745555354992,peer,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191284,-0.1504000860694614,relative_legacy,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191284,-166.55793169981217,baseline,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191284,-173.6965594166206,spot_baseline,000_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191471,-173.6965594166206,spot_baseline,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191471,-18.013357756614376,peer,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191471,-27.921480760424316,spot_peer,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191471,-118.58673188274176,baseline,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191471,-0.1125964201399825,relative_legacy,HSeldon,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191935,0.6764508816626484,relative_legacy,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191935,36.574464510451726,spot_peer,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191935,-83.65012677171204,spot_baseline,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191935,-76.8116917466964,baseline,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191935,36.36046885461859,peer,pgodzinai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191975,35.620595555748444,peer,jkraybill_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191975,-80.25539357937832,spot_baseline,jkraybill_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191975,-68.57406145834199,baseline,jkraybill_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191975,0.6584682356443333,relative_legacy,jkraybill_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,191975,39.00594924283843,spot_peer,jkraybill_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192049,-65.1294284060489,peer,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192049,-222.86175520934293,baseline,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192049,-232.1928094887363,spot_baseline,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192049,-69.81954193160134,spot_peer,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192049,-0.7118548956710807,relative_legacy,gnosis-ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192418,21.525413644723063,peer,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192418,24.863833695394717,spot_peer,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192418,0.4492601863799488,relative_legacy,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192418,-79.47196210893216,baseline,InstitutPelFutur,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192472,-27.921480760424316,spot_peer,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192472,-173.6965594166206,spot_baseline,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192472,-0.1571524388178723,relative_legacy,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192472,-25.071438622274904,peer,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192472,-172.96228794216017,baseline,bestworldbot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192924,-34.03027848595282,peer,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192924,-191.05018491608976,spot_baseline,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192924,-170.04553090419523,baseline,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192924,-0.2943950849384271,relative_legacy,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,192924,-40.35105123412285,spot_peer,acm_bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,193275,-21.25250024287529,spot_peer,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,193275,-99.34355365225692,baseline,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,193275,-164.38561897747243,spot_baseline,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,193275,-12.307294572972518,peer,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,193275,-0.0586145538226902,relative_legacy,histerio,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,195286,-27.921480760424316,spot_peer,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,195286,-0.1233970216031372,relative_legacy,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,195286,-133.32266621910074,baseline,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,195286,-20.05713914643463,peer,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,195286,-173.6965594166206,spot_baseline,Unwrapped80T,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,204737,-2.857371094523512,peer,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,204737,0.0345568112300611,relative_legacy,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,204737,-61.24141794610427,baseline,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,204737,-145.0084446378045,spot_baseline,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,204737,-7.373558690090612,spot_peer,SynapseSeer,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,208405,0.2537732889736334,relative_legacy,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,208405,-132.19280948873626,spot_baseline,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,208405,5.023151327249299,peer,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,208405,1.8056667262596844,spot_peer,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,208405,-129.99921215217103,baseline,mf-bot-4,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,215725,-27.921480760424316,spot_peer,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,215725,-19.04174385150002,peer,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,215725,-173.6965594166206,spot_baseline,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,215725,-126.1904155622589,baseline,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,215725,-0.1125964201399825,relative_legacy,estr.ai,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,218666,-1.3417847138268129,spot_peer,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,218666,1.6622818095736125,peer,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,218666,-132.74247112948353,baseline,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,218666,-136.58714424749587,spot_baseline,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,218666,0.2057810298571511,relative_legacy,GreeneiBot2,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,218945,-27.921480760424316,spot_peer,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,218945,-169.89434349820343,baseline,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,218945,-173.6965594166206,spot_baseline,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,218945,-24.682180395671864,peer,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,218945,-0.1548675142542661,relative_legacy,SeidrBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,219886,153.44708439301127,peer,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,219886,80.68364467235067,baseline,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,219886,85.43148804666018,spot_baseline,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,219886,2.2968703272409514,relative_legacy,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,219886,157.6795239261917,spot_peer,SaraBase,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,220077,1.8056667262596844,spot_peer,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,220077,-131.91683708888667,baseline,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,220077,0.2561305628613904,relative_legacy,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,220077,5.298471128019779,peer,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,220077,-132.19280948873626,spot_baseline,mmBot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,221727,-97.87583103013804,baseline,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,221727,-100.0,spot_baseline,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,221727,27.807124149326967,peer,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,221727,0.5661409660260718,relative_legacy,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,221727,24.863833695394717,spot_peer,mf-bot-5,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,222631,-9.081586558382318,spot_peer,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,222631,0.0128079869947803,relative_legacy,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,222631,-147.39311883324118,spot_baseline,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,222631,-5.310436468224129,baseline,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30162,"Will the Mt Seymour ski resort be listed as Open by On the Snow's Ski Report on December 13, 2024?",2024-11-21 14:47:25.381458+00,222631,0.8465455845756338,peer,Grizeu_Bot,True,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,2024-11-22 15:30:00+00,30364 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,182315,-47.39311883324123,spot_baseline,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,182315,-13.378379092637328,spot_peer,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,182315,-0.0724432433805466,relative_legacy,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,182315,-41.443054668770856,baseline,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,182315,-13.67346186570432,peer,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,185690,24.8069417700097,spot_peer,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,185690,0.5155340813559017,baseline,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,185690,2.206108123945865,peer,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,185690,0.0337847539851588,relative_legacy,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,185690,5.797006863732994,spot_baseline,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,185699,2.856915219677092,spot_baseline,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,185699,22.6962428137136,spot_peer,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,185699,0.2769789946642149,relative_legacy,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,185699,14.353020601411004,peer,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,185699,1.8347117281868803,baseline,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,187708,-18.36901849137185,peer,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,187708,-41.210937901670654,baseline,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,187708,-33.30261083112384,spot_peer,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,187708,-0.1906126190640865,relative_legacy,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,187708,-75.1465163861321,spot_baseline,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,188107,-16.81227588083271,spot_baseline,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,188107,8.575682588671427,spot_peer,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,188107,-13.890938287061315,baseline,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,188107,0.1884059983861376,relative_legacy,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,188107,5.8691210693556055,peer,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,188389,-7.778559746787327,spot_peer,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,188389,-36.80644479168176,baseline,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,188389,0.0048411074992783,relative_legacy,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,188389,-9.842740214977848,peer,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,188389,-39.592867633113926,spot_baseline,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,189585,37.85116232537298,spot_baseline,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,189585,44.11409009002784,peer,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,189585,37.37495554996393,baseline,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,189585,47.818698092170855,spot_peer,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,189585,0.7444485819662884,relative_legacy,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,190710,-18.091283545524696,peer,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,190710,-16.29607706418802,spot_peer,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,190710,-48.242528833986334,baseline,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,190710,-0.1210150752909974,relative_legacy,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,190710,-51.45731728297583,spot_baseline,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,190772,-164.38561897747243,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,190772,-127.39528556849604,baseline,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,190772,-76.72216933891941,peer,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,190772,-0.9627654516758916,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,190772,-97.36758005789994,spot_peer,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191026,-8.625297892102864,baseline,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191026,6.6537613330075,spot_peer,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191026,-0.0068135902211483,relative_legacy,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191026,-1.7968465600958596,peer,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191026,-19.4894102052021,spot_baseline,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191046,-100.0,spot_baseline,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191046,-17.533042395448373,peer,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191046,-34.66807357884116,baseline,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191046,-0.2058829288871403,relative_legacy,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191046,-51.1449872856708,spot_peer,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191284,-0.084254293461085,relative_legacy,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191284,-13.075592917310027,peer,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191284,-38.98580047486397,baseline,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191284,-16.29607706418802,spot_peer,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191284,-51.45731728297583,spot_baseline,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191471,-43.440282414577496,spot_baseline,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191471,-29.457180776486307,baseline,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191471,-0.0204548258810036,relative_legacy,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191471,-7.559647051910183,peer,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191471,-10.540628194582608,spot_peer,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191935,3.0290263683963428,peer,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191935,5.024314264098833,spot_peer,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191935,0.124520479973725,relative_legacy,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191935,-14.549689933668814,baseline,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,191935,-21.75914350726266,spot_baseline,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192049,64.29681796378075,peer,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192049,66.26598141489447,baseline,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192049,1.0011486544535484,relative_legacy,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192049,75.60318241804835,spot_peer,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192418,-0.1272722693274159,relative_legacy,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192418,-19.060591717923405,peer,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192418,-49.52875374743412,baseline,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192418,-16.29607706418802,spot_peer,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192472,-32.19280948873623,spot_baseline,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192472,0.0581526834269883,relative_legacy,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192472,-6.009524755210713,peer,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192472,-2.4660399709338816,spot_peer,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192472,-31.471901767850724,baseline,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192924,3.324393336961063,spot_peer,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192924,1.2967784678219845,peer,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192924,0.1282826414079053,relative_legacy,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192924,-20.478428804970743,baseline,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,192924,-24.12704315421372,spot_baseline,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,193275,-46.99292577749161,spot_baseline,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,193275,-13.09107952264078,spot_peer,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,193275,-0.0610039594133122,relative_legacy,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,193275,-38.95726741651523,baseline,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,193275,-12.2364478021205,peer,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,195286,-0.0737135989691039,relative_legacy,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,195286,-34.25671754332593,baseline,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,195286,-16.29607706418802,spot_peer,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,195286,-11.244865023931183,peer,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,195286,-51.45731728297583,spot_baseline,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,204737,-22.09504471625417,spot_baseline,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,204737,2.113311718254882,peer,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,204737,4.783169967569734,spot_peer,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,204737,0.0704218391380993,relative_legacy,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,204737,-9.021653462356367,baseline,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,208405,69.32420372991761,spot_peer,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,208405,65.66929264022153,peer,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,208405,66.63500466296419,baseline,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,208405,1.03879963983469,relative_legacy,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,215725,-32.19280948873623,spot_baseline,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,215725,-27.819553778863657,baseline,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,215725,-3.905517264670295,peer,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,215725,-2.4660399709338816,spot_peer,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,215725,0.0598224407180409,relative_legacy,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,218666,-9.605638287917168,baseline,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,218666,10.045534371913227,peer,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,218666,13.351501184467006,spot_peer,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,218666,0.2664645531525061,relative_legacy,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,218666,-10.15981400078069,spot_baseline,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,218945,-15.200309344505014,spot_baseline,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,218945,-14.342694719978288,baseline,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,218945,6.593247952334267,peer,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,218945,9.732917293477248,spot_peer,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,218945,0.2189034908648858,relative_legacy,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,219886,-17.29130143689894,baseline,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,219886,0.1877123178041375,relative_legacy,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,219886,7.370057047388792,spot_peer,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,219886,4.414717703691665,peer,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,219886,-18.491648284562725,spot_baseline,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,220077,-5.889368905356857,spot_baseline,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,220077,16.417264125582843,spot_peer,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,220077,0.3152476108586635,relative_legacy,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,220077,-5.7802927411213565,baseline,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,220077,12.715049593721618,peer,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,221727,-2.4660399709338816,spot_peer,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,221727,-6.124862325870099,peer,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,221727,0.0573835931436511,relative_legacy,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,221727,-31.566005351967043,baseline,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,221727,-32.19280948873623,spot_baseline,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,222631,-0.0172426896097592,relative_legacy,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,222631,-16.29607706418802,spot_peer,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,222631,-4.647114348630203,baseline,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30193,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-22 13:53:13.876244+00,222631,-1.4705053938877315,peer,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30403 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,182315,-55.017295116496015,peer,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,182315,-147.39311883324118,spot_baseline,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,182315,-65.6345540980481,spot_peer,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,182315,-129.07703965372664,baseline,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,182315,-0.8940990013512975,relative_legacy,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,185690,-164.8371670897218,spot_baseline,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,185690,-0.1038487364090437,relative_legacy,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,185690,-15.05540823069001,baseline,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,185690,-78.1288900601303,spot_peer,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,185690,-7.136574102214199,peer,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,185699,-18.44245711374277,spot_baseline,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,185699,18.360297787069225,peer,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,185699,26.72662642423516,spot_peer,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,185699,0.1433545685100385,relative_legacy,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,185699,-12.060649306021826,baseline,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,187708,-2.320176247710651,baseline,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,187708,-4.097178105630618,spot_baseline,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,187708,0.1802935862114326,relative_legacy,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,187708,37.00146244634782,spot_peer,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,187708,21.32877924171936,peer,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,188107,28.293396327149885,spot_baseline,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,188107,23.773756026575597,baseline,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,188107,60.20127896930665,spot_peer,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,188107,53.38990885532853,peer,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,188107,0.6107558499729747,relative_legacy,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,188389,1.4094688827979365,relative_legacy,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,188389,92.89553169797748,baseline,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,188389,97.81956296816516,spot_baseline,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,188389,109.99954089774596,spot_peer,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,188389,112.7342060912825,peer,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,189585,-173.6965594166206,spot_baseline,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,189585,-171.5136748653156,baseline,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,189585,-79.198281731719,peer,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,189585,-84.47444830009009,spot_peer,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,189585,-1.228935002474503,relative_legacy,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,189588,-0.81952626070799,relative_legacy,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,189588,-54.747300813406106,spot_peer,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,189588,-130.29305327007648,baseline,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,189588,-49.3165516199638,peer,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,189588,-132.19280948873626,spot_baseline,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,190710,-64.7443031724183,baseline,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,190710,-68.96598793878492,spot_baseline,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,190710,-0.2047776952645837,relative_legacy,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,190710,-4.776208180771425,peer,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,190710,-9.460957950520012,spot_peer,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,190772,-46.507284139732526,baseline,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,190772,-0.5060503096569943,peer,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,190772,-0.1252142439711454,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,190772,-3.0005210624488625,spot_peer,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,190772,-59.94620704162715,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191026,54.45537242051897,spot_baseline,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191026,78.93984893520198,spot_peer,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191026,14.041757804713876,peer,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191026,8.577507263510768,baseline,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191026,0.1371555039489776,relative_legacy,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191046,4.774147846082628,baseline,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191046,49.784793393370194,spot_peer,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191046,16.903521424452002,peer,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191046,0.1252662712530181,relative_legacy,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191046,13.750352374993504,spot_baseline,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191284,-8.11052110878699,peer,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191284,-0.2293907546121167,relative_legacy,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191284,-73.69655941662059,spot_baseline,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191284,-55.83457206690095,baseline,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191284,-12.849239642229072,spot_peer,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191471,-67.87650558214496,baseline,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191471,-31.689133844271065,spot_peer,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191471,-100.0,spot_baseline,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191471,-20.606677417858208,peer,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191471,-0.3970853941036528,relative_legacy,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191935,64.06479451972241,baseline,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191935,0.9163459104204028,relative_legacy,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191935,73.88526587568151,peer,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191935,95.60566524124027,spot_baseline,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191935,108.4138320313644,spot_peer,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191975,-58.85896550450758,baseline,jkraybill_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191975,-22.973881839450176,spot_peer,jkraybill_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191975,-14.546639973332278,peer,jkraybill_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191975,-0.31286516151747,relative_legacy,jkraybill_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,191975,-87.83214434117481,spot_baseline,jkraybill_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192049,80.27982357350459,baseline,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192049,106.2609763847374,spot_peer,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192049,95.69198158366956,peer,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192049,1.1906897676694348,relative_legacy,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192418,67.04704880856403,spot_peer,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192418,0.8237724890211827,relative_legacy,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192418,70.21216766177557,peer,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192418,36.44188768798917,baseline,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192472,0.5586207330580129,relative_legacy,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192472,8.406426478847456,spot_baseline,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192472,8.2356004307303,baseline,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192472,50.95396362758751,peer,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192472,45.95719531973412,spot_peer,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192924,-51.45731728297583,spot_baseline,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192924,5.197665542088247,peer,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192924,-0.0593559974665228,relative_legacy,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192924,-43.75385660010834,baseline,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,192924,3.079663939920934,spot_peer,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,193275,-117.13684183119813,spot_baseline,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,193275,-43.96343256323434,spot_peer,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,193275,-35.84986493151744,peer,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,193275,-0.6280329922982036,relative_legacy,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,193275,-100.91949031255852,baseline,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,195286,-132.19280948873626,spot_baseline,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,195286,-0.6080788368844944,relative_legacy,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,195286,-88.15522324151145,baseline,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,195286,-35.76930355648618,peer,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,195286,-54.747300813406106,spot_peer,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,204737,50.99491463043107,spot_baseline,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,204737,0.3192978150751363,relative_legacy,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,204737,31.1121611343714,peer,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,204737,76.4612888225343,spot_peer,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,204737,20.92681089678321,baseline,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,208405,-1.226857590003698,relative_legacy,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,208405,-79.01558902992426,peer,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,208405,-170.68416314260492,baseline,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,208405,-84.47444830009009,spot_peer,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,208405,-173.6965594166206,spot_baseline,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,215725,5.434886899362073,peer,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,215725,-44.49933596824571,baseline,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,215725,3.079663939920934,spot_peer,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,215725,-0.0585996199457335,relative_legacy,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,218666,-29.209012406505213,peer,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,218666,-35.049863653845605,spot_peer,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,218666,-104.69210473874926,spot_baseline,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,218666,-99.22116728769052,baseline,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,218666,-0.5405897275512059,relative_legacy,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,218945,-0.4961206522205912,relative_legacy,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,218945,-25.94745818761604,peer,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,218945,-94.42439053124852,baseline,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,218945,-31.689133844271065,spot_peer,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,218945,-100.0,spot_baseline,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,219886,-204.7610301056084,baseline,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,219886,-1.582445609342596,relative_legacy,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,219886,-111.48214059397894,spot_peer,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,219886,-211.40352432460304,spot_baseline,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,219886,-104.56349863538782,peer,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,220077,-50.62196020792869,baseline,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,220077,-0.0257372316826122,relative_legacy,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,220077,3.079663939920934,spot_peer,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,220077,8.437564681411061,peer,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,221727,-100.0,spot_baseline,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,221727,-0.5034143835870958,relative_legacy,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,221727,-31.689133844271065,spot_peer,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,221727,-98.05065665760644,baseline,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,221727,-26.307608001024743,peer,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,222631,-1.806993901251816,peer,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,222631,-0.0291174020021641,relative_legacy,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,222631,-83.65012677171204,spot_baseline,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,222631,-7.565895637645842,baseline,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30194,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-22 13:53:13.91908+00,222631,-19.97850302921406,spot_peer,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30404 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,182315,-139.59286763311397,spot_baseline,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,182315,-122.55301046042656,baseline,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,182315,-0.1929104076789246,relative_legacy,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,182315,-11.045847671452371,spot_peer,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,182315,-11.813369181390986,peer,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,185690,-143.8307278601691,spot_baseline,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,185690,-13.622098822599115,baseline,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,185690,-14.084600293511404,spot_peer,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,185690,-0.0110221839591275,relative_legacy,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,185690,-1.3334447654669557,peer,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,185699,-8.169442117490101,baseline,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,185699,80.42336791364986,spot_peer,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,185699,0.7416538693546758,relative_legacy,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,185699,52.89750800454424,peer,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,185699,-12.029423371771196,spot_baseline,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,187708,-22.69404055054887,peer,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,187708,-35.49985919533823,spot_peer,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,187708,-0.2965367930381369,relative_legacy,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,187708,-173.6965594166206,spot_baseline,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,187708,-103.88420932198603,baseline,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,188107,-181.60052755530236,baseline,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,188107,-54.36070989816115,spot_peer,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,188107,-0.7365834477013669,relative_legacy,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,188107,-51.74704713956066,peer,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,188107,-200.0,spot_baseline,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,188389,19.218410013891983,peer,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,188389,-95.73556625915066,spot_baseline,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,188389,0.2465679587399589,relative_legacy,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,188389,-93.36977233460952,baseline,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,188389,20.401977977855022,spot_peer,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,189585,-98.82596102458874,baseline,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,189585,15.147442713341468,peer,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,189585,0.1919636987775442,relative_legacy,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,189585,17.344170849419406,spot_peer,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,189585,-100.0,spot_baseline,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,189588,-35.49985919533823,spot_peer,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,189588,-0.5351403126309687,relative_legacy,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,189588,-171.37226774144202,baseline,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,189588,-173.6965594166206,spot_baseline,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,189588,-37.81769295643576,peer,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,190710,-22.551947855268637,spot_peer,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,190710,-146.47197442295888,baseline,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,190710,-0.3337874380263025,relative_legacy,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,190710,-155.6393348524385,spot_baseline,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,190710,-23.326185264339657,peer,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,190772,0.0996763134832315,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,190772,-105.88936890535685,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,190772,8.229991971682628,peer,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,190772,13.1212058990482,spot_peer,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,190772,-82.88668461271884,baseline,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191026,17.303581129735022,spot_peer,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191026,-100.05660663438977,spot_baseline,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191026,0.033285933378396,relative_legacy,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191026,-23.831022094159916,baseline,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191026,1.25164761368557,peer,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191046,-0.6948124008818903,relative_legacy,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191046,-51.85451062347476,peer,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191046,-115.40584175828464,baseline,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191046,-332.1928094887361,spot_baseline,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191046,-149.1494062989357,spot_peer,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191284,11.128054700407542,peer,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191284,-100.0,spot_baseline,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191284,17.344170849419406,spot_peer,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191284,0.1442951165422966,relative_legacy,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191284,-75.76160328228164,baseline,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191471,-26.24016236906438,peer,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191471,-35.49985919533823,spot_peer,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191471,-0.357051343646257,relative_legacy,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191471,-173.6965594166206,spot_baseline,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191471,-118.16312172480352,baseline,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191935,23.981243316859448,baseline,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191935,1.0573974708625884,relative_legacy,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191935,35.61438102252753,spot_baseline,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191935,75.55828619973052,peer,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,191935,114.58630103819227,spot_peer,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192049,-115.0155801952894,baseline,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192049,-7.103628603705852,peer,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192049,-5.739644803774723,spot_peer,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192049,-0.1285255153200858,relative_legacy,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192049,-132.19280948873626,spot_baseline,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192418,-167.3084991460369,baseline,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192418,-36.56364145284655,peer,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192418,-0.512927396998108,relative_legacy,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192418,-35.49985919533823,spot_peer,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192472,-1.6151766659368127,relative_legacy,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192472,-114.34193354501728,spot_peer,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192472,-116.43073055162702,peer,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192472,-279.1152952389147,baseline,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192472,-283.65012677171217,spot_baseline,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192924,17.344170849419406,spot_peer,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192924,0.1457763392056033,relative_legacy,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192924,12.810116934974316,peer,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192924,-100.0,spot_baseline,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,192924,-85.30866818405963,baseline,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,193275,0.1934818435818912,relative_legacy,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,193275,-97.14308478032292,spot_baseline,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,193275,19.392718500748344,spot_peer,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,193275,15.817537460020056,peer,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,193275,-86.48960379226587,baseline,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,195286,-0.0711673759787779,relative_legacy,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,195286,-132.19280948873626,spot_baseline,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,195286,-88.44688515440293,baseline,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,195286,-5.739644803774723,spot_peer,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,195286,-5.779209354420894,peer,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,204737,-5.739644803774723,spot_peer,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,204737,-132.19280948873626,spot_baseline,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,204737,0.0,relative_legacy,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,204737,-54.78175589133105,baseline,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,204737,-2.668892892769444,peer,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,208405,107.90990229982285,spot_peer,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,208405,25.881032736085928,baseline,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,208405,1.4355733924585763,relative_legacy,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,208405,105.70008024889052,peer,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,215725,0.5699822614049438,relative_legacy,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,215725,43.42203768114917,peer,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,215725,52.151643603338,spot_peer,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,215725,-44.54094853887002,baseline,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,218666,1.1619595768210749,relative_legacy,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,218666,1.6391096321913263,baseline,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,218666,1.72092900322231,spot_baseline,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,218666,90.28304168651104,spot_peer,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,218666,85.10739720785276,peer,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,218945,-164.23834045836833,baseline,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,218945,-0.5037237421760287,relative_legacy,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,218945,-173.6965594166206,spot_baseline,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,218945,-35.49985919533823,spot_peer,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,218945,-35.82555316898856,peer,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,219886,-80.96942006863999,spot_peer,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,219886,-1.1160767792894364,relative_legacy,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,219886,-237.1086457338215,spot_baseline,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,219886,-80.39201315817876,peer,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,219886,-227.0654610429181,baseline,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,220077,17.344170849419406,spot_peer,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,220077,-98.93944425577368,baseline,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,220077,0.1918785865303908,relative_legacy,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,220077,15.138391181025296,peer,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,220077,-100.0,spot_baseline,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,221727,52.151643603338,spot_peer,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,221727,49.78933540387716,peer,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,221727,-50.48118279552282,baseline,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,221727,0.6684507243648337,relative_legacy,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,222631,-118.44245711374276,spot_baseline,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,222631,0.0124781800812581,relative_legacy,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,222631,4.120028969086492,spot_peer,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,222631,0.3738846977460521,peer,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30196,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-22 13:53:14.004568+00,222631,-10.748424977237534,baseline,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30406 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,182315,-0.1800825596686545,relative_legacy,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,182315,-105.88936890535685,spot_baseline,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,182315,-18.92009015978803,spot_peer,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,182315,-16.759772831485762,peer,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,182315,-93.04957709583434,baseline,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,185690,-11.42973592475532,spot_peer,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,185690,-95.4557029238833,spot_baseline,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,185690,-9.21726405426118,baseline,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,185690,-1.1174291904691926,peer,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,185690,-0.0069168381162345,relative_legacy,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,185699,0.6799740884881426,spot_peer,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,185699,-78.58751946471523,spot_baseline,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,185699,-54.169171798161024,baseline,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,185699,0.980099445292496,peer,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,185699,0.0452137785679705,relative_legacy,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,187708,0.7828552904646421,relative_legacy,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,187708,54.80371623881115,peer,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,187708,45.206823022381066,spot_baseline,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,187708,89.55223424784131,spot_peer,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,187708,27.548757337845597,baseline,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,188107,-132.19280948873634,spot_baseline,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,188107,-121.069896936036,baseline,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,188107,-34.73173078283392,peer,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,188107,-37.803394256304834,spot_peer,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,188107,-0.4112222904792563,relative_legacy,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,188389,0.6489192742801321,relative_legacy,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,188389,46.87399149053425,spot_peer,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,188389,-14.24170446158521,spot_baseline,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,188389,-20.384583811036805,baseline,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,188389,41.942307330035824,peer,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,189585,1.3305861962662169,relative_legacy,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,189585,47.977212792245865,baseline,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,189585,92.13251218733204,peer,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,189585,91.94705605214408,spot_peer,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,189588,-5.086142541368741,peer,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,189588,-0.0018685108316146,relative_legacy,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,189588,-4.820686390456515,spot_peer,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,189588,-85.08385274605241,baseline,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,189588,-86.24964762500649,spot_baseline,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,190772,-136.10795527126552,baseline,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,190772,-52.61343188576797,peer,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,190772,-0.6563362318471773,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,190772,-67.59903747452492,spot_peer,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,190772,-173.6965594166206,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191026,-4.01406932198498,baseline,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191026,-19.29687874517881,spot_baseline,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191026,43.24486955283964,spot_peer,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191026,8.530492156469364,peer,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191026,0.101152453564173,relative_legacy,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191046,20.15681235129259,spot_peer,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191046,0.0736284390547642,relative_legacy,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191046,-51.45731728297583,spot_baseline,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191046,-17.791279953436543,baseline,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191046,6.461010182383313,peer,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191284,-181.3838816580076,spot_peer,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191284,-137.44951699755333,peer,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191284,-1.839499796060937,relative_legacy,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191284,-332.1928094887361,spot_baseline,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191284,-251.6726828311936,baseline,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191471,-88.8968687611256,spot_baseline,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191471,-60.52260633708864,baseline,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191471,-4.13029939579438,peer,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191471,-0.0267870270873525,relative_legacy,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191471,-6.72113289537687,spot_peer,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191935,-43.11591403215823,spot_peer,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191935,-139.59286763311397,spot_baseline,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191935,-28.807742167018063,peer,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191935,-94.22601881662894,baseline,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,191935,-0.3689880452793888,relative_legacy,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192049,84.27158750765147,spot_peer,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192049,1.0704519131998076,relative_legacy,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192049,37.85116232537298,spot_baseline,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192049,32.98152248412756,baseline,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192049,74.0649403984818,peer,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192418,-167.35778455745546,baseline,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192418,-67.59903747452492,spot_peer,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192418,-0.8261255027700687,relative_legacy,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192418,-65.93171738625347,peer,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192472,-54.969667661379134,peer,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192472,-155.6393348524385,spot_baseline,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192472,-0.6859131572815573,relative_legacy,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192472,-54.63571195428856,spot_peer,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192472,-153.42950521435952,baseline,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192924,38.29766575181019,spot_peer,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192924,-22.394624758199896,baseline,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192924,-26.188071121742333,spot_baseline,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192924,33.08887163205447,peer,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,192924,0.4995346037296704,relative_legacy,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,193275,-68.98927886606805,spot_peer,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,193275,-175.6330919033137,spot_baseline,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,193275,-0.8229804623178283,relative_legacy,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,193275,-161.45465144322168,baseline,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,193275,-64.40179368457026,peer,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,195286,-9.485068759552702,peer,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,195286,-14.692097870190176,spot_peer,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,195286,-67.00436375566103,baseline,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,195286,-0.1020260756208729,relative_legacy,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,195286,-100.0,spot_baseline,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,204737,15.752518490486525,baseline,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,204737,34.609170196473954,peer,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,204737,0.4716691162992603,relative_legacy,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,204737,84.27158750765147,spot_peer,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,204737,37.85116232537298,spot_baseline,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,208405,3.947576969550231,peer,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,208405,-73.69655941662059,spot_baseline,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,208405,4.191206226326568,spot_peer,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,208405,-72.56981281643912,baseline,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,208405,0.1216849095907707,relative_legacy,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,215725,1.3979256975029697,relative_legacy,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,215725,112.05607183352896,spot_peer,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,215725,97.8738435185642,peer,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,215725,66.29524792337375,baseline,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,218666,-153.49391841546833,baseline,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,218666,-0.6941787236480593,relative_legacy,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,218666,-56.2340362336684,peer,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,218666,-58.35724148127369,spot_peer,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,218666,-160.8232280044003,spot_baseline,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,218945,-164.3504967208647,baseline,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,218945,-173.6965594166206,spot_baseline,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,218945,-67.59903747452492,spot_peer,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,218945,-0.8109776447930572,relative_legacy,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,218945,-64.54573650376288,peer,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,219886,40.45761904579162,spot_baseline,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,219886,1.2376519280139908,relative_legacy,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,219886,39.5830493054734,baseline,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,219886,86.14276913919721,spot_peer,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,219886,85.31387494291315,peer,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,220077,-14.692097870190176,spot_peer,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,220077,-99.07845020846084,baseline,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,220077,-0.1372766151325088,relative_legacy,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,220077,-100.0,spot_baseline,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,220077,-15.021843999184572,peer,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,221727,84.27158750765147,spot_peer,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,221727,1.2151472142385196,relative_legacy,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,221727,83.68226063220666,peer,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,221727,37.117464581022695,baseline,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,222631,-0.0770828348011699,relative_legacy,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,222631,-67.59903747452492,spot_peer,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,222631,-6.144745809906146,peer,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,222631,-173.6965594166206,spot_baseline,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30197,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-22 13:53:14.047876+00,222631,-15.7890000441592,baseline,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30407 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,182315,-61.41500137025428,spot_peer,RyansAGI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,182315,-0.9401641909778208,relative_legacy,RyansAGI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,182315,-51.8675854808444,peer,RyansAGI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,182315,-45.3026943117081,baseline,RyansAGI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,182315,-51.45731728297583,spot_baseline,RyansAGI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,185690,61.35316529179271,spot_baseline,annabot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,185690,1.9438934858162495,peer,annabot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,185690,6.069510609656063,baseline,annabot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,185690,19.57191899027866,spot_peer,annabot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,185690,0.0002238323212678,relative_legacy,annabot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,185699,-9.101595932207262,spot_peer,MWG,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,185699,21.412480535284736,spot_baseline,MWG,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,185699,-0.2348961658246031,relative_legacy,MWG,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,185699,-4.573326582774009,peer,MWG,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,185699,15.10788326021034,baseline,MWG,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,187708,52.60688116675877,spot_baseline,twsummerbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,187708,9.785357339714343,peer,twsummerbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,187708,32.66009960553038,baseline,twsummerbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,187708,-0.0166468108582763,relative_legacy,twsummerbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,187708,13.292940302147889,spot_peer,twsummerbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,188107,54.95137815653612,baseline,Cassie,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,188107,58.496250072115615,spot_baseline,Cassie,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,188107,19.7183886699182,peer,Cassie,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,188107,17.52093259174575,spot_peer,Cassie,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,188107,0.0302326925770113,relative_legacy,Cassie,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,188389,-1.7242056871430955,relative_legacy,Panshul42,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,188389,-103.78016192105927,spot_peer,Panshul42,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,188389,-117.81264095234832,baseline,Panshul42,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,188389,-110.46973786666932,spot_baseline,Panshul42,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,188389,-107.36173105605822,peer,Panshul42,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,189585,57.81694685500637,baseline,mf-bot-1,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,189585,21.57508747505317,peer,mf-bot-1,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,189585,17.52093259174575,spot_peer,mf-bot-1,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,189585,0.0306809638534397,relative_legacy,mf-bot-1,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,189588,17.52093259174575,spot_peer,mf-bot-3,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,189588,0.0305791035110662,relative_legacy,mf-bot-3,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,189588,57.71298396712923,baseline,mf-bot-3,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,189588,21.39645560930887,peer,mf-bot-3,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,190772,-46.22375814130678,peer,Jay_Bailey_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,190772,-61.41500137025428,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,190772,-51.45731728297583,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,190772,-40.36626038960168,baseline,Jay_Bailey_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,190772,-0.83578919510846,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191026,1.127455110960878,baseline,manticAI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191026,-3.96299478740654,peer,manticAI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191026,-0.105244684890652,relative_legacy,manticAI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191026,-10.861761798035555,spot_peer,manticAI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191026,18.96066288557335,spot_baseline,manticAI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191046,30.48425811198209,spot_peer,archipelago,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191046,0.0659715698610098,relative_legacy,archipelago,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191046,26.41179055773079,baseline,archipelago,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191046,10.99971907491391,peer,archipelago,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191284,0.1635559993839454,relative_legacy,000_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191284,25.354710800335454,peer,000_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191284,57.99723813450746,baseline,000_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191284,30.48425811198209,spot_peer,000_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191471,32.89300455042405,spot_peer,HSeldon,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191471,79.90873060740036,spot_baseline,HSeldon,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191471,0.172655397378374,relative_legacy,HSeldon,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191471,54.448710854960126,baseline,HSeldon,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191471,24.295551372164145,peer,HSeldon,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191935,44.36066514756148,spot_baseline,pgodzinai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191935,-0.0685089513855098,relative_legacy,pgodzinai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191935,7.37296172586751,spot_peer,pgodzinai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191935,6.773121394243667,peer,pgodzinai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,191935,30.027088589926663,baseline,pgodzinai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192049,0.1081446470898264,relative_legacy,gnosis-ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192049,59.160578612259165,baseline,gnosis-ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192049,23.91929364403424,peer,gnosis-ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192049,24.205279423851337,spot_peer,gnosis-ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192418,30.48425811198209,spot_peer,InstitutPelFutur,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192418,73.77230477412758,baseline,InstitutPelFutur,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192418,0.2046029306218757,relative_legacy,InstitutPelFutur,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192418,32.99881579754353,peer,InstitutPelFutur,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192472,73.11832415721999,spot_baseline,bestworldbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192472,32.02230852178409,peer,bestworldbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192472,28.018155211561236,spot_peer,bestworldbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192472,72.21428998530087,baseline,bestworldbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192472,0.1749987678126412,relative_legacy,bestworldbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192924,73.63884007034605,spot_baseline,acm_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192924,63.05368681246649,baseline,acm_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192924,28.39183485409615,spot_peer,acm_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192924,0.1564130088025626,relative_legacy,acm_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,192924,27.025741652390387,peer,acm_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,193275,51.70298754519328,baseline,histerio,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,193275,17.687788593016116,peer,histerio,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,193275,55.97365244329827,spot_baseline,histerio,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,193275,0.0062583916842579,relative_legacy,histerio,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,193275,15.70995360642588,spot_peer,histerio,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,195286,-51.45731728297583,spot_baseline,Unwrapped80T,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,195286,-34.535208391304785,baseline,Unwrapped80T,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,195286,-0.7109175570162761,relative_legacy,Unwrapped80T,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,195286,-61.41500137025428,spot_peer,Unwrapped80T,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,195286,-39.67557204601045,peer,Unwrapped80T,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,204737,33.486538716711785,spot_peer,SynapseSeer,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,204737,14.711119145213408,peer,SynapseSeer,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,204737,0.101094137432606,relative_legacy,SynapseSeer,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,204737,33.794322086707474,baseline,SynapseSeer,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,204737,80.73549220576041,spot_baseline,SynapseSeer,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,208405,17.52093259174575,spot_peer,mf-bot-4,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,208405,57.619285235945625,baseline,mf-bot-4,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,208405,0.0307090623942088,relative_legacy,mf-bot-4,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,208405,21.293591535961124,peer,mf-bot-4,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,215725,92.5999418556223,spot_baseline,estr.ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,215725,80.22418001456174,baseline,estr.ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,215725,42.00405603411247,spot_peer,estr.ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,215725,0.3222118431499584,relative_legacy,estr.ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,215725,39.26881049786856,peer,estr.ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,218666,44.44325826612862,baseline,GreeneiBot2,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,218666,8.884980237344033,spot_peer,GreeneiBot2,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,218666,11.711570430641975,peer,GreeneiBot2,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,218666,-0.0844647474961808,relative_legacy,GreeneiBot2,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,218666,46.46682670034443,spot_baseline,GreeneiBot2,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,218945,24.205279423851337,spot_peer,SeidrBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,218945,64.20073684600314,baseline,SeidrBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,218945,0.1183898972061075,relative_legacy,SeidrBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,218945,26.221273786283543,peer,SeidrBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,218945,67.80719051126377,spot_baseline,SeidrBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,219886,-171.42262871923583,spot_peer,SaraBase,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,219886,-191.4646828149069,baseline,SaraBase,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,219886,-159.08652175460796,peer,SaraBase,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,219886,-2.4315757361728094,relative_legacy,SaraBase,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,219886,-204.69210473874924,spot_baseline,SaraBase,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,220077,48.23156816090309,baseline,mmBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,220077,-0.0645821124283383,relative_legacy,mmBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,220077,48.54268271702416,spot_baseline,mmBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,220077,15.264169231227893,peer,mmBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,220077,10.375242330597205,spot_peer,mmBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,221727,2.6997737861045983,spot_peer,mf-bot-5,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,221727,37.15216208206817,baseline,mf-bot-5,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,221727,-0.1719145965419259,relative_legacy,mf-bot-5,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,221727,6.346833421744942,peer,mf-bot-5,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,222631,71.36958148433588,spot_baseline,Grizeu_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,222631,26.76272858499695,spot_peer,Grizeu_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,222631,0.0091242208228614,relative_legacy,Grizeu_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,222631,6.501245644955046,baseline,Grizeu_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30198,"Will the US weekly 30-year fixed mortgage rate be below 7.00% on December 31, 2024, according to Freddie Mac?",2024-11-22 13:53:14.23615+00,222631,2.437888369830397,peer,Grizeu_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30408 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,182315,62.66921428987356,spot_peer,RyansAGI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,182315,55.11365705277523,peer,RyansAGI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,182315,0.3499097957118672,relative_legacy,RyansAGI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,182315,54.89717768831749,baseline,RyansAGI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,182315,62.29303509201767,spot_baseline,RyansAGI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,185690,-29.814048099058148,spot_baseline,annabot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,185690,-2.9842889919497706,baseline,annabot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,185690,-3.3026762344041347,spot_peer,annabot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,185690,-0.0157174879661666,relative_legacy,annabot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,185690,-0.3620977637922596,peer,annabot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,185699,15.964084836424298,spot_peer,MWG,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,185699,9.7757867446221,peer,MWG,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,185699,-2.914634565951651,spot_baseline,MWG,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,185699,-0.1761314729657269,relative_legacy,MWG,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,185699,-2.1092570853616013,baseline,MWG,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,187708,21.66841675399465,peer,twsummerbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,187708,16.791012195780173,baseline,twsummerbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,187708,26.54368960490984,spot_baseline,twsummerbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,187708,0.04069476966565,relative_legacy,twsummerbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,187708,37.06367099091296,spot_peer,twsummerbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,188107,0.773871712118003,peer,Cassie,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,188107,-26.303440583379377,spot_baseline,Cassie,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,188107,-0.4105095923407889,relative_legacy,Cassie,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,188107,-25.332483466608704,baseline,Cassie,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,188107,-0.7881962761406626,spot_peer,Cassie,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,188389,0.7197704731823005,relative_legacy,Panshul42,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,188389,84.32779608646466,peer,Panshul42,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,188389,87.68757217721236,baseline,Panshul42,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,188389,83.28311486622661,spot_peer,Panshul42,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,188389,91.07326619029126,spot_baseline,Panshul42,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,189585,-148.25688635895574,spot_peer,mf-bot-1,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,189585,-146.6894983390656,peer,mf-bot-1,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,189585,-232.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,189585,-2.457531715833744,relative_legacy,mf-bot-1,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,189585,-229.50579348574132,baseline,mf-bot-1,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,189588,49.06250581243626,spot_peer,mf-bot-3,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,189588,0.2617129162713876,relative_legacy,mf-bot-3,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,189588,51.044767324653264,peer,mf-bot-3,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,189588,43.29594072761063,spot_baseline,mf-bot-3,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,189588,42.7180960219698,baseline,mf-bot-3,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,190710,72.88328386899224,spot_peer,Bot_Pepa,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,190710,76.55347463629771,spot_baseline,Bot_Pepa,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,190710,70.53454475285872,peer,Bot_Pepa,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,190710,72.302235304221,baseline,Bot_Pepa,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,190710,0.556750320988313,relative_legacy,Bot_Pepa,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,190772,0.1882463772554192,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,190772,46.46682670034443,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,190772,38.99245760126794,peer,Jay_Bailey_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,190772,51.33365950670968,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,190772,36.49305042744209,baseline,Jay_Bailey_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191026,-47.49073989655505,spot_baseline,manticAI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191026,-0.1353703691729519,relative_legacy,manticAI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191026,-12.152434099225376,baseline,manticAI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191026,-15.963643618168293,spot_peer,manticAI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191026,-5.374617089751336,peer,manticAI,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191046,0.2139197220437794,relative_legacy,archipelago,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191046,26.516754650974725,baseline,archipelago,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191046,24.29462318315432,peer,archipelago,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191046,72.88328386899224,spot_peer,archipelago,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191284,58.496250072115615,spot_baseline,000_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191284,59.9497590970783,spot_peer,000_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191284,0.2749031764365601,relative_legacy,000_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191284,43.93719621221963,peer,000_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191284,44.31672160761983,baseline,000_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191471,22.7401860710109,baseline,HSeldon,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191471,41.933242425451255,spot_peer,HSeldon,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191471,26.763444174185004,peer,HSeldon,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191471,33.34237337251918,spot_baseline,HSeldon,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191471,0.084999426698083,relative_legacy,HSeldon,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191935,0.3187434815517458,relative_legacy,pgodzinai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191935,43.4316748811433,peer,pgodzinai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191935,46.00829620799637,baseline,pgodzinai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191935,67.80719051126377,spot_baseline,pgodzinai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191935,66.61873961462733,spot_peer,pgodzinai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191975,-52.03108446069128,baseline,jkraybill_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191975,-70.36894392919076,spot_baseline,jkraybill_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191975,-32.3502049937148,spot_peer,jkraybill_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191975,-0.6801201165102386,relative_legacy,jkraybill_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,191975,-25.81204219486096,peer,jkraybill_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192049,45.869267543157285,peer,gnosis-ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192049,42.44979250770359,baseline,gnosis-ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192049,52.8204957100933,spot_peer,gnosis-ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192049,0.2236501334072581,relative_legacy,gnosis-ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192418,-106.35882518777876,spot_peer,InstitutPelFutur,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192418,-167.43087367125932,baseline,InstitutPelFutur,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192418,-102.1617187936634,peer,InstitutPelFutur,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192418,-1.8318576551914056,relative_legacy,InstitutPelFutur,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192472,-60.39673592526009,peer,bestworldbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192472,-112.02942337177116,spot_baseline,bestworldbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192472,-62.1896103223283,spot_peer,bestworldbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192472,-1.269494323242509,relative_legacy,bestworldbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192472,-111.30943194815674,baseline,bestworldbot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192924,26.00831058345541,baseline,acm_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192924,39.77866022583157,spot_peer,acm_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192924,33.45658080502139,peer,acm_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192924,30.334239448733086,spot_baseline,acm_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,192924,0.0615479642360085,relative_legacy,acm_bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,193275,-19.100373616807705,spot_peer,histerio,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,193275,-51.8701058452435,spot_baseline,histerio,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,193275,-48.950867763751845,baseline,histerio,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,193275,-0.6563785939709623,relative_legacy,histerio,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,193275,-17.33320838997069,peer,histerio,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,195286,7.164444641259257,spot_peer,Unwrapped80T,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,195286,-10.21780168950284,baseline,Unwrapped80T,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,195286,-0.2414148056734746,relative_legacy,Unwrapped80T,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,195286,2.885852933054925,peer,Unwrapped80T,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,195286,-15.200309344504996,spot_baseline,Unwrapped80T,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,204737,-30.98651127941488,baseline,SynapseSeer,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,204737,-34.73361652991773,spot_peer,SynapseSeer,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,204737,-73.69655941662063,spot_baseline,SynapseSeer,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,204737,-15.794701577785526,peer,SynapseSeer,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,204737,-0.3807761418049469,relative_legacy,SynapseSeer,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,208405,83.49932062837635,baseline,mf-bot-4,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,208405,0.6674913107601224,relative_legacy,mf-bot-4,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,208405,80.52632474197583,peer,mf-bot-4,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,208405,78.78965329912027,spot_peer,mf-bot-4,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,215725,-15.200309344504996,spot_baseline,estr.ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,215725,-13.175321420436314,baseline,estr.ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,215725,7.164444641259257,spot_peer,estr.ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,215725,-0.3288612594050022,relative_legacy,estr.ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,215725,5.465483580267626,peer,estr.ai,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,218666,-34.24491180357388,peer,GreeneiBot2,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,218666,-0.892747912077757,relative_legacy,GreeneiBot2,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,218666,-73.4376929258608,baseline,GreeneiBot2,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,218666,-76.61119398257227,spot_baseline,GreeneiBot2,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,218666,-36.821229619394735,spot_peer,GreeneiBot2,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,218945,-76.6316777010947,spot_peer,SeidrBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,218945,-132.19280948873623,spot_baseline,SeidrBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,218945,-1.4164618777368625,relative_legacy,SeidrBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,218945,-72.28448538154889,peer,SeidrBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,218945,-125.24948703428024,baseline,SeidrBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,219886,-188.519199561494,baseline,SaraBase,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,219886,-2.0439568263830816,relative_legacy,SaraBase,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,219886,-123.03095073001757,spot_peer,SaraBase,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,219886,-117.65015646251446,peer,SaraBase,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,219886,-196.97345571423304,spot_baseline,SaraBase,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,220077,-173.0788404564854,baseline,mmBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,220077,-1.8844622588816888,relative_legacy,mmBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,220077,-105.30103161889404,peer,mmBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,220077,-106.35882518777876,spot_peer,mmBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,220077,-173.6965594166206,spot_baseline,mmBot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,221727,72.88328386899224,spot_peer,mf-bot-5,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,221727,75.12259314790583,baseline,mf-bot-5,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,221727,74.24633827799967,peer,mf-bot-5,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,221727,0.5852396501483886,relative_legacy,mf-bot-5,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,222631,-0.1445926030960082,relative_legacy,Grizeu_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,222631,-173.6965594166206,spot_baseline,Grizeu_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,222631,-15.84595071709408,baseline,Grizeu_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,222631,-106.35882518777876,spot_peer,Grizeu_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30199,Will the Boeing Starliner Commercial Crew program make it to 2025 without being cancelled?,2024-11-22 13:53:14.279209+00,222631,-9.702879020252482,peer,Grizeu_Bot,True,yes,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30409 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,182315,54.59683691052925,spot_baseline,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,182315,48.18463336090348,baseline,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,182315,0.5261554455840143,relative_legacy,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,182315,57.88822057890924,spot_peer,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,182315,49.50218445407752,peer,RyansAGI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,185690,1.5433681016864675,baseline,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,185690,0.0,relative_legacy,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,185690,3.001714241062692,peer,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,185690,29.572759377201425,spot_peer,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,185690,15.107947302881133,spot_baseline,annabot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,185699,60.6842901362802,spot_peer,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,185699,58.496250072115615,spot_baseline,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,185699,43.78998005768144,peer,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,185699,0.4566749296073337,relative_legacy,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,185699,42.89128285173369,baseline,MWG,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,187708,0.2135407189442027,relative_legacy,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,187708,16.735725285801777,baseline,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,187708,24.157261504298077,peer,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,187708,37.25507090389492,spot_peer,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,187708,25.821738953601795,spot_baseline,twsummerbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,188107,57.17723306638214,spot_peer,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,188107,53.605290024021,spot_baseline,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,188107,0.5441395439123049,relative_legacy,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,188107,53.33979683969168,peer,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,188107,52.07828218975587,baseline,Cassie,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,188389,0.9313780061230053,relative_legacy,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,188389,90.30032417463326,baseline,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,188389,81.2617687178834,peer,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,188389,85.1383016601661,spot_peer,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,188389,92.5999418556223,spot_baseline,Panshul42,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,189585,-100.0,spot_baseline,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,189585,-56.04267871905811,peer,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,189585,-52.96525696731735,spot_peer,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,189585,-0.9549891571063794,relative_legacy,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,189585,-98.8448937311192,baseline,mf-bot-1,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,189588,-0.9535079975945314,relative_legacy,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,189588,-98.67057385510334,baseline,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,189588,-52.96525696731735,spot_peer,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,189588,-55.87942164025647,peer,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,189588,-100.0,spot_baseline,mf-bot-3,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,190710,46.46682670034443,spot_baseline,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,190710,52.058606452930086,spot_peer,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,190710,0.4548820647674635,relative_legacy,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,190710,46.90205446420653,peer,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,190710,43.93898998260738,baseline,Bot_Pepa,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,190772,-50.62606831720708,baseline,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,190772,-27.42800752612504,spot_peer,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,190772,-0.4760752732872242,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,190772,-22.985002216093516,peer,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,190772,-64.38561897747249,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191026,33.571839727992824,spot_baseline,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191026,42.81227142198932,spot_peer,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191026,0.0199841546574194,relative_legacy,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191026,4.769897893812703,baseline,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191026,7.22703141568277,peer,manticAI,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191046,0.2964325191822625,relative_legacy,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191046,29.353831879895896,baseline,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191046,27.64926902985001,peer,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191046,84.79969065549501,spot_baseline,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191046,79.5451408391031,spot_peer,archipelago,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191284,-232.1928094887363,spot_baseline,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191284,-73.87951570315573,peer,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191284,-147.75395336809206,spot_peer,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191284,-1.1887021633742072,relative_legacy,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191284,-120.964820246658,baseline,000_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191471,-0.0983259322345291,relative_legacy,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191471,1.7706926786697987,peer,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191471,-14.853466365948668,baseline,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191471,3.137255876685593,spot_peer,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191471,-21.75914350726266,spot_baseline,HSeldon,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191935,47.46014825594728,spot_peer,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191935,40.05379295837285,spot_baseline,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191935,32.07006279345186,peer,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191935,27.240849060477025,baseline,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,191935,0.3220679300883757,relative_legacy,pgodzinai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192049,-152.19202361845444,baseline,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192049,-95.36518655974982,peer,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192049,-105.809287012075,spot_peer,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192049,-1.474656409235651,relative_legacy,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192049,-173.6965594166206,spot_baseline,gnosis-ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192418,-105.809287012075,spot_peer,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192418,-105.99205327061196,peer,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192418,-167.46755167990025,baseline,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192418,-1.6551139229587752,relative_legacy,InstitutPelFutur,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192472,52.47543356067845,peer,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192472,50.6238845817727,baseline,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192472,0.5342644267641036,relative_legacy,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192472,50.58909297299573,spot_baseline,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192472,55.01447256783243,spot_peer,bestworldbot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192924,-44.61480318188743,spot_baseline,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192924,-13.233309229443533,peer,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192924,-38.32190091772678,baseline,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192924,-13.251367637076957,spot_peer,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,192924,-0.3296436903102654,relative_legacy,acm_bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,193275,0.2776098847346164,relative_legacy,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,193275,34.173963040609536,peer,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,193275,26.009126207064405,baseline,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,193275,38.80038508757076,spot_peer,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,193275,27.9768421593595,spot_baseline,histerio,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,195286,-173.6965594166206,spot_baseline,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,195286,-105.809287012075,spot_peer,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,195286,-1.119618534729225,relative_legacy,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,195286,-117.15348111193292,baseline,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,195286,-71.9686491049765,peer,Unwrapped80T,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,204737,-34.59430436298636,peer,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,204737,-0.5687725036715063,relative_legacy,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,204737,-59.62485360441333,baseline,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,204737,-82.44997645341711,spot_peer,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,204737,-141.119543298445,spot_baseline,SynapseSeer,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,208405,-132.19280948873626,spot_baseline,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,208405,-78.76240812285181,peer,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,208405,-76.04907262051148,spot_peer,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,208405,-130.16273356484731,baseline,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,208405,-1.2702451589270225,relative_legacy,mf-bot-4,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,215725,-27.91498237591792,baseline,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,215725,-5.624038367737729,peer,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,215725,-0.2278597094232225,relative_legacy,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,215725,-4.344191872930906,spot_peer,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,215725,-32.19280948873623,spot_baseline,estr.ai,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,218666,73.11832415721999,spot_baseline,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,218666,70.23826567449485,baseline,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,218666,0.720129054142416,relative_legacy,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,218666,66.29324736411169,peer,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,218666,71.16903092182719,spot_peer,GreeneiBot2,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,218945,0.4349024291467557,relative_legacy,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,218945,41.87795554778758,baseline,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,218945,45.503016662971056,peer,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,218945,50.54838582315566,spot_peer,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,218945,44.36066514756145,spot_baseline,SeidrBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,219886,71.008456129098,spot_baseline,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,219886,69.65615256833097,spot_peer,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,219886,66.59070439448908,peer,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,219886,69.90750324614947,baseline,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,219886,0.7301399827360562,relative_legacy,SaraBase,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,220077,4.377609305130116,peer,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,220077,7.840260091522526,spot_peer,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,220077,-0.1235284671149588,relative_legacy,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,220077,-15.175237240895797,baseline,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,220077,-15.200309344505014,spot_baseline,mmBot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,221727,-20.919155401213857,peer,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,221727,-0.4765582470097231,relative_legacy,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,221727,-18.15778421339878,spot_peer,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,221727,-50.48532848458338,baseline,mf-bot-5,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,222631,-9.138193796354312,baseline,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,222631,-52.96525696731735,spot_peer,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,222631,-0.1051878729954267,relative_legacy,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,222631,-4.840067826410514,peer,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30200,"Will Virgin Galactic fail to make make any new posts on its News page before January 1, 2025? ",2024-11-22 13:53:14.315308+00,222631,-100.0,spot_baseline,Grizeu_Bot,True,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,2024-11-23 15:30:00+00,30410 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,182315,14.407255489275704,spot_peer,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,182315,89.53026213333065,spot_baseline,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,182315,53.47723263159612,baseline,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,182315,9.440921358708303,peer,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,182315,0.0693258469925929,relative_legacy,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,185690,82.98495598446907,spot_baseline,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,185690,9.70836425404114,spot_peer,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,185690,0.0011296728516257,relative_legacy,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,185690,7.681972007335784,baseline,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,185690,0.9488241558812212,peer,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,185699,92.5999418556223,spot_baseline,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,185699,57.725850350545706,baseline,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,185699,16.610986042744493,spot_peer,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,185699,11.277888266804304,peer,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,185699,0.091846350009231,relative_legacy,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,187708,12.60987539605644,spot_peer,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,187708,0.0355251946982513,relative_legacy,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,187708,35.2287092284299,baseline,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,187708,87.02660703959828,spot_baseline,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,187708,5.691848406029332,peer,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,188107,88.75252707415875,spot_baseline,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,188107,44.21467653312627,baseline,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,188107,7.550451735719486,peer,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,188107,13.848917594949231,spot_peer,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,188107,0.0539027076580048,relative_legacy,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,189585,47.90533377506949,baseline,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,189585,-15.017827660770768,spot_peer,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,189585,-0.2700011528996819,relative_legacy,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,189585,-11.840838912313965,peer,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,189588,-0.2200993912867445,relative_legacy,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,189588,52.80209598572318,baseline,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,189588,-11.38336953746065,spot_peer,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,189588,53.60529002402098,spot_baseline,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,189588,-8.162414111240391,peer,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,190710,73.35500648734737,baseline,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,190710,6.302563667516074,spot_peer,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,190710,8.792958439955664,peer,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,190710,0.0125177513788238,relative_legacy,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,190710,78.24085649273731,spot_baseline,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,190772,16.610986042744493,spot_peer,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,190772,72.09849597058334,baseline,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,190772,0.1167524333366365,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,190772,92.5999418556223,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,190772,14.652980109338586,peer,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191026,84.12178339077481,spot_baseline,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191026,1.7279725940254709,peer,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191026,13.448215940287374,baseline,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191026,10.524495419486117,spot_peer,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191026,0.0037897519694284,relative_legacy,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191046,34.466372033960965,baseline,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191046,0.0529233291278729,relative_legacy,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191046,6.7209617171796,peer,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191046,16.610986042744493,spot_peer,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191284,76.55347463629771,spot_baseline,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191284,3.2969729802733827,peer,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191284,39.74765477376964,baseline,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191284,-0.0068704528740874,relative_legacy,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191284,5.091188120614123,spot_peer,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191471,-0.0305481772457994,relative_legacy,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191471,2.6250852201932595,spot_peer,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191471,2.662727597312557,peer,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191471,73.11832415721999,spot_baseline,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191471,47.599333258875554,baseline,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191935,5.091188120614123,spot_peer,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191935,76.55347463629771,spot_baseline,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191935,4.357820250558121,peer,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191935,-0.0081856745034742,relative_legacy,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191935,50.44449797677455,baseline,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191975,-0.0639979246042183,relative_legacy,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191975,-17.059936888727997,spot_peer,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191975,2.7036843340072627,peer,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191975,61.204076278550055,baseline,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,191975,45.698132924901074,spot_baseline,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192049,-15.017827660770768,spot_peer,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192049,-11.616536771304729,peer,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192049,-0.265918583246683,relative_legacy,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192049,45.82067295877998,baseline,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192418,-0.171887856078537,relative_legacy,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192418,-7.872137399622221,spot_peer,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192418,-4.608368611649207,peer,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192418,57.66033163289597,baseline,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192472,-56.275261838769744,spot_peer,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192472,-0.8273960900621599,relative_legacy,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192472,-52.781089946006375,peer,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192472,-8.926733809708741,spot_baseline,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192472,-8.68561165695452,baseline,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192924,7.1421745191470185,spot_peer,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192924,79.41038985597478,spot_baseline,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192924,0.0174380015552632,relative_legacy,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192924,8.597425966109352,peer,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,192924,69.89863903143464,baseline,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,193275,1.2546539569982922,peer,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,193275,-0.0351541125439439,relative_legacy,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,193275,1.2432748945159309,spot_peer,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,193275,71.19353569789214,spot_baseline,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,193275,36.93079094864421,baseline,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,204737,10.585437651616957,baseline,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,204737,-30.9834337857368,spot_peer,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,204737,-11.961987429815228,peer,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,204737,26.303440583379377,spot_baseline,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,204737,-0.2090267533747587,relative_legacy,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,208405,11.011166696894518,spot_peer,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,208405,0.0861084654587406,relative_legacy,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,208405,83.25017330502575,baseline,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,208405,14.364217522395704,peer,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,215725,58.496250072115615,spot_baseline,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,215725,-7.872137399622221,spot_peer,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,215725,-4.678179447756359,peer,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,215725,46.01860666840135,baseline,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,215725,-0.1497641185081255,relative_legacy,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,218666,-0.059548568845778,relative_legacy,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,218666,3.4921308553408883,peer,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,218666,0.8631958310162784,spot_peer,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,218666,70.66410573094088,spot_baseline,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,218666,65.65310649790251,baseline,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,218945,-22.693296205263383,spot_peer,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,218945,37.85116232537298,spot_baseline,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,218945,-0.3726888127233101,relative_legacy,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,218945,-19.392875899454253,peer,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,218945,36.90876493374315,baseline,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,219886,3.320215070501869,baseline,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,219886,0.6475665773097253,peer,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,219886,0.004317125162481,relative_legacy,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,219886,95.37047795784292,spot_baseline,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,219886,18.59996066234875,spot_peer,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,220077,74.03474839857721,baseline,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,220077,5.091188120614123,spot_peer,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,220077,0.0026668137962988,relative_legacy,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,220077,8.176530688102732,peer,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,221727,5.091188120614123,spot_peer,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,221727,74.94517332362756,baseline,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,221727,8.372483845753239,peer,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,221727,0.0046984218342638,relative_legacy,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,222631,5.091188120614123,spot_peer,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,222631,4.429383934378663,baseline,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,222631,0.3112697717373207,peer,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,222631,-0.002892209679634,relative_legacy,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30248,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-25 14:01:21.186861+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30455 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,182315,-35.845397091247634,spot_baseline,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,182315,-0.1725587943773424,relative_legacy,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,182315,-13.726959992819104,peer,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,182315,-19.21580557468187,spot_peer,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,182315,-21.446113124976304,baseline,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,185690,2.5057501000633167,peer,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,185690,2.898348665114677,baseline,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,185690,28.422489343408017,spot_peer,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,185690,0.0270676474712765,relative_legacy,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,185690,30.59121701566209,spot_baseline,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,185699,-2.914634565951651,spot_baseline,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,185699,0.0170235379971037,relative_legacy,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,185699,4.397158423350553,spot_peer,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,185699,-1.8739451011376784,baseline,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,185699,0.1999663079853732,peer,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,187708,-2.6444212491557497,peer,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,187708,-3.496792583200249,spot_peer,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,187708,-0.033563627619206,relative_legacy,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,187708,-5.968549634458445,baseline,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,187708,-13.92357973711722,spot_baseline,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,188107,39.68901525685845,spot_baseline,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,188107,16.823908202129484,peer,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,188107,0.2437745243102722,relative_legacy,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,188107,20.48983855855044,baseline,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,188107,34.94605472291336,spot_peer,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,188389,-3.4462448595642883,baseline,Panshul42,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,188389,-0.018164121360863,relative_legacy,Panshul42,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,188389,-1.5778933854969304,spot_peer,Panshul42,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,188389,-1.3525439768596297,peer,Panshul42,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,188389,-11.24747292584125,spot_baseline,Panshul42,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,189585,25.96631602673486,baseline,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,189585,25.34794436591683,spot_peer,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,189585,13.15110043749588,peer,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,189585,0.1681544811476945,relative_legacy,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,189588,71.15049112324398,baseline,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,189588,0.6209310460288269,relative_legacy,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,189588,58.29143379197213,spot_peer,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,189588,46.548724606418,peer,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,189588,72.2466024471091,spot_baseline,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,190710,-118.44245711374276,spot_baseline,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,190710,-85.33084092678958,peer,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,190710,-111.24569640063936,baseline,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,190710,-78.44192896481954,spot_peer,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,190710,-1.176681813740856,relative_legacy,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,190772,7.72560808651297,peer,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,190772,10.728726660750416,baseline,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,190772,16.34676743595515,spot_peer,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,190772,0.119455689207474,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,190772,13.750352374993504,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191026,25.457800557178192,spot_baseline,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191026,24.741579193575458,spot_peer,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191026,0.0500541905921703,relative_legacy,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191026,4.197489843800051,peer,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191026,5.001410397804411,baseline,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191046,0.2179729411562352,relative_legacy,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191046,44.92470294921287,spot_peer,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191046,15.742259219901486,peer,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191046,19.974456362707286,baseline,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191046,53.60529002402098,spot_baseline,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191284,-232.1928094887363,spot_baseline,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191284,-1.1662441196396651,relative_legacy,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191284,-84.97967336599822,peer,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191284,-160.0064834852613,spot_peer,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191284,-120.55486056272848,baseline,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191471,-113.243750402288,baseline,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191471,-80.54228521929991,peer,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191471,-118.06181712924426,spot_peer,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191471,-1.0979147559200406,relative_legacy,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191471,-173.6965594166206,spot_baseline,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191935,67.80719051126377,spot_baseline,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191935,45.12655997681014,baseline,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191935,55.10815875748038,spot_peer,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191935,0.4792109201675147,relative_legacy,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191935,34.020458711939526,peer,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191975,-0.1895832477693656,relative_legacy,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191975,-21.49734245022247,baseline,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191975,-29.91887266588549,spot_peer,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191975,-13.857781410886597,peer,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,191975,-50.77195017886957,spot_baseline,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192049,29.617552565292414,peer,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192049,45.99947922987209,baseline,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192049,0.3917066359510086,relative_legacy,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192049,41.29456641701252,spot_peer,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192418,75.4820115304972,baseline,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192418,49.71716825701839,peer,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192418,0.6636216912006038,relative_legacy,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192418,61.37967135918053,spot_peer,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192472,33.62822447007577,spot_peer,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192472,36.96718481586123,baseline,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192472,0.2847188844735441,relative_legacy,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192472,21.74534288022112,peer,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192924,-79.74339251971956,peer,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192924,-1.0989969418624557,relative_legacy,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192924,-79.86229373846459,spot_peer,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192924,-106.24354293790694,baseline,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,192924,-120.42330522176078,spot_baseline,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,193275,-14.560532224689911,spot_baseline,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,193275,-3.953518604832992,spot_peer,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,193275,-0.0356872351871533,relative_legacy,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,193275,-3.499026680301277,peer,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,193275,-7.59188625710212,baseline,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,204737,0.0849456999569123,relative_legacy,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,204737,6.1616914275694645,baseline,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,204737,5.9880120918563255,peer,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,204737,17.282957317325934,spot_peer,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,204737,15.055967657538112,spot_baseline,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,208405,57.44159119202556,baseline,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,208405,0.4860276545827224,relative_legacy,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,208405,48.43176001911095,spot_peer,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,208405,36.57421594073285,peer,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,215725,-78.7578611633292,baseline,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,215725,-65.2177870844866,spot_peer,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,215725,-0.7781837622745762,relative_legacy,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,215725,-57.5344722783325,peer,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,215725,-100.0,spot_baseline,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,218666,49.36473339752101,spot_baseline,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,218666,0.3993799019947968,relative_legacy,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,218666,46.07851334797383,baseline,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,218666,30.18350638247436,peer,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,218666,41.88401687714745,spot_peer,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,218945,41.29456641701252,spot_peer,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,218945,47.36798480725432,baseline,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,218945,0.3892213181181867,relative_legacy,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,218945,29.4315070084778,peer,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,218945,48.54268271702416,spot_baseline,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,219886,-22.600367488882725,spot_baseline,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,219886,-0.5169548966114415,baseline,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,219886,-9.718472893324382,spot_peer,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,219886,-0.0025968314178805,relative_legacy,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,219886,-0.2222978078679892,peer,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,220077,48.43176001911095,spot_peer,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,220077,56.8921681443403,baseline,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,220077,36.56915364390966,peer,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,220077,0.4860275282434093,relative_legacy,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,220077,58.496250072115615,spot_baseline,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,221727,0.6628038868911843,relative_legacy,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,221727,49.57381766840256,peer,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,221727,74.94540293758453,baseline,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,221727,61.37967135918053,spot_peer,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,222631,-10.093612499857564,baseline,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,222631,-118.06181712924426,spot_peer,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,222631,-0.0973363815022193,relative_legacy,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,222631,-6.881846526601679,peer,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30250,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-25 14:01:21.374931+00,222631,-173.6965594166206,spot_baseline,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30457 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,182315,-12.289473061444877,peer,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,182315,-17.001230266679478,spot_peer,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,182315,-33.324960393509656,baseline,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,182315,-0.3902013878463409,relative_legacy,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,182315,-55.63933485243852,spot_baseline,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,185690,41.53260094369675,spot_baseline,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,185690,52.67579041605485,spot_peer,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,185690,3.985905967103685,baseline,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,185690,0.0941511072797835,relative_legacy,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,185690,5.224069722084912,peer,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,185699,-1.175975082304628,relative_legacy,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,185699,-65.40176896407955,peer,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,185699,-107.97622127374233,baseline,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,185699,-94.97762361596018,spot_peer,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,185699,-164.38561897747246,spot_baseline,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,187708,-66.20035364849842,spot_baseline,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,187708,-11.91166476484204,peer,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,187708,-0.246924573144595,relative_legacy,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,187708,-29.43743272921348,baseline,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,187708,-24.573996200123798,spot_peer,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,188107,-31.595117611559324,peer,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,188107,-0.5961871217162829,relative_legacy,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,188107,-58.46246049519788,baseline,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,188107,-109.95356735509144,spot_baseline,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,188107,-55.9471859116704,spot_peer,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,188389,-264.38561897747246,spot_baseline,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,188389,-166.68250436354074,spot_peer,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,188389,-81.73364638196956,baseline,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,188389,-0.7237027795908287,relative_legacy,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,188389,-51.75712591612656,peer,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,189585,-2.605657606066201,relative_legacy,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,189585,-143.59868871034664,spot_peer,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,189585,-146.22024650766673,peer,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,189585,-229.18806525496197,baseline,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,189585,-232.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,189588,0.5925837055868167,relative_legacy,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,189588,89.29356631791148,spot_peer,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,189588,89.53906679017302,peer,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,189588,91.0716052378334,baseline,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,190710,73.04542869687273,peer,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,190710,71.96608496815188,baseline,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,190710,0.4229548125572486,relative_legacy,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,190710,76.55347463629771,spot_baseline,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,190710,77.78746613409517,spot_peer,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,190772,0.0,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,190772,0.0,baseline,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,190772,15.357232332184063,peer,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,190772,-0.1805778678640638,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,190772,22.89488843800859,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191026,-2.058032888826313,spot_peer,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191026,-6.669201800255454,peer,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191026,-0.0574376621619736,relative_legacy,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191026,-14.78153755469732,baseline,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191026,-34.79947399211992,spot_baseline,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191046,77.78746613409517,spot_peer,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191046,0.3359606094016661,relative_legacy,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191046,28.719854526964284,peer,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191046,28.624774562881136,baseline,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191284,77.78746613409517,spot_peer,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191284,39.1215745201466,peer,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191284,0.3943794347268023,relative_legacy,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191284,39.7461221501961,baseline,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191471,76.55347463629771,spot_baseline,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191471,77.78746613409517,spot_peer,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191471,0.4062415729109488,relative_legacy,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191471,49.9470782499469,baseline,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191471,48.96050895495853,peer,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191935,45.2579666634205,baseline,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191935,0.3491767120846049,relative_legacy,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191935,45.84323623799128,peer,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191935,71.51595353239502,spot_peer,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191935,67.80719051126377,spot_baseline,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191975,-63.18835481086487,spot_baseline,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191975,-22.414246025480157,spot_peer,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191975,0.0015793727271261,relative_legacy,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191975,1.6457040049261438,peer,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,191975,-5.531315513582337,baseline,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192049,83.70040549684849,spot_peer,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192049,0.5019597115603507,relative_legacy,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192049,79.58157484545839,peer,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192049,80.4588330109537,baseline,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192418,-2.028789231617147,relative_legacy,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192418,-101.6540223543296,spot_peer,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192418,-103.6487620134005,peer,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192418,-171.29312007954414,baseline,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192472,71.95103915526973,peer,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192472,68.10617738277493,baseline,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192472,0.3582258372019394,relative_legacy,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192472,72.80104180810784,spot_peer,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192472,69.59938131099001,spot_baseline,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192924,87.49936389329673,spot_baseline,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192924,85.63620297258856,spot_peer,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192924,74.76857822256751,peer,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192924,0.5147951849492635,relative_legacy,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,192924,77.30620217189814,baseline,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,193275,0.3657696638325999,relative_legacy,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,193275,39.18252250858019,peer,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,193275,39.0717916525966,baseline,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,193275,73.69119841433388,spot_peer,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,193275,70.84079834835964,spot_baseline,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,204737,-48.80999230957195,spot_peer,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,204737,-100.0,spot_baseline,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,204737,-0.3406327067108403,relative_legacy,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,204737,-41.09489807983239,baseline,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,204737,-20.84832933782349,peer,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,208405,0.4273668763188799,relative_legacy,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,208405,77.34910874011823,peer,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,208405,75.1285569763842,baseline,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,208405,77.78746613409517,spot_peer,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,215725,67.80719051126377,spot_baseline,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,215725,54.4185144612869,peer,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,215725,53.42445233517475,baseline,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,215725,0.3491767120846049,relative_legacy,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,215725,71.51595353239502,spot_peer,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,218666,-2.669499599328132,relative_legacy,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,218666,-154.0137781946692,peer,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,218666,-159.20105661392424,spot_peer,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,218666,-237.59229560761472,baseline,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,218666,-253.9519529959989,spot_baseline,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,218945,71.51595353239502,spot_peer,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,218945,67.80719051126377,spot_baseline,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,218945,70.41137631253365,peer,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,218945,66.18897561482291,baseline,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,218945,0.3407330937537309,relative_legacy,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,219886,0.0150600525084809,relative_legacy,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,219886,1.042690306715344,peer,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,219886,0.8771735451630156,baseline,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,219886,57.70236119192716,spot_peer,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,219886,48.54268271702416,spot_baseline,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,220077,-173.6965594166206,spot_baseline,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,220077,-101.6540223543296,spot_peer,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,220077,-169.29897744168926,baseline,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,220077,-2.013161424850761,relative_legacy,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,220077,-102.79349350309916,peer,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,221727,-101.6540223543296,spot_peer,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,221727,-170.0463693162139,baseline,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,221727,-2.0225584664482006,relative_legacy,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,221727,-103.22021779210569,peer,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,221727,-173.6965594166206,spot_baseline,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,222631,-173.6965594166206,spot_baseline,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,222631,-5.792900871758941,peer,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,222631,-10.118229906323933,baseline,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,222631,-0.070723762975172,relative_legacy,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30251,"Will Florida Governor Ron Desantis refrain from naming the replacement for Marco Rubio's Senate seat before January 1, 2025?",2024-11-25 14:01:21.410378+00,222631,-101.6540223543296,spot_peer,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,2024-11-26 15:30:00+00,30458 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,182315,-84.48499827889793,peer,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,182315,-1.2995345031814711,relative_legacy,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,182315,-144.27133873909528,spot_peer,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,182315,-116.515411574306,baseline,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,182315,-194.3416471633633,spot_baseline,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,185690,-7.64324320674413,spot_baseline,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,185690,-0.041883508080036,relative_legacy,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,185690,-0.8869039689810696,peer,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,185690,-10.39947082436533,spot_peer,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,185690,-0.7409158308638424,baseline,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,185699,-25.595748587088877,peer,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,185699,-34.40235373951078,baseline,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,185699,-0.4970992643442581,relative_legacy,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,185699,-41.81630039138388,spot_peer,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,185699,-51.45731728297583,spot_baseline,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,187708,-253.951952995999,spot_baseline,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,187708,-187.0148374496548,spot_peer,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,187708,-115.39621792711942,baseline,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,187708,-1.2591560386556595,relative_legacy,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,187708,-83.35148174945209,peer,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,188107,-6.657559809761329,spot_peer,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,188107,-1.3101849608816396,baseline,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,188107,-1.3062835941237765,peer,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,188107,-0.1356258728086359,relative_legacy,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,188107,-2.4247546246677185,spot_baseline,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,188389,9.583995448727231,baseline,Panshul42,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,188389,37.02577395829511,spot_peer,Panshul42,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,188389,0.0099468697934466,relative_legacy,Panshul42,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,188389,58.496250072115615,spot_baseline,Panshul42,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,188389,6.409044499996648,peer,Panshul42,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,189585,22.222238409259926,spot_peer,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,189585,26.329229225273767,peer,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,189585,0.0919790156653435,relative_legacy,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,189585,37.85116232537298,spot_baseline,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,189585,37.35317137440265,baseline,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,189588,89.53026213333065,spot_baseline,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,189588,88.1325930585332,baseline,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,189588,0.6004589918955423,relative_legacy,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,189588,63.635554521728864,peer,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,189588,59.27867529797912,spot_peer,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,190710,46.767643981036194,peer,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,190710,65.47769420078295,baseline,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,190710,69.59938131099001,spot_baseline,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,190710,0.3763558109693515,relative_legacy,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,190710,44.98726097237736,spot_peer,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,190772,44.86203783049842,peer,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,190772,0.4183673595209424,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,190772,63.785312923353175,baseline,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,190772,53.56184646952572,spot_peer,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,190772,81.55754288625727,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191026,7.76235191160763,baseline,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191026,50.19855474650269,spot_baseline,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191026,0.0251155777803076,relative_legacy,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191026,31.075921420266784,spot_peer,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191026,5.116905204139868,peer,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191046,76.55347463629771,spot_baseline,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191046,20.08515056349768,peer,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191046,49.973685298364686,spot_peer,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191046,28.54228983306755,baseline,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191046,0.1853933844107974,relative_legacy,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191284,0.3617011585686084,relative_legacy,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191284,61.479785482181,spot_peer,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191284,34.32387698085049,peer,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191284,48.07672266315374,baseline,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191471,9.491818011814086,peer,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191471,-0.0060041994822431,relative_legacy,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191471,21.412480535284764,spot_baseline,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191471,10.434901235202936,spot_peer,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191471,13.980867622085013,baseline,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191935,0.157531186066462,relative_legacy,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191935,31.086051756414488,baseline,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191935,46.46682670034443,spot_baseline,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191935,21.78261815402985,peer,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191935,28.400090274944976,spot_peer,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191975,20.71836481913546,baseline,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191975,13.563050379244618,peer,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191975,20.887403426234965,spot_peer,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191975,-0.0208031900001282,relative_legacy,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,191975,35.98959450863827,spot_baseline,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192049,49.973685298364686,spot_peer,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192049,0.4434795728665598,relative_legacy,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192049,72.74112576542048,baseline,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192049,52.095651935173166,peer,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192418,0.0919779972816872,relative_legacy,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192418,26.32908804732175,peer,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192418,37.33227691320324,baseline,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192418,22.222238409259926,spot_peer,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192472,54.136934639090384,peer,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192472,49.973685298364686,spot_peer,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192472,75.08465787096588,baseline,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192472,0.471575917887079,relative_legacy,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192924,0.4576944969958214,relative_legacy,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192924,72.56075179720614,baseline,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192924,82.0485342986379,spot_baseline,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192924,53.913911276254126,spot_peer,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,192924,51.486797118774575,peer,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,193275,-110.7230881968416,peer,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,193275,-92.70841826672256,spot_peer,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,193275,-149.7800750454965,baseline,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,193275,-122.43172982609396,spot_baseline,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,193275,-1.7748056324122956,relative_legacy,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,204737,23.878685958711674,spot_baseline,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,204737,12.20329089306156,spot_peer,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,204737,6.577613108264619,peer,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,204737,-0.0090269441423839,relative_legacy,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,204737,9.65718961886378,baseline,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,208405,-129.46780319006007,spot_peer,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,208405,-170.61555923080644,baseline,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,208405,-1.9858039657870792,relative_legacy,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,208405,-173.6965594166206,spot_baseline,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,208405,-125.95340396370882,peer,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,215725,32.02004103099871,peer,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,215725,37.02577395829511,spot_peer,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,215725,46.10755724906906,baseline,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,215725,0.2380073674821233,relative_legacy,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,215725,58.496250072115615,spot_baseline,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,218666,10.145720104072586,peer,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,218666,6.804764703002578,spot_peer,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,218666,-0.1233206643455274,relative_legacy,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,218666,15.321990214318756,baseline,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,218666,16.349873228287958,spot_baseline,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,218945,-11.764984833270503,peer,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,218945,-15.81825608646257,spot_peer,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,218945,-15.200309344505014,spot_baseline,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,218945,-14.842556338921629,baseline,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,218945,-0.4283650523068865,relative_legacy,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,219886,1.6562955625200115,peer,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,219886,63.69145803558778,spot_baseline,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,219886,0.0070005725223043,relative_legacy,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,219886,2.58859921208954,baseline,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,219886,40.75099163309162,spot_peer,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,220077,57.20226218423268,baseline,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,220077,0.2915475261459709,relative_legacy,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,220077,37.02577395829511,spot_peer,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,220077,58.496250072115615,spot_baseline,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,220077,41.011898917035374,peer,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,221727,-125.44346816520702,peer,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,221727,-1.9790175014060447,relative_legacy,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,221727,-129.46780319006007,spot_peer,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,221727,-173.6965594166206,spot_baseline,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,221727,-170.04468330435057,baseline,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,222631,46.46682670034443,spot_baseline,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,222631,1.683391522210068,peer,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,222631,28.400090274944976,spot_peer,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,222631,0.0018569770510293,relative_legacy,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30252,"Will the year-over-year increase in prices of homes in Hartford, CT in November 2024 be greater than or equal to 7.0%, according to Zillow?",2024-11-25 14:01:21.443586+00,222631,2.712116633378337,baseline,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30459 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,182315,0.2899510925300426,relative_legacy,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,182315,11.103131238874395,spot_baseline,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,182315,44.32665218448032,spot_peer,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,182315,20.586268880236897,peer,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,182315,6.663677455848248,baseline,RyansAGI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,185690,-9.160951379583029,baseline,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,185690,-0.0130059221858461,relative_legacy,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,185690,-3.2536597601790342,peer,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,185690,-93.56689537540164,spot_baseline,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,185690,-30.726865577747127,spot_peer,annabot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,185699,83.68497693304036,spot_peer,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,185699,50.8496040279871,peer,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,185699,45.31726879600127,baseline,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,185699,0.7233080280445675,relative_legacy,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,185699,65.99245584023782,spot_baseline,MWG,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,187708,4.048285402732887,baseline,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,187708,8.678376614206666,spot_baseline,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,187708,42.58798477244088,spot_peer,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,187708,0.1793645223100356,relative_legacy,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,187708,14.94076514627882,peer,twsummerbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,188107,-0.3222957200117123,relative_legacy,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,188107,-31.947664940321324,spot_peer,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,188107,-95.2694285221643,spot_baseline,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,188107,-23.5216048450759,peer,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,188107,-52.58453540293696,baseline,Cassie,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,188389,-6.074404229873489,peer,Panshul42,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,188389,-72.23712357084442,spot_peer,Panshul42,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,188389,-20.68546022705413,baseline,Panshul42,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,188389,-151.4573172829758,spot_baseline,Panshul42,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,188389,-0.0665685886493947,relative_legacy,Panshul42,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,189585,1.3429535850658223,peer,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,189585,-31.816558477560356,baseline,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,189585,13.281349517203957,spot_peer,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,189585,0.0769305188349931,relative_legacy,mf-bot-1,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,189588,-47.69366418250886,peer,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,189588,-35.33971557718249,spot_peer,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,189588,-0.591433683096976,relative_legacy,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,189588,-100.0,spot_baseline,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,189588,-98.59212856196758,baseline,mf-bot-3,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,190710,-0.4238433669006329,relative_legacy,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,190710,-23.616058476458008,spot_peer,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,190710,-78.76107432915899,baseline,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,190710,-83.65012677171204,spot_baseline,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,190710,-34.09149358500806,peer,Bot_Pepa,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,190772,-39.84866005273248,peer,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,190772,-82.9119746805989,baseline,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,190772,-39.56268052755371,spot_peer,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,190772,-0.5170519710589593,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,190772,-105.88936890535685,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191026,-5.116899587085265,peer,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191026,-169.18629326965146,spot_baseline,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191026,-84.9496646598574,spot_peer,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191026,-0.0268649232618019,relative_legacy,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191026,-14.149266910777044,baseline,manticAI,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191046,-0.0538886733347078,relative_legacy,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191046,-3.850732190669409,peer,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191046,-19.253063659935343,baseline,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191046,-51.45731728297583,spot_baseline,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191046,-0.5322428232639116,spot_peer,archipelago,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191284,84.79969065549501,spot_baseline,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191284,44.02644011538482,baseline,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191284,97.17068222923795,spot_peer,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191284,0.6137947761707128,relative_legacy,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191284,45.17990036754813,peer,000_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191471,-147.39311883324118,spot_baseline,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191471,-69.32289491911722,spot_peer,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191471,-96.34083397858188,baseline,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191471,-0.7049405361937963,relative_legacy,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191471,-52.342969972932,peer,HSeldon,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191935,-66.34702851016398,peer,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191935,-116.20268448427365,baseline,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191935,-88.18374562194012,spot_peer,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191935,-173.6965594166206,spot_baseline,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191935,-0.8975914300617532,relative_legacy,pgodzinai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191975,-16.268948030082925,baseline,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191975,8.093531588304089,peer,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191975,0.1383029977914567,relative_legacy,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191975,-17.462139610706853,spot_baseline,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,191975,23.8439587865647,spot_peer,jkraybill_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192049,80.723206136995,baseline,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192049,97.17068222923795,spot_peer,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192049,1.1803195541679337,relative_legacy,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192049,82.66143982384126,peer,gnosis-ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192418,0.6539506321639424,relative_legacy,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192418,25.94630296412424,baseline,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192418,43.70343586104246,peer,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192418,26.303440583379377,spot_baseline,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192418,55.22601587322095,spot_peer,InstitutPelFutur,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192472,-73.69655941662059,spot_baseline,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192472,-16.47886487435957,spot_peer,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192472,-72.3562785117549,baseline,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192472,-0.3298019930180481,relative_legacy,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192472,-28.49510926478408,peer,bestworldbot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192924,-58.21417900948473,baseline,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192924,-65.744525452268,spot_baseline,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192924,-0.2371315117437268,relative_legacy,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192924,-10.776868403213443,spot_peer,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,192924,-20.021441148516192,peer,acm_bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,193275,-20.83447403541644,peer,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,193275,-61.23665788428116,baseline,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,193275,-0.2397796837251215,relative_legacy,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,193275,-42.18176411213537,spot_peer,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,193275,-109.54195650786818,spot_baseline,histerio,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,204737,14.91705811612168,peer,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,204737,5.683609069854908,baseline,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,204737,0.1943585202881075,relative_legacy,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,204737,46.22483894325927,spot_peer,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,204737,13.750352374993504,spot_baseline,SynapseSeer,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,208405,0.6519377874806236,relative_legacy,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,208405,43.48804287823865,peer,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,208405,25.8142769375517,baseline,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,208405,55.22601587322095,spot_peer,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,215725,-11.98766014646512,baseline,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,215725,-15.200309344505014,spot_baseline,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,215725,25.465801481657405,spot_peer,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,215725,11.73021816954847,peer,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,215725,0.1939663121573222,relative_legacy,estr.ai,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,218666,40.05379295837285,spot_baseline,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,218666,65.08568964608214,spot_peer,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,218666,0.7381115117066932,relative_legacy,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,218666,37.61865848493875,baseline,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,218666,50.82692870854691,peer,GreeneiBot2,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,218945,-97.68608383668791,baseline,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,218945,-47.12895979324801,peer,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,218945,-0.5853987555026253,relative_legacy,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,218945,-35.33971557718249,spot_peer,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,218945,-100.0,spot_baseline,SeidrBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,219886,-16.652939156034495,baseline,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,219886,-0.1015967837024815,relative_legacy,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,219886,-9.252185097070411,peer,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,219886,-216.7344885834293,spot_baseline,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,219886,-119.04404140722852,spot_peer,SaraBase,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,220077,-98.03005185309384,baseline,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,220077,-35.33971557718249,spot_peer,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,220077,-0.587654757448394,relative_legacy,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,220077,-47.32764675528933,peer,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,220077,-100.0,spot_baseline,mmBot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,221727,0.9658265733108794,relative_legacy,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,221727,66.47464771129684,peer,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,221727,57.33163812897661,baseline,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,221727,78.30983152641508,spot_peer,mf-bot-5,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,222631,-39.592867633113926,spot_baseline,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,222631,-2.316554705897531,baseline,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,222631,0.0246197357374741,relative_legacy,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,222631,0.4061381464962583,peer,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30253,"Will the year-over-year increase in prices of homes in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-11-25 14:01:21.610106+00,222631,7.975146649526315,spot_peer,Grizeu_Bot,True,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30460 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,182315,83.18772411916731,spot_baseline,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,182315,29.15790764981352,spot_peer,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,182315,0.1536649361105144,relative_legacy,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,182315,18.5481553319066,peer,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,182315,49.98309507086282,baseline,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,185690,14.336488398449754,spot_peer,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,185690,1.4639409950133822,peer,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,185690,0.0088713028752305,relative_legacy,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,185690,62.517695668051225,spot_baseline,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,185690,6.184693135070008,baseline,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,185699,1.689850204336676,peer,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,185699,29.571788846234863,baseline,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,185699,-0.103265560556251,relative_legacy,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,185699,-0.2155837647906709,spot_peer,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,185699,42.22330006830478,spot_baseline,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,187708,2.677198162310731,spot_peer,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,187708,-0.0456311464961534,relative_legacy,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,187708,46.25758880422043,spot_baseline,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,187708,22.130263246518748,baseline,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,187708,1.6626339959604453,peer,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,188107,-0.0370405147471425,relative_legacy,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,188107,5.539976266801994,spot_peer,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,188107,3.761722005697096,peer,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,188107,28.13197627947194,baseline,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,188107,50.25003405291832,spot_baseline,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,188389,9.542872244958248,baseline,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,188389,-0.0820505798359512,relative_legacy,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,188389,-11.200761042742569,spot_peer,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,188389,-2.7480011510779265,peer,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,188389,26.903314645523704,spot_baseline,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,189585,75.62755902980467,baseline,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,189585,24.40082696962488,spot_peer,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,189585,30.5963967330952,peer,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,189585,0.1871883627148002,relative_legacy,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,189588,-291.7740242755916,spot_peer,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,189588,-4.160401735363823,relative_legacy,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,189588,-364.38561897747246,spot_baseline,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,189588,-288.3324558683132,peer,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,189588,-359.27309291383017,baseline,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,190710,23.17657273027976,spot_peer,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,190710,74.84612330040356,spot_baseline,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,190710,70.53790723696352,baseline,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,190710,26.841804854880166,peer,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,190710,0.164000196044556,relative_legacy,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,190772,-28.44320307513277,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,190772,2.856915219677092,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,190772,-19.952917838978745,peer,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,190772,2.2397076875929267,baseline,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,190772,-0.4254854685476081,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191026,-2.886263987984877,spot_peer,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191026,38.49875552496234,spot_baseline,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191026,3.6647629241899233,baseline,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191026,-0.0479675842687466,relative_legacy,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191026,-2.196901425169244,peer,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191046,9.354341481477991,peer,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191046,0.077492869838107,relative_legacy,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191046,28.577443344545685,baseline,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191046,24.40082696962488,spot_peer,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191284,24.40082696962488,spot_peer,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191284,0.1028735454488841,relative_legacy,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191284,13.201403015037505,peer,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191284,39.74458803183634,baseline,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191471,0.089525374799584,relative_legacy,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191471,46.69058307677448,baseline,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191471,71.36958148433588,spot_baseline,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191471,20.683722566928665,spot_peer,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191471,14.985575847236198,peer,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191935,45.36316999897778,baseline,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191935,67.80719051126377,spot_baseline,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191935,18.12931436792473,spot_peer,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191935,0.0682621314719069,relative_legacy,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191935,13.721575523220215,peer,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191975,12.11505653802214,baseline,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191975,-10.964082680957322,peer,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191975,-6.638390683922943,spot_peer,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191975,-0.2761326640147465,relative_legacy,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,191975,33.266020100512634,spot_baseline,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192049,55.78338789330388,baseline,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192049,11.452915629555308,spot_peer,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192049,58.496250072115615,spot_baseline,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192049,15.942099443970928,peer,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192049,0.0099126107084069,relative_legacy,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192418,-0.0490707459338835,relative_legacy,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192418,13.255175078123624,peer,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192418,51.902392167201874,baseline,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192418,52.60688116675877,spot_baseline,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192418,7.229950679184083,spot_peer,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192472,26.303440583379377,spot_baseline,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192472,-0.3077826777761548,relative_legacy,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192472,25.8793149712699,baseline,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192472,-5.98639513920833,peer,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192472,-11.630900023638816,spot_peer,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192924,73.63884007034605,spot_baseline,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192924,65.28788913154186,baseline,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192924,22.310891729881497,spot_peer,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192924,23.886223750369965,peer,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,192924,0.1441661834187378,relative_legacy,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,193275,-0.0325177748649206,relative_legacy,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,193275,13.194680080717475,peer,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,193275,52.103224662863504,baseline,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,193275,54.00272692575073,spot_baseline,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,193275,8.230840216089424,spot_peer,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,204737,11.452915629555308,spot_peer,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,204737,24.29469216125684,baseline,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,204737,5.038967745216545,peer,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,204737,0.0100851767981392,relative_legacy,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,208405,41.79802959052029,peer,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,208405,91.08799710212408,baseline,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,208405,0.3443315291282792,relative_legacy,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,208405,35.906927153441195,spot_peer,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,215725,92.5999418556223,spot_baseline,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,215725,31.35714156336179,peer,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,215725,0.2790559859252001,relative_legacy,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,215725,35.906927153441195,spot_peer,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,215725,73.07907030743853,baseline,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,218666,-4.309961655893235,spot_peer,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,218666,36.513259345253,spot_baseline,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,218666,-0.1969374147077784,relative_legacy,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,218666,0.4377748826125592,peer,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,218666,34.35732979846127,baseline,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,218945,0.0087800203614798,relative_legacy,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,218945,11.452915629555308,spot_peer,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,218945,16.852127268846168,peer,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,218945,57.16098400825531,baseline,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,218945,58.496250072115615,spot_baseline,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,219886,2.575597865064037,baseline,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,219886,-0.5821614736419686,spot_peer,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,219886,41.712068887066586,spot_baseline,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,219886,-0.0054707352732981,relative_legacy,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,219886,-0.0203037667993649,peer,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,220077,37.21630560131558,baseline,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,220077,-0.1940992065219865,relative_legacy,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,220077,37.85116232537298,spot_baseline,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,220077,2.302683341144144,peer,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,220077,-3.350619919479871,spot_peer,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,221727,75.03186429517717,baseline,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,221727,0.1852321035737093,relative_legacy,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,221727,29.95642255013395,peer,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,221727,24.40082696962488,spot_peer,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,222631,0.3523325876253249,peer,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,222631,50.58909297299573,spot_baseline,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,222631,2.966069163175188,baseline,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,222631,0.0,relative_legacy,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30254,"Will the year-over-year increase in prices of homes in Baltimore, MD in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.644562+00,222631,5.783098061107526,spot_peer,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30461 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,182315,-159.0539720124896,baseline,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,182315,-0.7254277987692725,relative_legacy,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,182315,-42.46999541727035,peer,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,182315,-264.38561897747246,spot_baseline,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,182315,-86.17022989214206,spot_peer,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,185690,134.32978750021093,spot_peer,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,185690,13.837704520011672,peer,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,185690,0.0835806597829677,relative_legacy,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,185690,43.12485324347609,spot_baseline,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,185690,4.312149795566823,baseline,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,185699,-0.3785886617433713,relative_legacy,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,185699,-18.89767514549076,peer,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,185699,-146.75267713337698,baseline,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,185699,-205.8893689053569,spot_baseline,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,185699,-44.225563536125065,spot_peer,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,187708,117.14313993359538,spot_peer,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,187708,0.7843257644222116,relative_legacy,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,187708,19.15626507007559,spot_baseline,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,187708,65.9171866283078,peer,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,187708,9.406631913711433,baseline,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,188107,0.7679895612404689,relative_legacy,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,188107,-4.264835342671981,baseline,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,188107,66.0017239320722,peer,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,188107,-7.400058144377675,spot_baseline,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,188107,98.10096004172964,spot_peer,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,188389,40.617216255728685,spot_peer,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,188389,-30.121543211775062,baseline,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,188389,17.075767729803303,peer,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,188389,0.0902073945055421,relative_legacy,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,188389,-87.56718649977981,spot_baseline,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,189585,-130.59450587012847,baseline,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,189585,8.618466508632608,spot_peer,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,189585,0.1276382521513941,relative_legacy,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,189585,25.07593992069361,peer,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,189585,-132.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,189588,-2.5704788422052625,relative_legacy,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,189588,-405.8893689053569,spot_baseline,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,189588,-187.63532503128616,spot_peer,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,189588,-172.6202803437568,peer,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,189588,-400.1618954021199,baseline,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,190710,-479.5859283219774,spot_baseline,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,190710,-3.1468748733349563,relative_legacy,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,190710,-452.4606997014125,baseline,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,190710,-214.6169315833257,peer,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,190710,-240.4793550760438,spot_peer,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,190772,13.665724870987638,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,190772,-125.15387669959644,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,190772,0.2129668152804817,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,190772,-98.21470761674594,baseline,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,190772,25.46511565647386,peer,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191026,0.197594271764027,relative_legacy,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191026,65.96653004720976,spot_baseline,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191026,24.41739565662366,peer,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191026,8.700121844678623,baseline,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191026,150.7083846130759,spot_peer,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191046,-134.7912949865285,spot_peer,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191046,-332.1928094887362,spot_baseline,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191046,-0.7336215260359428,relative_legacy,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191046,-124.14737733050602,baseline,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191046,-44.13329992409727,peer,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191284,-61.87359867682287,peer,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191284,-172.46393518142364,baseline,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191284,-332.1928094887362,spot_baseline,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191284,-0.9855348817463562,relative_legacy,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191284,-134.7912949865285,spot_peer,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191471,-134.7912949865285,spot_peer,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191471,-332.1928094887362,spot_baseline,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191471,-1.200540422977206,relative_legacy,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191471,-217.51727794736547,baseline,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191471,-77.77313275484049,peer,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191935,73.11832415721999,spot_baseline,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191935,116.96314315064518,peer,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191935,49.0296104860152,baseline,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191935,1.492301935262885,relative_legacy,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191935,155.83657005097123,spot_peer,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191975,41.18509476794641,spot_peer,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191975,-132.79473208678414,baseline,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191975,-4.957157909595324,peer,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191975,-86.77522017015605,spot_baseline,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,191975,-0.1814229513758843,relative_legacy,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192049,157.66017065849994,peer,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192049,1.948720235882024,relative_legacy,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192049,58.496250072115615,spot_baseline,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192049,55.87276727310591,baseline,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192049,145.35182926542424,spot_peer,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192418,31.70228216182672,spot_peer,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192418,48.36928486857066,peer,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192418,-98.6739951700524,baseline,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192418,0.4452975649515917,relative_legacy,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192472,-173.6965594166206,spot_baseline,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192472,-4.907064621165589,peer,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192472,-0.281337416320742,relative_legacy,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192472,-171.1656300356577,baseline,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192472,-21.141747882930936,spot_peer,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192924,-134.7912949865285,spot_peer,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192924,-1.6351593807060538,relative_legacy,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192924,-295.02526395212846,baseline,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192924,-105.46182720105192,peer,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,192924,-332.1928094887362,spot_baseline,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,193275,-101.75011276639742,baseline,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,193275,-104.69210473874926,spot_baseline,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,193275,0.390024600044196,relative_legacy,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,193275,44.28491213234163,peer,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,193275,28.337814054354983,spot_peer,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,204737,-274.14374132790186,spot_peer,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,204737,-1.6011793116379882,relative_legacy,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,204737,-219.97376274207863,baseline,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,204737,-526.5344566520995,spot_baseline,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,204737,-107.6908981726498,peer,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,208405,-72.4740674875003,baseline,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,208405,0.7027071127724624,relative_legacy,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,208405,50.56313286464961,spot_peer,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,208405,67.13717318868684,peer,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,208405,-73.69655941662063,spot_baseline,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,215725,-183.32073951817807,baseline,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,215725,-232.19280948873623,spot_baseline,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,215725,-35.710680282986104,peer,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,215725,-0.629811946764208,relative_legacy,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,215725,-63.086414238947945,spot_peer,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,218666,-113.28942704973451,spot_baseline,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,218666,22.173114343777858,spot_peer,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,218666,0.3089533857164236,relative_legacy,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,218666,-106.82990690815454,baseline,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,218666,37.69456020170402,peer,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,218945,171.00748996717184,peer,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,218945,70.62678914418423,baseline,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,218945,2.122952231364783,relative_legacy,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,218945,72.2466024471091,spot_baseline,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,218945,155.21150303828543,spot_peer,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,219886,163.65716811110272,spot_peer,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,219886,11.75062663001052,peer,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,219886,84.02497092741962,spot_baseline,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,219886,0.0753167012826483,relative_legacy,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,219886,5.994540615655998,baseline,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,220077,-173.6965594166206,spot_baseline,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,220077,-0.281337416320742,relative_legacy,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,220077,-171.2150322964343,baseline,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,220077,-4.902237469931485,peer,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,220077,-21.141747882930936,spot_peer,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,221727,-21.141747882930936,spot_peer,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,221727,-173.6965594166206,spot_baseline,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,221727,-0.281337416320742,relative_legacy,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,221727,-170.24442551006288,baseline,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,221727,-4.942543167676022,peer,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,222631,52.60688116675877,spot_baseline,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,222631,3.090852687181889,baseline,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,222631,8.299127829043606,peer,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,222631,141.12886431505305,spot_peer,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30255,"Will the year-over-year increase in rent in Orlando, FL in November 2024 be greater than or equal to 1.0%, according to Zillow?",2024-11-25 14:01:21.686409+00,222631,0.0352563401414077,relative_legacy,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30462 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,182315,91.07326619029126,spot_baseline,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,182315,121.6881662298706,peer,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,182315,54.845898433231305,baseline,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,182315,1.6536293267597186,relative_legacy,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,182315,193.94604326342431,spot_peer,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,185690,150.7530461320855,spot_peer,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,185690,0.1641139764891558,relative_legacy,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,185690,3.1206343953108133,baseline,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,185690,15.360362814478258,peer,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,185690,30.836087519861305,spot_baseline,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,185699,-405.8893689053569,spot_baseline,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,185699,-162.40042159194402,spot_peer,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,185699,-1.4699308646663551,relative_legacy,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,185699,-293.3770552500368,baseline,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,185699,-112.2837865550447,peer,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,187708,50.53628176826323,spot_peer,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,187708,29.646425274107777,peer,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,187708,-54.846421363646414,baseline,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,187708,0.5200238187505712,relative_legacy,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,187708,-108.92673380970876,spot_baseline,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,188107,-7.400058144377675,spot_baseline,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,188107,1.0457155609209503,relative_legacy,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,188107,123.33586348107174,spot_peer,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,188107,-4.337448031493492,baseline,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,188107,76.74152344531433,peer,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,188389,-38.06367691757098,baseline,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,188389,25.78838289938383,spot_peer,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,188389,0.3092273226547293,relative_legacy,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,188389,17.58367727506554,peer,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,188389,-143.4402824145775,spot_baseline,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,189585,-73.69655941662063,spot_baseline,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,189585,1.2940782455525797,relative_legacy,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,189585,75.79803630399172,spot_peer,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,189585,82.71144502442853,peer,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,189585,-72.77053904424018,baseline,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,189588,-2.558067485094444,relative_legacy,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,189588,-199.0890189875059,peer,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,189588,-457.8678162341929,baseline,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,189588,-204.34508794796105,spot_peer,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,189588,-464.38561897747246,spot_baseline,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,190710,-305.88936890535683,spot_baseline,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,190710,-0.884047987047711,relative_legacy,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,190710,-77.95773193968351,peer,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,190710,-90.69554084436348,spot_peer,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,190710,-288.8079733527864,baseline,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,190772,20.66862696494424,baseline,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,190772,124.384656140895,peer,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,190772,1.8531372018892864,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,190772,147.50291705157227,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,190772,26.303440583379377,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191026,33.954967254302986,spot_baseline,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191026,152.98943512632735,spot_peer,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191026,6.2111808381540525,baseline,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191026,25.80189671711324,peer,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191026,0.2724526127246429,relative_legacy,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191046,-123.92686012706372,baseline,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191046,-0.3973253558192438,relative_legacy,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191046,-109.55639154718637,spot_peer,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191046,-37.59145905518846,peer,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191046,-332.1928094887362,spot_baseline,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191284,-332.1928094887362,spot_baseline,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191284,-172.46204236976544,baseline,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191284,-53.10734407215365,peer,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191284,-0.6404865374915006,relative_legacy,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191284,-109.55639154718637,spot_peer,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191471,-109.55639154718637,spot_peer,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191471,-220.37897262499604,baseline,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191471,-68.31282376781269,peer,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191471,-0.9204911074172154,relative_legacy,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191471,-332.1928094887362,spot_baseline,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191935,44.36066514756148,spot_baseline,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191935,160.45082839164186,spot_peer,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191935,29.746280229551463,baseline,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191935,1.6014899295950245,relative_legacy,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191935,113.57715322460152,peer,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191975,-474.7810649715625,peer,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191975,-831.0345249479918,baseline,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191975,-514.2484265914773,spot_peer,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191975,-6.324592910569404,relative_legacy,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,191975,-896.5784284662086,spot_baseline,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192049,-564.3856189774725,spot_baseline,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192049,-276.0499686955416,spot_peer,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192049,-539.9851347857673,baseline,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192049,-260.18504177550744,peer,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192049,-3.385136011867031,relative_legacy,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192418,1.034120876704233,relative_legacy,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192418,-98.76566935882524,baseline,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192418,63.67743762364862,peer,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192418,56.93718560116884,spot_peer,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192472,-83.65012677171204,spot_baseline,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192472,68.6608427018933,spot_peer,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192472,-82.55790802096952,baseline,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192472,75.52880368861052,peer,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192472,1.1958499760653245,relative_legacy,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192924,-257.760458003839,baseline,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192924,-0.6320614936995261,relative_legacy,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192924,-62.41973652456448,peer,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192924,-79.28022458551534,spot_peer,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,192924,-289.9695094204315,spot_baseline,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,193275,74.67427157777362,spot_baseline,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,193275,168.6833710044878,peer,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,193275,45.9261381016617,baseline,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,193275,2.4771755568858227,relative_legacy,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,193275,182.1871637327164,spot_peer,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,204737,-112.38159486686897,peer,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,204737,-236.871291216404,baseline,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,204737,-1.3915262030436288,relative_legacy,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,204737,-276.0499686955416,spot_peer,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,204737,-564.3856189774725,spot_baseline,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,208405,183.53464404483597,spot_peer,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,208405,2.7713237280826064,relative_legacy,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,208405,75.2540457970553,baseline,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,208405,190.6505235596562,peer,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,215725,-109.55639154718637,spot_peer,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,215725,-0.9655889930846926,relative_legacy,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,215725,-80.31344329794109,peer,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,215725,-262.40354705406025,baseline,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,215725,-332.1928094887362,spot_baseline,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,218666,-105.88936890535685,spot_baseline,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,218666,52.714220650797614,spot_peer,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,218666,-100.06501965184682,baseline,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,218666,59.7579888383213,peer,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,218666,1.0042191947776815,relative_legacy,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,218945,32.60639451159857,baseline,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,218945,158.99962460475786,peer,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,218945,2.341688502158992,relative_legacy,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,218945,152.5501754139273,spot_peer,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,218945,33.34237337251918,spot_baseline,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,219886,-212.28054528737616,spot_baseline,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,219886,-23.57344549987741,spot_peer,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,219886,-12.238230290498583,baseline,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,219886,-0.0515166696996656,relative_legacy,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,219886,-1.3637746055769582,peer,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,220077,138.50174012161057,spot_peer,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,220077,13.60190997231867,baseline,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,220077,145.92444057643306,peer,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,220077,2.157625210862646,relative_legacy,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,220077,13.750352374993504,spot_baseline,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,221727,-100.0,spot_baseline,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,221727,56.93718560116884,spot_peer,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,221727,63.67287846170876,peer,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,221727,1.0370995992892962,relative_legacy,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,221727,-98.0253821082824,baseline,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,222631,5.3964459159117215,peer,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,222631,0.0419084569538943,relative_legacy,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,222631,91.7446583550874,spot_peer,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,222631,-3.030022748571496,baseline,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30256,"Will the year-over-year increase in rent in Los Angeles, CA in November 2024 be greater than or equal to 2.0%, according to Zillow?",2024-11-25 14:01:21.736745+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30463 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,182315,48.54268271702416,spot_baseline,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,182315,76.40110640510393,spot_peer,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,182315,47.78437423539392,peer,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,182315,29.25683466668885,baseline,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,182315,0.293337548807667,relative_legacy,RyansAGI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,185690,34.10856514855015,spot_peer,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,185690,3.466432060495852,peer,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,185690,-1.0683749932827695,baseline,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,185690,0.0020638634921344,relative_legacy,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,185690,-10.438715502483785,spot_baseline,annabot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,185699,-47.39311883324123,spot_baseline,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,185699,-0.2834216681081889,relative_legacy,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,185699,7.610454309250573,spot_peer,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,185699,9.364053124793951,peer,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,185699,-34.86133228105757,baseline,MWG,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,187708,27.05852468432925,peer,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,187708,50.698207167328114,spot_peer,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,187708,0.0755863245569713,relative_legacy,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,187708,6.547114440132014,baseline,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,187708,12.697285625776551,spot_baseline,twsummerbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,188107,18.05722456418209,spot_baseline,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,188107,10.71765711923685,baseline,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,188107,0.1049953539853994,relative_legacy,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,188107,33.900580376795226,peer,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,188107,54.54154499125494,spot_peer,Cassie,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,188389,2.5904434069404143,baseline,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,188389,16.056565518445524,peer,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,188389,0.0594000150283641,relative_legacy,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,188389,56.94742728411016,spot_peer,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,188389,21.412480535284736,spot_baseline,Panshul42,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,189585,-132.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,189585,-42.03643502476618,peer,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,189585,-1.0771783705068023,relative_legacy,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,189585,-130.57475477590526,baseline,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,189585,-53.1950627495893,spot_peer,mf-bot-1,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,189588,-135.79930718591052,spot_peer,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,189588,-125.19215041913525,peer,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,189588,-243.90159237614992,baseline,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,189588,-2.211471628976977,relative_legacy,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,189588,-247.39311883324123,spot_baseline,mf-bot-3,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,190710,74.84612330040356,spot_baseline,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,190710,101.70952376325296,peer,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,190710,0.868096981017085,relative_legacy,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,190710,95.26195710792682,spot_peer,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,190710,70.74151102828861,baseline,Bot_Pepa,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,190772,-0.6951747037105956,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,190772,-78.66431506723166,baseline,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,190772,-19.18786921355267,peer,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,190772,-30.1112470963952,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,190772,-100.0,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191026,-4.397164708414692,spot_baseline,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191026,-1.3525655802737626,baseline,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191026,0.0085304556668145,relative_legacy,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191026,38.44065194074189,spot_peer,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191026,5.779651253435327,peer,manticAI,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191046,-11.250396393572307,spot_peer,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191046,-3.81322471472372,peer,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191046,-0.2461150652777937,relative_legacy,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191046,-27.44210027778313,baseline,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191046,-73.69655941662063,spot_baseline,archipelago,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191284,-51.45731728297583,spot_baseline,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191284,-26.714397698999203,baseline,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191284,-0.2558938673776977,relative_legacy,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191284,4.696225657523379,spot_peer,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191284,3.2235466016652934,peer,000_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191471,22.134196429792063,baseline,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191471,65.50174271636328,spot_peer,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191471,0.2510885350737604,relative_legacy,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191471,46.17807933664108,peer,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191471,33.34237337251918,spot_baseline,HSeldon,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191935,-88.8968687611256,spot_baseline,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191935,-12.582279870114192,peer,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191935,-0.5617303367764395,relative_legacy,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191935,-22.14976008231295,spot_peer,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191935,-59.61092488431494,baseline,pgodzinai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191975,-0.4997956595659635,relative_legacy,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191975,-53.21625889023177,baseline,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191975,-83.18541800550918,spot_peer,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191975,-25.150090856578856,peer,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,191975,-174.01751506420965,spot_baseline,jkraybill_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192049,-332.1928094887362,spot_baseline,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192049,-181.6679175530748,peer,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192049,-318.6666265299521,baseline,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192049,-196.6048242447504,spot_peer,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192049,-2.993014871198622,relative_legacy,gnosis-ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192418,-0.2798435500586849,relative_legacy,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192418,-50.83197704898976,baseline,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192418,16.427671793616497,peer,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192418,4.696225657523379,spot_peer,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192472,0.0,spot_baseline,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192472,41.59363365118535,spot_peer,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192472,0.0,baseline,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192472,53.77899698068907,peer,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192472,0.2285691772522501,relative_legacy,bestworldbot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192924,0.3925173574959334,relative_legacy,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192924,26.994477140474284,baseline,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192924,65.17495201565222,peer,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192924,63.34476387358495,spot_peer,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,192924,30.334239448733086,spot_baseline,acm_bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,193275,-260.82322800440033,spot_baseline,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,193275,-145.42935095136002,spot_peer,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,193275,-2.357580235608531,relative_legacy,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,193275,-258.81066448327374,baseline,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,193275,-136.08009612428918,peer,histerio,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,204737,29.54125046185617,peer,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,204737,68.73476445816718,spot_peer,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,204737,15.959320416879809,baseline,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,204737,0.1816435109980989,relative_legacy,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,204737,37.85116232537298,spot_baseline,SynapseSeer,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,208405,25.833991017096963,baseline,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,208405,0.4824169861259865,relative_legacy,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,208405,60.45448435400824,spot_peer,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,208405,72.31756412709798,peer,mf-bot-4,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,215725,46.22942837501759,baseline,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,215725,71.78509329115317,peer,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,215725,83.53830000720235,spot_peer,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,215725,0.5528015642412145,relative_legacy,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,215725,58.496250072115615,spot_baseline,estr.ai,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,218666,-68.96598793878495,spot_baseline,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,218666,2.4386129963469623,peer,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,218666,-65.30174314319741,baseline,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,218666,-7.858345756711185,spot_peer,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,218666,-0.4900757341959972,relative_legacy,GreeneiBot2,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,218945,-184.9988955980454,peer,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,218945,-3.031111298978129,relative_legacy,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,218945,-324.99430621773166,baseline,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,218945,-196.6048242447504,spot_peer,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,218945,-332.1928094887362,spot_baseline,SeidrBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,219886,-127.7184273662965,spot_baseline,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,219886,-3.556881003298294,peer,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,219886,-0.0813238677855566,relative_legacy,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,219886,-49.98671238450283,spot_peer,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,219886,-9.08098232096374,baseline,SaraBase,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,220077,96.85736651787695,peer,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,220077,83.53830000720235,spot_peer,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,220077,0.8095723709292342,relative_legacy,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,220077,58.02667397703412,baseline,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,221727,-32.19280948873623,spot_baseline,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,221727,-31.516742365439395,baseline,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,221727,-0.0959165597567276,relative_legacy,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,221727,30.046115479409742,peer,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,221727,18.50981799799124,spot_peer,mf-bot-5,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,222631,-1.4844635428888149,baseline,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,222631,-0.0072978285860078,relative_legacy,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,222631,23.557076360346265,spot_peer,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,222631,1.3768857586310448,peer,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30257,"Will the year-over-year increase in rent in Providence, RI in November 2024 be greater than or equal to 5.0%, according to Zillow?",2024-11-25 14:01:21.777526+00,222631,-25.15387669959645,spot_baseline,Grizeu_Bot,True,yes,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,0.5,2024-11-26 15:30:00+00,30464 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,182315,-4.465117490049777,spot_peer,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,182315,54.65555411632494,baseline,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,182315,62.29303509201767,spot_baseline,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,182315,-8.394223175595688,peer,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,182315,-0.1970891227992199,relative_legacy,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,185690,-4.007074073547458,peer,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,185690,-44.24276134781774,spot_peer,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,185690,-0.0713109350692974,relative_legacy,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,185690,6.818925877896807,spot_baseline,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,185690,0.6235691351679865,baseline,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,187708,13.270060779579923,spot_peer,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,187708,5.519060128212256,peer,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,187708,57.85917748831528,baseline,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,187708,87.02660703959828,spot_baseline,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,187708,0.0081892613947609,relative_legacy,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,188107,42.77153942966991,baseline,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,188107,12.626700121830083,spot_peer,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,188107,86.1293729168408,spot_baseline,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,188107,3.8523305863130415,peer,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,188107,0.0013958722559516,relative_legacy,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,188909,58.68607648347027,baseline,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,188909,2.0432092765608547,spot_peer,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,188909,-2.400057386574614,peer,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,188909,71.36958148433591,spot_baseline,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,188909,-0.1091274480850081,relative_legacy,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,189585,-5.297616741165684,peer,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,189585,66.89813473636804,baseline,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,189585,-0.511198922443105,spot_peer,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,189585,-0.1579132193098117,relative_legacy,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,189588,-0.2494287042678556,relative_legacy,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,189588,-7.1875976608125445,spot_peer,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,189588,-11.96830735226651,peer,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,189588,57.56254279560969,baseline,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,190710,12.431094026313149,peer,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,190710,18.133909729584467,spot_peer,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,190710,87.72603353036352,baseline,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,190710,93.80975610740931,spot_baseline,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,190710,0.0856954943554177,relative_legacy,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,190772,-32.01008072604607,spot_peer,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,190772,18.59740842339196,baseline,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,190772,-28.92046440213949,peer,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,190772,-0.4731641196584339,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,190772,23.878685958711674,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191026,-8.832547281925075,peer,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191026,3.2388128671149308,baseline,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191026,-0.1498983570374263,relative_legacy,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191026,22.579338243711277,spot_baseline,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191026,-32.94177645558352,spot_peer,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191046,20.32741716084013,baseline,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191046,2.0472821283724927,peer,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191046,11.67325304201035,spot_peer,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191046,-0.0003290926350317,relative_legacy,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191046,84.79969065549501,spot_baseline,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191284,11.67325304201035,spot_peer,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191284,0.0002645428756219,relative_legacy,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191284,73.00182677273693,baseline,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191284,5.788570162950644,peer,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191284,84.79969065549501,spot_baseline,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191471,17.266413863073357,spot_peer,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191471,62.64716274611644,baseline,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191471,0.0461552069980384,relative_legacy,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191471,92.5999418556223,spot_baseline,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191471,8.343402908406363,peer,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191935,53.9403520158472,baseline,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191935,5.494884644561699,peer,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191935,0.0128264434285856,relative_legacy,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191935,87.97057662822883,spot_baseline,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191935,13.946933047400902,spot_peer,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191975,99.4217647405994,spot_baseline,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191975,0.1413436769448171,relative_legacy,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191975,16.54912864712144,peer,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191975,22.15799382755734,spot_peer,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,191975,94.48435415681752,baseline,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192049,10.700884195367788,peer,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192049,17.266413863073357,spot_peer,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192049,0.067673248348042,relative_legacy,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192049,80.1542086926151,baseline,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192418,5.760313679257048,spot_peer,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192418,-0.0716498464834965,relative_legacy,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192418,1.0093262496799795,peer,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192418,75.52627150226097,baseline,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192472,71.36958148433591,spot_baseline,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192472,70.22117198246035,baseline,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192472,-0.1227620984620872,relative_legacy,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192472,2.0432092765608547,spot_peer,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192472,-2.726701044373048,peer,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192924,13.609050517750433,spot_peer,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192924,87.49936389329673,spot_baseline,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192924,0.0240697701391536,relative_legacy,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192924,76.89108898606773,baseline,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,192924,7.626166128000594,peer,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,193275,71.5257709232332,baseline,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,193275,14.283715577721546,spot_peer,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,193275,88.44025529836873,spot_baseline,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,193275,4.477959094818463,peer,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,193275,-0.017984199915893,relative_legacy,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,195286,5.564127939529567,peer,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,195286,69.44750009011209,baseline,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,195286,0.0013062125317326,relative_legacy,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,195286,11.67325304201035,spot_peer,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,204737,19.634740056092586,spot_peer,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,204737,0.0407539482240265,relative_legacy,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,204737,38.62045587335547,baseline,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,204737,95.90282189436938,spot_baseline,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,204737,6.075621193987687,peer,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,208405,11.67325304201035,spot_peer,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,208405,6.844780486619738,peer,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,208405,83.09155402308905,baseline,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,208405,0.0086055699073964,relative_legacy,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,215725,5.760313679257048,spot_peer,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,215725,-0.0465751250243102,relative_legacy,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,215725,38.32130188492508,baseline,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,215725,0.4287476128414207,peer,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,218666,10.284664731788911,spot_peer,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,218666,5.035174900698019,peer,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,218666,82.8631581688019,spot_baseline,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,218666,77.8914830700178,baseline,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,218666,-0.0166714296888326,relative_legacy,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,218945,-26.496940759209732,peer,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,218945,37.85116232537298,spot_baseline,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,218945,-21.991133209847707,spot_peer,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,218945,-0.4491778903342183,relative_legacy,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,218945,36.8479776607102,baseline,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,219886,0.1020745555759862,relative_legacy,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,219886,13.70845260733807,peer,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,219886,19.109783262711343,spot_peer,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,219886,90.8963583820908,baseline,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,219886,95.1707144172937,spot_baseline,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,220077,-0.2483203466012336,relative_legacy,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,220077,57.00119272336672,baseline,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,220077,-11.874548714657164,peer,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,220077,58.496250072115615,spot_baseline,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,220077,-7.1875976608125445,spot_peer,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,221727,74.709257536053,baseline,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,221727,5.760313679257048,spot_peer,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,221727,-0.0727441207242529,relative_legacy,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,221727,0.9153177596647212,peer,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,222631,-109.11348766368562,spot_peer,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,222631,-83.65012677171204,spot_baseline,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,222631,-8.823450256007904,baseline,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,222631,-0.177681569898732,relative_legacy,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30281,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-26 13:52:50.558281+00,222631,-11.493830469342583,peer,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30491 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,182315,92.5999418556223,spot_baseline,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,182315,-0.0001514548861857,relative_legacy,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,182315,9.811949626528286,peer,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,182315,9.7439738767771,spot_peer,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,182315,81.29729301949513,baseline,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,185690,8.804403795164147,baseline,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,185690,1.187010620681874,peer,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,185690,0.0019891984793842,relative_legacy,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,185690,94.74043348468004,spot_baseline,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,185690,11.278810846804886,spot_peer,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,187708,84.15706373955169,spot_baseline,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,187708,3.73672873757499,peer,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,187708,3.690018191985085,spot_peer,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,187708,-0.0569511114408166,relative_legacy,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,187708,56.76782549353853,baseline,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,188107,93.3572638261024,spot_baseline,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,188107,48.25501827449437,baseline,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,188107,6.075996682838421,peer,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,188107,0.0039144876389334,relative_legacy,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,188107,10.28701069258508,spot_peer,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,188909,-114.94474074911427,baseline,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,188909,-156.74960327157808,spot_peer,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,188909,-1.9119416874963653,relative_legacy,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,188909,-128.41696769031174,peer,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,188909,-139.59286763311394,spot_baseline,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,189585,10.038917568297416,peer,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,189585,-0.0001700850886338,relative_legacy,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,189585,91.35189328834863,baseline,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,189585,9.7439738767771,spot_peer,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,189588,9.7439738767771,spot_peer,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,189588,10.033530902903612,peer,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,189588,91.12236876918637,baseline,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,189588,-0.0001435250898448,relative_legacy,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,190710,9.7439738767771,spot_peer,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,190710,86.7055929686959,baseline,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,190710,-0.0001514548861857,relative_legacy,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,190710,92.5999418556223,spot_baseline,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,190710,9.923993082581886,peer,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,190772,-99.63906027502226,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,190772,-1.189525599414894,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,190772,-46.74490203739688,baseline,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,190772,-59.94620704162712,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,190772,-76.55312044352326,peer,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191026,-0.1124576427776762,relative_legacy,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191026,76.90886761394492,spot_baseline,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191026,8.660292584034254,baseline,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191026,-1.5072921962319905,spot_peer,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191026,-5.681536019384888,peer,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191046,22.170950488583927,baseline,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191046,92.5999418556223,spot_baseline,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191046,0.0,relative_legacy,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191046,9.7439738767771,spot_peer,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191046,2.6488057092132933,peer,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191284,92.5999418556223,spot_baseline,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191284,79.71623293333727,baseline,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191284,0.0,relative_legacy,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191284,9.7439738767771,spot_peer,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191284,9.797559069493408,peer,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191471,0.0,relative_legacy,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191471,7.877438501889514,peer,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191471,9.7439738767771,spot_peer,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191471,92.5999418556223,spot_baseline,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191471,62.68942228127946,baseline,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191935,56.938655338328594,baseline,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191935,92.5999418556223,spot_baseline,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191935,0.0,relative_legacy,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191935,7.045690638180987,peer,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191935,9.7439738767771,spot_peer,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191975,13.065747149616069,spot_peer,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191975,85.13764365592289,baseline,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191975,12.7440871284138,peer,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191975,97.23250415571516,spot_baseline,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,191975,0.0404116717908292,relative_legacy,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192049,12.61378158610292,peer,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192049,12.960241504711352,spot_peer,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192049,84.15222399929445,baseline,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192049,0.0387275633897293,relative_legacy,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192049,97.08536543404836,spot_baseline,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192418,10.044344457291508,peer,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192418,9.7439738767771,spot_peer,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192418,91.37230246383844,baseline,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192418,-0.0001301439629726,relative_legacy,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192472,-0.1583075718326681,relative_legacy,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192472,-1.7621263070392068,spot_peer,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192472,75.45363958925054,baseline,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192472,-1.5074748430936664,peer,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192924,95.1587794814754,spot_baseline,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192924,11.445277006166217,peer,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192924,83.74259802845961,baseline,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192924,0.0223670885303602,relative_legacy,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,192924,11.578785344919288,spot_peer,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,193275,12.643077405900865,spot_peer,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,193275,96.64304673062982,spot_baseline,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,193275,84.55485726806104,baseline,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,193275,12.364491453322294,peer,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,193275,0.0351782441490294,relative_legacy,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,195286,9.7439738767771,spot_peer,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,195286,75.9855438648455,baseline,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,195286,0.0,relative_legacy,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,195286,9.749496302941765,peer,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,204737,0.024085984674953,relative_legacy,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,204737,6.208909505741303,peer,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,204737,14.0104868285753,spot_peer,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,204737,39.893016209118265,baseline,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,208405,93.69331595817889,baseline,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,208405,11.899224246036626,spot_peer,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,208405,12.164157423793505,peer,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,208405,95.60566524124027,spot_baseline,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,208405,0.0292926489403989,relative_legacy,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,215725,0.0,relative_legacy,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,215725,9.7439738767771,spot_peer,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,215725,46.38203868419176,baseline,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,215725,5.599123001045058,peer,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,215725,92.5999418556223,spot_baseline,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,218666,8.869141805926423,spot_peer,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,218666,-0.0116457115075241,relative_legacy,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,218666,86.09056796624813,baseline,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,218666,91.37989649506964,spot_baseline,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,218666,9.1013840256338,peer,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,218945,90.1963679742044,baseline,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,218945,-0.0001514548861857,relative_legacy,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,218945,10.006247433922969,peer,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,218945,9.7439738767771,spot_peer,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,218945,92.5999418556223,spot_baseline,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,219886,79.01047413464545,spot_baseline,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,219886,0.4021231115418522,peer,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,219886,76.66500568880738,baseline,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,219886,-0.1320120254683991,relative_legacy,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,219886,-0.0003377467803131,spot_peer,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,220077,92.5999418556223,spot_baseline,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,220077,-0.0001514548861857,relative_legacy,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,220077,9.7439738767771,spot_peer,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,220077,90.43416488198552,baseline,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,220077,10.010166294918148,peer,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,221727,90.41876812366615,baseline,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,221727,92.5999418556223,spot_baseline,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,221727,9.7439738767771,spot_peer,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,221727,-0.0001514548861857,relative_legacy,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,221727,10.009865703623172,peer,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,222631,97.08536543404836,spot_baseline,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,222631,10.253209246270826,baseline,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,222631,1.518023421671608,peer,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,222631,0.0047370668382559,relative_legacy,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30282,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-26 13:52:50.601267+00,222631,12.960241504711352,spot_peer,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30492 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,182315,-1.2241669523775416,spot_peer,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,182315,-2.9881537337611324,peer,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,182315,42.648484168596376,baseline,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,182315,-0.1071611319512749,relative_legacy,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,182315,48.54268271702416,spot_baseline,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,185690,34.52828175935084,spot_baseline,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,185690,-1.1383928919105544,peer,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,185690,-11.27317644656499,spot_peer,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,185690,-0.0226004960756795,relative_legacy,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,185690,3.2558299736509837,baseline,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,187708,12.26679963425014,peer,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,187708,0.1247819630842148,relative_legacy,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,187708,52.91270804274032,baseline,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,187708,19.346611538501637,spot_peer,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,187708,77.23079749584035,spot_baseline,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,188107,84.79969065549501,spot_baseline,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,188107,24.7738773525438,spot_peer,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,188107,44.40528810314623,baseline,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,188107,12.206275557397204,peer,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,188107,0.1356439392900176,relative_legacy,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,188909,-61.73453894407193,spot_peer,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,188909,-52.85504556040769,peer,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,188909,-0.7936220249500596,relative_legacy,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,188909,-29.556804014598224,baseline,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,188909,-35.845397091247634,spot_baseline,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,189585,18.86093798979049,spot_peer,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,189585,0.1533399628179679,relative_legacy,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,189585,16.44181577194534,peer,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,189585,75.52807732128021,baseline,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,189588,5.913026649720892,spot_peer,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,189588,57.55901716775645,baseline,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,189588,3.36786644770536,peer,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,189588,-0.0243984886608883,relative_legacy,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,190710,-0.1656264181333517,relative_legacy,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,190710,-7.43525100419116,peer,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,190710,39.97645793322483,baseline,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,190710,-5.447131902748743,spot_peer,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,190710,42.65331381166733,spot_baseline,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,190772,37.85116232537298,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,190772,-0.1732594939945631,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,190772,-8.34085057983187,peer,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,190772,29.54854261795872,baseline,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,190772,-8.890508899314268,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191026,-45.84660711408901,spot_peer,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191026,6.708324729292073,baseline,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191026,-0.0586692480098968,relative_legacy,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191026,-3.204795639009302,peer,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191026,-13.688004645519303,spot_baseline,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191046,58.496250072115615,spot_baseline,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191046,0.0,relative_legacy,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191046,13.99668324891742,baseline,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191046,1.1037785166963865,peer,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191046,5.913026649720892,spot_peer,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191284,65.90197875661664,baseline,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191284,0.1363527575015997,relative_legacy,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191284,18.86093798979049,spot_peer,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191284,14.608160927063416,peer,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191471,21.412480535284736,spot_baseline,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191471,-0.2540313694292896,relative_legacy,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191471,-20.677846073371303,spot_peer,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191471,-15.12714344839218,peer,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191471,14.503528087437587,baseline,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191935,-51.63400760987373,spot_peer,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191935,-32.9668071505227,peer,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191935,-0.4982764892229977,relative_legacy,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191935,-13.452691004382563,baseline,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191935,-21.75914350726268,spot_baseline,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191975,69.24271980897076,spot_baseline,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191975,43.37064158590528,baseline,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191975,0.0644630429254411,relative_legacy,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191975,13.6187699591077,spot_peer,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,191975,7.66675965205957,peer,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192049,3.35060556367839,peer,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192049,5.913026649720892,spot_peer,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192049,-0.0190950305035633,relative_legacy,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192049,50.77001253719845,baseline,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192049,58.496250072115615,spot_baseline,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192418,-32.19280948873623,spot_baseline,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192418,-59.11545535949022,spot_peer,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192418,-31.7755568544746,baseline,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192418,-0.9198624624462768,relative_legacy,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192418,-62.03969401682508,peer,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192472,22.44909916095152,spot_peer,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192472,20.08556093829049,peer,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192472,0.2028978205208797,relative_legacy,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192472,80.5697715311267,baseline,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192472,81.55754288625727,spot_baseline,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192924,67.80719051126377,spot_baseline,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192924,59.74452789234435,baseline,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192924,12.589425388090328,spot_peer,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192924,9.289127367979404,peer,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,192924,0.0623267846053211,relative_legacy,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,193275,0.068987142393577,relative_legacy,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,193275,9.774777010351452,peer,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,193275,12.847723339668317,spot_peer,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,193275,60.65435454398095,baseline,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,193275,68.16741417928333,spot_baseline,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,195286,0.0607657072611179,relative_legacy,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,195286,12.589425388090328,spot_peer,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,195286,55.69750655614559,baseline,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,195286,8.928623247679884,peer,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,204737,-0.8644915634877746,peer,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,204737,20.056739029147806,baseline,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,204737,-0.6347164922425789,spot_peer,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,204737,-0.0371010708004456,relative_legacy,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,204737,49.36473339752103,spot_baseline,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,208405,22.128242448688884,peer,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,208405,0.2333485596088707,relative_legacy,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,208405,83.10203391270528,baseline,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,208405,24.7738773525438,spot_peer,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,215725,0.0,relative_legacy,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,215725,29.316070693142315,baseline,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,215725,5.913026649720892,spot_peer,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,215725,2.193478961773279,peer,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,215725,58.496250072115615,spot_baseline,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,218666,51.80314926021694,spot_baseline,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,218666,48.90101637242204,baseline,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,218666,1.1137466942335996,spot_peer,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,218666,-1.2455367692258366,peer,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,218666,-0.0811711781170841,relative_legacy,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,218945,-0.0710580042856208,relative_legacy,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,218945,52.236803279448914,baseline,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,218945,-0.1526820031425316,peer,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,218945,2.4059695798228167,spot_peer,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,218945,53.60529002402098,spot_baseline,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,219886,71.11424495443495,spot_baseline,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,219886,14.96074483282379,spot_peer,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,219886,0.1011212539450683,relative_legacy,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,219886,12.021442951636583,peer,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,219886,67.25975232196227,baseline,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,220077,18.86093798979049,spot_peer,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,220077,74.96533887502578,baseline,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,220077,0.1525654113651126,relative_legacy,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,220077,16.21994464583291,peer,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,221727,18.86093798979049,spot_peer,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,221727,16.175397171586773,peer,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,221727,0.1525654113651126,relative_legacy,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,221727,74.75080397880585,baseline,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,222631,0.0,relative_legacy,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,222631,5.913026649720892,spot_peer,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,222631,6.184893370148245,baseline,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,222631,0.5301875460921992,peer,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30283,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-26 13:52:50.643522+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30493 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,182315,83.18772411916731,spot_baseline,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,182315,4.653179608878433,spot_peer,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,182315,5.281245198979725,peer,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,182315,-0.0097637368807395,relative_legacy,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,182315,73.1423076347045,baseline,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,185690,75.78766597478963,spot_baseline,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,185690,-0.0464984082217983,peer,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,185690,-0.0075078262140031,relative_legacy,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,185690,7.235194793265889,baseline,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,185690,-0.6530232587992107,spot_peer,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,187708,57.73531475634381,baseline,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,187708,83.02553241676829,spot_baseline,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,187708,3.753401533060311,peer,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,187708,-0.0093689375682625,relative_legacy,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,187708,4.53688024209074,spot_peer,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,188107,42.58708393064677,baseline,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,188107,2.499968412815829,spot_peer,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,188107,1.584454339108501,peer,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,188107,-0.0228890350923174,relative_legacy,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,188107,80.18484457510606,spot_baseline,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,188909,0.872028061155388,peer,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,188909,76.55347463629771,spot_baseline,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,188909,-0.1039010713101968,spot_peer,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,188909,-0.0625274691811116,relative_legacy,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,188909,63.203095716762014,baseline,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,189585,83.6616044245848,baseline,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,189585,5.809038291443119,spot_peer,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,189585,7.865241568232139,peer,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,189585,0.0118507812261972,relative_legacy,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,189588,-29.937329037089157,peer,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,189588,31.704688252804356,baseline,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,189588,-31.91266311420268,spot_peer,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,189588,-0.5057817198984653,relative_legacy,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,189588,32.19280948873624,spot_baseline,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,190710,82.53363204576844,baseline,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,190710,9.316595925243504,peer,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,190710,8.082718296833653,spot_peer,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,190710,87.97057662822883,spot_baseline,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,190710,0.0378553182609669,relative_legacy,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,190772,59.822811270131545,baseline,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,190772,76.55347463629771,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,190772,-0.0593315017724362,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,190772,-0.1039010713101968,spot_peer,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,190772,0.7444054095915916,peer,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191026,81.49054453586697,spot_baseline,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191026,-0.0091766383627236,relative_legacy,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191026,17.203221261095166,baseline,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191026,3.436219012600649,spot_peer,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191026,0.5175937469704082,peer,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191046,22.250227321370385,baseline,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191046,0.019838359585793,relative_legacy,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191046,92.5999418556223,spot_baseline,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191046,11.402199112506118,spot_peer,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191046,2.750372485653269,peer,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191284,11.402199112506118,spot_peer,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191284,0.07158513505197,relative_legacy,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191284,10.971025260389045,peer,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191284,79.7152675348647,baseline,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191471,84.79969065549501,spot_baseline,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191471,5.809038291443119,spot_peer,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191471,0.0026642261094119,relative_legacy,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191471,57.51508152993527,baseline,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191471,4.496406322830733,peer,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191935,55.525412321389695,baseline,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191935,6.137005451635644,peer,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191935,89.53026213333065,spot_baseline,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191935,0.030972483415566,relative_legacy,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191935,9.20108892830422,spot_peer,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191975,-0.1221539890828815,relative_legacy,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191975,-6.980628881097476,spot_peer,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191975,66.96315423119849,spot_baseline,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191975,47.32570060270674,baseline,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,191975,-4.349326345957844,peer,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192049,11.103246321492964,peer,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192049,11.402199112506118,spot_peer,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192049,80.48958289532982,baseline,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192049,0.0722106089963232,relative_legacy,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192418,-25.98904180240561,peer,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192418,37.36644053604571,baseline,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192418,-0.4514605407562642,relative_legacy,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192418,-27.85534796041495,spot_peer,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192472,1.9383402972841803,peer,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192472,75.76459485030372,baseline,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192472,-0.0693936337634976,relative_legacy,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192472,-0.1039010713101968,spot_peer,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192924,79.43546549632953,baseline,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192924,89.99489861896717,spot_baseline,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192924,9.534255966239648,spot_peer,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192924,0.0502547731852177,relative_legacy,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,192924,9.669924038058138,peer,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,193275,9.089794376566669,spot_peer,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,193275,78.8875606104165,baseline,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,193275,0.0333343358845545,relative_legacy,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,193275,8.603035580873712,peer,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,193275,89.37505017205658,spot_baseline,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,195286,55.8013223737259,baseline,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,195286,-6.37541367301034,spot_peer,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,195286,-0.1342758462011581,relative_legacy,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,195286,-4.3390417669115005,peer,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,204737,97.81956296816516,spot_baseline,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,204737,6.2969113965664585,peer,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,204737,15.1449222067305,spot_peer,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,204737,0.0542240347325589,relative_legacy,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,204737,39.91586895629368,baseline,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,208405,11.402199112506118,spot_peer,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,208405,0.0873787563061931,relative_legacy,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,208405,90.74415303437831,baseline,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,208405,13.30700894608781,peer,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,215725,42.52736537812263,baseline,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,215725,84.79969065549501,spot_baseline,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,215725,0.0010956520971395,relative_legacy,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,215725,3.1320691850534472,peer,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,215725,5.809038291443119,spot_peer,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,218666,51.675627715256766,baseline,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,218666,-13.482399734095084,peer,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,218666,-0.2755793441649813,relative_legacy,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,218666,54.59683691052925,spot_baseline,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,218666,-15.847881968750752,spot_peer,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,218945,82.67956052181547,baseline,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,218945,5.809038291443119,spot_peer,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,218945,0.0110920544166059,relative_legacy,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,218945,7.672441866974624,peer,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,218945,84.79969065549501,spot_baseline,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,219886,-43.33380022646753,spot_peer,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,219886,15.55295024165219,baseline,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,219886,-40.21392820389903,peer,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,219886,-0.6442600754738868,relative_legacy,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,219886,16.264832211331406,spot_baseline,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,220077,13.363427129518632,peer,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,220077,0.0876055401975456,relative_legacy,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,220077,11.402199112506118,spot_peer,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,220077,90.94778443310533,baseline,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,221727,-11.02247633922161,peer,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,221727,57.12105533667937,baseline,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,221727,-13.051812411379784,spot_peer,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,221727,-0.2456111604066959,relative_legacy,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,222631,0.0038615730414893,peer,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,222631,-0.1039010713101968,spot_peer,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,222631,-0.0076339122415582,relative_legacy,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30284,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.682063+00,222631,8.104062283023762,baseline,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30494 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,182315,32.91237735036524,spot_peer,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,182315,24.11261552478723,peer,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,182315,44.50886859681642,baseline,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,182315,0.1945820608048468,relative_legacy,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,182315,50.58909297299573,spot_baseline,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,185690,-26.569140990309304,spot_baseline,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,185690,-2.569407004911092,baseline,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,185690,-2.146560729071068,peer,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,185690,-22.41384229996182,spot_peer,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,185690,0.0,relative_legacy,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,187708,0.4171814791380809,relative_legacy,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,187708,58.81679993346808,baseline,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,187708,36.34337524131154,peer,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,187708,56.17088757228355,spot_peer,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,187708,83.02553241676829,spot_baseline,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,188107,66.29650127224292,spot_baseline,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,188107,35.91094496073723,baseline,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,188107,22.07189858295291,peer,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,188107,0.2653586441585586,relative_legacy,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,188107,44.175355739876025,spot_peer,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,188909,-7.585436387575209,spot_peer,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,188909,-0.2739367039951077,relative_legacy,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,188909,-4.868757954880934,baseline,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,188909,-11.124598795237723,peer,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,188909,-5.889368905356857,spot_baseline,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,189585,38.582194918813016,spot_peer,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,189585,57.711584778482646,baseline,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,189585,32.777147719242365,peer,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,189585,0.2868643232091488,relative_legacy,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,189588,-9.290943430964242,peer,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,189588,-0.2894400261545894,relative_legacy,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,189588,0.0,baseline,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,189588,-3.362471437203993,spot_peer,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,189588,0.0,spot_baseline,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,190710,-39.592867633113926,spot_baseline,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,190710,-35.61101166308542,peer,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,190710,-31.75248995807575,spot_peer,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,190710,-0.6426996621182218,relative_legacy,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,190710,-37.17962033716074,baseline,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,190772,22.174778003988344,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,190772,27.85827682287749,baseline,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,190772,13.065535183000648,peer,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,190772,0.0751709594930006,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,190772,35.61438102252753,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191026,33.355149984627005,spot_baseline,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191026,0.0523049308424194,relative_legacy,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191026,20.55479908244943,spot_peer,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191026,3.18481518074746,baseline,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191026,1.4100353331689424,peer,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191046,-0.0960770853267599,relative_legacy,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191046,-12.293582866967316,baseline,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191046,-40.25987943086596,spot_peer,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191046,-9.822076934898217,peer,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191046,-51.45731728297583,spot_baseline,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191284,58.496250072115615,spot_baseline,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191284,28.46753237286565,peer,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191284,38.582194918813016,spot_peer,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191284,50.35651684181437,baseline,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191284,0.2613892889545498,relative_legacy,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191471,0.1728815549573627,relative_legacy,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191471,18.12141638103482,peer,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191471,32.954696209143584,baseline,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191471,31.44500131671459,spot_peer,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191471,48.54268271702416,spot_baseline,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191935,-43.440282414577496,spot_baseline,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191935,-27.01009321509991,baseline,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191935,-24.266513994752568,peer,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191935,-0.3990457724699836,relative_legacy,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191935,-34.51127413898898,spot_peer,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191975,-0.3423948799378274,relative_legacy,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191975,-22.554887410607744,spot_peer,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191975,-18.32305383151122,baseline,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191975,-18.9347609916804,peer,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,191975,-26.76584323592414,spot_baseline,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192049,58.496250072115615,spot_baseline,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192049,50.925074474833565,baseline,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192049,38.582194918813016,spot_peer,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192049,28.80487750528537,peer,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192049,0.2628045081740662,relative_legacy,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192418,0.0833900242956997,relative_legacy,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192418,17.94189019983514,peer,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192418,37.37135695470239,baseline,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192418,23.778659369777845,spot_peer,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192472,-25.15387669959645,spot_baseline,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192472,-27.495390066181606,peer,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192472,-24.922438826349747,baseline,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192472,-0.5386737800088579,relative_legacy,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192472,-21.399028728043067,spot_peer,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192924,-68.26172385326697,spot_peer,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192924,-79.98584734562915,baseline,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192924,-1.050365098619609,relative_legacy,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192924,-66.06359337942133,peer,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,192924,-90.5088352974533,spot_baseline,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,193275,43.935717847425664,spot_baseline,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,193275,39.64166502111439,baseline,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,193275,20.39225246020813,peer,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,193275,0.1377687967019009,relative_legacy,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,193275,28.141582650886047,spot_peer,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,195286,62.99799434833279,baseline,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,195286,37.97953949354735,peer,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,195286,0.4063893384019011,relative_legacy,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,195286,51.5301062588826,spot_peer,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,204737,-180.5912947883697,spot_baseline,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,204737,-0.774804776331443,relative_legacy,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,204737,-132.85524400571617,spot_peer,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,204737,-55.39433079464136,peer,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,204737,-74.06798858841472,baseline,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,208405,31.44500131671459,spot_peer,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,208405,0.186583279634724,relative_legacy,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,208405,25.40187514141545,peer,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,208405,47.592158232083406,baseline,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,215725,-25.82098565373935,baseline,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,215725,-21.808205321753608,peer,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,215725,-0.3326030283693655,relative_legacy,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,215725,-40.25987943086596,spot_peer,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,218666,-50.05694611212604,peer,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,218666,-56.87459652898184,baseline,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,218666,-0.8433255739833001,relative_legacy,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,218666,-46.346827709100445,spot_peer,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,218666,-59.94620704162712,spot_baseline,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,218945,49.56951626240687,spot_baseline,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,218945,26.001081999564843,peer,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,218945,48.356757948001366,baseline,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,218945,0.1959913284999613,relative_legacy,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,218945,32.181291085907404,spot_peer,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,219886,36.3749101577988,baseline,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,219886,0.0743090754233985,relative_legacy,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,219886,23.24412422890584,spot_peer,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,219886,17.22621127137374,peer,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,219886,37.10569683501996,spot_baseline,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,220077,-51.45731728297583,spot_baseline,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,220077,-40.25987943086596,spot_peer,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,220077,-50.64882389640714,baseline,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,220077,-0.7958699510930723,relative_legacy,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,220077,-46.2258437497369,peer,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,221727,32.37107881270556,peer,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,221727,0.2831674150233709,relative_legacy,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,221727,57.11959805013534,baseline,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,221727,38.582194918813016,spot_peer,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,222631,-0.0263598242364518,relative_legacy,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,222631,-4.247587258749301,peer,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,222631,-40.25987943086596,spot_peer,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30285,"Will the temperature in New York, NY ever go below 25 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.722463+00,222631,-5.453774989387383,baseline,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30495 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,182315,77.46591040961003,baseline,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,182315,23.270953590842616,peer,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,182315,0.1195708803606198,relative_legacy,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,182315,24.282166590977678,spot_peer,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,182315,87.97057662822883,spot_baseline,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,185690,51.55106199690111,spot_baseline,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,185690,-1.8324029442635152,spot_peer,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,185690,-0.1059888475660745,peer,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,185690,5.052793910102877,baseline,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,185690,-0.0227272614711295,relative_legacy,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,187708,40.47393056274112,baseline,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,187708,2.143093722108328,peer,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,187708,1.3388102612794712,spot_peer,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,187708,-0.1395453585969349,relative_legacy,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,187708,55.97365244329827,spot_baseline,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,188107,-29.21807514933104,spot_baseline,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,188107,-32.39724748293592,peer,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,188107,-59.747816415819045,spot_peer,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,188107,-0.5919293947646356,relative_legacy,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,188107,-16.158095691201595,baseline,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,188909,12.926203997545684,peer,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,188909,60.52515857778832,baseline,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,188909,-0.0121135526434747,relative_legacy,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,188909,13.63237666831123,spot_peer,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,188909,73.11832415721999,spot_baseline,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,189585,-0.0588518348063502,relative_legacy,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,189585,66.93040330156389,baseline,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,189585,11.53821851888727,peer,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,189585,9.824034621133682,spot_peer,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,189588,16.09554722283382,spot_peer,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,189588,75.39649877869877,baseline,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,189588,0.0276439355551043,relative_legacy,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,189588,17.840729521965365,peer,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,190710,89.53026213333065,spot_baseline,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,190710,25.400537222448246,spot_peer,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,190710,25.8444308147388,peer,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,190710,0.1460354722518853,relative_legacy,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,190710,84.17218394231652,baseline,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,190772,26.107401116418508,baseline,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,190772,-0.3238412048509401,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,190772,-10.33370747633799,peer,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,190772,-14.88892140807484,spot_peer,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,190772,33.34237337251918,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191026,44.90930128764449,spot_baseline,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191026,4.591126717512986,baseline,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191026,-4.874902603923185,peer,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191026,-6.594869540375621,spot_peer,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191026,-0.1168978475014531,relative_legacy,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191046,5.457467717076077,peer,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191046,22.008486585587143,spot_peer,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191046,0.0195080910246575,relative_legacy,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191046,20.278159215044152,baseline,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191046,84.79969065549501,spot_baseline,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191284,84.79969065549501,spot_baseline,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191284,20.77481409107344,peer,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191284,22.008486585587143,spot_peer,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191284,72.99936915890919,baseline,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191284,0.0886753945034548,relative_legacy,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191471,18.37300619038697,peer,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191471,0.0885713603889277,relative_legacy,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191471,60.862375062478776,baseline,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191471,89.53026213333065,spot_baseline,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191471,25.400537222448246,spot_peer,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191935,84.79969065549501,spot_baseline,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191935,0.0468304078359299,relative_legacy,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191935,14.664260649761166,peer,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191935,22.008486585587143,spot_peer,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191935,52.86438739636863,baseline,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191975,57.33615507948244,baseline,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191975,-0.0955418370786296,relative_legacy,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191975,7.90436188041121,peer,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191975,6.850675772962577,spot_peer,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,191975,63.66052878172531,spot_baseline,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192049,-132.19280948873626,spot_baseline,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192049,-115.83180658018276,peer,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192049,-115.31311211596174,baseline,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192049,-1.802223689579828,relative_legacy,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192049,-133.58572687402744,spot_peer,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192418,0.0278187415672958,relative_legacy,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192418,17.872931817775754,peer,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192418,16.09554722283382,spot_peer,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192418,75.59356892294468,baseline,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192472,16.09554722283382,spot_peer,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192472,0.0278930945535911,relative_legacy,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192472,75.95892728091927,baseline,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192472,17.88606089192289,peer,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192924,21.344121255415143,peer,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192924,0.0922093040756187,relative_legacy,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192924,22.008486585587143,spot_peer,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192924,75.05791202838358,baseline,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,193275,13.132625571449278,spot_peer,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,193275,72.42136867573585,spot_baseline,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,193275,-0.0157370448965886,relative_legacy,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,193275,66.30442575820638,baseline,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,193275,13.833654312673143,peer,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,195286,21.645438444274347,baseline,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,195286,-0.3973592308509635,relative_legacy,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,195286,-14.99019515980841,peer,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,195286,-19.93617977042987,spot_peer,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,195286,26.303440583379377,spot_baseline,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,204737,93.80975610740931,spot_baseline,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,204737,28.46914327316124,spot_peer,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,204737,12.170092294162265,peer,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,204737,0.0566877165075435,relative_legacy,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,204737,38.71016939142573,baseline,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,208405,-73.85303807903601,peer,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,208405,-1.2303204511457364,relative_legacy,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,208405,-75.69443846691475,spot_peer,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,208405,-50.55384648174108,baseline,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,208405,-51.45731728297583,spot_baseline,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,215725,97.08536543404836,spot_baseline,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,215725,0.0916499736488817,relative_legacy,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,215725,30.817915034584388,spot_peer,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,215725,16.128631486497454,peer,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,215725,48.74899091074594,baseline,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,218666,-16.848427754573546,peer,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,218666,25.934476112056817,baseline,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,218666,-0.4439020698474115,relative_legacy,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,218666,-19.248813282291746,spot_peer,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,218666,27.26204546629918,spot_baseline,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,218945,67.80719051126377,spot_baseline,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,218945,11.451088397052256,peer,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,218945,9.824034621133682,spot_peer,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,218945,-0.058194732909551,relative_legacy,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,218945,66.1852451126899,baseline,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,219886,-0.3685732961610651,relative_legacy,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,219886,31.519122736385302,baseline,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,219886,-11.660083316318277,peer,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,219886,-14.299470947939907,spot_peer,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,219886,34.164424053016006,spot_baseline,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,220077,-10.004996862177792,peer,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,220077,37.36234346446143,baseline,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,220077,-11.655899666270928,spot_peer,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,220077,-0.3542062734109923,relative_legacy,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,221727,16.09554722283382,spot_peer,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,221727,74.81963444931931,baseline,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,221727,0.0271760005297645,relative_legacy,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,221727,17.691724227345173,peer,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,222631,1.7845487852188668,peer,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,222631,16.09554722283382,spot_peer,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,222631,0.0017789336349609,relative_legacy,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30286,"Will the temperature in Jacksonville, FL ever exceed 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.912712+00,222631,8.123058546565282,baseline,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30496 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,182315,-164.38561897747243,spot_baseline,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,182315,-144.83637769416163,baseline,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,182315,25.39322316556293,peer,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,182315,0.3780129325982127,relative_legacy,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,182315,31.214713107291345,spot_peer,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,185690,1.9470705290971293,peer,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,185690,20.0996073677554,spot_peer,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,185690,0.0037333213745439,relative_legacy,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,185690,-17.845270396884324,baseline,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,185690,-179.88680330921125,spot_baseline,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,187708,-190.17763489512188,baseline,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,187708,-259.0744853315163,spot_baseline,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,187708,-36.68182559311171,spot_peer,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,187708,-0.3790540159697892,relative_legacy,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,187708,-28.33632512351405,peer,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,188107,-0.1738635606975875,relative_legacy,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,188107,-137.2407712030111,baseline,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,188107,-244.7458976971221,spot_baseline,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,188107,-26.4075289170568,spot_peer,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,188107,-14.444846975369936,peer,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,188909,-183.65012677171205,spot_baseline,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,188909,0.1935546841956271,relative_legacy,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,188909,12.576495583421725,peer,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,188909,17.401120766823485,spot_peer,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,188909,-152.37796202889805,baseline,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,189585,20.37544349320944,peer,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,189585,-173.6965594166206,spot_baseline,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,189585,-171.54546177921506,baseline,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,189585,0.3252825881990731,relative_legacy,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,189585,24.53831436892192,spot_peer,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,189588,20.412331061890967,peer,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,189588,-171.07264512509065,baseline,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,189588,-173.6965594166206,spot_baseline,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,189588,24.53831436892192,spot_peer,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,189588,0.3252825881990731,relative_legacy,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,190710,-1.168152186830944,relative_legacy,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,190710,-88.05527651630801,peer,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,190710,-332.1928094887361,spot_baseline,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,190710,-89.11123273467557,spot_peer,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,190710,-312.6389821994962,baseline,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,190772,36.96022735102084,peer,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,190772,-109.42316609641998,baseline,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,190772,0.5199633901378112,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,190772,48.99232589280777,spot_peer,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,190772,-139.59286763311397,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191026,90.5384422743336,spot_peer,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191026,-81.6524374303517,spot_baseline,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191026,-15.458956972394812,baseline,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191026,0.2938189412957616,relative_legacy,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191026,21.19667657432985,peer,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191046,-0.2896627652896596,relative_legacy,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191046,-79.58103680880899,baseline,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191046,-21.038366260524064,peer,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191046,-89.11123273467557,spot_peer,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191046,-332.1928094887361,spot_baseline,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191284,-89.11123273467557,spot_peer,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191284,-79.5618708292639,peer,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191284,-1.0700531749697368,relative_legacy,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191284,-332.1928094887361,spot_baseline,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191284,-285.9648902396518,baseline,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191471,-194.3416471633633,spot_baseline,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191471,5.911496167350114,peer,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191471,9.734778819886724,spot_peer,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191471,-132.24622184995044,baseline,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191471,0.1018561614274177,relative_legacy,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191935,-97.34967851249186,baseline,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191935,23.31766016960886,peer,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191935,0.3439323476775513,relative_legacy,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191935,-155.6393348524385,spot_baseline,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191935,37.48622570899151,spot_peer,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191975,80.37317305103333,spot_peer,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191975,-72.58453502449396,baseline,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191975,59.772136652988415,peer,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191975,0.8398011928563374,relative_legacy,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,191975,-95.82897481151628,spot_baseline,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192049,1.5310211506938876,relative_legacy,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192049,108.8018401274188,peer,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192049,-28.13497480488824,baseline,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192049,126.003409508066,spot_peer,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192049,-32.19280948873623,spot_baseline,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192418,-171.5407446491543,baseline,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192418,20.37659400943759,peer,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192418,0.3252825881990731,relative_legacy,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192418,24.53831436892192,spot_peer,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192472,20.267519916745,peer,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192472,0.3243438868713331,relative_legacy,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192472,-173.6965594166206,spot_baseline,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192472,24.53831436892192,spot_peer,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192472,-172.56523759880997,baseline,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192924,-1.105717433082349,relative_legacy,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192924,-294.42144007738216,baseline,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192924,-89.11123273467557,spot_peer,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192924,-82.13199867757531,peer,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,192924,-332.1928094887361,spot_baseline,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,193275,-77.3875756339513,spot_peer,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,193275,-315.8429362604484,spot_baseline,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,193275,-291.6970712701223,baseline,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,193275,-74.59689152675244,peer,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,193275,-0.986046304495503,relative_legacy,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,195286,-17.406351987095125,spot_peer,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,195286,-232.1928094887363,spot_baseline,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,195286,-0.2059031236741709,relative_legacy,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,195286,-16.366917355828022,peer,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,195286,-191.07149726805645,baseline,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,204737,-97.46396693428,baseline,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,204737,-235.1074440546879,spot_baseline,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,204737,-19.49628722683852,spot_peer,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,204737,-0.0621826130468549,relative_legacy,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,204737,-7.325869126207133,peer,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,208405,-232.1928094887363,spot_baseline,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,208405,-21.46237449165133,peer,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,208405,-0.2498169152295022,relative_legacy,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,208405,-17.406351987095125,spot_peer,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,208405,-228.23342722069472,baseline,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,215725,-255.6048098830308,spot_peer,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,215725,-283.5464355364402,baseline,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,215725,-564.3856189774723,spot_baseline,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,215725,-1.750317754035308,relative_legacy,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,215725,-127.9623494297738,peer,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,218666,-187.43999928458575,baseline,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,218666,-196.5784284662087,spot_baseline,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,218666,4.423340187594674,peer,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,218666,8.130897454097214,spot_peer,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,218666,0.1071010943419255,relative_legacy,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,218945,-226.7529474367987,baseline,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,218945,-232.1928094887363,spot_baseline,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,218945,-17.406351987095125,spot_peer,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,218945,-21.16240226375259,peer,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,218945,-0.2459752878332908,relative_legacy,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,219886,0.9729828759295984,relative_legacy,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,219886,75.98676611893823,spot_peer,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,219886,-106.65178601661472,baseline,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,219886,67.23955301016895,peer,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,219886,-101.94628075549574,spot_baseline,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,220077,108.4889215065046,peer,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,220077,112.18981716759812,spot_peer,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,220077,-50.885601337613885,baseline,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,220077,1.5331549309485577,relative_legacy,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,221727,24.53831436892192,spot_peer,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,221727,-169.769154036833,baseline,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,221727,20.4164744306315,peer,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,221727,0.3252825881990731,relative_legacy,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,221727,-173.6965594166206,spot_baseline,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,222631,4.5684846395389975,peer,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,222631,43.399165071744825,spot_peer,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,222631,-15.65764584473192,baseline,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,222631,0.0392673748914386,relative_legacy,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30287,"Will the temperature in Anchorage, Alaska ever go below 0 degrees F in the entire month of December 2024?",2024-11-26 13:52:50.954308+00,222631,-147.39311883324118,spot_baseline,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30497 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,182315,91.07326619029126,spot_baseline,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,182315,59.21352303957312,spot_peer,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,182315,0.2481535018235879,relative_legacy,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,182315,80.29965454006816,baseline,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,182315,35.31348395438782,peer,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,185690,36.14346289146705,spot_peer,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,185690,58.89964020056462,spot_baseline,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,185690,0.0136687740226549,relative_legacy,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,185690,3.36592233216468,peer,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,185690,5.911776423400578,baseline,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,185699,36.135527235884304,baseline,MWG,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,185699,0.31696670393549,peer,MWG,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,185699,-0.2480668405430711,relative_legacy,MWG,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,185699,37.85116232537298,spot_baseline,MWG,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,185699,21.050676931880023,spot_peer,MWG,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,187708,-170.62569612605833,peer,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,187708,-210.9699290983707,spot_peer,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,187708,-213.22069035088492,baseline,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,187708,-285.7259827883918,spot_baseline,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,187708,-2.5701793694990185,relative_legacy,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,188107,-0.0259647457769847,relative_legacy,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,188107,8.424196045415322,peer,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,188107,28.71701887881673,spot_peer,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,188107,48.54268271702414,spot_baseline,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,188107,28.02649905373271,baseline,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,188909,42.22330006830478,spot_baseline,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,188909,-0.1599805279045583,relative_legacy,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,188909,35.08544881576482,baseline,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,188909,4.893112922895063,peer,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,188909,24.18571308656923,spot_peer,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,189585,0.1223844206286631,relative_legacy,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,189585,48.80212382098477,spot_peer,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,189585,27.497593020946933,peer,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,189585,75.60601218778375,baseline,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,190710,37.9902761485063,peer,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,190710,92.5999418556223,spot_baseline,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,190710,0.2712344899421264,relative_legacy,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,190710,60.30822400480109,spot_peer,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,190710,87.23732775977956,baseline,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,190772,-0.941007871528624,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,190772,-47.040829816620224,baseline,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,190772,-59.94620704162712,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,190772,-49.07481014699828,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,190772,-52.294857447902,peer,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191026,-45.3596828779403,peer,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191026,-332.1928094887362,spot_baseline,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191026,-244.2889117710376,spot_peer,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191026,-0.7010207267925388,relative_legacy,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191026,-60.47143026588012,baseline,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191046,-59.68826116754303,peer,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191046,-244.2889117710376,spot_peer,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191046,-79.76683487689296,baseline,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191046,-0.9061644779646644,relative_legacy,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191046,-332.1928094887362,spot_baseline,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191284,0.2601484576635564,relative_legacy,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191284,92.5999418556223,spot_baseline,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191284,79.71326802462221,baseline,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191284,35.80154671167582,peer,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191284,60.30822400480109,spot_peer,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191471,30.71535975092342,peer,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191471,63.07248591839787,baseline,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191471,60.30822400480109,spot_peer,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191471,0.242598718321931,relative_legacy,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191471,92.5999418556223,spot_baseline,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191935,-30.869205117182315,baseline,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191935,-47.39311883324123,spot_baseline,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191935,-0.6715604556153589,relative_legacy,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191935,-36.09806844639211,peer,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191935,-40.07363321703659,spot_peer,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191975,-0.4841532222193268,relative_legacy,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191975,-24.606785615386112,peer,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191975,-31.473259348315853,spot_baseline,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191975,-18.022264535364453,baseline,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,191975,-28.658316958188443,spot_peer,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192049,31.1972356908022,peer,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192049,74.2592757547369,baseline,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192049,54.71506318373807,spot_peer,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192049,0.1930011677068752,relative_legacy,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192418,37.38602164715364,baseline,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192418,-0.4245226820776584,peer,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192418,-0.2598668459402317,relative_legacy,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192418,21.050676931880023,spot_peer,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192472,14.447222097986018,peer,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192472,-0.0561281189916141,relative_legacy,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192472,35.85421248091518,spot_peer,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192472,58.21438766568461,baseline,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192924,0.2169371250755927,relative_legacy,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192924,33.160474493234574,peer,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192924,77.6520019660824,baseline,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192924,56.65086065947816,spot_peer,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,192924,87.49936389329673,spot_baseline,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,193275,56.87623825594943,spot_peer,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,193275,0.2257250824869646,relative_legacy,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,193275,87.81367666269476,spot_baseline,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,193275,34.64783370353494,peer,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,193275,82.4804574390485,baseline,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,195286,60.30822400480109,spot_peer,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,195286,76.19896674675702,baseline,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,195286,0.2579949479053173,relative_legacy,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,195286,34.98243216111822,peer,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,204737,62.99534328789702,spot_peer,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,204737,0.173270968946374,relative_legacy,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,204737,96.3474123974886,spot_baseline,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,204737,40.154699543472766,baseline,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,204737,21.41650631733471,peer,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,208405,66.6509237414832,baseline,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,208405,0.0360426565210388,relative_legacy,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,208405,21.1578291555426,peer,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,208405,42.53061121928462,spot_peer,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,215725,67.80719051126377,spot_baseline,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,215725,42.53061121928462,spot_peer,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,215725,0.0708732280524418,relative_legacy,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,215725,34.08501795275627,baseline,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,215725,14.740005146412308,peer,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,218666,48.54268271702416,spot_baseline,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,218666,7.723752374634088,peer,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,218666,46.38948850474733,baseline,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,218666,-0.1461843490955055,relative_legacy,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,218666,28.71701887881675,spot_peer,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,218945,31.49662464764712,peer,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,218945,82.37493603082727,spot_baseline,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,218945,0.178377939786708,relative_legacy,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,218945,80.48506776970726,baseline,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,218945,52.97639577169863,spot_peer,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,219886,-57.58130396759772,spot_peer,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,219886,-74.60508289709207,peer,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,219886,-1.2792134502364456,relative_legacy,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,219886,-67.74427962617327,baseline,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,219886,-71.80940761028081,spot_baseline,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,220077,42.53061121928462,spot_peer,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,220077,67.80719051126377,spot_baseline,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,220077,21.212948520487867,peer,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,220077,0.0361818181090015,relative_legacy,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,220077,67.22497616617636,baseline,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,221727,48.80212382098477,spot_peer,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,221727,74.81787420508772,baseline,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,221727,27.351612293017418,peer,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,221727,0.1214765626729795,relative_legacy,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,222631,-0.228306491631641,relative_legacy,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,222631,-130.63936466744005,spot_peer,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,222631,-18.47424205732936,baseline,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,222631,-173.6965594166206,spot_baseline,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30288,"Will the temperature in Chicago, IL remain below 60 degrees F for the entire month of December 2024?",2024-11-26 13:52:50.991218+00,222631,-14.149976932211388,peer,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30498 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,182315,-205.8893689053569,spot_baseline,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,182315,-181.6455669823457,baseline,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,182315,-99.1696377485178,peer,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,182315,-1.5574660831146592,relative_legacy,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,182315,-106.02149913985974,spot_peer,RyansAGI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,185690,-1.4633885354747576,baseline,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,185690,3.221230524496825,peer,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,185690,31.13242296379354,spot_peer,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,185690,0.0,relative_legacy,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,185690,-14.401030269151931,spot_baseline,annabot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,185699,44.36066514756145,spot_baseline,MWG,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,185699,0.6543149016127894,relative_legacy,MWG,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,185699,73.22060991691126,spot_peer,MWG,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,185699,43.08856013370524,baseline,MWG,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,185699,63.32597877534765,peer,MWG,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,187708,0.8542456988255961,relative_legacy,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,187708,108.7464318439508,spot_peer,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,187708,79.18445531272211,peer,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,187708,71.03952873778886,baseline,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,187708,93.9602720356044,spot_baseline,twsummerbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,188107,7.038932789139833,spot_baseline,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,188107,4.124644140117741,baseline,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,188107,25.518308725937807,peer,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,188107,0.2116086409933278,relative_legacy,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,188107,46.48884124046333,spot_peer,Cassie,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,188909,0.5090259905762329,relative_legacy,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,188909,29.632027630626933,baseline,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,188909,52.0191303866037,peer,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,188909,66.95606566254632,spot_peer,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,188909,35.61438102252753,spot_baseline,silicoqr,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,189585,-73.69655941662059,spot_baseline,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,189585,-20.96378492951436,peer,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,189585,-72.75556172727269,baseline,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,189585,-11.338123512863696,spot_peer,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,189585,-0.5069665507128109,relative_legacy,mf-bot-1,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,189588,86.80143406175361,peer,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,189588,96.27877688604627,spot_peer,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,189588,75.3949654294161,baseline,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,189588,0.972821880074292,relative_legacy,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,190710,-247.3931188332413,spot_baseline,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,190710,-233.28953728425216,baseline,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,190710,-136.59747638306726,peer,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,190710,-135.74864662654377,spot_peer,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,190710,-2.096897645721238,relative_legacy,Bot_Pepa,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,190772,0.6274380771694683,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,190772,83.34525211413231,spot_peer,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,190772,45.95192923908572,baseline,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,190772,62.097248452851865,peer,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,190772,58.496250072115615,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191026,107.77209251410278,spot_peer,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191026,11.735009635681774,baseline,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191026,17.542172859590096,peer,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191026,0.1292090244528326,relative_legacy,manticAI,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191046,-196.48660199976263,spot_peer,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191046,-0.7418263769473009,relative_legacy,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191046,-46.8980720221758,peer,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191046,-79.68768607621743,baseline,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191046,-332.1928094887361,spot_baseline,archipelago,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191284,-232.1928094887363,spot_baseline,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191284,-124.86139334190176,spot_peer,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191284,-199.87838523973716,baseline,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191284,-112.7827894296943,peer,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191284,-1.757273009355458,relative_legacy,000_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191471,-113.45174685188664,peer,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191471,-161.7178042155708,spot_peer,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191471,-1.764255363254886,relative_legacy,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191471,-193.44828817410868,baseline,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191471,-283.65012677171217,spot_baseline,HSeldon,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191935,35.61438102252753,spot_baseline,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191935,66.95606566254632,spot_peer,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191935,23.25395275221241,baseline,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191935,41.54617243694441,peer,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191935,0.3790538470179239,relative_legacy,pgodzinai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191975,61.1446281025158,spot_peer,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191975,0.3196041687215189,relative_legacy,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191975,14.514642857201784,baseline,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191975,31.12493246731082,peer,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,191975,27.500704749986976,spot_baseline,jkraybill_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192049,-100.0,spot_baseline,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192049,-31.36414308073493,peer,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192049,-87.68306840404317,baseline,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192049,-30.17801771490569,spot_peer,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192049,-0.6222621576340958,relative_legacy,gnosis-ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192418,83.34525211413231,spot_peer,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192418,74.06690321587642,peer,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192418,0.798315647834903,relative_legacy,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192418,57.78721197628254,baseline,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192472,76.2685215452485,baseline,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192472,0.9809191967551462,relative_legacy,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192472,87.93260116389862,peer,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192472,96.27877688604627,spot_peer,bestworldbot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192924,-154.32450735147324,baseline,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192924,-1.28661114213063,relative_legacy,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192924,-79.36916184268121,peer,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192924,-82.96333217072471,spot_peer,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,192924,-173.6965594166206,spot_baseline,acm_bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,193275,-81.60371651574049,spot_baseline,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,193275,-76.83018928507575,baseline,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,193275,-0.5342413865506421,relative_legacy,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,193275,-23.26715576552536,peer,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,193275,-17.00164128401318,spot_peer,histerio,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,195286,-124.86139334190176,spot_peer,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,195286,-107.54248196863202,peer,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,195286,-1.705410782512896,relative_legacy,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,195286,-191.0647038657745,baseline,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,195286,-232.1928094887363,spot_baseline,Unwrapped80T,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,204737,-232.1928094887363,spot_baseline,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,204737,-52.77352616345594,peer,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,204737,-124.86139334190176,spot_peer,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,204737,-97.3268388662417,baseline,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,204737,-0.7860946823417815,relative_legacy,SynapseSeer,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,208405,0.4775609178765583,relative_legacy,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,208405,50.67316159427861,peer,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,208405,60.28708514499731,spot_peer,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,208405,25.75167182907821,baseline,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,215725,-173.6965594166206,spot_baseline,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,215725,-87.37198875904504,baseline,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,215725,-0.6924484109125576,relative_legacy,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,215725,-42.85124976415908,peer,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,215725,-82.96333217072471,spot_peer,estr.ai,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,218666,76.55242138200778,peer,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,218666,61.10743150197764,baseline,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,218666,0.8403990073777284,relative_legacy,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,218666,87.13276160442933,spot_peer,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,218666,63.78420603241049,spot_baseline,GreeneiBot2,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,218945,48.54268271702416,spot_baseline,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,218945,0.6956329268482099,relative_legacy,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,218945,76.21598872714732,spot_peer,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,218945,66.44550043216877,peer,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,218945,47.45178509498346,baseline,SeidrBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,219886,0.5929308619717145,relative_legacy,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,219886,68.5581649379294,spot_peer,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,219886,57.26516551109371,peer,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,219886,34.51764987190297,baseline,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,219886,37.85116232537298,spot_baseline,SaraBase,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,220077,-132.19280948873626,spot_baseline,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,220077,-131.39299492132108,baseline,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,220077,-63.96094178066111,peer,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,220077,-1.093913735229878,relative_legacy,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,220077,-53.23618468404072,spot_peer,mmBot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,221727,0.5907694800564437,relative_legacy,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,221727,68.5581649379294,spot_peer,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,221727,36.95943351003043,baseline,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,221727,58.82039408532929,peer,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,222631,-100.0,spot_baseline,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,222631,-3.1450436575063527,peer,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,222631,-10.648175157330654,baseline,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,222631,-0.0869830481648939,relative_legacy,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30289,"Will the temperature in Phoenix, AZ remain below 80 degrees F in the entire month of December 2024?",2024-11-26 13:52:51.027781+00,222631,-30.17801771490569,spot_peer,Grizeu_Bot,True,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30499 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,182315,30.776731904707027,spot_peer,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,182315,28.57640734181953,peer,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,182315,0.2139547602109137,relative_legacy,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,182315,92.5999418556223,spot_baseline,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,182315,81.75031567135005,baseline,RyansAGI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,185690,-0.0743569872897668,baseline,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,185690,-3.024506019936561,peer,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,185690,-0.7231569231075864,spot_baseline,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,185690,-35.996576791647975,spot_peer,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,185690,-0.0506564936998601,relative_legacy,annabot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,185699,-27.33875281856692,peer,MWG,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,185699,-0.5759151750430369,relative_legacy,MWG,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,185699,-29.464298087387817,spot_peer,MWG,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,185699,8.406426478847456,spot_baseline,MWG,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,185699,8.274487621585347,baseline,MWG,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,187708,-8.555321554957118,spot_peer,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,187708,-5.3448009656049065,peer,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,187708,28.91107067906723,baseline,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,187708,-0.2182733402505983,relative_legacy,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,187708,37.629038333705154,spot_baseline,twsummerbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,188107,11.922462303088464,peer,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,188107,18.27836477663107,spot_peer,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,188107,0.0264082681047373,relative_legacy,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,188107,75.13208871432764,spot_baseline,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,188107,44.65515641449496,baseline,Cassie,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,188389,21.33382273052168,peer,Panshul42,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,188389,0.0965987653757799,relative_legacy,Panshul42,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,188389,76.55347463629771,spot_baseline,Panshul42,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,188389,75.92085605342643,baseline,Panshul42,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,188389,19.29537602236129,spot_peer,Panshul42,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,188909,5.658352836636751,spot_baseline,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,188909,-31.43056337468532,spot_peer,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,188909,-0.5120796459680281,relative_legacy,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,188909,-25.11417559643818,peer,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,188909,4.714384487511044,baseline,silicoqr,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,189585,-1.3867778742766712,relative_legacy,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,189585,-86.16694067753087,peer,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,189585,-88.20954008893275,spot_peer,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,189585,-72.74904519282104,baseline,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,189585,-73.69655941662063,spot_baseline,mf-bot-1,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,189588,-104.69609090421204,peer,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,189588,-100.0,spot_baseline,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,189588,-1.6432593604330044,relative_legacy,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,189588,-107.02982982250224,spot_peer,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,189588,-98.50449923919088,baseline,mf-bot-3,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,190710,86.39384504239716,spot_baseline,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,190710,26.33622763800346,spot_peer,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,190710,81.56649875198204,baseline,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,190710,26.558034069861485,peer,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,190710,0.1762638772606249,relative_legacy,Bot_Pepa,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,190772,-42.97237357844072,peer,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,190772,-28.63041851566411,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,190772,-22.51455147145535,baseline,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,190772,-0.7430984341264469,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,190772,-55.964411310388,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191026,-54.67181460066615,peer,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191026,-0.7072112344330309,spot_baseline,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191026,-35.98516754349638,spot_peer,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191026,-0.8103433174842731,relative_legacy,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191026,-67.61297770308651,baseline,manticAI,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191046,0.0649003799766092,relative_legacy,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191046,92.5999418556223,spot_baseline,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191046,30.776731904707027,spot_peer,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191046,8.738013886579006,peer,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191046,22.262180094858024,baseline,archipelago,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191284,27.87913473695368,peer,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191284,79.71231891600605,baseline,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191284,30.776731904707027,spot_peer,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191284,0.2125888840650708,relative_legacy,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191284,92.5999418556223,spot_baseline,000_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191471,63.21122021856109,baseline,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191471,30.776731904707027,spot_peer,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191471,0.1663249082546035,relative_legacy,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191471,92.5999418556223,spot_baseline,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191471,22.217684212244983,peer,HSeldon,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191935,-14.535810786965992,peer,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191935,-0.3423456586274156,relative_legacy,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191935,16.349873228287958,spot_baseline,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191935,-23.780708184623705,spot_peer,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191935,10.701826986591763,baseline,pgodzinai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191975,-6.508060730913946,spot_peer,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191975,-0.2086954450850203,relative_legacy,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191975,40.49031221451307,spot_baseline,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191975,-4.010151731233012,peer,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,191975,32.64832458908238,baseline,jkraybill_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192049,93.18301219118908,baseline,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192049,0.2832562309684325,relative_legacy,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192049,33.98608282806507,spot_peer,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192049,97.08536543404836,spot_baseline,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192049,34.52823551391925,peer,gnosis-ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192418,-8.396390335799154,spot_peer,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192418,-0.2856150744292907,relative_legacy,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192418,37.3988500816802,baseline,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192418,-6.3636528983196685,peer,InstitutPelFutur,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192472,81.55754288625727,spot_baseline,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192472,81.36632027323994,baseline,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192472,22.875820717885414,spot_peer,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192472,0.1460372442972854,relative_legacy,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192472,24.911026500062984,peer,bestworldbot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192924,0.2162841065170478,relative_legacy,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192924,28.807226162382527,peer,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192924,30.776731904707027,spot_peer,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192924,82.38279069452025,baseline,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,192924,92.5999418556223,spot_baseline,acm_bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,193275,30.01330460549369,spot_peer,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,193275,91.53296760130094,spot_baseline,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,193275,0.229258147818506,relative_legacy,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,193275,87.70771633964166,baseline,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,193275,30.59997768189488,peer,histerio,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,195286,26.729521278128992,peer,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,195286,76.19639852606986,baseline,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,195286,30.776731904707027,spot_peer,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,195286,0.2116535725230002,relative_legacy,Unwrapped80T,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,204737,41.2380875192378,baseline,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,204737,15.595723266678196,peer,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,204737,34.51140613206211,spot_peer,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,204737,97.81956296816516,spot_baseline,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,204737,0.1069093640566467,relative_legacy,SynapseSeer,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,208405,-0.7465351457375557,spot_peer,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,208405,-0.1819884666763213,relative_legacy,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,208405,1.1948083196267896,peer,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,208405,47.65539564748991,baseline,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,215725,0.0991856768995866,relative_legacy,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,215725,92.5999418556223,spot_baseline,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,215725,46.60813553356815,baseline,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,215725,16.502251664709288,peer,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,215725,30.776731904707027,spot_peer,estr.ai,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,218666,-0.7465351457375557,spot_peer,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,218666,48.54268271702416,spot_baseline,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,218666,46.6170615629264,baseline,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,218666,-0.1826588299875131,relative_legacy,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,218666,0.8510381051069168,peer,GreeneiBot2,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,218945,8.173737316667154,peer,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,218945,58.496250072115615,spot_baseline,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,218945,6.375309652915517,spot_peer,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,218945,-0.0852689914655088,relative_legacy,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,218945,57.2094864833196,baseline,SeidrBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,219886,0.2616133358707217,spot_peer,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,219886,45.95803899573789,baseline,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,219886,1.5820227575705448,peer,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,219886,-0.1657382888297965,relative_legacy,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,219886,49.95168194395464,spot_baseline,SaraBase,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,220077,87.75556351855897,baseline,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,220077,0.210010837680514,relative_legacy,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,220077,27.46438975745536,spot_peer,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,220077,87.97057662822883,spot_baseline,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,220077,29.58033334185237,peer,mmBot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,221727,-0.0854177765618364,relative_legacy,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,221727,8.15140572598133,peer,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,221727,6.375309652915517,spot_peer,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,221727,57.16591613067189,baseline,mf-bot-5,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,222631,-0.1937963377355058,peer,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,222631,-0.0124031388539465,relative_legacy,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,222631,-8.396390335799154,spot_peer,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30290,"Will the temperature in Denver, CO remain below 70 degrees F for the entire month of December 2024?",2024-11-26 13:52:51.064324+00,222631,4.0350995154761184,baseline,Grizeu_Bot,True,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,2024-11-27 15:30:00+00,30500 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,182315,31.59999193919015,baseline,RyansAGI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,182315,62.04986991638157,spot_peer,RyansAGI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,182315,40.78857979395595,peer,RyansAGI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,182315,52.60688116675877,spot_baseline,RyansAGI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,182315,-0.0202803129283825,relative_legacy,RyansAGI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,185690,2.281844087662668,peer,annabot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,185690,-0.0782584275388196,baseline,annabot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,185690,23.769003362402582,spot_peer,annabot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,185690,-0.04984044789951,relative_legacy,annabot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,185690,-0.8391991606841575,spot_baseline,annabot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,185699,-3.5325004751070037,peer,MWG,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,185699,-12.486329361371398,spot_peer,MWG,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,185699,-34.218624381708054,baseline,MWG,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,185699,-51.45731728297583,spot_baseline,MWG,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,185699,-0.6453749315859488,relative_legacy,MWG,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,187708,51.63990770355661,spot_peer,twsummerbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,187708,37.2174140625684,peer,twsummerbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,187708,-0.0751197874882058,relative_legacy,twsummerbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,187708,24.25022795033429,baseline,twsummerbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,187708,38.07294485035482,spot_baseline,twsummerbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,188107,0.1588907195114705,relative_legacy,Cassie,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,188107,91.32883668066692,spot_baseline,Cassie,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,188107,44.704085811207655,baseline,Cassie,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,188107,89.78455134962243,spot_peer,Cassie,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,188107,45.59293092783955,peer,Cassie,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,188909,20.944293286701285,baseline,silicoqr,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,188909,62.04986991638157,spot_peer,silicoqr,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,188909,25.35721076443288,peer,silicoqr,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,188909,52.60688116675877,spot_baseline,silicoqr,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,188909,-0.0288098271047212,relative_legacy,silicoqr,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,189585,-100.04044160138244,spot_peer,mf-bot-1,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,189585,-88.25468221454764,peer,mf-bot-1,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,189585,-173.6965594166206,spot_baseline,mf-bot-1,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,189585,-2.111158002395497,relative_legacy,mf-bot-1,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,189585,-171.40975254148725,baseline,mf-bot-1,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,189588,-100.04044160138244,spot_peer,mf-bot-3,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,189588,-171.031160856534,baseline,mf-bot-3,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,189588,-173.6965594166206,spot_baseline,mf-bot-3,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,189588,-88.22517132192469,peer,mf-bot-3,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,189588,-2.1109229953442497,relative_legacy,mf-bot-3,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,189869,-173.9527766438645,baseline,VeritasAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,189869,-2.1048114870060006,relative_legacy,VeritasAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,189869,-101.25629505796496,peer,VeritasAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,189869,-141.93850277255942,spot_peer,VeritasAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,189869,-232.19280948873623,spot_baseline,VeritasAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,190710,85.45339556127635,baseline,Bot_Pepa,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,190710,94.25147647724104,peer,Bot_Pepa,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,190710,0.375359723711379,relative_legacy,Bot_Pepa,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,190710,89.60149845262292,spot_peer,Bot_Pepa,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,190710,91.07326619029126,spot_baseline,Bot_Pepa,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,190772,-105.57374108553478,peer,Jay_Bailey_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,190772,-181.24355424917584,baseline,Jay_Bailey_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,190772,-232.19280948873623,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,190772,-2.2017568015046862,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,190772,-141.93850277255942,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191026,-12.857335532165044,peer,manticAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191026,-189.31233008184475,spot_baseline,manticAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191026,-22.093315048827908,baseline,manticAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191026,-111.22526992388224,spot_peer,manticAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191026,-0.2817516077441039,relative_legacy,manticAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191046,0.0898412719480479,relative_legacy,archipelago,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191046,27.179365202204224,peer,archipelago,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191046,92.5999418556223,spot_baseline,archipelago,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191046,90.6949830834451,spot_peer,archipelago,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191046,27.47247818532571,baseline,archipelago,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191284,92.5999418556223,spot_baseline,000_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191284,78.62965686879606,baseline,000_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191284,84.50501193782819,peer,000_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191284,90.6949830834451,spot_peer,000_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191284,0.3416475563924701,relative_legacy,000_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191471,-213.56371143042043,spot_peer,HSeldon,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191471,-332.1928094887362,spot_baseline,HSeldon,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191471,-225.02528655480475,baseline,HSeldon,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191471,-2.5618517904484244,relative_legacy,HSeldon,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191471,-140.51173531534846,peer,HSeldon,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191935,-205.8893689053569,spot_baseline,pgodzinai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191935,-123.09860857051746,spot_peer,pgodzinai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191935,-134.87178399365553,baseline,pgodzinai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191935,-1.657011735314522,relative_legacy,pgodzinai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191935,-76.51110326995817,peer,pgodzinai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191975,0.119445705665243,relative_legacy,jkraybill_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191975,81.486034286095,spot_peer,jkraybill_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191975,46.87201990669263,peer,jkraybill_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191975,79.74280821523134,spot_baseline,jkraybill_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,191975,43.446044727042775,baseline,jkraybill_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192049,79.20166745538856,spot_peer,gnosis-ai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192049,69.44438730753579,peer,gnosis-ai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192049,0.2082348782230882,relative_legacy,gnosis-ai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192049,60.50713479806298,baseline,gnosis-ai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192418,-169.69324834092652,baseline,InstitutPelFutur,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192418,-2.110542654582724,relative_legacy,InstitutPelFutur,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192418,-100.04044160138244,spot_peer,InstitutPelFutur,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192418,-88.00631811822467,peer,InstitutPelFutur,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192472,-147.39311883324126,spot_baseline,bestworldbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192472,-145.3054065320217,baseline,bestworldbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192472,-69.24282341092265,peer,bestworldbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192472,-1.8517751325746603,relative_legacy,bestworldbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192472,-81.20054739934046,spot_peer,bestworldbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192924,82.0485342986379,spot_baseline,acm_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192924,72.30052683756556,baseline,acm_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192924,0.2563899503742681,relative_legacy,acm_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192924,83.13751540441368,spot_peer,acm_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,192924,81.23961500560333,peer,acm_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,193275,0.2547629519899619,relative_legacy,histerio,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,193275,72.73943982620294,baseline,histerio,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,193275,81.39350704813171,spot_baseline,histerio,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,193275,82.18101273645544,peer,histerio,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,193275,82.66835076947277,spot_peer,histerio,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,195286,72.87547981931927,peer,Unwrapped80T,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,195286,90.6949830834451,spot_peer,Unwrapped80T,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,195286,68.03366955508288,baseline,Unwrapped80T,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,195286,0.324863668505719,relative_legacy,Unwrapped80T,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,204737,0.1575714259538174,relative_legacy,SynapseSeer,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,204737,98.5500430304885,spot_baseline,SynapseSeer,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,204737,40.37374208482072,baseline,SynapseSeer,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,204737,39.674090158306136,peer,SynapseSeer,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,204737,94.95675546529684,spot_peer,SynapseSeer,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,208405,-173.6965594166206,spot_baseline,mf-bot-4,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,208405,-170.4896868279676,baseline,mf-bot-4,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,208405,-2.111055148348516,relative_legacy,mf-bot-4,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,208405,-100.04044160138244,spot_peer,mf-bot-4,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,208405,-88.2092608303889,peer,mf-bot-4,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,218666,-97.58703659502444,baseline,GreeneiBot2,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,218666,-100.0,spot_baseline,GreeneiBot2,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,218666,-35.44894355845062,peer,GreeneiBot2,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,218666,-47.255127145563385,spot_peer,GreeneiBot2,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,218666,-1.3913597705110088,relative_legacy,GreeneiBot2,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,218945,59.13887929648961,spot_peer,SeidrBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,218945,64.14019489695544,peer,SeidrBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,218945,-0.0388609937406675,relative_legacy,SeidrBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,218945,48.54268271702416,spot_baseline,SeidrBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,218945,45.05185800804217,baseline,SeidrBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,219886,80.01114920257906,peer,SaraBase,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,219886,73.44607608834795,spot_peer,SaraBase,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,219886,0.1811876439328997,relative_legacy,SaraBase,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,219886,65.14745911828827,baseline,SaraBase,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,219886,68.51776838860789,spot_baseline,SaraBase,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,220077,0.2590356878015396,relative_legacy,mmBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,220077,72.93712320102364,spot_peer,mmBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,220077,67.80719051126377,spot_baseline,mmBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,220077,66.54025010368626,baseline,mmBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,220077,85.03979781927933,peer,mmBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,221727,-173.6965594166206,spot_baseline,mf-bot-5,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,221727,-169.91369629642804,baseline,mf-bot-5,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,221727,-88.04395380468956,peer,mf-bot-5,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,221727,-2.110387412855491,relative_legacy,mf-bot-5,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,221727,-100.04044160138244,spot_peer,mf-bot-5,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,222631,98.5500430304885,spot_baseline,Grizeu_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,222631,94.95675546529684,spot_peer,Grizeu_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,222631,0.0339644663514503,relative_legacy,Grizeu_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,222631,7.285522991149393,baseline,Grizeu_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30317,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-27 15:00:54.958395+00,222631,7.022283888768354,peer,Grizeu_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30537 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,182315,-164.38561897747243,spot_baseline,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,182315,-0.53097012957779,relative_legacy,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,182315,-50.25265156112275,peer,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,182315,-82.61678722625355,spot_peer,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,182315,-98.86110251301317,baseline,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,185690,0.0401428296519406,relative_legacy,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,185690,18.961363711843,spot_peer,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,185690,1.8523950824457465,peer,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,185690,-2.137741976328816,baseline,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,185690,-22.56662418289585,spot_baseline,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,185699,30.158853050577505,baseline,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,185699,44.36066514756145,spot_baseline,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,185699,44.879285095450015,peer,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,185699,0.785688605047289,relative_legacy,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,185699,66.89817434383339,spot_peer,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,187708,0.8062433349985021,relative_legacy,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,187708,46.71908972323354,peer,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,187708,33.95599252445103,baseline,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,187708,52.20557491609642,spot_baseline,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,187708,72.5171073345675,spot_peer,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,188107,-43.629716674968506,spot_peer,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,188107,-0.126329313856447,relative_legacy,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,188107,-109.95356735509142,spot_baseline,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,188107,-54.88204119358306,baseline,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,188107,-21.64564071643373,peer,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,188909,-78.58751946471523,spot_baseline,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,188909,0.0260594951968746,relative_legacy,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,188909,-31.434480831117117,baseline,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,188909,-21.16371942576196,spot_peer,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,188909,-7.94116861371308,peer,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,189585,47.79130741498842,baseline,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,189585,66.05601959649458,peer,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,189585,69.89355315406947,spot_peer,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,189585,1.1869237456527686,relative_legacy,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,189588,57.59602492747754,baseline,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,189588,77.02281654105445,spot_peer,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,189588,1.2854639329462985,relative_legacy,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,189588,73.28101316062809,peer,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,189869,0.7252494244262913,relative_legacy,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,189869,19.70618129290462,baseline,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,189869,39.40584458713344,peer,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,189869,53.96464957191945,spot_peer,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,190710,-105.22769349626913,baseline,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,190710,-45.116552878352174,spot_peer,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,190710,-0.3569807406930577,relative_legacy,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,190710,-45.715951435487455,peer,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,190710,-112.0294233717712,spot_baseline,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,190772,11.941814425312607,peer,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,190772,0.3544933296294106,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,190772,-19.64902797136424,baseline,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,190772,-25.153876699596427,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,190772,17.108238698250446,spot_peer,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191026,-1.1638121206152354,peer,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191026,-7.459387120273429,baseline,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191026,-58.188004330129786,spot_baseline,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191026,-6.552524145423197,spot_peer,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191026,0.0033408021413651,relative_legacy,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191046,-51.70697210502406,baseline,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191046,-0.2570664626370499,relative_legacy,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191046,-173.6965594166206,spot_baseline,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191046,-26.03771402236627,peer,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191046,-89.28576774380258,spot_peer,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191284,-89.28576774380258,spot_peer,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191284,-78.271579889509,peer,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191284,-147.4905936790204,baseline,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191284,-173.6965594166206,spot_baseline,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191284,-0.8494613738686341,relative_legacy,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191471,-70.44587354176059,spot_peer,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191471,-147.39311883324118,spot_baseline,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191471,-0.5157703407561613,relative_legacy,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191471,-48.96140217490375,peer,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191471,-99.92043087286024,baseline,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191935,21.915306980522686,spot_peer,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191935,-12.109477263666296,baseline,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191935,13.703854308368758,peer,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191935,0.3471431958931587,relative_legacy,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191935,-18.44245711374277,spot_baseline,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191975,11.345262162611723,baseline,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191975,53.84977092380809,spot_peer,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191975,23.868980597759045,peer,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191975,26.1430520131204,spot_baseline,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,191975,0.4707739206204842,relative_legacy,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192049,1.0993445340330883,relative_legacy,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192049,65.30398851593681,peer,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192049,83.6917970586035,spot_peer,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192049,53.68211473689164,baseline,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192418,0.2091875784880197,relative_legacy,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192418,-1.731655503791554,spot_peer,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192418,-50.27984993244106,baseline,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192418,-5.308745652854774,peer,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192472,37.364648106513584,baseline,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192472,1.082578882720705,relative_legacy,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192472,62.23572936485155,spot_peer,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192472,58.4896550253731,peer,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192924,-68.73784567346883,spot_peer,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192924,-127.93012131399996,baseline,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192924,-63.20755924024063,peer,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192924,-0.6176010833426967,relative_legacy,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,192924,-145.00844463780442,spot_baseline,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,193275,-41.66487281103398,peer,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,193275,-98.87042764677918,baseline,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,193275,-43.33489954678649,spot_peer,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,193275,-109.54195650786818,spot_baseline,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,193275,-0.3115100955085645,relative_legacy,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,195286,-0.2114875903353502,relative_legacy,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,195286,-73.46935063186619,baseline,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,195286,-28.2704557842012,peer,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,195286,-100.0,spot_baseline,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,195286,-36.500453287983554,spot_peer,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,204737,-89.28576774380258,spot_peer,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,204737,-173.6965594166206,spot_baseline,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,204737,-36.29394684335619,peer,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,204737,-0.3626126219717077,relative_legacy,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,204737,-71.42010768096814,baseline,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,208405,0.9688946010715546,relative_legacy,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,208405,50.13014289488168,peer,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,208405,25.803659678624,baseline,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,208405,53.96464957191945,spot_peer,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,218666,6.844954894427192,peer,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,218666,-33.607457121633566,baseline,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,218666,-34.37324652057107,spot_baseline,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,218666,10.504845827037496,spot_peer,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,218666,0.3757526963652698,relative_legacy,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,218945,-15.952531217649794,spot_peer,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,218945,-71.31188522118381,spot_baseline,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,218945,-0.0114746353655315,relative_legacy,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,218945,-21.53551156452288,peer,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,218945,-72.3928048471223,baseline,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,219886,-89.28576774380258,spot_peer,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,219886,-173.6965594166206,spot_baseline,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,219886,-167.99448281575684,baseline,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,219886,-0.970299258207413,relative_legacy,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,219886,-91.12712393285813,peer,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,220077,-5.706855772116737,peer,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,220077,0.2042623693102008,relative_legacy,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,220077,-1.731655503791554,spot_peer,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,220077,-50.59333558257116,baseline,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,221727,69.89355315406947,spot_peer,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,221727,1.1864709378457612,relative_legacy,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,221727,47.491353579491616,baseline,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,221727,66.00967480482603,peer,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,221727,48.54268271702416,spot_baseline,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,222631,4.618279423065264,peer,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,222631,0.0748226882685198,relative_legacy,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,222631,62.23572936485155,spot_peer,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,222631,2.803611235026648,baseline,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30318,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:00:54.990486+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30538 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,182315,1.23610390354042,peer,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,182315,29.362921425716756,baseline,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,182315,33.34237337251918,spot_baseline,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,182315,1.9717159840870475,spot_peer,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,182315,-0.0300588346541618,relative_legacy,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,185690,-12.513005699612332,spot_peer,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,185690,1.277322557016753,baseline,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,185690,13.11943517084504,spot_baseline,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,185690,-1.1374090289769088,peer,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,185690,-0.0125061763432126,relative_legacy,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,185699,0.200752396241599,relative_legacy,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,185699,45.169027589190144,baseline,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,185699,16.583516818645602,peer,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,185699,24.04103968155316,spot_peer,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,185699,64.15460290875237,spot_baseline,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,187708,-0.1410486904730208,relative_legacy,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,187708,-8.230489657024584,peer,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,187708,-11.499005195114796,spot_peer,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,187708,9.844039753724935,baseline,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,187708,14.535138557261984,spot_baseline,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,188107,-30.901004137724637,spot_peer,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,188107,-16.510928319390782,peer,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,188107,-12.553088208385882,spot_baseline,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,188107,-6.672541050357053,baseline,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,188107,-0.2404922476692003,relative_legacy,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,188909,9.28317456853833,peer,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,188909,22.70768784850934,spot_peer,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,188909,25.06475865783691,baseline,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,188909,0.1249537262709088,relative_legacy,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,188909,62.29303509201767,spot_baseline,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,189585,-12.06110993568265,spot_peer,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,189585,-0.2413071121274901,relative_legacy,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,189585,-12.242815291481266,peer,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,189585,13.750352374993504,spot_baseline,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,189585,13.573764088970474,baseline,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,189588,1.9717159840870475,spot_peer,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,189588,33.34237337251918,spot_baseline,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,189588,-0.0482318079070999,relative_legacy,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,189588,32.85777308768856,baseline,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,189588,1.8318684193232413,peer,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,189869,19.70680420804973,baseline,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,189869,-3.0699343134209216,spot_peer,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,189869,-0.072391430178493,relative_legacy,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,189869,-2.782577645646048,peer,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,190710,0.2291524387189081,relative_legacy,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,190710,58.60924599559353,baseline,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,190710,21.166072245901308,peer,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,190710,62.29303509201767,spot_baseline,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,190710,22.70768784850934,spot_peer,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,190772,33.054211329352576,baseline,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,190772,0.0468817701827279,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,190772,6.107316970054315,peer,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,190772,8.332698260695151,spot_peer,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,190772,42.22330006830476,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191026,2.7783532225701277,baseline,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191026,60.545699931417495,spot_baseline,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191026,-0.4450794738666003,peer,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191026,21.4561553937773,spot_peer,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191026,-0.0017392582098052,relative_legacy,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191046,-0.1309399516082691,relative_legacy,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191046,-32.79708180010496,spot_peer,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191046,-15.200309344505014,spot_baseline,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191046,-4.51404479516645,baseline,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191046,-9.571989092688174,peer,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191284,-32.19280948873623,spot_baseline,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191284,-27.335498177956243,baseline,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191284,-44.96799548459791,spot_peer,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191284,-0.5821012637244056,relative_legacy,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191284,-39.001931979278034,peer,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191471,13.252620183359335,peer,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191471,0.1568860920595208,relative_legacy,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191471,58.496250072115615,spot_baseline,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191471,19.98823265571409,spot_peer,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191471,39.73730508683509,baseline,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191935,60.40713236688608,spot_baseline,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191935,0.1673911107982881,relative_legacy,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191935,21.356906086549557,spot_peer,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191935,40.169749986650025,baseline,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191935,13.907457417819712,peer,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191975,13.901583195984973,baseline,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191975,-0.0630455661902056,relative_legacy,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191975,23.225142353717025,spot_baseline,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191975,-3.3565300398323576,peer,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,191975,-5.274771843527831,spot_peer,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192049,4.08773718589909,peer,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192049,33.03491169226496,baseline,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192049,0.0110157868521152,relative_legacy,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192049,5.201145479511176,spot_peer,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192049,37.85116232537298,spot_baseline,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192418,0.3747779080188178,relative_legacy,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192418,32.92175742762804,spot_peer,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192418,32.519457305314106,peer,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192418,74.8274904005648,baseline,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192472,-50.268302571311466,spot_peer,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192472,-39.592867633113926,spot_baseline,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192472,-0.7688497836473991,relative_legacy,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192472,-50.76897040058762,peer,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192472,-39.19856366572256,baseline,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192924,17.619057175864615,spot_peer,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192924,0.162328910595817,relative_legacy,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192924,15.225230941297578,peer,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192924,55.18851034717248,spot_baseline,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,192924,48.80200462542616,baseline,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,193275,57.918014812715,spot_baseline,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,193275,0.1865031516004658,relative_legacy,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,193275,17.6497873804285,peer,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,193275,53.25293291721549,baseline,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,193275,19.574070444635083,spot_peer,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,195286,0.0929065762803579,relative_legacy,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,195286,12.858969268729094,spot_peer,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,195286,9.07309659400858,peer,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,195286,35.76905581664796,baseline,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,204737,-0.1924306776397314,relative_legacy,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,204737,-6.299432170674815,baseline,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,204737,-13.515234719887877,peer,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,204737,-32.79708180010496,spot_peer,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,204737,-15.200309344505014,spot_baseline,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,208405,19.98823265571409,spot_peer,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,208405,0.1989938125636405,relative_legacy,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,208405,19.814608174940744,peer,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,208405,57.51680016490832,baseline,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,218666,9.962671481623094,peer,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,218666,44.78436443620852,spot_baseline,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,218666,43.95374175525141,baseline,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,218666,10.167065958068356,spot_peer,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,218666,0.0639997750810086,relative_legacy,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,218945,0.3183473782881283,spot_peer,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,218945,26.917231485140974,baseline,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,218945,-2.469532149163572,peer,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,218945,31.034012061215048,spot_baseline,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,218945,-0.1035984658163542,relative_legacy,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,219886,-71.92100486200087,peer,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,219886,-72.21080354165734,spot_peer,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,219886,-70.2280327956487,spot_baseline,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,219886,-1.0599654817503863,relative_legacy,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,219886,-68.64599744906288,baseline,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,220077,19.98823265571409,spot_peer,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,220077,20.10538064295769,peer,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,220077,58.496250072115615,spot_baseline,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,220077,0.2013000008756443,relative_legacy,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,220077,57.85567831633524,baseline,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,221727,19.71216716996135,peer,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,221727,19.98823265571409,spot_peer,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,221727,0.1983099202235705,relative_legacy,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,221727,57.28808187244529,baseline,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,222631,0.4362252562119303,peer,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,222631,5.201145479511176,spot_peer,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,222631,0.0062097816742733,relative_legacy,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30320,"Will Joe Biden's 538 approval rating be greater than or equal to 38.5% on December 30, 2024?",2024-11-27 15:00:55.193248+00,222631,2.814582956589118,baseline,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30540 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,182315,-125.15387669959644,spot_baseline,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,182315,-1.3442114455828629,relative_legacy,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,182315,-110.29335432201158,baseline,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,182315,-85.10335466957454,peer,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,182315,-97.28757351050034,spot_peer,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,185690,2.435858924364774,baseline,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,185690,-0.0112991584225843,relative_legacy,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,185690,10.059787980621063,spot_peer,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,185690,1.0196098686801411,peer,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,185690,24.719838857586485,spot_baseline,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,185699,-28.63041851566409,spot_baseline,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,185699,-28.152445182475542,spot_peer,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,185699,-0.4508098885403704,relative_legacy,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,185699,-20.021961830149884,peer,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,185699,-20.76183618299254,baseline,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,187708,-0.0591184906594927,relative_legacy,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,187708,7.753315076059639,peer,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,187708,25.338423580007472,spot_baseline,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,187708,17.515627673656102,baseline,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,187708,10.50285057878074,spot_peer,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,188107,0.0292676026991563,relative_legacy,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,188107,22.08129930567177,spot_peer,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,188107,22.692732809206785,baseline,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,188107,12.34777387393156,peer,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,188107,41.50374992788439,spot_baseline,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,188909,14.582327712738769,spot_peer,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,188909,-0.0180819949945584,relative_legacy,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,188909,31.034012061215048,spot_baseline,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,188909,12.525206932050706,baseline,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,188909,6.2081342591948445,peer,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,189585,41.915831432621886,peer,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,189585,66.96912991360212,baseline,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,189585,40.92119350771375,spot_peer,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,189585,0.4113227473444399,relative_legacy,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,189588,98.5500430304885,spot_baseline,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,189588,63.85588651107039,peer,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,189588,97.07949578840751,baseline,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,189588,0.7134734355301515,relative_legacy,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,189588,62.94082577198693,spot_peer,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,189869,34.25221299016473,spot_peer,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,189869,43.82660036954144,baseline,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,189869,26.42673457007396,peer,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,189869,0.1873990823108779,relative_legacy,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,190710,-173.6965594166206,spot_baseline,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,190710,-132.05637129469233,spot_peer,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,190710,-1.8747819037115867,relative_legacy,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,190710,-124.48091587611498,peer,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,190710,-163.6005340541627,baseline,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,190772,0.2961943081499055,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,190772,54.53478892604632,baseline,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,190772,42.204853907564654,spot_peer,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,190772,69.59938131099001,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,190772,34.0992348259545,peer,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191026,4.799028801233563,peer,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191026,73.76936849286116,spot_baseline,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191026,7.862721344954444,baseline,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191026,45.19161592758592,spot_peer,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191026,0.0358717978172019,relative_legacy,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191046,-51.498384245449216,baseline,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191046,-173.6965594166206,spot_baseline,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191046,-132.05637129469233,spot_peer,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191046,-0.6138626783704999,relative_legacy,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191046,-38.71384228966539,peer,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191284,-9.794440894937765,peer,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191284,-0.307136942649489,relative_legacy,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191284,-6.283490865873658,baseline,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191284,-7.400058144377692,spot_baseline,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191284,-12.94615526772582,spot_peer,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191471,-15.200309344505014,spot_baseline,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191471,-0.334784752360112,relative_legacy,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191471,-12.248586322302993,peer,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191471,-10.336318260107728,baseline,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191471,-18.53310146565433,spot_peer,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191935,0.052920490146045,relative_legacy,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191935,22.5966785951458,spot_peer,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191935,15.467153530276748,peer,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191935,42.22330006830476,spot_baseline,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191935,28.01711643658173,baseline,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191975,52.80711645787357,spot_baseline,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191975,30.177359168139336,spot_peer,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191975,0.0821879926924563,relative_legacy,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191975,27.10325388197811,baseline,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,191975,15.758316268754928,peer,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192049,11.402062455203794,peer,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192049,-0.0130989696994862,relative_legacy,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192049,22.995010575132625,baseline,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192049,11.19404602102972,spot_peer,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192418,37.00263851541728,baseline,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192418,0.117734261903371,relative_legacy,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192418,20.31803610254048,peer,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192418,19.46512581396181,spot_peer,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192472,-0.507019754582045,relative_legacy,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192472,-25.662364852639296,spot_peer,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192472,-25.153876699596427,spot_baseline,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192472,-24.9488504953181,baseline,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192472,-25.05176377058934,peer,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192924,-4.418486203254905,baseline,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192924,-8.457787003477282,peer,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192924,-11.220297473872904,spot_peer,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192924,-0.2852571989363544,relative_legacy,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,192924,-4.990490582631392,spot_baseline,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,193275,-54.73550171731973,spot_peer,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,193275,-50.12262154607863,peer,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,193275,-65.74452545226796,spot_baseline,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,193275,-61.43536277303713,baseline,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,193275,-0.8486412994507235,relative_legacy,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,195286,25.95496970376983,peer,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,195286,34.25221299016473,spot_peer,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,195286,0.1834147944943308,relative_legacy,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,195286,43.102631569746045,baseline,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,204737,42.65331381166733,spot_baseline,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,204737,22.90467683608671,spot_peer,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,204737,9.845377270912314,peer,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,204737,0.028957041731967,relative_legacy,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,204737,17.748954203951023,baseline,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,208405,40.92119350771375,spot_peer,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,208405,66.61265006471758,baseline,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,208405,0.409958136413719,relative_legacy,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,208405,41.70052773695092,peer,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,218666,0.1159534759146569,relative_legacy,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,218666,37.85116232537298,spot_baseline,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,218666,19.46512581396181,spot_peer,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,218666,20.30136675409612,peer,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,218666,37.23904522204484,baseline,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,218945,-33.32018864185722,spot_peer,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,218945,-35.845397091247634,spot_baseline,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,218945,-31.946824857511245,peer,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,218945,-34.854911453535244,baseline,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,218945,-0.6004856694382664,relative_legacy,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,219886,41.859834110128126,spot_peer,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,219886,69.1176796812124,spot_baseline,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,219886,0.4238209178232475,relative_legacy,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,219886,42.82601820177986,peer,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,219886,68.22959505950908,baseline,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,220077,-15.200309344505014,spot_baseline,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,220077,-18.53310146565433,spot_peer,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,220077,-0.4083625413770309,relative_legacy,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,220077,-17.836392096232093,peer,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,220077,-15.066157753138828,baseline,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,221727,37.081384527693146,baseline,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,221727,20.32154932988241,peer,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,221727,0.1173590398228857,relative_legacy,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,221727,19.46512581396181,spot_peer,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,222631,2.819068768762366,baseline,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,222631,1.4575645836462048,peer,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,222631,0.0,relative_legacy,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30321,"Will Kamala Harris's 538 approval rating be greater than or equal to 44.0% on December 30, 2024?",2024-11-27 15:00:55.225839+00,222631,19.46512581396181,spot_peer,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30541 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,182315,69.59938131099001,spot_baseline,RyansAGI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,182315,61.37820732383013,baseline,RyansAGI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,182315,0.3387419879167426,relative_legacy,RyansAGI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,182315,49.396702783604944,spot_peer,RyansAGI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,182315,42.063504967522825,peer,RyansAGI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,185690,0.0224070306759545,relative_legacy,annabot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,185690,3.9799331819389954,baseline,annabot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,185690,39.81314318766336,spot_baseline,annabot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,185690,2.7868009510066134,peer,annabot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,185690,28.03851625808319,spot_peer,annabot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,185699,0.0758501542981718,relative_legacy,MWG,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,185699,26.63168022048752,spot_peer,MWG,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,185699,37.85116232537298,spot_baseline,MWG,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,185699,17.895225483066774,peer,MWG,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,185699,27.842635080983897,baseline,MWG,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,187708,53.28195233254944,spot_peer,twsummerbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,187708,75.0177705593057,spot_baseline,twsummerbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,187708,52.74888747370194,baseline,twsummerbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,187708,35.930976309530124,peer,twsummerbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,187708,0.3318567761930549,relative_legacy,twsummerbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,188107,24.76530100422418,peer,Cassie,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,188107,36.38803928980058,baseline,Cassie,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,188107,45.93367562535775,spot_peer,Cassie,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,188107,0.2163731981375985,relative_legacy,Cassie,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,188107,64.76982560691188,spot_baseline,Cassie,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,188909,-100.60434985494662,spot_peer,silicoqr,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,188909,-139.59286763311394,spot_baseline,silicoqr,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,188909,-56.49051621862169,baseline,silicoqr,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,188909,-0.6594143863809397,relative_legacy,silicoqr,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,188909,-41.07997396693556,peer,silicoqr,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,189585,75.6239919728271,baseline,mf-bot-1,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,189585,0.4204291366582545,relative_legacy,mf-bot-1,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,189585,54.38312710959227,spot_peer,mf-bot-1,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,189585,53.753693816826015,peer,mf-bot-1,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,189588,-556.10458121586,baseline,mf-bot-3,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,189588,-405.20148563078527,spot_peer,mf-bot-3,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,189588,-5.895252202092192,relative_legacy,mf-bot-3,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,189588,-564.3856189774725,spot_baseline,mf-bot-3,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,189588,-406.9575970119076,peer,mf-bot-3,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,189869,-15.200309344504996,spot_baseline,VeritasAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,189869,-10.439966746633592,peer,VeritasAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,189869,-11.388544191283223,baseline,VeritasAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,189869,-0.3191167299522345,relative_legacy,VeritasAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,189869,-11.408814275234958,spot_peer,VeritasAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,190710,76.55347463629771,spot_baseline,Bot_Pepa,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,190710,72.18206175446423,baseline,Bot_Pepa,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,190710,50.361147537619296,peer,Bot_Pepa,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,190710,54.38312710959227,spot_peer,Bot_Pepa,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,190710,0.4112157304471051,relative_legacy,Bot_Pepa,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,190772,9.85474043329251,peer,Jay_Bailey_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,190772,-0.0505663122748754,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,190772,16.793693253222703,baseline,Jay_Bailey_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,190772,21.412480535284736,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,190772,14.844343046430504,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191026,1.2296038839561587,peer,manticAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191026,17.326249842896182,spot_baseline,manticAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191026,-0.0016073124504953,relative_legacy,manticAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191026,11.914316201382247,spot_peer,manticAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191026,1.8148432898472997,baseline,manticAI,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191046,-132.19280948873623,spot_baseline,archipelago,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191046,-0.4509642423253581,relative_legacy,archipelago,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191046,-39.24095015473031,baseline,archipelago,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191046,-95.29814698726898,spot_peer,archipelago,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191046,-28.265192848858305,peer,archipelago,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191284,-12.906721015734211,baseline,000_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191284,-0.3842293436982633,relative_legacy,000_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191284,-11.688649810619184,peer,000_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191284,-15.200309344504996,spot_baseline,000_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191284,-11.408814275234958,spot_peer,000_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191471,22.70774359404444,baseline,HSeldon,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191471,0.0398120670912033,relative_legacy,HSeldon,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191471,14.36039795154338,peer,HSeldon,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191471,33.34237337251918,spot_baseline,HSeldon,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191471,23.39865847868361,spot_peer,HSeldon,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191935,-18.96091172567893,baseline,pgodzinai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191935,-0.3706117748595603,relative_legacy,pgodzinai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191935,-21.03885804068448,spot_peer,pgodzinai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191935,-28.63041851566411,spot_baseline,pgodzinai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,191935,-15.582786667169753,peer,pgodzinai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192049,-0.5524415268235997,relative_legacy,gnosis-ai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192049,-32.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192049,-23.593266239688425,spot_peer,gnosis-ai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192049,-22.812346546745943,peer,gnosis-ai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192049,-28.18457966582575,baseline,gnosis-ai,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192418,0.0391048405141764,relative_legacy,InstitutPelFutur,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192418,37.00759306475667,baseline,InstitutPelFutur,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192418,25.312205403305917,peer,InstitutPelFutur,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192418,26.63168022048752,spot_peer,InstitutPelFutur,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192472,40.69413373380435,peer,bestworldbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192472,58.13412863249642,baseline,bestworldbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192472,41.4352157695227,spot_peer,bestworldbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192472,0.241797419371278,relative_legacy,bestworldbot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192924,56.43167476092121,spot_peer,acm_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192924,48.61576416137402,peer,acm_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192924,70.40587959316694,baseline,acm_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192924,79.41038985597478,spot_baseline,acm_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,192924,0.4262522629400134,relative_legacy,acm_bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,193275,-60.12450444328394,peer,histerio,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,193275,-61.23224211044823,spot_peer,histerio,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,193275,-84.68432119385794,spot_baseline,histerio,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,193275,-1.1088201669211066,relative_legacy,histerio,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,193275,-79.84737684854593,baseline,histerio,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,195286,-2.2032846767575114,peer,Unwrapped80T,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,195286,-0.2025761965116672,relative_legacy,Unwrapped80T,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,195286,0.0,spot_baseline,Unwrapped80T,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,195286,0.0,baseline,Unwrapped80T,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,195286,-0.5094505864943158,spot_peer,Unwrapped80T,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,204737,0.1450013347379921,relative_legacy,SynapseSeer,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,204737,17.056860479403213,peer,SynapseSeer,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,204737,41.4352157695227,spot_peer,SynapseSeer,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,204737,24.462144657280497,baseline,SynapseSeer,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,208405,0.4181306430335436,relative_legacy,mf-bot-4,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,208405,54.38312710959227,spot_peer,mf-bot-4,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,208405,53.469271878045056,peer,mf-bot-4,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,208405,75.28590906584343,baseline,mf-bot-4,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,218666,-0.5890974756931069,relative_legacy,GreeneiBot2,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,218666,-25.84251525812044,spot_baseline,GreeneiBot2,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,218666,-19.03979533450488,spot_peer,GreeneiBot2,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,218666,-19.899856074128063,peer,GreeneiBot2,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,218666,-25.473534676435214,baseline,GreeneiBot2,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,218945,56.55971758542251,spot_baseline,SeidrBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,218945,40.04662745930124,spot_peer,SeidrBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,218945,55.86601547401388,baseline,SeidrBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,218945,39.063365372820286,peer,SeidrBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,218945,0.2280977562134093,relative_legacy,SeidrBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,219886,55.97755551810368,peer,SaraBase,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,219886,80.02965703631712,baseline,SaraBase,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,219886,60.812019042453066,spot_peer,SaraBase,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,219886,85.51924079591538,spot_baseline,SaraBase,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,219886,0.4933917298984446,relative_legacy,SaraBase,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,220077,47.47911673172769,peer,mmBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,220077,67.80719051126377,spot_baseline,mmBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,220077,48.11161450789213,spot_peer,mmBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,220077,0.3342721468431941,relative_legacy,mmBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,220077,67.34498522620856,baseline,mmBot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,221727,40.14278575342202,peer,mf-bot-5,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,221727,41.4352157695227,spot_peer,mf-bot-5,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,221727,0.2409546541473741,relative_legacy,mf-bot-5,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,221727,57.28807801089035,baseline,mf-bot-5,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,222631,-0.0359890146002395,relative_legacy,Grizeu_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,222631,-32.19280948873623,spot_baseline,Grizeu_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,222631,-23.593266239688425,spot_peer,Grizeu_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,222631,-2.402317435996908,baseline,Grizeu_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30322,"Will JD Vance's 538 favorability be greater than or equal to 39.0% on December 30, 2024?",2024-11-27 15:00:55.257706+00,222631,-1.7582925775549278,peer,Grizeu_Bot,True,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30542 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,182315,10.26134008499464,spot_peer,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,182315,71.36958148433591,spot_baseline,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,182315,9.823778891406892,peer,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,182315,62.978876998038345,baseline,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,182315,0.0976548089212425,relative_legacy,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,185690,4.961032998281081,spot_peer,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,185690,63.96952333995822,spot_baseline,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,185690,0.6013117849539268,peer,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,185690,0.0004706491342823,relative_legacy,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,185690,6.472611564331177,baseline,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,185699,71.95400776807152,baseline,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,185699,12.75142041483088,spot_peer,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,185699,12.707219091578157,peer,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,185699,0.1377479264870362,relative_legacy,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,185699,74.84612330040356,spot_baseline,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,187708,51.85815934238995,baseline,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,187708,72.77026728372381,spot_baseline,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,187708,11.264584211447277,spot_peer,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,187708,0.0864052557224025,relative_legacy,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,187708,8.685291726475045,peer,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,188107,10.767127503411576,peer,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,188107,17.94916339056011,spot_peer,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,188107,82.10298589546805,spot_baseline,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,188107,0.1219817941026436,relative_legacy,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,188107,46.953857457765736,baseline,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,188909,5.580354572872713,baseline,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,188909,-31.008552991622853,spot_peer,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,188909,13.750352374993504,spot_baseline,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,188909,-12.195332579257194,peer,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,188909,-0.1887250244651892,relative_legacy,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,189585,66.98427746609056,baseline,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,189585,7.810444332169215,peer,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,189585,0.0700287979525826,relative_legacy,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,189585,7.709770117322914,spot_peer,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,189588,5.093596625612953,spot_peer,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,189588,0.0340581937962352,relative_legacy,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,189588,63.22558876408465,baseline,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,189588,64.15460290875237,spot_baseline,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,189588,5.194852408205058,peer,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,189869,-0.015552874133091,relative_legacy,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,189869,1.4481512333685291,peer,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,189869,43.82786895953432,baseline,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,189869,1.040789599773886,spot_peer,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,190710,-6.088473787211105,spot_peer,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,190710,-5.400039519343914,peer,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,190710,48.54268271702416,spot_baseline,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,190710,-0.1116658187275913,relative_legacy,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,190710,45.81294928984169,baseline,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,190772,2.598049897972747,peer,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,190772,47.4204474967768,baseline,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,190772,2.4094630306093663,spot_peer,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,190772,-0.0012357343661751,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,190772,60.40713236688608,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191026,-0.0310836693248482,relative_legacy,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191026,-1.7200383576766094,peer,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191026,73.5499109507962,spot_baseline,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191026,11.823005614775653,spot_peer,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191026,4.0198013051444486,baseline,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191046,-6.088473787211105,spot_peer,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191046,48.54268271702416,spot_baseline,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191046,14.439301754280349,baseline,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191046,-1.4871090009246877,peer,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191046,-0.0332341108051104,relative_legacy,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191284,-0.7849108601159358,relative_legacy,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191284,-27.33505818123596,baseline,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191284,-53.959747685822805,peer,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191284,-32.19280948873623,spot_baseline,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191284,-63.915438540538105,spot_peer,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191471,28.78349301552165,baseline,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191471,-0.125656577328187,relative_legacy,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191471,-6.699691001387812,peer,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191471,-10.61474479524504,spot_peer,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191471,42.22330006830476,spot_baseline,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191935,9.01456557788663,peer,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191935,12.75142041483088,spot_peer,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191935,49.46888744090465,baseline,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191935,0.093338669615158,relative_legacy,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191935,74.84612330040356,spot_baseline,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191975,5.722732086867077,peer,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191975,0.0397114552799052,relative_legacy,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191975,6.016810594768768,spot_peer,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191975,53.85984261305997,baseline,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,191975,65.44355408453994,spot_baseline,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192049,46.47036985805514,baseline,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192049,-0.114057401120113,relative_legacy,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192049,-6.088473787211105,spot_peer,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192049,-5.569580015239649,peer,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192418,14.026488422365594,peer,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192418,0.1555679616919511,relative_legacy,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192418,74.85698802610361,baseline,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192418,13.974314371687854,spot_peer,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192472,-0.0219506238673701,relative_legacy,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192472,58.22743845400189,baseline,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192472,1.1238974517779532,peer,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192472,1.040789599773886,spot_peer,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192924,13.750352374993504,spot_baseline,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192924,-0.413263441363251,relative_legacy,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192924,12.20957995759266,baseline,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192924,-31.008552991622853,spot_peer,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,192924,-27.123386598364423,peer,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,193275,61.72984828408463,spot_baseline,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,193275,58.59593602713809,baseline,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,193275,3.3568610662535656,spot_peer,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,193275,0.0122340322933186,relative_legacy,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,193275,3.572339619408922,peer,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,195286,-22.01737736936112,spot_peer,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,195286,-0.2525176254578677,relative_legacy,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,195286,19.38082930718392,baseline,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,195286,-15.667718356454277,peer,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,195286,26.303440583379377,spot_baseline,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,204737,30.70156749981999,baseline,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,204737,11.513880673336931,spot_peer,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,204737,5.274371134152735,peer,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,204737,0.0532888428966523,relative_legacy,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,204737,73.11832415721999,spot_baseline,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,208405,7.810428659162095,peer,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,208405,0.0700433673961187,relative_legacy,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,208405,7.709770117322914,spot_peer,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,208405,66.6845524261023,baseline,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,218666,79.90361802610187,baseline,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,218666,0.1993295626551114,relative_legacy,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,218666,80.90027749390863,spot_baseline,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,218666,17.087720988397532,spot_peer,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,218666,17.2094141731394,peer,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,218945,9.761079662642205,spot_baseline,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,218945,-0.4912822378645027,relative_legacy,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,218945,-32.90245658111032,peer,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,218945,-33.86587789577559,spot_peer,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,218945,10.141217693236491,baseline,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,219886,89.14191868460786,spot_baseline,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,219886,87.84731797740116,baseline,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,219886,23.08022485819286,peer,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,219886,22.990813688068084,spot_peer,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,219886,0.2802605662533829,relative_legacy,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,220077,1.1238974517779532,peer,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,220077,58.22296007713905,baseline,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,220077,-0.0219506238673701,relative_legacy,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,220077,1.040789599773886,spot_peer,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,220077,58.496250072115615,spot_baseline,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,221727,74.96799744107106,baseline,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,221727,14.032741732039064,peer,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,221727,0.1556836397472268,relative_legacy,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,221727,13.974314371687854,spot_peer,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,222631,1.097771659270063,peer,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,222631,0.0089373340365106,relative_legacy,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,222631,13.974314371687854,spot_peer,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30323,"Will the US Congress's 538 approval rating be greater than or equal to 22.0% on December 30, 2024?",2024-11-27 15:00:55.289116+00,222631,5.723234565950371,baseline,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30543 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,182315,-1.0356915550683536,peer,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,182315,-19.212841228327733,baseline,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,182315,-0.1966720769866754,relative_legacy,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,182315,-21.75914350726266,spot_baseline,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,182315,-5.79729845775937,spot_peer,RyansAGI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,185690,33.800109543998715,spot_peer,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,185690,33.58262239404966,spot_baseline,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,185690,3.52508638240244,peer,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,185690,0.0048028460084544,relative_legacy,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,185690,3.44584108078172,baseline,annabot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,185699,64.86795715883426,peer,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,185699,70.05010932854819,baseline,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,185699,0.7048577159568666,relative_legacy,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,185699,60.83693447856998,spot_peer,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,185699,71.36958148433591,spot_baseline,MWG,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,187708,-92.68652953697844,spot_baseline,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,187708,-56.54632312974322,spot_peer,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,187708,-0.7168716884883657,relative_legacy,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,187708,-67.32374889368917,baseline,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,187708,-38.55665249297937,peer,twsummerbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,188107,0.3882620275849482,relative_legacy,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,188107,40.61314007049717,peer,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,188107,45.715483860522575,baseline,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,188107,65.151476793766,spot_peer,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,188107,77.39963251111732,spot_baseline,Cassie,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,188389,-64.38561897747249,spot_baseline,Panshul42,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,188389,-36.29683011131665,spot_peer,Panshul42,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,188389,-1.9266590641569528,peer,Panshul42,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,188389,-3.459017992421823,baseline,Panshul42,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,188389,-0.0505173674865837,relative_legacy,Panshul42,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,188909,12.057111655440856,peer,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,188909,0.0173897906996281,relative_legacy,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,188909,9.718237845562648,baseline,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,188909,26.856877357689093,spot_peer,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,188909,23.878685958711674,spot_baseline,silicoqr,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,189585,47.95702833108472,baseline,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,189585,44.50413394025832,spot_peer,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,189585,48.73750379131173,peer,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,189585,0.4839709583607824,relative_legacy,mf-bot-1,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,189588,-0.9796822255658896,relative_legacy,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,189588,-57.67742268846835,peer,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,189588,-61.7791607365064,spot_peer,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,189588,-98.52824944913364,baseline,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,189588,-100.0,spot_baseline,mf-bot-3,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,189869,36.85427875019671,spot_peer,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,189869,0.2433512412944228,relative_legacy,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,189869,28.360141929700763,baseline,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,189869,30.79509340954156,peer,VeritasAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,190710,-190.0362475675568,baseline,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,190710,-123.97871520584675,peer,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,190710,-1.8984542418411712,relative_legacy,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,190710,-134.1589648404763,spot_peer,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,190710,-201.15879742752108,spot_baseline,Bot_Pepa,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,190772,3.384377518136981,spot_peer,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,190772,-8.926733809708741,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,190772,-7.014210975595192,baseline,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,190772,-0.1024503834173383,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,190772,5.950058988422522,peer,Jay_Bailey_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191026,1.5052078832893303,peer,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191026,0.4045365075463127,baseline,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191026,-0.0263491035447089,relative_legacy,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191026,38.16406234076821,spot_baseline,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191026,37.07816082861567,spot_peer,manticAI,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191046,58.28801963053163,spot_peer,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191046,17.875730621839903,peer,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191046,0.1273909583325983,relative_legacy,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191046,20.0921392237432,baseline,archipelago,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191284,-27.33491982036481,baseline,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191284,-0.2852643519590838,relative_legacy,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191284,-7.535336242054786,peer,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191284,-32.19280948873623,spot_baseline,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191284,-13.26265707243046,spot_peer,000_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191471,13.820105711310545,spot_peer,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191471,5.658352836636751,spot_baseline,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191471,3.862190998272918,baseline,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191471,11.942050613763998,peer,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191471,-0.0191111443124713,relative_legacy,HSeldon,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191935,0.2709152119140781,relative_legacy,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191935,32.786565824606576,peer,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191935,33.365733510378035,baseline,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191935,45.96835432652479,spot_peer,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191935,50.58909297299573,spot_baseline,pgodzinai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191975,-150.34915544620233,spot_peer,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191975,-223.7863830098888,spot_baseline,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191975,-1.1488306592371815,relative_legacy,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191975,-107.34013750636085,baseline,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,191975,-70.8046908928983,peer,jkraybill_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192049,65.04410635279969,baseline,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192049,0.6493823892960053,relative_legacy,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192049,61.06225513691875,peer,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192049,58.28801963053163,spot_peer,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192418,36.85427875019671,spot_peer,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192418,37.0171134758023,baseline,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192418,0.3741431435741303,relative_legacy,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192418,40.85713185938437,peer,InstitutPelFutur,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192472,69.14239948332573,peer,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192472,76.29283682767118,baseline,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192472,0.7630983103556709,relative_legacy,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192472,64.54604510835716,spot_peer,bestworldbot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192924,-120.42330522176078,spot_baseline,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192924,-64.53736032389514,peer,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192924,-107.14005918227367,baseline,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192924,-76.39217382778763,spot_peer,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,192924,-1.075548634554622,relative_legacy,acm_bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,193275,-1.4528978351496158,relative_legacy,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,193275,-91.44952850732214,peer,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,193275,-145.20742698990284,baseline,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,193275,-98.59721946566584,spot_peer,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,193275,-151.4573172829758,spot_baseline,histerio,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,195286,-32.19280948873623,spot_baseline,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,195286,-13.26265707243046,spot_peer,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,195286,-0.2785595003271018,relative_legacy,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,195286,-6.957211602656917,peer,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,195286,-23.71979344134114,baseline,Unwrapped80T,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,204737,22.59705972878488,baseline,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,204737,21.54249612219464,peer,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,204737,0.1453540655305987,relative_legacy,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,204737,48.126463727228135,spot_peer,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,204737,53.60529002402098,spot_baseline,SynapseSeer,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,208405,-132.19280948873626,spot_baseline,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,208405,-80.4750633684675,peer,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,208405,-129.98196072890914,baseline,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,208405,-84.81333377539258,spot_peer,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,208405,-1.2936419934011911,relative_legacy,mf-bot-4,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,218666,0.2877419049718262,relative_legacy,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,218666,34.42160028879744,peer,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,218666,28.41255967749986,baseline,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,218666,28.688114778816157,spot_baseline,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,218666,30.29805622402113,spot_peer,GreeneiBot2,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,218945,-5.889368905356857,spot_baseline,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,218945,5.557632661139033,spot_peer,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,218945,-6.741712909947622,baseline,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,218945,9.046904357874997,peer,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,218945,-0.0634218646624202,relative_legacy,SeidrBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,219886,0.5881452757805632,relative_legacy,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,219886,56.63306022145959,peer,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,219886,59.0022750277816,baseline,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,219886,53.99076933661455,spot_peer,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,219886,61.80130700053636,spot_baseline,SaraBase,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,220077,31.97656160433393,spot_peer,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,220077,31.034012061215048,spot_baseline,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,220077,35.918052156724734,peer,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,220077,0.3094534631135002,relative_legacy,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,220077,30.95851864159332,baseline,mmBot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,221727,-97.9036423769658,baseline,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,221727,-57.12839077239558,peer,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,221727,-0.9739959250413625,relative_legacy,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,221727,-61.7791607365064,spot_peer,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,221727,-100.0,spot_baseline,mf-bot-5,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,222631,36.85427875019671,spot_peer,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,222631,2.783316689579552,peer,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,222631,2.835233524699041,baseline,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30324,"Will the US Supreme Court's 538 approval rating be greater than or equal to 41.0% on December 30, 2024?",2024-11-27 15:00:55.320537+00,222631,0.005311898981098,relative_legacy,Grizeu_Bot,True,no,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,2024-11-28 15:30:00+00,30544 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,182315,-38.2414513128066,baseline,RyansAGI,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,182315,0.2251526894412885,relative_legacy,RyansAGI,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,182315,-1.3405601443911992,peer,RyansAGI,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,182315,-43.440282414577496,spot_baseline,RyansAGI,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,182315,5.365275329706855,spot_peer,RyansAGI,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,185690,-0.2310160687201116,spot_baseline,annabot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,185690,36.42492984701995,spot_peer,annabot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,185690,3.438931902814337,peer,annabot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,185690,-0.0226264247730661,baseline,annabot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,185690,0.0560978138830876,relative_legacy,annabot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,185699,0.0,baseline,MWG,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,185699,26.91880394941908,peer,MWG,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,185699,0.6079961187106827,relative_legacy,MWG,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,185699,0.0,spot_baseline,MWG,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,185699,36.59098865544688,spot_peer,MWG,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,187708,-85.20421186128986,spot_baseline,twsummerbot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,187708,-24.65544313187123,spot_peer,twsummerbot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,187708,-0.1285398734276255,relative_legacy,twsummerbot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,187708,-73.48382846520217,baseline,twsummerbot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,187708,-27.125007686413507,peer,twsummerbot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,188107,-0.3123692035618013,relative_legacy,Cassie,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,188107,-39.99504961657793,peer,Cassie,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,188107,-92.17024524068393,baseline,Cassie,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,188107,-100.0,spot_baseline,Cassie,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,188107,-35.290941180399294,spot_peer,Cassie,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,189585,-73.69655941662059,spot_baseline,mf-bot-1,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,189585,-24.751152306784345,peer,mf-bot-1,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,189585,-72.77873636926302,baseline,mf-bot-1,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,189585,-0.1095017846422085,relative_legacy,mf-bot-1,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,189585,-16.38352047584102,spot_peer,mf-bot-1,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,189588,78.63922208888613,spot_peer,mf-bot-3,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,189588,57.6844471442048,baseline,mf-bot-3,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,189588,70.72241594962136,peer,mf-bot-3,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,189588,1.194273212604709,relative_legacy,mf-bot-3,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,189869,-16.38352047584102,spot_peer,VeritasAI,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,189869,-73.69655941662059,spot_baseline,VeritasAI,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,189869,-61.64842194029621,baseline,VeritasAI,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,189869,-18.971481518652585,peer,VeritasAI,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,189869,-0.0214484196424356,relative_legacy,VeritasAI,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,190710,-0.3250812400598597,relative_legacy,Bot_Pepa,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,190710,-38.88438876998361,peer,Bot_Pepa,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,190710,-85.29737349038288,baseline,Bot_Pepa,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,190710,-48.54773526290588,spot_peer,Bot_Pepa,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,190710,-118.44245711374276,spot_baseline,Bot_Pepa,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,190772,-8.926733809708741,spot_baseline,Jay_Bailey_Bot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,190772,30.174280121719285,spot_peer,Jay_Bailey_Bot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,190772,19.24575899267337,peer,Jay_Bailey_Bot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,190772,0.4922637365319144,relative_legacy,Jay_Bailey_Bot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,190772,-6.943253334273695,baseline,Jay_Bailey_Bot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191026,58.2775123961218,baseline,manticAI,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191026,69.36202672787196,peer,manticAI,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191026,1.1909255289188103,relative_legacy,manticAI,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191026,68.25160425171266,spot_baseline,manticAI,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191026,85.65155893550238,spot_peer,manticAI,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191046,-88.26545031168719,spot_peer,archipelago,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191046,-173.6965594166206,spot_baseline,archipelago,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191046,-28.90067548904593,peer,archipelago,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191046,-56.138526770917686,baseline,archipelago,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191046,-0.3212248435858318,relative_legacy,archipelago,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191284,1.0450971394162785,relative_legacy,000_bot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191284,58.339397291366446,peer,000_bot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191284,43.71238086897706,baseline,000_bot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191284,71.48440578653562,spot_peer,000_bot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191471,-27.30979617368969,spot_peer,HSeldon,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191471,-88.8968687611256,spot_baseline,HSeldon,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191471,-22.00891319333761,peer,HSeldon,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191471,-60.376127000072366,baseline,HSeldon,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191471,-0.1050526154251887,relative_legacy,HSeldon,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191935,0.9256444619943692,relative_legacy,pgodzinai,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191935,42.50641380172424,baseline,pgodzinai,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191935,52.426808915480514,peer,pgodzinai,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191935,62.29303509201767,spot_baseline,pgodzinai,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,191935,81.36842443291006,spot_peer,pgodzinai,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192049,-132.19280948873626,spot_baseline,gnosis-ai,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192049,-58.43175390928032,spot_peer,gnosis-ai,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192049,-5.790338563280402,baseline,gnosis-ai,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192049,-2.563121244929909,peer,gnosis-ai,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192049,-0.0307360906352206,relative_legacy,gnosis-ai,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192418,-0.245134674034626,peer,InstitutPelFutur,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192418,-8.657861729808047,baseline,InstitutPelFutur,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192418,0.0215616510498552,relative_legacy,InstitutPelFutur,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192418,-0.3975240493105546,spot_peer,InstitutPelFutur,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192472,82.70655530478199,spot_peer,bestworldbot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192472,64.15460290875237,spot_baseline,bestworldbot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192472,1.2359130950959003,relative_legacy,bestworldbot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192472,73.70449422877194,peer,bestworldbot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192472,62.50959893304774,baseline,bestworldbot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192924,-11.2175192943751,peer,acm_bot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192924,0.0883912061993465,relative_legacy,acm_bot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192924,-51.95821245271612,baseline,acm_bot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192924,-58.6405917590825,spot_baseline,acm_bot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,192924,-5.561000368141808,spot_peer,acm_bot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,193275,-72.26103011891365,spot_baseline,histerio,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,193275,-15.351634313290305,spot_peer,histerio,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,193275,-16.476226026237537,peer,histerio,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,193275,-56.60388346339469,baseline,histerio,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,193275,0.0004153829181196,relative_legacy,histerio,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,195286,-0.0176154661949911,relative_legacy,Unwrapped80T,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,195286,-63.53984892772582,baseline,Unwrapped80T,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,195286,-18.01914034544839,peer,Unwrapped80T,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,195286,-64.38561897747249,spot_baseline,Unwrapped80T,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,195286,-9.690636802315163,spot_peer,Unwrapped80T,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,204737,-124.27098216189938,spot_peer,SynapseSeer,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,204737,-223.7863830098888,spot_baseline,SynapseSeer,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,204737,-92.89693801519655,baseline,SynapseSeer,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,204737,-0.6210703916585749,relative_legacy,SynapseSeer,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,204737,-52.47397889376658,peer,SynapseSeer,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,208405,-43.46440881613378,peer,mf-bot-4,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,208405,-0.3673406229821805,relative_legacy,mf-bot-4,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,208405,-98.26094686044138,baseline,mf-bot-4,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,208405,-35.290941180399294,spot_peer,mf-bot-4,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,208405,-100.0,spot_baseline,mf-bot-4,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,215725,-173.6965594166206,spot_baseline,estr.ai,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,215725,-88.26545031168719,spot_peer,estr.ai,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,215725,-142.65117440467435,baseline,estr.ai,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,215725,-0.8393233959020368,relative_legacy,estr.ai,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,215725,-77.90273257413467,peer,estr.ai,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,218666,0.5440684240186883,relative_legacy,GreeneiBot2,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,218666,-6.3927694691994645,baseline,GreeneiBot2,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,218666,21.98707400094195,peer,GreeneiBot2,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,218666,-7.09665213541436,spot_baseline,GreeneiBot2,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,218666,31.489778146774245,spot_peer,GreeneiBot2,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,219886,54.99595955789553,spot_peer,SaraBase,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,219886,25.604447382644484,spot_baseline,SaraBase,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,219886,45.38108202422303,peer,SaraBase,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,219886,0.8453300682960905,relative_legacy,SaraBase,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,219886,24.45065192088704,baseline,SaraBase,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,220077,0.1094549222177157,relative_legacy,mmBot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,220077,-8.605532856877492,peer,mmBot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,220077,-50.58953758292539,baseline,mmBot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,220077,-0.3975240493105546,spot_peer,mmBot,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,221727,-0.3975240493105546,spot_peer,mf-bot-5,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,221727,0.1095214356243211,relative_legacy,mf-bot-5,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,221727,-50.46396503039093,baseline,mf-bot-5,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30348,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-29 13:06:11.836523+00,221727,-8.581770532059934,peer,mf-bot-5,True,no,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30575 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,182315,-7.960396896760737,spot_peer,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,182315,-139.59286763311394,spot_baseline,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,182315,-0.5244088846278767,relative_legacy,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,182315,-122.96619965833509,baseline,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,182315,-5.515525454467408,peer,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,185690,-5.195555864349479,baseline,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,185690,5.436898059727296,peer,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,185690,0.0334134558808963,relative_legacy,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,185690,54.64973865746924,spot_peer,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,185690,-52.49151170512174,spot_baseline,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,185699,-13.56736799145601,spot_peer,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,185699,-147.39311883324126,spot_baseline,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,185699,-0.6035836672662255,relative_legacy,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,185699,-11.409942954180853,peer,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,185699,-137.11903407178625,baseline,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,187708,-25.719002744616198,baseline,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,187708,64.53483264776601,peer,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,187708,0.4418960611726046,relative_legacy,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,187708,71.29444333591671,spot_peer,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,187708,-29.33589426905916,spot_baseline,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,188107,-173.6965594166206,spot_baseline,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,188107,-32.47478869601427,spot_peer,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,188107,-0.8516091579227725,relative_legacy,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,188107,-163.78532016790055,baseline,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,188107,-29.643406911508507,peer,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,189585,-31.800243320280607,baseline,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,189585,70.6905901648842,peer,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,189585,0.5224607644796665,relative_legacy,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,189585,69.24083754223884,spot_peer,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,189588,-332.1928094887362,spot_baseline,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,189588,-146.4049519652997,spot_peer,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,189588,-2.43781729540031,relative_legacy,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,189588,-145.48844591024127,peer,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,189588,-327.8055103309359,baseline,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,189869,0.3736951833741248,relative_legacy,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,189869,-26.930152879199785,baseline,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,189869,59.93361074352241,peer,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,189869,69.24083754223884,spot_peer,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,190710,-155.6393348524385,spot_baseline,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,190710,-19.49490720448771,spot_peer,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,190710,-13.423740128341777,peer,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,190710,-0.5883046135819419,relative_legacy,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,190710,-112.22980698121673,baseline,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,190772,0.8034079150917318,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,190772,90.97447600127578,peer,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,190772,24.15657553248744,baseline,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,190772,114.68949704621046,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,190772,31.034012061215048,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191026,80.67308625048098,spot_peer,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191026,-16.288605561059946,spot_baseline,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191026,56.7757123751473,peer,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191026,-42.661276766960896,baseline,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191026,0.3351504860514571,relative_legacy,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191046,-46.62250132168279,peer,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191046,-107.40837216024252,baseline,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191046,-0.7663526850968476,relative_legacy,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191046,-146.4049519652997,spot_peer,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191046,-332.1928094887362,spot_baseline,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191284,-146.4049519652997,spot_peer,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191284,-332.1928094887362,spot_baseline,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191284,-299.1351444936648,baseline,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191284,-2.256565399074058,relative_legacy,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191284,-131.3818513662089,peer,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191471,32.99806944845733,baseline,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191471,0.8101794833382269,relative_legacy,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191471,87.34031773765933,peer,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191471,48.54268271702416,spot_baseline,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191471,127.27506740220858,spot_peer,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191935,63.92153293908544,spot_peer,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191935,-39.592867633113926,spot_baseline,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191935,44.35267026814441,peer,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191935,-27.082938988412614,baseline,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,191935,0.2114404935051461,relative_legacy,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192049,-0.1694923874509076,peer,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192049,-0.0678279919673373,relative_legacy,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192049,-27.81981436021689,baseline,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192049,-2.6410922936073438,spot_peer,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192049,-132.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192418,20.499720435273648,spot_peer,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192418,-16.841659801977652,baseline,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192418,-0.0136099574194199,relative_legacy,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192418,3.6821875947907072,peer,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192472,-0.6084964003396478,relative_legacy,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192472,-143.74651000568275,baseline,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192472,-12.304706502897748,peer,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192472,-13.56736799145601,spot_peer,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192472,-147.39311883324126,spot_baseline,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192924,-158.20799921880345,spot_baseline,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192924,-21.34131272203654,spot_peer,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192924,-17.513735388252133,peer,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192924,-0.6883880352853621,relative_legacy,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,192924,-140.3172368231701,baseline,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,193275,60.42538102301993,peer,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,193275,-36.58257999597407,baseline,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,193275,0.3817624857721672,relative_legacy,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,193275,-48.60040206329872,spot_baseline,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,193275,57.44674336004032,spot_peer,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,195286,-32.19280948873623,spot_baseline,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,195286,69.24083754223884,spot_peer,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,195286,-31.79879625642796,baseline,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,195286,0.5224652849345316,relative_legacy,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,195286,70.69121683299312,peer,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,204737,-0.0062436556088204,relative_legacy,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,204737,13.317577425521636,peer,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,204737,-35.92875471321519,baseline,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,204737,30.383739081648088,spot_peer,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,204737,-86.24964762500649,spot_baseline,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,208405,127.27506740220858,spot_peer,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,208405,128.39397439757727,peer,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,208405,47.73559752075528,baseline,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,208405,1.3134353366799971,relative_legacy,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,215725,-463.7229377289672,baseline,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,215725,-4.015010977776739,relative_legacy,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,215725,-257.4904808186861,peer,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,215725,-313.30962436587305,spot_peer,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,215725,-564.3856189774725,spot_baseline,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,218666,-32.47478869601427,spot_peer,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,218666,-173.6965594166206,spot_baseline,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,218666,-28.01023860049791,peer,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,218666,-156.8026113265173,baseline,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,218666,-0.8299204548589327,relative_legacy,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,219886,-3.2384257630015183,relative_legacy,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,219886,-407.8755583817891,baseline,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,219886,-203.96494553980324,peer,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,219886,-204.5533186861321,spot_peer,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,219886,-413.08708549610486,spot_baseline,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,220077,-2.6410922936073438,spot_peer,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,220077,-132.19280948873623,spot_baseline,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,220077,-130.30475332634575,baseline,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,220077,-1.4914515464248217,peer,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,220077,-0.4664820342646529,relative_legacy,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,221727,75.13592758977275,baseline,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,221727,1.5823329645693525,relative_legacy,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,221727,147.88101955861464,peer,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,221727,147.40976519608566,spot_peer,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30349,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-29 13:06:11.8671+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30576 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,182315,0.1148586495383803,relative_legacy,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,182315,23.655288174497628,peer,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,182315,26.60366884391099,spot_peer,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,182315,89.53026213333067,spot_baseline,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,182315,78.91898109599232,baseline,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,185690,4.94556525214535,baseline,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,185690,49.46716116475495,spot_baseline,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,185690,-0.0304344871448946,relative_legacy,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,185690,-0.2178897047853664,peer,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,185690,-2.194461284384815,spot_peer,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,185699,-0.4107601959280753,relative_legacy,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,185699,-13.785269931378824,spot_peer,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,185699,31.55868466717618,baseline,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,185699,33.34237337251918,spot_baseline,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,185699,-13.498635446178234,peer,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,187708,-11.09611320061363,peer,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,187708,-12.47668848375689,spot_peer,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,187708,31.100268490085984,baseline,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,187708,35.16283291027824,spot_baseline,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,187708,-0.3655273102015672,relative_legacy,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,188107,86.12937291684075,spot_baseline,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,188107,81.88752916123913,baseline,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,188107,22.85814034787713,peer,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,188107,24.159044043518858,spot_peer,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,188107,0.0889272501497007,relative_legacy,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,189585,83.80027044264962,baseline,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,189585,0.0784102751536073,relative_legacy,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,189585,23.2032427733786,spot_peer,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,189585,22.320220606569,peer,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,189588,48.54268271702416,spot_baseline,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,189588,-3.789795366093621,peer,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,189588,47.92072546337312,baseline,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,189588,-0.2794412926665561,relative_legacy,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,189588,-2.858994233530189,spot_peer,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,189869,-111.46798275071563,peer,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,189869,-132.7751539293461,spot_peer,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,189869,-132.19280948873623,spot_baseline,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,189869,-110.58444126274414,baseline,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,189869,-1.7470828159987732,relative_legacy,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,190710,0.1082535220991177,relative_legacy,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,190710,25.48253680347382,spot_peer,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,190710,24.19943989876738,peer,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,190710,83.27665944931132,baseline,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,190710,87.97057662822883,spot_baseline,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,190772,0.0,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,190772,-37.75241136461893,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,190772,-0.602444039076923,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,190772,-29.24511205449505,peer,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,190772,0.0,baseline,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191026,28.099689272299603,spot_peer,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191026,20.2270664858146,peer,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191026,0.0579418393199738,relative_legacy,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191026,91.61148119882463,spot_baseline,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191026,76.85225144838718,baseline,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191046,28.810213868073863,spot_peer,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191046,0.0409663818881414,relative_legacy,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191046,9.52772725351764,peer,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191046,92.5999418556223,spot_baseline,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191046,29.890642482281528,baseline,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191284,-2.669758476211285,peer,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191284,-0.2522632545471173,relative_legacy,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191284,43.71171507856669,baseline,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191284,-2.858994233530189,spot_peer,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191284,48.54268271702416,spot_baseline,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191471,79.90873060740036,spot_baseline,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191471,0.0,relative_legacy,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191471,13.669126776656046,peer,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191471,54.39677231382335,baseline,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191471,19.687526303307937,spot_peer,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191935,0.1073866874882833,relative_legacy,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191935,30.97078584318339,spot_peer,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191935,21.536563028014,peer,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191935,95.60566524124027,spot_baseline,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,191935,65.53931830236657,baseline,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192049,-2.858994233530189,spot_peer,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192049,-0.6655505242843264,peer,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192049,-0.0921107445795474,relative_legacy,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192049,14.255231212363604,baseline,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192418,28.810213868073863,spot_peer,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192418,0.021393052836859,relative_legacy,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192418,4.872653301243703,peer,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192418,15.609191353464707,baseline,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192472,-15.444564589528284,spot_peer,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192472,-0.4464879387322519,relative_legacy,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192472,-15.97737898564812,peer,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192472,30.31083727362976,baseline,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192472,31.034012061215048,spot_baseline,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192924,13.575094711232875,peer,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192924,65.37842358955884,baseline,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192924,73.63884007034605,spot_baseline,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192924,15.180607986678208,spot_peer,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,192924,-0.0252207836603554,relative_legacy,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,193275,27.49307191982103,baseline,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,193275,29.631056070809237,spot_baseline,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,193275,-15.577406274202298,peer,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,193275,-0.4358857298313804,relative_legacy,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,193275,-16.453036430179584,spot_peer,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,195286,86.94973396112417,baseline,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,195286,24.61090121886185,peer,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,195286,87.97057662822883,spot_baseline,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,195286,0.1097735907510696,relative_legacy,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,195286,25.48253680347382,spot_peer,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,204737,-25.045823816692305,baseline,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,204737,-80.84290184953241,spot_peer,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,204737,-59.94620704162712,spot_baseline,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,204737,-0.5843208938673419,relative_legacy,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,204737,-33.423125101819146,peer,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,208405,28.810213868073863,spot_peer,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,208405,0.1551584216525834,relative_legacy,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,208405,91.24685654177,baseline,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,208405,27.91190500338275,peer,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,215725,92.5999418556223,spot_baseline,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,215725,24.139228333742,peer,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,215725,28.810213868073863,spot_peer,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,215725,76.11312361160522,baseline,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,215725,0.1269715742780807,relative_legacy,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,218666,0.0714359250971962,relative_legacy,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,218666,22.972533659974488,spot_peer,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,218666,20.842279880283083,peer,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,218666,84.478735007906,spot_baseline,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,218666,76.41812777825638,baseline,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,219886,-80.55004456559007,peer,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,219886,-62.76273245446843,spot_baseline,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,219886,-60.07930335040174,baseline,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,219886,-82.86747467059978,spot_peer,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,219886,-1.3338936996152124,relative_legacy,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,220077,75.68303571129665,baseline,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,220077,-0.0030725469980013,relative_legacy,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,220077,17.275703560346898,spot_peer,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,220077,16.372033714881088,peer,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,221727,90.88600567447835,baseline,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,221727,92.5999418556223,spot_baseline,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,221727,28.810213868073863,spot_peer,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,221727,0.154824864754791,relative_legacy,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30350,"Will marijuana still be listed as a US Schedule I controlled substance on December 31, 2024?",2024-11-29 13:06:11.882955+00,221727,27.86112371529589,peer,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30577 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,182315,76.55347463629771,spot_baseline,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,182315,67.51699641668911,baseline,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,182315,30.687580664537307,peer,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,182315,32.1428174721327,spot_peer,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,182315,0.3599336665582396,relative_legacy,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,185690,17.63068414245684,spot_peer,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,185690,0.0173000407909054,relative_legacy,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,185690,1.8246953487322688,peer,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,185690,56.36462694840641,spot_baseline,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,185690,5.691996483007922,baseline,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,185699,22.82414524060029,baseline,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,185699,23.87868595871165,spot_baseline,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,185699,-5.720837166269948,spot_peer,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,185699,-0.114811688636385,relative_legacy,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,185699,-3.718620371091101,peer,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,187708,-15.986456814914826,peer,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,187708,-0.2842405330709437,relative_legacy,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,187708,-20.02150235311735,spot_peer,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,187708,3.98402645317911,spot_baseline,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,187708,3.570825228614424,baseline,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,188107,77.96099315747,spot_baseline,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,188107,74.78389096085081,baseline,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,188107,33.15456894794831,spot_peer,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,188107,0.4027910654839862,relative_legacy,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,188107,33.92090420225839,peer,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,189585,32.1428174721327,spot_peer,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,189585,0.3983303722438736,relative_legacy,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,189585,75.65336872538103,baseline,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,189585,33.87201153539738,peer,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,189588,-54.897646467881934,baseline,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,189588,-55.63933485243852,spot_baseline,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,189588,-61.24948968427578,peer,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,189588,-0.9062599746670386,relative_legacy,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,189588,-62.879925092594455,spot_peer,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,189869,-0.0731523282279898,relative_legacy,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,189869,-3.977876748274847,spot_peer,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,189869,-0.950142297260458,peer,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,189869,22.0041458726194,baseline,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,190710,62.63505064189739,baseline,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,190710,69.59938131099001,spot_baseline,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,190710,0.2869474300068617,relative_legacy,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,190710,27.14408098731578,spot_peer,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,190710,25.47199194183548,peer,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,190772,-3.977876748274847,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,190772,-0.0704825671544283,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,190772,-0.8974950596514997,peer,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,190772,20.50131430936082,baseline,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,190772,26.303440583379377,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191026,10.793631503400473,baseline,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191026,-11.590032097090369,peer,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191026,35.859371390577714,spot_baseline,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191026,-0.222852298991264,relative_legacy,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191026,2.89111072971746,spot_peer,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191046,10.769107982180666,peer,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191046,32.1428174721327,spot_peer,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191046,0.1071024316254185,relative_legacy,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191046,24.722371800170727,baseline,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191284,48.54268271702416,spot_baseline,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191284,43.71130966514404,baseline,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191284,0.1155798126343046,relative_legacy,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191284,12.967572529706493,peer,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191284,12.008119678255625,spot_peer,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191471,21.12281770450227,peer,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191471,0.2365586342487659,relative_legacy,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191471,28.416535033874272,spot_peer,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191471,48.624980094820025,baseline,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191471,71.36958148433588,spot_baseline,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191935,14.712194346953016,baseline,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191935,21.412480535284736,spot_baseline,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191935,-7.493593218345513,spot_peer,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191935,-0.1040876203626152,relative_legacy,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,191935,-3.4694923204971926,peer,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192049,-3.977876748274847,spot_peer,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192049,-0.0551762932436485,relative_legacy,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192049,-0.9725366054988562,peer,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192049,9.871303772195684,baseline,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192418,0.8636310345664242,peer,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192418,6.386521213336517,baseline,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192418,-0.0013958295142517,relative_legacy,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192418,4.322848491943746,spot_peer,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192472,-14.9041524461235,spot_peer,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192472,-0.2436361194164933,relative_legacy,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192472,-13.034081087184374,peer,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192472,11.103131238874395,spot_baseline,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192472,10.86213646055756,baseline,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192924,70.84079834835963,spot_baseline,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192924,62.94435152646723,baseline,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192924,27.201901331053605,peer,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192924,28.036435511088037,spot_peer,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,192924,0.3117189262465858,relative_legacy,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,193275,10.816109960031277,spot_peer,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,193275,0.1042674460822411,relative_legacy,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,193275,12.255865611787334,peer,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,193275,44.15326351403751,baseline,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,193275,46.88439429746376,spot_baseline,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,195286,57.86830721134152,baseline,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,195286,20.851806905913342,peer,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,195286,0.2198812718468882,relative_legacy,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,195286,19.162935980606168,spot_peer,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,204737,9.453115153715324,peer,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,204737,20.94506595510552,spot_peer,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,204737,0.081144721235668,relative_legacy,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,204737,25.56687774483521,baseline,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,204737,60.97549621724435,spot_baseline,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,208405,20.84665704928387,peer,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,208405,57.65607389954845,baseline,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,208405,19.162935980606168,spot_peer,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,208405,0.2200441782174764,relative_legacy,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,215725,-2.461791842585314,relative_legacy,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,215725,-212.9307825822875,spot_peer,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,215725,-264.38561897747246,spot_baseline,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,215725,-173.68672705320915,peer,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,215725,-217.3998279076332,baseline,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,218666,-0.0153159802467204,peer,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,218666,26.00145471975685,baseline,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,218666,28.688114778816157,spot_baseline,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,218666,-2.2637269162974576,spot_peer,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,218666,-0.0632049431390479,relative_legacy,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,219886,-5.457518268036837,spot_peer,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,219886,-0.1105636378772632,relative_legacy,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,219886,-3.4030317230646605,peer,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,219886,23.041248923741662,baseline,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,219886,24.24500736777015,spot_baseline,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,220077,57.98680805887323,baseline,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,220077,20.851806905913342,peer,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,220077,0.2198812718468882,relative_legacy,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,220077,19.162935980606168,spot_peer,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,221727,4.322848491943746,spot_peer,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,221727,0.0173686572148351,relative_legacy,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,221727,37.14977000173472,baseline,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30351,"Will the median person on Bloomberg's Billionaires Index be from the United States on December 20, 2024?",2024-11-29 13:06:11.896237+00,221727,6.011955192601516,peer,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30578 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,182315,74.84612330040356,spot_baseline,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,182315,66.04916063152508,baseline,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,182315,0.0367185898127351,relative_legacy,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,182315,4.567762411427276,spot_peer,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,182315,3.6832811884448713,peer,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,185690,68.22137023704201,spot_baseline,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,185690,0.0264910339753362,peer,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,185690,-0.0009427669952813,relative_legacy,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,185690,6.970046724845358,baseline,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,185690,-0.1942379373763254,spot_peer,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,185699,-0.2754264162877656,relative_legacy,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,185699,-19.00235626813252,peer,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,185699,42.22330006830478,spot_baseline,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,185699,41.079764977182336,baseline,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,185699,-18.882152494742083,spot_peer,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,187708,71.01727482796618,spot_baseline,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,187708,1.81551223894898,spot_peer,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,187708,1.2586439802520968,peer,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,187708,64.82298468734223,baseline,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,187708,0.0027985425928903,relative_legacy,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,188107,-7.184841990780445,spot_peer,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,188107,-0.1170697009626568,relative_legacy,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,188107,-7.493702025718265,peer,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,188107,56.89036717270598,baseline,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,188107,58.496250072115615,spot_baseline,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,189585,5.795039500746096,spot_peer,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,189585,0.0586022268726233,relative_legacy,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,189585,75.65364371809171,baseline,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,189585,5.329790908590422,peer,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,189588,75.51446317135611,baseline,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,189588,0.0580822599275858,relative_legacy,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,189588,5.274608580897474,peer,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,189588,5.795039500746096,spot_peer,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,189869,-7.184841990780445,spot_peer,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,189869,48.935767419696674,baseline,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,189869,-6.338323354815267,peer,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,189869,-0.100058313433994,relative_legacy,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,190710,73.07038979841874,baseline,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,190710,5.795039500746096,spot_peer,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,190710,76.55347463629771,spot_baseline,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,190710,5.632597070700633,peer,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,190710,0.0620961881197293,relative_legacy,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,190772,41.0287583512284,baseline,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,190772,52.60688116675877,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,190772,-11.418234015103195,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,190772,-0.1383632940223529,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,190772,-9.170692710018916,peer,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191026,-0.072558869157053,relative_legacy,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191026,40.65446169225195,spot_baseline,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191026,-20.009863795454205,spot_peer,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191026,-4.193007706009448,peer,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191026,58.207810731086816,baseline,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191046,0.0101964541035788,relative_legacy,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191046,1.7930009922027617,peer,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191046,5.795039500746096,spot_peer,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191046,24.774329150319165,baseline,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191284,76.35900892833727,baseline,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191284,0.1266523998696597,relative_legacy,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191284,11.722578713777816,spot_peer,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191284,10.231792926013036,peer,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191284,84.79969065549501,spot_baseline,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191471,5.795039500746096,spot_peer,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191471,76.55347463629771,spot_baseline,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191471,3.8119370863932818,peer,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191471,52.20777295710785,baseline,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191471,0.0398335208622949,relative_legacy,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191935,50.58909297299573,spot_baseline,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191935,-0.1383858397581864,relative_legacy,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191935,-9.061607273399192,peer,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191935,34.83794756603118,baseline,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,191935,-12.868659108779935,spot_peer,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192049,28.84233763022653,baseline,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192049,5.795039500746096,spot_peer,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192049,0.0131383594676073,relative_legacy,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192049,2.085029247572875,peer,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192418,0.007569984475015,relative_legacy,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192418,5.795039500746096,spot_peer,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192418,12.99787916804473,baseline,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192418,0.9814260131011696,peer,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192472,5.293271420698535,peer,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192472,5.795039500746096,spot_peer,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192472,0.0585776763808281,relative_legacy,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192472,75.05607487144013,baseline,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192924,0.0771945931067525,relative_legacy,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192924,70.62705574007748,baseline,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192924,79.41038985597478,spot_baseline,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192924,6.642782641620369,peer,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,192924,7.848645294423998,spot_peer,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,193275,5.315051787371385,peer,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,193275,0.0578371160697419,relative_legacy,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,193275,72.8288836012622,baseline,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,193275,6.038761595778317,spot_peer,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,193275,76.89253355637511,spot_baseline,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,195286,5.351581780762857,peer,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,195286,5.795039500746096,spot_peer,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,195286,0.0587544994625042,relative_legacy,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,195286,75.78692312773137,baseline,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,204737,65.44355408453994,spot_baseline,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,204737,-2.190985795086673,spot_peer,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,204737,27.539448487837785,baseline,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,204737,-1.0313080287998029,peer,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,204737,-0.0297606696850658,relative_legacy,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,208405,11.213895264843591,peer,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,208405,83.55385646266251,baseline,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,208405,0.1397853910804553,relative_legacy,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,208405,11.722578713777816,spot_peer,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,215725,-0.0211852069842795,relative_legacy,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,215725,-0.6777661213544949,peer,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,215725,55.7796742540073,baseline,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,215725,67.80719051126377,spot_baseline,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,215725,-0.4919583172545447,spot_peer,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,218666,58.27197298307286,baseline,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,218666,64.15460290875237,spot_baseline,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,218666,-3.1175087748846084,spot_peer,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,218666,-0.0595354778104317,relative_legacy,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,218666,-3.2608815282973844,peer,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,219886,-4.651109946571616,spot_peer,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,219886,62.021102632411385,spot_baseline,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,219886,-5.053488453287373,peer,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,219886,60.710006817557,baseline,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,219886,-0.0836739712011604,relative_legacy,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,220077,-7.694084767332325,peer,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,220077,-0.1200096254119762,relative_legacy,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,220077,58.16443781935087,baseline,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,220077,-7.184841990780445,spot_peer,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,221727,67.80719051126377,spot_baseline,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,221727,-0.4919583172545447,spot_peer,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,221727,-0.9479636862755731,peer,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,221727,-0.0272661466322976,relative_legacy,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30352,"Will US airline passenger volume for the week of Christmas through New Years Eve 2024 be up year over year, according to the TSA?",2024-11-29 13:06:11.90926+00,221727,66.55268658150352,baseline,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30579 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,182315,59.87695951671247,baseline,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,182315,0.2393182175679312,relative_legacy,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,182315,67.80719051126377,spot_baseline,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,182315,29.205507803261497,peer,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,182315,32.4895003029209,spot_peer,RyansAGI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,185690,1.734332314873657,peer,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,185690,4.735421422285789,baseline,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,185690,45.92217568228475,spot_baseline,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,185690,16.758129298989665,spot_peer,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,185690,0.0070980390815247,relative_legacy,annabot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,185699,-0.2998331299869847,relative_legacy,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,185699,-10.208915220817158,spot_peer,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,185699,-8.989103771936305,peer,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,185699,8.406426478847456,spot_baseline,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,185699,8.256772345160881,baseline,MWG,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,187708,44.99574836280033,spot_baseline,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,187708,15.61493159618498,peer,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,187708,41.73157103681204,baseline,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,187708,0.043385193334654,relative_legacy,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,187708,16.09219546321776,spot_peer,twsummerbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,188107,30.07432779703244,peer,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,188107,63.22682154995129,spot_baseline,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,188107,61.99585204906237,baseline,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,188107,29.19704269992738,spot_peer,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,188107,0.2377182685521683,relative_legacy,Cassie,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,189585,-39.39242953292527,spot_peer,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,189585,-0.6999655154553946,relative_legacy,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,189585,-38.12843813766617,peer,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,189585,-31.800822253101927,baseline,mf-bot-1,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,189588,-0.4550840507434455,relative_legacy,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,189588,-7.2997200634906685,baseline,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,189588,-20.29930070356989,peer,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,189588,-21.570921407197662,spot_peer,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,189588,-7.400058144377692,spot_baseline,mf-bot-3,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,189869,-22.530550231421746,peer,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,189869,-15.200309344504996,spot_baseline,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,189869,-12.716200693072055,baseline,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,189869,-27.177892501892924,spot_peer,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,189869,-0.4594288789380498,relative_legacy,VeritasAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,190710,79.90873060740036,spot_baseline,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,190710,41.1883208638826,spot_peer,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,190710,0.3775558500706039,relative_legacy,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,190710,75.56504808138462,baseline,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,190710,40.00241524588668,peer,Bot_Pepa,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,190772,-0.685817413126069,relative_legacy,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,190772,-37.314850397998974,baseline,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,190772,-50.318705230773936,spot_peer,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,190772,-39.515959549950175,peer,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,190772,-47.39311883324123,spot_baseline,Jay_Bailey_Bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191026,-36.15457515863738,peer,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191026,-32.605107062195245,spot_baseline,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191026,-39.68879698539399,spot_peer,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191026,-29.730654102939077,baseline,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191026,-0.6708229951384347,relative_legacy,manticAI,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191046,38.77649812092153,spot_peer,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191046,0.1130028492221742,relative_legacy,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191046,12.39074086009364,peer,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191046,24.76402446424795,baseline,archipelago,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191284,68.93314865856885,baseline,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191284,35.53749846451348,peer,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191284,38.77649812092153,spot_peer,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191284,0.3229952359080764,relative_legacy,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191471,0.2139467358708885,relative_legacy,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191471,24.060268331792432,peer,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191471,48.711884080160814,baseline,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191471,71.36958148433588,spot_baseline,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191471,35.0502156826631,spot_peer,HSeldon,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191935,-0.1111257209133756,relative_legacy,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191935,23.87868595871165,spot_baseline,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191935,0.9128434825188942,spot_peer,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191935,16.48772285338339,baseline,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,191935,0.6855078219694888,peer,pgodzinai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192049,26.89439153044042,baseline,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192049,0.0800918571127751,relative_legacy,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192049,58.496250072115615,spot_baseline,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192049,11.717256932725927,peer,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192049,25.796616629394983,spot_peer,gnosis-ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192418,-8.745362221884957,baseline,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192418,-9.006997657635846,peer,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192418,-0.1530077396608252,relative_legacy,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192418,-53.24012950880172,spot_peer,InstitutPelFutur,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192472,12.026214019468576,peer,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192472,37.16547453944916,baseline,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192472,-0.0107197941750263,relative_legacy,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192472,10.95652914073258,spot_peer,bestworldbot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192924,0.2929039309479297,relative_legacy,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192924,65.5637706399516,baseline,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192924,33.21682430443288,peer,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192924,36.68140254725286,spot_peer,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,192924,73.63884007034605,spot_baseline,acm_bot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,193275,22.100377615209947,baseline,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,193275,1.1641336177518418,peer,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,193275,-0.1589968966492542,relative_legacy,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,193275,22.897256976016077,spot_baseline,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,193275,0.2073733897889954,spot_peer,histerio,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,195286,13.62468443474826,baseline,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,195286,-0.245710448576893,relative_legacy,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,195286,-6.36759815766984,spot_peer,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,195286,13.750352374993504,spot_baseline,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,195286,-5.030633581757128,peer,Unwrapped80T,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,204737,-0.1141199474692912,relative_legacy,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,204737,-2.866001626838175,peer,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,204737,-6.36759815766984,spot_peer,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,204737,13.750352374993504,spot_baseline,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,204737,5.815233459697687,baseline,SynapseSeer,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,208405,0.1942935222611559,relative_legacy,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,208405,25.796616629394983,spot_peer,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,208405,57.645967382396826,baseline,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,208405,26.930905872257654,peer,mf-bot-4,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,215725,37.85116232537298,spot_baseline,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,215725,-0.014648754673567,relative_legacy,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,215725,31.15424972094986,baseline,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,215725,10.95652914073258,spot_peer,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,215725,9.402159913792485,peer,estr.ai,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,218666,9.008402580336284,peer,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,218666,35.61438102252753,spot_baseline,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,218666,-0.0456438937241938,relative_legacy,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,218666,9.34868757403988,spot_peer,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,218666,32.41896013011866,baseline,GreeneiBot2,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,219886,-24.30856104793897,baseline,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,219886,-34.23399037346309,spot_peer,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,219886,-0.6241115095485992,relative_legacy,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,219886,-25.0165425587271,spot_baseline,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,219886,-32.584758834985195,peer,SaraBase,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,220077,-15.16285444519696,baseline,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,220077,-25.96767418288771,peer,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,220077,-27.177892501892924,spot_peer,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,220077,-15.200309344504996,spot_baseline,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,220077,-0.5325711917405748,relative_legacy,mmBot,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,221727,-50.50274058192375,baseline,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,221727,-51.697434039088165,peer,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,221727,-53.24012950880172,spot_peer,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30353,Will Tesla increase its quarterly vehicle deliveries in Q4 2024 on a year-over-year basis?,2024-11-29 13:06:12.090377+00,221727,-0.8873492306659042,relative_legacy,mf-bot-5,True,yes,2024-11-30 15:30:00+00,2024-11-30 15:30:00+00,1.0,2024-11-30 15:30:00+00,30580 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,182315,0.1584202929613306,relative_legacy,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,182315,15.914122142097046,spot_peer,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,182315,13.446537570122912,peer,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,182315,74.1448132284621,baseline,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,182315,84.79969065549501,spot_baseline,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,185690,75.48020065907814,spot_baseline,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,185690,5.331946338727182,peer,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,185690,0.0504334860053102,relative_legacy,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,185690,45.98386115431883,baseline,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,185690,9.231592953883627,spot_peer,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,185699,-0.053053077528578,relative_legacy,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,185699,-1.9721762384945027,peer,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,185699,-1.5765326900340697,spot_peer,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,185699,51.56637078714624,baseline,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,185699,60.40713236688608,spot_baseline,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,187708,67.98741477466228,spot_baseline,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,187708,3.8588997707917008,spot_peer,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,187708,0.0021115679420128,relative_legacy,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,187708,1.3830332696097625,peer,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,187708,27.60636005605644,baseline,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,188107,0.0116122891905869,relative_legacy,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,188107,1.9712622699809983,peer,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,188107,5.862699888271421,spot_peer,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,188107,25.95560132374292,baseline,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,188107,70.78192485066899,spot_baseline,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,189585,9.6232958495117,peer,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,189585,10.00118277934374,spot_peer,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,189585,0.0984748989144313,relative_legacy,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,189585,75.48992354022272,baseline,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,189588,37.17767415151842,baseline,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,189588,-18.546713629062108,peer,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,189588,-17.750264109761023,spot_peer,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,189588,-0.2830489468564226,relative_legacy,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,189869,-0.0665401129610914,relative_legacy,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,189869,48.03683812058447,baseline,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,189869,-3.0251498626518085,peer,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,189869,-2.94672856072586,spot_peer,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,190710,-13.082632873850374,spot_peer,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,190710,-0.206561520379659,relative_legacy,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,190710,-12.9142636553795,peer,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,190710,41.27284358275705,baseline,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,190710,44.36066514756148,spot_baseline,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,190772,65.99245584023782,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,190772,1.363753240972578,peer,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,190772,51.59163335955304,baseline,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,190772,2.428416845899433,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,190772,-0.0071830546087265,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191026,0.0189236284902019,relative_legacy,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191026,12.67465328813138,baseline,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191026,11.698555144059082,spot_peer,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191026,1.812772873867712,peer,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191026,78.92063897297727,spot_baseline,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191046,2.906541167761832,peer,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191046,23.463633301580867,baseline,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191046,10.00118277934374,spot_peer,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191046,0.0276198382789505,relative_legacy,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191284,-0.3854786942227813,relative_legacy,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191284,-26.030544213919978,spot_peer,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191284,-25.936068867303447,peer,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191284,25.209445779955995,baseline,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191284,26.303440583379377,spot_baseline,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191471,33.34237337251918,spot_baseline,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191471,-14.641516771520925,peer,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191471,-20.98328585156493,spot_peer,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191471,-0.2272543695051181,relative_legacy,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191471,22.473756251952995,baseline,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191935,61.95939406587675,baseline,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191935,12.407065072198977,spot_peer,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191935,8.964462066030034,peer,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191935,0.0980066659625965,relative_legacy,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191935,79.90873060740036,spot_baseline,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191975,21.82645357137714,spot_baseline,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191975,-0.2555744056796469,relative_legacy,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191975,-29.24076241196085,spot_peer,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191975,12.334294142227227,baseline,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,191975,-16.858496649432567,peer,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192049,8.239710185855767,peer,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192049,10.00118277934374,spot_peer,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192049,0.0865174911755205,relative_legacy,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192049,67.10818047534794,baseline,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192418,64.15460290875237,spot_baseline,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192418,-0.0211553365865579,relative_legacy,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192418,48.77355454619451,baseline,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192418,0.3233581765479758,peer,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192418,1.1105865930618726,spot_peer,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192472,57.128866340075135,baseline,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192472,-0.0792158262020547,relative_legacy,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192472,-2.94672856072586,spot_peer,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192472,-3.5309082083394645,peer,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192924,52.00450240398177,spot_baseline,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192924,-7.601628484595083,spot_peer,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192924,-7.094793272736856,peer,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192924,-0.12340734364796,relative_legacy,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,192924,43.94114887084325,baseline,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,193275,11.810819756673103,spot_peer,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,193275,66.28889803608912,baseline,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,193275,9.448726931416974,peer,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,193275,0.1051027717693116,relative_legacy,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,193275,79.07720378619997,spot_baseline,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,195286,0.1693043200979312,relative_legacy,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,195286,13.973983351059312,peer,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,195286,61.48571103197101,baseline,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,195286,21.50728296316004,spot_peer,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,204737,19.61742237414528,baseline,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,204737,-4.275555378442101,peer,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,204737,-0.0764698990013029,relative_legacy,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,204737,-10.083922162824289,spot_peer,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,204737,48.54268271702416,spot_baseline,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,208405,0.1777123870006078,relative_legacy,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,208405,15.914122142097046,spot_peer,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,208405,15.294735799454584,peer,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,208405,82.8617253944431,baseline,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,218666,1.3247652520720878,peer,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,218666,-0.0121580185477222,relative_legacy,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,218666,1.9032975667414231,spot_peer,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,218666,62.65741957173139,baseline,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,218666,65.26012175965192,spot_baseline,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,219886,69.11767968121245,spot_baseline,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,219886,63.93092119324652,baseline,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,219886,3.8223126382993136,peer,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,219886,0.0231986618426184,relative_legacy,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,219886,4.669354874165233,spot_peer,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,220077,3.1172437803966946,peer,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,220077,0.0122968477848227,relative_legacy,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,220077,65.76287753308183,baseline,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,220077,3.729670177643583,spot_peer,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,220077,67.80719051126377,spot_baseline,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,221727,10.00118277934374,spot_peer,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,221727,9.353986827071132,peer,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,221727,74.54566975359826,baseline,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,221727,0.0971227795845775,relative_legacy,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,222631,-1.7360123659126614,peer,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,222631,-0.0268075658333316,relative_legacy,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,222631,-22.638493577058853,spot_peer,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,222631,2.379815093206895,baseline,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,222631,31.034012061215048,spot_baseline,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,227188,52.60688116675877,spot_baseline,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,227188,-0.0222634934711763,relative_legacy,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,227188,8.13815596627462,baseline,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,227188,-7.169693511097081,spot_peer,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30385,Will the BLS report an increase in nonfarm payroll numbers for November 2024?,2024-12-02 14:08:51.796329+00,227188,-1.1707726894824488,peer,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30615 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,182315,62.44566182069845,baseline,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,182315,24.00763242215716,spot_peer,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,182315,0.1513140264425334,relative_legacy,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,182315,23.305929474875263,peer,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,182315,71.36958148433588,spot_baseline,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,185690,77.90495528374585,spot_baseline,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,185690,0.1452126002836109,relative_legacy,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,185690,47.534032882837984,baseline,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,185690,18.1336836847747,peer,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,185690,28.6938144114327,spot_peer,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,185699,-0.0125552215176907,relative_legacy,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,185699,10.553860534412571,spot_peer,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,185699,11.174421202694536,peer,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,185699,45.46622685076323,baseline,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,185699,52.60688116675877,spot_baseline,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,187708,62.10555032997394,spot_baseline,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,187708,0.0446583025634832,relative_legacy,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,187708,26.511230692639007,baseline,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,187708,7.784449260646935,peer,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,187708,17.36486993050322,spot_peer,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,188107,-1.900339368704433,spot_peer,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,188107,13.277772510257574,baseline,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,188107,-0.0585262626093935,relative_legacy,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,188107,-0.413664259164244,peer,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,188107,35.238189142907615,spot_baseline,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,189585,75.49307121113227,baseline,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,189585,0.2312959366062471,relative_legacy,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,189585,27.72473682485337,spot_peer,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,189585,30.607925265003285,peer,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,189588,-5.74537524104111,peer,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,189588,25.88460775523845,baseline,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,189588,-8.306990168410326,spot_peer,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,189588,-0.2631629375440384,relative_legacy,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,189869,7.63963188268535,spot_peer,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,189869,-0.04593095714289,relative_legacy,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,189869,7.910246188094119,peer,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,189869,39.86389358047053,baseline,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,190710,-67.06395957592127,spot_peer,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,190710,-1.014403588069125,relative_legacy,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,190710,-60.63002854800196,peer,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,190710,-51.8229702639001,baseline,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,190710,-55.63933485243852,spot_baseline,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,190772,33.34237337251918,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,190772,-0.1648319996962067,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,190772,-3.25973180605529,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,190772,26.08133075020376,baseline,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,190772,-1.3059957306705092,peer,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191026,-1.9923361924414895,peer,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191026,-0.0497518031747448,relative_legacy,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191026,-12.766792441968988,spot_peer,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191026,3.2256360591357445,baseline,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191026,20.083777114084587,spot_baseline,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191046,37.85116232537298,spot_baseline,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191046,11.542295558130338,baseline,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191046,-0.0267100642513802,spot_peer,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191046,0.2127151421633672,peer,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191046,-0.0366468448288456,relative_legacy,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191284,-222.53393526369427,baseline,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191284,-2.7340399824628867,relative_legacy,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191284,-193.6614180195884,spot_peer,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191284,-185.69899957535856,peer,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191284,-232.19280948873623,spot_baseline,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191471,64.15460290875237,spot_baseline,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191471,0.0623396319846051,relative_legacy,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191471,43.28564905802161,baseline,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191471,18.83414063857151,spot_peer,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191471,13.469682874459393,peer,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191935,11.980755927412837,spot_peer,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191935,10.114492701488038,peer,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191935,-0.0062516515215807,relative_legacy,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191935,41.80656979115758,baseline,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191935,54.59683691052925,spot_baseline,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191975,19.15626507007559,spot_baseline,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191975,-6.51765394801613,peer,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191975,-0.171355618834941,relative_legacy,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191975,-13.431863847045092,spot_peer,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,191975,9.905000820907636,baseline,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192049,0.2967102644218189,relative_legacy,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192049,35.01655032239511,peer,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192049,79.86314027054055,baseline,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192049,33.63767618760669,spot_peer,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192418,71.36958148433588,spot_baseline,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192418,54.26944559422997,baseline,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192418,0.1261669141852344,relative_legacy,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192418,19.50982410913373,peer,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192418,24.00763242215716,spot_peer,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192472,37.05629341324773,baseline,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192472,-0.0267100642513802,spot_peer,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192472,-0.1487469223369545,relative_legacy,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192472,2.7028573294196048,peer,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192924,-58.64059175908248,spot_baseline,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192924,-0.954616592710626,relative_legacy,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192924,-57.42105270934559,peer,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192924,-69.21600726175885,spot_peer,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,192924,-49.65778981510167,baseline,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,193275,35.79885125981802,spot_peer,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,193275,0.2847969154105516,relative_legacy,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,193275,74.17218931861446,baseline,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,193275,32.34136041368853,peer,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,193275,87.81367666269476,spot_baseline,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,195286,50.82998843935516,baseline,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,195286,27.72473682485337,spot_peer,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,195286,0.1436403011668283,relative_legacy,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,195286,19.16720601217528,peer,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,204737,-0.1504987093062316,relative_legacy,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,204737,5.6860982016608,baseline,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,204737,-17.12025010598602,spot_peer,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,204737,-6.6313291099148906,peer,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,204737,14.01242239090707,spot_baseline,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,208405,33.63767618760669,spot_peer,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,208405,82.86220098756368,baseline,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,208405,0.3100116368617291,relative_legacy,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,208405,36.26965066851326,peer,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,218666,12.546048459007205,spot_peer,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,218666,53.32073588124371,baseline,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,218666,15.26928031662745,peer,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,218666,0.0221119233460229,relative_legacy,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,218666,55.38519681811259,spot_baseline,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,219886,40.80161567209993,spot_baseline,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,219886,-0.1182879168934047,relative_legacy,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,219886,2.0889089895321797,spot_peer,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,219886,39.31836813666965,baseline,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,219886,5.01789913751861,peer,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,220077,2.814471819113625,peer,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,220077,36.78809893602668,baseline,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,220077,-0.0267100642513802,spot_peer,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,220077,-0.146719881889341,relative_legacy,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,220077,37.85116232537298,spot_baseline,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,221727,0.2294335588183141,relative_legacy,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,221727,27.72473682485337,spot_peer,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,221727,30.314205503406907,peer,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,221727,74.54697676859806,baseline,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,222631,4.929612735175253,baseline,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,222631,18.83414063857151,spot_peer,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,222631,0.0073441472393928,relative_legacy,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,222631,1.4472074541563005,peer,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,222631,64.15460290875237,spot_baseline,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,227188,71.36958148433588,spot_baseline,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,227188,0.030712485168643,relative_legacy,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,227188,3.772376433606145,peer,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,227188,24.00763242215716,spot_peer,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30386,"Will the BLS report an increase in nonfarm payroll numbers of ≥75,000 for November 2024?",2024-12-02 14:08:51.830904+00,227188,11.056900802366572,baseline,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30616 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,182315,31.774315046401348,peer,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,182315,29.196243272857878,baseline,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,182315,32.78285533786295,spot_peer,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,182315,0.0712064949716499,relative_legacy,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,182315,33.34237337251918,spot_baseline,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,185690,49.82508675278254,spot_baseline,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,185690,0.1466432998757732,relative_legacy,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,185690,28.060114318658883,peer,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,185690,44.60176531114631,spot_peer,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,185690,30.45433815861454,baseline,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,185699,0.0304743772828176,relative_legacy,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,185699,25.10663393354267,baseline,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,185699,29.445524763564187,spot_peer,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,185699,28.79103271671652,peer,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,185699,28.688114778816157,spot_baseline,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,187708,14.535138557261984,spot_baseline,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,187708,19.297150041665336,spot_peer,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,187708,9.099953790451142,peer,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,187708,6.385330473957747,baseline,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,187708,-0.0289723184436392,relative_legacy,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,188107,17.541090541778303,peer,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,188107,18.798767820103848,baseline,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,188107,43.68221902660362,spot_peer,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,188107,0.1084763107766558,relative_legacy,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,188107,48.542682717024185,spot_baseline,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,189585,50.819412628702025,spot_peer,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,189585,0.3473844193064695,relative_legacy,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,189585,57.72571521409306,baseline,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,189585,58.81041971628432,peer,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,189588,-391.6226616539204,peer,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,189588,-395.81728877160594,spot_peer,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,189588,-5.785022137931176,relative_legacy,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,189588,-555.6419660064778,baseline,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,189588,-564.3856189774725,spot_baseline,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,189869,-15.200309344504996,spot_baseline,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,189869,-12.482947662294396,baseline,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,189869,-2.0246174160556167,spot_peer,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,189869,-0.3284253223798028,relative_legacy,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,189869,0.3205615653791623,peer,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,190710,-16.8281529650908,spot_peer,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,190710,-11.638773079274934,peer,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,190710,-0.5471955352815128,relative_legacy,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,190710,-33.44166913258312,baseline,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,190710,-35.845397091247634,spot_baseline,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,190772,-12.029423371771175,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,190772,-0.2866973704364669,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,190772,-9.415450756613089,baseline,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,190772,0.2490625893349196,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,190772,1.8259887453661152,peer,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191026,37.76140902093832,spot_peer,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191026,0.02969781674057,relative_legacy,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191026,6.47048846470492,baseline,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191026,6.175823302834632,peer,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191026,40.285490258245765,spot_baseline,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191046,-132.19280948873623,spot_baseline,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191046,-85.91395012808964,spot_peer,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191046,-25.736368576255344,peer,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191046,-40.39515316049839,baseline,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191046,-0.4600289808656501,relative_legacy,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191284,-222.53200859280085,baseline,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191284,-2.447573457851511,relative_legacy,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191284,-157.61883087567017,spot_peer,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191284,-148.4553245451642,peer,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191284,-232.19280948873623,spot_baseline,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191471,42.22330006830478,spot_baseline,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191471,0.1064349076609832,relative_legacy,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191471,39.15091323435608,spot_peer,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191471,27.442983022303448,peer,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191471,28.525141064043755,baseline,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191935,-23.6035275220853,baseline,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191935,-11.65466118150514,spot_peer,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191935,-0.4279964204492024,relative_legacy,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191935,-8.507895581207041,peer,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191935,-28.63041851566411,spot_baseline,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191975,0.1922312131028658,spot_baseline,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191975,9.012585434800055,spot_peer,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191975,4.308995186582722,peer,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191975,0.0786241259127693,baseline,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,191975,-0.0819383364259071,relative_legacy,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192049,35.69812793871705,baseline,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192049,36.01587707966686,spot_peer,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192049,39.09035893058393,peer,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192049,0.140350469564433,relative_legacy,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192049,37.85116232537298,spot_baseline,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192418,29.0228519136746,peer,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192418,36.01587707966686,spot_peer,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192418,0.0936501085405087,relative_legacy,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192418,28.788706843900613,baseline,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192472,0.1411369701143307,relative_legacy,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192472,37.11926857990827,baseline,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192472,42.32590612538088,peer,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192472,36.01587707966686,spot_peer,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192924,18.14206402801417,spot_baseline,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192924,-0.058653973137855,relative_legacy,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192924,15.386753540261813,baseline,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192924,21.033456710505217,peer,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,192924,21.88349164912229,spot_peer,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,193275,0.3058269345233733,relative_legacy,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,193275,52.06081519055049,baseline,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,193275,47.76936458416565,peer,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,193275,52.46148323107688,spot_peer,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,193275,60.7862902831235,spot_baseline,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,195286,37.85116232537298,spot_baseline,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,195286,0.0758336579759166,relative_legacy,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,195286,25.13188121188924,baseline,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,195286,36.01587707966686,spot_peer,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,195286,24.834052014175228,peer,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,204737,-27.151862201540716,peer,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,204737,-0.5189364971843712,relative_legacy,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,204737,-67.918780425665,spot_peer,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,204737,-43.647586540732334,baseline,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,204737,-107.09665213541436,spot_baseline,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,208405,63.69715008965871,peer,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,208405,57.49581136707146,spot_peer,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,208405,66.4578861966497,baseline,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,208405,0.4347363552991384,relative_legacy,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,218666,4.293839794317423,peer,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,218666,-0.355696012654934,relative_legacy,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,218666,-1.1091399736091676,spot_peer,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,218666,-13.442150250963602,baseline,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,218666,-13.92357973711722,spot_baseline,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,219886,69.11767968121245,spot_baseline,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,219886,62.06607373478814,peer,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,219886,0.4399105509434068,relative_legacy,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,219886,58.43549606359312,spot_peer,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,219886,66.2206715074486,baseline,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,220077,-0.3744968979915408,relative_legacy,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,220077,3.718944769769615,peer,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,220077,-2.0246174160556167,spot_peer,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,220077,-14.80864915084154,baseline,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,220077,-15.200309344504996,spot_baseline,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,221727,0.3434796032034236,relative_legacy,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,221727,50.819412628702025,spot_peer,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,221727,56.23081418287283,peer,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,221727,57.01747507331767,baseline,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,222631,2.914370002035786,baseline,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,222631,36.01587707966686,spot_peer,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,222631,0.0070551362907584,relative_legacy,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,222631,2.7730612565001334,peer,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,227188,5.658352836636751,spot_baseline,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,227188,2.105733578213417,peer,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,227188,12.932061426472758,spot_peer,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,227188,-0.0246753918562659,relative_legacy,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30387,"Will the BLS report an increase in nonfarm payroll numbers of ≥175,000 for November 2024?",2024-12-02 14:08:51.845434+00,227188,0.8782695844943992,baseline,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30617 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,182315,23.055716552688995,baseline,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,182315,0.0947519125940814,relative_legacy,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,182315,17.66235536713928,peer,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,182315,26.303440583379377,spot_baseline,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,182315,21.25760605596014,spot_peer,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,185690,-21.517974613566967,spot_peer,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,185690,-0.2884687668487917,relative_legacy,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,185690,-14.19130560024858,peer,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,185690,-20.420553418443955,baseline,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,185690,-33.35160691625743,spot_baseline,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,185699,31.533373439017428,baseline,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,185699,0.1783070791743664,relative_legacy,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,185699,35.61438102252753,spot_baseline,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,185699,23.887960946349352,peer,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,185699,27.93400479432958,spot_peer,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,187708,25.314921209747855,spot_peer,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,187708,14.449137251567397,baseline,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,187708,10.80591356400347,peer,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,187708,0.0822569810583829,relative_legacy,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,187708,31.96179342001613,spot_baseline,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,188107,-27.90251129359781,peer,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,188107,-39.54352233227756,baseline,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,188107,-100.0,spot_baseline,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,188107,-0.4498089599444997,relative_legacy,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,188107,-69.3081253944433,spot_peer,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,189585,37.20422810705582,spot_peer,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,189585,0.3459100428812748,relative_legacy,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,189585,47.90748780869742,baseline,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,189585,37.338934087626,peer,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,189588,97.05140457230635,baseline,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,189588,73.46602120865158,peer,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,189588,98.5500430304885,spot_baseline,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,189588,0.8383790878591304,relative_legacy,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,189588,73.06194618483832,spot_peer,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,189869,12.256429125998444,spot_peer,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,189869,11.292386648747687,baseline,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,189869,8.867692976857855,peer,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,189869,13.750352374993504,spot_baseline,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,189869,-0.0109605008643553,relative_legacy,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,190710,13.750352374993504,spot_baseline,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,190710,12.841916314611687,baseline,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,190710,10.86828755119546,peer,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,190710,12.256429125998444,spot_peer,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,190710,-0.0152794890683788,relative_legacy,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,190772,24.649656692821267,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,190772,0.1243960456723998,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,190772,24.30420856489567,baseline,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,190772,18.193899600193767,peer,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,190772,31.034012061215048,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191026,-11.311937077345569,baseline,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191026,-70.42537305604303,spot_baseline,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191026,-0.135205603917507,relative_legacy,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191026,-7.622114738652686,peer,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191026,-48.10167441273713,spot_peer,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191046,12.256429125998444,spot_peer,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191046,13.750352374993504,spot_baseline,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191046,3.5064044836788235,peer,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191046,0.0,relative_legacy,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191046,4.187153249770052,baseline,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191284,0.1115361655799857,relative_legacy,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191284,26.303440583379377,spot_baseline,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191284,20.28854005424632,peer,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191284,25.20885369588528,baseline,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191284,21.25760605596014,spot_peer,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191471,-20.687060300056864,spot_peer,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191471,-0.3107954379173017,relative_legacy,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191471,-32.19280948873623,spot_baseline,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191471,-21.77265496088446,baseline,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191471,-15.156431556553493,peer,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191935,-15.200309344504996,spot_baseline,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191935,-9.124280821510528,peer,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191935,-0.2524654993911076,relative_legacy,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191935,-13.442692123032662,baseline,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191935,-8.502608335603407,spot_peer,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191975,60.40620285460618,spot_peer,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191975,80.90027749390863,spot_baseline,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191975,28.747158445976847,peer,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191975,0.3271402225539254,relative_legacy,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,191975,39.42163087736016,baseline,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192049,-32.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192049,-0.446275863171919,relative_legacy,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192049,-20.47929173625727,peer,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192049,-30.41608596439152,baseline,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192049,-20.687060300056864,spot_peer,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192418,29.537886160119072,spot_peer,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192418,28.795160858753142,baseline,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192418,0.172675610697243,relative_legacy,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192418,21.368657980569463,peer,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192472,-129.92131991208467,baseline,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192472,-132.19280948873623,spot_baseline,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192472,-92.6671185788462,peer,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192472,-1.4298520689403391,relative_legacy,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192472,-92.3919410476374,spot_peer,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192924,29.537886160119072,spot_peer,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192924,32.161363642042666,baseline,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192924,0.1902495578291683,relative_legacy,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192924,37.85116232537298,spot_baseline,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,192924,24.078335989512,peer,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,193275,-1.1471580611503946,peer,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,193275,-2.816626495461045,baseline,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,193275,-2.6205070347394006,spot_baseline,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,193275,-0.1624013246157818,relative_legacy,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,193275,0.5177239088954028,spot_peer,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,195286,12.256429125998444,spot_peer,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,195286,9.146281426477518,baseline,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,195286,7.153339524981276,peer,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,195286,13.750352374993504,spot_baseline,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,195286,-7.244512568352296e-05,relative_legacy,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,204737,0.0020707552161302,relative_legacy,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,204737,14.274017211608214,spot_baseline,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,204737,4.701677479421212,peer,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,204737,5.841919569154191,baseline,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,204737,12.63192237261003,spot_peer,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,208405,-122.15215543920095,spot_peer,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,208405,-173.6965594166206,spot_baseline,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,208405,-170.1669990567093,baseline,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,208405,-121.96517791647604,peer,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,208405,-1.8309926312411344,relative_legacy,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,218666,-0.2800984985947742,relative_legacy,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,218666,-14.560532224689933,spot_baseline,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,218666,-8.13590203204794,peer,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,218666,-14.093323032366891,baseline,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,218666,-8.0438569147897,spot_peer,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,219886,40.06096952425997,spot_peer,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,219886,52.5267091702033,spot_baseline,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,219886,37.85156269487577,peer,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,219886,49.68099010556076,baseline,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,219886,0.3544283218746369,relative_legacy,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,220077,44.09749405024864,peer,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,220077,0.4379116208734709,relative_legacy,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,220077,57.11355639354883,baseline,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,220077,44.341421709154254,spot_peer,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,221727,-69.3081253944433,spot_peer,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,221727,-97.46488878106032,baseline,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,221727,-1.1070778977606508,relative_legacy,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,221727,-68.85674885403637,peer,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,221727,-100.0,spot_baseline,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,222631,54.59683691052925,spot_baseline,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,222631,3.205551159755146,peer,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,222631,4.21257601182705,baseline,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,222631,0.0315162801837478,relative_legacy,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,222631,41.54535215178329,spot_peer,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,227188,-0.1513599782031446,relative_legacy,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,227188,-57.58446829371883,spot_peer,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,227188,-83.65012677171204,spot_baseline,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,227188,-12.999198233702812,baseline,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30388,Will Nancy Pelosi's stock portfolio beat Berkshire Hathaway in 2024?,2024-12-02 14:08:51.860132+00,227188,-8.841745975905212,peer,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30618 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,182315,59.49565207667427,baseline,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,182315,22.1896155720894,peer,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,182315,27.355992656178792,spot_peer,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,182315,67.80719051126377,spot_baseline,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,182315,0.2945315028418688,relative_legacy,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,185690,18.65005576444948,spot_baseline,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,185690,-0.0810482381808383,relative_legacy,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,185690,11.440362375983415,baseline,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,185690,-5.891323323695027,peer,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,185690,-7.892072192951876,spot_peer,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,185699,-14.220043022664823,peer,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,185699,9.940474674394954,baseline,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,185699,-13.303585424125387,spot_peer,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,185699,11.103131238874395,spot_baseline,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,185699,-0.2061242309268993,relative_legacy,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,187708,15.880313962322068,spot_peer,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,187708,0.0953386479210357,relative_legacy,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,187708,51.80314926021694,spot_baseline,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,187708,6.856697550176161,peer,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,187708,24.205846563720165,baseline,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,188107,-9.147303373397325,baseline,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,188107,-36.06860798724283,spot_peer,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,188107,-16.554369670090807,peer,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,188107,-20.645087746742654,spot_baseline,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,188107,-0.2301267173104683,relative_legacy,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,189585,57.7276296899035,baseline,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,189585,0.2276326232789561,relative_legacy,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,189585,18.22948528586124,peer,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,189585,20.67959391780936,spot_peer,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,189588,32.19280948873624,spot_baseline,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,189588,1.818743214986472,spot_peer,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,189588,31.68712814864971,baseline,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,189588,-0.0316085327332053,relative_legacy,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,189588,-0.7471146188358775,peer,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,189869,31.085588582992894,baseline,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,189869,5.8760583687741965,spot_peer,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,189869,0.0433850147889982,relative_legacy,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,189869,3.119011870306476,peer,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,190710,0.3870430727330528,relative_legacy,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,190710,71.58955425330797,baseline,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,190710,76.55347463629771,spot_baseline,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,190710,29.571886366487057,peer,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,190710,33.62750525787895,spot_peer,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,190772,2.6430366269702827,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,190772,0.5624126842549001,peer,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,190772,33.34237337251918,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,190772,0.0080532683323088,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,190772,26.12773173861871,baseline,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191026,11.131898699003862,spot_baseline,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191026,1.7881161398387202,baseline,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191026,-13.282957751145457,spot_peer,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191026,-2.1250259309896884,peer,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191026,-0.0258022960183872,relative_legacy,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191046,0.0228801717527006,relative_legacy,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191046,37.85116232537298,spot_baseline,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191046,1.5492672882287897,peer,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191046,5.8760583687741965,spot_peer,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191046,11.587110877371387,baseline,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191284,92.5999418556223,spot_baseline,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191284,0.5481155638015299,relative_legacy,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191284,41.50745608002652,peer,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191284,45.13360544169526,spot_peer,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191284,88.74572368781858,baseline,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191471,0.5699604545560376,peer,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191471,2.6430366269702827,spot_peer,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191471,33.34237337251918,spot_baseline,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191471,0.0090777323268541,relative_legacy,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191471,22.574124979730527,baseline,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191935,-9.541415337483167,spot_peer,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191935,-10.252525623828785,peer,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191935,11.096678970247083,baseline,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191935,16.349873228287958,spot_baseline,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191935,-0.1412056034279686,relative_legacy,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191975,-1.9166721525333568,peer,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191975,-0.0242648549888838,relative_legacy,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191975,5.6238483818302125,baseline,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191975,-6.3879998141994605,spot_peer,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,191975,20.74764293434818,spot_baseline,jkraybill_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192049,-58.288803586131,peer,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192049,-0.8198982624737114,relative_legacy,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192049,-58.16248043186962,spot_peer,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192049,-48.72593073858745,baseline,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192049,-51.45731728297583,spot_baseline,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192418,-26.13886951281188,peer,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192418,-32.16443612694829,spot_peer,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192418,-15.200309344504996,spot_baseline,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192418,-0.3602825426509989,relative_legacy,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192418,-11.56588413533601,baseline,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192472,-15.237254356417033,spot_peer,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192472,8.280200329045146,baseline,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192472,8.406426478847456,spot_baseline,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192472,-0.265744407784612,relative_legacy,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192472,-17.876187706454328,peer,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192924,37.85116232537298,spot_baseline,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192924,32.23157045367837,baseline,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192924,0.0371345075857839,relative_legacy,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192924,5.8760583687741965,spot_peer,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,192924,3.11924369731537,peer,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,193275,20.955088823273183,spot_peer,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,193275,58.88045670155503,spot_baseline,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,193275,0.2163019546081568,relative_legacy,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,193275,52.01429992314954,baseline,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,193275,16.60968391292878,peer,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,195286,13.542400315710928,spot_peer,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,195286,0.1101825156387354,relative_legacy,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,195286,7.872744245381416,peer,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,195286,32.28814168348735,baseline,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,204737,0.0184137139285614,relative_legacy,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,204737,1.3086192429675148,peer,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,204737,14.6344228190116,baseline,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,204737,35.61438102252753,spot_baseline,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,204737,4.2721770029846935,spot_peer,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,208405,-32.16443612694829,spot_peer,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,208405,-15.200309344504996,spot_baseline,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,208405,-34.63222859401481,peer,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,208405,-14.865549341521325,baseline,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,208405,-0.4954100256943908,relative_legacy,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,218666,13.85730405752363,baseline,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,218666,-0.2047696926564041,relative_legacy,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,218666,14.274017211608214,spot_baseline,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,218666,-11.029905418734844,spot_peer,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,218666,-13.398185280274678,peer,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,219886,0.055637566830159,relative_legacy,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,219886,8.173954199547762,spot_peer,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,219886,5.633975103785155,peer,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,219886,40.35040362261152,baseline,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,219886,41.05581981425822,spot_baseline,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,220077,0.4031595539603269,relative_legacy,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,220077,31.001374336659108,peer,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,220077,74.96281622555793,baseline,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,220077,33.62750525787895,spot_peer,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,221727,0.2252267051814769,relative_legacy,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,221727,57.018015762866966,baseline,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,221727,20.67959391780936,spot_peer,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,221727,17.993031656287478,peer,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,222631,2.9262066720902244,baseline,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,222631,0.4542677198785128,peer,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,222631,0.0034856653022893,relative_legacy,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,222631,5.8760583687741965,spot_peer,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,227188,-0.0812095975206839,relative_legacy,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,227188,-3.916686965819928,baseline,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,227188,-25.15387669959645,spot_baseline,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,227188,-6.107384044864759,peer,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30389,Will Nancy Pelosi's stock portfolio beat the S&P 500 in 2024?,2024-12-02 14:08:51.8748+00,227188,-39.30162972904673,spot_peer,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30619 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,182315,-0.8405055769184631,relative_legacy,RyansAGI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,182315,-68.96598793878492,spot_baseline,RyansAGI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,182315,-60.654090468804704,baseline,RyansAGI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,182315,-58.00398511628253,spot_peer,RyansAGI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,182315,-50.127780664063664,peer,RyansAGI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,185690,2.036282763859524,peer,annabot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,185690,9.38815080752344,baseline,annabot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,185690,2.38355854217754,spot_peer,annabot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,185690,-0.0711720374501665,relative_legacy,annabot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,185690,15.25079483649029,spot_baseline,annabot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,185699,3.1716513923384766,spot_peer,MWG,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,185699,15.32724103480162,baseline,MWG,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,185699,16.349873228287958,spot_baseline,MWG,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,185699,-0.0901710835962186,relative_legacy,MWG,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,185699,4.853848118883743,peer,MWG,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,187708,-32.93707469332426,spot_peer,twsummerbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,187708,-34.007544159762176,spot_baseline,twsummerbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,187708,-0.3732746619096001,relative_legacy,twsummerbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,187708,-19.772463948185237,peer,twsummerbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,187708,-20.87113298986916,baseline,twsummerbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,188107,0.1110199863724224,relative_legacy,Cassie,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,188107,28.68965643279403,spot_peer,Cassie,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,188107,25.57510818791371,baseline,Cassie,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,188107,51.93741590935794,spot_baseline,Cassie,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,188107,14.3785581860699,peer,Cassie,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,189585,12.687988808767342,peer,mf-bot-1,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,189585,10.308844994436887,spot_peer,mf-bot-1,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,189585,25.97452510334126,baseline,mf-bot-1,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,189585,0.0185899889284937,relative_legacy,mf-bot-1,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,189588,57.64662035154208,baseline,mf-bot-3,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,189588,35.81103815626084,peer,mf-bot-3,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,189588,33.39266064763099,spot_peer,mf-bot-3,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,189588,0.3350288707031341,relative_legacy,mf-bot-3,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,189869,10.308844994436887,spot_peer,VeritasAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,189869,-0.0108067810206133,relative_legacy,VeritasAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,189869,9.603336880226117,peer,VeritasAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,189869,21.603177300506808,baseline,VeritasAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,190710,-38.6245225500694,peer,Bot_Pepa,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,190710,-42.53518505032078,spot_peer,Bot_Pepa,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,190710,-44.47045464275876,baseline,Bot_Pepa,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,190710,-47.39311883324123,spot_baseline,Bot_Pepa,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,190710,-0.6878653032069818,relative_legacy,Bot_Pepa,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,190772,0.0798339200573325,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,190772,15.593038249769435,peer,Jay_Bailey_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,190772,18.58912509859584,spot_peer,Jay_Bailey_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,190772,29.710240395822325,baseline,Jay_Bailey_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,190772,37.85116232537298,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191026,0.0426391801980312,relative_legacy,manticAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191026,55.47220357750212,spot_baseline,manticAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191026,31.224271714917,spot_peer,manticAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191026,8.91132868755259,baseline,manticAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191026,4.890339627932413,peer,manticAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191046,-0.2441628334721642,relative_legacy,archipelago,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191046,-51.45731728297583,spot_baseline,archipelago,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191046,-45.44941370204797,spot_peer,archipelago,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191046,-13.869795821712115,peer,archipelago,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191046,-15.699339499316968,baseline,archipelago,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191284,-32.19280948873623,spot_baseline,000_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191284,-30.852125738502128,baseline,000_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191284,-0.5537143039370832,relative_legacy,000_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191284,-28.81852724675806,peer,000_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191284,-31.635821361580117,spot_peer,000_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191471,-0.4793273212814132,relative_legacy,HSeldon,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191471,-26.42041189541306,peer,HSeldon,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191471,-29.481753771828405,baseline,HSeldon,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191471,-43.440282414577496,spot_baseline,HSeldon,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191471,-39.700808410171,spot_peer,HSeldon,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191935,0.0262746328033181,relative_legacy,pgodzinai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191935,13.700895631298003,spot_peer,pgodzinai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191935,31.034012061215048,spot_baseline,pgodzinai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191935,11.70453711027822,peer,pgodzinai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191935,24.32655439729881,baseline,pgodzinai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191975,0.1262047254643971,relative_legacy,jkraybill_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191975,87.44691179161411,spot_baseline,jkraybill_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191975,11.670396040698492,peer,jkraybill_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191975,19.039266774829056,baseline,jkraybill_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,191975,54.151698109232846,spot_peer,jkraybill_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192049,91.07326619029126,spot_baseline,gnosis-ai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192049,0.6207959173979826,relative_legacy,gnosis-ai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192049,86.77690227552661,baseline,gnosis-ai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192049,56.75197120628894,spot_peer,gnosis-ai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192049,56.79703524523665,peer,gnosis-ai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192418,18.58912509859584,spot_peer,InstitutPelFutur,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192418,15.08603449098776,peer,InstitutPelFutur,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192418,0.078017336391918,relative_legacy,InstitutPelFutur,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192418,28.82088955686526,baseline,InstitutPelFutur,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192472,-19.451369397126665,spot_peer,bestworldbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192472,-17.31091849882284,peer,bestworldbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192472,-15.040252379803851,baseline,bestworldbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192472,-0.3912944128700848,relative_legacy,bestworldbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192472,-15.200309344505014,spot_baseline,bestworldbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192924,35.71130838937929,spot_peer,acm_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192924,61.72984828408463,spot_baseline,acm_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192924,52.94791665151279,baseline,acm_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192924,32.23260176097253,peer,acm_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,192924,0.296684367569701,relative_legacy,acm_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,193275,-3.2138618866398967,peer,histerio,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,193275,4.20163605521004,baseline,histerio,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,193275,5.380644369579351,spot_baseline,histerio,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,193275,-0.1986363564277916,relative_legacy,histerio,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,193275,-4.693821079727722,spot_peer,histerio,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,195286,18.13925180469637,peer,Unwrapped80T,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,195286,32.13377216275061,baseline,Unwrapped80T,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,195286,0.1418890274820675,relative_legacy,Unwrapped80T,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,195286,26.25546704553258,spot_peer,Unwrapped80T,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,204737,35.980705093350444,spot_peer,SynapseSeer,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,204737,25.735172886378628,baseline,SynapseSeer,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,204737,15.01886548875947,peer,SynapseSeer,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,204737,0.1362672099670007,relative_legacy,SynapseSeer,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,204737,62.10555032997394,spot_baseline,SynapseSeer,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,208405,-50.620615581679616,baseline,mf-bot-4,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,208405,-43.301093622185256,peer,mf-bot-4,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,208405,-0.7469109862262767,relative_legacy,mf-bot-4,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,208405,-45.44941370204797,spot_peer,mf-bot-4,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,208405,-51.45731728297583,spot_baseline,mf-bot-4,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,218666,-41.74121651165338,baseline,GreeneiBot2,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,218666,-39.14313441345965,spot_peer,GreeneiBot2,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,218666,-42.662547355405565,spot_baseline,GreeneiBot2,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,218666,-36.80130986797461,peer,GreeneiBot2,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,218666,-0.6587740333536294,relative_legacy,GreeneiBot2,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,219886,28.011709607696854,baseline,SaraBase,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,219886,14.088731211712448,peer,SaraBase,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,219886,0.0387907073851776,relative_legacy,SaraBase,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,219886,13.173971956643165,spot_peer,SaraBase,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,219886,30.29916156127522,spot_baseline,SaraBase,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,220077,-31.78876863850593,baseline,mmBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,220077,-0.5590082449403587,relative_legacy,mmBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,220077,-29.578690576755733,peer,mmBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,220077,-32.19280948873623,spot_baseline,mmBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,220077,-31.635821361580117,spot_peer,mmBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,221727,35.28603795203062,peer,mf-bot-5,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,221727,0.3280815959220449,relative_legacy,mf-bot-5,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,221727,57.06607348366876,baseline,mf-bot-5,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,221727,33.39266064763099,spot_peer,mf-bot-5,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,222631,-3.994281336699998,baseline,Grizeu_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,222631,-45.44941370204797,spot_peer,Grizeu_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,222631,-0.0603603841539536,relative_legacy,Grizeu_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,222631,-3.5279286698085874,peer,Grizeu_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,227188,1.4893833512464814,peer,ProfessorSP,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,227188,-0.0037250843458124,relative_legacy,ProfessorSP,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,227188,4.113019191893206,baseline,ProfessorSP,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,227188,26.303440583379377,spot_baseline,ProfessorSP,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30392,Will the 2024 return of professional investor Howard Marks beat the return of any of the politicans tracked by Quiver Quantitative?,2024-12-02 14:08:52.204992+00,227188,10.308844994436887,spot_peer,ProfessorSP,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30622 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,182315,65.96851261101769,spot_peer,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,182315,73.22719389517731,baseline,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,182315,0.1826205304866046,relative_legacy,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,182315,44.46730107308286,peer,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,182315,83.18772411916731,spot_baseline,RyansAGI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,185690,41.51758052707515,spot_peer,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,185690,30.297975065831643,baseline,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,185690,-0.0678624432620793,relative_legacy,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,185690,17.22895840743672,peer,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,185690,49.12887318974424,spot_baseline,annabot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,185699,30.1844138364548,spot_peer,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,185699,33.34237337251918,spot_baseline,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,185699,-0.273156623033319,relative_legacy,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,185699,31.68589695234997,baseline,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,185699,13.931146527468442,peer,MWG,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,187708,67.98741477466228,spot_baseline,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,187708,0.0484389464545226,relative_legacy,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,187708,43.044791456686895,baseline,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,187708,55.05617348931423,spot_peer,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,187708,26.19671994095852,peer,twsummerbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,188107,-1.149137350399842,relative_legacy,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,188107,-112.84952122266078,spot_peer,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,188107,-165.89630821649328,spot_baseline,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,188107,-64.26346844177968,peer,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,188107,-84.93201943039706,baseline,Cassie,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,189585,46.906004781931166,peer,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,189585,75.61509406584953,baseline,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,189585,61.20576873954312,spot_peer,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,189585,0.1648383841560889,relative_legacy,mf-bot-1,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,189588,-0.66733447400644,relative_legacy,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,189588,-7.400058144377692,spot_baseline,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,189588,-13.933406629013485,peer,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,189588,0.9353229608220188,spot_peer,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,189588,-7.368594936779811,baseline,mf-bot-3,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,189869,61.20576873954312,spot_peer,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,189869,37.67562636799671,peer,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,189869,62.87472506907074,baseline,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,189869,0.1162555215103524,relative_legacy,VeritasAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,190710,46.592390865969065,peer,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,190710,76.62968221750633,baseline,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,190710,0.1798625566952454,relative_legacy,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,190710,64.79820153114602,spot_peer,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,190710,81.55754288625727,spot_baseline,Bot_Pepa,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,190772,-47.39311883324123,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,190772,-0.8586016371670067,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,190772,-37.22162994568759,baseline,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,190772,-34.17439715731328,peer,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,190772,-27.77579277114257,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191026,-12.393872641056603,baseline,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191026,-8.04949688868571,peer,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191026,-77.14678612061853,spot_baseline,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191026,-49.13602302669124,spot_peer,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191026,-0.2080189966214677,relative_legacy,manticAI,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191046,11.966871724109671,peer,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191046,0.0098957863210805,relative_legacy,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191046,17.915310758711996,baseline,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191046,58.496250072115615,spot_baseline,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191046,48.24244321930679,spot_peer,archipelago,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191284,88.74294163280555,baseline,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191284,72.72556666167351,spot_peer,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191284,0.2940749069383658,relative_legacy,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191284,92.5999418556223,spot_baseline,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191284,55.50912052599996,peer,000_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191471,-173.6965594166206,spot_baseline,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191471,-90.6125588315672,peer,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191471,-118.00234486030338,baseline,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191471,-1.5933798987814771,relative_legacy,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191471,-118.44934056851078,spot_peer,HSeldon,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191935,60.15729022924447,baseline,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191935,76.55347463629771,spot_baseline,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191935,36.262330015962505,peer,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191935,61.20576873954312,spot_peer,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,191935,0.1148507012167422,relative_legacy,pgodzinai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192049,25.13114683319219,spot_peer,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192049,-0.3400489514585734,relative_legacy,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192049,25.10757731319588,baseline,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192049,9.162928591158382,peer,gnosis-ai,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192418,67.80719051126377,spot_baseline,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192418,0.0472978947085286,relative_legacy,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192418,54.92679005141237,spot_peer,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192418,30.47374307424184,peer,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192418,51.64193128471787,baseline,InstitutPelFutur,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192472,-172.13340491107525,baseline,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192472,-133.93436820252143,peer,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192472,-118.44934056851078,spot_peer,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192472,-2.307980304524785,relative_legacy,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192472,-173.6965594166206,spot_baseline,bestworldbot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192924,55.18851034717248,spot_baseline,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192924,-0.0605402527443375,relative_legacy,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192924,45.86780880978023,spot_peer,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192924,47.53224110548148,baseline,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,192924,26.039854550264167,peer,acm_bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,193275,0.0917255114918501,relative_legacy,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,193275,72.59592345091878,spot_baseline,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,193275,58.36463309897365,spot_peer,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,193275,39.97398204330179,peer,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,193275,67.49191671141675,baseline,histerio,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,195286,61.20576873954312,spot_peer,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,195286,50.749445803139714,baseline,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,195286,31.39543002164636,peer,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,195286,0.1052794656680539,relative_legacy,Unwrapped80T,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,204737,18.18806724864975,peer,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,204737,54.92679005141237,spot_peer,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,204737,28.22163435981528,baseline,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,204737,67.80719051126377,spot_baseline,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,204737,0.0384118691840934,relative_legacy,SynapseSeer,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,208405,66.63269112061647,baseline,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,208405,0.0722557597167111,relative_legacy,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,208405,54.92679005141237,spot_peer,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,208405,39.952393378247415,peer,mf-bot-4,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,218666,-7.560955530592905,baseline,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,218666,-7.704103576382802,spot_baseline,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,218666,0.717048004224251,spot_peer,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,218666,-14.226752775461192,peer,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,218666,-0.6687036978951313,relative_legacy,GreeneiBot2,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,219886,-1.2943208011152558,relative_legacy,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,219886,-45.53286151050046,spot_peer,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,219886,-72.12777332661676,spot_baseline,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,219886,-60.02352619885454,peer,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,219886,-70.20788470693336,baseline,SaraBase,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,220077,-65.54240096417603,spot_peer,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,220077,-99.0136174617542,baseline,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,220077,-100.0,spot_baseline,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,220077,-80.46980719993182,peer,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,220077,-1.578284010292314,relative_legacy,mmBot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,221727,-0.022836119331222,relative_legacy,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,221727,48.24244321930679,spot_peer,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,221727,57.06919356652553,baseline,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,221727,32.77781516658272,peer,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,222631,-4.0027421304390565,baseline,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,222631,-30.693490742693243,spot_peer,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,222631,-0.078243601416572,relative_legacy,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,222631,-2.387573527208848,peer,Grizeu_Bot,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,227188,-564.3856189774725,spot_baseline,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,227188,-62.62532845267093,peer,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,227188,-0.9659549908644158,relative_legacy,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,227188,-88.42064158198156,baseline,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30393,"Will Bitcoin be worth at least 200,000 Dogecoin on December 30, 2024?",2024-12-02 14:08:52.219365+00,227188,-398.9259685398112,spot_peer,ProfessorSP,True,yes,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,1.0,2024-12-03 15:30:00+00,30623 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,182315,73.28408654594791,baseline,RyansAGI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,182315,37.37579949488544,peer,RyansAGI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,182315,38.38073224993775,spot_peer,RyansAGI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,182315,0.3789326448941317,relative_legacy,RyansAGI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,182315,83.18772411916731,spot_baseline,RyansAGI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,185690,-0.3403047196275919,relative_legacy,annabot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,185690,-8.467032398699038,spot_baseline,annabot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,185690,-27.267178350838485,spot_peer,annabot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,185690,-5.235039254328721,baseline,annabot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,185690,-15.014312251381243,peer,annabot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,185699,84.62983367112567,baseline,MWG,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,185699,87.97057662822883,spot_baseline,MWG,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,185699,41.8064603393508,spot_peer,MWG,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,185699,43.84012573291476,peer,MWG,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,185699,0.4520749514897338,relative_legacy,MWG,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,187708,30.54413102281561,spot_peer,twsummerbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,187708,0.1774699840105232,relative_legacy,twsummerbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,187708,72.2466024471091,spot_baseline,twsummerbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,187708,22.10704231020505,peer,twsummerbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,187708,46.98640562925933,baseline,twsummerbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,188107,0.104739837317029,relative_legacy,Cassie,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,188107,69.30222465786092,spot_baseline,Cassie,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,188107,17.322448588963805,peer,Cassie,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,188107,38.38350513580628,baseline,Cassie,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,188107,28.435214287590885,spot_peer,Cassie,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,189585,33.62893721494934,spot_peer,mf-bot-1,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,189585,36.88729319070077,peer,mf-bot-1,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,189585,0.3507999015839874,relative_legacy,mf-bot-1,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,189585,75.61548114800452,baseline,mf-bot-1,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,189588,57.626135184216245,baseline,mf-bot-3,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,189588,0.1729136161375751,relative_legacy,mf-bot-3,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,189588,20.695412443035384,spot_peer,mf-bot-3,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,189588,23.7961619966748,peer,mf-bot-3,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,189869,25.833212412805963,peer,VeritasAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,189869,0.224169009309105,relative_legacy,VeritasAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,189869,27.3643929605844,spot_peer,VeritasAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,189869,55.69288752553877,baseline,VeritasAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,190710,-27.475688231575877,peer,Bot_Pepa,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,190710,-32.08990201278366,spot_peer,Bot_Pepa,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,190710,-15.200309344505014,spot_baseline,Bot_Pepa,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,190710,-0.5299940501360907,relative_legacy,Bot_Pepa,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,190710,-14.307786621600242,baseline,Bot_Pepa,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,190772,-23.29026181761863,spot_peer,Jay_Bailey_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,190772,-0.3344563088330518,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,190772,-15.246080460301766,peer,Jay_Bailey_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,190772,-2.914634565951651,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,190772,-2.2913995930292117,baseline,Jay_Bailey_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191026,10.646510313794858,baseline,manticAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191026,4.238106442000424,peer,manticAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191026,26.2614891521632,spot_peer,manticAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191026,66.2673641999862,spot_baseline,manticAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191026,0.0036986381408461,relative_legacy,manticAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191046,20.69866978146124,baseline,archipelago,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191046,27.3643929605844,spot_peer,archipelago,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191046,8.787001378015761,peer,archipelago,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191046,0.0196359377909136,relative_legacy,archipelago,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191284,-44.26081569727663,spot_peer,000_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191284,-39.88000741553618,peer,000_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191284,-32.19280948873623,spot_baseline,000_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191284,-0.6999193850984178,relative_legacy,000_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191284,-30.851654089167447,baseline,000_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191471,-0.2568890218124359,relative_legacy,HSeldon,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191471,5.658352836636751,spot_baseline,HSeldon,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191471,-17.149841702302535,spot_peer,HSeldon,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191471,-9.295781439542722,peer,HSeldon,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191471,3.847661659503475,baseline,HSeldon,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191935,18.903382439001717,spot_baseline,pgodzinai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191935,-3.276479966063009,peer,pgodzinai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191935,-7.6630616128131805,spot_peer,pgodzinai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191935,-0.1683871922397835,relative_legacy,pgodzinai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191935,14.352170742448388,baseline,pgodzinai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191975,28.52237485129823,peer,jkraybill_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191975,0.2650364731017853,relative_legacy,jkraybill_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191975,42.8124174456619,spot_peer,jkraybill_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191975,55.309762919703495,baseline,jkraybill_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,191975,89.37505017205658,spot_baseline,jkraybill_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192049,0.8091243388018111,peer,gnosis-ai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192049,-2.362754526099636,spot_peer,gnosis-ai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192049,-0.1393264758744539,relative_legacy,gnosis-ai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192049,25.1514704788944,baseline,gnosis-ai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192418,-132.3138196484869,baseline,InstitutPelFutur,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192418,-108.4988541361559,peer,InstitutPelFutur,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192418,-145.61317184182167,spot_peer,InstitutPelFutur,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192418,-1.633958466996562,relative_legacy,InstitutPelFutur,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192472,-88.2964587085712,baseline,bestworldbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192472,-84.8752164686027,spot_peer,bestworldbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192472,-1.2898970871798507,relative_legacy,bestworldbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192472,-82.95981818095284,peer,bestworldbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192472,-88.8968687611256,spot_baseline,bestworldbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192924,-0.3871083228361081,relative_legacy,acm_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192924,-4.990490582631392,spot_baseline,acm_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192924,-24.777098021002256,spot_peer,acm_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192924,-18.358626550163898,peer,acm_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,192924,-4.31194450728822,baseline,acm_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,193275,23.01148390951506,spot_peer,histerio,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,193275,25.002497784149817,peer,histerio,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,193275,61.72984828408463,spot_baseline,histerio,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,193275,58.069461823005,baseline,histerio,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,193275,0.1939627185252888,relative_legacy,histerio,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,195286,-5.302025372109187,peer,Unwrapped80T,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,195286,9.162700688504634,baseline,Unwrapped80T,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,195286,13.750352374993504,spot_baseline,Unwrapped80T,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,195286,-0.2029670802363637,relative_legacy,Unwrapped80T,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,195286,-11.353930148361366,spot_peer,Unwrapped80T,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,204737,9.538192403990548,peer,SynapseSeer,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,204737,24.468118560382827,baseline,SynapseSeer,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,204737,-0.0087864286353677,relative_legacy,SynapseSeer,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,204737,20.695412443035384,spot_peer,SynapseSeer,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,208405,0.431493759632809,relative_legacy,mf-bot-4,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,208405,39.53530664507736,spot_peer,mf-bot-4,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,208405,42.55341776289095,peer,mf-bot-4,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,208405,83.345708397741,baseline,mf-bot-4,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,218666,-38.21161437797225,baseline,GreeneiBot2,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,218666,-49.01868934242199,spot_peer,GreeneiBot2,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,218666,-0.7847670297430609,relative_legacy,GreeneiBot2,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,218666,-38.83554566263384,spot_baseline,GreeneiBot2,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,218666,-45.95473686830639,peer,GreeneiBot2,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,218945,-65.2668660801104,baseline,SeidrBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,218945,-1.0074005984841032,relative_legacy,SeidrBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,218945,-62.87477392194938,peer,SeidrBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,218945,-73.98796318396063,spot_peer,SeidrBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,218945,-73.69655941662059,spot_baseline,SeidrBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,219886,92.38633909000058,baseline,SaraBase,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,219886,98.5500430304885,spot_baseline,SaraBase,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,219886,49.38402522485759,spot_peer,SaraBase,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,219886,0.5379537065110741,relative_legacy,SaraBase,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,219886,49.935738525800666,peer,SaraBase,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,220077,49.13554268083604,peer,mmBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,220077,45.12225284300584,spot_peer,mmBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,220077,0.5128127121294108,relative_legacy,mmBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,220077,92.03723469064263,baseline,mmBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,221727,25.65527807044017,baseline,mf-bot-5,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,221727,-0.1411998033512863,relative_legacy,mf-bot-5,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,221727,-2.362754526099636,spot_peer,mf-bot-5,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,221727,0.7255079814549066,peer,mf-bot-5,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,221727,26.303440583379377,spot_baseline,mf-bot-5,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,222631,0.4605591052602611,peer,Grizeu_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,222631,5.908325266832474,spot_peer,Grizeu_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,222631,-0.0186136438724385,relative_legacy,Grizeu_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,222631,2.950531100834361,baseline,Grizeu_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,227188,14.77644112584626,baseline,ProfessorSP,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,227188,45.12225284300584,spot_peer,ProfessorSP,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,227188,92.5999418556223,spot_baseline,ProfessorSP,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,227188,0.0471964724701828,relative_legacy,ProfessorSP,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30394,Will the US Federal Reserve's balance sheet have less than $6.8 trillion in assets at the end of December 2024?,2024-12-02 14:08:52.233577+00,227188,7.267037812388539,peer,ProfessorSP,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30624 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,182315,0.9617349759270132,relative_legacy,RyansAGI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,182315,90.49379712594894,spot_peer,RyansAGI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,182315,-38.30463454146189,baseline,RyansAGI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,182315,78.54353957308135,peer,RyansAGI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,182315,-43.440282414577496,spot_baseline,RyansAGI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,185690,-91.93620222252184,baseline,annabot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,185690,15.20470228392612,spot_peer,annabot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,185690,9.047418143351113,peer,annabot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,185690,0.1500349743380235,relative_legacy,annabot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,185690,-148.4388460507958,spot_baseline,annabot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,185699,20.87921413003894,baseline,MWG,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,185699,1.689521052905182,relative_legacy,MWG,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,185699,135.31335380550573,peer,MWG,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,185699,136.99639346065877,spot_peer,MWG,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,185699,21.412480535284764,spot_baseline,MWG,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,187708,-89.90764965151641,peer,twsummerbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,187708,-236.23760217911448,baseline,twsummerbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,187708,-357.34668618833257,spot_baseline,twsummerbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,187708,-134.5924153590408,spot_peer,twsummerbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,187708,-1.2204886293281618,relative_legacy,twsummerbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,188107,-146.3823598417272,baseline,Cassie,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,188107,-258.4962500721156,spot_baseline,Cassie,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,188107,-36.63133957847773,peer,Cassie,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,188107,-63.71182802344413,spot_peer,Cassie,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,188107,-0.4866070070838494,relative_legacy,Cassie,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,189585,-1.7614393854199706,relative_legacy,mf-bot-1,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,189585,-116.79798996114864,peer,mf-bot-1,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,189585,-332.1928094887361,spot_baseline,mf-bot-1,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,189585,-116.55585806820174,spot_peer,mf-bot-1,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,189585,-328.1238954406012,baseline,mf-bot-1,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,189869,127.25956693060532,peer,VeritasAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,189869,1.683069820010993,relative_legacy,VeritasAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,189869,39.87085939359282,baseline,VeritasAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,189869,156.4500725816525,spot_peer,VeritasAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,190710,-100.0,spot_baseline,Bot_Pepa,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,190710,-94.24981963413734,baseline,Bot_Pepa,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,190710,0.4646278922886211,relative_legacy,Bot_Pepa,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,190710,49.937719080153386,spot_peer,Bot_Pepa,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,190710,46.04525037614836,peer,Bot_Pepa,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,190772,0.5959761916235721,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,190772,-83.65012677171204,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,190772,46.69416967016075,peer,Jay_Bailey_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,190772,-65.80111997139731,baseline,Jay_Bailey_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,190772,61.66137618087786,spot_peer,Jay_Bailey_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191026,0.0295976910992469,relative_legacy,manticAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191026,1.5462828562674342,peer,manticAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191026,-154.9000437519405,spot_baseline,manticAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191026,-24.88736226722861,baseline,manticAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191026,10.571708177454903,spot_peer,manticAI,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191046,-0.0006021515462249,relative_legacy,archipelago,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191046,-53.10749877182968,baseline,archipelago,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191046,-1.3689428763165412,peer,archipelago,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191046,-173.6965594166206,spot_baseline,archipelago,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191046,-2.906310964604256,spot_peer,archipelago,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191284,68.7985697829763,spot_peer,000_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191284,-73.69655941662059,spot_baseline,000_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191284,0.718991067328623,relative_legacy,000_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191284,-70.62573546406863,baseline,000_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191284,65.50210732050517,peer,000_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191471,-18.439989438148206,peer,HSeldon,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191471,-0.236157798355701,relative_legacy,HSeldon,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191471,-25.9901266177984,spot_peer,HSeldon,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191471,-205.8893689053569,spot_baseline,HSeldon,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191471,-140.1575623760951,baseline,HSeldon,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191935,13.750352374993504,spot_baseline,pgodzinai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191935,1.3508930585169483,relative_legacy,pgodzinai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191935,131.50227360059512,spot_peer,pgodzinai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191935,101.30634372279911,peer,pgodzinai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191935,9.6209744265544,baseline,pgodzinai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191975,-133.6427664582477,spot_baseline,jkraybill_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191975,-43.928682326490005,baseline,jkraybill_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191975,0.1252580322407871,relative_legacy,jkraybill_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191975,7.970904159013709,peer,jkraybill_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,191975,25.814213511079853,spot_peer,jkraybill_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192049,25.194044009123985,baseline,gnosis-ai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192049,1.675873199385334,relative_legacy,gnosis-ai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192049,140.50345053055682,spot_peer,gnosis-ai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192049,135.12237456872896,peer,gnosis-ai,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192418,-0.0901117517450965,relative_legacy,InstitutPelFutur,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192418,-4.084878305523077,peer,InstitutPelFutur,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192418,-2.906310964604256,spot_peer,InstitutPelFutur,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192418,-132.3440715195298,baseline,InstitutPelFutur,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192472,-1.289074125776708,relative_legacy,bestworldbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192472,-283.65012677171217,spot_baseline,bestworldbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192472,-81.74838531428331,spot_peer,bestworldbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192472,-82.53160361453473,peer,bestworldbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192472,-282.30593984196884,baseline,bestworldbot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192924,-4.694563356982064,peer,acm_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192924,-0.1868346948862599,relative_legacy,acm_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192924,-2.906310964604256,spot_peer,acm_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192924,-153.54422360646478,baseline,acm_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,192924,-173.6965594166206,spot_baseline,acm_bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,193275,58.66266546985176,spot_peer,histerio,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,193275,55.03088536307137,peer,histerio,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,193275,0.5808613762246551,relative_legacy,histerio,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,193275,-83.17760671939705,baseline,histerio,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,193275,-87.83214434117475,spot_baseline,histerio,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,195286,-332.1928094887361,spot_baseline,Unwrapped80T,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,195286,-1.0625360121598562,relative_legacy,Unwrapped80T,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,195286,-78.5724575744161,peer,Unwrapped80T,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,195286,-221.3559556224136,baseline,Unwrapped80T,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,195286,-116.55585806820174,spot_peer,Unwrapped80T,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,204737,-21.619138704644165,baseline,SynapseSeer,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,204737,0.5071729606033255,relative_legacy,SynapseSeer,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,204737,84.74519183407196,spot_peer,SynapseSeer,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,204737,35.05267551942002,peer,SynapseSeer,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,204737,-51.45731728297583,spot_baseline,SynapseSeer,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,208405,-116.55585806820174,spot_peer,mf-bot-4,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,208405,-332.1928094887361,spot_baseline,mf-bot-4,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,208405,-1.7584683361615845,relative_legacy,mf-bot-4,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,208405,-326.46675258722826,baseline,mf-bot-4,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,208405,-116.41717804476272,peer,mf-bot-4,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,218666,-70.44062125947458,peer,GreeneiBot2,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,218666,-268.0382065799839,spot_baseline,GreeneiBot2,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,218666,-70.55387655839716,spot_peer,GreeneiBot2,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,218666,-264.3614168439071,baseline,GreeneiBot2,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,218666,-1.127980731466648,relative_legacy,GreeneiBot2,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,218945,-71.88871154142197,spot_peer,SeidrBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,218945,-269.89977439671844,spot_baseline,SeidrBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,218945,-66.29290405040207,peer,SeidrBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,218945,-1.0373259802554955,relative_legacy,SeidrBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,218945,-238.6796514720048,baseline,SeidrBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,219886,-63.92722452733994,spot_peer,SaraBase,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,219886,-258.7966431578444,spot_baseline,SaraBase,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,219886,-1.054857109656375,relative_legacy,SaraBase,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,219886,-248.0809172496928,baseline,SaraBase,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,219886,-63.55070595950419,peer,SaraBase,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,220077,28.4190803256156,peer,mmBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,220077,-132.19280948873626,spot_baseline,mmBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,220077,26.853903426959256,spot_peer,mmBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,220077,-131.63362318527368,baseline,mmBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,220077,0.218321650426339,relative_legacy,mmBot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,221727,-116.02717241434092,peer,mf-bot-5,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,221727,-332.1928094887361,spot_baseline,mf-bot-5,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,221727,-324.07579692055907,baseline,mf-bot-5,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,221727,-1.7584683361615845,relative_legacy,mf-bot-5,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,221727,-116.55585806820174,spot_peer,mf-bot-5,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,222631,-0.0251511384736246,relative_legacy,Grizeu_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,222631,-16.085430597157565,baseline,Grizeu_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,222631,-2.0305194976536565,peer,Grizeu_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,222631,-25.9901266177984,spot_peer,Grizeu_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,222631,-205.8893689053569,spot_baseline,Grizeu_Bot,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,227188,-44.8509773206213,spot_peer,ProfessorSP,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,227188,-0.062212124481256,relative_legacy,ProfessorSP,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,227188,-33.572117277127674,baseline,ProfessorSP,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,227188,-5.065436751072865,peer,ProfessorSP,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30395,Will the US Federal Reserve's balance sheet have under $550 billion in reverse repurchase agreements at the end of December 2024?,2024-12-02 14:08:52.556481+00,227188,-232.1928094887363,spot_baseline,ProfessorSP,True,no,2024-12-03 15:30:00+00,2024-12-03 15:30:00+00,0.5,2024-12-03 15:30:00+00,30625 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,182315,0.3202125648445886,relative_legacy,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,182315,33.16059198495255,baseline,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,182315,28.720785526295728,spot_peer,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,182315,20.601089346207367,peer,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,182315,37.85116232537298,spot_baseline,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,187708,-53.84414707869476,peer,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,187708,-87.80890252011457,spot_peer,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,187708,-0.6904322445726877,relative_legacy,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,187708,-75.38677950429275,baseline,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,187708,-124.46850959549022,spot_baseline,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,188107,-2.8606162154983,spot_peer,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,188107,-2.586125745674832,baseline,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,188107,-0.7541100044278556,peer,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,188107,-6.140054466414342,spot_baseline,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,188107,0.0,relative_legacy,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,189585,14.93371803842516,peer,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,189585,25.887835545452837,baseline,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,189585,0.2253612110650459,relative_legacy,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,189585,20.4306479458223,spot_peer,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,189588,0.3378523975297728,relative_legacy,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,189588,23.088855457505694,peer,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,189588,28.720785526295728,spot_peer,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,189588,37.16637923570805,baseline,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,189869,28.720785526295728,spot_peer,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,189869,19.33376489170591,peer,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,189869,29.47892513147034,baseline,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,189869,0.3129634249054361,relative_legacy,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,190710,39.350197042312686,baseline,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,190710,0.3671899828675745,relative_legacy,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,190710,42.22330006830476,spot_baseline,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,190710,24.65988135061784,peer,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,190710,31.85955386688336,spot_peer,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,190772,-0.1445291319629625,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,190772,-21.75914350726266,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,190772,-13.852215976629214,peer,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,190772,-16.699538878986935,baseline,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,190772,-14.0735983017763,spot_peer,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191026,0.4657192787015639,peer,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191026,40.58353379686097,spot_peer,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191026,0.6239881623191647,baseline,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191026,0.006944488016415,relative_legacy,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191026,54.3753411817606,spot_baseline,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191046,-51.45731728297583,spot_baseline,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191046,-14.147046258492338,baseline,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191046,-0.1245897468475788,relative_legacy,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191046,-35.393989630063146,spot_peer,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191046,-9.360361558300331,peer,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191284,43.98520918635768,peer,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191284,64.98437720661784,baseline,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191284,0.6467760907687955,relative_legacy,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191284,56.50526985217322,spot_peer,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191284,76.55347463629771,spot_baseline,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191471,-32.19280948873623,spot_baseline,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191471,-16.162534215768602,peer,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191471,-21.563952536809012,spot_peer,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191471,-0.1708466397316728,relative_legacy,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191471,-21.748572686002184,baseline,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191935,50.22629116404247,spot_peer,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191935,43.04918959329859,peer,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191935,0.6159729819141996,relative_legacy,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191935,64.88461440668685,baseline,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191935,67.80719051126377,spot_baseline,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191975,-0.9850010048057566,relative_legacy,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191975,-72.17164634102922,peer,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191975,-160.42049413026368,spot_peer,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191975,-225.6126036491616,spot_baseline,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,191975,-101.97570424380196,baseline,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192049,0.5826772975279602,relative_legacy,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192049,50.22629116404247,spot_peer,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192049,39.61675041358935,peer,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192049,59.40873779381952,baseline,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192418,-51.145220870739415,baseline,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192418,-35.393989630063146,spot_peer,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192418,-0.540242114403669,relative_legacy,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192418,-41.231246695465096,peer,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192472,-72.19128468749805,baseline,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192472,-51.35959575502916,spot_peer,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192472,-0.7551103621663208,relative_legacy,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192472,-73.69655941662059,spot_baseline,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192472,-56.88021008928405,peer,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192924,0.0722892929990912,relative_legacy,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192924,2.500384582810656,peer,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192924,8.16693830132673,spot_peer,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192924,9.22074380970886,spot_baseline,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,192924,7.98464393002642,baseline,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,193275,0.0673730106223091,relative_legacy,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,193275,6.994419040219664,spot_peer,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,193275,6.122148809105261,baseline,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,193275,7.587486697512765,spot_baseline,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,193275,1.7629163970300652,peer,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,195286,-31.114894998511485,baseline,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,195286,-21.940759953619494,peer,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,195286,-35.393989630063146,spot_peer,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,195286,-0.2475764969102198,relative_legacy,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,195286,-51.45731728297583,spot_baseline,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,204737,19.39485876235473,peer,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,204737,0.2799314056810859,relative_legacy,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,204737,64.15460290875237,spot_baseline,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,204737,47.60408962281244,spot_peer,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,204737,25.54801295539616,baseline,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,208405,25.559943735076523,baseline,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,208405,20.4306479458223,spot_peer,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,208405,0.219042777559547,relative_legacy,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,208405,14.45649213969746,peer,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,215725,-0.369849729325749,relative_legacy,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,215725,-30.722409393620516,peer,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,215725,-43.456114980210224,baseline,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,215725,-51.35959575502916,spot_peer,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,215725,-73.69655941662059,spot_baseline,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,216863,20.4306479458223,spot_peer,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,216863,13.361544504195711,peer,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,216863,23.27808266226436,baseline,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,216863,26.303440583379377,spot_baseline,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,216863,0.2190454498824875,relative_legacy,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,218666,23.38880601742773,spot_baseline,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,218666,12.149661316975148,peer,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,218666,18.33822468793636,spot_peer,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,218666,0.1909340253198017,relative_legacy,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,218666,22.463236636753688,baseline,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,219886,-29.94053491906131,baseline,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,219886,-0.3249918819729727,relative_legacy,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,219886,-32.19280948873623,spot_baseline,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,219886,-25.66838323267013,peer,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,219886,-21.563952536809012,spot_peer,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,220077,0.0981577671250021,relative_legacy,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,220077,11.418755329039229,spot_peer,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,220077,13.228768057378485,baseline,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,220077,13.750352374993504,spot_baseline,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,220077,5.42045340657715,peer,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,221727,36.39625407078834,spot_peer,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,221727,46.997144591572685,baseline,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,221727,0.4342308237502372,relative_legacy,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,221727,30.03878474014488,peer,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,221727,48.54268271702416,spot_baseline,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,227188,13.750352374993504,spot_baseline,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,227188,11.418755329039229,spot_peer,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,227188,0.2433052584001624,relative_legacy,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,227188,19.492408714850225,baseline,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30435,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-03 14:30:02.545631+00,227188,13.768751133314233,peer,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30669 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,182315,0.3477684307973523,relative_legacy,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,182315,-16.178799054014302,baseline,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,182315,11.57761628436119,peer,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,182315,15.465701257791226,spot_peer,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,182315,-18.44245711374277,spot_baseline,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,187708,1.106590408589442,relative_legacy,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,187708,86.02054229316498,spot_peer,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,187708,79.57669477823923,spot_baseline,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,187708,63.47582225577752,baseline,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,187708,67.0073704283602,peer,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,188107,-80.27928462950638,spot_peer,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,188107,-65.74467359623306,baseline,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,188107,-0.2737777998315086,relative_legacy,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,188107,-151.45731728297568,spot_baseline,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,188107,-34.36347418495998,peer,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,189585,-31.71655436601256,baseline,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,189585,0.179633403086158,relative_legacy,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,189585,3.882506677276023,peer,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,189585,5.568105662726739,spot_peer,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,189869,55.98622499390337,spot_peer,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,189869,0.7628670864516427,relative_legacy,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,189869,29.47995914809049,baseline,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,189869,41.96448448978491,peer,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,190710,-100.0,spot_baseline,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,190710,-0.4430344741035884,relative_legacy,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,190710,-43.239963528176574,spot_peer,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,190710,-43.26151274205953,peer,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,190710,-93.36097788314024,baseline,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,190772,-49.46989906591082,baseline,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,190772,-15.391981336214592,peer,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,190772,-0.0239960905443913,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,190772,-64.38561897747249,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,190772,-17.604493896825836,spot_peer,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191026,50.75025037523504,spot_baseline,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191026,0.7494679286726873,peer,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191026,0.5827341609519169,baseline,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191026,65.2710748349042,spot_peer,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191026,0.0132203494025439,relative_legacy,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191046,-0.2068126893582614,relative_legacy,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191046,-173.6965594166206,spot_baseline,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191046,-96.28723984233712,spot_peer,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191046,-47.780169476793496,baseline,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191046,-25.86142146392663,peer,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191284,-84.88638296999314,baseline,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191284,-43.239963528176574,spot_peer,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191284,-38.998527869173046,peer,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191284,-100.0,spot_baseline,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191284,-0.3471667920216847,relative_legacy,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191471,-39.31144937716134,peer,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191471,-0.3471832484779844,relative_legacy,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191471,-80.08910712813467,baseline,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191471,-56.51496749266464,spot_peer,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191471,-118.44245711374276,spot_baseline,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191935,44.36066514756145,spot_baseline,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191935,57.021309132504406,peer,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191935,42.80108884970581,baseline,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191935,0.908172208767989,relative_legacy,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,191935,60.67180865764443,spot_peer,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192049,83.844408217197,spot_peer,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192049,1.2092559351262593,relative_legacy,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192049,77.55675301637423,peer,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192049,72.17438723937977,baseline,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192418,-118.44245711374276,spot_baseline,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192418,-58.58192877694569,peer,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192418,-56.51496749266464,spot_peer,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192418,-0.6695755494836937,relative_legacy,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192418,-117.7686092145088,baseline,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192472,-45.17700104203677,peer,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192472,-100.0,spot_baseline,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192472,-98.31802427189218,baseline,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192472,-0.4875252015585448,relative_legacy,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192472,-43.239963528176574,spot_peer,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192924,-27.94135688436932,baseline,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192924,-32.19280948873623,spot_baseline,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192924,0.2284239221641574,relative_legacy,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192924,2.795528846266332,peer,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,192924,5.568105662726739,spot_peer,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,193275,0.6705173994080936,relative_legacy,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,193275,25.09615735332188,spot_baseline,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,193275,16.926703948040846,baseline,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,193275,34.74643932907579,peer,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,193275,46.805087115867074,spot_peer,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,195286,-26.68428646229451,peer,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,195286,-60.58047920493064,baseline,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,195286,-43.239963528176574,spot_peer,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,195286,-0.1668529935965991,relative_legacy,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,195286,-100.0,spot_baseline,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,204737,74.91961743019866,spot_peer,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,204737,64.15460290875237,spot_baseline,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,204737,25.65478480993981,baseline,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,204737,0.6078975893308324,relative_legacy,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,204737,30.525117792975923,peer,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,208405,74.48209457866169,baseline,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,208405,83.844408217197,spot_peer,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,208405,1.2303557429208096,relative_legacy,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,208405,80.6490310129814,peer,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,215725,0.2439262158746393,relative_legacy,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,215725,-18.99531603959616,baseline,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,215725,-32.19280948873623,spot_baseline,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,215725,5.568105662726739,spot_peer,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,215725,2.987282663814029,peer,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,216863,-100.0,spot_baseline,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,216863,-43.239963528176574,spot_peer,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,216863,-40.71494679558993,peer,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,216863,-88.45238723274734,baseline,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,216863,-0.372628467486496,relative_legacy,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,218666,49.301080880350426,peer,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,218666,0.8026168679500629,relative_legacy,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,218666,32.189015732131544,baseline,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,218666,33.34237337251918,spot_baseline,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,218666,52.74076855309252,spot_peer,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,219886,45.39324294959364,baseline,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,219886,48.83710407584777,spot_baseline,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,219886,63.893979334430654,spot_peer,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,219886,57.65039146609338,peer,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,219886,0.9458838030358344,relative_legacy,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,220077,-44.7870698717416,peer,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,220077,-100.0,spot_baseline,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,220077,-0.4846819413738654,relative_legacy,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,220077,-43.239963528176574,spot_peer,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,220077,-96.8866844304182,baseline,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,221727,-173.6965594166206,spot_baseline,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,221727,-96.28723984233712,spot_peer,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,221727,-1.1981667859839114,relative_legacy,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,221727,-168.16900344363583,baseline,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,221727,-96.88247432749624,peer,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,227188,-37.03102556358433,baseline,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,227188,-100.0,spot_baseline,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,227188,-8.398305699291418,peer,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,227188,0.0792394446437608,relative_legacy,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30437,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.611327+00,227188,-43.239963528176574,spot_peer,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30671 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,182315,-63.86948861244775,peer,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,182315,-105.88936890535685,spot_baseline,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,182315,-72.26729291832345,spot_peer,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,182315,-92.9625731557069,baseline,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,182315,-0.998093480182107,relative_legacy,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,187708,70.13272574129405,spot_baseline,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,187708,56.80059056220511,baseline,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,187708,43.48879101423929,peer,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,187708,54.0993977958507,spot_peer,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,187708,0.4773819532290844,relative_legacy,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,188107,4.14274871331997,baseline,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,188107,-0.0007732032606546,relative_legacy,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,188107,4.816865064853591,peer,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,188107,10.435289904231508,spot_peer,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,188107,9.310940439148176,spot_baseline,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,189585,22.71620943806815,peer,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,189585,25.96612299145339,baseline,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,189585,0.1783210460712028,relative_legacy,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,189585,22.634247168642624,spot_peer,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,189588,8.804210075388498,spot_peer,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,189588,6.912580978199631,baseline,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,189588,8.692748616679282,peer,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,189588,-0.0129864040467913,relative_legacy,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,189588,7.0389327891398015,spot_baseline,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,189869,29.48048338627732,baseline,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,189869,23.571489216478557,peer,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,189869,30.924384749116037,spot_peer,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,189869,0.2025425309032263,relative_legacy,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,190710,28.688114778816157,spot_baseline,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,190710,22.92641603758338,peer,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,190710,26.813300107557644,baseline,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,190710,0.1918651314750901,relative_legacy,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,190710,24.346210585018003,spot_peer,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,190772,8.434654057330484,peer,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,190772,11.103131238874395,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,190772,11.721908046939198,spot_peer,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,190772,8.536729156520844,baseline,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,190772,-0.0051071695466339,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191026,30.99290102515684,spot_peer,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191026,0.4359845442962304,baseline,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191026,37.94660186215226,spot_baseline,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191026,0.0032900721496703,relative_legacy,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191026,0.3560905368801521,peer,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191046,-8.860556703986965,peer,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191046,-51.45731728297583,spot_baseline,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191046,-33.19039040724283,spot_peer,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191046,-0.16737903438854,relative_legacy,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191046,-14.173314164170156,baseline,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191284,-32.19280948873623,spot_baseline,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191284,-0.348913092586538,relative_legacy,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191284,-19.36035331398869,spot_peer,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191284,-16.711537939609148,peer,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191284,-27.327130571924886,baseline,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191471,-19.096729517014897,peer,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191471,-27.434941537637425,spot_peer,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191471,-43.440282414577496,spot_baseline,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191471,-0.3720005802928298,relative_legacy,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191471,-29.4140980010589,baseline,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191935,13.622354551859551,spot_peer,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191935,13.267016026732584,baseline,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191935,0.0527289721524374,relative_legacy,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191935,13.203156591778098,peer,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191935,13.750352374993504,spot_baseline,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191975,0.4079573010884723,relative_legacy,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191975,49.93975700314968,baseline,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191975,38.50740820127818,peer,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191975,48.15693546205851,spot_peer,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,191975,61.85519104096024,spot_baseline,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192049,-31.754454250532703,peer,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192049,-48.60836607537365,baseline,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192049,-33.19039040724283,spot_peer,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192049,-51.45731728297583,spot_baseline,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192049,-0.5632452847692799,relative_legacy,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192418,-0.5891393421560407,relative_legacy,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192418,-51.173147529330585,baseline,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192418,-33.19039040724283,spot_peer,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192418,-33.42176564459462,peer,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192472,-32.19280948873623,spot_baseline,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192472,-19.46434967069206,peer,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192472,-0.3985241280003936,relative_legacy,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192472,-19.36035331398869,spot_peer,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192472,-31.7159072921561,baseline,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192924,-33.42504256674845,baseline,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192924,-38.458370273713,spot_baseline,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192924,-23.85841467074849,spot_peer,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192924,-0.402098819584767,relative_legacy,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,192924,-20.887058044765965,peer,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,193275,17.88739581697954,spot_baseline,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,193275,16.59234812087142,spot_peer,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,193275,10.156854370751375,peer,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,193275,0.0255478996982774,relative_legacy,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,193275,9.796154084969118,baseline,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,195286,31.390344720667382,peer,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,195286,41.07701029263247,baseline,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,195286,52.4298903868628,spot_peer,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,195286,0.3408297394555615,relative_legacy,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,204737,-19.501234459611588,peer,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,204737,-29.61057931658282,baseline,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,204737,-0.3335162696613153,relative_legacy,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,204737,-73.69655941662059,spot_baseline,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,204737,-49.15599653220884,spot_peer,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,208405,38.06901474275256,peer,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,208405,38.59985329360865,spot_peer,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,208405,47.38030954524228,baseline,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,208405,0.3920701682848572,relative_legacy,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,215725,58.70886907499355,spot_peer,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,215725,0.3838422438104301,relative_legacy,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,215725,45.20909825451807,baseline,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,215725,34.33246515522384,peer,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,215725,76.55347463629771,spot_baseline,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,216863,-0.7214858169588785,relative_legacy,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,216863,-49.15599653220884,spot_peer,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,216863,-43.77799320314477,peer,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,216863,-73.69655941662059,spot_baseline,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,216863,-65.20714709886367,baseline,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,218666,0.0064110281166513,relative_legacy,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,218666,8.949815083910265,spot_baseline,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,218666,8.666620963990278,baseline,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,218666,9.871337924992083,peer,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,218666,10.176037131640634,spot_peer,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,219886,28.76690405908384,spot_peer,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,219886,0.2439117929390326,relative_legacy,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,219886,31.65901054970858,baseline,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,219886,34.84590620864717,spot_baseline,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,219886,26.336191150377832,peer,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,220077,13.362901868678229,baseline,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,220077,13.622354551859551,spot_peer,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,220077,13.750352374993504,spot_baseline,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,220077,13.290668847097606,peer,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,220077,0.0529450907224382,relative_legacy,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,221727,-33.19039040724283,spot_peer,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,221727,-32.69869626949988,peer,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,221727,-0.5790158417429898,relative_legacy,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,221727,-49.87106350677043,baseline,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,227188,-0.6623293718506691,relative_legacy,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,227188,-58.59673642230922,baseline,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,227188,-40.1168413711317,peer,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,227188,-81.27918553510654,spot_peer,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30438,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.634839+00,227188,-118.44245711374276,spot_baseline,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30672 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,182315,31.738224477661237,peer,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,182315,38.372582233719086,spot_peer,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,182315,-0.0413122680263866,relative_legacy,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,182315,-18.442457113742744,spot_baseline,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,182315,-16.202601297704657,baseline,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,187708,94.69871695393928,peer,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,187708,75.29549727680954,baseline,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,187708,0.8343650348484236,relative_legacy,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,187708,91.37989649506964,spot_baseline,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,187708,117.1205699231042,spot_peer,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,188107,-44.49322561846682,spot_peer,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,188107,-62.5276203717424,baseline,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,188107,-22.242802043401788,peer,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,188107,-134.00754415976218,spot_baseline,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,188107,-0.5762923086452315,relative_legacy,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,189585,-43.191972286722645,spot_peer,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,189585,-1.076715507691295,relative_legacy,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,189585,-130.4417095848429,baseline,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,189585,-44.25404260352101,peer,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,189585,-132.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,189588,0.0,spot_baseline,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,189588,0.0,baseline,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,189588,0.2221937577703237,relative_legacy,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,189588,51.596724114052,spot_peer,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,189588,50.37258920829875,peer,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,189869,-15.200309344504996,spot_baseline,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,189869,-0.0690147358549146,relative_legacy,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,189869,-11.839019997798,baseline,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,189869,29.3123903575751,peer,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,189869,40.69736042531135,spot_peer,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,190710,-48.4981751544003,spot_peer,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,190710,-130.6734713873905,baseline,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,190710,-47.632663281186296,peer,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,190710,-139.59286763311394,spot_baseline,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,190710,-1.1300794399082383,relative_legacy,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,190772,0.1905648145666396,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,190772,14.543382390458593,baseline,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,190772,18.903382439001685,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,190772,47.8287513764198,peer,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,190772,65.15137194919724,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191026,-45.17097573090065,spot_peer,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191026,-0.0040183664110255,relative_legacy,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191026,-0.5193113388025757,peer,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191026,-134.9527379950601,spot_baseline,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191026,-1.5514937614098454,baseline,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191046,-0.4210589336128809,relative_legacy,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191046,-47.819284725322646,baseline,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191046,-20.73167752551615,peer,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191046,-173.6965594166206,spot_baseline,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191046,-72.95218667828621,spot_peer,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191284,-186.60173378188372,spot_peer,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191284,-332.1928094887362,spot_baseline,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191284,-2.7200904697125803,relative_legacy,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191284,-281.9828767619624,baseline,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191284,-161.84300375708705,peer,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191471,9.31923695315527,baseline,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191471,0.1214285709037896,relative_legacy,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191471,39.39393841290448,peer,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191471,13.750352374993504,spot_baseline,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191471,61.45639788691321,spot_peer,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191935,-28.73384031687865,spot_peer,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191935,-29.501721147479337,peer,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191935,-108.09218291448376,baseline,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191935,-0.8755154672371145,relative_legacy,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191935,-112.02942337177116,spot_baseline,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191975,91.32373774022656,peer,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191975,67.50228039484386,baseline,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191975,0.7846284344554406,relative_legacy,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191975,78.24085649273731,spot_baseline,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,191975,107.69923695805494,spot_peer,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192049,70.4575748168749,spot_peer,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192049,0.4358711564479432,relative_legacy,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192049,24.89324989400883,baseline,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192049,65.77802762651436,peer,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192418,-0.7591400295165017,relative_legacy,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192418,-20.10815663352855,spot_peer,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192418,-21.07628850280934,peer,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192418,-99.46282170133458,baseline,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192472,-173.6965594166206,spot_baseline,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192472,-74.15783854224271,peer,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192472,-1.4863460598135407,relative_legacy,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192472,-171.39862119674513,baseline,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192472,-72.95218667828621,spot_peer,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192924,14.904850917346817,peer,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192924,-0.273654281562612,relative_legacy,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192924,19.605732696711847,spot_peer,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192924,-44.61480318188743,spot_baseline,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,192924,-38.82731152281296,baseline,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,193275,-1.2539666737593824,relative_legacy,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,193275,-136.6596866817917,baseline,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,193275,-55.893542902193225,peer,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,193275,-163.486740654747,spot_baseline,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,193275,-65.63124831054061,spot_peer,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,195286,-186.60173378188372,spot_peer,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,195286,-332.1928094887362,spot_baseline,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,195286,-1.978230677779428,relative_legacy,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,195286,-115.43621695509516,peer,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,195286,-201.23551593179164,baseline,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,204737,10.623760832922557,baseline,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,204737,26.303440583379377,spot_baseline,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,204737,27.2735445152728,peer,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,204737,0.145690100486707,relative_legacy,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,204737,70.4575748168749,spot_peer,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,208405,93.541390470069,spot_peer,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,208405,0.7861866832211789,relative_legacy,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,208405,57.07954646526535,baseline,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,208405,91.2466833994732,peer,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,215725,50.11666451410435,baseline,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,215725,0.5330447175491915,relative_legacy,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,215725,84.79969065549501,spot_baseline,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,215725,64.74624693286978,peer,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,215725,112.40224117289188,spot_peer,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,216863,-1.247305930705655,spot_peer,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,216863,-3.3131386668019114,peer,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,216863,-65.19816847633987,baseline,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,216863,-73.69655941662063,spot_baseline,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,216863,-0.5267466025918144,relative_legacy,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,218666,-164.38561897747246,spot_baseline,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,218666,-66.57648774436402,peer,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,218666,-159.654419926904,baseline,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,218666,-66.27578793991677,spot_peer,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,218666,-1.3846701181435406,relative_legacy,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,219886,-0.8123239360870115,peer,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,219886,-68.24954287056134,baseline,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,219886,-71.00475277846037,spot_baseline,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,219886,-0.4807475428061993,relative_legacy,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,219886,0.6828508091426236,spot_peer,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,220077,-20.10815663352855,spot_peer,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,220077,-21.20658867262844,peer,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,220077,-0.7593448181918622,relative_legacy,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,220077,-100.0,spot_baseline,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,220077,-97.47360367603876,baseline,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,221727,-20.10815663352855,spot_peer,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,221727,-100.0,spot_baseline,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,221727,-0.7592748324877573,relative_legacy,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,221727,-21.10412821070865,peer,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,221727,-96.90041860332832,baseline,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,222631,-0.0104273600824312,relative_legacy,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,222631,-3.0323551482072584,baseline,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,222631,-100.0,spot_baseline,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,222631,-0.6395615977401715,peer,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,222631,-20.10815663352855,spot_peer,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,227188,58.32363550916267,peer,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,227188,58.496250072115615,spot_baseline,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,227188,0.3914111610276519,relative_legacy,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,227188,36.52789629708111,baseline,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30439,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-03 14:30:02.657059+00,227188,93.541390470069,spot_peer,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30673 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,182315,37.17107201079759,spot_peer,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,182315,62.29303509201767,spot_baseline,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,182315,54.77089666350105,baseline,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,182315,33.71965489994317,peer,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,182315,0.3179743838060659,relative_legacy,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,187708,33.47414474733636,spot_peer,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,187708,57.14341158765092,spot_baseline,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,187708,47.647849713755065,baseline,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,187708,0.2608809953820084,relative_legacy,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,187708,28.867962171250984,peer,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,188107,9.615883564000454,baseline,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,188107,20.163386116965043,spot_baseline,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,188107,2.830549980175781,peer,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,188107,6.92609434129402,spot_peer,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,188107,-0.0212215513529793,relative_legacy,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,189585,25.935016074968807,baseline,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,189585,11.334054406097884,spot_peer,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,189585,13.821171774653491,peer,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,189585,0.0103978755398915,relative_legacy,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,189588,-18.461588812122272,spot_peer,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,189588,-14.940916767636187,baseline,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,189588,-15.200309344504996,spot_baseline,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,189588,-16.11819804164818,peer,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,189588,-0.3996415143355089,relative_legacy,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,189869,-73.69655941662063,spot_baseline,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,189869,-57.40052027518463,baseline,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,189869,-0.7743275262420994,relative_legacy,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,189869,-60.45618929475361,spot_peer,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,189869,-46.54497874321128,peer,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,190710,65.99245584023782,spot_baseline,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,190710,61.84163237048028,baseline,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,190710,0.3667827123537251,relative_legacy,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,190710,39.8268951814647,spot_peer,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,190710,38.96822143771068,peer,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,190772,0.0768678148531008,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,190772,14.935655126956128,peer,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,190772,27.661972548045107,baseline,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,190772,35.61438102252753,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,190772,18.01840123820348,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191026,-0.4333050029379705,baseline,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191026,-0.3979144523303407,peer,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191026,-34.59035432556244,spot_peer,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191026,-37.66682384840947,spot_baseline,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191026,-0.0066525702830152,relative_legacy,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191046,10.389880477536945,baseline,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191046,19.624191986571315,spot_peer,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191046,0.0333325380492073,relative_legacy,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191046,4.8956844855861945,peer,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191046,37.85116232537298,spot_baseline,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191284,22.32761589251545,baseline,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191284,0.0034056950781922,relative_legacy,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191284,10.435860944293015,peer,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191284,11.334054406097884,spot_peer,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191284,26.303440583379377,spot_baseline,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191471,-2.914634565951651,spot_baseline,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191471,-0.1936649715511293,relative_legacy,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191471,-1.9772736334590304,baseline,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191471,-9.64167294830478,spot_peer,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191471,-5.806913466420659,peer,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191935,-94.27220534164924,peer,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191935,-1.4723551022575423,relative_legacy,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191935,-125.15387669959644,spot_baseline,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191935,-97.39752277412232,spot_peer,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,191935,-122.10087161902274,baseline,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192049,0.5481690768257539,relative_legacy,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192049,80.39494966933857,baseline,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192049,53.3286548887292,spot_peer,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192049,52.57949183609293,peer,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192418,-32.026812170753466,baseline,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192418,-0.5665057277480017,relative_legacy,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192418,-28.33080254588679,peer,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192418,-30.660546076533407,spot_peer,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192418,-32.19280948873623,spot_baseline,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192472,-50.85812637310259,baseline,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192472,-0.7569075643861507,relative_legacy,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192472,-44.49058316978755,spot_peer,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192472,-51.45731728297583,spot_baseline,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192472,-42.26727187252197,peer,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192924,13.750352374993504,spot_baseline,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192924,-0.1067329176137261,relative_legacy,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192924,11.982395498533773,baseline,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192924,2.785790143026143,peer,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,192924,2.322161789314825,spot_peer,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,193275,10.567807789453692,spot_baseline,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,193275,10.773477007793574,baseline,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,193275,1.9004536484134251,peer,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,193275,-0.1204648126699033,relative_legacy,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,193275,0.0374052754675209,spot_peer,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,195286,37.85116232537298,spot_baseline,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,195286,0.0675184473456839,relative_legacy,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,195286,12.243312640691638,peer,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,195286,22.985589998807587,baseline,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,195286,19.624191986571315,spot_peer,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,204737,-0.0690136325307273,relative_legacy,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,204737,-2.2988914220258887,spot_peer,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,204737,2.9682913668729256,baseline,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,204737,-1.609635937672689,peer,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,204737,7.313470463021537,spot_baseline,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,208405,19.624191986571315,spot_peer,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,208405,36.84667716491116,baseline,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,208405,0.1171532811572208,relative_legacy,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,208405,21.5024455413437,peer,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,208405,37.85116232537298,spot_baseline,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,215725,27.29966053106393,spot_peer,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,215725,16.376946931666723,peer,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,215725,0.1289297293697391,relative_legacy,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,215725,28.7110638030301,baseline,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,215725,48.54268271702416,spot_baseline,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,216863,23.300624607933795,baseline,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,216863,0.00077594429911,relative_legacy,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,216863,10.9124399032073,peer,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,216863,11.334054406097884,spot_peer,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,216863,26.303440583379377,spot_baseline,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,218666,-48.51591266092137,peer,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,218666,-51.21439330150239,spot_peer,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,218666,-60.82322800440036,spot_baseline,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,218666,-0.844127336650756,relative_legacy,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,218666,-59.25344824064955,baseline,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,219886,44.77438291203752,peer,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,219886,47.4086763124488,spot_peer,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,219886,0.457075306103947,relative_legacy,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,219886,70.02248206730721,baseline,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,219886,76.55347463629771,spot_baseline,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,220077,-18.461588812122272,spot_peer,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,220077,-16.131431276099743,peer,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,220077,-0.3996415143355089,relative_legacy,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,220077,-15.200309344504996,spot_baseline,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,220077,-14.863307834705816,baseline,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,221727,36.67869904074798,baseline,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,221727,21.209866851724176,peer,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,221727,19.624191986571315,spot_peer,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,221727,0.1142072545733734,relative_legacy,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,222631,-0.58678679592949,peer,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,222631,-15.200309344504996,spot_baseline,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,222631,-0.4634267121614364,baseline,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,222631,-18.461588812122272,spot_peer,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,222631,-0.0110188085583303,relative_legacy,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,227188,7.822822268259463,spot_peer,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,227188,-38.48101874601859,baseline,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,227188,-32.1778400944815,peer,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,227188,21.412480535284736,spot_baseline,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30440,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-03 14:30:02.861099+00,227188,-0.5549856397226319,relative_legacy,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30674 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,182315,-38.22639682207247,baseline,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,182315,-43.440282414577496,spot_baseline,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,182315,-41.32012492702844,spot_peer,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,182315,-0.6120336560519298,relative_legacy,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,182315,-33.41546701070414,peer,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,187708,62.48027652529473,spot_baseline,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,187708,0.2898140987328119,relative_legacy,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,187708,32.53038957304827,peer,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,187708,34.630085547977714,spot_peer,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,187708,52.71785411349799,baseline,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,188107,0.1002514900154983,relative_legacy,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,188107,55.25410230287789,spot_baseline,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,188107,15.608174070851142,peer,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,188107,27.059938368182525,baseline,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,188107,29.44856593918131,spot_peer,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,189585,-1.252482678649625,relative_legacy,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,189585,-100.0,spot_baseline,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,189585,-81.87620297282398,spot_peer,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,189585,-98.69660082057588,baseline,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,189585,-78.97980350769085,peer,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,189588,0.1080186839760634,relative_legacy,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,189588,37.20366567575382,baseline,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,189588,16.969808581738405,spot_peer,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,189588,20.04293473805457,peer,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,189869,-63.015352270001074,spot_peer,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,189869,-73.69655941662059,spot_baseline,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,189869,-57.40161481840076,baseline,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,189869,-0.8224780208764422,relative_legacy,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,189869,-46.63911522625407,peer,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,190710,-44.45957340041589,baseline,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,190710,-47.39311883324123,spot_baseline,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,190710,-44.1545015671782,spot_peer,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,190710,-38.669170262263776,peer,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,190710,-0.692420727635896,relative_legacy,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,190772,42.22330006830476,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,190772,0.079131913189783,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,190772,32.814745952824005,baseline,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,190772,20.104844736427584,spot_peer,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,190772,18.484365075811453,peer,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191026,0.4947830594302424,peer,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191026,42.97773400147417,spot_peer,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191026,0.0029448244944979,relative_legacy,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191026,74.12195051800701,spot_baseline,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191026,0.8533322265659375,baseline,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191046,0.0,spot_baseline,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191046,-10.171322225243436,spot_peer,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191046,-2.188513059289691,peer,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191046,-0.0781090753074773,relative_legacy,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191046,0.0,baseline,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191284,-33.255137878437544,spot_peer,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191284,-25.34010739725508,peer,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191284,-0.5089918948581053,relative_legacy,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191284,-32.19280948873623,spot_baseline,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191284,-27.326603564028108,baseline,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191471,-29.49394311698142,baseline,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191471,-0.5181203297054683,relative_legacy,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191471,-43.440282414577496,spot_baseline,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191471,-41.32012492702844,spot_peer,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191471,-26.058433021725264,peer,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191935,15.041902467340137,peer,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191935,30.27716660904879,baseline,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191935,12.081579114440572,spot_peer,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191935,31.034012061215048,spot_baseline,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191935,0.0414526999349114,relative_legacy,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191975,0.1716052209506592,relative_legacy,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191975,65.13770384472174,spot_baseline,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191975,37.37889485002746,baseline,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191975,22.55043811272104,peer,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,191975,36.53559063832649,spot_peer,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192049,-0.0020192979196739,relative_legacy,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192049,8.689528477579453,spot_peer,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192049,24.988675051930763,baseline,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192049,11.533919318871543,peer,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192418,20.219551434803712,peer,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192418,37.66184783307956,baseline,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192418,16.969808581738405,spot_peer,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192418,0.1079426371438853,relative_legacy,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192472,42.22330006830476,spot_baseline,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192472,23.386679875978764,peer,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192472,0.1512401623954907,relative_legacy,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192472,20.104844736427584,spot_peer,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192472,41.81397083998654,baseline,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192924,-44.92345658301128,baseline,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192924,-47.06873021890542,spot_peer,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192924,-0.6771756100581052,relative_legacy,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192924,-51.45731728297583,spot_baseline,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,192924,-38.199155652793,peer,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,193275,33.46225930936118,peer,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,193275,34.09199187252185,spot_peer,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,193275,61.72984828408463,spot_baseline,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,193275,54.35604493006957,baseline,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,193275,0.3110153882446121,relative_legacy,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,195286,21.054414919099564,peer,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,195286,31.77334413077356,spot_peer,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,195286,0.1424720507311481,relative_legacy,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,195286,35.52185423466313,baseline,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,204737,8.689528477579453,spot_peer,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,204737,-0.0266625709540087,relative_legacy,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,204737,10.728871089391978,baseline,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,204737,4.458120713167776,peer,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,204737,26.303440583379377,spot_baseline,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,208405,27.333343089348443,peer,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,208405,0.2105753178270315,relative_legacy,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,208405,24.636150528675127,spot_peer,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,208405,47.19760108096091,baseline,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,215725,-47.06873021890542,spot_peer,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,215725,-0.5114868063982839,relative_legacy,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,215725,-30.456125408148264,baseline,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,215725,-26.352097777893324,peer,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,216863,-0.5163727938295888,relative_legacy,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,216863,-32.19280948873623,spot_baseline,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,216863,-26.440237014052396,peer,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,216863,-33.255137878437544,spot_peer,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,216863,-28.497638825052466,baseline,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,218666,14.391524948725618,spot_peer,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,218666,17.35918561235044,peer,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,218666,33.48178506417304,baseline,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,218666,0.0728739233448551,relative_legacy,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,218666,34.25547454773202,spot_baseline,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,219886,80.51768702520383,spot_baseline,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,219886,79.07780704071725,baseline,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,219886,50.51567788367488,peer,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,219886,0.5270539707516374,relative_legacy,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,219886,47.5637892368891,spot_peer,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,220077,-47.06873021890542,spot_peer,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,220077,-0.7677926320778831,relative_legacy,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,220077,-50.46206246914494,baseline,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,220077,-43.7259838454312,peer,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,221727,36.68104494884079,baseline,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,221727,16.969808581738405,spot_peer,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,221727,0.1076858432332788,relative_legacy,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,221727,19.761097212996084,peer,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,222631,1.48810298781356,baseline,Grizeu_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,222631,24.636150528675127,spot_peer,Grizeu_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,222631,48.54268271702416,spot_baseline,Grizeu_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,222631,0.7841999063044636,peer,Grizeu_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,222631,0.0012097202476798,relative_legacy,Grizeu_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,227188,81.55754288625727,spot_baseline,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,227188,0.2741397978128707,relative_legacy,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,227188,50.19579251019298,baseline,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,227188,31.386647402139047,peer,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30441,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-03 14:30:02.884559+00,227188,48.30941664200419,spot_peer,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30675 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,182315,-63.36587028509991,spot_peer,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,182315,-0.9497561757383616,relative_legacy,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,182315,-64.90947384709307,baseline,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,182315,-57.487131749667626,peer,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,182315,-73.69655941662059,spot_baseline,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,187708,26.29328903104997,baseline,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,187708,8.786147027444423,peer,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,187708,11.56407433852714,spot_peer,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,187708,30.80113145521776,spot_baseline,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,187708,-0.0305951006110242,relative_legacy,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,188107,-0.5185144559371507,relative_legacy,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,188107,-34.161757012719846,baseline,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,188107,-65.89630821649325,spot_baseline,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,188107,-57.7727094640369,spot_peer,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,188107,-30.818121539814783,peer,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,189585,6.767162727302309,peer,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,189585,8.339010462480616,spot_peer,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,189585,25.966094296030104,baseline,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,189585,-0.074250125309479,relative_legacy,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,189588,-0.0750681105072954,relative_legacy,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,189588,25.85025847258988,baseline,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,189588,8.339010462480616,spot_peer,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,189588,6.635608245521296,peer,mf-bot-3,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,189869,-33.60565589353638,spot_peer,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,189869,-27.49576724999548,peer,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,189869,-0.5236524054153674,relative_legacy,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,189869,-25.075162579558786,baseline,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,190710,0.2977047044286975,relative_legacy,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,190710,33.455554361659395,peer,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,190710,61.96964357176801,baseline,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,190710,65.99245584023782,spot_baseline,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,190710,36.79797152230002,spot_peer,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,190772,-18.44245711374277,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,190772,-19.73991185625341,peer,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,190772,-23.745982120675208,spot_peer,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,190772,-14.340731939928558,baseline,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,190772,-0.4159629067082016,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191026,-0.2082280466206044,peer,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191026,-0.1213588794615709,baseline,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191026,-18.075916869316984,spot_peer,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191026,-10.534954594746464,spot_baseline,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191026,-0.0027975798231704,relative_legacy,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191046,-0.6621664674810773,spot_peer,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191046,-0.030547604718791,relative_legacy,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191046,-0.5381373543260953,peer,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191046,13.750352374993504,spot_baseline,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191046,3.770104374378953,baseline,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191284,-51.45731728297583,spot_baseline,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191284,-47.41924823400426,spot_peer,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191284,-0.7288347625161741,relative_legacy,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191284,-41.70190923553437,peer,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191284,-43.678844390276666,baseline,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191471,35.75287530380284,baseline,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191471,17.290933859999143,peer,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191471,52.60688116675877,spot_baseline,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191471,27.199861165303503,spot_peer,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191471,0.110051616230947,relative_legacy,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191935,-0.098724463528324,relative_legacy,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191935,4.810776581410705,peer,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191935,23.878685958711674,spot_baseline,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191935,6.600343050441191,spot_peer,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191935,23.296486125682723,baseline,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191975,60.39630886702991,baseline,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191975,0.3382121559597134,relative_legacy,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191975,47.290600391716914,spot_peer,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191975,34.37749220827396,peer,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,191975,80.6255306881741,spot_baseline,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192049,0.4030911178868421,relative_legacy,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192049,44.37073745574432,spot_peer,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192049,72.83356178414232,baseline,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192049,41.120213613328616,peer,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192418,-0.8431489493097989,relative_legacy,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192418,-49.36356546061522,peer,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192418,-47.41924823400426,spot_peer,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192418,-51.20781602848607,baseline,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192472,-0.2768998185478512,relative_legacy,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192472,5.658352836636751,spot_baseline,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192472,-6.4645250865545485,spot_peer,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192472,5.60973436638319,baseline,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192472,-7.913712547392089,peer,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192924,26.76792619180553,spot_peer,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192924,52.00450240398179,spot_baseline,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192924,0.1563814928179826,relative_legacy,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192924,45.60242016861524,baseline,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,192924,22.458057343035545,peer,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,193275,34.27956753287887,spot_peer,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,193275,62.48027652529473,spot_baseline,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,193275,29.40046618548171,peer,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,193275,55.69246290467498,baseline,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,193275,0.2467293917855667,relative_legacy,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,195286,29.469128821094525,peer,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,195286,0.2938163166054252,relative_legacy,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,195286,51.49359395844115,baseline,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,195286,50.28367681849762,spot_peer,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,204737,0.1009856025237467,relative_legacy,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,204737,24.011307762828007,baseline,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,204737,31.422826115674727,spot_peer,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,204737,12.37472162053246,peer,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,208405,35.98050155182216,peer,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,208405,38.099224854044174,spot_peer,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,208405,66.17206919363304,baseline,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,208405,0.3299746462234328,relative_legacy,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,215725,67.80719051126377,spot_baseline,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,215725,0.1861511732477351,relative_legacy,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,215725,21.519426062479088,peer,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,215725,40.160977266145245,baseline,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,215725,38.099224854044174,spot_peer,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,216863,6.215506886337956,peer,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,216863,-0.0689894973355408,relative_legacy,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,216863,23.304332583817136,baseline,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,216863,8.339010462480616,spot_peer,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,216863,26.303440583379377,spot_baseline,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,218666,51.1521197347361,baseline,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,218666,25.04164048108539,peer,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,218666,0.1787264466643837,relative_legacy,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,218666,52.20557491609642,spot_baseline,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,218666,26.912104996833488,spot_peer,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,219886,-115.74635954987612,spot_baseline,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,219886,-1.3950577101600652,relative_legacy,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,219886,-93.51762932524676,spot_peer,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,219886,-89.3580586895592,peer,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,219886,-107.73680095268254,baseline,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,220077,-2.3225378301405475,peer,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,220077,13.750352374993504,spot_baseline,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,220077,13.534975831809827,baseline,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,220077,-0.6621664674810773,spot_peer,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,220077,-0.1984185927799436,relative_legacy,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,221727,25.48590501105596,baseline,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,221727,8.339010462480616,spot_peer,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,221727,-0.0751141483561065,relative_legacy,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,221727,6.497715747643167,peer,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,221727,26.303440583379377,spot_baseline,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,222631,-15.200309344505014,spot_baseline,Grizeu_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,222631,-0.6730703397477901,peer,Grizeu_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,222631,-0.4687023691974383,baseline,Grizeu_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,222631,-0.0089269523601293,relative_legacy,Grizeu_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,222631,-21.421203929082942,spot_peer,Grizeu_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,227188,-38.91185876121403,spot_peer,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,227188,-8.777181712368579,baseline,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,227188,-0.3306997531095739,relative_legacy,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,227188,-39.592867633113926,spot_baseline,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30442,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-03 14:30:02.907415+00,227188,-14.580901424784862,peer,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30676 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,182315,27.905114085839784,spot_peer,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,182315,70.43327353444054,baseline,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,182315,0.1812265238438139,relative_legacy,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,182315,79.90873060740036,spot_baseline,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,182315,25.264608577943708,peer,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,187708,51.62988724239769,baseline,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,187708,12.338592844085415,peer,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,187708,59.83652053236445,spot_baseline,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,187708,13.512359788131445,spot_peer,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,187708,0.0040568272722254,relative_legacy,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,188107,14.26124824097124,spot_peer,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,188107,8.635325953040931,peer,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,188107,0.0091728825570663,relative_legacy,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,188107,60.8809242675524,spot_baseline,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,188107,35.816911353679444,baseline,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,189585,12.19323830984169,peer,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,189585,-0.0078559140204441,relative_legacy,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,189585,12.551320452914972,spot_peer,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,189585,57.79228819714268,baseline,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,189588,5.039307302206191,peer,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,189588,48.54268271702416,spot_baseline,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,189588,47.738020132320656,baseline,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,189588,-0.1057732336659337,relative_legacy,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,189588,5.414126850816528,spot_peer,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,189869,0.1331447377104158,relative_legacy,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,189869,59.62949385702753,baseline,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,189869,25.49923179298456,spot_peer,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,189869,20.385747130541876,peer,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,190710,-0.0252866929452905,relative_legacy,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,190710,11.162732142693525,spot_peer,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,190710,10.57548381784068,peer,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,190710,56.55971758542251,spot_baseline,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,190710,53.16993830288207,baseline,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,190772,13.92151632360676,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,190772,46.999918075250335,baseline,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,190772,60.40713236688608,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,190772,0.0073716906895174,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,190772,11.293547264773416,peer,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191026,7.71230119045091e-05,relative_legacy,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191026,13.03107518552591,spot_peer,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191026,0.6819941337219942,baseline,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191026,59.16531851991039,spot_baseline,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191026,0.1502082141183472,peer,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191046,0.0,relative_legacy,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191046,58.496250072115615,spot_baseline,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191046,16.162580388974273,baseline,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191046,3.672184829978794,peer,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191046,12.551320452914972,spot_peer,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191284,-2.474966357502493,relative_legacy,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191284,-232.19280948873623,spot_baseline,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191284,-195.88692305145725,spot_peer,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191284,-166.91483464156505,peer,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191284,-197.09244046543387,baseline,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191471,62.29303509201767,spot_baseline,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191471,42.36716270874607,baseline,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191471,15.27380062367774,spot_peer,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191471,10.65952331558255,peer,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191471,0.0196394451624856,relative_legacy,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191935,-0.0083047106770503,relative_legacy,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191935,12.126819517916324,peer,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191935,58.496250072115615,spot_baseline,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191935,57.28140365676044,baseline,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191935,12.551320452914972,spot_peer,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191975,-13.04038786485386,peer,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191975,3.4215715337912984,spot_baseline,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191975,-0.2757755690053565,relative_legacy,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191975,1.6941735986671218,baseline,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,191975,-26.939912115103816,spot_peer,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192049,24.447594212225425,peer,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192049,72.97072528676192,baseline,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192049,25.49923179298456,spot_peer,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192049,0.1638166436278186,relative_legacy,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192418,12.551320452914972,spot_peer,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192418,58.2223159150089,baseline,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192418,-0.0075326278515843,relative_legacy,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192418,12.24066735633919,peer,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192472,44.36066514756148,spot_baseline,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192472,1.960012895512612,peer,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192472,-0.147904287081882,relative_legacy,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192472,2.415416139790451,spot_peer,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192472,44.0518040431868,baseline,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192924,12.119286059920643,baseline,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192924,13.750352374993504,spot_baseline,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192924,-0.4018890930485027,relative_legacy,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192924,-19.53367213024084,spot_peer,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,192924,-16.91436051856579,peer,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,193275,6.763871687536329,spot_baseline,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,193275,-0.4756747086531884,relative_legacy,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,193275,6.571950370867292,baseline,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,193275,-22.13802544852857,peer,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,193275,-24.543319775634743,spot_peer,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,195286,56.33756943928615,baseline,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,195286,0.2022724175253991,relative_legacy,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,195286,22.793175604265315,peer,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,195286,37.00533197680087,spot_peer,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,204737,-45.23657136801667,spot_peer,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,204737,-18.348166530838316,peer,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,204737,-22.095044716254147,spot_baseline,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,204737,-9.116208452326813,baseline,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,204737,-0.334416686893161,relative_legacy,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,208405,0.0832037743989737,relative_legacy,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,208405,19.2277191912844,spot_peer,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,208405,18.79021154203706,peer,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,208405,66.51543558922722,baseline,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,215725,-6.0602225433625145,peer,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,215725,15.597536960830778,baseline,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,215725,-0.1958174809988861,relative_legacy,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,215725,26.303440583379377,spot_baseline,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,215725,-10.532495200279143,spot_peer,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,216863,12.551320452914972,spot_peer,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,216863,11.635513746223353,peer,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,216863,58.496250072115615,spot_baseline,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,216863,-0.0075076841868819,relative_legacy,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,216863,51.7966640836906,baseline,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,218666,2.806376788022908,baseline,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,218666,2.856915219677092,spot_baseline,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,218666,-0.5545491601075224,relative_legacy,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,218666,-27.625515037417767,peer,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,218666,-27.34479825177309,spot_peer,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,219886,0.0049494590346139,relative_legacy,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,219886,12.573188576594658,peer,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,219886,13.55334834147576,spot_peer,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,219886,53.39104102810031,baseline,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,219886,59.893683382252746,spot_baseline,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,220077,5.022811917120568,peer,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,220077,48.54268271702416,spot_baseline,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,220077,5.414126850816528,spot_peer,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,220077,47.94916921642439,baseline,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,220077,-0.1062045307988404,relative_legacy,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,221727,0.0819974654681782,relative_legacy,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,221727,65.77192241933524,baseline,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,221727,19.2277191912844,spot_peer,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,221727,67.80719051126377,spot_baseline,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,221727,18.618607337302283,peer,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,222631,-0.0018256543780712,relative_legacy,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,222631,52.60688116675877,spot_baseline,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,222631,0.2671252253383249,peer,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,222631,1.630768669142297,baseline,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,222631,8.328355502543754,spot_peer,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,227188,0.0185552081762149,relative_legacy,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,227188,64.15460290875237,spot_baseline,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,227188,16.60863560670269,spot_peer,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,227188,41.36152480019893,baseline,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30443,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December?,2024-12-03 14:30:02.924034+00,227188,10.358017094303294,peer,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30677 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,182315,-18.06283448098535,spot_peer,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,182315,-0.5305444829776205,relative_legacy,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,182315,-35.845397091247634,spot_baseline,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,182315,-22.58547919220943,peer,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,182315,-31.62297966334688,baseline,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,187708,-42.55675788520101,baseline,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,187708,-30.37693370647493,peer,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,187708,-27.21968363447656,spot_peer,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,187708,-0.6386424789100003,relative_legacy,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,187708,-48.60040206329872,spot_baseline,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,188107,0.0284985317628444,relative_legacy,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,188107,28.689536574587883,spot_peer,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,188107,15.359469611533976,peer,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,188107,17.785770895038056,baseline,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,188107,29.27817492278457,spot_baseline,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,189585,32.79467795203802,peer,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,189585,47.96446673409055,baseline,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,189585,42.51957366784202,spot_peer,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,189585,0.2211685248995988,relative_legacy,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,189869,22.468334515724035,peer,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,189869,34.844105123349394,spot_peer,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,189869,29.48373028873803,baseline,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,189869,0.095270530330873,relative_legacy,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,190710,18.903382439001685,spot_baseline,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,190710,17.787269801003756,baseline,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,190710,11.85339183055952,peer,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,190710,21.241447767022525,spot_peer,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,190710,-0.0578779956424306,relative_legacy,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,190772,43.988696577723225,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,190772,29.626206142252013,peer,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,190772,50.58909297299573,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,190772,0.194345596453429,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,190772,39.3853674927642,baseline,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191026,-7.980580628144159,spot_peer,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191026,-0.2514630964144208,baseline,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191026,-0.0049844083151546,relative_legacy,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191026,-0.092050322011145,peer,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191026,-21.801352478648543,spot_baseline,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191046,-173.6965594166206,spot_baseline,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191046,-47.71236351067708,baseline,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191046,-0.5359411533348863,relative_legacy,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191046,-117.026519858827,spot_peer,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191046,-31.94469562433116,peer,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191284,-159.02112034145827,spot_peer,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191284,-141.80127101666938,peer,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191284,-232.19280948873623,spot_baseline,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191284,-197.09114553390512,baseline,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191284,-2.180087907914757,relative_legacy,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191471,0.0531875373752454,relative_legacy,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191471,22.69623485179542,baseline,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191471,33.34237337251918,spot_baseline,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191471,31.60723454613859,spot_peer,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191471,18.245144791984053,peer,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191935,-0.7584595755411048,relative_legacy,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191935,-50.38834512851197,baseline,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191935,-38.70947831390135,peer,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191935,-51.45731728297583,spot_baseline,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191935,-29.270670033009463,spot_peer,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191975,0.0425861331743453,relative_legacy,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191975,17.112848689166437,peer,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191975,30.44999984133277,spot_peer,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191975,20.868104935715134,baseline,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,191975,31.73040683619151,spot_baseline,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192049,56.34961076109616,spot_peer,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192049,0.4035646725523419,relative_legacy,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192049,64.73498960029892,baseline,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192049,45.67467055209486,peer,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192418,53.206981277899565,peer,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192418,62.62858944922691,spot_peer,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192418,0.4995126676354804,relative_legacy,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192418,76.20940697174156,baseline,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192472,26.142034159588253,baseline,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192472,16.554031308681907,peer,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192472,26.303440583379377,spot_baseline,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192472,26.553967542875988,spot_peer,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192472,9.583181593904398e-05,relative_legacy,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192924,9.093990018460412,peer,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192924,17.542074926092916,spot_peer,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192924,12.150580318029126,baseline,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192924,13.750352374993504,spot_baseline,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,192924,-0.0931905909485236,relative_legacy,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,193275,18.105474838874063,spot_peer,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,193275,-0.0893835471237348,relative_legacy,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,193275,9.366773032125158,peer,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,193275,14.535138557261984,spot_baseline,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,193275,13.76267465083839,baseline,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,195286,62.62858944922691,spot_peer,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,195286,0.3160766706471868,relative_legacy,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,195286,46.57385719757525,baseline,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,195286,36.09743651758208,peer,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,204737,-85.96683861982532,baseline,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,204737,-207.09665213541436,spot_baseline,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,204737,-141.00452781795934,spot_peer,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,204737,-58.89221566461418,peer,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,204737,-0.9485526457768848,relative_legacy,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,208405,0.3181731274661271,relative_legacy,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,208405,57.35868374076903,baseline,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,208405,49.665263928990576,spot_peer,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,208405,39.83837723067446,peer,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,215725,-332.1928094887362,spot_baseline,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,215725,-197.1327365994901,baseline,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,215725,-2.1162294594917945,relative_legacy,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,215725,-139.35797546235366,peer,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,215725,-230.81136404230975,spot_peer,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,216863,17.125275181015212,peer,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,216863,26.553967542875988,spot_peer,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,216863,26.303440583379377,spot_baseline,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,216863,23.28089675350743,baseline,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,216863,0.0177355165108636,relative_legacy,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,218666,-20.693830298867283,peer,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,218666,-25.84251525812044,spot_baseline,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,218666,-0.5113114763067184,relative_legacy,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,218666,-10.881741235875127,spot_peer,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,218666,-25.44743594520968,baseline,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,219886,46.20523187964328,spot_baseline,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,219886,29.95834581767547,peer,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,219886,41.1872770593009,baseline,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,219886,0.193884164026939,relative_legacy,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,219886,40.8415120152987,spot_peer,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,220077,34.844105123349394,spot_peer,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,220077,0.1154632661451025,relative_legacy,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,220077,37.85116232537298,spot_baseline,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,220077,37.47502113156899,baseline,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,220077,25.048615590379008,peer,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,221727,56.74233402971173,baseline,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,221727,49.665263928990576,spot_peer,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,221727,39.56943678229191,peer,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,221727,0.3162014500169862,relative_legacy,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,222631,1.2263135775947704,peer,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,222631,0.0071481137778714,relative_legacy,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,222631,44.36066514756148,spot_baseline,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,222631,39.51729306311234,spot_peer,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,222631,1.3817872180058517,baseline,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,227188,21.412480535284736,spot_baseline,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,227188,0.0009172033403709,relative_legacy,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,227188,23.042735405037558,spot_peer,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,227188,16.961830621044694,baseline,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30444,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥4 degrees F?,2024-12-03 14:30:02.940401+00,227188,14.23360918169939,peer,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30678 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,182315,-100.52303833045816,spot_peer,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,182315,-1.331493144089868,relative_legacy,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,182315,-123.23178807408075,baseline,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,182315,-86.66127683429657,peer,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,182315,-139.59286763311397,spot_baseline,RyansAGI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,185699,-0.1822323822726765,relative_legacy,MWG,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,185699,-8.926733809708741,spot_baseline,MWG,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,185699,-8.549725230560144,baseline,MWG,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,185699,-3.141556948236376,peer,MWG,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,185699,-6.829042894911408,spot_peer,MWG,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,187708,31.6844360505394,spot_peer,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,187708,44.78436443620852,spot_baseline,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,187708,0.298446274837537,relative_legacy,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,187708,39.98773142898017,baseline,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,187708,31.413652103797187,peer,twsummerbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,188107,3.004086884213701,baseline,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,188107,2.963911574855315,spot_peer,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,188107,4.730571477835651,spot_baseline,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,188107,-0.0441632048350779,relative_legacy,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,188107,3.477173764439127,peer,Cassie,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,189585,-72.13301980958636,spot_peer,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,189585,-100.0,spot_baseline,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,189585,-98.78762593081402,baseline,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,189585,-1.0700651485038006,relative_legacy,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,189585,-68.52108041691103,peer,mf-bot-1,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,189869,-40.082632166956266,baseline,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,189869,-26.77779875320321,peer,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,189869,-37.325547055667776,spot_peer,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,189869,-0.4637073396355573,relative_legacy,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,190710,10.181163178520965,spot_peer,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,190710,0.0402246866044348,relative_legacy,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,190710,14.795788138710142,spot_baseline,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,190710,13.93759216618967,baseline,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,190710,13.007673321434876,peer,Bot_Pepa,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,190772,-36.6228996782369,peer,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,190772,-49.88011846990232,spot_peer,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,190772,-0.600157543679028,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,190772,-68.96598793878492,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,190772,-53.726476713873545,baseline,Jay_Bailey_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191026,33.5102236245179,spot_baseline,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191026,0.3867671161286992,baseline,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191026,0.2723894190782611,peer,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191026,0.0021599761087618,relative_legacy,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191026,23.600326826202327,spot_peer,manticAI,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191046,41.516527294011205,spot_peer,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191046,0.1210566591696237,relative_legacy,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191046,11.611000151622338,peer,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191046,58.496250072115615,spot_baseline,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191046,16.148799824848652,baseline,archipelago,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191284,0.6256484329908912,relative_legacy,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191284,54.27983080356596,peer,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191284,60.3773779968341,spot_peer,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191284,84.79969065549501,spot_baseline,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191284,71.97969721918376,baseline,000_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191471,18.432711640817093,spot_peer,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191471,14.475323106036942,peer,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191471,0.1075823165633868,relative_legacy,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191471,26.303440583379377,spot_baseline,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191471,17.918657904135237,baseline,HSeldon,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191935,79.90873060740036,spot_baseline,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191935,56.87032092693603,spot_peer,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191935,0.7012389111171634,relative_legacy,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191935,78.24824294057561,baseline,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191935,60.2057148890877,peer,pgodzinai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191975,8.676434454136958,spot_peer,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191975,6.8716577206036265,baseline,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191975,5.723907839161488,peer,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191975,12.697285625776551,spot_baseline,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,191975,-0.0040435124613245,relative_legacy,jkraybill_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192049,41.516527294011205,spot_peer,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192049,43.609574709917055,peer,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192049,58.496250072115615,spot_baseline,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192049,55.92950997147665,baseline,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192049,0.461404677365123,relative_legacy,gnosis-ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192418,-72.13301980958636,spot_peer,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192418,-99.5686205694521,baseline,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192418,-1.0810624187715965,relative_legacy,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192418,-69.4359874176862,peer,InstitutPelFutur,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192472,76.20892257608597,baseline,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192472,59.11136142843984,peer,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192472,0.6765260046174745,relative_legacy,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192472,54.4644386340808,spot_peer,bestworldbot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192924,37.80973387429997,peer,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192924,55.18851034717248,spot_baseline,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192924,0.3885024564492159,relative_legacy,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192924,39.144716468800375,spot_peer,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,192924,48.889250945075325,baseline,acm_bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,193275,-0.2516582123083627,relative_legacy,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,193275,-8.323493304523236,peer,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,193275,-11.78829761447546,spot_peer,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,193275,-15.381889271772955,baseline,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,193275,-15.842936260448308,spot_baseline,histerio,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,195286,-72.13301980958636,spot_peer,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,195286,-0.681314205701822,relative_legacy,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,195286,-100.0,spot_baseline,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,195286,-60.83715498502608,baseline,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,195286,-42.619445886414326,peer,Unwrapped80T,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,204737,38.63940625631208,baseline,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,204737,65.9705388178971,spot_peer,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,204737,28.01098348319475,peer,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,204737,92.5999418556223,spot_baseline,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,204737,0.3280332786233408,relative_legacy,SynapseSeer,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,208405,-72.38005284809964,baseline,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,208405,-49.25944051936513,peer,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,208405,-73.69655941662059,spot_baseline,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,208405,-0.8035388377196614,relative_legacy,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,208405,-53.27216910676344,spot_peer,mf-bot-4,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,215725,40.62560260496901,peer,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,215725,65.9705388178971,spot_peer,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,215725,54.98693693787121,baseline,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,215725,0.4746200195594159,relative_legacy,estr.ai,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,216863,42.97643740944168,baseline,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,216863,34.37933369191277,spot_peer,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,216863,0.3294521846660293,relative_legacy,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,216863,33.53212607716598,peer,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,216863,48.54268271702416,spot_baseline,tombot61,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,218666,24.7853283437802,spot_peer,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,218666,35.16283291027821,spot_baseline,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,218666,34.74876426566701,baseline,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,218666,28.68619365686622,peer,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,218666,0.2651940535498311,relative_legacy,GreeneiBot2,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,219886,-0.7689305994951761,relative_legacy,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,219886,-50.78506622949746,spot_peer,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,219886,-46.65138595931574,peer,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,219886,-68.7757257241841,baseline,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,219886,-70.2280327956487,spot_baseline,SaraBase,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,220077,52.40401097743367,peer,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,220077,67.29336415658405,baseline,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,220077,48.19292603238065,spot_peer,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,220077,0.5877935124089062,relative_legacy,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,221727,-100.0,spot_baseline,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,221727,-97.00192345264884,baseline,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,221727,-1.057724407874302,relative_legacy,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,221727,-67.18462310918194,peer,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,221727,-72.13301980958636,spot_peer,mf-bot-5,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,222631,-0.4758484250171287,baseline,Grizeu_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,222631,-15.200309344505014,spot_baseline,Grizeu_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,222631,-0.0089755966339036,relative_legacy,Grizeu_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,222631,-11.32750275074646,spot_peer,Grizeu_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,222631,-0.3387733271602106,peer,Grizeu_Bot,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,227188,-25.153876699596427,spot_baseline,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,227188,-12.718490055979084,peer,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,227188,-18.46469635284487,spot_peer,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,227188,-0.2665362331457354,relative_legacy,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30445,Will the average daily temperature for December 2024 recorded by the Barrow/Port Rogers NWS weather station (on the Arctic coast of Alaska) exceed the 1945-2023 average for December by ≥6 degrees F?,2024-12-03 14:30:03.090593+00,227188,-19.721051098709896,baseline,ProfessorSP,True,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,0.5,2024-12-04 15:30:00+00,30679 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,182315,-171.70011529544664,baseline,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,182315,-54.72253334168717,spot_peer,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,182315,-47.42026232631543,peer,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,182315,-194.3416471633633,spot_baseline,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,182315,-0.1823985747851874,relative_legacy,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,185699,-94.34164716336323,spot_baseline,MWG,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,185699,13.664918615755838,peer,MWG,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,185699,-91.4364585289358,baseline,MWG,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,185699,0.6296884950441713,relative_legacy,MWG,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,185699,16.902675316173855,spot_peer,MWG,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,187708,-226.53445665209944,spot_baseline,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,187708,-70.9094586815816,peer,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,187708,-77.78070031082217,spot_peer,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,187708,-205.8759772167612,baseline,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,187708,-0.515470302328762,relative_legacy,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,188107,-81.92422442982432,peer,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,188107,-299.99999999999994,spot_baseline,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,188107,-130.4005490253872,spot_peer,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,188107,-0.8282594115874987,relative_legacy,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,188107,-196.7308430622021,baseline,Cassie,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,189585,31.68976249237676,spot_peer,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,189585,28.07357476341583,peer,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,189585,0.8242356808707786,relative_legacy,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,189585,-72.82467299417345,baseline,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,189585,-73.69655941662063,spot_baseline,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,189588,-170.8655386956203,baseline,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,189588,-0.1594656616859851,relative_legacy,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,189588,-43.31301275130034,peer,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,189588,-39.935446165484265,spot_peer,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,189588,-173.6965594166206,spot_baseline,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,189869,-173.6965594166206,spot_baseline,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,189869,-135.30351847886897,baseline,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,189869,-39.935446165484265,spot_peer,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,189869,-28.814074854587343,peer,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,189869,0.0,relative_legacy,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,190710,-134.61882179248028,spot_peer,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,190710,-288.3943925478167,baseline,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,190710,-129.50807659407266,peer,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,190710,-1.3376945320736184,relative_legacy,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,190710,-305.88936890535683,spot_baseline,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,190772,98.0146640635242,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,190772,1.5013839295938674,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,190772,18.903382439001685,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,190772,14.735847963110668,baseline,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,190772,79.3057514438733,peer,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191026,0.0246672940780042,relative_legacy,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191026,39.89259596375352,spot_baseline,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191026,1.3055878140993324,peer,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191026,0.4607173966395744,baseline,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191026,113.04823204627168,spot_peer,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191046,-47.966295544748256,baseline,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191046,-39.935446165484265,spot_peer,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191046,0.0,relative_legacy,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191046,-173.6965594166206,spot_baseline,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191046,-8.842336037300667,peer,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191284,-39.935446165484265,spot_peer,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191284,-147.43625263407802,baseline,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191284,-32.38132454221278,peer,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191284,-173.6965594166206,spot_baseline,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191284,0.0,relative_legacy,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191471,-112.02942337177116,spot_baseline,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191471,4.233768699966169,spot_peer,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191471,-76.40632666470884,baseline,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191471,6.537312123338028,peer,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191471,0.4205823076928433,relative_legacy,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191935,117.75703852900416,spot_peer,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191935,111.898969986254,peer,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191935,1.9841430468842585,relative_legacy,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191935,44.60518852631439,baseline,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191935,46.46682670034443,spot_baseline,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191975,-0.0439813386247654,peer,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191975,-6.8200169870911855,spot_peer,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191975,0.2764099825124493,relative_legacy,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191975,-127.4622380109006,spot_baseline,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,191975,-76.20277297988389,baseline,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192049,64.92616870283888,baseline,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192049,133.0421186369218,spot_peer,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192049,126.48886655783744,peer,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192049,2.1889517324024923,relative_legacy,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192418,111.5860509431699,spot_peer,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192418,109.15029520766689,peer,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192418,37.69535777506381,baseline,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192418,1.9299960756630008,relative_legacy,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192472,-32.19280948873623,spot_baseline,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192472,58.29281415195466,peer,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192472,-32.084141427747745,baseline,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192472,61.41690997906079,spot_peer,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192472,1.232439537022859,relative_legacy,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192924,-39.935446165484265,spot_peer,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192924,-154.20223904209,baseline,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192924,-173.6965594166206,spot_baseline,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192924,-0.0020728941941301,relative_legacy,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,192924,-34.503238216927286,peer,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,193275,-14.384285574615769,baseline,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,193275,-15.521264992094007,spot_baseline,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,193275,73.35793851126894,spot_peer,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,193275,1.401152667602351,relative_legacy,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,193275,68.78836415526031,peer,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,195286,-332.1928094887362,spot_baseline,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,195286,-0.9659777902442868,relative_legacy,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,195286,-202.4596013463825,baseline,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,195286,-89.76725114045608,peer,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,195286,-153.4587159945223,spot_peer,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,204737,-135.7483516209605,baseline,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,204737,-147.4375954883781,spot_peer,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,204737,-58.67687550491572,peer,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,204737,-323.7863830098888,spot_baseline,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,204737,-0.6292558062037044,relative_legacy,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,208405,134.9851045730646,peer,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,208405,139.30666289128675,spot_peer,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,208405,75.05276754347635,baseline,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,208405,2.2976993042558567,relative_legacy,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,215725,-39.935446165484265,spot_peer,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,215725,0.0,relative_legacy,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,215725,-19.7728531070547,peer,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,215725,-173.6965594166206,spot_baseline,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,215725,-103.21322803502288,baseline,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,216863,29.552314293918307,peer,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,216863,-65.30314220622071,baseline,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,216863,-73.69655941662063,spot_baseline,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,216863,0.8840355309909543,relative_legacy,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,216863,31.68976249237676,spot_peer,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,218666,2.036379739786635,relative_legacy,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,218666,48.47909343938041,baseline,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,218666,116.38312548651628,peer,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,218666,119.5386918605698,spot_peer,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,218666,48.95429356424738,spot_baseline,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,219886,-2.5408595640180582,relative_legacy,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,219886,-244.7371446070841,spot_peer,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,219886,-459.6317801011364,spot_baseline,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,219886,-217.76417297967745,peer,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,219886,-408.0898268452696,baseline,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,220077,-159.12122241567937,peer,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,220077,-330.5323355832618,baseline,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,220077,-153.4587159945223,spot_peer,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,220077,-1.752218754657788,relative_legacy,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,220077,-332.1928094887362,spot_baseline,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,221727,139.30666289128675,spot_peer,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,221727,133.77181789255974,peer,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,221727,2.28624283300052,relative_legacy,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,221727,74.25918106191222,baseline,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,222631,2.4091562284007955,baseline,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,222631,4.462253491056499,peer,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,222631,139.30666289128675,spot_peer,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,222631,0.0787542866029805,relative_legacy,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,227188,-100.0,spot_baseline,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,227188,-83.704785398194,baseline,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,227188,0.1012943639593224,peer,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,227188,0.3201221000507869,relative_legacy,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30446,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on December 31, 2024?",2024-12-03 14:30:03.111377+00,227188,12.849868290334785,spot_peer,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30680 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,182315,46.46682670034443,spot_baseline,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,182315,41.08302173710095,baseline,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,182315,31.63647810158271,spot_peer,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,182315,0.2561778221585842,relative_legacy,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,182315,27.336124523097272,peer,RyansAGI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,185699,-35.700103546913816,peer,MWG,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,185699,-35.59090373300274,spot_peer,MWG,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,185699,-0.6443761022635837,relative_legacy,MWG,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,185699,-46.82375036343213,baseline,MWG,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,185699,-47.39311883324123,spot_baseline,MWG,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,187708,-12.333163287980106,peer,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,187708,-15.200309344504996,spot_baseline,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,187708,-12.532736763867709,spot_peer,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,187708,-13.990862397813048,baseline,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,187708,-0.3037372681850525,relative_legacy,twsummerbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,189585,13.584211907742707,baseline,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,189585,8.079053027845319,peer,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,189585,13.750352374993504,spot_baseline,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,189585,-0.0403213861433904,relative_legacy,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,189585,8.203235100554581,spot_peer,mf-bot-1,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,189588,7.905719743299092,peer,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,189588,-0.0429234388453998,relative_legacy,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,189588,13.52452644344681,baseline,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,189588,8.203235100554581,spot_peer,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,189588,13.750352374993504,spot_baseline,mf-bot-3,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,189869,-25.077899796258507,baseline,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,189869,-0.3765988737176904,relative_legacy,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,189869,-24.703650448360666,spot_peer,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,189869,-20.03151119441564,peer,VeritasAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,190710,0.1439321007074627,relative_legacy,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,190710,31.467984475973832,baseline,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,190710,22.236061020324303,spot_peer,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,190710,33.34237337251918,spot_baseline,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,190710,20.53260185592405,peer,Bot_Pepa,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,190772,-21.75914350726268,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,190772,-17.120719009703198,baseline,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,190772,-17.230515418465977,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,190772,-0.2990887296073922,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,190772,-14.322675841052869,peer,Jay_Bailey_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191026,-0.5156446582446573,peer,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191026,-44.61717734881535,spot_peer,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191026,-0.0085228396827451,relative_legacy,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191026,-0.6933699317429045,baseline,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191026,-59.99520933315069,spot_baseline,manticAI,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191046,1.6949878170948174,peer,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191046,8.203235100554581,spot_peer,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191046,13.750352374993504,spot_baseline,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191046,-0.0187086861777607,relative_legacy,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191046,3.792510481902102,baseline,archipelago,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191284,17.194410722816308,spot_peer,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191284,13.889259809804871,peer,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191284,0.0790814850526935,relative_legacy,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191284,26.303440583379377,spot_baseline,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191284,22.32661995015689,baseline,000_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191471,0.0336006958987707,relative_legacy,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191471,14.617533049066637,baseline,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191471,21.412480535284736,spot_baseline,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191471,13.691250382995896,spot_peer,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191471,8.662915771099472,peer,HSeldon,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191935,31.034012061215048,spot_baseline,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191935,19.467994316060512,peer,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191935,20.58269241452537,spot_peer,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191935,29.883518487191925,baseline,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191935,0.1235043616424067,relative_legacy,pgodzinai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191975,-24.8700871708632,peer,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191975,-32.13031496645694,baseline,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191975,-38.89629686732044,spot_peer,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191975,-52.00796491363021,spot_baseline,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,191975,-0.4237295325096867,relative_legacy,jkraybill_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192049,16.07688555637635,peer,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192049,0.0774998089022742,relative_legacy,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192049,17.194410722816308,spot_peer,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192049,25.23349126226971,baseline,gnosis-ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192418,-38.70609862426933,peer,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192418,-38.50189435289467,spot_peer,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192418,-51.2547162588818,baseline,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192418,-0.6841204539868326,relative_legacy,InstitutPelFutur,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192472,-44.582079355264455,spot_peer,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192472,-59.94620704162712,spot_baseline,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192472,-44.93589329842698,peer,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192472,-0.7693637928266231,relative_legacy,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192472,-59.82754111378406,baseline,bestworldbot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192924,13.750352374993504,spot_baseline,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192924,-0.0333428809631935,relative_legacy,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192924,8.203235100554581,spot_peer,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192924,12.226556533194724,baseline,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,192924,6.526240156449752,peer,acm_bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,193275,0.110512534887707,relative_legacy,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,193275,18.461819190123084,peer,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,193275,19.577822259019253,spot_peer,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,193275,29.631056070809237,spot_baseline,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,193275,28.529926721417787,baseline,histerio,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,195286,0.2556872055966369,relative_legacy,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,195286,40.25257769195134,spot_peer,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,195286,23.882125452060095,peer,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,195286,35.710751421495615,baseline,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,204737,27.02299072379977,spot_baseline,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,204737,17.709790012290362,spot_peer,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,204737,11.396143562907948,baseline,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,204737,6.622578555806528,peer,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,204737,0.0189487108443706,relative_legacy,SynapseSeer,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,208405,40.25257769195134,spot_peer,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,208405,0.3954390487851074,relative_legacy,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,208405,57.32505405280944,baseline,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,208405,39.550780476252974,peer,mf-bot-4,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,215725,0.0,baseline,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,215725,-0.0992384388078158,relative_legacy,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,215725,-1.645483479225662,spot_peer,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,215725,0.0,spot_baseline,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,215725,-1.7670971528266872,peer,estr.ai,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,216863,28.732597980627386,peer,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,216863,33.12331430496634,spot_peer,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,216863,48.54268271702416,spot_baseline,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,216863,43.01982505974412,baseline,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,216863,0.2749960654976425,relative_legacy,tombot61,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,218666,-58.90902244561924,peer,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,218666,-79.58592832197745,spot_baseline,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,218666,-0.9633837492137904,relative_legacy,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,218666,-79.01360136863956,baseline,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,218666,-58.649070702137735,spot_peer,GreeneiBot2,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,218945,38.09836773263091,baseline,SeidrBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,218945,38.95668117627256,spot_baseline,SeidrBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,218945,26.257320699457225,spot_peer,SeidrBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,218945,0.2035848681339084,relative_legacy,SeidrBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,218945,25.582817576532623,peer,SeidrBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,219886,-15.200309344505014,spot_baseline,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,219886,-0.3161740877989863,relative_legacy,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,219886,-14.41789000057446,baseline,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,219886,-12.605287239914368,peer,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,219886,-12.532736763867725,spot_peer,SaraBase,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,220077,-0.0340769803716491,relative_legacy,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,220077,8.203235100554581,spot_peer,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,220077,13.750352374993504,spot_baseline,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,220077,8.581927345397164,peer,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,220077,13.71902955575626,baseline,mmBot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,221727,-32.19280948873623,spot_baseline,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,221727,-24.703650448360666,spot_peer,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,221727,-24.654119566433607,peer,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,221727,-0.4885477360186774,relative_legacy,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,221727,-31.22397474512325,baseline,mf-bot-5,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,222631,-25.15387669959645,spot_baseline,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,222631,-0.0123096833571343,relative_legacy,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,222631,-0.7958935692640883,baseline,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,222631,-0.6524672035107889,peer,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,222631,-19.662000150852705,spot_peer,Grizeu_Bot,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,227188,33.12331430496634,spot_peer,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,227188,14.277044745845132,baseline,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,227188,8.416742076619721,peer,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,227188,0.0336294015422267,relative_legacy,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30447,"Will Candy Meehan survive the recall vote in Norwood, Colorado, scheduled for December 10, 2024?",2024-12-03 14:30:03.133964+00,227188,48.54268271702416,spot_baseline,ProfessorSP,True,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,2024-12-04 15:30:00+00,30681 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,182315,-21.75914350726266,spot_baseline,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,182315,12.702511055187056,spot_peer,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,182315,0.1500865649889599,relative_legacy,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,182315,14.050837580599785,peer,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,182315,-19.068773687050506,baseline,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,185699,22.123686529601787,baseline,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,185699,42.2900864705148,peer,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,185699,0.5474206711379997,relative_legacy,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,185699,47.12743719646933,spot_peer,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,185699,26.303440583379377,spot_baseline,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,187708,45.740391762148136,spot_peer,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,187708,24.36690809668629,spot_baseline,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,187708,11.33971511457112,baseline,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,187708,0.2111618726199206,relative_legacy,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,187708,20.36029747054498,peer,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,188107,6.503980118204061,peer,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,188107,0.0302350664274497,relative_legacy,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,188107,-4.843910316316036,baseline,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,188107,-12.553088208385882,spot_baseline,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,188107,19.29636737216562,spot_peer,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,188909,42.22330006830476,spot_baseline,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,188909,58.53006977058541,spot_peer,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,188909,22.472820901431543,peer,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,188909,16.884601287145347,baseline,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,188909,0.2508854796176527,relative_legacy,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,189585,-27.97229086286693,peer,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,189585,-0.4265714113891234,relative_legacy,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,189585,-85.02334215798878,baseline,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,189585,-43.33766566343367,spot_peer,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,189585,-100.0,spot_baseline,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,189588,-24.497771461391675,spot_peer,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,189588,-73.69655941662059,spot_baseline,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,189588,-23.639510205713695,peer,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,189588,-77.96306006278743,baseline,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,189588,-0.3558996663017634,relative_legacy,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,189869,0.4511839568674512,relative_legacy,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,189869,37.564397839568905,peer,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,189869,35.40974686609859,baseline,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,189869,83.11912893751828,spot_peer,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,190710,-94.34164716336323,spot_baseline,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,190710,-39.28485863759461,spot_peer,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,190710,-0.4859951518284936,relative_legacy,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,190710,-88.28467343616306,baseline,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,190710,-33.008880152916625,peer,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,190772,-0.4267982619951016,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,190772,-73.75405308902072,baseline,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,190772,-29.364755418609583,peer,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,190772,-94.34164716336323,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,190772,-39.28485863759461,spot_peer,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191026,-18.477070490910734,spot_baseline,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191026,15.053302701452472,spot_peer,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191026,1.0449470067960591,peer,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191026,0.0024855810454165,relative_legacy,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191026,-1.404486167819298,baseline,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191046,0.7926997047358195,peer,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191046,-0.0245314980431537,relative_legacy,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191046,-8.977161901572963,baseline,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191046,5.229376025292342,spot_peer,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191046,-32.19280948873623,spot_baseline,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191284,-73.69655941662059,spot_baseline,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191284,-24.497771461391675,spot_peer,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191284,-39.32810531145754,baseline,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191284,-13.755368370118145,peer,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191284,-0.245199591188089,relative_legacy,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191471,-16.53926155632031,peer,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191471,-49.85305956092214,baseline,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191471,-0.2655696281213085,relative_legacy,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191471,-24.497771461391675,spot_peer,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191471,-73.69655941662059,spot_baseline,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191935,-15.200309344505014,spot_baseline,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191935,17.400289709785287,spot_peer,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191935,17.90998755800566,peer,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191935,0.2046944274514408,relative_legacy,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191935,-13.200534525770886,baseline,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191975,-13.799276976939929,baseline,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191975,0.0199341581436951,relative_legacy,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191975,5.961560388757791,peer,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191975,11.087894871868697,spot_peer,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,191975,-24.013400372371503,spot_baseline,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,192418,-96.1229801192527,spot_peer,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,192418,-137.51038262502954,baseline,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,192418,-1.0596743945125786,relative_legacy,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,192418,-75.04681517352996,peer,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,192472,26.074153047343263,baseline,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,192472,0.6833267893103008,relative_legacy,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,192472,53.00933200278047,peer,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,192472,26.303440583379377,spot_baseline,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,192472,47.12743719646933,spot_peer,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,192924,-38.458370273713,spot_baseline,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,192924,0.7416550394676278,spot_peer,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,192924,3.4799076195245044,peer,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,192924,-33.77928568489136,baseline,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,192924,0.0048465457339374,relative_legacy,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,193275,37.62899771052408,peer,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,193275,14.770364759604822,baseline,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,193275,0.4798347798764693,relative_legacy,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,193275,17.376706773670666,spot_baseline,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,193275,40.73364547893363,spot_peer,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,195286,83.11912893751828,spot_peer,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,195286,60.59521091541534,peer,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,195286,0.813112240172116,relative_legacy,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,195286,54.95961818947156,baseline,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,204737,-20.95349328582048,baseline,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,204737,-0.1257393208034608,relative_legacy,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,204737,-4.485850755865492,peer,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,204737,-51.45731728297583,spot_baseline,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,204737,-8.568867879241676,spot_peer,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,208405,-73.69655941662059,spot_baseline,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,208405,-24.497771461391675,spot_peer,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,208405,-0.4280969535069004,relative_legacy,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,208405,-29.16012022114441,peer,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,208405,-85.05633660727923,baseline,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,215725,42.01925054073262,baseline,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,215725,0.6840028273339802,relative_legacy,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,215725,51.273857700906326,peer,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,215725,70.18560416560433,spot_peer,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,215725,58.496250072115615,spot_baseline,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,218666,-135.10744405468793,spot_baseline,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,218666,-68.48344572204572,spot_peer,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,218666,-60.9033246327227,peer,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,218666,-126.6449522668655,baseline,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,218666,-0.8680306704835399,relative_legacy,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,218945,-0.7343933228567556,relative_legacy,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,218945,-115.09964476609814,baseline,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,218945,-51.03029975704072,peer,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,218945,-118.44245711374276,spot_baseline,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,218945,-56.54711405278845,spot_peer,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,219886,-38.85443034151272,spot_baseline,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,219886,0.4579761894955955,spot_peer,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,219886,0.0390247429573736,relative_legacy,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,219886,5.680659342211957,peer,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,219886,-37.99581484070145,baseline,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,220077,-49.95450184948621,baseline,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,220077,-3.385245463601461,peer,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,220077,-0.0839238889332496,relative_legacy,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,220077,-8.568867879241676,spot_peer,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,221727,-66.3958326325687,spot_peer,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,221727,-132.19280948873626,spot_baseline,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,221727,-0.7149974292506034,relative_legacy,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,221727,-101.55445518316368,baseline,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,221727,-50.07825723874022,peer,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,222631,-7.798250555584692,baseline,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,222631,-0.0672014910427059,relative_legacy,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,222631,-4.315520616165366,peer,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,222631,-173.6965594166206,spot_baseline,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,222631,-96.1229801192527,spot_peer,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,227188,48.54268271702416,spot_baseline,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,227188,63.056340778619344,spot_peer,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,227188,0.5442874548961062,relative_legacy,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,227188,32.160405071939465,baseline,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30496,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-04 14:21:11.953616+00,227188,42.06592009483333,peer,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30735 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,182315,-0.1624627373111551,relative_legacy,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,182315,-11.434350570868592,spot_peer,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,182315,-6.733803630016999,peer,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,182315,-28.23313554241949,baseline,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,182315,-32.19280948873623,spot_baseline,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,185699,35.21240659862466,peer,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,185699,0.4160775591709233,relative_legacy,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,185699,37.08215309320732,spot_peer,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,185699,35.61438102252753,spot_baseline,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,185699,30.418645866177208,baseline,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,187708,-9.3984538290379,peer,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,187708,-22.166318003249152,baseline,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,187708,-0.1538020766075401,relative_legacy,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,187708,-21.738385180645217,spot_peer,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,187708,-46.59383975788817,spot_baseline,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,188107,0.0612538833483883,relative_legacy,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,188107,14.984578372326292,spot_peer,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,188107,6.656810487976273,peer,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,188107,4.730571477835651,spot_baseline,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,188107,1.8775167593429167,baseline,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,188909,13.750352374993504,spot_baseline,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,188909,0.0996569960713736,relative_legacy,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,188909,5.535328270420224,baseline,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,188909,21.43829264136724,spot_peer,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,188909,9.366493755492892,peer,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,189585,-0.1513188646881171,relative_legacy,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,189585,-31.788102446898236,baseline,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,189585,-6.938678035154399,peer,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,189585,-11.434350570868592,spot_peer,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,189588,30.420112201587063,spot_peer,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,189588,38.93389016451027,peer,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,189588,0.4698471602916549,relative_legacy,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,189588,30.38899043757208,baseline,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,189869,-14.891491829994573,baseline,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,189869,-0.085291342532142,relative_legacy,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,189869,-4.370198749005778,peer,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,189869,-11.434350570868592,spot_peer,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,190710,-0.4217500568090049,relative_legacy,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,190710,-31.292094328025364,spot_peer,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,190710,-25.811109239150355,peer,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,190710,-59.94620704162715,spot_baseline,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,190710,-56.14809613896007,baseline,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,190772,26.92059718990385,spot_peer,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,190772,16.74909343169357,baseline,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,190772,21.412480535284764,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,190772,0.2561835590530928,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,190772,23.741997311958773,peer,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191026,0.030191706601956,relative_legacy,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191026,3.378792308812812,baseline,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191026,3.3394159599048017,peer,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191026,43.40098699930046,spot_peer,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191026,44.44565166490782,spot_baseline,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191046,0.0772700290348305,relative_legacy,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191046,8.860443859473389,peer,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191046,30.420112201587063,spot_peer,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191046,26.303440583379377,spot_baseline,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191046,7.309739295925906,baseline,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191284,-41.13056450137501,spot_peer,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191284,-39.3277245083404,baseline,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191284,-73.69655941662059,spot_baseline,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191284,-0.3245142627421221,relative_legacy,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191284,-20.913199710625666,peer,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191471,-0.2208462466776707,relative_legacy,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191471,-11.674125940547771,peer,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191471,-43.440282414577496,spot_baseline,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191471,-19.481993561290476,spot_peer,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191471,-29.42402783226717,baseline,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191935,43.34017857103285,spot_peer,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191935,0.502780678707796,relative_legacy,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191935,38.58432039673941,baseline,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191935,44.36066514756145,spot_baseline,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191935,41.54077565084857,peer,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191975,0.3074648136649962,relative_legacy,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191975,43.89529302100638,spot_peer,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191975,45.13649910966087,spot_baseline,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191975,23.960371024004477,baseline,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,191975,24.54849950338604,peer,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192049,-4.89423423961751,peer,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192049,-73.69655941662059,spot_baseline,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192049,-0.0790882432360843,relative_legacy,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192049,-9.059206930145471,baseline,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192049,-41.13056450137501,spot_peer,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192418,-0.315611798762628,relative_legacy,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192418,-40.744998324783424,baseline,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192418,-25.21823626114191,spot_peer,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192418,-17.611545079785532,peer,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192472,-31.935325027366385,baseline,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192472,-11.434350570868592,spot_peer,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192472,-0.1512429360153407,relative_legacy,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192472,-32.19280948873623,spot_baseline,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192472,-6.937737706030322,peer,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192924,-73.69655941662059,spot_baseline,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192924,-64.80789256009842,baseline,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192924,-33.2164899775207,peer,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192924,-0.526779383513225,relative_legacy,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,192924,-41.13056450137501,spot_peer,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,193275,-92.8673084892768,baseline,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,193275,-0.8104210780525241,relative_legacy,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,193275,-106.4917476681338,spot_baseline,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,193275,-53.73812883395984,peer,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,193275,-64.595743621343,spot_peer,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,195286,60.949244251892495,baseline,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,195286,0.6829074310272543,relative_legacy,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,195286,72.27457497404276,spot_peer,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,195286,54.21173163355229,peer,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,204737,-14.649687020108088,baseline,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,204737,-14.047801717634004,spot_peer,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,204737,-0.1002191350891909,relative_legacy,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,204737,-5.023826787897055,peer,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,204737,-35.845397091247634,spot_baseline,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,208405,-51.45731728297583,spot_baseline,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,208405,-46.46541103516665,baseline,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,208405,-17.578299681194625,peer,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,208405,-25.21823626114191,spot_peer,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,208405,-0.2997966492256703,relative_legacy,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,215725,0.073394031645001,relative_legacy,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,215725,0.0,spot_baseline,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,215725,0.0,baseline,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,215725,10.23058804180994,peer,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,215725,11.599822468017576,spot_peer,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,218666,29.14664897832411,peer,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,218666,19.17033493958893,baseline,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,218666,20.414071678022548,spot_baseline,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,218666,0.3309375406183512,relative_legacy,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,218666,26.20622889627042,spot_peer,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,218945,-1.0219482045779251,relative_legacy,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,218945,-121.75914350726268,spot_baseline,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,218945,-70.45913230773327,peer,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,218945,-75.51966865915962,spot_peer,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,218945,-118.3846979322734,baseline,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,219886,0.5820265103034383,relative_legacy,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,219886,43.77850288358356,baseline,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,219886,45.859198815185565,spot_baseline,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,219886,47.54863728406311,peer,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,219886,44.41238955083962,spot_peer,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,220077,-0.8114040284268521,relative_legacy,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,220077,-100.0,spot_baseline,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,220077,-55.058421259979646,peer,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,220077,-59.95085423494452,spot_peer,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,220077,-97.37856000689445,baseline,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,221727,-39.51698146101084,baseline,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,221727,-25.21823626114191,spot_peer,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,221727,-17.21006368607703,peer,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,221727,-0.3059076959299259,relative_legacy,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,222631,1.7065596986178364,baseline,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,222631,0.0149327687876388,relative_legacy,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,222631,38.68258525175859,spot_peer,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,222631,1.744045280869705,peer,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,227188,32.18180598168639,baseline,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,227188,46.33244044182018,spot_peer,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,227188,48.54268271702416,spot_baseline,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,227188,0.3905810421581459,relative_legacy,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30497,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-04 14:21:11.969472+00,227188,32.48506418253951,peer,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30736 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,182315,69.59938131099001,spot_baseline,RyansAGI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,182315,61.08269557721167,baseline,RyansAGI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,182315,6.573614056673816,peer,RyansAGI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,182315,-0.0239804398984137,relative_legacy,RyansAGI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,182315,15.592996726324042,spot_peer,RyansAGI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,185699,-4.129851576568282,peer,MWG,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,185699,45.49530342285635,baseline,MWG,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,185699,3.422083041831081,spot_peer,MWG,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,185699,-0.1706114216782674,relative_legacy,MWG,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,185699,52.60688116675877,spot_baseline,MWG,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,187708,-98.27907099677768,spot_baseline,twsummerbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,187708,-104.65029503070228,spot_peer,twsummerbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,187708,-47.86000829721001,baseline,twsummerbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,187708,-54.16995205295072,peer,twsummerbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,187708,-0.8285398731838343,relative_legacy,twsummerbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,188107,0.0086663398841715,relative_legacy,Cassie,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,188107,18.424224059095877,spot_peer,Cassie,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,188107,5.215782582018262,peer,Cassie,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,188107,30.629517782785108,baseline,Cassie,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,188107,73.55221772965375,spot_baseline,Cassie,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,188909,13.750352374993504,spot_baseline,silicoqr,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,188909,-12.282670090613788,peer,silicoqr,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,188909,5.553412643639773,baseline,silicoqr,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,188909,-0.2328579688148412,relative_legacy,silicoqr,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,188909,-24.40898678247264,spot_peer,silicoqr,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,189585,85.28389108129325,baseline,mf-bot-1,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,189585,18.316648974406903,peer,mf-bot-1,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,189585,26.480250010966092,spot_peer,mf-bot-1,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,189585,0.1267145103649934,relative_legacy,mf-bot-1,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,189588,84.79969065549501,spot_baseline,mf-bot-3,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,189588,0.1268397714580159,relative_legacy,mf-bot-3,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,189588,85.16044163495283,baseline,mf-bot-3,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,189588,26.480250010966092,spot_peer,mf-bot-3,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,189588,18.324588451268667,peer,mf-bot-3,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,189869,0.021164542471433,relative_legacy,VeritasAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,189869,20.57388058083805,spot_peer,VeritasAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,189869,6.745291387852956,peer,VeritasAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,189869,35.41271299683616,baseline,VeritasAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,190710,79.90873060740036,spot_baseline,Bot_Pepa,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,190710,0.0662437399070969,relative_legacy,Bot_Pepa,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,190710,74.9125527053521,baseline,Bot_Pepa,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,190710,13.86551813876709,peer,Bot_Pepa,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,190710,22.97708967114568,spot_peer,Bot_Pepa,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,190772,6.1564802222403845,peer,Jay_Bailey_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,190772,-0.0234000708187301,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,190772,54.472649423865256,baseline,Jay_Bailey_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,190772,15.592996726324042,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,190772,69.59938131099001,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191026,32.39048574429226,spot_baseline,manticAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191026,-11.057952362608823,spot_peer,manticAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191026,2.46258143404221,baseline,manticAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191026,-1.04981100814916,peer,manticAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191026,-0.0276236661300285,relative_legacy,manticAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191046,20.57388058083805,spot_peer,archipelago,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191046,4.137644162551123,peer,archipelago,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191046,0.0119990584259467,relative_legacy,archipelago,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191046,21.24314475032647,baseline,archipelago,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191046,76.55347463629771,spot_baseline,archipelago,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191284,92.5999418556223,spot_baseline,000_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191284,13.689963330440682,peer,000_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191284,49.41476878005975,baseline,000_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191284,32.06719620889457,spot_peer,000_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191284,0.1084907468903992,relative_legacy,000_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191471,0.031880947602317,relative_legacy,HSeldon,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191471,51.91700571297435,baseline,HSeldon,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191471,8.993494085288411,peer,HSeldon,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191471,20.57388058083805,spot_peer,HSeldon,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191471,76.55347463629771,spot_baseline,HSeldon,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191935,54.59683691052925,spot_baseline,pgodzinai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191935,4.8473929955057775,spot_peer,pgodzinai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191935,-0.1550161074476613,relative_legacy,pgodzinai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191935,-2.959344103158062,peer,pgodzinai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,191935,47.75892590946008,baseline,pgodzinai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192049,-0.1282194955895344,relative_legacy,gnosis-ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192049,-200.56628964710995,spot_peer,gnosis-ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192049,-9.923881637387542,baseline,gnosis-ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192049,-8.572169496938967,peer,gnosis-ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192049,-232.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192418,32.06719620889457,spot_peer,InstitutPelFutur,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192418,0.1585049323470838,relative_legacy,InstitutPelFutur,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192418,19.4004305729398,peer,InstitutPelFutur,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192418,73.33833052278547,baseline,InstitutPelFutur,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192472,0.1577150646182499,relative_legacy,bestworldbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192472,88.90784452310096,baseline,bestworldbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192472,29.86853170267516,spot_peer,bestworldbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192472,20.52059478649024,peer,bestworldbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192472,89.53026213333067,spot_baseline,bestworldbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192924,76.55347463629771,spot_baseline,acm_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192924,11.026000530954308,peer,acm_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192924,20.57388058083805,spot_peer,acm_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192924,0.0369743399700972,relative_legacy,acm_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,192924,67.405770067633,baseline,acm_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,193275,-0.6397351676013671,relative_legacy,histerio,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,193275,-37.96453338732748,peer,histerio,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,193275,-0.0984289446273063,baseline,histerio,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,193275,-39.34069726196596,spot_peer,histerio,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,193275,-7.096652135414342,spot_baseline,histerio,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,195286,0.0271824221048513,peer,Unwrapped80T,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,195286,-0.0956608056796418,relative_legacy,Unwrapped80T,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,195286,42.21175473438317,baseline,Unwrapped80T,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,195286,7.640355808924121,spot_peer,Unwrapped80T,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,204737,0.7077647535473899,peer,SynapseSeer,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,204737,23.99726271173885,baseline,SynapseSeer,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,204737,-0.0530986468990775,relative_legacy,SynapseSeer,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,204737,7.640355808924121,spot_peer,SynapseSeer,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,208405,87.97057662822883,spot_baseline,mf-bot-4,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,208405,20.145664142074263,peer,mf-bot-4,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,208405,0.1520698990825036,relative_legacy,mf-bot-4,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,208405,87.32052825861646,baseline,mf-bot-4,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,208405,28.75140370523953,spot_peer,mf-bot-4,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,215725,4.870724034064747,peer,estr.ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,215725,14.30933632647314,spot_peer,estr.ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,215725,-0.0281680384926079,relative_legacy,estr.ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,215725,48.76052501274072,baseline,estr.ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,215725,67.80719051126377,spot_baseline,estr.ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,218666,-107.09665213541436,spot_baseline,GreeneiBot2,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,218666,-114.5426639500121,peer,GreeneiBot2,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,218666,-100.79524442381684,baseline,GreeneiBot2,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,218666,-110.96590591982698,spot_peer,GreeneiBot2,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,218666,-1.693959135858459,relative_legacy,GreeneiBot2,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,218945,15.439582322663544,peer,SeidrBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,218945,24.7435144516067,spot_peer,SeidrBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,218945,80.13024891922528,baseline,SeidrBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,218945,0.0885085288878224,relative_legacy,SeidrBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,218945,82.37493603082727,spot_baseline,SeidrBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,219886,73.17914787171277,spot_baseline,SaraBase,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,219886,67.75168756519112,baseline,SaraBase,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,219886,18.157011994906075,spot_peer,SaraBase,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,219886,9.1725869569022,peer,SaraBase,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,219886,0.0042261713950917,relative_legacy,SaraBase,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,220077,82.83545675419796,baseline,mmBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,220077,0.1117765875113859,relative_legacy,mmBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,220077,26.480250010966092,spot_peer,mmBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,220077,17.149070331879944,peer,mmBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,220077,84.79969065549501,spot_baseline,mmBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,221727,92.5999418556223,spot_baseline,mf-bot-5,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,221727,18.837325759385408,peer,mf-bot-5,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,221727,0.1540481218475201,relative_legacy,mf-bot-5,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,221727,32.06719620889457,spot_peer,mf-bot-5,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,221727,71.12930036316938,baseline,mf-bot-5,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,222631,0.914672192938256,peer,Grizeu_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,222631,3.466506737491577,baseline,Grizeu_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,222631,0.0038144489478919,relative_legacy,Grizeu_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,222631,20.57388058083805,spot_peer,Grizeu_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,227188,48.54268271702416,spot_baseline,ProfessorSP,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,227188,0.5110924219391143,spot_peer,ProfessorSP,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,227188,-0.153927664670803,relative_legacy,ProfessorSP,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,227188,32.20061945288463,baseline,ProfessorSP,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30498,Will November 2024 have a global temperature increase of >1.31 degrees?,2024-12-04 14:21:11.982913+00,227188,-4.559628531734744,peer,ProfessorSP,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30737 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,182315,-0.0989216734368699,relative_legacy,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,182315,59.56088096313096,baseline,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,182315,9.856708395227107,peer,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,182315,11.022359429287608,spot_peer,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,182315,67.80719051126377,spot_baseline,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,185699,95.60566524124027,spot_baseline,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,185699,30.933074958336057,spot_peer,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,185699,27.551017830738225,peer,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,185699,83.90486933005211,baseline,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,185699,0.1451091443841822,relative_legacy,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,187708,-105.11708389146035,spot_peer,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,187708,-47.07168843439787,baseline,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,187708,-51.55599358562157,peer,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,187708,-0.84762639831106,relative_legacy,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,187708,-94.34164716336323,spot_baseline,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,188107,69.00445467787135,spot_baseline,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,188107,11.87990238680609,spot_peer,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,188107,-0.0246200085747337,relative_legacy,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,188107,30.63345899572419,baseline,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,188107,6.373529424819527,peer,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,188909,26.75029644364952,baseline,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,188909,9.722551934578714,spot_peer,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,188909,4.857812472001716,peer,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,188909,-0.034170416496281,relative_legacy,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,188909,65.99245584023782,spot_baseline,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,189585,0.0575809469152401,relative_legacy,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,189585,23.193273113780563,spot_peer,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,189585,83.57591071175605,baseline,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,189585,24.787949103315366,peer,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,189588,18.92077281242427,peer,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,189588,17.286903683652532,spot_peer,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,189588,75.43896688604787,baseline,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,189588,-0.0223607785550427,relative_legacy,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,189869,-173.6965594166206,spot_baseline,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,189869,-74.03398061709973,peer,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,189869,-161.95520537311845,spot_peer,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,189869,-80.35313868722699,baseline,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,189869,-1.1496223207286371,relative_legacy,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,190710,86.89371190697788,baseline,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,190710,28.780219311709047,spot_peer,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,190710,0.1284497881902351,relative_legacy,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,190710,28.39955585374074,peer,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,190710,92.5999418556223,spot_baseline,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,190772,52.60688116675877,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,190772,0.1351061446455438,spot_peer,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,190772,-0.0028187986505189,peer,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,190772,-0.2036916157374993,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,190772,41.200329354456045,baseline,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191026,23.06845508960825,spot_peer,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191026,1.772462250492195,peer,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191026,0.0036701676898613,relative_legacy,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191026,6.434618595627024,baseline,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191026,84.6254251608302,spot_baseline,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191046,84.79969065549501,spot_baseline,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191046,6.907962674047697,peer,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191046,0.0264226823300375,relative_legacy,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191046,23.504282328866772,baseline,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191046,23.193273113780563,spot_peer,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191284,28.780219311709047,spot_peer,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191284,49.41427385589312,baseline,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191284,0.0878224767270267,relative_legacy,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191284,16.342085537801665,peer,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191471,89.53026213333065,spot_baseline,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191471,26.581554805489603,spot_peer,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191471,0.0783073844396801,relative_legacy,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191471,60.770131918256624,baseline,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191471,18.311252946187413,peer,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191935,0.0359603765756358,relative_legacy,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191935,19.56395355274657,peer,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191935,72.76852027053387,baseline,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191935,22.038698718640944,spot_peer,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,191935,83.18772411916731,spot_baseline,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192049,0.0175444364974396,relative_legacy,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192049,3.6789750204105305,peer,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192049,28.780219311709047,spot_peer,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192049,11.548338284613406,baseline,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192418,13.726614099719976,peer,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192418,60.639839585348334,baseline,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192418,-0.0165911015018391,relative_legacy,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192418,17.286903683652532,spot_peer,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192472,81.55754288625727,spot_baseline,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192472,20.871078009067837,spot_peer,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192472,81.04810377317938,baseline,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192472,22.558215707436176,peer,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192472,0.0269772430400994,relative_legacy,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192924,81.63077817175882,baseline,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192924,25.788053298557926,peer,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192924,0.1193357610039396,relative_legacy,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192924,28.780219311709047,spot_peer,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,192924,92.5999418556223,spot_baseline,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,193275,81.0648747782646,spot_baseline,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,193275,17.859295309064716,peer,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,193275,0.0050866142865638,relative_legacy,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,193275,71.1776751384621,baseline,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,193275,20.518203448727352,spot_peer,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,195286,66.82035835175554,baseline,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,195286,0.102518409133354,relative_legacy,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,195286,20.89540790606022,peer,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,195286,28.780219311709047,spot_peer,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,204737,72.59592345091876,spot_baseline,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,204737,29.89226174892536,baseline,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,204737,14.452299389383215,spot_peer,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,204737,-0.0074030059047742,relative_legacy,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,204737,6.899847837584259,peer,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,208405,23.193273113780563,spot_peer,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,208405,0.0585748752186049,relative_legacy,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,208405,24.86244950539873,peer,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,208405,83.24902156622292,baseline,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,215725,28.780219311709047,spot_peer,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,215725,20.83966546264937,peer,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,215725,0.1023214119105739,relative_legacy,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,215725,66.62654715989898,baseline,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,218666,-0.2442531840255777,relative_legacy,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,218666,0.4217452558604833,spot_peer,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,218666,50.00457210896998,baseline,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,218666,1.4187269733008632,peer,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,218666,53.00707422250839,spot_baseline,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,218945,-332.1928094887361,spot_baseline,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,218945,-275.4784752021564,spot_peer,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,218945,-4.000616752405845,relative_legacy,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,218945,-323.33646820012893,baseline,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,218945,-272.2328147580468,peer,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,219886,-0.0146085770418411,relative_legacy,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,219886,19.50284523920262,peer,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,219886,76.43081941429826,baseline,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,219886,17.85670235470559,spot_peer,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,219886,77.3490027495558,spot_baseline,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,220077,-0.0221788975031738,relative_legacy,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,220077,75.01659291220456,baseline,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,220077,18.94067270037932,peer,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,220077,17.286903683652532,spot_peer,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,221727,58.80617348710533,baseline,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,221727,-0.0153859713636839,relative_legacy,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,221727,13.299453500593524,peer,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,221727,17.286903683652532,spot_peer,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,222631,3.4807459275530275,baseline,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,222631,0.7860037690352574,peer,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,222631,0.0,relative_legacy,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,222631,17.286903683652532,spot_peer,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,227188,-0.1283976905916059,relative_legacy,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,227188,4.353378911738576,spot_peer,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,227188,3.1243185764824166,peer,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,227188,38.82832249007737,baseline,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30499,Will November 2024 have a global temperature increase of <1.25 degrees?,2024-12-04 14:21:11.995938+00,227188,58.496250072115615,spot_baseline,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30738 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,182315,-51.45731728297583,spot_baseline,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,182315,-64.35133712430302,spot_peer,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,182315,-53.60558277864902,peer,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,182315,-45.2349828137456,baseline,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,182315,-1.0173073198261693,relative_legacy,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,185699,34.282102362400096,spot_peer,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,185699,0.2000750298824584,relative_legacy,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,185699,34.90128920055271,peer,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,185699,77.10365051787623,baseline,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,185699,86.39384504239716,spot_baseline,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,187708,76.55347463629771,spot_baseline,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,187708,15.05656386917514,peer,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,187708,27.241250746757924,spot_peer,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,187708,39.24701545678064,baseline,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,187708,0.0308099484350274,relative_legacy,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,188107,35.126794928753306,baseline,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,188107,13.26546635012931,peer,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,188107,0.0234823887179055,relative_legacy,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,188107,26.12198510291712,spot_peer,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,188107,74.98917686104764,spot_baseline,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,188909,71.36958148433591,spot_baseline,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,188909,29.02912786170509,baseline,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,188909,23.53214011697075,spot_peer,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,188909,10.469756564496535,peer,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,188909,0.0082850709124236,relative_legacy,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,189585,-93.38367878347408,baseline,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,189585,-89.98167701656938,peer,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,189585,-99.08395509810562,spot_peer,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,189585,-1.5092688450868348,relative_legacy,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,189585,-100.0,spot_baseline,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,189588,0.0795525665415668,relative_legacy,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,189588,65.44801837257168,baseline,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,189588,26.48636245606857,peer,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,189588,14.321184377312155,spot_peer,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,189869,-14.893058014648036,baseline,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,189869,-22.49212548304012,peer,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,189869,-50.56745143402968,spot_peer,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,189869,-0.4723635986883985,relative_legacy,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,190710,46.46682670034443,spot_baseline,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,190710,-0.1530077420909242,relative_legacy,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,190710,10.37929426824731,peer,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,190710,43.64464241665318,baseline,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,190710,5.714050551345577,spot_peer,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,190772,59.99422642156959,baseline,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,190772,27.241250746757924,spot_peer,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,190772,23.986435619366542,peer,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,190772,0.079165049632997,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,190772,76.55347463629771,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191026,87.15986799255182,spot_baseline,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191026,6.627970016869118,baseline,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191026,0.0130910351217194,relative_legacy,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191026,34.83019696693575,spot_peer,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191026,2.6764799197169413,peer,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191046,-0.1520113154732518,relative_legacy,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191046,-17.694808221793856,spot_peer,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191046,3.825340656776977,baseline,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191046,-4.366672812346896,peer,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191046,13.750352374993504,spot_baseline,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191284,88.75252707415875,spot_baseline,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191284,20.36185663891772,peer,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191284,47.36060817642889,baseline,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191284,35.969755317396704,spot_peer,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191284,0.097739627539294,relative_legacy,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191471,14.545739411192171,baseline,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191471,-0.3141150639675944,relative_legacy,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191471,-6.652542370088578,peer,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191471,-12.212503673257247,spot_peer,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191471,21.412480535284764,spot_baseline,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191935,76.55347463629771,spot_baseline,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191935,0.1066306153606794,relative_legacy,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191935,27.68558945735092,peer,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191935,27.241250746757924,spot_peer,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191935,66.96477393852336,baseline,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191975,84.93201455554781,baseline,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191975,0.2868659205880055,relative_legacy,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191975,42.0372363035064,spot_peer,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191975,40.70843072064111,peer,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,191975,97.23250415571516,spot_baseline,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192049,-0.0016254816705129,relative_legacy,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192049,8.560672815368582,baseline,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192049,20.983225268932408,spot_peer,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192049,2.7829303295758945,peer,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192418,0.081746925502769,relative_legacy,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192418,60.651417499307655,baseline,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192418,24.2891925127277,peer,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192418,27.241250746757924,spot_peer,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192472,84.79969065549501,spot_baseline,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192472,39.60914730472535,peer,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192472,0.2617135722611031,relative_legacy,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192472,33.14147411088165,spot_peer,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192472,84.34141003691983,baseline,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192924,4.6614840460021165,spot_peer,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192924,39.719112157606254,baseline,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192924,7.88654958923195,peer,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192924,-0.1694098783745846,relative_legacy,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,192924,44.99574836280035,spot_baseline,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,193275,26.303440583379377,spot_baseline,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,193275,-10.024369823178402,peer,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,193275,-8.71298866157402,spot_peer,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,193275,-0.4198565307652476,relative_legacy,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,193275,15.4613766166609,baseline,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,195286,20.983225268932408,spot_peer,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,195286,48.92903488293901,baseline,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,195286,17.19820552346261,peer,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,195286,0.0048250712280914,relative_legacy,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,204737,-16.81227588083271,spot_baseline,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,204737,-6.949442765991334,baseline,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,204737,-15.513340544402444,peer,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,204737,-39.56257555704822,spot_peer,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,204737,-0.3559837503025047,relative_legacy,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,208405,-2.1229527892811464,relative_legacy,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,208405,-151.8143420674982,spot_peer,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,208405,-134.41878578423666,peer,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,208405,-155.0502716441343,baseline,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,208405,-173.6965594166206,spot_baseline,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,215725,48.54268271702416,spot_baseline,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,215725,7.199339578659081,spot_peer,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,215725,-0.1338527713230445,relative_legacy,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,215725,34.94402547286539,baseline,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,215725,7.152359056403679,peer,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,218666,4.51023741608437,spot_peer,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,218666,9.409696154077912,peer,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,218666,42.34104098415644,baseline,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,218666,-0.1676687706513861,relative_legacy,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,218666,44.78436443620852,spot_baseline,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,218945,-100.0,spot_baseline,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,218945,-1.5440064938029807,relative_legacy,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,218945,-92.58804455977968,peer,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,218945,-99.08395509810562,spot_peer,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,218945,-97.38981742246284,baseline,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,219886,33.170143964267346,spot_peer,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,219886,0.2600984727159022,relative_legacy,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,219886,39.23088636870283,peer,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,219886,83.2000078562959,baseline,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,219886,84.83975995281935,spot_baseline,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,220077,26.303440583379377,spot_baseline,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,220077,-0.3142082254933572,relative_legacy,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,220077,25.862257549256658,baseline,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,220077,-2.7282239002859328,peer,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,220077,-8.71298866157402,spot_peer,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,221727,32.311101402451015,peer,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,221727,38.72260662910367,spot_peer,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,221727,0.1995439878069591,relative_legacy,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,221727,71.12505101367078,baseline,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,221727,92.5999418556223,spot_baseline,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,222631,27.241250746757924,spot_peer,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,222631,3.49305482682803,baseline,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,222631,0.0023653561229257,relative_legacy,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,222631,1.2429897253112765,peer,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,227188,25.280782041244105,peer,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,227188,58.42066888759034,baseline,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,227188,0.1320214522568681,relative_legacy,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,227188,35.41026448185201,spot_peer,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30500,Will November 2024 have a global temperature increase of greater than or equal to 1.25 degrees and less than or equal to 1.31 degrees?,2024-12-04 14:21:12.009103+00,227188,87.97057662822883,spot_baseline,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30739 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,182315,-25.18812452728579,baseline,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,182315,-28.63041851566409,spot_baseline,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,182315,-0.7275186969844991,relative_legacy,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,182315,-28.531794489526053,spot_peer,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,182315,-38.880464636548425,peer,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,185699,51.474843242379166,spot_peer,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,185699,32.8406484189813,peer,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,185699,75.2827652799938,baseline,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,185699,83.18772411916731,spot_baseline,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,185699,0.2579749422888671,relative_legacy,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,187708,41.92233441097445,baseline,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,187708,0.1845637367304363,relative_legacy,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,187708,48.89112731300262,spot_peer,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,187708,22.23040819632114,peer,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,187708,79.57669477823923,spot_baseline,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,188107,-72.9351721100201,spot_peer,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,188107,-46.05450656699016,baseline,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,188107,-90.68905956085187,spot_baseline,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,188107,-40.31773628491753,peer,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,188107,-0.6812879509476517,relative_legacy,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,188909,35.61438102252753,spot_baseline,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,188909,17.435794326511516,spot_peer,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,188909,14.539299888088584,baseline,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,188909,5.887842473809052,peer,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,188909,-0.01645850099384,relative_legacy,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,189585,22.81281417685647,peer,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,189585,66.98514038212345,baseline,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,189585,0.1118873837065969,relative_legacy,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,189585,40.46996736539769,spot_peer,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,189588,0.1351228765964131,relative_legacy,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,189588,69.20127676581328,baseline,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,189588,46.7279928432232,spot_peer,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,189588,24.25788346422617,peer,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,189869,-173.6965594166206,spot_baseline,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,189869,-63.55769932606055,peer,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,189869,-80.35782391864869,baseline,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,189869,-132.3275999710329,spot_peer,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,189869,-0.9975944036336902,relative_legacy,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,190710,-56.360655187111874,baseline,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,190710,-59.94620704162715,spot_baseline,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,190710,-50.938453094721176,spot_peer,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,190710,-64.46082372876751,peer,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,190710,-1.0852084127896031,relative_legacy,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,190772,41.25818208543697,baseline,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,190772,0.0076703847056985,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,190772,29.594043168460768,spot_peer,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,190772,52.60688116675877,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,190772,13.039867494916964,peer,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191026,75.44328220842604,spot_baseline,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191026,5.7374921158986,baseline,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191026,0.0218241497991937,relative_legacy,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191026,45.933642648376,spot_peer,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191026,3.540294504709099,peer,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191046,5.139757711639574,peer,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191046,19.036226485062777,spot_peer,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191046,37.85116232537298,spot_baseline,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191046,10.496014307877145,baseline,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191046,-0.0067648093679145,relative_legacy,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191284,24.397917234415047,peer,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191284,45.250754592760906,baseline,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191284,84.79969065549501,spot_baseline,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191284,0.2138251499166799,relative_legacy,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191284,52.62821620734695,spot_peer,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191471,31.017869969218022,spot_peer,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191471,13.927027750458748,peer,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191471,54.59683691052925,spot_baseline,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191471,37.121342086627934,baseline,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191471,0.0455073637380724,relative_legacy,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191935,0.2556910365891105,relative_legacy,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191935,51.474843242379166,spot_peer,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191935,83.18772411916731,spot_baseline,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191935,72.91187860364538,baseline,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191935,32.354563303131826,peer,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191975,15.563042725716937,peer,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191975,59.13602719193067,spot_baseline,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191975,37.10583318310725,baseline,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191975,34.265691332395825,spot_peer,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,191975,0.0768788794333569,relative_legacy,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192049,-96.20912756937943,baseline,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192049,-70.16074613538186,peer,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192049,-340.3175891882988,spot_peer,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192049,-1.0472742607328156,relative_legacy,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192049,-464.3856189774723,spot_baseline,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192418,19.036226485062777,spot_peer,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192418,4.58608505009817,peer,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192418,-0.1107993916308008,relative_legacy,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192418,29.99343368577948,baseline,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192472,29.158035486792905,peer,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192472,0.1983496561384333,relative_legacy,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192472,76.19309259063573,baseline,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192472,46.7279928432232,spot_peer,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192924,-9.181162533284065,peer,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192924,18.14206402801417,spot_baseline,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192924,4.934233281250547,spot_peer,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192924,-0.3184156354991375,relative_legacy,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,192924,16.037443124152038,baseline,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,193275,25.81908952189268,peer,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,193275,44.39441301056113,spot_peer,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,193275,66.27572902471888,baseline,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,193275,73.29203821082574,spot_baseline,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,193275,0.1598515928569451,relative_legacy,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,195286,0.3107602696777655,relative_legacy,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,195286,66.92086779912209,baseline,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,195286,58.20934872556895,spot_peer,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,195286,34.053378444738584,peer,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,204737,-206.6683331785545,spot_peer,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,204737,-1.2839632181966418,relative_legacy,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,204737,-85.1083879774709,peer,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,204737,-112.3944697048904,baseline,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,204737,-277.59597257820707,spot_baseline,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,208405,83.52362202021733,baseline,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,208405,35.091248044566605,peer,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,208405,52.62821620734695,spot_peer,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,208405,0.279537831492924,relative_legacy,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,215725,-174.1820627434886,spot_peer,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,215725,-232.1928094887363,spot_baseline,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,215725,-2.029193725027772,relative_legacy,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,215725,-167.25514499830285,baseline,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,215725,-134.6868511362482,peer,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,218666,0.370250165734069,relative_legacy,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,218666,41.49259885110073,peer,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,218666,94.71050515678746,spot_baseline,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,218666,59.71947104979697,spot_peer,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,218666,89.77378335499348,baseline,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,218945,46.7279928432232,spot_peer,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,218945,29.07215306011004,peer,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,218945,74.59003779147658,baseline,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,218945,0.1981440913743089,relative_legacy,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,219886,74.63127664254588,spot_baseline,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,219886,45.352647171123024,spot_peer,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,219886,0.1798796227970373,relative_legacy,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,219886,70.91364217163095,baseline,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,219886,27.635517599036277,peer,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,220077,0.1982856235557385,relative_legacy,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,220077,29.1490058384625,peer,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,220077,75.51036916227118,baseline,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,220077,46.7279928432232,spot_peer,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,221727,46.7279928432232,spot_peer,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,221727,26.36816024394668,peer,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,221727,58.87061931169115,baseline,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,221727,0.1947943748933328,relative_legacy,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,222631,46.7279928432232,spot_peer,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,222631,3.5096200187384183,baseline,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,222631,2.142260686365796,peer,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,222631,0.0109783970251606,relative_legacy,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,227188,25.150613904130665,baseline,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,227188,5.794271476385856,peer,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,227188,37.85116232537298,spot_baseline,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,227188,19.036226485062777,spot_peer,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30501,"Will the US national average retail price of regular gasoline be greater than $3.080 for the week of December 9, 2024?",2024-12-04 14:21:12.33873+00,227188,-0.0628714307444674,relative_legacy,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30740 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,182315,40.05379295837288,spot_baseline,RyansAGI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,182315,35.26560167325068,baseline,RyansAGI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,182315,42.13213657255605,spot_peer,RyansAGI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,182315,36.177505162558674,peer,RyansAGI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,182315,0.4378044984319664,relative_legacy,RyansAGI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,185699,-8.926733809708741,spot_baseline,MWG,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,185699,6.054731151280237,peer,MWG,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,185699,-8.200168306755044,baseline,MWG,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,185699,7.086238217318158,spot_peer,MWG,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,185699,0.00597143565679,relative_legacy,MWG,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,187708,-24.596928874077168,baseline,twsummerbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,187708,-10.690697946451095,peer,twsummerbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,187708,-45.79896444633908,spot_baseline,twsummerbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,187708,-19.29609231866775,spot_peer,twsummerbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,187708,-0.1193776922716313,relative_legacy,twsummerbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,188107,-53.18511642615936,spot_baseline,Cassie,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,188107,-24.5809340425384,spot_peer,Cassie,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,188107,-0.1497831342694404,relative_legacy,Cassie,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,188107,-27.60668910450704,baseline,Cassie,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,188107,-13.029984107416269,peer,Cassie,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,188909,-11.996424646726606,peer,silicoqr,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,188909,-29.41854013040604,spot_peer,silicoqr,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,188909,-24.561331139189388,baseline,silicoqr,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,188909,-59.94620704162712,spot_baseline,silicoqr,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,188909,-0.1478844329362406,relative_legacy,silicoqr,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,189585,55.32783943809254,spot_peer,mf-bot-1,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,189585,19.415771911472454,baseline,mf-bot-1,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,189585,0.3199027101189006,relative_legacy,mf-bot-1,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,189585,27.18468733888152,peer,mf-bot-1,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,189588,0.0,spot_baseline,mf-bot-3,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,189588,13.473376665636868,spot_peer,mf-bot-3,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,189588,8.5503374534667,peer,mf-bot-3,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,189588,0.1009227379893979,relative_legacy,mf-bot-3,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,189588,0.0109116264038728,baseline,mf-bot-3,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,189869,0.2221471996925846,relative_legacy,VeritasAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,189869,32.293666399206366,spot_peer,VeritasAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,189869,12.169630060717036,baseline,VeritasAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,189869,14.918901212391106,peer,VeritasAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,190710,-152.66214977917346,spot_peer,Bot_Pepa,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,190710,-218.50891323887163,baseline,Bot_Pepa,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,190710,-232.19280948873623,spot_baseline,Bot_Pepa,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,190710,-2.081219868381344,relative_legacy,Bot_Pepa,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,190710,-146.01162678189516,peer,Bot_Pepa,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,190772,43.847970005791176,peer,Jay_Bailey_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,190772,48.90780684063936,baseline,Jay_Bailey_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,190772,0.5896063200946102,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,190772,58.04446481278915,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,190772,62.29303509201767,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191026,-101.88148362251108,spot_baseline,manticAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191026,-59.42351430128729,spot_peer,manticAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191026,-4.518944430470848,peer,manticAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191026,-0.0567582927064614,relative_legacy,manticAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191026,-7.748849301612798,baseline,manticAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191046,15.219779141676469,peer,archipelago,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191046,55.32783943809254,spot_peer,archipelago,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191046,16.29498202752561,baseline,archipelago,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191046,0.2006095564411801,relative_legacy,archipelago,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191046,58.496250072115615,spot_baseline,archipelago,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191284,26.303440583379377,spot_baseline,000_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191284,32.293666399206366,spot_peer,000_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191284,0.2666427238458189,relative_legacy,000_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191284,14.0358967070189,baseline,000_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191284,17.02878268822078,peer,000_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191471,0.4551924701655422,relative_legacy,HSeldon,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191471,48.54268271702416,spot_baseline,HSeldon,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191471,32.123108587833094,peer,HSeldon,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191471,48.205994639439474,spot_peer,HSeldon,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191471,33.03438886786346,baseline,HSeldon,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191935,11.103131238874395,spot_baseline,pgodzinai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191935,21.41774220226948,spot_peer,pgodzinai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191935,0.1834430204933787,relative_legacy,pgodzinai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191935,17.564862724062962,peer,pgodzinai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191935,9.731729300349624,baseline,pgodzinai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191975,34.17123065015711,baseline,jkraybill_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191975,43.117964785388985,spot_peer,jkraybill_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191975,33.99607780321725,peer,jkraybill_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191975,41.43159713613844,spot_baseline,jkraybill_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,191975,0.4335808561253232,relative_legacy,jkraybill_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192049,68.24790580753833,spot_peer,gnosis-ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192049,14.055458821694574,peer,gnosis-ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192049,0.1661611773226711,relative_legacy,gnosis-ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192049,16.022483874928994,baseline,gnosis-ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192418,55.32783943809254,spot_peer,InstitutPelFutur,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192418,42.12982727876858,peer,InstitutPelFutur,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192418,46.36230555961622,baseline,InstitutPelFutur,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192418,0.5629522136389113,relative_legacy,InstitutPelFutur,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192472,48.35398499153146,baseline,bestworldbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192472,48.205994639439474,spot_peer,bestworldbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192472,48.54268271702416,spot_baseline,bestworldbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192472,0.6057995113383716,relative_legacy,bestworldbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192472,50.29389874162256,peer,bestworldbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192924,31.08228511214357,spot_peer,acm_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192924,0.3031851789795998,relative_legacy,acm_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192924,26.61481977698621,peer,acm_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192924,21.81029908031848,baseline,acm_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,192924,24.610400988391653,spot_baseline,acm_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,193275,12.247429940473625,baseline,histerio,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,193275,9.491164702546698,spot_baseline,histerio,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,193275,0.2151556463462258,relative_legacy,histerio,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,193275,21.40548745831787,peer,histerio,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,193275,20.264369237301707,spot_peer,histerio,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,195286,-43.525198718827134,peer,Unwrapped80T,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,195286,-58.07730003732522,spot_peer,Unwrapped80T,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,195286,-72.26771540746645,baseline,Unwrapped80T,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,195286,-100.0,spot_baseline,Unwrapped80T,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,195286,-0.5980513074070258,relative_legacy,Unwrapped80T,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,204737,-134.70567936643147,spot_peer,SynapseSeer,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,204737,-56.20834086297555,peer,SynapseSeer,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,204737,-86.32140774831649,baseline,SynapseSeer,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,204737,-207.09665213541436,spot_baseline,SynapseSeer,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,204737,-0.7622361488967946,relative_legacy,SynapseSeer,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,208405,74.14812917166205,spot_peer,mf-bot-4,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,208405,54.16713534277304,peer,mf-bot-4,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,208405,55.56318110247588,baseline,mf-bot-4,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,208405,0.678368731745119,relative_legacy,mf-bot-4,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,215725,-18.17379245631973,peer,estr.ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,215725,-23.34468206352261,spot_peer,estr.ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,215725,-0.2459894329945869,relative_legacy,estr.ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,215725,-37.08380144814945,baseline,estr.ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,218666,14.10617651422166,peer,GreeneiBot2,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,218666,14.295897403616417,spot_peer,GreeneiBot2,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,218666,1.0918091634260891,baseline,GreeneiBot2,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,218666,0.1147111877060408,relative_legacy,GreeneiBot2,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,218666,1.1495638837829438,spot_baseline,GreeneiBot2,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,218945,36.89882054007595,baseline,SeidrBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,218945,37.85116232537298,spot_baseline,SeidrBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,218945,40.55613944937789,spot_peer,SeidrBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,218945,0.4856869900995224,relative_legacy,SeidrBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,218945,41.19717667399864,peer,SeidrBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,219886,-84.06291533397973,spot_baseline,SaraBase,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,219886,-46.6742081120637,spot_peer,SaraBase,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,219886,-44.523048932037455,peer,SaraBase,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,219886,-0.6872335383014114,relative_legacy,SaraBase,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,219886,-79.11260442571833,baseline,SaraBase,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,220077,-57.81135329129823,peer,mmBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,220077,-98.88038967825749,baseline,mmBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,220077,-58.07730003732522,spot_peer,mmBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,220077,-0.8629963237529396,relative_legacy,mmBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,220077,-100.0,spot_baseline,mmBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,221727,-0.2886026671151894,relative_legacy,mf-bot-5,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,221727,-39.56881066217672,baseline,mf-bot-5,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,221727,-19.99304806627497,peer,mf-bot-5,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,221727,-23.34468206352261,spot_peer,mf-bot-5,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,222631,2.5974524686999603,spot_peer,Grizeu_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,222631,0.0,relative_legacy,Grizeu_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,222631,-0.7006031004050361,baseline,Grizeu_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,222631,0.1197201459181993,peer,Grizeu_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,222631,-15.200309344504996,spot_baseline,Grizeu_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,227188,-1.2422105736144815,relative_legacy,ProfessorSP,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,227188,-90.27398378298788,peer,ProfessorSP,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,227188,-205.8893689053569,spot_baseline,ProfessorSP,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,227188,-133.84186004560397,spot_peer,ProfessorSP,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30502,"Will the US national average retail price of regular gasoline be less than $3.020 for the week of December 9, 2024?",2024-12-04 14:21:12.353232+00,227188,-136.88021700836225,baseline,ProfessorSP,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30741 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,182315,-60.77582940554105,baseline,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,182315,-34.69902837046147,spot_peer,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,182315,-68.96598793878492,spot_baseline,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,182315,-0.5937788610669712,relative_legacy,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,182315,-28.994296871776434,peer,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,185699,0.0334099079103777,relative_legacy,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,185699,18.66088233581697,peer,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,185699,2.856915219677092,spot_baseline,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,185699,2.665511293061567,baseline,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,185699,16.690744867131237,spot_peer,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,187708,-0.7926112018719418,baseline,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,187708,8.375397286757691,peer,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,187708,-1.449956969511509,spot_baseline,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,187708,13.609148671035108,spot_peer,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,187708,0.0602702858993663,relative_legacy,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,188107,-25.723773138279505,baseline,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,188107,-0.1864334391664468,relative_legacy,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,188107,-19.742501463162256,spot_peer,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,188107,-48.06258409064208,spot_baseline,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,188107,-9.650363860762482,peer,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,188909,-21.75914350726266,spot_baseline,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,188909,-0.0094063045698389,relative_legacy,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,188909,-8.950497652690709,baseline,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,188909,0.5483224190789181,peer,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,188909,-0.9222117295927196,spot_peer,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,189585,-173.6965594166206,spot_baseline,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,189585,-1.6601339595236322,relative_legacy,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,189585,-109.63446097773232,spot_peer,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,189585,-171.595699872491,baseline,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,189585,-105.6268930478225,peer,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,189588,0.3261345885934514,relative_legacy,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,189588,39.82456082615779,peer,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,189588,33.46689242819186,spot_peer,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,189588,27.140988324174007,baseline,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,189869,33.46689242819186,spot_peer,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,189869,12.169963317669277,baseline,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,189869,16.431447163051217,peer,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,189869,0.1918416382869948,relative_legacy,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,190710,-118.44245711374276,spot_baseline,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,190710,-63.93440201845067,peer,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,190710,-1.1020765804754773,relative_legacy,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,190710,-111.55090786609044,baseline,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,190710,-70.09977687387625,spot_peer,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,190772,50.51957429999919,peer,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,190772,0.5477655467356283,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,190772,63.16310635869828,spot_peer,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,190772,53.2695544822904,baseline,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,190772,67.80719051126377,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191026,7.043597179460496,baseline,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191026,80.90248771886954,spot_peer,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191026,0.0775807188522272,relative_legacy,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191026,6.196427099768393,peer,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191046,-0.4323024222719581,relative_legacy,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191046,-173.6965594166206,spot_baseline,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191046,-29.69768008375952,peer,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191046,-109.63446097773232,spot_peer,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191046,-48.345958890946335,baseline,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191284,-109.63446097773232,spot_peer,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191284,-173.6965594166206,spot_baseline,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191284,-92.68604271390387,baseline,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191284,-0.8556899203846718,relative_legacy,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191284,-57.736279965836886,peer,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191471,-100.0,spot_baseline,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191471,-38.288737879128426,peer,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191471,-68.11382159259584,baseline,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191471,-0.6318624317867166,relative_legacy,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191471,-56.90407400833973,spot_peer,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191935,33.175767142904675,baseline,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191935,38.88926023470464,peer,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191935,41.72936547836337,spot_peer,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191935,0.3424515441105379,relative_legacy,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191935,37.85116232537298,spot_baseline,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191975,21.298070254440557,peer,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191975,22.81516906251332,spot_baseline,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191975,0.1929142961164205,relative_legacy,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191975,15.126642468796106,baseline,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,191975,30.97101054977548,spot_peer,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192049,27.684135875933613,peer,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192049,0.3318520687082819,relative_legacy,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192049,26.214784307982576,baseline,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192049,49.37922066842497,spot_peer,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192418,33.9223830306929,peer,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192418,30.005821715746244,baseline,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192418,41.72936547836337,spot_peer,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192418,0.3131446888451732,relative_legacy,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192472,-0.6726713807146147,relative_legacy,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192472,-33.32160240763701,peer,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192472,-73.47617035983957,baseline,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192472,-38.08378427477021,spot_peer,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192472,-73.69655941662059,spot_baseline,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192924,-88.71962056005442,baseline,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192924,-0.8733868360274353,relative_legacy,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192924,-100.0,spot_baseline,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192924,-56.90407400833973,spot_peer,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,192924,-49.04888822890985,peer,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,193275,49.36473339752101,spot_baseline,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,193275,44.09655104098538,baseline,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,193275,0.4536999317554803,relative_legacy,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,193275,49.10832281615126,peer,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,193275,49.96740349316177,spot_peer,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,195286,-0.4944170125173831,relative_legacy,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,195286,-73.69655941662059,spot_baseline,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,195286,-27.014627812654883,peer,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,195286,-38.08378427477021,spot_peer,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,195286,-53.25787758386304,baseline,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,204737,-27.31113753162261,spot_peer,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,204737,-0.1652516802416023,relative_legacy,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,204737,-24.54552041562072,baseline,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,204737,-58.6405917590825,spot_baseline,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,204737,-10.525961530945745,peer,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,208405,46.86942997834528,peer,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,208405,38.89196675233646,baseline,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,208405,0.4427501543087558,relative_legacy,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,208405,69.42113183652381,spot_peer,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,215725,-0.6822199854841112,relative_legacy,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,215725,-100.0,spot_baseline,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,215725,-56.90407400833973,spot_peer,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,215725,-40.60608452949997,peer,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,215725,-72.10085104047148,baseline,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,218666,0.1813655883476331,relative_legacy,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,218666,16.864203555883922,spot_baseline,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,218666,29.371999929086865,peer,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,218666,16.05248778179966,baseline,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,218666,26.71305445942229,spot_peer,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,218945,-100.0,spot_baseline,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,218945,-97.54923036004658,baseline,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,218945,-56.90407400833973,spot_peer,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,218945,-0.9310268193306128,relative_legacy,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,218945,-52.033781031663615,peer,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,219886,77.29497807915075,spot_baseline,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,219886,0.7247054871080528,relative_legacy,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,219886,71.79112920865735,baseline,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,219886,68.68471801027833,peer,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,219886,69.95168256766091,spot_peer,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,220077,-22.17145603453712,spot_peer,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,220077,-0.4521851826300945,relative_legacy,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,220077,-51.01625398550751,baseline,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,220077,-17.12106100014172,peer,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,221727,58.87133771553743,baseline,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,221727,0.6093280822258558,relative_legacy,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,221727,54.25368469234876,peer,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,221727,69.42113183652381,spot_peer,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,222631,1.9327171005396295,peer,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,222631,0.0182025162522433,relative_legacy,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,222631,41.72936547836337,spot_peer,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,222631,1.7530961197931667,baseline,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,227188,56.40841912577976,baseline,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,227188,51.02932691583755,peer,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,227188,84.79969065549501,spot_baseline,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,227188,0.6051565636483772,relative_legacy,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30503,"Will the US national average retail price of regular gasoline between $3.020 and $3.080 (inclusive) for the week of December 9, 2024?",2024-12-04 14:21:12.366893+00,227188,75.32135520064755,spot_peer,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,0.5,2024-12-05 15:30:00+00,30742 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,182315,-0.9056362248894436,relative_legacy,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,182315,-64.38561897747249,spot_baseline,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,182315,-44.403476187049904,peer,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,182315,-56.77920894266801,baseline,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,182315,-51.7054951881652,spot_peer,RyansAGI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,185699,0.5274111148162226,relative_legacy,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,185699,90.57977794117872,baseline,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,185699,95.60566524124027,spot_baseline,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,185699,62.76935133608318,spot_peer,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,185699,61.980201448399846,peer,MWG,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,187708,48.95429356424735,spot_baseline,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,187708,17.671278770842726,peer,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,187708,0.0514558152702251,relative_legacy,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,187708,27.408276614293907,baseline,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,187708,29.38997920998075,spot_peer,twsummerbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,188107,5.11841940951265,baseline,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,188107,-0.1665138128582796,relative_legacy,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,188107,1.0248917812274134,spot_peer,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,188107,9.310940439148176,spot_baseline,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,188107,1.684917390882407,peer,Cassie,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,188909,8.836835285894002,baseline,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,188909,-0.0690272592240698,relative_legacy,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,188909,9.683625611493436,spot_peer,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,188909,21.412480535284764,spot_baseline,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,188909,4.726951577817735,peer,silicoqr,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,189585,-0.794392443468513,relative_legacy,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,189585,-28.67132214927901,spot_peer,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,189585,-32.91655889821923,peer,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,189585,-40.157199715498045,baseline,mf-bot-1,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,189588,0.0850026997957406,relative_legacy,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,189588,48.54268271702416,spot_baseline,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,189588,29.095468863409764,spot_peer,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,189588,47.88811606235307,baseline,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,189588,31.776264082790124,peer,mf-bot-3,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,189869,-58.36753607978542,spot_peer,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,189869,-26.087083293020846,peer,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,189869,-34.09891234593434,baseline,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,189869,-73.69655941662059,spot_baseline,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,189869,-0.5181648486745493,relative_legacy,VeritasAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,190710,54.23254431115405,peer,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,190710,79.93956347835221,baseline,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,190710,55.03760339563234,spot_peer,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,190710,84.79969065549501,spot_baseline,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,190710,0.4231004226429625,relative_legacy,Bot_Pepa,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,190772,-50.61318350136799,baseline,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,190772,-0.8218294510743811,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,190772,-38.96385184620061,peer,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,190772,-64.38561897747249,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,190772,-51.7054951881652,spot_peer,Jay_Bailey_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191026,-0.0009608224426188,relative_legacy,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191026,1.5400497356445657,peer,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191026,35.78516509455253,spot_baseline,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191026,2.722252197056164,baseline,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191026,19.96737867403167,spot_peer,manticAI,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191046,0.0866340803778667,relative_legacy,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191046,13.986525605989447,peer,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191046,21.28732958711313,baseline,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191046,49.13738003150859,spot_peer,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191046,76.55347463629771,spot_baseline,archipelago,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191284,46.05578383541248,spot_peer,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191284,0.1739129332415207,relative_legacy,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191284,72.2466024471091,spot_baseline,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191284,25.73014615315193,peer,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191284,38.551015365077966,baseline,000_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191471,-32.19280948873623,spot_baseline,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191471,-0.4899926777470374,relative_legacy,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191471,-21.94900294370559,baseline,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191471,-17.90147760016845,peer,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191471,-28.67132214927901,spot_peer,HSeldon,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191935,94.11063109464314,spot_baseline,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191935,61.69964428725258,spot_peer,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191935,0.4535004768410804,relative_legacy,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191935,53.87597318703936,peer,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191935,78.89272741936048,baseline,pgodzinai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191975,58.90222266503803,spot_peer,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191975,45.59132521848053,peer,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191975,90.20092436492506,spot_baseline,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191975,0.3671878568582113,relative_legacy,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,191975,66.41443912094427,baseline,jkraybill_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192049,-77.18782581335493,spot_peer,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192049,-45.97902941676202,baseline,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192049,-34.60122848535458,peer,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192049,-0.6358671564805385,relative_legacy,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192049,-100.0,spot_baseline,gnosis-ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192418,-1.110144523691082,relative_legacy,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192418,-59.69945381137667,peer,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192418,-79.28910672002368,baseline,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192418,-77.18782581335493,spot_peer,InstitutPelFutur,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192472,-77.18782581335493,spot_peer,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192472,-100.0,spot_baseline,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192472,-99.77076095370232,baseline,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192472,-1.386939580990008,relative_legacy,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192472,-76.16532138280124,peer,bestworldbot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192924,16.112233849693933,baseline,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192924,8.336106893473127,peer,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192924,7.343620469535946,spot_peer,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192924,-0.1781689539250093,relative_legacy,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,192924,18.14206402801417,spot_baseline,acm_bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,193275,10.921996325055368,spot_peer,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,193275,21.736654724313453,baseline,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,193275,11.970200734496403,peer,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,193275,-0.1606293054513223,relative_legacy,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,193275,23.143240844796505,spot_baseline,histerio,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,195286,-122.5015408810775,peer,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,195286,-232.1928094887363,spot_baseline,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,195286,-171.77267555520322,spot_peer,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,195286,-167.12081617983907,baseline,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,195286,-1.960133667847323,relative_legacy,Unwrapped80T,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,204737,57.865884602147375,spot_peer,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,204737,37.3378075017279,baseline,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,204737,25.149584522856657,peer,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,204737,0.2120989667490743,relative_legacy,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,204737,88.75252707415875,spot_baseline,SynapseSeer,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,208405,34.81599267382989,peer,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,208405,51.901505202989945,baseline,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,208405,29.095468863409764,spot_peer,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,208405,0.1259597852390802,relative_legacy,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,215725,33.080497527340405,peer,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,215725,42.87935455368308,spot_peer,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,215725,48.91299878685477,baseline,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,215725,67.80719051126377,spot_baseline,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,215725,0.1994258675774002,relative_legacy,estr.ai,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,218666,-0.3242318705449289,relative_legacy,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,218666,5.399100627095071,baseline,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,218666,-1.588559365538003,spot_peer,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,218666,0.1782451784275183,peer,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,218666,5.658352836636751,spot_baseline,GreeneiBot2,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,218945,-129.9182127827475,spot_peer,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,218945,-173.6965594166206,spot_baseline,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,218945,-126.98363649021358,peer,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,218945,-2.084085135834859,relative_legacy,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,218945,-169.52729374700434,baseline,SeidrBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,219886,0.5049566852538874,relative_legacy,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,219886,60.33922685716787,peer,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,219886,93.28171027418507,spot_baseline,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,219886,61.10654583088306,spot_peer,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,219886,88.33105781123324,baseline,SaraBase,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,220077,46.50489324343165,peer,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,220077,67.38098830551317,baseline,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,220077,0.2805848004459439,relative_legacy,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,220077,42.87935455368308,spot_peer,mmBot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,221727,0.1369489718430671,relative_legacy,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,221727,44.97284517852941,baseline,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,221727,36.217313662062814,spot_peer,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,221727,30.036770303346582,peer,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,222631,21.445613673348152,spot_peer,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,222631,0.0,relative_legacy,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,222631,1.7603240555644533,baseline,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,222631,0.9973598514894408,peer,Grizeu_Bot,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,227188,37.85116232537298,spot_baseline,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,227188,25.19571671738037,baseline,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,227188,16.018573607430017,peer,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,227188,-0.0107078214862713,relative_legacy,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30504,"Will the Alpental ski resort be listed as Open by On the Snow's Ski Report on December 6, 2024?",2024-12-04 14:21:12.380403+00,227188,21.445613673348152,spot_peer,ProfessorSP,True,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30743 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,182315,0.2548263200850051,relative_legacy,RyansAGI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,182315,77.62832207113033,baseline,RyansAGI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,182315,87.97057662822883,spot_baseline,RyansAGI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,182315,39.59489072561349,peer,RyansAGI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,182315,45.23210021729505,spot_peer,RyansAGI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,185699,-19.796883415057334,spot_peer,MWG,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,185699,-2.914634565951651,spot_baseline,MWG,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,185699,-0.5899529932724511,relative_legacy,MWG,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,185699,-2.7970540001670345,baseline,MWG,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,185699,-21.40110199269166,peer,MWG,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,187708,49.84843249255626,baseline,twsummerbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,187708,44.556683588759725,spot_peer,twsummerbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,187708,87.02660703959828,spot_baseline,twsummerbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,187708,0.1319270217031656,relative_legacy,twsummerbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,187708,25.81346470428937,peer,twsummerbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,188107,14.184699061567189,baseline,Cassie,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,188107,25.298074116987085,spot_baseline,Cassie,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,188107,0.33825819089613,peer,Cassie,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,188107,0.3895005638206754,spot_peer,Cassie,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,188107,-0.2201331275466713,relative_legacy,Cassie,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,188909,8.91037523295432,baseline,silicoqr,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,188909,-0.193062300292041,relative_legacy,silicoqr,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,188909,-2.3906679378142117,spot_peer,silicoqr,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,188909,-1.2594755499172008,peer,silicoqr,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,188909,21.412480535284736,spot_baseline,silicoqr,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,189585,47.95858068867106,baseline,mf-bot-1,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,189585,-0.0982779921795285,relative_legacy,mf-bot-1,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,189585,14.21354183002068,peer,mf-bot-1,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,189585,17.021175314102138,spot_peer,mf-bot-1,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,189588,30.10130255506722,peer,mf-bot-3,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,189588,0.1511756812455938,relative_legacy,mf-bot-3,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,189588,37.06308648220097,spot_peer,mf-bot-3,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,189588,60.04501080918333,baseline,mf-bot-3,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,189869,37.06308648220097,spot_peer,VeritasAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,189869,35.42292360897201,baseline,VeritasAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,189869,0.036914034138578,relative_legacy,VeritasAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,189869,16.979412435373035,peer,VeritasAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,190710,74.84612330040356,spot_baseline,Bot_Pepa,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,190710,35.84146504767165,spot_peer,Bot_Pepa,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,190710,32.712246070340065,peer,Bot_Pepa,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,190710,0.1528805315225044,relative_legacy,Bot_Pepa,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,190710,70.63077175622308,baseline,Bot_Pepa,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,190772,31.50596324332809,baseline,Jay_Bailey_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,190772,40.05379295837288,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,190772,9.4690207384993,peer,Jay_Bailey_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,190772,-0.1352010208701323,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,190772,10.947317247218692,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191026,-0.1168104855477046,relative_legacy,manticAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191026,-6.522305899599117,baseline,manticAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191026,-79.05186981958447,spot_peer,manticAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191026,-85.73004475490109,spot_baseline,manticAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191026,-5.985002606344501,peer,manticAI,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191046,48.544442364546704,spot_peer,archipelago,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191046,13.225139732713007,peer,archipelago,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191046,92.5999418556223,spot_baseline,archipelago,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191046,25.710878660889723,baseline,archipelago,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191046,0.0688384256739907,relative_legacy,archipelago,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191284,40.848790686828856,baseline,000_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191284,19.813678476477342,peer,000_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191284,37.06308648220097,spot_peer,000_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191284,0.0567671935701452,relative_legacy,000_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191471,39.46379483464146,spot_peer,HSeldon,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191471,28.074243336292025,peer,HSeldon,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191471,79.90873060740036,spot_baseline,HSeldon,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191471,0.1373094276195748,relative_legacy,HSeldon,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191471,54.54039600612117,baseline,HSeldon,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191935,0.1831994512501958,relative_legacy,pgodzinai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191935,79.90873060740036,spot_baseline,pgodzinai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191935,69.74666615985673,baseline,pgodzinai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191935,39.46379483464146,spot_peer,pgodzinai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191935,34.202459654915614,peer,pgodzinai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191975,-62.778258519052336,peer,jkraybill_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191975,-1.141197773098088,relative_legacy,jkraybill_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191975,-67.88898650433215,baseline,jkraybill_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191975,-84.33876533023603,spot_baseline,jkraybill_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,191975,-78.05639997640756,spot_peer,jkraybill_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192049,0.06036549424189,relative_legacy,gnosis-ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192049,20.20095901550582,peer,gnosis-ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192049,41.56053735714457,baseline,gnosis-ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192049,37.06308648220097,spot_peer,gnosis-ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192418,-40.80804863674765,baseline,InstitutPelFutur,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192418,-0.8614747199117766,relative_legacy,InstitutPelFutur,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192418,-42.8596901574461,peer,InstitutPelFutur,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192418,-54.52950138885995,spot_peer,InstitutPelFutur,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192472,0.3078355009361279,relative_legacy,bestworldbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192472,89.53026213333067,spot_baseline,bestworldbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192472,89.38512898369055,baseline,bestworldbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192472,44.09232274806175,peer,bestworldbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192472,46.34806575063344,spot_peer,bestworldbot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192924,77.82162501334082,baseline,acm_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192924,39.528140932612494,peer,acm_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192924,87.49936389329673,spot_baseline,acm_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192924,44.89494431674062,spot_peer,acm_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,192924,0.2526337735659594,relative_legacy,acm_bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,193275,34.679624002385616,baseline,histerio,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,193275,35.839626195665375,spot_baseline,histerio,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,193275,7.932052411110157,spot_peer,histerio,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,193275,5.970150269929847,peer,histerio,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,193275,-0.2146930874486706,relative_legacy,histerio,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,195286,9.37132012404054,spot_peer,Unwrapped80T,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,195286,37.85116232537298,spot_baseline,Unwrapped80T,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,195286,27.268632744803305,baseline,Unwrapped80T,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,195286,7.820313255841054,peer,Unwrapped80T,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,195286,-0.1497476200547405,relative_legacy,Unwrapped80T,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,204737,67.80719051126377,spot_baseline,SynapseSeer,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,204737,28.618289888497586,baseline,SynapseSeer,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,204737,0.0,relative_legacy,SynapseSeer,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,204737,30.80506100437545,spot_peer,SynapseSeer,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,204737,12.76851958598399,peer,SynapseSeer,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,208405,-0.2747847827028307,relative_legacy,mf-bot-4,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,208405,1.4963569769316365,peer,mf-bot-4,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,208405,30.11467102591621,baseline,mf-bot-4,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,208405,1.108847073869034,spot_peer,mf-bot-4,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,215725,-53.18588239833414,baseline,estr.ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,215725,-73.69655941662063,spot_baseline,estr.ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,215725,-70.44182962909306,spot_peer,estr.ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,215725,-0.9546268618846808,relative_legacy,estr.ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,215725,-50.1337520648971,peer,estr.ai,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,218666,24.692094845926803,spot_peer,GreeneiBot2,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,218666,22.06716780087852,peer,GreeneiBot2,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,218666,56.64970119492787,baseline,GreeneiBot2,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,218666,0.0066161553499936,relative_legacy,GreeneiBot2,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,218666,59.26364286065772,spot_baseline,GreeneiBot2,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,218945,34.34642604929505,peer,SeidrBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,218945,37.06308648220097,spot_peer,SeidrBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,218945,0.1757113962032201,relative_legacy,SeidrBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,218945,74.75479975656738,baseline,SeidrBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,219886,-92.65277713530988,baseline,SaraBase,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,219886,-1.4716955963969216,relative_legacy,SaraBase,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,219886,-85.41260074797668,peer,SaraBase,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,219886,-99.65416802275892,spot_baseline,SaraBase,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,219886,-89.01467424269131,spot_peer,SaraBase,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,220077,58.25747746177819,baseline,mmBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,220077,-0.0012378594888374,relative_legacy,mmBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,220077,24.143020112755195,spot_peer,mmBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,220077,21.256035964583333,peer,mmBot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,221727,-100.0,spot_baseline,mf-bot-5,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,221727,-1.2107512051334262,relative_legacy,mf-bot-5,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,221727,-89.26211936266256,spot_peer,mf-bot-5,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,221727,-68.24777542370768,peer,mf-bot-5,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,221727,-76.90201317788944,baseline,mf-bot-5,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,222631,71.36958148433588,spot_baseline,Grizeu_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,222631,0.0016634079300986,relative_legacy,Grizeu_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,222631,33.353975852413775,spot_peer,Grizeu_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,222631,3.3325013651291355,baseline,Grizeu_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,222631,1.5574165876963797,peer,Grizeu_Bot,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,227188,-2.163350409189842,relative_legacy,ProfessorSP,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,227188,-264.38561897747246,spot_baseline,ProfessorSP,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,227188,-176.1425652713026,baseline,ProfessorSP,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,227188,-137.56381057578383,peer,ProfessorSP,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30505,"Will Dogecoin close at below $0.50 a share every day before January 1, 2025?",2024-12-04 14:21:12.393979+00,227188,-206.88114214339697,spot_peer,ProfessorSP,True,yes,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,2024-12-05 15:30:00+00,30744 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,182315,70.40308851469929,baseline,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,182315,79.90873060740036,spot_baseline,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,182315,6.155439028935514,peer,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,182315,6.216033366800829,spot_peer,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,182315,-0.025307918542338,relative_legacy,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,185699,-14.185683650088457,peer,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,185699,-0.3078427077685202,relative_legacy,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,185699,48.54268271702416,spot_baseline,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,185699,43.634617062751246,baseline,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,185699,-16.301728853026024,spot_peer,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,187708,57.14341158765092,spot_baseline,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,187708,-0.1583651305531128,relative_legacy,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,187708,-10.127244636753591,spot_peer,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,187708,34.18117049657904,baseline,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,187708,-5.750638300620311,peer,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,188107,84.79969065549501,spot_baseline,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,188107,0.0032751928486454,relative_legacy,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,188107,40.81188326521399,baseline,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,188107,9.72726550463926,spot_peer,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,188107,4.826208928720683,peer,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,189585,9.72726550463926,spot_peer,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,189585,0.0179892672028046,relative_legacy,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,189585,10.12657388761528,peer,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,189585,83.67763201362555,baseline,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,189588,-0.8172801682014066,relative_legacy,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,189588,-51.1506390745088,spot_peer,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,189588,-50.75201679454639,peer,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,189588,0.0,spot_baseline,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,189588,0.0,baseline,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,189869,9.72726550463926,spot_peer,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,189869,0.0159174192325095,relative_legacy,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,189869,8.941580718685879,peer,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,189869,71.47668057189016,baseline,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,190710,87.97057662822883,spot_baseline,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,190710,80.64768562729434,baseline,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,190710,12.003652271940991,spot_peer,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,190710,0.0471378805994775,relative_legacy,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,190710,11.596013284093711,peer,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,190772,2.722596567152491,peer,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,190772,58.62431485406212,baseline,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,190772,-0.0631695797277735,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,190772,74.84612330040356,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,190772,2.581575243490702,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191026,-0.0208455007386254,relative_legacy,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191026,8.694835672210349,baseline,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191026,-2.978932168027195,spot_peer,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191026,-0.3671378521969566,peer,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191026,67.10063153875356,spot_baseline,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191284,0.0180685457274614,relative_legacy,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191284,9.72726550463926,spot_peer,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191284,84.79969065549501,spot_baseline,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191284,76.53043199269209,baseline,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191284,9.410062117020829,peer,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191471,60.7482376149451,baseline,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191471,13.123354297020462,spot_peer,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191471,89.53026213333067,spot_baseline,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191471,0.0417682205755805,relative_legacy,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191471,9.378378674527806,peer,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191935,0.0032867395780717,relative_legacy,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191935,76.32258679146138,baseline,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191935,8.570030799833438,spot_peer,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191935,8.425192951532754,peer,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191935,83.18772411916731,spot_baseline,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191975,-67.73026728678668,spot_baseline,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191975,-54.97806539007515,baseline,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191975,-80.69192673350743,peer,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191975,-1.222401586665206,relative_legacy,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,191975,-99.77436301893104,spot_peer,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192049,88.19826669033755,baseline,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192049,15.159408167065688,peer,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192049,0.0917437167047427,relative_legacy,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192049,15.327084850489248,spot_peer,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192418,0.0951059608093909,relative_legacy,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192418,91.48885652848456,baseline,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192418,15.327084850489248,spot_peer,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192418,15.761538072972872,peer,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192472,7.341139656277637,peer,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192472,-0.0116617427361396,relative_legacy,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192472,7.399719719961752,spot_peer,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192472,81.55754288625727,spot_baseline,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192472,74.80679028336208,baseline,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192924,26.75788111456263,baseline,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192924,-0.4626227393908294,relative_legacy,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192924,30.334239448733086,spot_baseline,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192924,-29.37361464946348,spot_peer,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,192924,-25.457873336541027,peer,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,193275,-0.1015303260705959,relative_legacy,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,193275,0.742908077756614,peer,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,193275,0.0857574013737321,spot_peer,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,193275,71.36958148433588,spot_baseline,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,193275,64.28961654837796,baseline,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,195286,0.0032949341681948,relative_legacy,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,195286,4.8328950953222485,peer,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,195286,40.86351748765159,baseline,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,195286,9.72726550463926,spot_peer,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,204737,5.980026402585116,peer,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,204737,37.2531215601262,baseline,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,204737,91.37989649506964,spot_baseline,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,204737,14.451211312887544,spot_peer,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,204737,0.0289144969884868,relative_legacy,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,208405,0.0938766154322329,relative_legacy,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,208405,15.327084850489248,spot_peer,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,208405,90.80561396618226,baseline,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,208405,15.60424744872564,peer,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,215725,15.327084850489248,spot_peer,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,215725,92.5999418556223,spot_baseline,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,215725,13.605193742898752,peer,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,215725,77.47550777232391,baseline,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,215725,0.0809780672692339,relative_legacy,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,218666,71.43643548394716,baseline,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,218666,1.091313150237526,spot_peer,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,218666,72.77026728372381,spot_baseline,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,218666,-0.100546000687606,relative_legacy,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,218666,1.4539833826462758,peer,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,219886,11.346085669355794,peer,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,219886,86.59188145522123,spot_baseline,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,219886,11.013883647346956,spot_peer,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,219886,85.06498473361674,baseline,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,219886,0.0351492041746213,relative_legacy,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,220077,-2.471691759771877,spot_peer,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,220077,-0.1498467276304118,relative_legacy,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,220077,67.70181913155014,baseline,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,220077,-2.1239723110334494,peer,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,220077,67.80719051126377,spot_baseline,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,221727,0.017456920011948,relative_legacy,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,221727,82.95747632526995,baseline,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,221727,9.72726550463926,spot_peer,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,221727,84.79969065549501,spot_baseline,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,221727,10.0112431078698,peer,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,222631,8.570030799833438,spot_peer,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,222631,5.593030704364719,baseline,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,222631,0.0,relative_legacy,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,222631,0.5761961384128746,peer,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,222631,83.18772411916731,spot_baseline,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,227188,-0.0123284202381354,relative_legacy,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,227188,81.55754288625727,spot_baseline,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,227188,5.332337858359693,peer,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,227188,7.399719719961752,spot_peer,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30532,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-05 14:16:11.646526+00,227188,54.03651320819119,baseline,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30778 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,182315,69.59938131099001,spot_baseline,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,182315,39.99939389286612,spot_peer,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,182315,29.111143027887262,peer,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,182315,0.1284644579223402,relative_legacy,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,182315,61.3629593326552,baseline,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,185699,13.654773144084292,peer,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,185699,40.51067721062406,baseline,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,185699,44.36066514756148,spot_baseline,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,185699,21.880458052174586,spot_peer,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,185699,-0.098208789565685,relative_legacy,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,187708,11.474581693083865,spot_peer,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,187708,29.86583155645151,spot_baseline,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,187708,2.341187337420564,peer,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,187708,18.32037286195558,baseline,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,187708,-0.1385243915400365,relative_legacy,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,188107,-0.1154956009481573,relative_legacy,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,188107,10.345726609930171,spot_peer,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,188107,14.294931043659508,baseline,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,188107,28.293396327149885,spot_baseline,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,188107,1.4866287712502229,peer,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,189585,-1.2705382044856977,relative_legacy,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,189585,-72.79437008041647,baseline,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,189585,-73.69655941662063,spot_baseline,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,189585,-62.87311116891324,spot_peer,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,189585,-68.35966099363496,peer,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,189588,-0.7752878908965569,relative_legacy,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,189588,-32.26177653910395,peer,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,189588,-23.11793725864029,baseline,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,189588,-26.798489262562327,spot_peer,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,189588,-23.4465253637023,spot_baseline,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,189869,44.99175443828916,spot_peer,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,189869,0.1827769457583743,relative_legacy,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,189869,31.96193354567493,peer,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,189869,64.52690643212502,baseline,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,190710,76.55347463629771,spot_baseline,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,190710,36.39495013849172,peer,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,190710,0.20177061599794,relative_legacy,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,190710,72.04969384264403,baseline,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,190710,44.99175443828916,spot_peer,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,190772,62.29303509201767,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,190772,21.481069511065314,peer,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,190772,34.75415013663793,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,190772,48.83136725046807,baseline,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,190772,0.0609838309250132,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191026,-7.907472517372877,peer,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191026,-8.662287827291456,baseline,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191026,-66.84582297627198,spot_baseline,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191026,-0.1253248371425389,relative_legacy,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191026,-57.95495078308391,spot_peer,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191284,69.08754018051475,baseline,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191284,34.43820894597862,peer,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191284,0.1938408252436753,relative_legacy,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191284,44.99175443828916,spot_peer,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191471,16.55927369109097,peer,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191471,32.02842891805281,spot_peer,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191471,39.7215541048149,baseline,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191471,0.0352019728731787,relative_legacy,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191471,58.496250072115615,spot_baseline,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191935,71.920470764799,baseline,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191935,78.24085649273731,spot_baseline,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191935,46.203129985191104,spot_peer,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191935,36.32354875285988,peer,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191935,0.2122231235637494,relative_legacy,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191975,-9.835734894798373,peer,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191975,8.678376614206666,spot_baseline,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191975,-0.4410105485020988,relative_legacy,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191975,8.21776529755657,baseline,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,191975,-3.735943843961824,spot_peer,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192049,0.3561159593880693,relative_legacy,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192049,48.29783433892694,peer,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192049,56.51155236041955,spot_peer,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192049,88.35114086566196,baseline,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192418,-104.86771165154455,spot_peer,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192418,-110.5116058087581,peer,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192418,-132.19280948873623,spot_baseline,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192418,-1.84889937553479,relative_legacy,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192418,-130.63380643437614,baseline,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192472,32.02842891805281,spot_peer,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192472,23.171246901850527,peer,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192472,53.73831819092548,baseline,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192472,0.0308274195454466,relative_legacy,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192924,3.05806041349738,spot_peer,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192924,16.034445978748963,baseline,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192924,-3.680186538630662,peer,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192924,-0.325782168953266,relative_legacy,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,192924,18.14206402801417,spot_baseline,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,193275,-31.108652547643285,peer,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,193275,-21.38104996903301,baseline,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,193275,-0.7170189449176417,relative_legacy,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,193275,-23.786383009888795,spot_baseline,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,193275,-27.04247389499559,spot_peer,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,195286,28.27223952327955,baseline,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,195286,32.02842891805281,spot_peer,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,195286,0.0371010356004638,relative_legacy,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,195286,11.95956883762186,peer,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,204737,-0.2669424976268184,relative_legacy,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,204737,-6.271060407480412,baseline,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,204737,-15.200309344504996,spot_baseline,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,204737,-11.4891109035432,peer,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,204737,-20.878510686281928,spot_peer,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,208405,57.5638402585104,baseline,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,208405,32.02842891805281,spot_peer,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,208405,0.0309742527996518,relative_legacy,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,208405,26.369106979863144,peer,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,215725,-45.6499589165251,peer,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,215725,-0.889157581480239,relative_legacy,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,215725,-46.907505043947225,spot_peer,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,215725,-43.07291680036865,baseline,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,218666,59.64581395589854,spot_baseline,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,218666,27.202243408773555,peer,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,218666,58.69564343232725,baseline,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,218666,0.0423987156216059,relative_legacy,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,218666,32.85370363171754,spot_peer,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,219886,-141.86750231105304,baseline,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,219886,-145.5613533510315,spot_baseline,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,219886,-1.9580661913753947,relative_legacy,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,219886,-118.60750399533669,peer,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,219886,-114.4650218695416,spot_peer,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,220077,26.822761661694724,peer,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,220077,0.0355024911150059,relative_legacy,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,220077,58.41575680816079,baseline,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,220077,32.02842891805281,spot_peer,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,221727,44.99175443828916,spot_peer,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,221727,74.94922480372287,baseline,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,221727,38.9472308479315,peer,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,221727,0.2075151628223321,relative_legacy,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,222631,-11.91037068871045,peer,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,222631,-0.1766812907350659,relative_legacy,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,222631,-232.19280948873623,spot_baseline,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,222631,-176.65795535239604,spot_peer,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,222631,-15.65455926820487,baseline,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,227188,50.78864836431245,baseline,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,227188,76.55347463629771,spot_baseline,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,227188,0.1550008498258947,relative_legacy,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,227188,24.79932450159169,peer,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30533,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-05 14:16:11.664229+00,227188,44.99175443828916,spot_peer,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30779 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,182315,79.90873060740036,spot_baseline,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,182315,60.16342638590812,peer,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,182315,0.6129418846188008,relative_legacy,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,182315,70.45815265791546,spot_peer,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,182315,70.50349547171682,baseline,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,185699,-26.78184537138261,baseline,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,185699,-8.674722715119742,peer,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,185699,-0.3558688387545092,relative_legacy,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,185699,-7.462367008363127,spot_peer,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,185699,-28.63041851566411,spot_baseline,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,187708,11.103131238874395,spot_baseline,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,187708,11.15341064351189,peer,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,187708,6.964994089408597,baseline,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,187708,0.051783843378869,relative_legacy,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,187708,21.062445191419155,spot_peer,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,188107,22.17527247429891,spot_peer,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,188107,10.329695937652527,peer,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,188107,0.0601902297034545,relative_legacy,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,188107,6.861969344680142,baseline,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,188107,12.653240592893162,spot_baseline,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,189585,-132.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,189585,-1.3555128286773728,relative_legacy,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,189585,-130.5752422643725,baseline,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,189585,-81.62084727866215,peer,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,189585,-81.81005987036022,spot_peer,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,189588,-98.60661798634932,baseline,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,189588,-58.42141600189832,peer,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,189588,-58.69876348424564,spot_peer,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,189588,-1.0376724860420772,relative_legacy,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,189588,-100.0,spot_baseline,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,189869,-15.200309344504996,spot_baseline,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,189869,2.179141094902407,spot_peer,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,189869,-0.2070856936587413,relative_legacy,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,189869,-12.812535042502455,baseline,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,189869,-0.7518624062971417,peer,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,190710,33.642170291656605,peer,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,190710,37.02805131638519,spot_peer,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,190710,0.2271015921047535,relative_legacy,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,190710,31.35523715314805,baseline,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,190710,33.34237337251918,spot_baseline,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,190772,-15.200309344504996,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,190772,-0.8871939843193897,peer,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,190772,2.179141094902407,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,190772,-0.1811225231518204,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,190772,-11.924996350276448,baseline,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191026,-0.0923811934520769,relative_legacy,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191026,-5.54699050337581,peer,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191026,-41.77350121646958,spot_peer,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191026,-9.9040236707873,baseline,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191026,-76.42400778258492,spot_baseline,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191284,92.5999418556223,spot_baseline,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191284,83.56821870089027,baseline,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191284,79.56920414160388,spot_peer,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191284,0.7381928923523219,relative_legacy,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191284,70.11203727140254,peer,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191471,52.28668248763123,spot_peer,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191471,0.3324239610159807,relative_legacy,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191471,33.36545244656904,peer,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191471,37.128962846565145,baseline,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191471,54.59683691052925,spot_baseline,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191935,-28.63041851566411,spot_baseline,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191935,-0.3558688387545092,relative_legacy,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191935,-8.87857302494221,peer,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191935,-7.462367008363127,spot_peer,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191935,-26.367859144306028,baseline,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191975,46.34715963668084,peer,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191975,64.32787669248836,spot_peer,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191975,54.03726141274865,baseline,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191975,0.4758033360756557,relative_legacy,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,191975,71.36958148433588,spot_baseline,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192049,47.940390438088606,spot_peer,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192049,46.39124937759302,baseline,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192049,0.3842177561269981,relative_legacy,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192049,45.27655117898626,peer,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192418,-111.6057030885804,spot_peer,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192418,-1.766118821059789,relative_legacy,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192418,-111.54105475685698,peer,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192418,-171.68481339609718,baseline,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192472,-73.69655941662063,spot_baseline,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192472,-39.815459387728914,spot_peer,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192472,-38.90268350198125,peer,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192472,-67.8123749192023,baseline,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192472,-0.7705479047962326,relative_legacy,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192924,2.9498899801966445,peer,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192924,-8.721415392828005,baseline,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192924,-0.1790045400929753,relative_legacy,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192924,6.019743138586067,spot_peer,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,192924,-9.850554495242504,spot_baseline,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,193275,60.026975350900464,spot_baseline,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,193275,0.4610029109640988,relative_legacy,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,193275,55.30733790694418,baseline,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,193275,50.26024511646633,peer,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,193275,56.18499210726733,spot_peer,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,195286,-20.683737159360824,peer,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,195286,-0.3565600355012827,relative_legacy,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,195286,-39.815459387728914,spot_peer,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,195286,-35.568189709958155,baseline,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,195286,-73.69655941662063,spot_baseline,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,204737,0.0,spot_baseline,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,204737,0.006659043255796,relative_legacy,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,204737,0.0,baseline,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,204737,4.246535744560879,peer,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,204737,13.091480216605849,spot_peer,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,208405,-10.019816169508736,spot_peer,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,208405,-0.3709893176734271,relative_legacy,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,208405,-9.8652711197919,peer,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,208405,-31.69354735409759,baseline,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,208405,-32.19280948873623,spot_baseline,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,215725,76.55347463629771,spot_baseline,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,215725,54.71515666001053,peer,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,215725,68.0494062194735,spot_peer,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,215725,64.10596217418964,baseline,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,215725,0.561556345051315,relative_legacy,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,218666,-0.487690992328992,relative_legacy,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,218666,-43.6248354840458,baseline,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,218666,-18.655768523910453,spot_peer,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,218666,-18.383307029987915,peer,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,218666,-44.22223286050742,spot_baseline,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,219886,59.25407560019541,spot_baseline,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,219886,58.549127755959326,baseline,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,219886,56.11848674108909,peer,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,219886,55.63012549267291,spot_peer,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,219886,0.5359055115499225,relative_legacy,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,220077,-23.52348019801843,peer,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,220077,-0.5578840957502563,relative_legacy,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,220077,-23.84985326276288,spot_peer,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,220077,-51.39731333171438,baseline,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,220077,-51.45731728297583,spot_baseline,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,221727,-100.0,spot_baseline,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,221727,-58.69876348424564,spot_peer,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,221727,-58.25710449055704,peer,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,221727,-97.91406068757728,baseline,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,221727,-1.0353742918265871,relative_legacy,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,222631,-58.69876348424564,spot_peer,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,222631,-6.760069454985636,baseline,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,222631,-3.968077180752752,peer,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,222631,-0.0609416512940603,relative_legacy,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,222631,-100.0,spot_baseline,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,227188,-73.69655941662063,spot_baseline,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,227188,-48.93580411888632,baseline,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,227188,-0.5194666241225379,relative_legacy,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,227188,-28.773896682769863,peer,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30534,Will Miami have at least 5 days of rain in December 2024?,2024-12-05 14:16:11.679779+00,227188,-39.815459387728914,spot_peer,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30780 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,182315,-137.32582324401602,peer,RyansAGI,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,182315,-163.28789789636346,spot_peer,RyansAGI,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,182315,-293.28705567938994,baseline,RyansAGI,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,182315,-332.1928094887361,spot_baseline,RyansAGI,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,182315,-1.834089721186108,relative_legacy,RyansAGI,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,185699,43.72870290227453,peer,MWG,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,185699,38.25279611293678,spot_peer,MWG,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,185699,-51.45731728297583,spot_baseline,MWG,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,185699,-48.997633019801846,baseline,MWG,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,185699,0.6773442819884101,relative_legacy,MWG,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,187708,0.3156617343417562,relative_legacy,twsummerbot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,187708,-43.71317895804302,baseline,twsummerbot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,187708,20.594077968798988,peer,twsummerbot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,187708,26.01684244571343,spot_peer,twsummerbot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,187708,-68.50135145314849,spot_baseline,twsummerbot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,188107,-155.6393348524385,spot_baseline,Cassie,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,188107,-17.14562844257727,peer,Cassie,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,188107,-86.31431539450836,baseline,Cassie,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,188107,-0.2208059124155655,relative_legacy,Cassie,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,188107,-36.53972819264439,spot_peer,Cassie,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,189585,115.25036124801946,peer,mf-bot-1,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,189585,110.04303981378828,spot_peer,mf-bot-1,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,189585,1.6687991824758632,relative_legacy,mf-bot-1,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,189585,47.92208902958214,baseline,mf-bot-1,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,189588,27.412709607381405,peer,mf-bot-3,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,189588,-73.69655941662059,spot_baseline,mf-bot-3,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,189588,-72.67397346901517,baseline,mf-bot-3,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,189588,0.4632906381252478,relative_legacy,mf-bot-3,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,189588,22.287189987970763,spot_peer,mf-bot-3,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,189869,-146.41324104694405,baseline,VeritasAI,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,189869,-34.81961070860618,peer,VeritasAI,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,189869,-0.4276300233585398,relative_legacy,VeritasAI,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,189869,-49.50305371288073,spot_peer,VeritasAI,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,189869,-173.6965594166206,spot_baseline,VeritasAI,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,190710,-1.653357336254085,relative_legacy,Bot_Pepa,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,190710,-125.00513658442652,peer,Bot_Pepa,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,190710,-281.5166574261329,baseline,Bot_Pepa,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,190710,-141.00850500746552,spot_peer,Bot_Pepa,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,190710,-301.15879742752105,spot_baseline,Bot_Pepa,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,190772,-109.60180163976231,baseline,Jay_Bailey_Bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,190772,-139.59286763311397,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,190772,-25.01993027051405,spot_peer,Jay_Bailey_Bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,190772,-13.522436647396894,peer,Jay_Bailey_Bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,190772,-0.1379988290266775,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191026,71.10552060602006,spot_peer,manticAI,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191026,0.0881303627479019,relative_legacy,manticAI,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191026,-5.695215360073974,spot_baseline,manticAI,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191026,-0.7381051103833606,baseline,manticAI,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191026,9.409095589304874,peer,manticAI,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191284,-37.15938746821553,peer,000_bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191284,-173.6965594166206,spot_baseline,000_bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191284,-0.443950597335248,relative_legacy,000_bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191284,-156.75319546336846,baseline,000_bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191284,-49.50305371288073,spot_peer,000_bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191471,-16.430402746425628,peer,HSeldon,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191471,-100.3636139699246,baseline,HSeldon,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191471,-147.39311883324118,spot_baseline,HSeldon,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191471,-30.619749616363983,spot_peer,HSeldon,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191471,-0.1911126654469333,relative_legacy,HSeldon,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191935,-115.5018933208396,baseline,pgodzinai,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191935,-5.879122432235389,peer,pgodzinai,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191935,-0.0101044373356514,relative_legacy,pgodzinai,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191935,-125.15387669959644,spot_baseline,pgodzinai,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191935,-14.654143491397983,spot_peer,pgodzinai,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191975,-31.473259348315835,spot_baseline,jkraybill_bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191975,-27.06990110051499,baseline,jkraybill_bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191975,52.59940000554854,spot_peer,jkraybill_bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191975,0.7884964987504036,relative_legacy,jkraybill_bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,191975,52.919311369099134,peer,jkraybill_bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192049,0.2138425529089959,relative_legacy,gnosis-ai,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192049,-95.70602391660212,baseline,gnosis-ai,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192049,-100.0,spot_baseline,gnosis-ai,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192049,10.017865010856704,peer,gnosis-ai,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192049,3.403885891454021,spot_peer,gnosis-ai,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192418,110.04303981378828,spot_peer,InstitutPelFutur,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192418,115.34810850214842,peer,InstitutPelFutur,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192418,47.9892869541446,baseline,InstitutPelFutur,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192418,48.54268271702416,spot_baseline,InstitutPelFutur,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192418,1.669898676288858,relative_legacy,InstitutPelFutur,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192472,-10.533802675275036,peer,bestworldbot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192472,-0.07453425256001,relative_legacy,bestworldbot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192472,-132.19280948873626,spot_baseline,bestworldbot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192472,-121.76678010001886,baseline,bestworldbot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192472,-19.707410494660596,spot_peer,bestworldbot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192924,-305.8893689053567,spot_baseline,acm_bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192924,-144.4045937998467,spot_peer,acm_bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192924,-1.6093908307516185,relative_legacy,acm_bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192924,-121.14786543119644,peer,acm_bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,192924,-271.3902003105922,baseline,acm_bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,193275,16.730391288641997,peer,histerio,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,193275,-85.67055784892537,baseline,histerio,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,193275,0.3037342093566883,relative_legacy,histerio,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,193275,9.828979950968716,spot_peer,histerio,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,193275,-91.0501849160898,spot_baseline,histerio,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,195286,22.287189987970763,spot_peer,Unwrapped80T,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,195286,-73.69655941662059,spot_baseline,Unwrapped80T,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,195286,-35.61804489591393,baseline,Unwrapped80T,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,195286,0.186665742103787,relative_legacy,Unwrapped80T,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,195286,13.24338605768587,peer,Unwrapped80T,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,204737,0.0,baseline,SynapseSeer,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,204737,33.28458788120289,peer,SynapseSeer,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,204737,0.4553640012007213,relative_legacy,SynapseSeer,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,204737,75.1941295923055,spot_peer,SynapseSeer,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,204737,0.0,spot_baseline,SynapseSeer,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,208405,0.6834122534688714,relative_legacy,mf-bot-4,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,208405,-50.5331578616,baseline,mf-bot-4,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,208405,43.5008230781062,peer,mf-bot-4,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,208405,-51.45731728297583,spot_baseline,mf-bot-4,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,208405,38.25279611293678,spot_peer,mf-bot-4,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,215725,-132.19280948873626,spot_baseline,estr.ai,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,215725,-9.534723906819908,peer,estr.ai,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,215725,-110.7557792136786,baseline,estr.ai,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,215725,-0.0798970277946499,relative_legacy,estr.ai,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,215725,-19.707410494660596,spot_peer,estr.ai,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,218666,4.965923409019932,peer,GreeneiBot2,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,218666,-104.69210473874926,spot_baseline,GreeneiBot2,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,218666,0.0354124648067096,spot_peer,GreeneiBot2,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,218666,-103.50999410045438,baseline,GreeneiBot2,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,218666,0.1549882170594163,relative_legacy,GreeneiBot2,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,219886,-283.9401183309665,baseline,SaraBase,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,219886,-302.9146345659516,spot_baseline,SaraBase,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,219886,-126.966723193058,peer,SaraBase,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,219886,-1.680381263949301,relative_legacy,SaraBase,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,219886,-142.26902476813484,spot_peer,SaraBase,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,220077,-51.40616086357056,baseline,mmBot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,220077,43.32007057372471,peer,mmBot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,220077,0.6813251886234748,relative_legacy,mmBot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,220077,38.25279611293678,spot_peer,mmBot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,221727,-97.9146939513308,baseline,mf-bot-5,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,221727,8.956973917337615,peer,mf-bot-5,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,221727,-100.0,spot_baseline,mf-bot-5,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,221727,0.2080329908063183,relative_legacy,mf-bot-5,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,221727,3.403885891454021,spot_peer,mf-bot-5,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,222631,5.76340884104873,peer,Grizeu_Bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,222631,0.9316216819036012,baseline,Grizeu_Bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,222631,13.750352374993504,spot_baseline,Grizeu_Bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,222631,0.0592475282224306,relative_legacy,Grizeu_Bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,222631,85.06554107203915,spot_peer,Grizeu_Bot,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,227188,91.02486623559652,peer,ProfessorSP,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,227188,50.87485343788117,baseline,ProfessorSP,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,227188,76.55347463629771,spot_baseline,ProfessorSP,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,227188,1.298436752288724,relative_legacy,ProfessorSP,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30535,"Will Bashar al-Assad be President of Syria on December 31, 2024?",2024-12-05 14:16:11.695039+00,227188,130.15205559517315,spot_peer,ProfessorSP,True,no,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30781 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,182315,0.4949971670450676,spot_peer,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,182315,81.55754288625727,spot_baseline,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,182315,0.7365225826940873,peer,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,182315,-0.0315663775718834,relative_legacy,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,182315,72.04633390637088,baseline,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,185699,56.73185071810346,baseline,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,185699,-0.2637666764074255,relative_legacy,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,185699,58.496250072115615,spot_baseline,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,185699,-15.687977468502403,peer,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,185699,-16.060761144794153,spot_peer,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,187708,54.59683691052925,spot_baseline,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,187708,-18.86015935640009,spot_peer,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,187708,-0.1982807229538243,relative_legacy,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,187708,-11.964637580205892,peer,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,187708,35.511042592274954,baseline,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,188107,54.5562839416088,baseline,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,188107,6.175738818468799,peer,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,188107,10.312897186755274,spot_peer,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,188107,0.0579368958954365,relative_legacy,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,188107,95.23335663696854,spot_baseline,Cassie,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,189585,8.418219076189851,peer,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,189585,0.0670028733965248,relative_legacy,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,189585,8.422362297572558,spot_peer,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,189585,91.4615628105396,baseline,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,189588,91.31253687108092,baseline,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,189588,0.0669749809666049,relative_legacy,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,189588,8.406648414615127,peer,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,189588,8.422362297572558,spot_peer,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,189869,-0.0018343926465668,relative_legacy,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,189869,2.8225429517225686,spot_peer,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,189869,2.7358589035213243,peer,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,189869,71.48190238760239,baseline,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,190710,89.00562984992737,baseline,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,190710,9.72243914065285,spot_peer,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,190710,0.0834655424617278,relative_legacy,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,190710,9.387059574432689,peer,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,190710,94.4108799107955,spot_baseline,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,190772,40.05379295837288,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,190772,-22.73259984580657,peer,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,190772,-0.3534717564762729,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,190772,-29.3006460511751,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,190772,31.47642776684964,baseline,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191026,10.870428742886764,baseline,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191026,0.298193406816195,peer,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191026,-0.0030375097619599,relative_legacy,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191026,2.15613426659211,spot_peer,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191026,83.87141871939826,spot_baseline,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191284,26.303440583379377,spot_baseline,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191284,-39.172057530908745,spot_peer,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191284,-0.532215083870705,relative_legacy,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191284,-35.346306933561145,peer,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191284,23.73748393913389,baseline,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191471,63.12893859616925,baseline,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191471,0.0513429170989721,relative_legacy,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191471,92.5999418556223,spot_baseline,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191471,6.127387029216505,peer,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191471,8.422362297572558,spot_peer,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191935,9.506889783828145,spot_peer,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191935,0.0800456429622469,relative_legacy,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191935,94.11063109464314,spot_baseline,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191935,9.056903202917283,peer,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191935,87.02422234296746,baseline,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191975,35.87207947942723,baseline,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191975,-14.915549297007944,peer,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191975,50.792146495732815,spot_baseline,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191975,-21.591555877245387,spot_peer,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,191975,-0.2420135170121042,relative_legacy,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192049,8.250206755980845,peer,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192049,8.422362297572558,spot_peer,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192049,0.0667050514858518,relative_legacy,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192049,88.83847455357119,baseline,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192418,91.56282928462568,baseline,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192418,8.436932894399593,peer,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192418,0.0671808413717961,relative_legacy,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192418,8.422362297572558,spot_peer,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192472,8.033311587867443,peer,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192472,8.422362297572558,spot_peer,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192472,92.5999418556223,spot_baseline,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192472,0.0660762800222124,relative_legacy,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192472,85.4123469544909,baseline,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192924,77.74399592523146,baseline,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192924,0.0207571720109891,relative_legacy,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192924,87.49936389329673,spot_baseline,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192924,4.550857543856331,peer,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,192924,4.760644948267117,spot_peer,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,193275,73.98625290456776,baseline,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,193275,77.90495528374585,spot_baseline,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,193275,-2.127204374184957,spot_peer,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,193275,-1.86618692964985,peer,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,193275,-0.0721960261003919,relative_legacy,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,195286,-0.0416878770233137,relative_legacy,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,195286,-1.3152518711702108,peer,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,195286,-3.0974356245578214,spot_peer,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,195286,36.99785087245829,baseline,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,204737,40.2182901603179,baseline,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,204737,10.79350792653586,spot_peer,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,204737,0.0447282574436446,relative_legacy,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,204737,4.667963043653831,peer,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,204737,95.90282189436938,spot_baseline,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,208405,8.422362297572558,spot_peer,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,208405,0.0669456945999454,relative_legacy,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,208405,8.389903823134361,peer,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,208405,91.08011603811092,baseline,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,215725,71.07556322747463,baseline,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,215725,-0.0018343926465668,relative_legacy,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,215725,2.72788274345563,peer,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,215725,2.8225429517225686,spot_peer,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,215725,84.79969065549501,spot_baseline,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,218666,81.55754288625727,spot_baseline,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,218666,0.51053649345157,peer,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,218666,-0.0418302007989699,relative_legacy,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,218666,0.4949971670450676,spot_peer,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,218666,80.858232002422,baseline,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,219886,87.8603746418891,baseline,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,219886,7.07483715191252,spot_peer,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,219886,6.993263124086312,peer,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,219886,90.7229108327508,spot_baseline,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,219886,0.0486972029472826,relative_legacy,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,220077,-9.440875728202368,peer,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,220077,-0.1781547077796264,relative_legacy,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,220077,67.80719051126377,spot_baseline,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,220077,-9.37641431268857,spot_peer,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,220077,67.7524492523479,baseline,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,221727,83.03285624992249,baseline,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,221727,-0.0093827926054777,relative_legacy,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,221727,2.8204108317418046,peer,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,221727,84.79969065549501,spot_baseline,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,221727,2.8225429517225686,spot_peer,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,222631,0.0034657759970053,relative_legacy,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,222631,0.5722884995507549,peer,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,222631,92.5999418556223,spot_baseline,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,222631,8.422362297572558,spot_peer,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,222631,6.292044905063609,baseline,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,227188,0.0500579213715723,relative_legacy,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,227188,8.422362297572558,spot_peer,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,227188,92.5999418556223,spot_baseline,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,227188,5.973297304056189,peer,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30536,"Will Emmanuel Macron be President of France on December 31, 2024?",2024-12-05 14:16:11.710245+00,227188,61.60346811337245,baseline,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30782 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,182315,95.60566524124027,spot_baseline,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,182315,4.212291605645667,peer,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,182315,4.618083386289112,spot_peer,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,182315,84.51530746829894,baseline,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,182315,0.0258827875088135,relative_legacy,RyansAGI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,185699,-17.98954717217811,spot_peer,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,185699,64.15460290875237,spot_baseline,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,185699,-17.65578511289464,peer,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,185699,62.94057409809052,baseline,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,185699,-0.2806168206087909,relative_legacy,MWG,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,187708,71.7210299019596,spot_baseline,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,187708,-0.1380661415630414,relative_legacy,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,187708,-8.210610792010218,peer,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,187708,47.42702057208477,baseline,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,187708,-12.550653429840365,spot_peer,twsummerbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,189585,91.46831186047642,baseline,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,189585,2.66823859997917,peer,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,189585,-0.0015462812310912,relative_legacy,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,189585,2.4575114111795724,spot_peer,mf-bot-1,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,189588,0.0207498793251432,relative_legacy,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,189588,94.86008474933556,spot_baseline,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,189588,4.0821457402283885,spot_peer,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,189588,4.281548110589481,peer,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,189588,93.54522462303004,baseline,mf-bot-3,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,189869,-6.788900514745915e-05,relative_legacy,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,189869,2.199435157585696,peer,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,189869,2.4575114111795724,spot_peer,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,189869,78.05856421186988,baseline,VeritasAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,190710,0.0296324993488881,relative_legacy,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,190710,4.722457579153614,peer,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,190710,90.55115724688493,baseline,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,190710,95.90282189436938,spot_baseline,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,190710,4.831685323193907,spot_peer,Bot_Pepa,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,190772,65.99245584023782,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,190772,-13.024645003139703,peer,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,190772,51.90039827527612,baseline,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,190772,-16.66846301748169,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,190772,-0.2092571194267162,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191026,11.980903353165326,baseline,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191026,0.3038493306484667,peer,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191026,-0.0002149727578609,relative_legacy,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191026,2.338292335270552,spot_peer,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191026,92.4340878278002,spot_baseline,manticAI,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191284,2.4575114111795724,spot_peer,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191284,92.5999418556223,spot_baseline,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191284,2.345197346783606,peer,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191284,83.56607051089252,baseline,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191284,-0.0006877755911003,relative_legacy,000_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191471,1.0514570814990751,peer,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191471,1.360107480605372,spot_peer,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191471,62.13181787404751,baseline,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191471,-0.0104152555803693,relative_legacy,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191471,91.07326619029126,spot_baseline,HSeldon,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191935,4.618083386289112,spot_peer,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191935,4.478831639581256,peer,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191935,95.60566524124027,spot_baseline,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191935,0.0267714762292325,relative_legacy,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191935,89.5617423978019,baseline,pgodzinai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191975,66.33040014329285,baseline,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191975,-10.616774247519812,peer,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191975,-0.1800914560357343,relative_legacy,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191975,-11.71297760132827,spot_peer,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,191975,72.88637956692415,spot_baseline,jkraybill_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192049,85.097399870185,baseline,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192049,5.115179020030809,peer,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192049,97.08536543404836,spot_baseline,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192049,0.0387408842915789,relative_legacy,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192049,5.681720440664278,spot_peer,gnosis-ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192418,-0.001415852288224,relative_legacy,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192418,91.57768766331868,baseline,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192418,2.4575114111795724,spot_peer,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192418,2.6786369660021943,peer,InstitutPelFutur,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192472,92.5999418556223,spot_baseline,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192472,85.58235498603858,baseline,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192472,-0.0010079025287875,relative_legacy,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192472,2.4575114111795724,spot_peer,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192472,2.404785926352345,peer,bestworldbot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192924,83.75421593739998,baseline,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192924,3.2795838054335307,peer,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192924,94.11063109464314,spot_baseline,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192924,0.0127566770990548,relative_legacy,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,192924,3.543423990010207,spot_peer,acm_bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,193275,4.7249393501005885,spot_peer,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,193275,91.80712385507876,baseline,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,193275,0.0286056151889623,relative_legacy,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,193275,95.75432007571052,spot_baseline,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,193275,4.705132239999597,peer,histerio,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,195286,2.4575114111795724,spot_peer,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,195286,1.2377187998779569,peer,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,195286,44.751893603327424,baseline,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,195286,0.0,relative_legacy,Unwrapped80T,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,204737,95.30789526125076,spot_baseline,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,204737,1.8893478646983424,peer,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,204737,4.404040578200814,spot_peer,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,204737,40.15700989511989,baseline,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,204737,0.0114096855677344,relative_legacy,SynapseSeer,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,208405,91.07691159957872,baseline,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,208405,-0.0016193313672937,relative_legacy,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,208405,2.642621246826376,peer,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,208405,2.4575114111795724,spot_peer,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,215725,77.64242846621741,baseline,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,215725,2.4575114111795724,spot_peer,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,215725,0.0,relative_legacy,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,215725,92.5999418556223,spot_baseline,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,215725,2.1902870763839366,peer,estr.ai,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,218666,78.24085649273731,spot_baseline,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,218666,-7.8640762544386735,spot_peer,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,218666,-7.679648190368137,peer,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,218666,-0.1435097376353483,relative_legacy,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,218666,77.79086281944669,baseline,GreeneiBot2,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,219886,5.765284647294124,spot_peer,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,219886,5.7305860402406905,peer,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,219886,0.042636884622552,relative_legacy,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,219886,97.2016174696026,spot_baseline,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,219886,93.34311200104553,baseline,SaraBase,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,220077,81.55754288625727,spot_baseline,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,220077,-5.2655675297945805,peer,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,220077,-0.1105336292670326,relative_legacy,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,220077,-5.47997806817362,spot_peer,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,220077,81.50564045606112,baseline,mmBot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,221727,-0.8701656534204814,spot_peer,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,221727,87.97057662822883,spot_baseline,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,221727,-0.6668009561458317,peer,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,221727,86.1385023352994,baseline,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,221727,-0.0468701954460094,relative_legacy,mf-bot-5,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,222631,6.097621542882288,baseline,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,222631,-0.0020906612756834,relative_legacy,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,222631,89.53026213333067,spot_baseline,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,222631,0.0170925228134971,peer,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,222631,0.2509663870166949,spot_peer,Grizeu_Bot,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,227188,66.09667219206783,baseline,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,227188,0.0444535641548648,relative_legacy,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,227188,99.27684307689242,spot_baseline,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,227188,4.965553871747616,peer,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30537,"Will Xi Jinping continue leading China through January 1, 2025?",2024-12-05 14:16:11.969434+00,227188,7.256996862261692,spot_peer,ProfessorSP,True,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,2024-12-06 15:30:00+00,30783 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,182315,67.88995109341842,peer,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,182315,54.5305766741557,baseline,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,182315,62.29303509201767,spot_baseline,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,182315,0.8475218263697449,relative_legacy,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,182315,74.88797471540751,spot_peer,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,185699,12.029446937745158,spot_peer,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,185699,4.68239886870098,peer,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,185699,-25.15387669959645,spot_baseline,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,185699,0.0548985895491087,relative_legacy,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,185699,-9.82506803096554,baseline,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,187708,-58.76185642720517,peer,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,187708,-106.17636397597566,baseline,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,187708,-101.90071633154028,spot_peer,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,187708,-183.65012677171205,spot_baseline,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,187708,-0.8273603587490129,relative_legacy,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,188107,0.6301476261971128,relative_legacy,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,188107,65.0039560690331,spot_peer,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,188107,48.542682717024185,spot_baseline,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,188107,37.65351676262743,baseline,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,188107,51.02676096246645,peer,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,189585,-72.693974659329,baseline,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,189585,-17.291545847839217,peer,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,189585,-73.69655941662063,spot_baseline,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,189585,-0.3227444845368457,relative_legacy,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,189585,-22.863970193343576,spot_peer,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,189588,-94.74590002918974,spot_peer,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,189588,-173.6965594166206,spot_baseline,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,189588,-1.3023735649538253,relative_legacy,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,189588,-89.1452824125232,peer,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,189588,-170.1582007728973,baseline,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,190710,-73.3827442022739,baseline,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,190710,-26.37968666341424,spot_peer,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,190710,-21.494552513839537,peer,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,190710,-78.58751946471526,spot_baseline,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,190710,-0.3918004128529814,relative_legacy,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,190772,-43.440282414577496,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,190772,-1.1151743877956737,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,190772,-0.0794331372152018,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,190772,-0.6252890844374156,peer,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,190772,-33.51097533601079,baseline,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191026,-1.851973978356975,peer,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191026,-5.759500689821845,baseline,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191026,-24.371643167143365,spot_peer,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191026,-0.0245852208560796,relative_legacy,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191026,-75.7939891562545,spot_baseline,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191046,0.2638691858780728,relative_legacy,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191046,72.15877237138359,spot_peer,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191046,58.496250072115615,spot_baseline,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191046,19.500426805523524,peer,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191046,15.959705395905852,baseline,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191284,37.83376944232376,baseline,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191284,51.29288520419943,peer,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191284,48.54268271702416,spot_baseline,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191284,0.63093827980199,relative_legacy,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191284,65.00395606903308,spot_peer,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191471,46.27080964159084,peer,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191471,0.6227431970576401,relative_legacy,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191471,67.92538034706085,spot_peer,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191471,52.60688116675877,spot_baseline,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191471,35.5066925690905,baseline,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191935,-115.8943483223188,baseline,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191935,-55.8334086520414,peer,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191935,-0.8556909481630289,relative_legacy,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191935,-64.91220362678283,spot_peer,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,191935,-132.19280948873623,spot_baseline,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192049,0.891256661269673,relative_legacy,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192049,78.85165604490952,spot_peer,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192049,71.01148773705157,peer,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192049,59.112160414748615,baseline,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192418,-46.96339273106588,baseline,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192418,-3.571233517046344,peer,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192418,-0.1441920245400947,relative_legacy,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192418,-6.877973766813089,spot_peer,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192472,30.11053893794434,spot_peer,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192472,0.0,spot_baseline,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192472,0.4049252577272059,relative_legacy,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192472,36.38270855251927,peer,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192472,0.0,baseline,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192924,-4.482359412969236,peer,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192924,-44.93545878321856,baseline,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192924,-51.45731728297583,spot_baseline,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192924,-0.1484535322013311,relative_legacy,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,192924,-6.877973766813089,spot_peer,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,193275,0.0356761470980732,relative_legacy,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,193275,-34.373246520571094,spot_baseline,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,193275,5.402385991724988,spot_peer,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,193275,4.07062838944921,peer,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,193275,-23.417664925453096,baseline,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,195286,38.8074514680888,baseline,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,195286,52.83310635711655,peer,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,195286,65.00395606903308,spot_peer,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,195286,0.6509965454615342,relative_legacy,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,204737,-41.50374992788438,spot_baseline,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,204737,0.2768425355374241,spot_peer,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,204737,-0.0089637799313651,relative_legacy,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,204737,0.1078807888032237,peer,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,204737,-16.675523185536527,baseline,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,208405,-128.64368259053845,baseline,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,208405,-58.99452354738094,peer,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,208405,-0.8935375568582656,relative_legacy,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,208405,-132.19280948873623,spot_baseline,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,208405,-64.91220362678283,spot_peer,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,215725,-0.0848271881031624,relative_legacy,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,215725,-6.877973766813089,spot_peer,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,215725,-36.00484435743605,baseline,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,215725,-4.64288416918951,peer,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,218666,-9.957698085978574,peer,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,218666,-57.74407058242086,baseline,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,218666,-14.244646534476225,spot_peer,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,218666,-61.70561304310094,spot_baseline,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,218666,-0.2339188534721231,relative_legacy,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,219886,49.69843823281352,spot_peer,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,219886,51.740172669010086,peer,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,219886,27.250102132206607,spot_baseline,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,219886,0.6149066592389587,relative_legacy,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,219886,25.78054962211724,baseline,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,220077,-99.77896430674528,baseline,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,220077,-36.53441349340791,peer,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,220077,-41.77139089790183,spot_peer,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,220077,-0.5832995462299164,relative_legacy,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,220077,-100.0,spot_baseline,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,221727,-94.74590002918974,spot_peer,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,221727,-173.6965594166206,spot_baseline,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,221727,-1.2958395963181115,relative_legacy,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,221727,-168.3666661973519,baseline,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,221727,-88.36512975781103,peer,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,222631,-6.50859127702066,baseline,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,222631,-0.9160825835668288,peer,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,222631,-0.0111182444140685,relative_legacy,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,222631,-6.877973766813089,spot_peer,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,227188,-51.45731728297583,spot_baseline,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,227188,-4.340983586256395,peer,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,227188,-0.0771383247894511,relative_legacy,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,227188,-6.877973766813089,spot_peer,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30576,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-06 14:09:14.972059+00,227188,-33.97978242283148,baseline,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30825 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,182315,-15.200309344504996,spot_baseline,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,182315,-0.5176823531385045,relative_legacy,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,182315,-24.444826341426182,spot_peer,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,182315,-21.288663537650827,peer,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,182315,-13.316577469978853,baseline,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,185699,-7.523635309959277,peer,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,185699,-3.578499375558387,baseline,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,185699,-19.941011176238963,spot_peer,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,185699,-0.2007140035855864,relative_legacy,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,185699,-8.926733809708741,spot_baseline,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,187708,71.7210299019596,spot_baseline,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,187708,42.685864559891215,baseline,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,187708,37.95621493165461,spot_peer,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,187708,22.90995905518413,peer,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,187708,0.1643475665922154,relative_legacy,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,188107,23.75351023353015,spot_peer,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,188107,41.59952229142208,baseline,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,188107,0.0662984496487122,relative_legacy,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,188107,19.458900208757,peer,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,188107,51.93741590935796,spot_baseline,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,189585,-0.1632044474691449,relative_legacy,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,189585,25.95030662894864,baseline,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,189585,5.3508168767939805,spot_peer,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,189585,5.273728757849218,peer,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,189588,-50.47382069909147,spot_peer,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,189588,-50.43797050283028,baseline,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,189588,-50.46983966858384,peer,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,189588,-0.9234623683073764,relative_legacy,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,190710,-1.093663444495655,relative_legacy,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,190710,-73.69655941662063,spot_baseline,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,190710,-66.4394268240575,spot_peer,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,190710,-62.5404851500136,peer,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,190710,-68.88208135091757,baseline,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,190772,46.46682670034443,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,190772,35.8795899849918,baseline,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,190772,0.0240570245861586,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,190772,19.826160908506843,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,190772,15.76935309248347,peer,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191026,0.0,relative_legacy,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191026,38.70997863272357,spot_baseline,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191026,2.941837119790956,baseline,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191026,1.083525398449234,peer,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191026,14.257500777257034,spot_peer,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191046,18.46111016052244,baseline,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191046,35.14646009501416,spot_peer,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191046,0.0683645720873995,relative_legacy,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191046,9.761433171779878,peer,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191284,-62.14883767462702,spot_baseline,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191284,-48.4379019076872,baseline,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191284,-58.149289243584086,spot_peer,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191284,-45.29913047503934,peer,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191284,-0.8228732495949381,relative_legacy,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191471,62.29303509201767,spot_baseline,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191471,31.187834481493677,spot_peer,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191471,0.1266402294647459,relative_legacy,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191471,42.08696764411129,baseline,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191471,21.50430247752892,peer,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191935,46.46682670034443,spot_baseline,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191935,40.892391248670826,baseline,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191935,0.0225666483002914,relative_legacy,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191935,17.996830349112848,peer,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191935,19.826160908506843,spot_peer,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191975,0.0796730014788741,relative_legacy,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191975,58.68848128521847,spot_baseline,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191975,31.515421970241647,baseline,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191975,15.673161436473254,peer,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,191975,28.600116519264205,spot_peer,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192049,79.88315779803202,baseline,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192049,45.61244165361649,peer,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192049,0.3903842683742062,relative_legacy,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192049,47.3454173594253,spot_peer,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192418,0.1352077188387426,relative_legacy,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192418,53.39920009089201,baseline,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192418,26.772907337273978,peer,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192418,28.46211326290856,spot_peer,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192472,39.26270063062815,peer,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192472,38.959335882724055,spot_peer,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192472,73.11832415721999,spot_baseline,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192472,72.32485232763418,baseline,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192472,0.2987734135104278,relative_legacy,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192924,0.0709408466547523,relative_legacy,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192924,45.50833569815666,baseline,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192924,21.402412869343763,peer,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192924,23.80167179151093,spot_peer,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,192924,52.00450240398177,spot_baseline,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,193275,21.661006874244173,spot_baseline,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,193275,1.8504141701937271,peer,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,193275,-0.1482152716511517,relative_legacy,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,193275,2.0180024033553448,spot_peer,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,193275,15.14809169479813,baseline,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,195286,61.2640391999562,baseline,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,195286,41.42543878314489,spot_peer,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,195286,0.2632952801597348,relative_legacy,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,195286,33.697135322320456,peer,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,204737,-85.32273092057423,spot_peer,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,204737,-40.35305280541933,baseline,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,204737,-100.0,spot_baseline,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,204737,-34.021090645086375,peer,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,204737,-0.5696937398743247,relative_legacy,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,208405,36.85186697361598,baseline,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,208405,13.682940513930482,peer,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,208405,-0.0487361768121233,relative_legacy,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,208405,37.85116232537298,spot_baseline,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,208405,13.640954457267394,spot_peer,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,215725,-59.66488102466828,peer,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,215725,-100.0,spot_baseline,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,215725,-70.01615403923724,baseline,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,215725,-1.001447365402799,relative_legacy,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,215725,-85.32273092057423,spot_peer,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,218666,33.61054173283113,peer,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,218666,34.887207322423286,spot_peer,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,218666,67.44606515602587,spot_baseline,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,218666,0.2259131659742188,relative_legacy,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,218666,63.30864035195626,baseline,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,219886,-121.87850464017006,baseline,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,219886,-108.4340273066888,spot_peer,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,219886,-1.61882197743635,relative_legacy,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,219886,-100.783526314546,peer,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,219886,-132.1928094887362,spot_baseline,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,220077,0.1541394436925521,relative_legacy,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,220077,28.599936249468065,peer,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,220077,28.46211326290856,spot_peer,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,220077,58.37954297740367,baseline,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,221727,-3.4446580459358858,peer,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,221727,13.750352374993504,spot_baseline,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,221727,-3.66107573998909,spot_peer,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,221727,-0.2823517881448188,relative_legacy,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,221727,13.331545109419526,baseline,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,222631,13.640954457267394,spot_peer,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,222631,4.795813441254502,baseline,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,222631,1.7550697191931226,peer,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,222631,-0.0006526734917673,relative_legacy,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,227188,25.018907998149057,baseline,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,227188,37.85116232537298,spot_baseline,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,227188,13.640954457267394,spot_peer,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,227188,-0.0372341148214427,relative_legacy,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30577,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:14.995202+00,227188,9.35821602506578,peer,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30826 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,182315,-0.6868022026412454,relative_legacy,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,182315,-100.0,spot_baseline,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,182315,-61.00250190014238,spot_peer,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,182315,-87.66458563534198,baseline,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,182315,-49.45449130390277,peer,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,185699,-22.86172465297889,baseline,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,185699,-10.686067485768312,peer,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,185699,-0.1617935456354957,relative_legacy,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,185699,-29.155872283389293,spot_peer,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,185699,-55.63933485243852,spot_baseline,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,187708,39.85583561474368,spot_peer,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,187708,0.3405744885048342,relative_legacy,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,187708,26.312925252364995,peer,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,187708,24.444239259968317,baseline,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,187708,40.49031221451307,spot_baseline,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,188107,49.27111014550199,spot_peer,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,188107,0.6028295238508128,relative_legacy,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,188107,53.60529002402098,spot_baseline,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,188107,44.60378649955666,peer,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,188107,44.08751241204004,baseline,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,189585,-37.19567590164247,peer,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,189585,-72.75882813134432,baseline,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,189585,-0.4902844145101276,relative_legacy,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,189585,-73.69655941662063,spot_baseline,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,189585,-42.11919780362564,spot_peer,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,189588,-20.914815232156045,peer,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,189588,-0.2693010875538599,relative_legacy,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,189588,-51.45731728297583,spot_baseline,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,189588,-26.15359167865961,spot_peer,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,189588,-50.53564138740118,baseline,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,190710,-89.4263180621104,spot_peer,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,190710,-130.6095158005477,baseline,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,190710,-1.085891585270777,relative_legacy,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,190710,-79.59510452637173,peer,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,190710,-139.59286763311394,spot_baseline,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,190772,29.032129132347585,peer,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,190772,33.06713468960704,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,190772,23.979795270174296,baseline,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,190772,31.034012061215048,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,190772,0.3852126746168355,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191026,4.186796801227978,baseline,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191026,55.086344926388286,spot_baseline,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191026,50.33436306925491,spot_peer,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191026,3.825625943631132,peer,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191026,0.0204238811096354,relative_legacy,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191046,58.496250072115615,spot_baseline,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191046,52.782342283340434,spot_peer,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191046,14.928179449991546,peer,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191046,0.1861288206575536,relative_legacy,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191046,15.890453633946532,baseline,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191284,-42.11919780362564,spot_peer,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191284,-73.69655941662063,spot_baseline,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191284,-0.4263142263070927,relative_legacy,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191284,-57.43759812475935,baseline,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191284,-29.6906519528352,peer,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191471,-59.94620704162712,spot_baseline,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191471,-40.55397888866119,baseline,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191471,-19.23722402040565,peer,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191471,-0.2851985516328095,relative_legacy,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191471,-32.24778632389199,spot_peer,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191935,-0.1568431547951063,relative_legacy,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191935,-17.636074361258913,spot_peer,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191935,-39.592867633113926,spot_baseline,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191935,-11.069346482238611,peer,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191935,-34.84321664487352,baseline,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191975,22.154558823687744,peer,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191975,17.922057712327792,baseline,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191975,0.2854951666987395,relative_legacy,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191975,28.21432287814984,spot_baseline,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,191975,31.04287295347798,spot_peer,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192049,-69.5425406915226,baseline,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192049,-73.69655941662063,spot_baseline,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192049,-42.11919780362564,spot_peer,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192049,-35.07559416618776,peer,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192049,-0.4722660890484898,relative_legacy,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192418,-19.19901761523222,peer,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192418,-47.05265377635099,baseline,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192418,-0.2612547860396654,relative_legacy,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192418,-26.15359167865961,spot_peer,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192472,-21.75914350726268,spot_baseline,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192472,0.0215894876466715,relative_legacy,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192472,-21.54145624835416,baseline,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192472,0.3254137574755176,peer,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192472,-4.833200350372766,spot_peer,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192924,-0.0247482300628786,relative_legacy,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192924,-1.434197716594836,peer,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192924,-21.442084442276737,baseline,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192924,-24.4685095954902,spot_baseline,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,192924,-6.778260867859523,spot_peer,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,193275,-0.1307798532530317,relative_legacy,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,193275,-16.013512269874692,spot_peer,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,193275,-37.33272473940066,spot_baseline,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,193275,-25.94812847764577,baseline,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,193275,-8.214941484975533,peer,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,195286,46.06533974554999,peer,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,195286,52.782342283340434,spot_peer,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,195286,46.81257849743796,baseline,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,195286,0.621298197448078,relative_legacy,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,204737,-2.570617830324677,peer,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,204737,-9.513799748765011,spot_peer,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,204737,-11.458369157301073,baseline,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,204737,-0.04959528319345,relative_legacy,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,204737,-28.278970098040404,spot_baseline,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,208405,-31.39722157981487,baseline,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,208405,-7.009146107519109,peer,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,208405,-0.0808881830266075,relative_legacy,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,208405,-32.19280948873623,spot_baseline,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,208405,-12.32355458540546,spot_peer,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,215725,-22.552883306152665,baseline,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,215725,-32.19280948873623,spot_baseline,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,215725,-12.32355458540546,spot_peer,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,215725,-0.0976612473515578,relative_legacy,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,215725,-5.827234407378269,peer,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,218666,39.5424573769595,spot_peer,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,218666,42.99276567153431,peer,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,218666,40.05379295837288,spot_baseline,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,218666,37.71618390731377,baseline,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,218666,0.599294471190016,relative_legacy,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,219886,84.70347891195664,spot_baseline,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,219886,71.59657573470211,spot_peer,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,219886,82.66464352916141,baseline,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,219886,1.0597562322693026,relative_legacy,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,219886,76.37237706365333,peer,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,220077,37.78306078096296,baseline,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,220077,0.6117288902459203,relative_legacy,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,220077,43.74253852062753,peer,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,220077,37.96118347769927,spot_peer,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,220077,37.85116232537298,spot_baseline,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,221727,-26.15359167865961,spot_peer,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,221727,-20.569377053332925,peer,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,221727,-49.927075880532506,baseline,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,221727,-0.2675778946886381,relative_legacy,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,222631,4.803744701491865,baseline,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,222631,4.911806136549689,peer,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,222631,0.0343314059019018,relative_legacy,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,222631,37.96118347769927,spot_peer,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,227188,2.476057289896469,peer,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,227188,-15.200309344504996,spot_baseline,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,227188,-0.1245973209943231,spot_peer,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,227188,0.0141830536445979,relative_legacy,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30578,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.015572+00,227188,-10.05459767954492,baseline,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30827 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,182315,-100.0,spot_baseline,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,182315,-40.45942931160826,spot_peer,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,182315,-0.6569770583483148,relative_legacy,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,182315,-33.482134391868755,peer,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,182315,-87.72298670366958,baseline,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,185699,-52.92982831087414,baseline,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,185699,-0.4650134375175845,relative_legacy,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,185699,-125.15387669959644,spot_baseline,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,185699,-24.40235064921029,peer,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,185699,-58.51745869446025,spot_peer,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,187708,51.31672189138749,peer,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,187708,71.36958148433588,spot_baseline,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,187708,82.56721086512574,spot_peer,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,187708,0.5161859592347269,relative_legacy,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,187708,43.885751484154426,baseline,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,188107,13.407740468541377,baseline,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,188107,42.75972031030427,spot_peer,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,188107,38.139679705265536,peer,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,188107,15.919859484925396,spot_baseline,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,188107,0.3238719573023639,relative_legacy,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,189585,-0.0353635009264361,relative_legacy,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,189585,8.219518003128634,spot_peer,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,189585,-31.771311190438368,baseline,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,189585,9.990783123568788,peer,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,189588,-19.75135457914829,peer,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,189588,-72.35923711835923,baseline,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,189588,-73.69655941662063,spot_baseline,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,189588,-21.576125215091547,spot_peer,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,189588,-0.4412164856374649,relative_legacy,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,190710,-36.3972840207327,spot_peer,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,190710,-32.14061302806976,peer,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,190710,-94.34164716336323,spot_baseline,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,190710,-0.6199756112740105,relative_legacy,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,190710,-88.36736174860829,baseline,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,190772,10.632788678371108,baseline,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,190772,13.750352374993504,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,190772,41.20222586897687,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,190772,33.18204935421132,peer,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,190772,0.2392933119622796,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191026,31.330814389243205,spot_peer,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191026,-1.601713251907459e-14,spot_baseline,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191026,2.381549762374894,peer,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191026,0.0115542138987167,relative_legacy,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191026,-1.2175105846538668e-15,baseline,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191046,18.430013208363125,baseline,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191046,21.79083220244309,peer,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191046,80.00976170398012,spot_peer,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191046,0.2256146150873028,relative_legacy,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191284,-0.8920494767954984,relative_legacy,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191284,-63.57072569772285,spot_peer,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191284,-48.70478304177902,peer,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191284,-132.19280948873623,spot_baseline,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191284,-103.0275884218778,baseline,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191471,-105.397584763721,baseline,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191471,-80.40304339570667,spot_peer,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191471,-54.14905634766872,peer,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191471,-155.6393348524385,spot_baseline,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191471,-0.9684588179541184,relative_legacy,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191935,-86.68202208383744,spot_peer,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191935,-1.2238217962770397,relative_legacy,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191935,-164.38561897747246,spot_baseline,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191935,-74.6587857707725,peer,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191935,-144.6661630619809,baseline,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191975,3.283391651627411,baseline,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191975,24.3504553403793,peer,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191975,34.793701912460655,spot_peer,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191975,4.823618565284762,spot_baseline,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,191975,0.1185886904147595,relative_legacy,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192049,-73.69655941662063,spot_baseline,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192049,-21.576125215091547,spot_peer,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192049,-0.4268656047242536,relative_legacy,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192049,-16.729842894115063,peer,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192049,-64.42386715189392,baseline,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192418,-120.9082944962368,baseline,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192418,-56.35174474911229,peer,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192418,-63.57072569772285,spot_peer,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192418,-0.9607481826651968,relative_legacy,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192418,-132.19280948873623,spot_baseline,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192472,0.3654986976610735,relative_legacy,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192472,8.406426478847456,spot_baseline,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192472,37.36580844494071,spot_peer,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192472,39.448831798156775,peer,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192472,8.330611480737296,baseline,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192924,-24.75171101442723,peer,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192924,-75.73057488131609,baseline,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192924,-30.588017831874613,spot_peer,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192924,-0.5363548604920821,relative_legacy,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,192924,-86.24964762500649,spot_baseline,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,193275,-6.793882865657539,spot_baseline,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,193275,26.45346932323728,spot_peer,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,193275,19.890022315720625,peer,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,193275,0.0439296113775459,relative_legacy,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,193275,-4.492199635195694,baseline,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,195286,30.29058622413197,baseline,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,195286,58.50425606623335,spot_peer,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,195286,0.4565212126081288,relative_legacy,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,195286,37.85116232537298,spot_baseline,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,195286,48.48689273392092,peer,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,204737,-0.238212146506568,relative_legacy,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,204737,-8.429189282906421,peer,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,204737,-73.69655941662063,spot_baseline,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,204737,-21.576125215091547,spot_peer,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,204737,-30.01118120758045,baseline,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,208405,25.604974000408667,baseline,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,208405,51.88151118943458,peer,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,208405,50.21411848575994,spot_peer,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,208405,26.303440583379377,spot_baseline,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,208405,0.5365758072964885,relative_legacy,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,215725,41.89557455187782,peer,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,215725,37.85116232537298,spot_baseline,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,215725,58.50425606623335,spot_peer,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,215725,0.3529924901856149,relative_legacy,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,215725,26.57785927186529,baseline,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,218666,-13.75226328531378,baseline,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,218666,0.1286912797167572,relative_legacy,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,218666,22.37862270163682,peer,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,218666,20.8777728209973,spot_peer,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,218666,-14.560532224689933,spot_baseline,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,219886,-18.715982915247864,spot_peer,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,219886,-0.3922133295151924,relative_legacy,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,219886,-69.71253296344152,spot_baseline,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,219886,-16.014959951279348,peer,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,219886,-66.91190878543695,baseline,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,220077,0.0,baseline,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,220077,0.0,spot_baseline,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,220077,33.3080992221124,peer,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,220077,31.330814389243223,spot_peer,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,220077,0.2821925828537006,relative_legacy,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,221727,-100.0,spot_baseline,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,221727,-40.45942931160826,spot_peer,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,221727,-0.6899516260036459,relative_legacy,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,221727,-37.85097127492836,peer,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,221727,-97.01956251153238,baseline,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,222631,-5.089034661926394,peer,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,222631,-12.71314436914744,baseline,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,222631,-100.0,spot_baseline,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,222631,-40.45942931160826,spot_peer,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,222631,-0.1078070709762351,relative_legacy,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,227188,14.06490574472168,peer,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,227188,-0.0161395267650377,relative_legacy,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,227188,20.418475267539776,spot_peer,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,227188,-15.200309344504996,spot_baseline,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30579,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-06 14:09:15.035778+00,227188,-10.06232228337548,baseline,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30828 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,182315,68.67747557210465,baseline,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,182315,78.24085649273731,spot_baseline,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,182315,0.040787693951922,relative_legacy,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,182315,6.353527707828167,peer,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,182315,8.644418494533896,spot_peer,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,185699,-0.1197645886466623,relative_legacy,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,185699,-15.678253438482644,spot_peer,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,185699,-7.268619391679979,peer,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,185699,44.36066514756148,spot_baseline,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,185699,19.25281126272787,baseline,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,187708,56.83224786066988,baseline,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,187708,91.22666280664497,spot_baseline,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,187708,0.1163215017341814,relative_legacy,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,187708,17.966960493808738,spot_peer,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,187708,10.444417087935344,peer,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,188107,14.307603659779442,spot_peer,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,188107,0.1077062951289104,relative_legacy,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,188107,11.148561837647934,peer,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,188107,74.24538022759752,baseline,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,188107,86.12937291684075,spot_baseline,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,189585,75.58144892527093,baseline,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,189585,5.754056506794561,peer,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,189585,0.0291623078131422,relative_legacy,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,189585,7.433042947631927,spot_peer,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,189588,7.433042947631927,spot_peer,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,189588,5.657444740985133,peer,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,189588,0.0281277073534795,relative_legacy,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,189588,75.03875808574557,baseline,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,190710,66.9213990282356,baseline,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,190710,71.36958148433588,spot_baseline,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,190710,3.711513420646789,spot_peer,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,190710,-0.0194762542370509,relative_legacy,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,190710,2.181432017117084,peer,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,190772,-0.0012996573678865,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,190772,2.7319582309723103,peer,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,190772,4.966940047211089,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,190772,56.6591966380212,baseline,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,190772,73.11832415721999,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191026,1.885376920257853,baseline,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191026,24.801059559010486,spot_baseline,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191026,-2.259325638084104,peer,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191026,-0.0326932672106369,relative_legacy,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191026,-29.72014195742877,spot_peer,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191046,1.1540642595011816,spot_peer,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191046,-0.005167305342997,relative_legacy,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191046,0.070457322666539,peer,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191046,18.47018002994821,baseline,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191284,48.54268271702416,spot_baseline,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191284,37.83259297275718,baseline,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191284,-11.100084359444,peer,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191284,-12.675972833752956,spot_peer,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191284,-0.1929877969249112,relative_legacy,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191471,7.433042947631927,spot_peer,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191471,4.141681160939707,peer,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191471,0.024910696894055,relative_legacy,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191471,76.55347463629771,spot_baseline,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191471,51.8784732064117,baseline,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191935,69.26998852182032,baseline,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191935,78.24085649273731,spot_baseline,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191935,8.644418494533896,spot_peer,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191935,6.416698911804817,peer,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191935,0.0413580927139463,relative_legacy,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191975,-26.477831059040724,spot_peer,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191975,-0.2482517701306448,relative_legacy,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191975,-16.04274745196934,peer,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191975,29.31742659057913,spot_baseline,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,191975,16.954044433494907,baseline,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192049,60.65216412326432,baseline,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192049,4.7411172061022135,peer,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192049,0.0253192331385143,relative_legacy,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192049,7.433042947631927,spot_peer,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192418,-5.530282572604408,spot_peer,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192418,-0.13724501742725,relative_legacy,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192418,-6.452843331789974,peer,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192418,53.51397242611256,baseline,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192472,84.13550433352444,baseline,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192472,84.79969065549501,spot_baseline,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192472,11.797225847118243,peer,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192472,13.353021523912334,spot_peer,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192472,0.1109785901905113,relative_legacy,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192924,-0.2347438264049467,relative_legacy,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192924,-13.634026296963604,peer,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192924,-13.866462131418375,spot_peer,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192924,46.88439429746374,spot_baseline,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,192924,41.21957351581368,baseline,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,193275,49.55762126452889,baseline,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,193275,68.70606883398924,spot_baseline,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,193275,1.799371197959937,spot_peer,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,193275,-0.0303891540672734,relative_legacy,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,193275,0.339471728511004,peer,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,195286,0.1538081414646333,relative_legacy,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,195286,14.094381066373698,peer,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,195286,18.95284086976232,spot_peer,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,195286,74.23946852782348,baseline,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,204737,83.67320804591358,spot_baseline,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,204737,34.22069185846574,baseline,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,204737,0.0477752348639326,relative_legacy,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,204737,12.544316913246128,spot_peer,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,204737,4.718833832803255,peer,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,208405,17.18909059320443,peer,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,208405,0.1856414701679697,relative_legacy,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,208405,18.95284086976232,spot_peer,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,208405,90.35328867392288,baseline,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,215725,76.55347463629771,spot_baseline,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,215725,53.78162741953996,baseline,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,215725,0.024910696894055,relative_legacy,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,215725,7.433042947631927,spot_peer,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,215725,4.268764778241141,peer,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,218666,-0.2364560760329501,relative_legacy,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,218666,-13.577528387375422,peer,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,218666,-12.675972833752956,spot_peer,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,218666,46.026353783357415,baseline,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,218666,48.54268271702416,spot_baseline,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,219886,12.101540096136585,spot_baseline,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,219886,11.449405359626034,baseline,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,219886,-38.66963948539754,peer,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,219886,-0.5806553544525479,relative_legacy,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,219886,-38.837157928663,spot_peer,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,220077,-0.6521086650975669,peer,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,220077,1.1540642595011816,spot_peer,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,220077,-0.0576154882160398,relative_legacy,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,220077,67.70856714534229,baseline,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,220077,67.80719051126377,spot_baseline,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,221727,74.27071625431792,baseline,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,221727,5.741180782057731,peer,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,221727,7.433042947631927,spot_peer,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,221727,0.0291178462802106,relative_legacy,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,222631,-5.530282572604408,spot_peer,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,222631,-0.7591378391259784,peer,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,222631,-0.0118566483093723,relative_legacy,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,222631,7.448973270262107,baseline,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,227188,34.84960280556123,baseline,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,227188,52.60688116675877,spot_baseline,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,227188,-9.758274862202263,spot_peer,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,227188,-7.374240512175652,peer,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30580,"Will Tesla's stock price be at least $300 a share on December 31, 2024?",2024-12-06 14:09:15.050848+00,227188,-0.1337243053054293,relative_legacy,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30829 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,182315,67.80719051126377,spot_baseline,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,182315,0.1269828429575808,relative_legacy,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,182315,11.264011066846203,peer,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,182315,15.315764116045692,spot_peer,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,182315,59.58413627560048,baseline,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,185699,18.774213122948467,baseline,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,185699,42.22330006830478,spot_baseline,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,185699,-1.8677575588102264,peer,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,185699,-0.0251674174072427,relative_legacy,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,185699,-3.07443006144186,spot_peer,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,187708,32.69970322252947,spot_peer,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,187708,91.9912088677308,spot_baseline,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,187708,0.2629741102069902,relative_legacy,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,187708,20.13592005431185,peer,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,187708,58.26018589202754,baseline,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,188107,66.86842565001689,baseline,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,188107,16.7839569202248,peer,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,188107,76.55347463629771,spot_baseline,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,188107,0.2028923372768178,relative_legacy,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,188107,21.60276193404632,spot_peer,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,189585,0.2116097016587299,relative_legacy,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,189585,17.679721896195204,peer,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,189585,21.60276193404632,spot_peer,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,189585,75.58175974130647,baseline,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,189588,4.702721218104134,peer,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,189588,8.622880442519772,spot_peer,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,189588,57.41811069164756,baseline,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,189588,0.0343655676275847,relative_legacy,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,190710,25.199782762420103,spot_peer,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,190710,0.2557139375918451,relative_legacy,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,190710,20.8339543400425,peer,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,190710,76.54155927638944,baseline,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,190710,81.55754288625727,spot_baseline,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,190772,56.55971758542251,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,190772,43.85486072669468,baseline,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,190772,4.544793275287907,peer,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,190772,7.230863519186678,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,190772,0.0394196291543221,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191026,-5.303564023779745,spot_baseline,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191026,-0.0361333058138646,relative_legacy,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191026,-2.831071815287104,peer,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191026,-37.23765716129202,spot_peer,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191026,-0.4032146964364106,baseline,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191046,37.85116232537298,spot_baseline,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191046,-1.9533592981922,peer,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191046,-6.217207046142634,spot_peer,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191046,-0.0172701566418073,relative_legacy,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191046,10.321247900094718,baseline,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191284,-132.19280948873623,spot_baseline,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191284,-1.432094339094189,relative_legacy,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191284,-128.44809555564663,spot_peer,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191284,-101.89748989883596,peer,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191284,-103.0260393241617,baseline,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191471,-0.0841459246986656,relative_legacy,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191471,-6.217207046142634,spot_peer,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191471,37.85116232537298,spot_baseline,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191471,25.686782466247355,baseline,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191471,-4.934211091674784,peer,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191935,-0.0989070588122704,relative_legacy,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191935,-5.147811208515819,peer,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191935,42.22330006830478,spot_baseline,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191935,-3.07443006144186,spot_peer,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,191935,37.38224736248272,baseline,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192049,21.60276193404632,spot_peer,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192049,17.50466907024537,peer,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192049,72.521429251139,baseline,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192049,0.2087508765403923,relative_legacy,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192418,-0.1466737588103344,relative_legacy,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192418,34.633358619847606,baseline,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192418,-6.217207046142634,spot_peer,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192418,-8.53278022337573,peer,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192472,30.52588365925987,peer,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192472,94.11063109464314,spot_baseline,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192472,93.4671662828703,baseline,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192472,0.3856877904865783,relative_legacy,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192472,34.223184820603926,spot_peer,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192924,51.52388418954351,baseline,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192924,5.321713394158812,peer,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192924,8.622880442519772,spot_peer,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192924,58.496250072115615,spot_baseline,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,192924,0.04516492072881,relative_legacy,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,193275,63.78420603241049,spot_baseline,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,193275,0.0940339132720884,relative_legacy,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,193275,8.277482884735587,peer,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,193275,12.423965235649383,spot_peer,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,193275,46.49973123121869,baseline,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,195286,21.60276193404632,spot_peer,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,195286,0.1966146573640562,relative_legacy,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,195286,16.048128805245764,peer,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,195286,61.37376982697008,baseline,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,204737,31.457624833098507,baseline,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,204737,21.60276193404632,spot_peer,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,204737,0.1159033513782993,relative_legacy,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,204737,8.428882539918646,peer,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,208405,21.60276193404632,spot_peer,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,208405,0.2110752239739828,relative_legacy,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,208405,17.682204940257495,peer,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,208405,74.69941409154009,baseline,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,215725,13.750352374993504,spot_baseline,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,215725,-17.410789807104987,peer,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,215725,-0.2586050797372939,relative_legacy,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,215725,9.66644932378656,baseline,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,215725,-23.541334344545053,spot_peer,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,218666,-0.3243994488884291,relative_legacy,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,218666,20.414071678022548,spot_baseline,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,218666,19.409881940466825,baseline,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,218666,-18.75132431068398,spot_peer,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,218666,-21.37599368250728,peer,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,219886,68.41005768559768,spot_baseline,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,219886,63.68909473019701,baseline,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,219886,15.74911667530372,spot_peer,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,219886,11.83075829233987,peer,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,219886,0.132936461065953,relative_legacy,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,220077,15.315764116045692,spot_peer,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,220077,0.1244518359273212,relative_legacy,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,220077,11.226690092068,peer,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,220077,67.80719051126377,spot_baseline,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,220077,67.71965858975054,baseline,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,221727,-9.781932659059072,peer,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,221727,-6.217207046142634,spot_peer,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,221727,36.72328919505988,baseline,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,221727,-0.1644155457133941,relative_legacy,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,222631,6.709146164994847,baseline,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,222631,0.0078943376223298,relative_legacy,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,222631,4.389488418197013,spot_peer,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,222631,0.4889839914964211,peer,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,222631,52.60688116675877,spot_baseline,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,227188,-34.10990259049578,baseline,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,227188,-47.54727919737511,peer,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,227188,-70.41386569567693,spot_peer,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,227188,-51.45731728297583,spot_baseline,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30581,"Will Tesla's stock price be at least $340 a share on December 31, 2024?",2024-12-06 14:09:15.207126+00,227188,-0.6732055266334831,relative_legacy,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30830 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,182315,-0.570832508021133,peer,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,182315,3.406455309080245,spot_peer,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,182315,40.05379295837288,spot_baseline,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,182315,-0.0569865201152309,relative_legacy,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,182315,35.22081560256733,baseline,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,185699,-12.029423371771175,spot_baseline,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,185699,-0.229430079215472,relative_legacy,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,185699,-16.148159736207063,peer,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,185699,-33.98421262157184,spot_peer,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,185699,-5.470767378049524,baseline,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,187708,17.686393759166567,baseline,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,187708,-5.674997650805955,peer,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,187708,-0.0969398093674814,relative_legacy,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,187708,27.500704749986976,spot_baseline,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,187708,-5.605437307702839,spot_peer,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,188107,0.9295313013205307,peer,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,188107,-0.0380325937180722,relative_legacy,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,188107,5.092689889508796,spot_peer,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,188107,42.40262825060985,spot_baseline,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,188107,37.58521085353783,baseline,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,189585,66.94665058619827,baseline,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,189585,23.330687047566776,spot_peer,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,189585,0.1871018040159393,relative_legacy,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,189585,20.0783315094216,peer,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,189588,-118.44245711374272,spot_baseline,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,189588,-113.6260256624351,peer,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,189588,-110.37838887440256,spot_peer,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,189588,-1.640870844486738,relative_legacy,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,189588,-116.2385046991146,baseline,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,190710,32.301224437807804,peer,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,190710,82.65477680222118,baseline,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,190710,37.80603107927964,spot_peer,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,190710,0.3729374834421276,relative_legacy,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,190710,87.97057662822883,spot_baseline,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,190772,-0.1079829512442993,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,190772,-5.400331763270868,peer,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,190772,-3.068867378272204,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,190772,24.089283044480435,baseline,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,190772,31.034012061215048,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191026,1.110080624762772,peer,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191026,0.0054004683189622,relative_legacy,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191026,55.64531308397408,spot_baseline,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191026,4.230978312021952,baseline,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191026,14.599645603916656,spot_peer,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191046,-132.19280948873623,spot_baseline,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191046,-35.977173229822355,baseline,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191046,-120.24980035413618,spot_peer,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191046,-32.61668972215124,peer,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191046,-0.4607265646085825,relative_legacy,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191284,0.2459150388160094,relative_legacy,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191284,29.60966573569752,spot_peer,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191284,59.66240666875731,baseline,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191284,20.21766280218624,peer,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191471,16.196948534147392,peer,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191471,73.11832415721999,spot_baseline,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191471,49.67418646216061,baseline,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191471,0.2017378914040901,relative_legacy,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191471,27.14356283527667,spot_peer,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191935,0.3374969039473812,relative_legacy,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191935,84.79969065549501,spot_baseline,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191935,35.52964431197792,spot_peer,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191935,28.153500753603524,peer,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191935,75.07738677592369,baseline,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191975,-31.609978488871235,spot_peer,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191975,-0.1716305882932307,relative_legacy,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191975,-3.2656416981075296,baseline,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191975,-12.072236151734987,peer,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,191975,-8.722241211206306,spot_baseline,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192049,0.266018485655862,relative_legacy,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192049,29.60966573569752,spot_peer,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192049,72.71426545039495,baseline,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192049,24.86642168383208,peer,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192418,11.726314108419365,peer,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192418,16.646340215461176,spot_peer,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192418,53.53426039087079,baseline,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192418,0.1004104129046944,relative_legacy,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192472,0.2400139631077789,relative_legacy,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192472,23.99058153830074,peer,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192472,73.11832415721999,spot_baseline,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192472,72.67651318384142,baseline,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192472,27.14356283527667,spot_peer,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192924,11.222751769354574,peer,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192924,16.646340215461176,spot_peer,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192924,58.496250072115615,spot_baseline,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192924,0.105184983077104,relative_legacy,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,192924,51.606438510525656,baseline,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,193275,-0.0499169523580893,relative_legacy,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,193275,28.28056038225653,baseline,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,193275,-1.4762988800194778,peer,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,193275,1.3460528981247089,spot_peer,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,193275,37.18376173304205,spot_baseline,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,195286,0.0253872978759883,relative_legacy,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,195286,9.50064995431264,spot_peer,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,195286,38.91663738317208,baseline,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,195286,4.519864327083772,peer,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,204737,-9.976188308491825,spot_peer,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,204737,-0.0659847213683489,relative_legacy,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,204737,21.412480535284736,spot_baseline,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,204737,8.841622164602848,baseline,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,204737,-4.535715281691664,peer,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,208405,0.3480775288202359,relative_legacy,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,208405,31.88190918154424,peer,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,208405,82.73690494617351,baseline,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,208405,35.52964431197792,spot_peer,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,215725,58.496250072115615,spot_baseline,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,215725,16.646340215461176,spot_peer,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,215725,9.26711010136284,peer,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,215725,41.14400356558958,baseline,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,215725,0.1024003254876153,relative_legacy,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,218666,26.783539209761496,spot_baseline,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,218666,-0.2077911359456395,relative_legacy,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,218666,25.53071464019938,baseline,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,218666,-6.120292196769239,spot_peer,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,218666,-9.554704073742563,peer,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,219886,-78.23793940507522,spot_peer,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,219886,-72.1238688995143,baseline,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,219886,-73.67251650279296,spot_baseline,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,219886,-81.27356857367337,peer,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,219886,-1.1982074055676566,relative_legacy,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,220077,0.0946767480840589,relative_legacy,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,220077,58.43028704523386,baseline,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,220077,13.27082709838604,peer,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,220077,16.646340215461176,spot_peer,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,221727,74.26802583487913,baseline,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,221727,0.2671996166079732,relative_legacy,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,221727,25.72297667177604,peer,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,221727,29.60966573569752,spot_peer,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,222631,0.0084899359069268,relative_legacy,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,222631,50.58909297299573,spot_baseline,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,222631,6.463267653801227,baseline,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,222631,10.969772864193835,spot_peer,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,222631,1.4292288214508946,peer,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,227188,34.89597475927181,baseline,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,227188,52.60688116675877,spot_baseline,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,227188,0.0633340923045627,relative_legacy,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,227188,12.41834792586332,spot_peer,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30582,"Will Tesla's stock price be under $420 a share on December 31, 2024?",2024-12-06 14:09:15.226758+00,227188,6.064294738993045,peer,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30831 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,182315,0.5938514707524424,relative_legacy,RyansAGI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,182315,33.234650225474375,peer,RyansAGI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,182315,46.30022069019926,baseline,RyansAGI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,182315,39.792006221441184,spot_peer,RyansAGI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,182315,52.60688116675877,spot_baseline,RyansAGI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,185699,-8.560089184491963,baseline,MWG,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,185699,-11.21448687797322,spot_peer,MWG,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,185699,-5.241351655542566,peer,MWG,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,185699,-0.0083941217996232,relative_legacy,MWG,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,185699,-18.44245711374277,spot_baseline,MWG,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,187708,0.0394166191376681,relative_legacy,twsummerbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,187708,-7.681702529404198,baseline,twsummerbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,187708,-6.385643426380691,spot_peer,twsummerbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,187708,-4.456491109250777,peer,twsummerbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,187708,-11.71613442327492,spot_baseline,twsummerbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,188107,41.50374992788439,spot_baseline,Cassie,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,188107,0.4968546198397903,relative_legacy,Cassie,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,188107,31.821041246627903,spot_peer,Cassie,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,188107,26.35512948832347,peer,Cassie,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,188107,37.26173309162519,baseline,Cassie,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,189585,17.120576414678798,peer,mf-bot-1,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,189585,20.90870212492446,spot_peer,mf-bot-1,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,189585,0.358399157122394,relative_legacy,mf-bot-1,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,189585,25.99052589171924,baseline,mf-bot-1,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,189588,31.62171180876549,baseline,mf-bot-3,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,189588,21.280105391184417,peer,mf-bot-3,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,189588,32.19280948873624,spot_baseline,mf-bot-3,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,189588,25.136694414522307,spot_peer,mf-bot-3,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,189588,0.4155821882389476,relative_legacy,mf-bot-3,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,190710,53.26179450429026,spot_peer,Bot_Pepa,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,190710,0.7821136693129724,relative_legacy,Bot_Pepa,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,190710,47.49561587187305,peer,Bot_Pepa,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,190710,71.36958148433591,spot_baseline,Bot_Pepa,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,190710,67.14123061686605,baseline,Bot_Pepa,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,190772,-41.0101300961934,spot_peer,Jay_Bailey_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,190772,-59.94620704162715,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,190772,-32.321184631923764,peer,Jay_Bailey_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,190772,-46.61262642641203,baseline,Jay_Bailey_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,190772,-0.2971941062485125,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191026,2.3443567087212114,peer,manticAI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191026,40.12271233238324,spot_baseline,manticAI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191026,3.0510281455018444,baseline,manticAI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191026,0.0427210081955852,relative_legacy,manticAI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191026,30.82959099121725,spot_peer,manticAI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191046,0.003571652087037,relative_legacy,archipelago,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191046,-2.3409264165769463,peer,archipelago,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191046,-15.200309344505014,spot_baseline,archipelago,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191046,-8.886941093295722,spot_peer,archipelago,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191046,-4.135627085521973,baseline,archipelago,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191284,-164.66638575940985,spot_peer,000_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191284,-129.4476245882602,peer,000_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191284,-180.9591602069303,baseline,000_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191284,-1.6411347024077294,relative_legacy,000_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191284,-232.1928094887363,spot_baseline,000_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191471,-0.0928147122444098,relative_legacy,HSeldon,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191471,-21.89478321896792,baseline,HSeldon,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191471,-32.19280948873623,spot_baseline,HSeldon,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191471,-21.08589835770686,spot_peer,HSeldon,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191471,-14.623865505189496,peer,HSeldon,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191935,35.61438102252753,spot_baseline,pgodzinai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191935,22.53971075989612,peer,pgodzinai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191935,32.07448859609011,baseline,pgodzinai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191935,27.59304895703004,spot_peer,pgodzinai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191935,0.4439803391757948,relative_legacy,pgodzinai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191975,-9.502523461597823,spot_peer,jkraybill_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191975,-6.726001152458251,baseline,jkraybill_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191975,0.004640655646505,relative_legacy,jkraybill_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191975,-3.938640792020086,peer,jkraybill_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,191975,-16.057782918305964,spot_baseline,jkraybill_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192049,-32.19280948873623,spot_baseline,gnosis-ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192049,-23.76575692490406,peer,gnosis-ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192049,-21.08589835770686,spot_peer,gnosis-ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192049,-30.63927953233024,baseline,gnosis-ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192049,-0.1985818627521287,relative_legacy,gnosis-ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192418,0.4641249027847154,relative_legacy,InstitutPelFutur,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192418,29.19883970539788,spot_peer,InstitutPelFutur,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192418,24.14767657886136,peer,InstitutPelFutur,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192418,34.64782093434584,baseline,InstitutPelFutur,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192472,17.17880724884733,peer,bestworldbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192472,26.16787318608431,baseline,bestworldbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192472,20.90870212492446,spot_peer,bestworldbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192472,0.3588084339565803,relative_legacy,bestworldbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192472,26.303440583379377,spot_baseline,bestworldbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192924,-28.980648788561098,peer,acm_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192924,-39.42209329015166,baseline,acm_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192924,-0.2646156662144694,relative_legacy,acm_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192924,-44.61480318188743,spot_baseline,acm_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,192924,-30.003677902524508,spot_peer,acm_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,193275,-8.168841461088775,baseline,histerio,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,193275,0.0812826461237486,relative_legacy,histerio,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,193275,7.313470463021537,spot_baseline,histerio,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,193275,-4.589830704524123,peer,histerio,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,193275,7.275756296800684,spot_peer,histerio,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,195286,-34.915935450960994,spot_peer,Unwrapped80T,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,195286,-41.33262346532921,baseline,Unwrapped80T,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,195286,-51.45731728297583,spot_baseline,Unwrapped80T,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,195286,-28.8708820363174,peer,Unwrapped80T,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,195286,-0.2533784115043577,relative_legacy,Unwrapped80T,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,204737,-23.974008719123056,spot_peer,SynapseSeer,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,204737,-0.0789617121189546,relative_legacy,SynapseSeer,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,204737,-15.01996461255114,baseline,SynapseSeer,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,204737,-9.911344585221867,peer,SynapseSeer,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,204737,-36.21579396758951,spot_baseline,SynapseSeer,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,208405,-51.45731728297583,spot_baseline,mf-bot-4,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,208405,-0.4022647341007823,relative_legacy,mf-bot-4,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,208405,-38.53532439658017,peer,mf-bot-4,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,208405,-50.30245271732085,baseline,mf-bot-4,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,208405,-34.915935450960994,spot_peer,mf-bot-4,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,215725,-24.878819153811044,peer,estr.ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,215725,-51.45731728297583,spot_baseline,estr.ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,215725,-36.21327842278365,baseline,estr.ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,215725,-34.915935450960994,spot_peer,estr.ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,215725,-0.2238353434579026,relative_legacy,estr.ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,218666,26.78353920976152,spot_baseline,GreeneiBot2,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,218666,0.3627213792658417,relative_legacy,GreeneiBot2,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,218666,17.15537400273131,peer,GreeneiBot2,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,218666,25.597969222173926,baseline,GreeneiBot2,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,218666,21.25336609880864,spot_peer,GreeneiBot2,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,219886,84.79969065549501,spot_baseline,SaraBase,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,219886,62.90330260755577,spot_peer,SaraBase,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,219886,0.8953031329719464,relative_legacy,SaraBase,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,219886,77.85287479163317,baseline,SaraBase,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,219886,55.48641531375589,peer,SaraBase,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,220077,0.2339245354834897,relative_legacy,mmBot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,220077,11.896809508141374,spot_peer,mmBot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,220077,13.750352374993504,spot_baseline,mmBot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,220077,13.737756320772268,baseline,mmBot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,220077,7.961193431731059,peer,mmBot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,221727,0.4702422210457861,relative_legacy,mf-bot-5,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,221727,36.75171152407409,baseline,mf-bot-5,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,221727,29.19883970539788,spot_peer,mf-bot-5,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,221727,25.1624562309682,peer,mf-bot-5,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,222631,-26.398418133560305,spot_peer,Grizeu_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,222631,-5.067322905904304,baseline,Grizeu_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,222631,-3.323107014313888,peer,Grizeu_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,222631,-0.0288828757525749,relative_legacy,Grizeu_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,222631,-39.592867633113926,spot_baseline,Grizeu_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,227188,37.7637306359509,peer,ProfessorSP,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,227188,50.81756097961999,baseline,ProfessorSP,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,227188,56.98332403127539,spot_peer,ProfessorSP,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,227188,0.6270381844348314,relative_legacy,ProfessorSP,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30583,"Will the closing price of CAC 40 be greater than 7,400 on December 31, 2024?",2024-12-06 14:09:15.286391+00,227188,76.55347463629771,spot_baseline,ProfessorSP,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30832 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,182315,42.75683001384493,baseline,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,182315,48.3324998449485,peer,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,182315,48.54268271702416,spot_baseline,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,182315,0.4623237441823514,relative_legacy,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,182315,55.84634074195733,spot_peer,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,185699,16.71953158654585,spot_peer,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,185699,8.190088301144785,peer,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,185699,0.0137193381186673,relative_legacy,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,185699,-2.7925865853983263,baseline,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,185699,-5.889368905356857,spot_baseline,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,187708,5.429858619560664,baseline,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,187708,18.440630499282715,peer,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,187708,8.133962745193879,spot_baseline,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,187708,26.799773004242724,spot_peer,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,187708,0.1106004035390861,relative_legacy,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,188107,0.2930451502329519,relative_legacy,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,188107,41.99864076608092,spot_peer,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,188107,36.89783161382927,peer,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,188107,26.64037272565807,baseline,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,188107,29.2781749227846,spot_baseline,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,189585,60.5886605447201,peer,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,189585,57.79921680355166,baseline,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,189585,63.00115704430786,spot_peer,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,189585,0.6123632042947681,relative_legacy,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,189588,0.4079898951665243,relative_legacy,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,189588,48.16106955564545,spot_peer,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,189588,45.595468117563776,peer,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,189588,37.27476630535728,baseline,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,190710,-99.71807653922542,baseline,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,190710,-105.88936890535685,spot_baseline,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,190710,-54.57620586189906,peer,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,190710,-0.958545260512039,relative_legacy,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,190710,-55.16239824930032,spot_peer,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,190772,18.857828037199912,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,190772,0.0393267949239076,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,190772,15.139897832305683,peer,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,190772,-2.2677274201981894,baseline,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,190772,-2.914634565951651,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191026,0.6912809205250193,baseline,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191026,9.08985900330264,spot_baseline,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191026,2.090369321977446,peer,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191026,27.486889681799937,spot_peer,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191026,0.0113916557492145,relative_legacy,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191046,-0.4794017998862611,peer,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191046,-0.0578145956733715,relative_legacy,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191046,-2.1878891180124023,spot_peer,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191046,-8.755045923544019,baseline,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191046,-32.19280948873623,spot_baseline,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191284,-258.8920322207365,baseline,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191284,-170.46999974063675,peer,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191284,-332.1928094887362,spot_baseline,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191284,-217.8336786255509,spot_peer,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191284,-2.5266346795222727,relative_legacy,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191471,-84.99609465170724,spot_peer,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191471,-57.612805089980654,peer,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191471,-0.9441721203986692,relative_legacy,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191471,-147.39311883324126,spot_baseline,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191471,-100.33395161477624,baseline,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191935,-21.75914350726268,spot_baseline,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191935,3.245241166463667,peer,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191935,-19.596475237603094,baseline,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191935,-0.1666014100621529,relative_legacy,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,191935,5.31203134209696,spot_peer,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192049,75.98103853583441,spot_peer,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192049,0.7640575318903837,relative_legacy,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192049,71.24896205334218,peer,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192049,72.98260733310201,baseline,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192418,34.65415067729003,baseline,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192418,42.78715080979055,peer,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192418,0.3710512350998034,relative_legacy,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192418,48.16106955564545,spot_peer,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192472,-0.0552637398737899,relative_legacy,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192472,11.57795359651233,peer,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192472,14.536215077140998,spot_peer,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192472,-8.926733809708741,spot_baseline,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192472,-8.888726084768326,baseline,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192924,20.163386116965043,spot_baseline,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192924,17.849665470943297,baseline,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192924,30.294101049231568,peer,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192924,35.44675467199616,spot_peer,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,192924,0.2123563561591782,relative_legacy,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,193275,-0.1614329494793743,relative_legacy,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,193275,-9.71373874532866,spot_peer,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,193275,0.5424160649870249,peer,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,193275,-42.66254735540554,spot_baseline,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,193275,-22.32405158349805,baseline,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,195286,-80.3229996515093,baseline,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,195286,-100.0,spot_baseline,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,195286,-41.13577770208645,peer,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,195286,-0.7457608470290599,relative_legacy,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,195286,-50.92900622497757,spot_peer,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,204737,18.43368141852324,spot_peer,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,204737,0.023656130843972,relative_legacy,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,204737,7.872539997292163,peer,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,204737,-1.460385027212047,baseline,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,204737,-3.50469470992008,spot_baseline,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,208405,-34.36116578422368,peer,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,208405,-73.69655941662063,spot_baseline,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,208405,-72.28547445448763,baseline,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,208405,-32.02158552041932,spot_peer,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,208405,-0.6852903602928048,relative_legacy,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,215725,-0.4590482134838101,relative_legacy,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,215725,-32.02158552041932,spot_peer,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,215725,-22.14436315669259,peer,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,215725,-73.69655941662063,spot_baseline,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,215725,-51.88969287903034,baseline,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,218666,-19.52500184364451,peer,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,218666,-53.95195299599893,spot_baseline,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,218666,-51.72924076802169,baseline,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,218666,-0.4801219681228498,relative_legacy,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,218666,-17.828781386784062,spot_peer,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,219886,-1.7994602519001972,relative_legacy,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,219886,-115.76288181727077,peer,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,219886,-114.1941573093469,spot_peer,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,219886,-183.7385017868813,baseline,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,219886,-188.01259402584955,spot_baseline,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,220077,26.28387064916725,baseline,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,220077,37.463559674734846,peer,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,220077,26.303440583379377,spot_baseline,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,220077,39.86034431542685,spot_peer,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,220077,0.2955379943038275,relative_legacy,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,221727,0.4015825257055167,relative_legacy,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,221727,48.16106955564545,spot_peer,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,221727,45.16425472446701,peer,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,221727,36.76637667831108,baseline,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,222631,-6.597221524070517,baseline,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,222631,-2.003862550474796,peer,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,222631,-0.0447022558776485,relative_legacy,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,222631,-16.03558909388884,spot_peer,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,227188,48.16106955564545,spot_peer,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,227188,0.3076564507285996,relative_legacy,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,227188,32.59984013420147,peer,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,227188,37.85116232537298,spot_baseline,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30584,"Will the closing price of CAC 40 be less than or equal to 7,400 and greater than or equal to 7,200 on December 31, 2024?",2024-12-06 14:09:15.31524+00,227188,25.144917251638965,baseline,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30833 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,182315,-88.29778290250793,spot_peer,RyansAGI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,182315,-88.8968687611256,spot_baseline,RyansAGI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,182315,-78.735033433013,peer,RyansAGI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,182315,-1.2677062209013044,relative_legacy,RyansAGI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,182315,-78.36186682821777,baseline,RyansAGI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,185699,20.241817524746672,spot_peer,MWG,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,185699,0.0410354827204222,relative_legacy,MWG,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,185699,30.13829677003572,baseline,MWG,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,185699,62.29303509201767,spot_baseline,MWG,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,185699,9.15486457840796,peer,MWG,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,187708,36.737106564852944,spot_baseline,twsummerbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,187708,0.4629537232106595,peer,twsummerbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,187708,24.826528093473964,baseline,twsummerbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,187708,1.895154155079692,spot_peer,twsummerbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,187708,-0.1228596076834776,relative_legacy,twsummerbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,188107,-0.0959466067855309,relative_legacy,Cassie,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,188107,7.241121833233019,spot_peer,Cassie,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,188107,6.753387389460853,peer,Cassie,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,188107,40.64924150809495,baseline,Cassie,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,188107,44.18375586225591,spot_baseline,Cassie,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,189585,47.9507407099309,baseline,mf-bot-1,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,189585,10.610885379240356,peer,mf-bot-1,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,189585,10.370406045013024,spot_peer,mf-bot-1,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,189585,-0.0587983031644657,relative_legacy,mf-bot-1,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,189588,-72.56902514524391,baseline,mf-bot-3,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,189588,-77.38544378080448,spot_peer,mf-bot-3,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,189588,-1.2623764875669123,relative_legacy,mf-bot-3,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,189588,-73.69655941662059,spot_baseline,mf-bot-3,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,189588,-77.49113292784438,peer,mf-bot-3,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,190710,29.253710141529755,spot_peer,Bot_Pepa,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,190710,70.57666762989932,baseline,Bot_Pepa,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,190710,27.97482546603113,peer,Bot_Pepa,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,190710,74.84612330040356,spot_baseline,Bot_Pepa,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,190710,0.189888125890692,relative_legacy,Bot_Pepa,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,190772,32.87397078872739,baseline,Jay_Bailey_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,190772,5.833705841108027,spot_peer,Jay_Bailey_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,190772,3.7255098337696455,peer,Jay_Bailey_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,190772,42.22330006830476,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,190772,-0.1038874693170475,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191026,0.5112923115419123,baseline,manticAI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191026,-19.65246155567759,spot_peer,manticAI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191026,-0.0228284976131469,relative_legacy,manticAI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191026,6.722421281786115,spot_baseline,manticAI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191026,-1.4947222250881032,peer,manticAI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191046,-35.3908432981732,spot_peer,archipelago,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191046,-9.850788991897012,peer,archipelago,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191046,-15.200309344505014,spot_baseline,archipelago,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191046,-0.1701385590898192,relative_legacy,archipelago,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191046,-4.142176059615608,baseline,archipelago,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191284,0.2886059010851046,relative_legacy,000_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191284,41.99921974852828,spot_peer,000_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191284,72.16657535998813,baseline,000_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191284,32.11181948184185,peer,000_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191471,26.757892299412777,spot_peer,HSeldon,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191471,0.1115910796169097,relative_legacy,HSeldon,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191471,48.62452686566852,baseline,HSeldon,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191471,71.36958148433591,spot_baseline,HSeldon,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191471,17.485743489189687,peer,HSeldon,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191935,65.99245584023782,spot_baseline,pgodzinai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191935,20.774673538851832,peer,pgodzinai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191935,0.10065206896717,relative_legacy,pgodzinai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191935,22.897640695413795,spot_peer,pgodzinai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191935,59.43361114774504,baseline,pgodzinai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191975,10.8065576441898,baseline,jkraybill_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191975,-0.4871478711964272,spot_peer,jkraybill_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191975,-0.0523351281801534,relative_legacy,jkraybill_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191975,33.418686256651846,spot_baseline,jkraybill_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,191975,-0.4745401118044031,peer,jkraybill_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192049,36.399400402678296,spot_peer,gnosis-ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192049,0.2868589318417129,relative_legacy,gnosis-ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192049,80.96603902795941,baseline,gnosis-ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192049,35.23064729607928,peer,gnosis-ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192418,-61.419837655838464,spot_peer,InstitutPelFutur,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192418,-0.9715616260761424,relative_legacy,InstitutPelFutur,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192418,-47.120357189535966,baseline,InstitutPelFutur,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192418,-56.87328732143556,peer,InstitutPelFutur,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192472,58.29956735996614,baseline,bestworldbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192472,17.51609630616157,spot_peer,bestworldbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192472,0.040539706737803,relative_legacy,bestworldbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192472,17.95675640021455,peer,bestworldbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192924,48.4107057054695,baseline,acm_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192924,13.069654039847856,peer,acm_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192924,-0.0028208755305278,relative_legacy,acm_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192924,54.59683691052925,spot_baseline,acm_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,192924,14.716698094555628,spot_peer,acm_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,193275,56.53181914186892,baseline,histerio,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,193275,75.87295684578628,spot_baseline,histerio,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,193275,29.990876446162087,spot_peer,histerio,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,193275,0.1321113291832911,relative_legacy,histerio,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,193275,20.78991797490704,peer,histerio,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,195286,0.2350351429704717,relative_legacy,Unwrapped80T,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,195286,68.11265694806882,baseline,Unwrapped80T,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,195286,28.729494969889583,peer,Unwrapped80T,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,195286,36.399400402678296,spot_peer,Unwrapped80T,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,204737,25.10275127204794,spot_peer,SynapseSeer,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,204737,69.06405786156932,spot_baseline,SynapseSeer,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,204737,9.978562781856766,peer,SynapseSeer,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,204737,0.069392677019073,relative_legacy,SynapseSeer,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,204737,28.924181390154523,baseline,SynapseSeer,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,208405,2.813407188619423,peer,mf-bot-4,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,208405,37.85116232537298,spot_baseline,mf-bot-4,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,208405,-0.1637847893803631,relative_legacy,mf-bot-4,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,208405,37.057992548762016,baseline,mf-bot-4,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,208405,2.694937500520412,spot_peer,mf-bot-4,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,215725,65.24504550529508,baseline,estr.ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,215725,0.26290126464866,relative_legacy,estr.ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,215725,41.99921974852828,spot_peer,estr.ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,215725,28.877116133541413,peer,estr.ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,218666,18.16734747008276,peer,GreeneiBot2,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,218666,57.74449088318277,baseline,GreeneiBot2,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,218666,18.615007714191748,spot_peer,GreeneiBot2,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,218666,60.026975350900464,spot_baseline,GreeneiBot2,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,218666,0.050441074859792,relative_legacy,GreeneiBot2,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,219886,-53.824369851257885,baseline,SaraBase,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,219886,-57.132159005177,spot_baseline,SaraBase,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,219886,-65.49382035784427,spot_peer,SaraBase,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,219886,-62.4786924975742,peer,SaraBase,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,219886,-1.0536095950205215,relative_legacy,SaraBase,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,220077,2.759011314132551,peer,mmBot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,220077,-0.1652170182248751,relative_legacy,mmBot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,220077,37.830467464384434,baseline,mmBot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,220077,2.694937500520412,spot_peer,mmBot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,221727,0.0364906942119656,relative_legacy,mf-bot-5,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,221727,56.79381156747903,baseline,mf-bot-5,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,221727,17.51609630616157,spot_peer,mf-bot-5,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,221727,17.31697674604983,peer,mf-bot-5,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,222631,2.7498091115464747,baseline,Grizeu_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,222631,-0.0225527569513989,relative_legacy,Grizeu_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,222631,-1.206864040695761,peer,Grizeu_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,222631,-9.106432217791433,spot_peer,Grizeu_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,222631,21.412480535284764,spot_baseline,Grizeu_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,227188,-26.31923651295816,baseline,ProfessorSP,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,227188,-52.902320338437775,spot_peer,ProfessorSP,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,227188,-39.592867633113926,spot_baseline,ProfessorSP,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,227188,-36.13849364587266,peer,ProfessorSP,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30585,"Will the closing price of CAC 40 be less than 7,200 on December 31, 2024?",2024-12-06 14:09:15.340428+00,227188,-0.6272537598313305,relative_legacy,ProfessorSP,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,0.5,2024-12-07 15:30:00+00,30834 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,182315,13.958021623069024,peer,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,182315,83.03099872367358,baseline,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,182315,0.0950279338423797,relative_legacy,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,182315,94.11063109464314,spot_baseline,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,182315,18.215178663834248,spot_peer,RyansAGI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,185699,-4.7948164972173,peer,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,185699,62.29303509201767,spot_baseline,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,185699,-0.1367681155681263,relative_legacy,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,185699,-4.626751046202958,spot_peer,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,185699,44.90400671555371,baseline,MWG,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,187708,54.67554694341958,baseline,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,187708,79.57669477823923,spot_baseline,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,187708,-0.0086114395775182,relative_legacy,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,187708,7.781230362961336,spot_peer,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,187708,3.97452055639409,peer,twsummerbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,188107,-1.2089696307303273,spot_peer,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,188107,-0.1569880750179962,relative_legacy,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,188107,67.053823242723,spot_baseline,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,188107,-3.703723903622561,peer,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,188107,62.65108083670835,baseline,Cassie,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,189585,91.49725447508034,baseline,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,189585,14.78669573016552,peer,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,189585,17.13065117757865,spot_peer,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,189585,0.0824469255861437,relative_legacy,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,189588,11.530831831728667,spot_peer,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,189588,84.79969065549501,spot_baseline,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,189588,0.0053627254840493,relative_legacy,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,189588,9.000198908744329,peer,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,189588,83.50790139979986,baseline,mf-bot-3,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,190710,87.40497777341396,baseline,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,190710,17.13065117757865,spot_peer,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,190710,92.5999418556223,spot_baseline,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,190710,0.0816995739304307,relative_legacy,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,190710,13.762545243233111,peer,Bot_Pepa,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,190772,-1.5134065392417262,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,190772,-129.77326880267256,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,190772,-112.02942337177116,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,190772,-103.34291214177284,peer,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,190772,-87.32804203193693,baseline,Jay_Bailey_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191026,1.4901111313674251,baseline,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191026,-2.683824365855458,peer,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191026,-35.28336130376345,spot_peer,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191026,-0.0433291912788054,relative_legacy,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191026,19.59000376466072,spot_baseline,manticAI,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191046,-0.0271126361781755,relative_legacy,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191046,-0.6681254326824683,spot_peer,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191046,-0.4679094035415401,peer,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191046,18.56486717491323,baseline,archipelago,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191284,72.16598526473102,baseline,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191284,11.9093431732521,peer,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191284,92.5999418556223,spot_baseline,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191284,0.0816995739304307,relative_legacy,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191284,17.13065117757865,spot_peer,000_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191471,10.348600517006057,peer,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191471,0.080189199702565,relative_legacy,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191471,92.5999418556223,spot_baseline,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191471,17.13065117757865,spot_peer,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191471,63.14042869046248,baseline,HSeldon,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191935,77.52749006597462,baseline,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191935,10.024031360406472,peer,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191935,87.97057662822883,spot_baseline,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191935,0.0409014934318486,relative_legacy,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191935,13.807218599030396,spot_peer,pgodzinai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191975,-13.606154957602838,spot_baseline,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191975,-0.2014309989002682,relative_legacy,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191975,-13.250570699121944,peer,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191975,-59.11496454979794,spot_peer,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,191975,-3.015836249624832,baseline,jkraybill_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192049,13.955163884808648,peer,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192049,88.63157519494564,baseline,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192049,0.0816995739304307,relative_legacy,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192049,17.13065117757865,spot_peer,gnosis-ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192418,0.0816995739304307,relative_legacy,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192418,17.13065117757865,spot_peer,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192418,84.81375186622692,baseline,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192418,13.397457304584124,peer,InstitutPelFutur,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192472,-43.32865402649214,baseline,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192472,-43.440282414577496,spot_baseline,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192472,-1.2690322993049237,relative_legacy,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192472,-80.53295735718268,spot_peer,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192472,-84.53398753756524,peer,bestworldbot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192924,0.3624445485385023,spot_peer,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192924,69.24271980897078,spot_baseline,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192924,-0.1257547568261255,relative_legacy,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192924,-1.9746031140289235,peer,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,192924,61.5000451211324,baseline,acm_bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,193275,77.75046748312974,baseline,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,193275,15.512669142806542,peer,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,193275,98.84120257247882,spot_baseline,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,193275,0.1305825262358942,relative_legacy,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,193275,21.61126745621545,spot_peer,histerio,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,195286,0.0816995739304307,relative_legacy,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,195286,17.13065117757865,spot_peer,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,195286,12.159438726138738,peer,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,195286,74.51860052358867,baseline,Unwrapped80T,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,204737,40.06036169028273,baseline,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,204737,7.2650351322756865,peer,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,204737,0.0583537224572278,relative_legacy,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,204737,18.967646945087687,spot_peer,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,204737,95.15877948147542,spot_baseline,SynapseSeer,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,208405,0.1255613609139711,relative_legacy,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,208405,20.35074769554616,spot_peer,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,208405,97.08536543404836,spot_baseline,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,208405,17.609910335520116,peer,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,208405,95.00874387242187,baseline,mf-bot-4,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,215725,53.97237286283587,baseline,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,215725,2.553318736686006,peer,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,215725,5.610853255448285,spot_peer,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,215725,76.55347463629771,spot_baseline,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,215725,-0.0314325753295869,relative_legacy,estr.ai,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,218666,92.90334786458564,spot_baseline,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,218666,0.0846266477693963,relative_legacy,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,218666,17.348467090816474,spot_peer,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,218666,14.297289812738054,peer,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,218666,89.62741377993001,baseline,GreeneiBot2,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,219886,69.42248908287456,baseline,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,219886,4.304965988440283,spot_peer,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,219886,-0.0842570254836063,relative_legacy,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,219886,74.73444296891738,spot_baseline,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,219886,1.5136767107302784,peer,SaraBase,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,220077,84.79969065549501,spot_baseline,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,220077,0.01007205192628,relative_legacy,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,220077,11.530831831728667,spot_peer,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,220077,84.76832002664979,baseline,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,220077,9.969539345568204,peer,mmBot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,221727,14.215225875669818,peer,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,221727,89.9304452765804,baseline,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,221727,17.13065117757865,spot_peer,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,221727,0.0816995739304307,relative_legacy,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,221727,92.5999418556223,spot_baseline,mf-bot-5,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,222631,0.0190552869752233,relative_legacy,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,222631,92.5999418556223,spot_baseline,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,222631,17.13065117757865,spot_peer,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,222631,2.138815636685861,peer,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,222631,11.913886299500172,baseline,Grizeu_Bot,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,227188,50.95220477079982,baseline,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,227188,76.55347463629771,spot_baseline,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,227188,5.610853255448285,spot_peer,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,227188,2.400849906243048,peer,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30586,"Will France have a new Prime Minister before January 1, 2025?",2024-12-06 14:09:15.537394+00,227188,-0.0273662705228746,relative_legacy,ProfessorSP,True,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30835 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,182315,81.74605488219942,baseline,RyansAGI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,182315,2.932421988758351,peer,RyansAGI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,182315,0.0071777729620043,relative_legacy,RyansAGI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,182315,4.850685304450766,spot_peer,RyansAGI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,182315,92.5999418556223,spot_baseline,RyansAGI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,185699,94.11063109464314,spot_baseline,MWG,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,185699,68.77034919637994,baseline,MWG,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,185699,0.0180203035560214,relative_legacy,MWG,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,185699,3.006275775839576,peer,MWG,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,185699,5.935212790706357,spot_peer,MWG,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,187708,88.44025529836873,spot_baseline,twsummerbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,187708,1.8644361878068685,spot_peer,twsummerbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,187708,0.0389278143044813,peer,twsummerbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,187708,61.53120382291716,baseline,twsummerbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,187708,-0.0219593984840627,relative_legacy,twsummerbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,188107,92.97909977185974,spot_baseline,Cassie,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,188107,5.122883696528696,spot_peer,Cassie,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,188107,3.933703498063822,peer,Cassie,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,188107,90.83638787519764,baseline,Cassie,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,188107,0.015453206477657,relative_legacy,Cassie,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,189585,-0.0648966048306405,relative_legacy,mf-bot-1,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,189585,-1.9183899408600216,peer,mf-bot-1,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,189585,-0.7491340413992169,spot_peer,mf-bot-1,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,189585,83.79264820410064,baseline,mf-bot-1,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,189588,91.1796353880661,baseline,mf-bot-3,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,189588,4.850685304450766,spot_peer,mf-bot-3,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,189588,3.681027579868012,peer,mf-bot-3,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,189588,0.0119409133555815,relative_legacy,mf-bot-3,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,190710,-3.0766798260767136,spot_peer,Bot_Pepa,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,190710,81.55754288625727,spot_baseline,Bot_Pepa,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,190710,-4.124700238608228,peer,Bot_Pepa,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,190710,77.05670690015756,baseline,Bot_Pepa,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,190710,-0.0939231610212221,relative_legacy,Bot_Pepa,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,190772,-0.1058099814148078,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,190772,78.24085649273731,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,190772,-5.808640078087255,peer,Jay_Bailey_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,190772,-5.457737070777654,spot_peer,Jay_Bailey_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,190772,61.56561126436993,baseline,Jay_Bailey_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191026,4.850685304450766,spot_peer,manticAI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191026,7.044340936996952,baseline,manticAI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191026,0.0019817304791863,relative_legacy,manticAI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191026,0.3690054267626669,peer,manticAI,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191046,-12.948091305810358,spot_peer,archipelago,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191046,18.507172924740985,baseline,archipelago,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191046,-3.574787754159263,peer,archipelago,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191046,-0.0606877891327766,relative_legacy,archipelago,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191284,2.3348138284174635,peer,000_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191284,4.850685304450766,spot_peer,000_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191284,72.16529048434072,baseline,000_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191284,0.0069811015778519,relative_legacy,000_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191471,61.10243068386421,baseline,HSeldon,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191471,0.585128248017833,peer,HSeldon,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191471,89.53026213333065,spot_baseline,HSeldon,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191471,2.6469547509819624,spot_peer,HSeldon,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191471,-0.0139687859778957,relative_legacy,HSeldon,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191935,3.901367242087842,peer,pgodzinai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191935,83.11464884480672,baseline,pgodzinai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191935,0.0205292423808596,relative_legacy,pgodzinai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191935,5.935212790706357,spot_peer,pgodzinai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191935,94.11063109464314,spot_baseline,pgodzinai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191975,-61.35121574495787,spot_peer,jkraybill_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191975,-0.2314574417344761,relative_legacy,jkraybill_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191975,-15.888179555908524,peer,jkraybill_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191975,0.3842066294394364,spot_baseline,jkraybill_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,191975,0.0993427735839033,baseline,jkraybill_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192049,3.5958565303540184,peer,gnosis-ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192049,4.850685304450766,spot_peer,gnosis-ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192049,0.0108452855817463,relative_legacy,gnosis-ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192049,88.81194707307776,baseline,gnosis-ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192418,97.08536543404836,spot_baseline,InstitutPelFutur,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192418,8.070781822418276,spot_peer,InstitutPelFutur,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192418,88.94412497619439,baseline,InstitutPelFutur,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192418,0.0492635134393297,relative_legacy,InstitutPelFutur,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192418,6.17489460355505,peer,InstitutPelFutur,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192472,-0.018176955282334,relative_legacy,bestworldbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192472,89.53026213333065,spot_baseline,bestworldbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192472,89.37662312609686,baseline,bestworldbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192472,2.6469547509819624,spot_peer,bestworldbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192472,1.4900713927072418,peer,bestworldbot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192924,-0.0158192185184156,relative_legacy,acm_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192924,80.04877982843607,baseline,acm_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192924,1.3035786815987234,peer,acm_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192924,89.99489861896717,spot_baseline,acm_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,192924,2.9805184163435,spot_peer,acm_bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,193275,86.55229591399637,spot_baseline,histerio,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,193275,0.5090655447928623,spot_peer,histerio,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,193275,-0.1914334618688667,relative_legacy,histerio,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,193275,-11.38707301222756,peer,histerio,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,193275,68.64535466090305,baseline,histerio,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,195286,0.0071777729620043,relative_legacy,Unwrapped80T,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,195286,92.5999418556223,spot_baseline,Unwrapped80T,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,195286,2.4416475362303065,peer,Unwrapped80T,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,195286,74.66716786938994,baseline,Unwrapped80T,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,195286,4.850685304450766,spot_peer,Unwrapped80T,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,204737,0.0265435439485255,relative_legacy,SynapseSeer,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,204737,41.0594641989885,baseline,SynapseSeer,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,204737,8.176413069281196,spot_peer,SynapseSeer,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,204737,97.23250415571516,spot_baseline,SynapseSeer,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,204737,2.971633168875811,peer,SynapseSeer,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,208405,-0.7491340413992169,spot_peer,mf-bot-4,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,208405,-0.064628125157492,relative_legacy,mf-bot-4,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,208405,82.97999158233694,baseline,mf-bot-4,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,208405,-1.8952583675724295,peer,mf-bot-4,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,215725,65.3159688639436,baseline,estr.ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,215725,4.850685304450766,spot_peer,estr.ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,215725,92.5999418556223,spot_baseline,estr.ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,215725,0.0069811015778519,relative_legacy,estr.ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,215725,2.1487539022724693,peer,estr.ai,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,218666,89.53026213333065,spot_baseline,GreeneiBot2,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,218666,1.4900713927072418,peer,GreeneiBot2,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,218666,-0.018176955282334,relative_legacy,GreeneiBot2,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,218666,88.53599639113355,baseline,GreeneiBot2,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,218666,2.6469547509819624,spot_peer,GreeneiBot2,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,219886,5.935212790706357,spot_peer,SaraBase,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,219886,94.11063109464314,spot_baseline,SaraBase,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,219886,4.679258918833633,peer,SaraBase,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,219886,90.75759293133056,baseline,SaraBase,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,219886,0.0256101560320371,relative_legacy,SaraBase,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,220077,89.53026213333065,spot_baseline,mmBot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,220077,-0.018176955282334,relative_legacy,mmBot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,220077,2.6469547509819624,spot_peer,mmBot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,220077,89.51278381471876,baseline,mmBot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,220077,1.4900713927072418,peer,mmBot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,221727,74.34684653755522,baseline,mf-bot-5,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,221727,-0.1442670988123858,relative_legacy,mf-bot-5,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,221727,-6.6691126176796125,spot_peer,mf-bot-5,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,221727,-7.6895739806095325,peer,mf-bot-5,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,222631,9.865948482326,baseline,Grizeu_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,222631,-6.6691126176796125,spot_peer,Grizeu_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,222631,-0.0170774995395485,relative_legacy,Grizeu_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,222631,-0.8507827101542268,peer,Grizeu_Bot,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,227188,97.81956296816516,spot_baseline,ProfessorSP,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,227188,0.0417676414868301,relative_legacy,ProfessorSP,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,227188,8.597864021406382,spot_peer,ProfessorSP,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,227188,4.568876716225221,peer,ProfessorSP,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30587,Will Elon Musk have double the wealth of the second richest person on any day before 2025?,2024-12-06 14:09:15.657444+00,227188,65.19255052620355,baseline,ProfessorSP,True,no,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,2024-12-07 15:30:00+00,30836 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,182315,3.9018909359818,peer,RyansAGI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,182315,80.12635773526148,baseline,RyansAGI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,182315,91.07326619029126,spot_baseline,RyansAGI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,182315,0.0127534443110419,relative_legacy,RyansAGI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,182315,6.163563022511564,spot_peer,RyansAGI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,185699,6.163563022511564,spot_peer,MWG,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,185699,0.0146353113500891,relative_legacy,MWG,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,185699,85.68536822067455,baseline,MWG,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,185699,91.07326619029126,spot_baseline,MWG,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,185699,4.139949730445047,peer,MWG,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,187708,50.6793692206184,baseline,twsummerbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,187708,5.279384341981396,spot_peer,twsummerbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,187708,89.8401859992193,spot_baseline,twsummerbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,187708,0.002802409601249,relative_legacy,twsummerbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,187708,2.2177267634129145,peer,twsummerbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,188107,7.530138719422601,spot_peer,Cassie,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,188107,3.341931409769658,peer,Cassie,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,188107,92.97909977185974,spot_baseline,Cassie,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,188107,49.45802122369405,baseline,Cassie,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,188107,0.019499115029406,relative_legacy,Cassie,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,189585,-0.0439263185980196,relative_legacy,mf-bot-1,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,189585,83.76331151401064,baseline,mf-bot-1,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,189585,1.665103166676527,spot_peer,mf-bot-1,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,189585,-0.1058426538817463,peer,mf-bot-1,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,189588,-6.051144954869284,peer,mf-bot-3,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,189588,-4.24783619607678,spot_peer,mf-bot-3,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,189588,75.53285462774046,baseline,mf-bot-3,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,189588,-0.1252783665535441,relative_legacy,mf-bot-3,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,189869,0.1836254866458102,peer,VeritasAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,189869,1.665103166676527,spot_peer,VeritasAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,189869,-0.0251394563629886,relative_legacy,VeritasAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,189869,47.00850667493959,baseline,VeritasAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,190710,-0.0596923154967356,relative_legacy,Bot_Pepa,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,190710,83.18772411916731,spot_baseline,Bot_Pepa,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,190710,0.509244484111841,spot_peer,Bot_Pepa,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,190710,-1.2681798321234592,peer,Bot_Pepa,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,190710,78.15048829131827,baseline,Bot_Pepa,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,190772,76.55347463629771,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,190772,-4.24783619607678,spot_peer,Jay_Bailey_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,190772,59.94533786984736,baseline,Jay_Bailey_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,190772,-0.1023795241638879,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,190772,-4.700162553906206,peer,Jay_Bailey_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191026,23.630997615337957,baseline,manticAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191026,7.25826398773953,spot_peer,manticAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191026,0.0092049110902947,relative_legacy,manticAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191026,1.7280698355224806,peer,manticAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191046,-10.519348797776926,spot_peer,archipelago,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191046,-0.0662990864840488,relative_legacy,archipelago,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191046,-3.502914084679864,peer,archipelago,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191046,21.266188304856406,baseline,archipelago,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191284,0.0220475761216747,relative_legacy,000_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191284,70.06011126112975,baseline,000_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191284,4.239034229751249,peer,000_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191284,7.25826398773953,spot_peer,000_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191471,84.79969065549501,spot_baseline,HSeldon,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191471,1.665103166676527,spot_peer,HSeldon,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191471,57.61623508348178,baseline,HSeldon,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191471,-0.0323825435504186,relative_legacy,HSeldon,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191471,0.0398962944768069,peer,HSeldon,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191935,82.60624920477424,baseline,pgodzinai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191935,0.0393249379477898,relative_legacy,pgodzinai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191935,8.34150190504596,spot_peer,pgodzinai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191935,5.825028257596476,peer,pgodzinai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191935,94.11063109464314,spot_baseline,pgodzinai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191975,-0.1582304605827033,relative_legacy,jkraybill_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191975,31.42131297593567,spot_baseline,jkraybill_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191975,8.661351976862873,baseline,jkraybill_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191975,-36.60979889344465,spot_peer,jkraybill_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,191975,-10.235983402139723,peer,jkraybill_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192049,92.42992476578696,baseline,gnosis-ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192049,0.071223651103127,relative_legacy,gnosis-ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192049,8.351354574451985,peer,gnosis-ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192049,10.47453161567378,spot_peer,gnosis-ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192049,97.08536543404836,spot_baseline,gnosis-ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192418,-0.1253806677694089,relative_legacy,InstitutPelFutur,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192418,76.43334229434937,baseline,InstitutPelFutur,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192418,-4.24783619607678,spot_peer,InstitutPelFutur,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192418,-6.090264240481615,peer,InstitutPelFutur,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192472,5.057153803537652,spot_peer,bestworldbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192472,3.373960228049164,peer,bestworldbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192472,0.0037468802577702,relative_legacy,bestworldbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192472,89.08848377266631,baseline,bestworldbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192472,89.53026213333065,spot_baseline,bestworldbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192924,-10.908009026505802,spot_peer,acm_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192924,67.26516293283845,spot_baseline,acm_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192924,-11.311357824527311,peer,acm_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192924,59.33862377899822,baseline,acm_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,192924,-0.1971691711238633,relative_legacy,acm_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,193275,-0.0256295778273227,relative_legacy,histerio,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,193275,1.1361301906017658,peer,histerio,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,193275,86.71057295026547,spot_baseline,histerio,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,193275,3.035299037368321,spot_peer,histerio,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,193275,79.82521140646683,baseline,histerio,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,195286,24.926151511475336,baseline,Unwrapped80T,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,195286,-24.33294113824481,spot_peer,Unwrapped80T,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,195286,-13.155402191566536,peer,Unwrapped80T,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,195286,-0.2092558793603197,relative_legacy,Unwrapped80T,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,204737,92.75172461984762,spot_baseline,SynapseSeer,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,204737,0.0149012449129184,relative_legacy,SynapseSeer,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,204737,38.54277711097919,baseline,SynapseSeer,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,204737,7.367099637822679,spot_peer,SynapseSeer,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,204737,2.6447691756761174,peer,SynapseSeer,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,208405,0.0769821789786529,relative_legacy,mf-bot-4,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,208405,8.723291179883425,peer,mf-bot-4,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,208405,97.08536543404836,spot_baseline,mf-bot-4,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,208405,95.65058669331349,baseline,mf-bot-4,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,208405,10.47453161567378,spot_peer,mf-bot-4,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,215725,-0.0129776988839273,relative_legacy,estr.ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,215725,72.70266226717146,baseline,estr.ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,215725,3.938783172067084,spot_peer,estr.ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,215725,87.97057662822883,spot_baseline,estr.ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,215725,1.831070389357608,peer,estr.ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,218666,3.372224134368831,peer,GreeneiBot2,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,218666,6.163563022511564,spot_peer,GreeneiBot2,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,218666,0.0102425886915441,relative_legacy,GreeneiBot2,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,218666,68.1585246952744,baseline,GreeneiBot2,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,218666,91.07326619029126,spot_baseline,GreeneiBot2,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,219886,8.294632481355354,peer,SaraBase,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,219886,96.87027305402428,spot_baseline,SaraBase,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,219886,93.1237196078146,baseline,SaraBase,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,219886,10.320299881080384,spot_peer,SaraBase,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,219886,0.0702955412434476,relative_legacy,SaraBase,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,220077,-4.24783619607678,spot_peer,mmBot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,220077,76.48610460145146,baseline,mmBot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,220077,-6.090264240481615,peer,mmBot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,220077,-0.1253806677694089,relative_legacy,mmBot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,221727,-6.028350130520068,peer,mf-bot-5,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,221727,75.20137894110914,baseline,mf-bot-5,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,221727,-0.1250147205667685,relative_legacy,mf-bot-5,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,221727,-4.24783619607678,spot_peer,mf-bot-5,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,222631,-0.7376269188781941,peer,Grizeu_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,222631,2.509248790488623,baseline,Grizeu_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,222631,-0.0112830953075052,relative_legacy,Grizeu_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,222631,-17.195747536146364,spot_peer,Grizeu_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,227188,5.932907730709132,peer,ProfessorSP,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,227188,97.08536543404836,spot_baseline,ProfessorSP,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,227188,64.44818784568322,baseline,ProfessorSP,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,227188,0.0496684107940082,relative_legacy,ProfessorSP,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30613,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.016651+00,227188,10.47453161567378,spot_peer,ProfessorSP,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30876 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,182315,16.709124996998966,spot_peer,RyansAGI,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,182315,62.29303509201767,spot_baseline,RyansAGI,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,182315,54.83826081458965,baseline,RyansAGI,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,182315,14.756428632025148,peer,RyansAGI,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,182315,0.1231501624158781,relative_legacy,RyansAGI,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,185699,1.2042004009043117,peer,MWG,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,185699,38.05538412819914,baseline,MWG,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,185699,0.7435188720329183,spot_peer,MWG,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,185699,-0.0821323589083976,relative_legacy,MWG,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,185699,40.05379295837288,spot_baseline,MWG,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,187708,14.396863124187382,spot_peer,twsummerbot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,187708,59.07217700098411,spot_baseline,twsummerbot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,187708,0.0639105402544437,relative_legacy,twsummerbot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,187708,7.649351796729097,peer,twsummerbot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,187708,34.034035496277355,baseline,twsummerbot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,188107,-2.19177997479705,peer,Cassie,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,188107,18.954425931363968,baseline,Cassie,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,188107,-0.0693907936716015,relative_legacy,Cassie,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,188107,35.049724708413294,spot_baseline,Cassie,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,188107,-2.848913919570004,spot_peer,Cassie,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,189585,26.946729298650197,spot_peer,mf-bot-1,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,189585,28.53501204338657,peer,mf-bot-1,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,189585,0.2792347466470576,relative_legacy,mf-bot-1,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,189585,75.60884971442954,baseline,mf-bot-1,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,189588,-175.11010801501394,peer,mf-bot-3,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,189588,-203.12870548778872,baseline,mf-bot-3,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,189588,-2.5078194331942725,relative_legacy,mf-bot-3,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,189588,-205.8893689053569,spot_baseline,mf-bot-3,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,189588,-175.8196763955183,spot_peer,mf-bot-3,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,189869,-9.12789260770073,spot_peer,VeritasAI,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,189869,14.58321780115142,baseline,VeritasAI,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,189869,-5.7300666759617735,peer,VeritasAI,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,189869,-0.1196092823837118,relative_legacy,VeritasAI,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,190710,79.74122211522206,baseline,Bot_Pepa,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,190710,31.645382305581364,peer,Bot_Pepa,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,190710,0.3391800308408002,relative_legacy,Bot_Pepa,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,190710,32.86670787493059,spot_peer,Bot_Pepa,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,190710,84.79969065549501,spot_baseline,Bot_Pepa,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,190772,3.835432912535625,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,190772,44.36066514756148,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,190772,-0.0286566949849722,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,190772,34.768740062525964,baseline,Jay_Bailey_Bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,190772,2.526805213584521,peer,Jay_Bailey_Bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191026,1.6720995134896504,peer,manticAI,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191026,12.770423723746855,baseline,manticAI,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191026,0.0010013420743296,relative_legacy,manticAI,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191026,50.04055158626722,spot_baseline,manticAI,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191026,7.913037228814092,spot_peer,manticAI,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191046,20.66775061051944,spot_peer,archipelago,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191046,6.043746802441317,peer,archipelago,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191046,21.21428439699285,baseline,archipelago,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191046,0.057450057540522,relative_legacy,archipelago,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191284,0.2160457811754851,relative_legacy,000_bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191284,57.91906189718207,baseline,000_bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191284,19.92378965935777,peer,000_bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191284,26.946729298650197,spot_peer,000_bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191471,79.90873060740036,spot_baseline,HSeldon,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191471,0.2169681402953454,relative_legacy,HSeldon,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191471,29.355475737092156,spot_peer,HSeldon,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191471,19.361902094342508,peer,HSeldon,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191471,54.34394276712132,baseline,HSeldon,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191935,0.0201601086721368,relative_legacy,pgodzinai,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191935,44.49144313101604,baseline,pgodzinai,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191935,7.273889417736482,peer,pgodzinai,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191935,50.58909297299573,spot_baseline,pgodzinai,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,191935,8.306836427146498,spot_peer,pgodzinai,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192049,6.8377135172653,spot_peer,gnosis-ai,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192049,-0.0010351345529201,relative_legacy,gnosis-ai,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192049,46.3221892080315,baseline,gnosis-ai,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192049,7.18976637385987,peer,gnosis-ai,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192418,-38.09414464559652,peer,InstitutPelFutur,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192418,-15.179258039885529,baseline,InstitutPelFutur,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192418,-0.6321148106208171,relative_legacy,InstitutPelFutur,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192418,-38.9235358259209,spot_peer,InstitutPelFutur,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192418,-15.200309344504996,spot_baseline,InstitutPelFutur,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192472,-0.1029669029153232,relative_legacy,bestworldbot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192472,-0.837755027227309,spot_peer,bestworldbot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192472,37.69947005854108,baseline,bestworldbot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192472,0.7543757006916917,peer,bestworldbot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192924,-4.154072190066588,peer,acm_bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192924,-0.1383759203451951,relative_legacy,acm_bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192924,28.86994489627457,baseline,acm_bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192924,32.653734813995186,spot_baseline,acm_bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,192924,-4.569000903820532,spot_peer,acm_bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,193275,0.0643349352251675,relative_legacy,histerio,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,193275,55.58161550616397,spot_baseline,histerio,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,193275,11.89098052052791,spot_peer,histerio,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,193275,11.490532368948667,peer,histerio,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,193275,51.75454642337581,baseline,histerio,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,195286,13.1624420817506,peer,Unwrapped80T,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,195286,39.092321055150734,baseline,Unwrapped80T,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,195286,26.946729298650197,spot_peer,Unwrapped80T,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,195286,0.1453553343997316,relative_legacy,Unwrapped80T,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,204737,-18.13978522448381,spot_peer,SynapseSeer,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,204737,13.750352374993504,spot_baseline,SynapseSeer,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,204737,-0.1436326616900413,relative_legacy,SynapseSeer,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,204737,5.737601877027491,baseline,SynapseSeer,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,204737,-8.086386785414856,peer,SynapseSeer,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,208405,0.3595448617090294,relative_legacy,mf-bot-4,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,208405,83.5457475200154,baseline,mf-bot-4,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,208405,34.32099128223405,peer,mf-bot-4,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,208405,32.86670787493059,spot_peer,mf-bot-4,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,215725,-0.837755027227309,spot_peer,estr.ai,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,215725,37.85116232537298,spot_baseline,estr.ai,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,215725,31.297287069409,baseline,estr.ai,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,215725,-1.026439259982604,peer,estr.ai,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,215725,-0.0851636509318407,relative_legacy,estr.ai,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,218666,-0.001967160399658,relative_legacy,GreeneiBot2,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,218666,35.82354361494741,baseline,GreeneiBot2,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,218666,4.110460277856942,peer,GreeneiBot2,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,218666,6.24417935097757,spot_peer,GreeneiBot2,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,218666,47.71592111866412,spot_baseline,GreeneiBot2,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,219886,71.15830074739613,spot_baseline,SaraBase,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,219886,23.073520815723043,spot_peer,SaraBase,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,219886,0.2128271137920885,relative_legacy,SaraBase,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,219886,22.62695798513692,peer,SaraBase,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,219886,67.47837004551964,baseline,SaraBase,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,220077,0.8508178704297881,peer,mmBot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,220077,-0.1023348175814852,relative_legacy,mmBot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,220077,37.82338635123184,baseline,mmBot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,220077,37.85116232537298,spot_baseline,mmBot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,220077,-0.837755027227309,spot_peer,mmBot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,221727,-0.837755027227309,spot_peer,mf-bot-5,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,221727,37.17395372530116,baseline,mf-bot-5,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,221727,-0.1030597040211223,relative_legacy,mf-bot-5,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,221727,0.4429585629208457,peer,mf-bot-5,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,222631,-1.0835113547219926,baseline,Grizeu_Bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,222631,-0.0313889005242869,relative_legacy,Grizeu_Bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,222631,-1.9844467779153592,peer,Grizeu_Bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,222631,-46.06922608706946,spot_peer,Grizeu_Bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,222631,-25.15387669959645,spot_baseline,Grizeu_Bot,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,227188,42.22330006830478,spot_baseline,ProfessorSP,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,227188,-0.0380125972471269,relative_legacy,ProfessorSP,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,227188,2.301013313360325,spot_peer,ProfessorSP,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,227188,0.8355339413405831,peer,ProfessorSP,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30614,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-09 14:14:54.034403+00,227188,28.05459237704245,baseline,ProfessorSP,True,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30877 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,182315,-1.4208118999816242,spot_peer,RyansAGI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,182315,87.97057662822883,spot_baseline,RyansAGI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,182315,-0.0456479525332446,relative_legacy,RyansAGI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,182315,77.49925685625342,baseline,RyansAGI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,182315,-2.258945457864544,peer,RyansAGI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,185699,93.19383877372591,baseline,MWG,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,185699,0.0380398369642462,relative_legacy,MWG,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,185699,3.921203401768001,peer,MWG,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,185699,5.12271719653414,spot_peer,MWG,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,185699,97.08536543404836,spot_baseline,MWG,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,187708,93.20611713434243,spot_baseline,twsummerbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,187708,2.3377953884141465,spot_peer,twsummerbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,187708,54.57927484072198,baseline,twsummerbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,187708,0.7809040777604913,peer,twsummerbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,187708,0.000816087814457,relative_legacy,twsummerbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,188107,0.0016769572660589,relative_legacy,Cassie,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,188107,51.47814172088902,baseline,Cassie,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,188107,0.8156518926376626,peer,Cassie,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,188107,93.35726382610238,spot_baseline,Cassie,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,188107,2.446303966774369,spot_peer,Cassie,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,189585,92.5999418556223,spot_baseline,mf-bot-1,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,189585,1.902620678566633,spot_peer,mf-bot-1,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,189585,0.8476984321146551,peer,mf-bot-1,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,189585,91.46881676808916,baseline,mf-bot-1,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,189585,-0.0050020603346966,relative_legacy,mf-bot-1,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,189588,0.8389306785827848,peer,mf-bot-3,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,189588,91.38100592883566,baseline,mf-bot-3,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,189588,-0.0050579930076909,relative_legacy,mf-bot-3,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,189588,1.902620678566633,spot_peer,mf-bot-3,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,189588,92.5999418556223,spot_baseline,mf-bot-3,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,189869,5.12271719653414,spot_peer,VeritasAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,189869,97.08536543404836,spot_baseline,VeritasAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,189869,53.82828633813728,baseline,VeritasAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,189869,2.307401055322959,peer,VeritasAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,189869,0.0223243024995171,relative_legacy,VeritasAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,190710,0.6242049122746436,peer,Bot_Pepa,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,190710,87.02727246037968,baseline,Bot_Pepa,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,190710,1.684345721968853,spot_peer,Bot_Pepa,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,190710,92.2958964236172,spot_baseline,Bot_Pepa,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,190710,-0.0069755807012715,relative_legacy,Bot_Pepa,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,190772,2.987148164822236,spot_peer,Jay_Bailey_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,190772,94.11063109464314,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,190772,1.469698790772578,peer,Jay_Bailey_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,190772,73.86231370710591,baseline,Jay_Bailey_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,190772,0.0068281999909517,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191026,0.4131921110644247,peer,manticAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191026,23.6322944013618,baseline,manticAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191026,0.0,relative_legacy,manticAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191026,1.902620678566633,spot_peer,manticAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191046,-15.89615593169449,spot_peer,archipelago,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191046,-5.064161090921055,peer,archipelago,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191046,-0.0774864106975249,relative_legacy,archipelago,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191046,21.192225659927225,baseline,archipelago,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191284,70.05902278851198,baseline,000_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191284,0.5912927096852902,peer,000_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191284,-0.0050283778673234,relative_legacy,000_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191284,1.902620678566633,spot_peer,000_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191471,89.53026213333065,spot_baseline,HSeldon,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191471,-0.0248295643551588,relative_legacy,HSeldon,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191471,-0.3011098749021637,spot_peer,HSeldon,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191471,-0.94864910684844,peer,HSeldon,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191471,60.94643440992814,baseline,HSeldon,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191935,0.0476015761927617,relative_legacy,pgodzinai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191935,4.514616544709205,peer,pgodzinai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191935,86.89863466432313,baseline,pgodzinai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191935,6.174212812450298,spot_peer,pgodzinai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191935,98.5500430304885,spot_baseline,pgodzinai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191975,58.303762379666416,spot_baseline,jkraybill_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191975,-22.71869014730351,spot_peer,jkraybill_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191975,-0.1088059576261419,relative_legacy,jkraybill_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191975,-7.309309162536534,peer,jkraybill_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,191975,18.492317635820875,baseline,jkraybill_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192049,0.0518945714712973,relative_legacy,gnosis-ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192049,94.2603589441333,baseline,gnosis-ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192049,4.925828716833044,peer,gnosis-ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192049,6.174212812450298,spot_peer,gnosis-ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192049,98.5500430304885,spot_baseline,gnosis-ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192418,-9.617177243563749,spot_peer,InstitutPelFutur,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192418,-10.870043281347128,peer,InstitutPelFutur,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192418,76.46342826803874,baseline,InstitutPelFutur,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192418,-0.1648510926158103,relative_legacy,InstitutPelFutur,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192472,-1.3407655552436917,peer,bestworldbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192472,89.25834164916438,baseline,bestworldbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192472,-0.0353238906110907,relative_legacy,bestworldbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192472,-0.3011098749021637,spot_peer,bestworldbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192472,89.53026213333065,spot_baseline,bestworldbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192924,88.44025529836873,spot_baseline,acm_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192924,-1.0836284380772738,spot_peer,acm_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192924,-0.0416902069141157,relative_legacy,acm_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192924,78.32024304039618,baseline,acm_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,192924,-1.967128757292837,peer,acm_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,193275,79.4672314149023,baseline,histerio,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,193275,-4.6432694595456905,peer,histerio,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,193275,-0.0790897167102808,relative_legacy,histerio,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,193275,-3.8123420127405807,spot_peer,histerio,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,193275,84.63930208523604,spot_baseline,histerio,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,195286,98.5500430304885,spot_baseline,Unwrapped80T,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,195286,6.174212812450298,spot_peer,Unwrapped80T,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,195286,2.7013732082064474,peer,Unwrapped80T,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,195286,0.0282285445581253,relative_legacy,Unwrapped80T,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,195286,50.390358749525525,baseline,Unwrapped80T,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,204737,37.17002228126446,baseline,SynapseSeer,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,204737,-0.0169109639965051,relative_legacy,SynapseSeer,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,204737,-0.6437880334733654,peer,SynapseSeer,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,204737,-0.8594477692286316,spot_peer,SynapseSeer,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,204737,88.75252707415875,spot_baseline,SynapseSeer,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,208405,1.902620678566633,spot_peer,mf-bot-4,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,208405,91.23795510134585,baseline,mf-bot-4,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,208405,0.8399098759665731,peer,mf-bot-4,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,208405,-0.0049860836806586,relative_legacy,mf-bot-4,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,215725,0.0198332908742206,relative_legacy,estr.ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,215725,2.4488230459425586,peer,estr.ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,215725,79.0796781372471,baseline,estr.ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,215725,95.60566524124027,spot_baseline,estr.ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,215725,4.060436822075283,spot_peer,estr.ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,218666,5.964765969442199,spot_peer,GreeneiBot2,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,218666,98.25829469225908,spot_baseline,GreeneiBot2,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,218666,0.0375922201464668,relative_legacy,GreeneiBot2,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,218666,3.672291915026937,peer,GreeneiBot2,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,218666,74.01141993980899,baseline,GreeneiBot2,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,220077,92.5474954402311,baseline,mmBot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,220077,-0.004575167713703,relative_legacy,mmBot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,220077,0.9292023940302232,peer,mmBot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,220077,1.902620678566633,spot_peer,mmBot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,221727,1.902620678566633,spot_peer,mf-bot-5,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,221727,92.5999418556223,spot_baseline,mf-bot-5,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,221727,-0.0050940360248281,relative_legacy,mf-bot-5,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,221727,0.8237366597351801,peer,mf-bot-5,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,221727,90.95479698058033,baseline,mf-bot-5,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,222631,-0.0069431793759397,relative_legacy,Grizeu_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,222631,3.312408263989485,baseline,Grizeu_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,222631,-0.4161276484075837,peer,Grizeu_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,222631,-9.617177243563749,spot_peer,Grizeu_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,227188,4.060436822075283,spot_peer,ProfessorSP,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,227188,0.0160544691651186,relative_legacy,ProfessorSP,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,227188,95.60566524124027,spot_baseline,ProfessorSP,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,227188,63.576403207566266,baseline,ProfessorSP,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30615,"Will an AI system be reported to have independently gained unauthorized access to another computer system before 2025? - -",2024-12-09 14:14:54.056354+00,227188,1.9962271310472477,peer,ProfessorSP,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30878 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,182315,31.42304517437184,baseline,RyansAGI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,182315,35.61438102252753,spot_baseline,RyansAGI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,182315,33.15753546139899,peer,RyansAGI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,182315,0.3465838425102527,relative_legacy,RyansAGI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,182315,41.314343330480334,spot_peer,RyansAGI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,185699,45.73833105041484,baseline,MWG,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,185699,49.09607656195489,spot_peer,MWG,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,185699,0.4461927841681143,relative_legacy,MWG,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,185699,46.46682670034443,spot_baseline,MWG,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,185699,44.226476395550144,peer,MWG,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,187708,54.59683691052925,spot_baseline,twsummerbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,187708,54.92569068793405,spot_peer,twsummerbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,187708,33.13698325741565,baseline,twsummerbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,187708,31.45516085811716,peer,twsummerbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,187708,0.3763112166439495,relative_legacy,twsummerbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,188107,27.96321805999689,baseline,Cassie,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,188107,46.81488357384062,spot_baseline,Cassie,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,188107,27.624719723611545,peer,Cassie,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,188107,49.345650328029095,spot_peer,Cassie,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,188107,0.3263929997607731,relative_legacy,Cassie,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,189585,59.93936580885445,peer,mf-bot-1,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,189585,66.97524454430742,baseline,mf-bot-1,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,189585,0.6586441214975376,relative_legacy,mf-bot-1,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,189585,64.39815898367446,spot_peer,mf-bot-1,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,189588,57.68866129444017,baseline,mf-bot-3,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,189588,57.72176024530503,spot_peer,mf-bot-3,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,189588,0.5646010740373232,relative_legacy,mf-bot-3,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,189588,53.02070561299115,peer,mf-bot-3,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,189869,34.172859021524715,peer,VeritasAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,189869,0.4380088877509292,relative_legacy,VeritasAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,189869,37.60098435305984,baseline,VeritasAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,189869,64.39815898367446,spot_peer,VeritasAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,190710,-79.01160251148667,spot_peer,Bot_Pepa,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,190710,-1.2439070352310335,relative_legacy,Bot_Pepa,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,190710,-132.19280948873626,spot_baseline,Bot_Pepa,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,190710,-80.33868152205501,peer,Bot_Pepa,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,190710,-125.45513894465977,baseline,Bot_Pepa,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,190772,14.864892710427752,baseline,Jay_Bailey_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,190772,29.33174172443328,spot_peer,Jay_Bailey_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,190772,0.2151749786046566,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,190772,18.903382439001717,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,190772,20.761249825473616,peer,Jay_Bailey_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191026,-0.1969113276364062,baseline,manticAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191026,15.223873511057098,spot_peer,manticAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191026,3.5665125712807777,peer,manticAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191026,0.0681210667938254,relative_legacy,manticAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191026,-0.7715240196526992,spot_baseline,manticAI,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191046,-25.143817022052215,peer,archipelago,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191046,-79.01160251148667,spot_peer,archipelago,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191046,-0.3277969489279906,relative_legacy,archipelago,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191046,-132.19280948873626,spot_baseline,archipelago,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191046,-41.37511999521304,baseline,archipelago,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191284,-85.0545689789745,peer,000_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191284,-131.41296974604452,baseline,000_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191284,-1.2419713469857725,relative_legacy,000_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191284,-108.7718169030502,spot_peer,000_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191284,-173.6965594166206,spot_baseline,000_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191471,-23.001446624514426,peer,HSeldon,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191471,-43.91293887019708,baseline,HSeldon,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191471,-0.3764058550029202,relative_legacy,HSeldon,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191471,-64.38561897747249,spot_baseline,HSeldon,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191471,-30.390537417100223,spot_peer,HSeldon,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191935,0.6631249969704577,relative_legacy,pgodzinai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191935,66.95256718267841,spot_peer,pgodzinai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191935,63.19779249295266,baseline,pgodzinai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191935,56.18925913068325,peer,pgodzinai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191935,71.36958148433591,spot_baseline,pgodzinai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191975,-3.914671127044973,spot_peer,jkraybill_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191975,-27.46223801090057,spot_baseline,jkraybill_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191975,0.0,relative_legacy,jkraybill_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191975,-11.465811072304092,baseline,jkraybill_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,191975,-2.4399543660815035,peer,jkraybill_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192049,0.8170659045177288,relative_legacy,gnosis-ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192049,81.39909922524646,baseline,gnosis-ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192049,76.58261094812791,spot_peer,gnosis-ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192049,69.97174911847186,peer,gnosis-ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192418,-1.7271120695356028,relative_legacy,InstitutPelFutur,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192418,-173.57086802680212,baseline,InstitutPelFutur,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192418,-108.7718169030502,spot_peer,InstitutPelFutur,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192418,-114.37529397027544,peer,InstitutPelFutur,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192472,-173.6965594166206,spot_baseline,bestworldbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192472,-1.726868277570882,relative_legacy,bestworldbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192472,-108.7718169030502,spot_peer,bestworldbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192472,-114.34640601373444,peer,bestworldbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192472,-173.49847735999316,baseline,bestworldbot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192924,2.2696888945591764,peer,acm_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192924,-0.0809400074851632,relative_legacy,acm_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192924,-11.25209672663766,baseline,acm_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192924,6.700654478114886,spot_peer,acm_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,192924,-12.658049656514322,spot_baseline,acm_bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,193275,5.107360207959064,spot_peer,histerio,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,193275,-0.1388606285587628,relative_legacy,histerio,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,193275,-14.286951808761703,baseline,histerio,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,193275,-14.880066140670587,spot_baseline,histerio,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,193275,0.4053375663059771,peer,histerio,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,195286,-108.7718169030502,spot_peer,Unwrapped80T,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,195286,-173.6965594166206,spot_baseline,Unwrapped80T,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,195286,-57.27138878019953,peer,Unwrapped80T,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,195286,-89.1893393976898,baseline,Unwrapped80T,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,195286,-0.8106767888780911,relative_legacy,Unwrapped80T,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,204737,-32.19280948873623,spot_baseline,SynapseSeer,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,204737,-7.306721763906096,spot_peer,SynapseSeer,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,204737,-0.0220016768982697,relative_legacy,SynapseSeer,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,204737,-3.910300295706682,peer,SynapseSeer,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,204737,-13.582702297996612,baseline,SynapseSeer,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,208405,83.54714019736939,baseline,mf-bot-4,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,208405,0.8237289352653919,relative_legacy,mf-bot-4,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,208405,71.8045991910691,peer,mf-bot-4,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,208405,76.58261094812791,spot_peer,mf-bot-4,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,215725,-173.6965594166206,spot_baseline,estr.ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,215725,-93.61761006457483,peer,estr.ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,215725,-143.77904243306105,baseline,estr.ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,215725,-108.7718169030502,spot_peer,estr.ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,215725,-1.3860081379054814,relative_legacy,estr.ai,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,218666,-0.4307180342400344,relative_legacy,GreeneiBot2,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,218666,-31.69179074884438,spot_peer,GreeneiBot2,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,218666,-26.440750288442302,peer,GreeneiBot2,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,218666,-66.20035364849844,spot_baseline,GreeneiBot2,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,218666,-50.24261899083998,baseline,GreeneiBot2,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,219886,71.90898229703285,peer,SaraBase,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,219886,83.82360254625685,baseline,SaraBase,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,219886,77.00130273681793,spot_peer,SaraBase,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,219886,85.38360040379223,spot_baseline,SaraBase,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,219886,0.8285406225673354,relative_legacy,SaraBase,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,220077,-0.7278356957849691,relative_legacy,mmBot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,220077,-41.157103926453416,peer,mmBot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,220077,-37.06693615546964,spot_peer,mmBot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,220077,-73.68176154759013,baseline,mmBot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,220077,-73.69655941662059,spot_baseline,mmBot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,221727,0.3618930728483268,relative_legacy,mf-bot-5,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,221727,37.95771581156328,peer,mf-bot-5,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,221727,37.19150332657987,baseline,mf-bot-5,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,221727,42.91822469626985,spot_peer,mf-bot-5,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,222631,-1.9313953853852857,peer,Grizeu_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,222631,-0.0245499752313512,relative_legacy,Grizeu_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,222631,-83.65012677171204,spot_baseline,Grizeu_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,222631,-44.20412975756806,spot_peer,Grizeu_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,222631,-3.65489536203613,baseline,Grizeu_Bot,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,227188,0.6383303211048452,relative_legacy,ProfessorSP,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,227188,87.97057662822883,spot_baseline,ProfessorSP,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,227188,78.85629095351847,spot_peer,ProfessorSP,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,227188,58.59093959575322,baseline,ProfessorSP,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30617,"Will Nikola Corporation file for bankruptcy before January 1, 2025?",2024-12-09 14:14:54.090447+00,227188,50.596799949961216,peer,ProfessorSP,True,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,2024-12-10 15:30:00+00,30880 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,182315,67.37250603141919,baseline,RyansAGI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,182315,0.5635363028463636,relative_legacy,RyansAGI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,182315,64.40996838699307,peer,RyansAGI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,182315,76.55347463629771,spot_baseline,RyansAGI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,182315,70.21572374311069,spot_peer,RyansAGI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,185699,26.303440583379377,spot_baseline,MWG,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,185699,34.22403200206171,spot_peer,MWG,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,185699,24.62735776942945,baseline,MWG,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,185699,0.1260311250027281,relative_legacy,MWG,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,185699,35.14092124041315,peer,MWG,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,187708,87.02660703959828,spot_baseline,twsummerbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,187708,45.52261459973255,baseline,twsummerbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,187708,77.71712667998875,spot_peer,twsummerbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,187708,0.3578816057038065,relative_legacy,twsummerbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,187708,40.4407971433439,peer,twsummerbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,188107,-109.95356735509142,spot_baseline,Cassie,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,188107,-17.654416078470188,peer,Cassie,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,188107,-0.3219456226587722,relative_legacy,Cassie,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,188107,-30.400979596800365,baseline,Cassie,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,188107,-63.37033424482627,spot_peer,Cassie,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,188909,5.658352836636751,spot_baseline,silicoqr,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,188909,0.0,relative_legacy,silicoqr,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,188909,0.4675381736599707,baseline,silicoqr,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,188909,19.4369448258588,spot_peer,silicoqr,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,188909,1.6060351745072754,peer,silicoqr,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,189585,-15.200309344504996,spot_baseline,mf-bot-1,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,189585,4.496884515377696,spot_peer,mf-bot-1,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,189585,-0.2579951696748636,relative_legacy,mf-bot-1,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,189585,-14.99695932347266,baseline,mf-bot-1,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,189585,9.429561310060866,peer,mf-bot-1,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,189588,-384.705751957967,peer,mf-bot-3,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,189588,-564.3856189774725,spot_baseline,mf-bot-3,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,189588,-5.67464324263067,relative_legacy,mf-bot-3,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,189588,-388.85823942755536,spot_peer,mf-bot-3,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,189588,-556.6485058734759,baseline,mf-bot-3,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,189869,-37.40117665579931,spot_peer,VeritasAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,189869,-58.19919177508067,baseline,VeritasAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,189869,-28.268308893159496,peer,VeritasAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,189869,-73.69655941662063,spot_baseline,VeritasAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,189869,-0.6790795440384856,relative_legacy,VeritasAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,190710,63.95117948874575,spot_peer,Bot_Pepa,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,190710,0.5172466169003394,relative_legacy,Bot_Pepa,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,190710,63.700845044039255,baseline,Bot_Pepa,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,190710,63.572413556616056,peer,Bot_Pepa,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,190710,67.80719051126377,spot_baseline,Bot_Pepa,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,190772,-22.57223349615448,peer,Jay_Bailey_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,190772,-49.62014345779541,baseline,Jay_Bailey_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,190772,-30.73219613825028,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,190772,-64.38561897747248,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,190772,-0.5954011886078888,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191026,-100.50377358350504,spot_baseline,manticAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191026,-0.1518736604247174,relative_legacy,manticAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191026,-15.515659575904504,baseline,manticAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191026,-8.696116159884088,peer,manticAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191026,-56.60189973818995,spot_peer,manticAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191046,57.28219897119671,spot_peer,archipelago,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191046,16.14444504043982,peer,archipelago,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191046,16.603649114509253,baseline,archipelago,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191046,0.1461668343579105,relative_legacy,archipelago,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191046,58.496250072115615,spot_baseline,archipelago,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191284,48.54268271702416,spot_baseline,000_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191284,0.3303002530365567,relative_legacy,000_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191284,50.15293558421173,spot_peer,000_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191284,49.7758211093968,peer,000_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191284,45.14851605628306,baseline,000_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191471,54.59683691052925,spot_baseline,HSeldon,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191471,37.50877784497101,peer,HSeldon,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191471,54.48923615777839,spot_peer,HSeldon,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191471,0.2485388841567762,relative_legacy,HSeldon,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191471,37.1558282361679,baseline,HSeldon,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191935,-107.20202677924752,baseline,pgodzinai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191935,-1.1719724615062033,relative_legacy,pgodzinai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191935,-79.2992378269763,spot_peer,pgodzinai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191935,-63.121659844835605,peer,pgodzinai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,191935,-132.19280948873623,spot_baseline,pgodzinai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192049,-79.2992378269763,spot_peer,gnosis-ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192049,-1.3722187119541545,relative_legacy,gnosis-ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192049,-132.19280948873623,spot_baseline,gnosis-ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192049,-73.16140515692595,peer,gnosis-ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192049,-125.82178288310855,baseline,gnosis-ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192418,-0.2586781942035441,relative_legacy,InstitutPelFutur,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192418,8.605867814720684,peer,InstitutPelFutur,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192418,-15.200309344504996,spot_baseline,InstitutPelFutur,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192418,4.496884515377696,spot_peer,InstitutPelFutur,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192418,-14.827146264810906,baseline,InstitutPelFutur,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192472,-17.008812104022823,peer,bestworldbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192472,-51.22398931703099,baseline,bestworldbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192472,-21.47227307364929,spot_peer,bestworldbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192472,-51.45731728297583,spot_baseline,bestworldbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192472,-0.6190459806365746,relative_legacy,bestworldbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192924,-11.091590140185058,spot_baseline,acm_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192924,7.439763218637449,spot_peer,acm_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192924,-0.2051359315217486,relative_legacy,acm_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192924,8.55088449470661,peer,acm_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,192924,-9.68229240890462,baseline,acm_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,193275,12.663047191972373,baseline,histerio,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,193275,0.0089296978302111,relative_legacy,histerio,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,193275,25.044806585711413,spot_peer,histerio,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,193275,13.487805434311143,spot_baseline,histerio,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,193275,25.859363742067217,peer,histerio,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,195286,-7.674029169115265,spot_peer,Unwrapped80T,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,195286,-23.826204577299965,baseline,Unwrapped80T,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,195286,-32.19280948873623,spot_baseline,Unwrapped80T,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,195286,-0.3421072735269394,relative_legacy,Unwrapped80T,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,195286,-4.802705460378773,peer,Unwrapped80T,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,204737,27.830240284526003,spot_peer,SynapseSeer,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,204737,7.0878479301598185,baseline,SynapseSeer,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,204737,0.0294526060382218,relative_legacy,SynapseSeer,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,204737,11.059920012893402,peer,SynapseSeer,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,204737,17.376706773670637,spot_baseline,SynapseSeer,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,208405,80.85756568016212,peer,mf-bot-4,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,208405,83.50294451890548,baseline,mf-bot-4,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,208405,76.12209317323871,spot_peer,mf-bot-4,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,208405,0.7260476569192021,relative_legacy,mf-bot-4,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,215725,58.496250072115615,spot_baseline,estr.ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,215725,0.2463232943320095,relative_legacy,estr.ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,215725,36.80813348760211,peer,estr.ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,215725,37.44552049458717,baseline,estr.ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,215725,57.28219897119671,spot_peer,estr.ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,218666,-46.59383975788815,spot_baseline,GreeneiBot2,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,218666,-44.79091368548932,baseline,GreeneiBot2,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,218666,-0.5604659237264312,relative_legacy,GreeneiBot2,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,218666,-17.988797148277055,spot_peer,GreeneiBot2,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,218666,-13.973315666753988,peer,GreeneiBot2,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,218945,-21.47227307364929,spot_peer,SeidrBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,218945,-0.6128370476564267,relative_legacy,SeidrBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,218945,-50.26356427873658,baseline,SeidrBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,218945,-51.45731728297583,spot_baseline,SeidrBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,218945,-17.043170886289385,peer,SeidrBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,219886,88.01604571900482,spot_baseline,SaraBase,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,219886,84.22054978077693,baseline,SaraBase,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,219886,78.42581419865529,spot_peer,SaraBase,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,219886,0.7289756021927712,relative_legacy,SaraBase,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,219886,79.32540907538373,peer,SaraBase,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,220077,13.734299939726489,baseline,mmBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,220077,0.0300739405555432,relative_legacy,mmBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,220077,13.750352374993504,spot_baseline,mmBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,220077,30.589937165144136,peer,mmBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,220077,25.232856379799987,spot_peer,mmBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,221727,-15.200309344504996,spot_baseline,mf-bot-5,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,221727,-14.931179737963932,baseline,mf-bot-5,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,221727,9.033277746688498,peer,mf-bot-5,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,221727,-0.2586781942035441,relative_legacy,mf-bot-5,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,221727,4.496884515377696,spot_peer,mf-bot-5,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,222631,-0.067333048414275,relative_legacy,Grizeu_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,222631,4.496884515377696,spot_peer,Grizeu_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,222631,-15.200309344504996,spot_baseline,Grizeu_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,222631,1.179907083234949,peer,Grizeu_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,222631,-4.515981090630064,baseline,Grizeu_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,227188,61.3350059970358,spot_peer,ProfessorSP,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,227188,41.10888859549623,peer,ProfessorSP,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,227188,0.3014166742383448,relative_legacy,ProfessorSP,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,227188,42.67667381215048,baseline,ProfessorSP,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30637,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-10 14:12:16.322855+00,227188,64.15460290875237,spot_baseline,ProfessorSP,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30907 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,182315,64.38974805699897,baseline,RyansAGI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,182315,19.341466323310986,peer,RyansAGI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,182315,-0.0018820493609932,relative_legacy,RyansAGI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,182315,20.27786056251445,spot_peer,RyansAGI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,182315,73.11832415721999,spot_baseline,RyansAGI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,185699,51.81001358674048,baseline,MWG,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,185699,54.59683691052925,spot_baseline,MWG,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,185699,6.997050219596516,spot_peer,MWG,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,185699,9.34256162856414,peer,MWG,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,185699,-0.1701351167246307,relative_legacy,MWG,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,187708,0.0294949174072466,relative_legacy,twsummerbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,187708,12.848417239506215,peer,twsummerbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,187708,24.908827514553057,spot_peer,twsummerbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,187708,79.57669477823923,spot_baseline,twsummerbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,187708,42.49214130390743,baseline,twsummerbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,188107,4.497965698955703,peer,Cassie,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,188107,17.54153096728999,spot_peer,Cassie,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,188107,-0.002291633843253,relative_legacy,Cassie,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,188107,69.30222465786089,spot_baseline,Cassie,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,188107,18.381303580720957,baseline,Cassie,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,188909,4.28979030767226,baseline,silicoqr,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,188909,4.123302208519705,spot_peer,silicoqr,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,188909,50.58909297299573,spot_baseline,silicoqr,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,188909,0.3496425970545331,peer,silicoqr,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,188909,-0.0158681261533548,relative_legacy,silicoqr,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,189585,0.0486769305562416,relative_legacy,mf-bot-1,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,189585,22.741031117037053,spot_peer,mf-bot-1,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,189585,75.56890666408901,baseline,mf-bot-1,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,189585,27.027556260868916,peer,mf-bot-1,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,189588,-400.38134673046665,baseline,mf-bot-3,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,189588,-405.8893689053569,spot_baseline,mf-bot-3,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,189588,-4.710179967004387,relative_legacy,mf-bot-3,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,189588,-323.19403451974296,spot_peer,mf-bot-3,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,189588,-319.920758924404,peer,mf-bot-3,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,189869,60.456100551072325,baseline,VeritasAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,189869,18.35705320615588,peer,VeritasAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,189869,22.741031117037053,spot_peer,VeritasAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,189869,0.0201557032489006,relative_legacy,VeritasAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,190710,0.1875250449828728,relative_legacy,Bot_Pepa,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,190710,35.01467952093992,peer,Bot_Pepa,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,190710,34.24713130085336,spot_peer,Bot_Pepa,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,190710,92.5999418556223,spot_baseline,Bot_Pepa,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,190710,87.14895855493421,baseline,Bot_Pepa,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,190772,65.99245584023782,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,190772,50.89258001343299,baseline,Jay_Bailey_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,190772,11.900713418482908,peer,Jay_Bailey_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,190772,-0.0619263280323598,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,190772,15.168265183592752,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191026,-47.16173761931528,spot_peer,manticAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191026,-3.231795914555602,baseline,manticAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191026,-7.275088005919878,peer,manticAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191026,-0.1393105247732294,relative_legacy,manticAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191026,-20.93329057070109,spot_baseline,manticAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191046,-0.0078575892005283,relative_legacy,archipelago,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191046,19.22567783051731,baseline,archipelago,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191046,16.469518515336908,spot_peer,archipelago,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191046,4.498461445895597,peer,archipelago,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191284,92.5999418556223,spot_baseline,000_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191284,0.183321567922403,relative_legacy,000_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191284,34.35251073178036,peer,000_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191284,86.12472189860489,baseline,000_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191284,34.24713130085336,spot_peer,000_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191471,63.08011050208054,baseline,HSeldon,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191471,23.095947206395007,peer,HSeldon,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191471,92.5999418556223,spot_baseline,HSeldon,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191471,34.24713130085336,spot_peer,HSeldon,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191471,0.1235227769602528,relative_legacy,HSeldon,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191935,24.89301940882768,peer,pgodzinai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191935,0.100914334970313,relative_legacy,pgodzinai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191935,86.39384504239716,spot_baseline,pgodzinai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191935,70.21011353824251,baseline,pgodzinai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,191935,29.797056981850886,spot_peer,pgodzinai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192049,5.342336413320128,peer,gnosis-ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192049,-0.2275863957310943,relative_legacy,gnosis-ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192049,46.29426251507028,baseline,gnosis-ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192049,2.655926174869033,spot_peer,gnosis-ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192418,-1.2033592991461726,relative_legacy,InstitutPelFutur,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192418,-64.75354572970808,peer,InstitutPelFutur,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192418,-69.04895457271151,spot_peer,InstitutPelFutur,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192418,-50.20552180352858,baseline,InstitutPelFutur,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192472,92.5999418556223,spot_baseline,bestworldbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192472,38.93953835850629,peer,bestworldbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192472,92.24405869073152,baseline,bestworldbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192472,0.2095229385079164,relative_legacy,bestworldbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192472,34.24713130085336,spot_peer,bestworldbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192924,13.850434930755206,spot_peer,acm_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192924,13.487382676018788,peer,acm_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192924,64.15460290875237,spot_baseline,acm_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192924,56.18505448602589,baseline,acm_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,192924,-0.0807473553847867,relative_legacy,acm_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,193275,14.906038741883634,spot_peer,histerio,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,193275,-0.0678714206610469,relative_legacy,histerio,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,193275,16.037835513517646,peer,histerio,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,193275,60.82505682396947,baseline,histerio,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,193275,65.62675347942891,spot_baseline,histerio,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,195286,16.863226755261927,peer,Unwrapped80T,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,195286,56.65680397134236,baseline,Unwrapped80T,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,195286,0.0162351890651695,relative_legacy,Unwrapped80T,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,195286,22.741031117037053,spot_peer,Unwrapped80T,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,204737,36.18886606105927,spot_peer,SynapseSeer,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,204737,39.6481980733173,baseline,SynapseSeer,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,204737,14.670458197333264,peer,SynapseSeer,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,204737,95.30789526125076,spot_baseline,SynapseSeer,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,204737,0.0913702243264966,relative_legacy,SynapseSeer,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,208405,75.24756279829363,baseline,mf-bot-4,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,208405,22.741031117037053,spot_peer,mf-bot-4,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,208405,0.0467150173498613,relative_legacy,mf-bot-4,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,208405,26.72530665420256,peer,mf-bot-4,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,215725,59.31289201064871,baseline,estr.ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,215725,21.586810824749318,peer,estr.ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,215725,0.1161337896205635,relative_legacy,estr.ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,215725,92.5999418556223,spot_baseline,estr.ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,215725,34.24713130085336,spot_peer,estr.ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,218666,-35.08942325370795,spot_peer,GreeneiBot2,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,218666,-0.7338479960935892,relative_legacy,GreeneiBot2,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,218666,-4.097178105630618,spot_baseline,GreeneiBot2,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,218666,-31.124384851307923,peer,GreeneiBot2,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,218666,-3.948864500394744,baseline,GreeneiBot2,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,218945,32.08899787089167,peer,SeidrBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,218945,28.65397047979036,spot_peer,SeidrBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,218945,84.79969065549501,spot_baseline,SeidrBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,218945,82.86219110306125,baseline,SeidrBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,218945,0.1261856692592801,relative_legacy,SeidrBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,220077,37.85116232537298,spot_baseline,mmBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,220077,-0.3358607335583536,relative_legacy,mmBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,220077,-5.010415772067699,spot_peer,mmBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,220077,37.81577761667484,baseline,mmBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,220077,-1.1523666557547103,peer,mmBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,221727,57.42127494110095,baseline,mf-bot-5,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,221727,9.793119776967467,spot_peer,mf-bot-5,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,221727,-0.1312212195109967,relative_legacy,mf-bot-5,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,221727,13.650903896001251,peer,mf-bot-5,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,222631,-4.51858213058812,baseline,Grizeu_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,222631,-15.200309344504996,spot_baseline,Grizeu_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,222631,-0.2558144951969819,relative_legacy,Grizeu_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,222631,-13.0022789650662,peer,Grizeu_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,222631,-43.05091026779019,spot_peer,Grizeu_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,227188,47.50276009861785,baseline,ProfessorSP,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,227188,12.315631285619894,peer,ProfessorSP,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,227188,71.36958148433588,spot_baseline,ProfessorSP,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,227188,-0.0202909303249205,relative_legacy,ProfessorSP,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30638,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-10 14:12:16.355504+00,227188,19.02392671434085,spot_peer,ProfessorSP,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30908 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,182315,52.60688116675877,spot_baseline,RyansAGI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,182315,-5.9766089037091366,peer,RyansAGI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,182315,46.35262279852464,baseline,RyansAGI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,182315,-0.1891453802941053,relative_legacy,RyansAGI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,182315,-6.451581795657309,spot_peer,RyansAGI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,185699,84.79969065549501,spot_baseline,MWG,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,185699,16.080067690849347,peer,MWG,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,185699,0.09936770399092,relative_legacy,MWG,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,185699,81.59982040311061,baseline,MWG,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,185699,16.582591243228862,spot_peer,MWG,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,187708,31.36643518162361,baseline,twsummerbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,187708,57.33745264459444,spot_baseline,twsummerbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,187708,-0.0841755844053067,relative_legacy,twsummerbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,187708,-3.066825891348569,spot_peer,twsummerbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,187708,-1.7259949187633707,peer,twsummerbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,188107,-51.21400606144937,spot_peer,Cassie,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,188107,-12.937391330055007,peer,Cassie,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,188107,-9.95356735509144,spot_baseline,Cassie,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,188107,-2.5246450541646355,baseline,Cassie,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,188107,-0.2031755893212612,relative_legacy,Cassie,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,188909,-0.003158032966051,relative_legacy,silicoqr,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,188909,1.8108912545142009,spot_peer,silicoqr,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,188909,0.1565699416971469,peer,silicoqr,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,188909,5.546817022826483,baseline,silicoqr,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,188909,64.15460290875237,spot_baseline,silicoqr,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,189585,83.73547594289874,baseline,mf-bot-1,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,189585,16.582591243228862,spot_peer,mf-bot-1,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,189585,0.1021200403051525,relative_legacy,mf-bot-1,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,189585,17.23006958132035,peer,mf-bot-1,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,189588,76.55347463629771,spot_baseline,mf-bot-3,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,189588,0.0203780045228671,relative_legacy,mf-bot-3,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,189588,10.682367879105136,spot_peer,mf-bot-3,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,189588,11.164420490888288,peer,mf-bot-3,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,189588,75.45880591474794,baseline,mf-bot-3,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,189869,10.682367879105136,spot_peer,VeritasAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,189869,8.220468731297625,peer,VeritasAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,189869,0.0209456026114029,relative_legacy,VeritasAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,189869,60.45698326035769,baseline,VeritasAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,190710,7.664531345199316,peer,Bot_Pepa,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,190710,73.11832415721999,spot_baseline,Bot_Pepa,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,190710,-0.0107150769504423,relative_legacy,Bot_Pepa,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,190710,8.224494465560001,spot_peer,Bot_Pepa,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,190710,68.87877547092191,baseline,Bot_Pepa,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,190772,0.0339686656891151,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,190772,8.979959515984566,peer,Jay_Bailey_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,190772,60.38559709946799,baseline,Jay_Bailey_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,190772,11.889701015950694,spot_peer,Jay_Bailey_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,190772,78.24085649273731,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191026,17.266220770949282,spot_peer,manticAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191026,85.75513868089729,spot_baseline,manticAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191026,2.6709515320638277,peer,manticAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191026,13.2398626057965,baseline,manticAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191026,0.021768636080799,relative_legacy,manticAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191046,-0.0085462702508439,relative_legacy,archipelago,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191046,1.2897742976874904,peer,archipelago,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191046,4.424342401279602,spot_peer,archipelago,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191046,19.218189783673576,baseline,archipelago,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191284,10.682367879105136,spot_peer,000_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191284,71.19979072188403,baseline,000_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191284,9.84871508360748,peer,000_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191284,76.55347463629771,spot_baseline,000_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191284,0.0218512402591258,relative_legacy,000_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191471,-5.027754994900055,spot_peer,HSeldon,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191471,37.21694958980953,baseline,HSeldon,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191471,-0.128725903219742,relative_legacy,HSeldon,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191471,54.59683691052925,spot_baseline,HSeldon,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191471,-3.521171376533772,peer,HSeldon,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191935,15.189759188326326,peer,pgodzinai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191935,18.851381614199227,spot_peer,pgodzinai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191935,0.1139641888281847,relative_legacy,pgodzinai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191935,71.67229190398815,baseline,pgodzinai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191935,87.97057662822883,spot_baseline,pgodzinai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191975,-41.64400367649274,spot_peer,jkraybill_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191975,-0.4704495260630504,relative_legacy,jkraybill_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191975,3.4215715337912984,spot_baseline,jkraybill_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191975,-28.179300021938744,peer,jkraybill_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,191975,2.2990562432917168,baseline,jkraybill_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192049,0.1738722874152595,relative_legacy,gnosis-ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192049,22.163723761450875,spot_peer,gnosis-ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192049,88.49751727534913,baseline,gnosis-ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192049,21.30517712563361,peer,gnosis-ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192418,0.0200172086093486,relative_legacy,InstitutPelFutur,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192418,10.70219635331494,peer,InstitutPelFutur,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192418,74.72753724074967,baseline,InstitutPelFutur,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192418,10.682367879105136,spot_peer,InstitutPelFutur,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192472,-155.1583535551739,baseline,bestworldbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192472,-155.6393348524385,spot_baseline,bestworldbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192472,-2.285680588102168,relative_legacy,bestworldbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192472,-156.7523779021648,peer,bestworldbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192472,-155.45315856570517,spot_peer,bestworldbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192924,8.436453310013116,peer,acm_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192924,9.706230047669225,spot_peer,acm_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192924,0.0097713041058872,relative_legacy,acm_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192924,75.1892138404309,spot_baseline,acm_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,192924,66.57677955390623,baseline,acm_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,193275,64.52405126452653,spot_baseline,histerio,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,193275,60.60555867150706,baseline,histerio,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,193275,1.7938940374803107,peer,histerio,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,193275,-0.0911607772095509,relative_legacy,histerio,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,193275,2.0752340531385896,spot_peer,histerio,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,195286,0.0820585315953377,relative_legacy,Unwrapped80T,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,195286,62.84527910528063,baseline,Unwrapped80T,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,195286,12.15398626938419,peer,Unwrapped80T,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,195286,16.582591243228862,spot_peer,Unwrapped80T,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,204737,18.851381614199227,spot_peer,SynapseSeer,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,204737,36.08090527614296,baseline,SynapseSeer,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,204737,87.97057662822883,spot_baseline,SynapseSeer,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,204737,0.0630697535923607,relative_legacy,SynapseSeer,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,204737,7.701737196082057,peer,SynapseSeer,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,208405,4.365870931916468,peer,mf-bot-4,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,208405,-0.0715006675002079,relative_legacy,mf-bot-4,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,208405,66.20775678803636,baseline,mf-bot-4,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,208405,4.424342401279602,spot_peer,mf-bot-4,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,215725,31.10646210158231,baseline,estr.ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,215725,48.54268271702416,spot_baseline,estr.ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,215725,-9.3595432889937,spot_peer,estr.ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,215725,-0.1585493466791964,relative_legacy,estr.ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,215725,-6.072206827979634,peer,estr.ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,218666,84.1570637395517,spot_baseline,GreeneiBot2,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,218666,15.757269947880888,peer,GreeneiBot2,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,218666,81.33659438990969,baseline,GreeneiBot2,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,218666,0.0935048061225984,relative_legacy,GreeneiBot2,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,218666,16.122787336196062,spot_peer,GreeneiBot2,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,218945,-17.009398479055314,spot_peer,SeidrBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,218945,37.85116232537298,spot_baseline,SeidrBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,218945,-0.358192808219357,relative_legacy,SeidrBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,218945,37.00117216702,baseline,SeidrBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,218945,-16.69224267404275,peer,SeidrBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,219886,0.2149652604533065,relative_legacy,SaraBase,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,219886,24.30837764363687,peer,SaraBase,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,219886,96.88354145214724,spot_baseline,SaraBase,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,219886,25.228668260009808,spot_peer,SaraBase,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,219886,92.70913109097602,baseline,SaraBase,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,220077,58.496250072115615,spot_baseline,mmBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,220077,-2.2376984903406467,spot_peer,mmBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,220077,58.45619895643837,baseline,mmBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,220077,-0.2457273231852899,peer,mmBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,220077,-0.1509422954996936,relative_legacy,mmBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,221727,83.30293174994542,baseline,mf-bot-5,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,221727,84.79969065549501,spot_baseline,mf-bot-5,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,221727,16.788712093590128,peer,mf-bot-5,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,221727,16.582591243228862,spot_peer,mf-bot-5,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,221727,0.1011511951991446,relative_legacy,mf-bot-5,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,222631,22.77034809954817,baseline,Grizeu_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,222631,3.2023709827348186,peer,Grizeu_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,222631,10.682367879105136,spot_peer,Grizeu_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,222631,0.0162428040271873,relative_legacy,Grizeu_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,227188,10.682367879105136,spot_peer,ProfessorSP,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,227188,76.55347463629771,spot_baseline,ProfessorSP,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,227188,7.091687987783308,peer,ProfessorSP,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,227188,0.0209456026114029,relative_legacy,ProfessorSP,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30639,"Before January 1, 2025, will Tech Crunch report new layoffs at Apple?",2024-12-10 14:12:16.368882+00,227188,50.983331021902046,baseline,ProfessorSP,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30909 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,182315,-4.192530345762981,peer,RyansAGI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,182315,-18.44245711374277,spot_baseline,RyansAGI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,182315,-0.3348538917745596,relative_legacy,RyansAGI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,182315,-8.118416274064812,spot_peer,RyansAGI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,182315,-16.262997168317312,baseline,RyansAGI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,185699,39.06394692355551,peer,MWG,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,185699,41.05221938178529,baseline,MWG,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,185699,0.2015044109729012,relative_legacy,MWG,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,185699,35.288343516666,spot_peer,MWG,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,185699,42.22330006830476,spot_baseline,MWG,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,187708,6.259141794144125,peer,twsummerbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,187708,7.726860449389389,spot_peer,twsummerbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,187708,2.332558032497783,baseline,twsummerbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,187708,3.703073094496671,spot_baseline,twsummerbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,187708,-0.0854769712034555,relative_legacy,twsummerbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,188107,9.95458416288781,peer,Cassie,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,188107,11.631640590887626,baseline,Cassie,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,188107,33.47504558449579,spot_peer,Cassie,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,188107,39.68901525685845,spot_baseline,Cassie,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,188107,0.035727753573943,relative_legacy,Cassie,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,188909,-0.0401296536973114,relative_legacy,silicoqr,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,188909,-1.9132962805506863,baseline,silicoqr,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,188909,-21.75914350726266,spot_baseline,silicoqr,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,188909,-0.9225271745177788,peer,silicoqr,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,188909,-10.49152783274337,spot_peer,silicoqr,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,189585,-328.0259744584399,baseline,mf-bot-1,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,189585,-227.7307184238645,peer,mf-bot-1,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,189585,-332.1928094887361,spot_baseline,mf-bot-1,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,189585,-232.60891655630064,spot_peer,mf-bot-1,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,189585,-3.4888370631057715,relative_legacy,mf-bot-1,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,189588,32.16004937521271,spot_peer,mf-bot-3,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,189588,0.1640908356104845,relative_legacy,mf-bot-3,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,189588,37.21185259204765,peer,mf-bot-3,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,189588,37.34409311423712,baseline,mf-bot-3,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,189869,32.16004937521271,spot_peer,VeritasAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,189869,0.1473470754370991,relative_legacy,VeritasAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,189869,29.892814718085805,baseline,VeritasAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,189869,27.79438665171945,peer,VeritasAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,190710,-88.8968687611256,spot_baseline,Bot_Pepa,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,190710,-83.81998663608834,baseline,Bot_Pepa,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,190710,-51.959426483357646,peer,Bot_Pepa,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,190710,-1.0351680000843435,relative_legacy,Bot_Pepa,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,190710,-58.52902457485778,spot_peer,Bot_Pepa,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,190772,19.38994035148827,peer,Jay_Bailey_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,190772,22.16264798270509,spot_peer,Jay_Bailey_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,190772,0.0394187258256029,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,190772,18.4447416390998,baseline,Jay_Bailey_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,190772,23.878685958711674,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191026,7.235323604732342,peer,manticAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191026,58.5724102960396,spot_baseline,manticAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191026,0.0442793167238073,relative_legacy,manticAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191026,9.043471718810208,baseline,manticAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191026,46.98624251952347,spot_peer,manticAI,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191046,-0.2860299279582492,relative_legacy,archipelago,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191046,-73.69655941662059,spot_baseline,archipelago,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191046,-47.65310037792087,spot_peer,archipelago,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191046,-13.396918945664426,peer,archipelago,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191046,-20.90180803318416,baseline,archipelago,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191284,48.54268271702416,spot_baseline,000_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191284,40.95444789578583,peer,000_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191284,0.2594588692236687,relative_legacy,000_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191284,39.80990456527432,spot_peer,000_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191284,45.147542242325,baseline,000_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191471,-47.65310037792087,spot_peer,HSeldon,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191471,-50.27879845354512,baseline,HSeldon,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191471,-30.97338117391176,peer,HSeldon,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191471,-73.69655941662059,spot_baseline,HSeldon,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191471,-0.6218980537953313,relative_legacy,HSeldon,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191935,65.23692868785025,baseline,pgodzinai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191935,53.56348629561524,peer,pgodzinai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191935,0.4905054805681265,relative_legacy,pgodzinai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191935,62.25252408581365,spot_peer,pgodzinai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191935,79.90873060740036,spot_baseline,pgodzinai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191975,38.589115361932734,spot_baseline,jkraybill_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191975,35.42795837458089,peer,jkraybill_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191975,0.166750028596756,relative_legacy,jkraybill_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191975,32.68805976662126,spot_peer,jkraybill_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,191975,36.797122747736864,baseline,jkraybill_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192049,0.2619004105247768,relative_legacy,gnosis-ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192049,46.470462657117416,baseline,gnosis-ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192049,39.80990456527432,spot_peer,gnosis-ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192049,42.51199442857975,peer,gnosis-ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192418,-169.592310228397,baseline,InstitutPelFutur,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192418,-1.9045190307292537,relative_legacy,InstitutPelFutur,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192418,-113.23217308918744,peer,InstitutPelFutur,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192418,-119.20377708088296,spot_peer,InstitutPelFutur,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192472,-0.9881612255968686,relative_legacy,bestworldbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192472,-78.58751946471523,spot_baseline,bestworldbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192472,-51.15261538960411,spot_peer,bestworldbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192472,-78.3991653513458,baseline,bestworldbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192472,-46.47836128193261,peer,bestworldbot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192924,14.052285312091373,baseline,acm_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192924,15.833702716710066,spot_baseline,acm_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192924,16.40640803241304,spot_peer,acm_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192924,-0.0338884045199481,relative_legacy,acm_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,192924,17.76536672122947,peer,acm_bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,193275,6.271202955388103,peer,histerio,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,193275,-2.914634565951651,spot_baseline,histerio,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,193275,-3.390696272061489,baseline,histerio,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,193275,2.9918458361148623,spot_peer,histerio,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,193275,-0.2331152631891096,relative_legacy,histerio,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,195286,-89.50756315037657,spot_peer,Unwrapped80T,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,195286,-132.19280948873626,spot_baseline,Unwrapped80T,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,195286,-64.6207333519249,peer,Unwrapped80T,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,195286,-97.96524158749192,baseline,Unwrapped80T,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,195286,-1.1128121453021569,relative_legacy,Unwrapped80T,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,204737,66.89266734901534,spot_peer,SynapseSeer,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,204737,86.39384504239716,spot_baseline,SynapseSeer,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,204737,28.54263072620011,peer,SynapseSeer,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,204737,36.27080269879453,baseline,SynapseSeer,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,204737,0.2616844119785809,relative_legacy,SynapseSeer,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,208405,0.5389120736144939,relative_legacy,mf-bot-4,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,208405,64.16922643806292,peer,mf-bot-4,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,208405,59.85181573337315,spot_peer,mf-bot-4,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,208405,74.85044039309443,baseline,mf-bot-4,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,215725,-9.7479352310264,baseline,estr.ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,215725,-15.200309344505014,spot_baseline,estr.ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,215725,-5.798637605465221,spot_peer,estr.ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,215725,-2.3045039305810784,peer,estr.ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,215725,-0.2080870344397257,relative_legacy,estr.ai,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,218666,34.67022306818886,spot_peer,GreeneiBot2,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,218666,40.07340191780506,baseline,GreeneiBot2,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,218666,0.1931341063953453,relative_legacy,GreeneiBot2,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,218666,41.35940824091752,spot_baseline,GreeneiBot2,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,218666,38.23301677077986,peer,GreeneiBot2,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,218945,-119.20377708088296,spot_peer,SeidrBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,218945,-1.9077876786980643,relative_legacy,SeidrBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,218945,-113.37772112110238,peer,SeidrBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,218945,-169.86069076279904,baseline,SeidrBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,218945,-173.6965594166206,spot_baseline,SeidrBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,219886,80.94659432274453,baseline,SaraBase,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,219886,68.08505211651844,peer,SaraBase,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,219886,0.5992473749802212,relative_legacy,SaraBase,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,219886,82.98495598446905,spot_baseline,SaraBase,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,219886,64.45358416001454,spot_peer,SaraBase,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,220077,-15.1926571423315,baseline,mmBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,220077,-15.200309344505014,spot_baseline,mmBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,220077,-5.798637605465221,spot_peer,mmBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,220077,-0.1723075630144895,peer,mmBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,220077,-0.3558083531275824,relative_legacy,mmBot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,221727,70.10908792146702,peer,mf-bot-5,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,221727,0.6204362355154858,relative_legacy,mf-bot-5,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,221727,65.75203909749688,spot_peer,mf-bot-5,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,221727,84.79969065549501,spot_baseline,mf-bot-5,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,221727,83.29917345513682,baseline,mf-bot-5,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,222631,9.718485112025023,peer,Grizeu_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,222631,32.16004937521271,spot_peer,Grizeu_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,222631,0.0309736692672185,relative_legacy,Grizeu_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,222631,11.264257216255626,baseline,Grizeu_Bot,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,227188,68.02082946846724,spot_peer,ProfessorSP,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,227188,87.97057662822883,spot_baseline,ProfessorSP,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,227188,0.4696366422213928,relative_legacy,ProfessorSP,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,227188,58.62391009347229,baseline,ProfessorSP,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30640,"Before January 1, 2025, will Tech Crunch report new layoffs at TikTok or ByteDance?",2024-12-10 14:12:16.382083+00,227188,47.100171048014026,peer,ProfessorSP,True,no,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30910 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,182315,48.17615736997768,baseline,RyansAGI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,182315,73.9922182608004,peer,RyansAGI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,182315,93.93718299135526,spot_peer,RyansAGI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,182315,0.7405113654488218,relative_legacy,RyansAGI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,182315,54.59683691052925,spot_baseline,RyansAGI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,185699,0.0712463160312923,relative_legacy,MWG,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,185699,-15.200309344504996,spot_baseline,MWG,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,185699,43.9968525265221,spot_peer,MWG,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,185699,31.247545852731555,peer,MWG,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,185699,-14.956699575750443,baseline,MWG,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,187708,46.70984929063368,peer,twsummerbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,187708,21.2921163042048,baseline,twsummerbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,187708,78.72947050032471,spot_peer,twsummerbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,187708,0.4602233898406627,relative_legacy,twsummerbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,187708,33.34237337251918,spot_baseline,twsummerbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,188107,-20.645087746742632,spot_baseline,Cassie,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,188107,40.10107673474434,spot_peer,Cassie,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,188107,0.0563086278509862,relative_legacy,Cassie,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,188107,8.909026087976912,peer,Cassie,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,188107,-4.749001975460837,baseline,Cassie,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,188909,-8.432428708342586,baseline,silicoqr,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,188909,-1.12883081217358,peer,silicoqr,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,188909,-94.34164716336323,spot_baseline,silicoqr,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,188909,-0.0383307971923818,relative_legacy,silicoqr,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,188909,-12.62931023464824,spot_peer,silicoqr,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,189585,31.838603684572835,spot_peer,mf-bot-1,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,189585,-0.0929817933198841,relative_legacy,mf-bot-1,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,189585,-31.767172660996977,baseline,mf-bot-1,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,189585,19.350165670087904,peer,mf-bot-1,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,189588,-171.34786968742836,baseline,mf-bot-3,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,189588,-82.0521054444931,peer,mf-bot-3,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,189588,-1.4896035858689256,relative_legacy,mf-bot-3,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,189588,-173.6965594166206,spot_baseline,mf-bot-3,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,189588,-69.40828694889566,spot_peer,mf-bot-3,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,189869,-173.6965594166206,spot_baseline,VeritasAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,189869,-69.40828694889566,spot_peer,VeritasAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,189869,-1.0687308472100625,relative_legacy,VeritasAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,189869,-137.1784223167294,baseline,VeritasAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,189869,-61.94299609717436,peer,VeritasAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,190710,-358.23914365881217,baseline,Bot_Pepa,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,190710,-379.5859283219775,spot_baseline,Bot_Pepa,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,190710,-216.7235236601365,spot_peer,Bot_Pepa,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,190710,-218.14355284775135,peer,Bot_Pepa,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,190710,-3.3534774966665184,relative_legacy,Bot_Pepa,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,190772,-16.677899979503085,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,190772,-0.4841073777671406,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,190772,-100.0,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,190772,-19.890079876937648,peer,Jay_Bailey_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,190772,-78.66950178698258,baseline,Jay_Bailey_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191026,-34.587091887534974,baseline,manticAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191026,-16.308332507060136,peer,manticAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191026,-0.2664183264419473,relative_legacy,manticAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191026,-224.00262932189787,spot_baseline,manticAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191026,-105.40262038878669,spot_peer,manticAI,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191046,31.838603684572835,spot_peer,archipelago,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191046,0.0400863340925183,relative_legacy,archipelago,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191046,-32.19280948873623,spot_baseline,archipelago,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191046,8.576552616684216,peer,archipelago,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191046,-9.133410025103675,baseline,archipelago,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191284,71.19880170068208,baseline,000_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191284,92.03369506638091,peer,000_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191284,109.64730586536044,spot_peer,000_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191284,0.9453155274612184,relative_legacy,000_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191471,-129.85360980071104,peer,HSeldon,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191471,-182.81342642431343,spot_peer,HSeldon,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191471,-332.1928094887362,spot_baseline,HSeldon,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191471,-1.9972338285812687,relative_legacy,HSeldon,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191471,-226.793236660644,baseline,HSeldon,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191935,-70.56229776082522,peer,pgodzinai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191935,-150.18271317071623,baseline,pgodzinai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191935,-1.2077897895490977,relative_legacy,pgodzinai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191935,-76.53013174754871,spot_peer,pgodzinai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191935,-183.65012677171205,spot_baseline,pgodzinai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191975,89.21140259127961,spot_peer,jkraybill_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191975,47.99203508636982,spot_baseline,jkraybill_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191975,0.5112816290794995,relative_legacy,jkraybill_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191975,50.08395781989621,peer,jkraybill_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,191975,28.59662713722081,baseline,jkraybill_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192049,-70.68881034569961,baseline,gnosis-ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192049,-9.892960983740448,peer,gnosis-ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192049,2.142389754066416,spot_peer,gnosis-ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192049,-73.69655941662063,spot_baseline,gnosis-ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192049,-0.4834689925606366,relative_legacy,gnosis-ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192418,-0.2823617601126457,relative_legacy,InstitutPelFutur,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192418,18.054717994299534,spot_peer,InstitutPelFutur,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192418,5.345629520810345,peer,InstitutPelFutur,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192418,-50.26674926035309,baseline,InstitutPelFutur,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192472,-73.58740962186526,baseline,bestworldbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192472,-9.667678761630375,peer,bestworldbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192472,-0.4984456785606179,relative_legacy,bestworldbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192472,-73.69655941662063,spot_baseline,bestworldbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192472,2.142389754066416,spot_peer,bestworldbot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192924,-15.200309344504996,spot_baseline,acm_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192924,43.9968525265221,spot_peer,acm_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192924,0.1213360351163898,relative_legacy,acm_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192924,29.63073079618113,peer,acm_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,192924,-13.518134221577007,baseline,acm_bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,193275,71.18657134997913,baseline,histerio,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,193275,92.80334300658338,peer,histerio,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,193275,107.93295888216969,spot_peer,histerio,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,193275,0.9352311415569632,relative_legacy,histerio,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,193275,74.15748474187957,spot_baseline,histerio,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,195286,58.496250072115615,spot_baseline,Unwrapped80T,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,195286,0.7139983797441241,relative_legacy,Unwrapped80T,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,195286,96.72723949591467,spot_peer,Unwrapped80T,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,195286,43.423764682811566,baseline,Unwrapped80T,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,195286,66.44287746361658,peer,Unwrapped80T,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,204737,-232.4218904222861,baseline,SynapseSeer,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,204737,-144.71897760257775,peer,SynapseSeer,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,204737,-564.3856189774725,spot_baseline,SynapseSeer,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,204737,-2.1268794051463686,relative_legacy,SynapseSeer,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,204737,-348.94895286912373,spot_peer,SynapseSeer,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,208405,96.72723949591467,spot_peer,mf-bot-4,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,208405,0.7972917268484442,relative_legacy,mf-bot-4,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,208405,57.61851583057804,baseline,mf-bot-4,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,208405,83.96381088025784,peer,mf-bot-4,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,215725,-75.5507493047397,peer,estr.ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,215725,-148.99708971563194,baseline,estr.ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,215725,-111.26274972135134,spot_peer,estr.ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,215725,-232.19280948873623,spot_baseline,estr.ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,215725,-1.2403802190514124,relative_legacy,estr.ai,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,218666,0.7726975414284578,relative_legacy,GreeneiBot2,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,218666,56.94910919587163,spot_baseline,GreeneiBot2,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,218666,95.62024972941396,spot_peer,GreeneiBot2,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,218666,81.67482740024153,peer,GreeneiBot2,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,218666,55.321829251092005,baseline,GreeneiBot2,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,218945,64.65727707346451,peer,SeidrBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,218945,31.494113428895428,baseline,SeidrBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,218945,0.5347853765923462,relative_legacy,SeidrBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,218945,32.19280948873624,spot_baseline,SeidrBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,218945,77.90694976234516,spot_peer,SeidrBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,219886,63.90468935635354,spot_baseline,SaraBase,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,219886,100.59701440285576,spot_peer,SaraBase,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,219886,0.8352304340271506,relative_legacy,SaraBase,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,219886,85.43562448652258,peer,SaraBase,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,219886,61.09767127213555,baseline,SaraBase,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,220077,-82.90846266681365,peer,mmBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,220077,-173.646998810599,baseline,mmBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,220077,-173.6965594166206,spot_baseline,mmBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,220077,-69.40828694889566,spot_peer,mmBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,220077,-1.496964608133187,relative_legacy,mmBot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,221727,81.95553950720002,spot_peer,mf-bot-5,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,221727,0.5921470449013894,relative_legacy,mf-bot-5,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,221727,68.95156788370286,peer,mf-bot-5,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,221727,37.15881723254427,baseline,mf-bot-5,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,222631,4.891880794950977,peer,Grizeu_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,222631,-15.321909068913843,baseline,Grizeu_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,222631,18.054717994299534,spot_peer,Grizeu_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,222631,-0.0145689294308962,relative_legacy,Grizeu_Bot,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,227188,7.92005449510496,peer,ProfessorSP,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,227188,18.054717994299534,spot_peer,ProfessorSP,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,227188,-51.45731728297583,spot_baseline,ProfessorSP,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,227188,-0.0806086306772718,relative_legacy,ProfessorSP,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30641,"Will Jeff Bezos be ranked in the top 2 of the Forbes Real-Time Billionaires List on December 31, 2024?",2024-12-10 14:12:16.395291+00,227188,-34.312230045040785,baseline,ProfessorSP,True,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,2024-12-11 15:30:00+00,30911 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,182315,10.627049759653154,peer,RyansAGI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,182315,0.0487323201610742,relative_legacy,RyansAGI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,182315,10.824177944667769,spot_peer,RyansAGI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,182315,74.60954616805402,baseline,RyansAGI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,182315,84.79969065549501,spot_baseline,RyansAGI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,185699,0.0785291550708704,relative_legacy,MWG,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,185699,82.53812867083529,baseline,MWG,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,185699,13.51818012806014,peer,MWG,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,185699,13.100564711969506,spot_peer,MWG,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,185699,87.97057662822883,spot_baseline,MWG,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,187708,79.57669477823923,spot_baseline,twsummerbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,187708,0.0212538485056127,relative_legacy,twsummerbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,187708,3.2519818249310264,peer,twsummerbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,187708,7.07457647590042,spot_peer,twsummerbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,187708,34.12824008454825,baseline,twsummerbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,188107,5.386852258469515,peer,Cassie,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,188107,8.888207025551974,spot_peer,Cassie,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,188107,82.10298589546805,spot_baseline,Cassie,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,188107,46.45708118112343,baseline,Cassie,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,188107,0.0320884113148014,relative_legacy,Cassie,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,189585,0.0533819112229341,relative_legacy,mf-bot-1,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,189585,10.824177944667769,spot_peer,mf-bot-1,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,189585,11.81083684313498,peer,mf-bot-1,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,189585,83.74556944781924,baseline,mf-bot-1,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,189588,-8.059126151848956,spot_peer,mf-bot-3,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,189588,57.68737868021198,baseline,mf-bot-3,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,189588,-0.2060907033638523,relative_legacy,mf-bot-3,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,189588,58.496250072115615,spot_baseline,mf-bot-3,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,189588,-7.101343185475055,peer,mf-bot-3,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,189869,10.824177944667769,spot_peer,VeritasAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,189869,0.0475806643013011,relative_legacy,VeritasAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,189869,64.40030322581423,baseline,VeritasAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,189869,8.89826800741503,peer,VeritasAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,190710,10.261535663161206,peer,Bot_Pepa,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,190710,83.18772411916731,spot_baseline,Bot_Pepa,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,190710,9.666943239861954,spot_peer,Bot_Pepa,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,190710,0.0336575420679689,relative_legacy,Bot_Pepa,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,190710,78.04479348245368,baseline,Bot_Pepa,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,190772,10.926621126355473,peer,Jay_Bailey_Bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,190772,0.0723358321896206,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,190772,87.97057662822883,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,190772,13.100564711969506,spot_peer,Jay_Bailey_Bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,190772,68.41158519527674,baseline,Jay_Bailey_Bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191026,0.8575466562154132,peer,manticAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191026,16.42399729051776,spot_peer,manticAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191026,0.0106270951241965,relative_legacy,manticAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191026,4.834923502445808,baseline,manticAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191046,-0.2636775922410098,peer,archipelago,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191046,-1.3747793197433678,spot_peer,archipelago,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191046,-0.0128722237696449,relative_legacy,archipelago,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191046,19.660922258743565,baseline,archipelago,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191284,16.984278588663962,peer,000_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191284,16.42399729051776,spot_peer,000_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191284,89.00565829453274,baseline,000_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191284,0.1235094690288213,relative_legacy,000_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191471,-15.204816412997513,spot_peer,HSeldon,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191471,48.54268271702416,spot_baseline,HSeldon,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191471,-0.1988868163252542,relative_legacy,HSeldon,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191471,32.99829024066946,baseline,HSeldon,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191471,-9.886263109647055,peer,HSeldon,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191935,91.07326619029126,spot_baseline,pgodzinai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191935,87.4419580758189,baseline,pgodzinai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191935,15.902767253411522,peer,pgodzinai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191935,0.1086817909286083,relative_legacy,pgodzinai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191935,15.327993109854996,spot_peer,pgodzinai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191975,-0.9693479199108112,peer,jkraybill_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191975,35.83123150603166,baseline,jkraybill_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191975,-0.0525294644169385,relative_legacy,jkraybill_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191975,-2.372125463669976,spot_peer,jkraybill_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,191975,66.41794025591915,spot_baseline,jkraybill_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192049,88.09651550235228,baseline,gnosis-ai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192049,92.5999418556223,spot_baseline,gnosis-ai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192049,16.841505916386186,peer,gnosis-ai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192049,0.1221643327459903,relative_legacy,gnosis-ai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192049,16.42399729051776,spot_peer,gnosis-ai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192418,-108.91060250863326,baseline,InstitutPelFutur,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192418,-124.28423985462786,peer,InstitutPelFutur,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192418,-135.0838552417127,spot_peer,InstitutPelFutur,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192418,-1.8194868451278097,relative_legacy,InstitutPelFutur,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192418,-118.44245711374276,spot_baseline,InstitutPelFutur,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192472,-8.059126151848956,spot_peer,bestworldbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192472,-7.036664248064233,peer,bestworldbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192472,57.45465169123205,baseline,bestworldbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192472,-0.2052644435892157,relative_legacy,bestworldbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192924,-2.415706961713161,spot_peer,acm_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192924,55.94800283148436,baseline,acm_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192924,-1.1623904880074192,peer,acm_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192924,-0.1067622036077599,relative_legacy,acm_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,192924,66.35723354175227,spot_baseline,acm_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,193275,71.89643357595385,spot_baseline,histerio,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,193275,-0.0516303387826043,relative_legacy,histerio,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,193275,1.80360209704022,peer,histerio,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,193275,54.97625830083462,baseline,histerio,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,193275,1.560898241917802,spot_peer,histerio,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,195286,-1.3747793197433678,spot_peer,Unwrapped80T,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,195286,-0.1484401011355064,peer,Unwrapped80T,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,195286,-0.0066300810920094,relative_legacy,Unwrapped80T,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,195286,10.126728003793868,baseline,Unwrapped80T,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,204737,0.9591040113377948,peer,SynapseSeer,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,204737,72.2466024471091,spot_baseline,SynapseSeer,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,204737,1.812285327884693,spot_peer,SynapseSeer,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,204737,-0.0092753160729292,relative_legacy,SynapseSeer,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,204737,30.090049575244954,baseline,SynapseSeer,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,208405,16.42399729051776,spot_peer,mf-bot-4,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,208405,91.19138275030804,baseline,mf-bot-4,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,208405,17.36754354538519,peer,mf-bot-4,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,208405,0.1298911522038159,relative_legacy,mf-bot-4,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,218666,50.994277882866655,baseline,GreeneiBot2,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,218666,-0.2657371999551632,relative_legacy,GreeneiBot2,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,218666,-11.433793517303878,peer,GreeneiBot2,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,218666,52.20557491609642,spot_baseline,GreeneiBot2,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,218666,-12.57521717678405,spot_peer,GreeneiBot2,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,218945,-14.042116036020122,peer,SeidrBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,218945,48.54268271702416,spot_baseline,SeidrBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,218945,-0.3016094095633933,relative_legacy,SeidrBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,218945,47.432519785179565,baseline,SeidrBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,218945,-15.204816412997513,spot_peer,SeidrBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,219886,7.743951882754334,peer,SaraBase,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,219886,-0.0021283166439735,relative_legacy,SaraBase,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,219886,77.65067418802583,baseline,SaraBase,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,219886,79.18224043943128,spot_baseline,SaraBase,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,219886,6.791396744781617,spot_peer,SaraBase,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,220077,4.904199368387374,spot_peer,mmBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,220077,76.48846903806493,baseline,mmBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,220077,5.863783699016274,peer,mmBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,220077,-0.0280941490981987,relative_legacy,mmBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,221727,-0.0279075110394504,relative_legacy,mf-bot-5,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,221727,75.23292021954727,baseline,mf-bot-5,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,221727,4.904199368387374,spot_peer,mf-bot-5,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,221727,5.870166574681924,peer,mf-bot-5,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,227188,11.45270021635958,peer,ProfessorSP,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,227188,16.42399729051776,spot_peer,ProfessorSP,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,227188,92.5999418556223,spot_baseline,ProfessorSP,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,227188,0.0992432289030013,relative_legacy,ProfessorSP,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30723,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-11 14:32:17.515966+00,227188,61.607614940220856,baseline,ProfessorSP,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30950 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,182315,33.336466148583085,baseline,RyansAGI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,182315,3.194940899371153,peer,RyansAGI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,182315,-0.1406716981624922,relative_legacy,RyansAGI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,182315,2.7357851893311227,spot_peer,RyansAGI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,182315,37.85116232537298,spot_baseline,RyansAGI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,185699,65.99245584023782,spot_baseline,MWG,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,185699,0.1068114329214699,relative_legacy,MWG,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,185699,22.96429004858581,spot_peer,MWG,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,185699,22.57274330614917,peer,MWG,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,185699,62.84032986542729,baseline,MWG,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,187708,-20.804656950096994,spot_peer,twsummerbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,187708,-8.846555268178387,peer,twsummerbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,187708,-0.2260525352455706,relative_legacy,twsummerbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,187708,2.250284693006173,baseline,twsummerbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,187708,5.102400302446689,spot_baseline,twsummerbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,188107,56.0714954474479,spot_baseline,Cassie,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,188107,30.984057897805428,baseline,Cassie,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,188107,9.185206223359655,peer,Cassie,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,188107,15.832912259998466,spot_peer,Cassie,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,188107,-0.0012662232696693,relative_legacy,Cassie,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,189585,-50.82169218118368,baseline,mf-bot-1,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,189585,-61.46087346020315,spot_peer,mf-bot-1,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,189585,-1.0509012114689034,relative_legacy,mf-bot-1,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,189585,-61.09406865444819,peer,mf-bot-1,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,189585,-51.45731728297583,spot_baseline,mf-bot-1,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,189869,44.42509100622349,baseline,VeritasAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,189869,14.18394265196597,peer,VeritasAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,189869,0.0412152520618752,relative_legacy,VeritasAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,189869,17.575872677993555,spot_peer,VeritasAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,190710,31.76867681162881,spot_peer,Bot_Pepa,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,190710,0.2219245151464255,relative_legacy,Bot_Pepa,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,190710,73.53242600666793,baseline,Bot_Pepa,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,190710,30.712973527782463,peer,Bot_Pepa,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,190710,78.24085649273731,spot_baseline,Bot_Pepa,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,190772,28.688114778816157,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,190772,-2.223034755056225,peer,Jay_Bailey_Bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,190772,-0.1857152681698951,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,190772,-3.850790218910079,spot_peer,Jay_Bailey_Bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,190772,22.414366387288823,baseline,Jay_Bailey_Bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191026,0.0070992876983152,relative_legacy,manticAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191026,3.764642524212393,baseline,manticAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191026,1.4281344624093577,peer,manticAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191026,27.34806511081307,spot_peer,manticAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191026,72.09103314921981,spot_baseline,manticAI,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191046,-51.45731728297583,spot_baseline,archipelago,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191046,-61.46087346020315,spot_peer,archipelago,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191046,-17.446265689975288,peer,archipelago,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191046,-0.3125110844546872,relative_legacy,archipelago,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191046,-14.894450304073514,baseline,archipelago,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191284,0.2875941525969417,relative_legacy,000_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191284,36.48329338255179,spot_peer,000_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191284,81.50762692530853,baseline,000_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191284,35.930638869683854,peer,000_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191284,84.79969065549501,spot_baseline,000_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191471,-25.153876699596427,spot_baseline,HSeldon,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191471,-17.117149095250575,baseline,HSeldon,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191471,-28.473767331012063,peer,HSeldon,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191471,-0.5443219563114825,relative_legacy,HSeldon,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191471,-42.55345275564489,spot_peer,HSeldon,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191935,0.0891580383971883,relative_legacy,pgodzinai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191935,21.643205893889377,spot_peer,pgodzinai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191935,21.50741360891273,peer,pgodzinai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191935,61.7172735157452,baseline,pgodzinai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191935,64.15460290875237,spot_baseline,pgodzinai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191975,69.30222465786092,spot_baseline,jkraybill_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191975,25.343415747798357,spot_peer,jkraybill_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191975,43.32486540894996,baseline,jkraybill_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191975,0.0796869704802173,relative_legacy,jkraybill_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,191975,16.404166567676366,peer,jkraybill_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192049,64.71172764272676,baseline,gnosis-ai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192049,24.26875635151945,spot_peer,gnosis-ai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192049,0.1240919726276411,relative_legacy,gnosis-ai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192049,23.87607849749168,peer,gnosis-ai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192418,-0.973065736235778,relative_legacy,InstitutPelFutur,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192418,-61.46087346020315,spot_peer,InstitutPelFutur,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192418,-56.48103048288076,peer,InstitutPelFutur,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192418,-47.3277434105196,baseline,InstitutPelFutur,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192472,-34.80980335672895,peer,bestworldbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192472,-14.952143508927463,baseline,bestworldbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192472,-0.691742386083098,relative_legacy,bestworldbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192472,-35.398636453294394,spot_peer,bestworldbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192472,-15.200309344505014,spot_baseline,bestworldbot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192924,-33.27890875191292,spot_baseline,acm_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192924,-48.39388259463103,spot_peer,acm_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192924,-0.7315366423553159,relative_legacy,acm_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192924,-28.10742912231005,baseline,acm_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,192924,-40.37411480061463,peer,acm_bot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,193275,-4.2324254756913575,baseline,histerio,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,193275,-28.05962169451733,spot_peer,histerio,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,193275,-21.370253345864636,peer,histerio,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,193275,-0.4499027253852009,relative_legacy,histerio,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,193275,-4.990490582631392,spot_baseline,histerio,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,195286,0.0163816350748983,relative_legacy,Unwrapped80T,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,195286,24.26875635151945,spot_peer,Unwrapped80T,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,195286,10.19668359120442,baseline,Unwrapped80T,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,195286,3.752308757843818,peer,Unwrapped80T,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,204737,37.6953019544242,baseline,SynapseSeer,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,204737,40.32880040968843,spot_peer,SynapseSeer,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,204737,17.23336004746479,peer,SynapseSeer,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,204737,0.1412281215602475,relative_legacy,SynapseSeer,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,204737,90.14944550475748,spot_baseline,SynapseSeer,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,208405,24.835378540667826,peer,mf-bot-4,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,208405,0.1251509571910837,relative_legacy,mf-bot-4,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,208405,24.26875635151945,spot_peer,mf-bot-4,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,208405,66.7854777635085,baseline,mf-bot-4,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,218666,22.79154355043054,peer,GreeneiBot2,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,218666,63.901039923566,baseline,GreeneiBot2,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,218666,0.0997544144640643,relative_legacy,GreeneiBot2,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,218666,22.437874178615083,spot_peer,GreeneiBot2,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,218666,65.26012175965195,spot_baseline,GreeneiBot2,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,218945,-51.45731728297583,spot_baseline,SeidrBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,218945,-1.0412956430472202,relative_legacy,SeidrBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,218945,-61.46087346020315,spot_peer,SeidrBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,218945,-60.42734048792541,peer,SeidrBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,218945,-50.30728256919379,baseline,SeidrBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,219886,83.65534672598085,baseline,SaraBase,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,219886,0.2952044622016762,relative_legacy,SaraBase,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,219886,37.14269067077469,peer,SaraBase,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,219886,36.76866170561073,spot_peer,SaraBase,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,219886,85.19668656769521,spot_baseline,SaraBase,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,220077,37.826164510468345,baseline,mmBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,220077,-0.1688956453086127,relative_legacy,mmBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,220077,3.4571007276213104,peer,mmBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,220077,2.7357851893311227,spot_peer,mmBot,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,221727,75.23314169654545,baseline,mf-bot-5,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,221727,30.55575416952009,spot_peer,mf-bot-5,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,221727,0.2104098827574248,relative_legacy,mf-bot-5,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,221727,30.991407439936992,peer,mf-bot-5,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,227188,58.496250072115615,spot_baseline,ProfessorSP,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,227188,0.0204982954493133,relative_legacy,ProfessorSP,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,227188,12.34620582314238,peer,ProfessorSP,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,227188,17.575872677993555,spot_peer,ProfessorSP,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30724,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-11 14:32:17.530664+00,227188,38.9397983931216,baseline,ProfessorSP,True,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30951 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,182315,78.93043815414022,baseline,RyansAGI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,182315,89.53026213333067,spot_baseline,RyansAGI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,182315,0.1340958978790161,relative_legacy,RyansAGI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,182315,14.31745881483184,peer,RyansAGI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,182315,16.287820381778452,spot_peer,RyansAGI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,185699,48.54268271702416,spot_baseline,MWG,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,185699,-13.145016081824968,peer,MWG,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,185699,-13.10227456000401,spot_peer,MWG,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,185699,47.061880148711566,baseline,MWG,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,185699,-0.2518714517797531,relative_legacy,MWG,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,187708,8.81769881898649,peer,twsummerbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,187708,42.80209691938098,baseline,twsummerbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,187708,0.0937534396898344,relative_legacy,twsummerbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,187708,19.464353699309815,spot_peer,twsummerbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,187708,93.9602720356044,spot_baseline,twsummerbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,188107,48.2542221993364,baseline,Cassie,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,188107,83.8615670260641,spot_baseline,Cassie,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,188107,6.902872230422535,peer,Cassie,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,188107,0.0565105668611659,relative_legacy,Cassie,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,188107,12.22308931516902,spot_peer,Cassie,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,189585,12.681323970104796,peer,mf-bot-1,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,189585,12.895769744917324,spot_peer,mf-bot-1,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,189585,84.79969065549501,spot_baseline,mf-bot-1,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,189585,0.1021270713789721,relative_legacy,mf-bot-1,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,189585,83.74281435148507,baseline,mf-bot-1,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,189588,-21.003351876627725,peer,mf-bot-3,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,189588,-20.768616506940734,spot_peer,mf-bot-3,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,189588,37.3631335754878,baseline,mf-bot-3,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,189588,-0.3606889178715138,relative_legacy,mf-bot-3,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,189869,-29.04889661109969,spot_peer,VeritasAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,189869,-22.2438696521654,peer,VeritasAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,189869,19.97651190574371,baseline,VeritasAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,189869,-0.3623925238698703,relative_legacy,VeritasAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,190710,87.1326412842986,baseline,Bot_Pepa,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,190710,17.311460710293655,peer,Bot_Pepa,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,190710,18.48893056598032,spot_peer,Bot_Pepa,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,190710,92.5999418556223,spot_baseline,Bot_Pepa,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,190710,0.1706822203539938,relative_legacy,Bot_Pepa,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,190772,-29.993248312567445,peer,Jay_Bailey_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,190772,-0.4713605087573518,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,190772,10.75128283505987,baseline,Jay_Bailey_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,190772,-38.05007354106138,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,190772,13.750352374993504,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191026,70.51392660995387,spot_baseline,manticAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191026,2.652179672181299,spot_peer,manticAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191026,3.682781758695136,baseline,manticAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191026,0.1385173027098529,peer,manticAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191026,0.0014136666058886,relative_legacy,manticAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191046,19.653819680618817,baseline,archipelago,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191046,0.1849088827582923,peer,archipelago,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191046,0.711317780463873,spot_peer,archipelago,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191046,-0.0083159320933661,relative_legacy,archipelago,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191284,6.982830382164013,spot_peer,000_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191284,0.0196917289904427,relative_legacy,000_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191284,73.58091318582989,baseline,000_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191284,6.502498257994783,peer,000_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191471,18.48893056598032,spot_peer,HSeldon,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191471,12.485660930064435,peer,HSeldon,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191471,63.05669775788542,baseline,HSeldon,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191471,0.1263557954089929,relative_legacy,HSeldon,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191471,92.5999418556223,spot_baseline,HSeldon,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191935,16.68734761163063,peer,pgodzinai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191935,17.39422960075236,spot_peer,pgodzinai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191935,0.1597024904716822,relative_legacy,pgodzinai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191935,91.07326619029126,spot_baseline,pgodzinai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191935,87.81969976958219,baseline,pgodzinai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191975,0.1566932339895562,relative_legacy,jkraybill_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191975,97.23250415571516,spot_baseline,jkraybill_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191975,14.641777984868098,peer,jkraybill_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191975,65.70961095165086,baseline,jkraybill_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,191975,21.81070383881929,spot_peer,jkraybill_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192049,-5.965080957905577,spot_peer,gnosis-ai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192049,-6.060065609049437,peer,gnosis-ai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192049,-0.1530294077551564,relative_legacy,gnosis-ai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192049,55.95288894978801,baseline,gnosis-ai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192049,58.496250072115615,spot_baseline,gnosis-ai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192418,6.982830382164013,spot_peer,InstitutPelFutur,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192418,6.244002553157908,peer,InstitutPelFutur,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192418,70.42932142723113,baseline,InstitutPelFutur,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192418,0.0196917289904427,relative_legacy,InstitutPelFutur,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192472,58.496250072115615,spot_baseline,bestworldbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192472,57.59489084683619,baseline,bestworldbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192472,-6.204602612145474,peer,bestworldbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192472,-5.965080957905577,spot_peer,bestworldbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192472,-0.1571484071757063,relative_legacy,bestworldbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192924,-19.975905533261173,spot_peer,acm_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192924,-18.062860746817368,peer,acm_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192924,38.95668117627256,spot_baseline,acm_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192924,-0.3136211712107731,relative_legacy,acm_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,192924,34.53689314990013,baseline,acm_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,193275,58.21126248900189,baseline,histerio,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,193275,5.017008265721063,spot_peer,histerio,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,193275,73.81192887825766,spot_baseline,histerio,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,193275,4.085145449948644,peer,histerio,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,193275,0.0001527712277028,relative_legacy,histerio,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,195286,10.26323582382534,baseline,Unwrapped80T,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,195286,0.0,relative_legacy,Unwrapped80T,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,195286,0.711317780463873,spot_peer,Unwrapped80T,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,195286,0.0994154264564605,peer,Unwrapped80T,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,204737,-33.81206266296936,spot_peer,SynapseSeer,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,204737,-14.291411080333535,peer,SynapseSeer,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,204737,8.26324440345992,baseline,SynapseSeer,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,204737,-0.222080931947566,relative_legacy,SynapseSeer,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,204737,19.66070440948177,spot_baseline,SynapseSeer,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,208405,83.53198544862643,baseline,mf-bot-4,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,208405,0.1019154942464508,relative_legacy,mf-bot-4,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,208405,12.895769744917324,spot_peer,mf-bot-4,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,208405,12.644558787816289,peer,mf-bot-4,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,218666,31.36953166807238,baseline,GreeneiBot2,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,218666,-0.4173438026664425,relative_legacy,GreeneiBot2,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,218666,-25.11580237405213,peer,GreeneiBot2,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,218666,31.96179342001613,spot_baseline,GreeneiBot2,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,218666,-24.991581457311963,spot_peer,GreeneiBot2,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,218945,6.982830382164013,spot_peer,SeidrBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,218945,76.55347463629771,spot_baseline,SeidrBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,218945,74.87278492683959,baseline,SeidrBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,218945,0.0196917289904427,relative_legacy,SeidrBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,218945,6.657784980931527,peer,SeidrBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,219886,15.36538389399625,peer,SaraBase,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,219886,15.925674438696367,spot_peer,SaraBase,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,219886,0.1407020621889872,relative_legacy,SaraBase,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,219886,86.37907143769819,baseline,SaraBase,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,219886,89.02521151570686,spot_baseline,SaraBase,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,220077,58.47183199128367,baseline,mmBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,220077,-5.965080957905577,spot_peer,mmBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,220077,-0.1576355852908928,relative_legacy,mmBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,220077,-6.247816820957664,peer,mmBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,221727,6.982830382164013,spot_peer,mf-bot-5,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,221727,75.23338003213802,baseline,mf-bot-5,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,221727,6.708895489922112,peer,mf-bot-5,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,221727,0.0203100353596551,relative_legacy,mf-bot-5,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,222631,3.9873341740158974,baseline,Grizeu_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,222631,-0.0063467027304267,relative_legacy,Grizeu_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,222631,-5.965080957905577,spot_peer,Grizeu_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,222631,-0.405257343741811,peer,Grizeu_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,227188,0.2965904133884692,peer,ProfessorSP,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,227188,67.80719051126377,spot_baseline,ProfessorSP,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,227188,0.711317780463873,spot_peer,ProfessorSP,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,227188,-0.0413097555756721,relative_legacy,ProfessorSP,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30725,"Will the United States have 100.0 million or more residents living in drought on December 31, 2024?",2024-12-11 14:32:17.544561+00,227188,45.16276836273002,baseline,ProfessorSP,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30952 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,182315,13.600471073965306,spot_peer,RyansAGI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,182315,81.70212465093117,baseline,RyansAGI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,182315,0.1088667429911734,relative_legacy,RyansAGI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,182315,12.476842219123116,peer,RyansAGI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,182315,92.5999418556223,spot_baseline,RyansAGI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,185699,42.22330006830478,spot_baseline,MWG,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,185699,-22.014114798893363,peer,MWG,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,185699,-22.52203984426656,spot_peer,MWG,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,185699,41.455011168774405,baseline,MWG,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,185699,-0.3778069503582641,relative_legacy,MWG,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,187708,4.262167287665,spot_peer,twsummerbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,187708,2.04604029660749,peer,twsummerbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,187708,37.02950653046682,baseline,twsummerbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,187708,-0.0017563533259735,relative_legacy,twsummerbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,187708,79.57669477823923,spot_baseline,twsummerbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,188107,86.1293729168408,spot_baseline,Cassie,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,188107,8.960757332722027,spot_peer,Cassie,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,188107,0.032602122426855,relative_legacy,Cassie,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,188107,4.941816198346133,peer,Cassie,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,188107,50.368392884408046,baseline,Cassie,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,189585,2.4313648054464587,peer,mf-bot-1,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,189585,-0.0411817969182118,relative_legacy,mf-bot-1,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,189585,2.094370890148975,spot_peer,mf-bot-1,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,189585,75.60149496859493,baseline,mf-bot-1,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,189588,84.79969065549501,spot_baseline,mf-bot-3,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,189588,8.007310252902299,spot_peer,mf-bot-3,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,189588,8.34867918468409,peer,mf-bot-3,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,189588,83.64344457467283,baseline,mf-bot-3,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,189588,0.0401907431901939,relative_legacy,mf-bot-3,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,189869,-0.2351313956055979,relative_legacy,VeritasAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,189869,-17.99073405201904,spot_peer,VeritasAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,189869,-13.412267644177088,peer,VeritasAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,189869,36.86693581702031,baseline,VeritasAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,190710,86.39384504239716,spot_baseline,Bot_Pepa,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,190710,9.150396754962808,spot_peer,Bot_Pepa,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,190710,0.0542208360077954,relative_legacy,Bot_Pepa,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,190710,9.17373711994993,peer,Bot_Pepa,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,190710,81.53321506430942,baseline,Bot_Pepa,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,190772,-3.9765328658998,peer,Jay_Bailey_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,190772,-5.478395043295309,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,190772,-0.1064408558144668,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,190772,51.91728686761703,baseline,Jay_Bailey_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,190772,65.99245584023782,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191026,61.52488636628452,spot_baseline,manticAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191026,-0.4523350046710206,peer,manticAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191026,-8.681860406908852,spot_peer,manticAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191026,-0.0097903633395541,relative_legacy,manticAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191026,3.213852178085736,baseline,manticAI,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191046,-1.1916335349552982,peer,archipelago,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191046,-0.0351807665634895,relative_legacy,archipelago,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191046,19.63677184567135,baseline,archipelago,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191046,-4.177141711551164,spot_peer,archipelago,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191284,2.094370890148975,spot_peer,000_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191284,-0.0395272657011138,relative_legacy,000_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191284,2.5174919669096325,peer,000_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191284,73.58046031186944,baseline,000_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191471,0.0366082822694256,relative_legacy,HSeldon,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191471,57.901145208672254,baseline,HSeldon,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191471,5.732908530991201,peer,HSeldon,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191471,8.007310252902299,spot_peer,HSeldon,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191471,84.79969065549501,spot_baseline,HSeldon,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191935,87.97057662822883,spot_baseline,pgodzinai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191935,10.280990258292832,spot_peer,pgodzinai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191935,0.0703669261836628,relative_legacy,pgodzinai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191935,10.503712912938171,peer,pgodzinai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191935,84.98999728009835,baseline,pgodzinai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191975,-0.0875537682500179,relative_legacy,jkraybill_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191975,-3.823199621200025,peer,jkraybill_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191975,36.67816451419501,baseline,jkraybill_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191975,-6.884680432657029,spot_peer,jkraybill_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,191975,64.0312429148413,spot_baseline,jkraybill_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192049,-73.69655941662063,spot_baseline,gnosis-ai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192049,-105.64223685069528,spot_peer,gnosis-ai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192049,-70.72141045469866,baseline,gnosis-ai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192049,-102.03804136228143,peer,gnosis-ai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192049,-1.4812931138884184,relative_legacy,gnosis-ai,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192418,85.21027029511637,baseline,InstitutPelFutur,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192418,0.1113292073885347,relative_legacy,InstitutPelFutur,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192418,13.600471073965306,spot_peer,InstitutPelFutur,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192418,13.041916381388756,peer,InstitutPelFutur,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192472,2.094370890148975,spot_peer,bestworldbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192472,-0.0410738773484399,relative_legacy,bestworldbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192472,75.4417426459589,baseline,bestworldbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192472,2.4411862966676114,peer,bestworldbot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192924,-0.0454212591696399,relative_legacy,acm_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192924,1.3725102428055211,peer,acm_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192924,1.1161293133867094,spot_peer,acm_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192924,66.86530477228035,baseline,acm_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,192924,75.1892138404309,spot_baseline,acm_bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,193275,80.07446239367776,spot_baseline,histerio,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,193275,78.36557340800566,baseline,histerio,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,193275,6.13407744970399,peer,histerio,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,193275,4.619090962715257,spot_peer,histerio,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,193275,0.0101939838613809,relative_legacy,histerio,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,195286,12.902403639569828,baseline,Unwrapped80T,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,195286,1.2108792478650894,peer,Unwrapped80T,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,195286,0.0068502558232054,relative_legacy,Unwrapped80T,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,195286,8.007310252902299,spot_peer,Unwrapped80T,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,195286,84.79969065549501,spot_baseline,Unwrapped80T,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,204737,91.07326619029126,spot_baseline,SynapseSeer,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,204737,5.32777978534487,peer,SynapseSeer,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,204737,38.44539841072794,baseline,SynapseSeer,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,204737,0.0467749321744517,relative_legacy,SynapseSeer,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,204737,12.505770108737329,spot_peer,SynapseSeer,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,208405,13.600471073965306,spot_peer,mf-bot-4,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,208405,13.925820527364596,peer,mf-bot-4,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,208405,91.20665677164878,baseline,mf-bot-4,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,208405,0.1170123955613881,relative_legacy,mf-bot-4,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,208405,92.5999418556223,spot_baseline,mf-bot-4,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,218666,86.39384504239716,spot_baseline,GreeneiBot2,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,218666,9.150396754962808,spot_peer,GreeneiBot2,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,218666,85.00271704063483,baseline,GreeneiBot2,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,218666,9.481840110309976,peer,GreeneiBot2,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,218666,0.0558703366918904,relative_legacy,GreeneiBot2,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,218945,5.441115633583467,peer,SeidrBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,218945,0.0003543814767063,relative_legacy,SeidrBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,218945,5.093081601175084,spot_peer,SeidrBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,218945,79.00070356703517,baseline,SeidrBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,218945,80.73549220576041,spot_baseline,SeidrBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,219886,81.6476831604105,spot_baseline,SaraBase,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,219886,5.7471670373971335,spot_peer,SaraBase,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,219886,6.093097958853467,peer,SaraBase,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,219886,0.0092802857148551,relative_legacy,SaraBase,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,219886,80.11797918414507,baseline,SaraBase,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,220077,8.007310252902299,spot_peer,mmBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,220077,84.78052257767854,baseline,mmBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,220077,8.353429204687918,peer,mmBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,220077,0.040224517787211,relative_legacy,mmBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,220077,84.79969065549501,spot_baseline,mmBot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,221727,92.5999418556223,spot_baseline,mf-bot-5,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,221727,13.600471073965306,spot_peer,mf-bot-5,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,221727,91.00136541783267,baseline,mf-bot-5,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,221727,13.907095408215172,peer,mf-bot-5,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,221727,0.1168363558368175,relative_legacy,mf-bot-5,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,222631,0.3852354136611458,peer,Grizeu_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,222631,5.682532061310019,spot_peer,Grizeu_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,222631,0.0006740195454891,relative_legacy,Grizeu_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,222631,5.572180499637159,baseline,Grizeu_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,222631,81.55754288625727,spot_baseline,Grizeu_Bot,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,227188,76.55347463629771,spot_baseline,ProfessorSP,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,227188,2.094370890148975,spot_peer,ProfessorSP,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,227188,1.6195479366302596,peer,ProfessorSP,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,227188,51.021697425099454,baseline,ProfessorSP,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30726,"Will the Grouse Mountain ski resort be listed as Open by On the Snow's Ski Report on December 20, 2024?",2024-12-11 14:32:17.557641+00,227188,-0.0191223642380245,relative_legacy,ProfessorSP,True,yes,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,2024-12-12 15:30:00+00,30953 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,185690,-70.29266185365702,spot_baseline,annabot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,185690,-0.1622618468980025,relative_legacy,annabot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,185690,30.027748067220276,peer,annabot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,185690,21.98515094061053,baseline,annabot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,185690,-80.2051555151314,spot_peer,annabot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,187708,64.37040415766621,spot_peer,twsummerbot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,187708,0.1806646710868526,relative_legacy,twsummerbot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,187708,61.139665121613504,spot_baseline,twsummerbot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,187708,20.904384791326777,peer,twsummerbot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,187708,20.652655596167676,baseline,twsummerbot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,189869,59.66953485615311,spot_baseline,VeritasAI,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,189869,62.75326086565977,spot_peer,VeritasAI,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,189869,-0.7628357801424619,relative_legacy,VeritasAI,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,189869,0.9773530888263656,peer,VeritasAI,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,189869,-1.331930009255995,baseline,VeritasAI,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,190710,10.16890132080131,baseline,Bot_Pepa,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,190710,-0.4564200196424419,relative_legacy,Bot_Pepa,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,190710,12.649048368192648,spot_peer,Bot_Pepa,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,190710,14.87334871957214,peer,Bot_Pepa,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,190710,14.120250767546636,spot_baseline,Bot_Pepa,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,191026,2.8092712466277154,peer,manticAI,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,191026,22.104384936240088,spot_baseline,manticAI,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,191026,21.431595953755444,spot_peer,manticAI,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,191026,3.694072764655364,baseline,manticAI,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,191026,-0.0985587072393108,relative_legacy,manticAI,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,191935,14.12025076754708,spot_baseline,pgodzinai,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,191935,12.649048368193132,spot_peer,pgodzinai,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,191935,-0.4437997721129219,relative_legacy,pgodzinai,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,191935,12.745116629156216,baseline,pgodzinai,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,191935,20.2186753717063,peer,pgodzinai,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,191975,82.75848853322888,spot_baseline,jkraybill_bot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,191975,40.35295639748284,baseline,jkraybill_bot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,191975,44.89721987900906,peer,jkraybill_bot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,191975,0.581105556811146,relative_legacy,jkraybill_bot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,191975,88.15110991044313,spot_peer,jkraybill_bot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,192418,-124.02081737014738,spot_peer,InstitutPelFutur,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,192418,-3.8432067293449874,relative_legacy,InstitutPelFutur,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,192418,-111.41902562135633,peer,InstitutPelFutur,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,192418,-110.12508172185338,spot_baseline,InstitutPelFutur,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,192418,-106.68350021553177,baseline,InstitutPelFutur,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,192472,-0.9146724605110976,relative_legacy,bestworldbot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,192472,-9.651532577756395,spot_peer,bestworldbot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,192472,7.603402308099485,peer,bestworldbot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,192472,-6.132494623539641,baseline,bestworldbot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,192472,-6.153004637861582,spot_baseline,bestworldbot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,218666,62.49945187428288,spot_baseline,GreeneiBot2,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,218666,65.86616958560252,spot_peer,GreeneiBot2,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,218666,72.97138561750691,peer,GreeneiBot2,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,218666,0.840885149073389,relative_legacy,GreeneiBot2,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,218666,57.82095054831838,baseline,GreeneiBot2,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,220077,-113.99313174647794,spot_peer,mmBot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,220077,-101.00900388215388,spot_baseline,mmBot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,220077,-3.642514836536056,relative_legacy,mmBot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,220077,-103.86376346853862,peer,mmBot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30734,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 00:27:53.424008+00,220077,-100.90704027431876,baseline,mmBot,True,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,30964 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,182315,-136.864646979603,peer,RyansAGI,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,182315,-153.5677675585614,spot_peer,RyansAGI,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,182315,-2.17669377312423,relative_legacy,RyansAGI,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,182315,-194.3416471633633,spot_baseline,RyansAGI,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,182315,-171.3094724864946,baseline,RyansAGI,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,185699,35.61438102252753,spot_baseline,MWG,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,185699,9.845944046318568,peer,MWG,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,185699,34.2545918246715,baseline,MWG,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,185699,11.321928224004315,spot_peer,MWG,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,185699,-0.1574488606782177,relative_legacy,MWG,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,187708,-13.02746492836224,peer,twsummerbot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,187708,-0.3683107584583792,relative_legacy,twsummerbot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,187708,-7.576133108492684,baseline,twsummerbot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,187708,-24.199207463482207,spot_peer,twsummerbot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,187708,-13.92357973711722,spot_baseline,twsummerbot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,188107,0.1100000629184545,relative_legacy,Cassie,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,188107,29.155510689644093,peer,Cassie,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,188107,28.872431640889506,spot_peer,Cassie,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,188107,60.70201390715194,baseline,Cassie,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,188107,60.09040445901777,spot_baseline,Cassie,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,189585,32.87108800919389,peer,mf-bot-1,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,189585,0.1595462991183893,relative_legacy,mf-bot-1,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,189585,34.40574387719841,spot_peer,mf-bot-1,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,189585,66.98329013005758,baseline,mf-bot-1,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,189588,-7.317733893201461,baseline,mf-bot-3,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,189588,-7.400058144377692,spot_baseline,mf-bot-3,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,189588,-19.521524084865675,spot_peer,mf-bot-3,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,189588,-0.5826594805659339,relative_legacy,mf-bot-3,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,189588,-21.00792474700051,peer,mf-bot-3,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,189869,34.40574387719841,spot_peer,VeritasAI,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,189869,0.1492162653504367,relative_legacy,VeritasAI,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,189869,31.9405770460408,peer,VeritasAI,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,189869,64.50931929737362,baseline,VeritasAI,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,190710,-51.45731728297583,spot_baseline,Bot_Pepa,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,190710,-0.9777436802170536,relative_legacy,Bot_Pepa,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,190710,-51.112729210850006,spot_peer,Bot_Pepa,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,190710,-48.559465301800415,baseline,Bot_Pepa,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,190710,-49.65709894550303,peer,Bot_Pepa,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,190772,0.0684551284027325,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,190772,48.34892376511201,baseline,Jay_Bailey_Bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,190772,30.451825309591744,spot_peer,Jay_Bailey_Bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,190772,62.29303509201767,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,190772,23.251171702021317,peer,Jay_Bailey_Bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191026,0.0,relative_legacy,manticAI,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191026,2.086967460692503,baseline,manticAI,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191026,57.78273372843093,spot_baseline,manticAI,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191026,27.217719095475385,spot_peer,manticAI,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191026,0.9830357693612805,peer,manticAI,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191046,-20.233541913034248,peer,archipelago,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191046,-85.92020196476858,spot_peer,archipelago,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191046,-23.955756704840397,baseline,archipelago,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191046,-100.0,spot_baseline,archipelago,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191046,-0.3600245293827154,relative_legacy,archipelago,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191284,52.18335666271488,spot_peer,000_bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191284,72.09836611858023,baseline,000_bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191284,0.3047614251678611,relative_legacy,000_bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191284,40.33026339417324,peer,000_bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191471,18.93603055655649,peer,HSeldon,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191471,58.496250072115615,spot_baseline,HSeldon,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191471,39.89823688340736,baseline,HSeldon,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191471,27.72934513882898,spot_peer,HSeldon,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191471,0.0304588364167181,relative_legacy,HSeldon,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191935,0.2794895670703548,relative_legacy,pgodzinai,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191935,79.11173543486518,baseline,pgodzinai,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191935,79.90873060740036,spot_baseline,pgodzinai,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191935,43.08313877175381,spot_peer,pgodzinai,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,191935,41.5936861200786,peer,pgodzinai,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192049,46.49112469047973,baseline,gnosis-ai,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192049,20.592151536730547,spot_peer,gnosis-ai,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192049,-0.0336297282213724,relative_legacy,gnosis-ai,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192049,18.775747908732704,peer,gnosis-ai,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192418,-0.136735233330137,relative_legacy,InstitutPelFutur,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192418,12.925809589793817,spot_peer,InstitutPelFutur,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192418,11.34827672698695,peer,InstitutPelFutur,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192418,37.45502660121596,baseline,InstitutPelFutur,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192472,40.67725647889856,spot_peer,bestworldbot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192472,74.9277521283212,baseline,bestworldbot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192472,38.89131132474249,peer,bestworldbot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192472,0.2428690627029026,relative_legacy,bestworldbot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192924,0.0092208375565535,relative_legacy,acm_bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192924,24.222288068930915,spot_peer,acm_bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192924,21.05709665927699,peer,acm_bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192924,53.60529002402098,spot_baseline,acm_bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,192924,47.56645242773081,baseline,acm_bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,193275,13.487805434311143,spot_baseline,histerio,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,193275,-0.3691466357270251,relative_legacy,histerio,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,193275,12.62897495605104,baseline,histerio,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,193275,-4.543906415049529,spot_peer,histerio,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,193275,-5.568471894202227,peer,histerio,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,195286,15.281606232815763,peer,Unwrapped80T,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,195286,-0.0374309492838691,relative_legacy,Unwrapped80T,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,195286,20.592151536730547,spot_peer,Unwrapped80T,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,195286,36.87333036209065,baseline,Unwrapped80T,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,204737,13.288031191189722,peer,SynapseSeer,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,204737,31.12139577569012,spot_peer,SynapseSeer,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,204737,26.547739477096965,baseline,SynapseSeer,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,204737,0.0395280007961241,relative_legacy,SynapseSeer,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,204737,63.22682154995129,spot_baseline,SynapseSeer,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,208405,37.85116232537298,spot_baseline,mf-bot-4,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,208405,11.422994627645238,peer,mf-bot-4,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,208405,12.925809589793817,spot_peer,mf-bot-4,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,208405,-0.1359922843328859,relative_legacy,mf-bot-4,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,208405,37.29271723229675,baseline,mf-bot-4,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,215725,67.80719051126377,spot_baseline,estr.ai,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,215725,0.0915221499223148,relative_legacy,estr.ai,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,215725,23.01278055228529,peer,estr.ai,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,215725,45.08232590277637,baseline,estr.ai,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,215725,34.40574387719841,spot_peer,estr.ai,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,218666,18.803375973620785,spot_peer,GreeneiBot2,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,218666,-0.0578380740612168,relative_legacy,GreeneiBot2,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,218666,16.542315816883086,peer,GreeneiBot2,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,218666,46.04804700400107,spot_baseline,GreeneiBot2,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,218666,42.20373960199307,baseline,GreeneiBot2,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,218945,-73.69655941662059,spot_baseline,SeidrBot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,218945,-66.42282216829143,peer,SeidrBot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,218945,-1.2112928296137464,relative_legacy,SeidrBot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,218945,-67.05935126194566,spot_peer,SeidrBot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,218945,-71.04597540790576,baseline,SeidrBot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,219886,34.4057438771984,spot_peer,SaraBase,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,219886,0.1454582985437521,relative_legacy,SaraBase,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,219886,31.518350516043128,peer,SaraBase,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,219886,67.80719051126376,spot_baseline,SaraBase,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,219886,63.50866327402259,baseline,SaraBase,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,220077,58.496250072115615,spot_baseline,mmBot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,220077,0.0675004036541152,relative_legacy,mmBot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,220077,27.72934513882898,spot_peer,mmBot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,220077,26.184166521438584,peer,mmBot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,220077,58.45091723936408,baseline,mmBot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,221727,-50.52235265047095,baseline,mf-bot-5,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,221727,-1.0126564458540523,relative_legacy,mf-bot-5,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,221727,-51.112729210850006,spot_peer,mf-bot-5,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,221727,-52.13493660759266,peer,mf-bot-5,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,222631,1.244317927116848,peer,Grizeu_Bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,222631,27.72934513882898,spot_peer,Grizeu_Bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,222631,0.0002577042129818,relative_legacy,Grizeu_Bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,222631,2.6075844776930666,baseline,Grizeu_Bot,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,227188,-1.5136843727848406,relative_legacy,ProfessorSP,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,227188,-92.55739515495571,peer,ProfessorSP,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,227188,-115.44983034884712,baseline,ProfessorSP,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,227188,-173.6965594166206,spot_baseline,ProfessorSP,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30740,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-12 14:48:37.468633+00,227188,-138.7642320095262,spot_peer,ProfessorSP,True,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30978 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,182315,78.9883494800123,baseline,RyansAGI,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,182315,20.918202613021865,peer,RyansAGI,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,182315,23.31213530167014,spot_peer,RyansAGI,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,182315,0.2540064488790969,relative_legacy,RyansAGI,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,182315,89.53026213333067,spot_baseline,RyansAGI,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,185699,33.34237337251918,spot_baseline,MWG,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,185699,32.517601592028285,baseline,MWG,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,185699,-16.284989193114132,peer,MWG,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,185699,-16.932557263707945,spot_peer,MWG,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,185699,-0.2604063938000875,relative_legacy,MWG,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,187708,51.60151470036647,spot_baseline,twsummerbot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,187708,-3.8544091885035816,spot_peer,twsummerbot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,187708,28.649959501015523,baseline,twsummerbot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,187708,-0.0550429874845112,relative_legacy,twsummerbot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,187708,-2.459852839452166,peer,twsummerbot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,188107,-35.43794733170439,peer,Cassie,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,188107,3.687572211348448,baseline,Cassie,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,188107,-28.64318807876494,spot_peer,Cassie,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,188107,-0.5262203726944209,relative_legacy,Cassie,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,188107,16.992500144231236,spot_baseline,Cassie,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,189585,0.1622597206015437,relative_legacy,mf-bot-1,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,189585,14.312648743793414,peer,mf-bot-1,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,189585,76.55347463629771,spot_baseline,mf-bot-1,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,189585,75.61667716798182,baseline,mf-bot-1,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,189585,14.017484179833058,spot_peer,mf-bot-1,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,189588,-0.2197428482403052,relative_legacy,mf-bot-3,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,189588,37.35158190493676,baseline,mf-bot-3,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,189588,-13.342592994325344,peer,mf-bot-3,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,189588,-13.703127768283808,spot_peer,mf-bot-3,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,189869,0.0734574782207532,relative_legacy,VeritasAI,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,189869,7.887195262498422,peer,VeritasAI,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,189869,7.752939925468127,spot_peer,VeritasAI,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,189869,64.51035502476924,baseline,VeritasAI,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,190710,0.2020904755688871,relative_legacy,Bot_Pepa,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,190710,17.601658505248363,spot_peer,Bot_Pepa,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,190710,81.55754288625727,spot_baseline,Bot_Pepa,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,190710,17.20497173988851,peer,Bot_Pepa,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,190710,77.02418324345554,baseline,Bot_Pepa,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,190772,40.05379295837288,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,190772,-12.125488981435671,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,190772,-0.1713062414383551,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,190772,-9.61110149315303,peer,Jay_Bailey_Bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,190772,31.3854473006719,baseline,Jay_Bailey_Bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191026,-15.065451326128972,spot_peer,manticAI,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191026,1.2986303815260387,baseline,manticAI,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191026,-0.544225810106082,peer,manticAI,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191026,-0.0056542768965845,relative_legacy,manticAI,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191026,35.94914544699612,spot_baseline,manticAI,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191046,7.752939925468127,spot_peer,archipelago,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191046,67.80719051126377,spot_baseline,archipelago,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191046,1.6649569611714008,peer,archipelago,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191046,0.0066582529434756,relative_legacy,archipelago,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191046,16.265309896111276,baseline,archipelago,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191284,92.5999418556223,spot_baseline,000_bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191284,25.51079980788957,spot_peer,000_bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191284,0.238289208950737,relative_legacy,000_bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191284,19.880976355186256,peer,000_bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191284,72.09767419115065,baseline,000_bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191471,73.11832415721999,spot_baseline,HSeldon,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191471,11.557050481482133,spot_peer,HSeldon,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191471,0.0713192822931532,relative_legacy,HSeldon,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191471,7.708530685714738,peer,HSeldon,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191471,49.90861583920554,baseline,HSeldon,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191935,0.0399902019250836,relative_legacy,pgodzinai,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191935,64.15460290875237,spot_baseline,pgodzinai,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191935,5.4630271465925935,peer,pgodzinai,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191935,63.61288360551029,baseline,pgodzinai,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191935,5.1367664337581616,spot_peer,pgodzinai,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191975,-0.6682905854257138,relative_legacy,jkraybill_bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191975,-10.469737866669323,spot_baseline,jkraybill_bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191975,-48.31307335619088,spot_peer,jkraybill_bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191975,-45.631485989747375,peer,jkraybill_bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,191975,-9.909554467601282,baseline,jkraybill_bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192049,-0.1105691730821149,relative_legacy,gnosis-ai,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192049,48.54268271702416,spot_baseline,gnosis-ai,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192049,-6.045303979065894,spot_peer,gnosis-ai,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192049,-5.410853849729308,peer,gnosis-ai,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192049,46.56445943820393,baseline,gnosis-ai,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192418,1.0839594079191095,spot_peer,InstitutPelFutur,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192418,-0.0160632297965117,relative_legacy,InstitutPelFutur,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192418,57.89520896841259,baseline,InstitutPelFutur,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192418,1.397230017767661,peer,InstitutPelFutur,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192472,17.601658505248363,spot_peer,bestworldbot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192472,0.2103658642602974,relative_legacy,bestworldbot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192472,17.76750255145532,peer,bestworldbot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192472,79.8989050531707,baseline,bestworldbot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192472,81.55754288625727,spot_baseline,bestworldbot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192924,-0.0985886215808754,relative_legacy,acm_bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192924,44.05780920101642,baseline,acm_bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192924,-4.5056032524156695,peer,acm_bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192924,49.56951626240687,spot_baseline,acm_bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,192924,-5.309832309616619,spot_peer,acm_bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,193275,50.18212654209104,spot_baseline,histerio,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,193275,-0.0929102153079756,relative_legacy,histerio,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,193275,-4.8710489185333365,spot_peer,histerio,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,193275,48.31768424500413,baseline,histerio,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,193275,-4.127971153648193,peer,histerio,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,195286,14.017484179833058,spot_peer,Unwrapped80T,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,195286,58.25849378563893,baseline,Unwrapped80T,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,195286,10.604480922490444,peer,Unwrapped80T,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,195286,0.1089314529892708,relative_legacy,Unwrapped80T,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,204737,0.1178578002818863,relative_legacy,SynapseSeer,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,204737,25.51079980788957,spot_peer,SynapseSeer,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,204737,39.05174906668881,baseline,SynapseSeer,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,204737,10.451570161738532,peer,SynapseSeer,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,204737,92.5999418556223,spot_baseline,SynapseSeer,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,208405,19.923853609961075,spot_peer,mf-bot-4,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,208405,0.242800865726049,relative_legacy,mf-bot-4,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,208405,83.5055482810079,baseline,mf-bot-4,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,208405,20.13168403728088,peer,mf-bot-4,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,215725,76.55347463629771,spot_baseline,estr.ai,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,215725,0.0934141120218265,relative_legacy,estr.ai,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,215725,9.137005973836814,peer,estr.ai,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,215725,14.017484179833058,spot_peer,estr.ai,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,215725,50.92832258176988,baseline,estr.ai,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,218666,51.39959793670128,spot_baseline,GreeneiBot2,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,218666,47.21071082299645,baseline,GreeneiBot2,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,218666,-3.3300006040370294,peer,GreeneiBot2,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,218666,-0.082322699436001,relative_legacy,GreeneiBot2,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,218666,-3.999032491793967,spot_peer,GreeneiBot2,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,218945,-0.3140655959116894,relative_legacy,SeidrBot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,218945,-21.116664603697423,spot_peer,SeidrBot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,218945,26.5265377978822,baseline,SeidrBot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,218945,-20.11774811330579,peer,SeidrBot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,218945,27.500704749986976,spot_baseline,SeidrBot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,219886,68.14965885903949,baseline,SaraBase,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,219886,69.11767968121245,spot_baseline,SaraBase,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,219886,8.691580527882525,spot_peer,SaraBase,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,219886,0.0887098994851202,relative_legacy,SaraBase,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,219886,8.98589201374111,peer,SaraBase,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,220077,1.3900491002983268,peer,mmBot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,220077,1.0839594079191095,spot_peer,mmBot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,220077,58.44061487897645,baseline,mmBot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,220077,-0.0161155370361307,relative_legacy,mmBot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,221727,1.4202735703375795,peer,mf-bot-5,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,221727,1.0839594079191095,spot_peer,mf-bot-5,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,221727,57.41247988602806,baseline,mf-bot-5,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,221727,-0.0156594906734684,relative_legacy,mf-bot-5,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,222631,-0.0067501141037662,relative_legacy,Grizeu_Bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,222631,1.6942241957910145,baseline,Grizeu_Bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,222631,-0.6178275680702231,peer,Grizeu_Bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,222631,-13.703127768283808,spot_peer,Grizeu_Bot,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,227188,26.303440583379377,spot_baseline,ProfessorSP,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,227188,-21.974207561215916,spot_peer,ProfessorSP,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,227188,17.508482122894677,baseline,ProfessorSP,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,227188,-0.2409744699966978,relative_legacy,ProfessorSP,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30741,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-12 14:48:37.506916+00,227188,-14.903997664005184,peer,ProfessorSP,True,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,2024-12-13 15:30:00+00,30979 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,185690,-68.1928693180605,spot_peer,annabot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,185690,-101.0495339730308,spot_baseline,annabot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,185690,-10.4139585437022,baseline,annabot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,185690,-0.3527530254922151,relative_legacy,annabot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,185690,-7.027817805116433,peer,annabot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,187708,31.33090296952379,baseline,twsummerbot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,187708,0.6513862185465111,relative_legacy,twsummerbot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,187708,52.68863453599904,peer,twsummerbot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,187708,119.77827815511787,spot_peer,twsummerbot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,187708,72.46229446374926,spot_baseline,twsummerbot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,188107,-1.920848013225837,spot_peer,Cassie,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,188107,-39.87536046087572,spot_baseline,Cassie,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,188107,-0.9295304110001852,relative_legacy,Cassie,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,188107,-23.71851589029843,baseline,Cassie,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,188107,1.3662608041280444,peer,Cassie,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,189869,-98.70405130110044,spot_baseline,VeritasAI,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,189869,-43.31202695430078,baseline,VeritasAI,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,189869,-28.68765984995921,peer,VeritasAI,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,189869,-1.5007085238883835,relative_legacy,VeritasAI,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,189869,-65.65192975680262,spot_peer,VeritasAI,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,190710,-67.73054962725595,peer,Bot_Pepa,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,190710,-3.0194633928959926,relative_legacy,Bot_Pepa,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,190710,-104.48791306206328,baseline,Bot_Pepa,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,190710,-82.6110738800741,spot_peer,Bot_Pepa,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,190710,-114.358645876428,spot_baseline,Bot_Pepa,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,191026,7.183681101041021,baseline,manticAI,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,191026,92.35124559037595,spot_peer,manticAI,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,191026,47.14503363475669,spot_baseline,manticAI,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,191026,0.1175806320798806,relative_legacy,manticAI,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,191026,13.821574570057567,peer,manticAI,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,191935,-3.917857963911024,relative_legacy,pgodzinai,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,191935,-137.24705942251583,spot_peer,pgodzinai,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,191935,-104.53166906465913,peer,pgodzinai,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,191935,-132.74474503315022,baseline,pgodzinai,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,191935,-164.79186330022034,spot_baseline,pgodzinai,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,191975,13.58830411931896,spot_baseline,jkraybill_bot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,191975,-0.0506540346751871,relative_legacy,jkraybill_bot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,191975,55.99812194865174,spot_peer,jkraybill_bot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,191975,7.008387919035207,baseline,jkraybill_bot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,191975,30.44976612476312,peer,jkraybill_bot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,192418,16.425203348601837,spot_baseline,InstitutPelFutur,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,192418,0.4314469824720112,relative_legacy,InstitutPelFutur,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,192418,15.061304019875896,baseline,InstitutPelFutur,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,192418,59.07142944704152,spot_peer,InstitutPelFutur,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,192418,68.73965449137383,peer,InstitutPelFutur,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,192472,0.5013627269588568,baseline,bestworldbot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,192472,0.1140946409752853,relative_legacy,bestworldbot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,192472,58.90689847573525,peer,bestworldbot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,192472,0.502516292675571,spot_baseline,bestworldbot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,192472,41.82185180312139,spot_peer,bestworldbot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,216863,-83.79321496281186,baseline,tombot61,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,216863,-50.06914649899823,spot_peer,tombot61,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,216863,-2.3179850684730616,relative_legacy,tombot61,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,216863,-40.04553703641138,peer,tombot61,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,216863,-84.31994367851178,spot_baseline,tombot61,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,218666,56.35058819949039,spot_baseline,GreeneiBot2,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,218666,38.91165772640495,baseline,GreeneiBot2,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,218666,0.8664854311238521,relative_legacy,GreeneiBot2,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,218666,77.1322532350231,peer,GreeneiBot2,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,218666,102.3239297021708,spot_peer,GreeneiBot2,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,220077,-96.66818435960444,baseline,mmBot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,220077,-65.65192975680262,spot_peer,mmBot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,220077,-2.696391302432352,relative_legacy,mmBot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,220077,-98.70405130110044,spot_baseline,mmBot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30766,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 17:48:46.149702+00,220077,-55.081808853678254,peer,mmBot,True,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31005 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,185690,8.76991934226108,peer,annabot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,185690,2.390142186707202,baseline,annabot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,185690,83.61233017759541,spot_peer,annabot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,185690,0.0600324848271547,relative_legacy,annabot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,185690,23.197403406552876,spot_baseline,annabot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,187708,39.78611043841115,spot_baseline,twsummerbot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,187708,20.54148368813681,baseline,twsummerbot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,187708,58.3583986440334,peer,twsummerbot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,187708,0.5917181102620472,relative_legacy,twsummerbot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,187708,101.85990791263951,spot_peer,twsummerbot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,189869,-86.53436673256141,spot_peer,VeritasAI,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,189869,-131.48141196631693,spot_baseline,VeritasAI,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,189869,-2.215719154899235,relative_legacy,VeritasAI,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,189869,-22.746657729452803,peer,VeritasAI,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,189869,-89.30407093877616,baseline,VeritasAI,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,190710,-86.53436673256141,spot_peer,Bot_Pepa,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,190710,-131.48141196631693,spot_baseline,Bot_Pepa,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,190710,-65.80466752644755,peer,Bot_Pepa,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,190710,-115.2864450997644,baseline,Bot_Pepa,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,190710,-3.128689478313494,relative_legacy,Bot_Pepa,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,191026,-1.48607427154121,baseline,manticAI,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,191026,-38.91111983777758,spot_baseline,manticAI,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,191026,15.292954608831906,spot_peer,manticAI,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,191026,0.5840609695835135,peer,manticAI,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,191026,-0.0420337911950961,relative_legacy,manticAI,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,191935,88.85907286773427,peer,pgodzinai,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,191935,22.47655585429794,baseline,pgodzinai,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,191935,86.71037965312192,spot_peer,pgodzinai,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,191935,0.8258050777332717,relative_legacy,pgodzinai,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,191935,26.01381202066789,spot_baseline,pgodzinai,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,191975,-5.366007423234057,baseline,jkraybill_bot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,191975,0.1336107961157122,spot_baseline,jkraybill_bot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,191975,0.1397760552783449,relative_legacy,jkraybill_bot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,191975,58.24215830611453,spot_peer,jkraybill_bot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,191975,66.63267740057283,peer,jkraybill_bot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,192418,0.6013333381802096,relative_legacy,InstitutPelFutur,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,192418,16.04369780406797,baseline,InstitutPelFutur,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,192418,75.62679384977487,peer,InstitutPelFutur,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,192418,80.25083975624587,spot_peer,InstitutPelFutur,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,192418,20.141503023507827,spot_baseline,InstitutPelFutur,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,192472,-72.13102128070358,peer,bestworldbot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,192472,-86.53436673256141,spot_peer,bestworldbot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,192472,-130.8736144578795,baseline,bestworldbot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,192472,-131.48141196631693,spot_baseline,bestworldbot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,192472,-3.405667426449075,relative_legacy,bestworldbot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,218666,-130.54410655103467,spot_baseline,GreeneiBot2,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,218666,-3.3973968000166863,relative_legacy,GreeneiBot2,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,218666,-130.16202868722175,baseline,GreeneiBot2,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,218666,-85.50333077575091,spot_peer,GreeneiBot2,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,218666,-71.93204134106915,peer,GreeneiBot2,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,220077,-80.86213944111391,spot_peer,mmBot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,220077,-3.257568056073871,relative_legacy,mmBot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,220077,-66.2165351962868,peer,mmBot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,220077,-126.32484170136466,spot_baseline,mmBot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30768,"How much rain will Houston, Texas receive in December 2024?",2024-12-12 18:51:20.707391+00,220077,-126.27136472156091,baseline,mmBot,True,3.2,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31008 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,185690,-0.0027555282050832,relative_legacy,annabot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,185690,-5.260561825247976,spot_peer,annabot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,185690,0.8909418717914432,peer,annabot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,185690,-13.30578088120804,baseline,annabot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,185690,-89.27892607143724,spot_baseline,annabot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,187708,-3.9234273067423295,baseline,twsummerbot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,187708,0.0842945945540293,relative_legacy,twsummerbot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,187708,-40.76513882322846,spot_baseline,twsummerbot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,187708,52.88253945552918,spot_peer,twsummerbot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,187708,7.235414171517493,peer,twsummerbot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,188107,17.854830290341567,peer,Cassie,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,188107,34.41230865799234,spot_peer,Cassie,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,188107,0.2394348009522734,relative_legacy,Cassie,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,188107,-20.00158559098256,baseline,Cassie,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,188107,-56.17644003693349,spot_baseline,Cassie,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,189869,-0.0552008598016412,relative_legacy,VeritasAI,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,189869,-4.5772503314600215,peer,VeritasAI,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,189869,-34.17685746752288,baseline,VeritasAI,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,189869,-29.60349469588904,spot_peer,VeritasAI,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,189869,-109.59032742893848,spot_baseline,VeritasAI,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,191026,0.0089769146733145,relative_legacy,manticAI,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,191026,-0.321702229045484,baseline,manticAI,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,191026,0.8241825563722804,peer,manticAI,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,191026,98.97705035956324,spot_peer,manticAI,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,191026,-2.3045261959506704,spot_baseline,manticAI,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,191935,14.62906255227433,spot_peer,pgodzinai,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,191935,-72.68330278608423,spot_baseline,pgodzinai,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,191935,3.714883659109193,peer,pgodzinai,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,191935,0.033643008866929,relative_legacy,pgodzinai,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,191935,-11.796165766024476,baseline,pgodzinai,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,191975,-87.24856772137092,spot_baseline,jkraybill_bot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,191975,0.0792120634679983,relative_legacy,jkraybill_bot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,191975,-69.60505396049494,baseline,jkraybill_bot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,191975,6.474486850742809,peer,jkraybill_bot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,191975,-2.827205497484962,spot_peer,jkraybill_bot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,192418,-0.0610121461004803,relative_legacy,InstitutPelFutur,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,192418,-109.59032742893848,spot_baseline,InstitutPelFutur,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,192418,-29.60349469588904,spot_peer,InstitutPelFutur,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,192418,-7.224972264885911,peer,InstitutPelFutur,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,192418,-46.32559196944121,baseline,InstitutPelFutur,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,192472,-64.35840184154692,baseline,bestworldbot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,192472,14.62906255227433,spot_peer,bestworldbot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,192472,-72.68330278608423,spot_baseline,bestworldbot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,192472,0.2864465392125195,relative_legacy,bestworldbot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,192472,26.918786586627466,peer,bestworldbot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,216863,-0.0556566361828074,relative_legacy,tombot61,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,216863,-5.299007945885815,peer,tombot61,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,216863,-109.59032742893868,spot_baseline,tombot61,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,216863,-37.30024173530346,baseline,tombot61,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,216863,-29.603494695889253,spot_peer,tombot61,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,218666,-159.1735317186034,spot_baseline,GreeneiBot2,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,218666,-89.02827747134417,spot_peer,GreeneiBot2,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,218666,-0.3022408881203813,relative_legacy,GreeneiBot2,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,218666,-23.82533245041052,peer,GreeneiBot2,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,218666,-49.89135830923493,baseline,GreeneiBot2,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,220077,-109.59032742893848,spot_baseline,mmBot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,220077,-0.231516324891892,relative_legacy,mmBot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,220077,-22.986962993860136,peer,mmBot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,220077,-109.50478161254938,baseline,mmBot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30770,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:27:02.340414+00,220077,-29.60349469588904,spot_peer,mmBot,True,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,2024-12-17 15:30:00+00,31010 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,185690,-0.5070946247705875,relative_legacy,annabot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,185690,27.316697213915784,spot_baseline,annabot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,185690,-25.665620062037373,spot_peer,annabot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,185690,-24.51060720620845,peer,annabot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,185690,23.37547209210832,baseline,annabot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,187708,2.312830960150208,peer,twsummerbot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,187708,55.4537712627234,spot_baseline,twsummerbot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,187708,16.36971162990927,baseline,twsummerbot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,187708,8.056273011254913,spot_peer,twsummerbot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,187708,-0.0289723321507897,relative_legacy,twsummerbot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,188107,38.298131075200665,baseline,Cassie,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,188107,42.1453604547475,spot_peer,Cassie,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,188107,0.1130398929307514,relative_legacy,Cassie,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,188107,17.948592427377303,peer,Cassie,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,188107,83.89722713778778,spot_baseline,Cassie,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,189869,58.42857100485895,baseline,VeritasAI,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,189869,37.10137756380574,spot_peer,VeritasAI,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,189869,0.1170112601630202,relative_legacy,VeritasAI,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,189869,24.37459843471264,peer,VeritasAI,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,189869,79.68859864249879,spot_baseline,VeritasAI,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,190710,37.10137756380574,spot_peer,Bot_Pepa,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,190710,77.00722024849551,baseline,Bot_Pepa,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,190710,32.99101492610022,peer,Bot_Pepa,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,190710,0.2411494513513243,relative_legacy,Bot_Pepa,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,190710,79.68859864249879,spot_baseline,Bot_Pepa,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,191026,27.3166972139158,spot_baseline,manticAI,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,191026,4.257918415681636,baseline,manticAI,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,191026,-4.136181773213555,peer,manticAI,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,191026,-0.0713003542269151,relative_legacy,manticAI,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,191026,-25.66562006203736,spot_peer,manticAI,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,191935,-114.13073455836413,spot_peer,pgodzinai,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,191935,-46.497352071792704,spot_baseline,pgodzinai,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,191935,-1.6193901454491435,relative_legacy,pgodzinai,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,191935,-112.27366204023367,peer,pgodzinai,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,191935,-43.23426813636148,baseline,pgodzinai,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,191975,-13.3097974650209,baseline,jkraybill_bot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,191975,-23.849571719323585,spot_baseline,jkraybill_bot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,191975,-86.98768386060549,spot_peer,jkraybill_bot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,191975,-0.7646677793143679,relative_legacy,jkraybill_bot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,191975,-49.11208139027973,peer,jkraybill_bot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,192418,39.457585473453925,peer,InstitutPelFutur,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,192418,82.55482343468324,baseline,InstitutPelFutur,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,192418,0.3237416447481627,relative_legacy,InstitutPelFutur,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,192418,85.20688953017238,spot_baseline,InstitutPelFutur,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,192418,43.71497267105317,spot_peer,InstitutPelFutur,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,192472,0.3075091322439844,relative_legacy,bestworldbot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,192472,42.42394092774378,spot_peer,bestworldbot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,192472,83.92231505073634,baseline,bestworldbot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,192472,84.1296707725568,spot_baseline,bestworldbot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,192472,38.199323610055885,peer,bestworldbot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,218666,47.22264612970255,spot_baseline,GreeneiBot2,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,218666,48.0840110689462,baseline,GreeneiBot2,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,218666,-4.807853556755068,peer,GreeneiBot2,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,218666,-0.2420833548909211,relative_legacy,GreeneiBot2,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,218666,-1.808616320419592,spot_peer,GreeneiBot2,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,220077,85.0989140727466,baseline,mmBot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,220077,39.55644013484032,peer,mmBot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,220077,0.3245405642462054,relative_legacy,mmBot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,220077,43.71497267105317,spot_peer,mmBot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30772,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:36:25.44523+00,220077,85.20688953017238,spot_baseline,mmBot,True,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,2024-12-18 15:30:00+00,31012 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,182315,67.80719051126377,spot_baseline,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,182315,10.905207746988577,peer,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,182315,-0.0185885876574007,relative_legacy,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,182315,13.122023020429342,spot_peer,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,182315,59.40367886879409,baseline,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,185699,83.18772411916731,spot_baseline,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,185699,24.163745580034664,spot_peer,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,185699,0.1107698168967701,relative_legacy,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,185699,69.38679774934774,baseline,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,185699,19.64343558397083,peer,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,187708,-0.0479280486662128,relative_legacy,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,187708,55.97365244329827,spot_baseline,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,187708,4.626697203003866,spot_peer,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,187708,2.3634712724975864,peer,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,187708,25.783937660854924,baseline,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,188107,0.0321932160979573,relative_legacy,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,188107,62.752242619388056,baseline,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,188107,14.215024758007775,peer,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,188107,17.350015310027203,spot_peer,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,188107,73.69655941662063,spot_baseline,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,189585,66.81779697686132,baseline,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,189585,13.122023020429342,spot_peer,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,189585,11.8921884546826,peer,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,189585,-0.0253822556409765,relative_legacy,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,189588,66.52166484947219,baseline,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,189588,13.122023020429342,spot_peer,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,189588,67.80719051126377,spot_baseline,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,189588,-0.0254805542746845,relative_legacy,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,189588,11.810018663777988,peer,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,189869,69.90662773734336,baseline,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,189869,23.12061909903544,peer,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,189869,30.920799630690464,spot_peer,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,189869,0.1752589508059115,relative_legacy,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,190710,-117.1896382383622,baseline,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,190710,-119.51813898854464,peer,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,190710,-1.830681118823936,relative_legacy,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,190710,-125.15387669959644,spot_baseline,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,190710,-125.40519737801104,spot_peer,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,190772,0.1058443886924007,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,190772,18.46667865858081,peer,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,190772,64.8590307304392,baseline,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,190772,24.163745580034664,spot_peer,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,190772,83.18772411916731,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191026,0.1992344487814392,relative_legacy,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191026,27.872261856587787,peer,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191026,91.49587956949212,spot_baseline,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191026,86.45990364298417,baseline,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191026,30.128190624868427,spot_peer,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191046,23.928831929022127,baseline,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191046,13.122023020429342,spot_peer,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191046,0.0,relative_legacy,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191046,4.792514076752523,peer,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191284,-32.19280948873623,spot_baseline,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191284,-44.324805183041,peer,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191284,-58.66822068042214,spot_peer,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191284,-24.064558613728835,baseline,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191284,-0.7586488551939224,relative_legacy,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191471,-64.38561897747249,spot_baseline,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191471,-81.77951706653674,spot_peer,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191471,-43.56610452435103,baseline,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191471,-55.535610642370905,peer,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191471,-0.8996456998517914,relative_legacy,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191935,20.612377255462047,spot_peer,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191935,72.74106482425569,baseline,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191935,0.0737224745791359,relative_legacy,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191935,18.551330107385315,peer,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191935,78.24085649273731,spot_baseline,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191975,-7.885393900415052,baseline,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191975,-21.30059170511011,peer,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191975,-48.249017972824426,spot_peer,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191975,-0.3747059616211018,relative_legacy,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,191975,-17.67941300130498,spot_baseline,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192049,17.58860535990415,peer,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192049,19.40100170856009,spot_peer,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192049,0.0580347688835904,relative_legacy,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192049,72.0545255352781,baseline,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192049,76.55347463629771,spot_baseline,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192418,17.097124721275858,peer,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192418,69.91153456347962,baseline,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192418,19.40100170856009,spot_peer,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192418,0.0580347688835904,relative_legacy,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192472,-29.521930238610068,spot_peer,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192472,-31.1172394504574,peer,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192472,-0.6121358604689631,relative_legacy,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192472,8.315137562630706,baseline,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192472,8.406426478847456,spot_baseline,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192924,0.0,baseline,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192924,-35.55692429430756,spot_peer,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192924,0.0,spot_baseline,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192924,-0.6117375225259086,relative_legacy,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,192924,-32.02203901124947,peer,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,193275,-5.183252962830307,peer,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,193275,42.43846715380966,spot_baseline,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,193275,36.02153516276971,baseline,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,193275,-5.090245301681792,spot_peer,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,193275,-0.2365579755634012,relative_legacy,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,195286,67.80719051126377,spot_baseline,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,195286,13.122023020429342,spot_peer,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,195286,46.438760286459,baseline,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,195286,-0.0056559614323451,relative_legacy,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,195286,8.974877805337535,peer,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,204737,-6.593647213421976,peer,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,204737,-0.1629689239768798,relative_legacy,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,204737,10.74549811435079,baseline,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,204737,26.303440583379377,spot_baseline,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,204737,-16.673620197790836,spot_peer,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,208405,76.55347463629771,spot_baseline,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,208405,74.55441419345563,baseline,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,208405,0.059729013346903,relative_legacy,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,208405,17.94258775789055,peer,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,208405,19.40100170856009,spot_peer,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,218666,68.02360938579442,baseline,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,218666,13.457392472850698,peer,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,218666,-0.0009628787941831,relative_legacy,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,218666,70.31006996041599,spot_baseline,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,218666,14.91884627651425,spot_peer,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,219886,0.1994863433180168,relative_legacy,SaraBase,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,219886,25.35305716682695,peer,SaraBase,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,219886,74.86753804271189,baseline,SaraBase,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,219886,32.64312860748156,spot_peer,SaraBase,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,219886,94.99905472668038,spot_baseline,SaraBase,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,220077,76.53798030788083,baseline,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,220077,0.0619342468974048,relative_legacy,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,220077,18.375919941805083,peer,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,220077,19.40100170856009,spot_peer,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,221727,74.32901997549271,baseline,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,221727,0.0594408330992515,relative_legacy,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,221727,19.40100170856009,spot_peer,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,221727,17.89716551332656,peer,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,221727,76.55347463629771,spot_baseline,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,222631,9.581325660024136,baseline,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,222631,0.0109467267051148,relative_legacy,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,222631,2.42820219961983,peer,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,222631,19.40100170856009,spot_peer,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,227188,76.55347463629771,spot_baseline,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,227188,50.542748564104215,baseline,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,227188,19.40100170856009,spot_peer,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,227188,0.0525736468246892,relative_legacy,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30787,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-13 13:58:11.188895+00,227188,12.847641939921251,peer,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,2024-12-14 15:30:00+00,31030 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,182315,-116.18124160331152,baseline,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,182315,-69.44675435484027,spot_peer,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,182315,-0.693276598059511,relative_legacy,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,182315,-70.09054813166604,peer,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,182315,-132.19280948873626,spot_baseline,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,185699,29.12491763262215,peer,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,185699,42.59735257444594,spot_peer,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,185699,21.03325517783313,baseline,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,185699,0.6784734688622658,relative_legacy,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,185699,23.878685958711674,spot_baseline,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,187708,63.50869349515583,spot_peer,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,187708,53.00707422250839,spot_baseline,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,187708,0.7023442645321781,relative_legacy,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,187708,30.228010907226597,peer,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,187708,27.14290426010151,baseline,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,188107,-131.36558657595808,spot_peer,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,188107,-218.44245711374276,spot_baseline,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,188107,-212.47931084606785,baseline,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,188107,-1.6544484392946257,relative_legacy,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,188107,-140.31257305814023,peer,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,189585,60.30369595360861,spot_peer,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,189585,0.939016706071932,relative_legacy,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,189585,47.881532287396304,baseline,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,189585,48.54268271702416,spot_baseline,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,189585,48.32338893102337,peer,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,189588,78.68068362920387,peer,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,189588,90.83650547646111,spot_peer,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,189588,1.3564737874944863,relative_legacy,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,189588,91.07326619029126,spot_baseline,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,189588,89.44133995219028,baseline,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,189869,57.796494966123056,baseline,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,189869,80.4127117349935,spot_peer,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,189869,1.0427392334779038,relative_legacy,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,189869,55.13417707062018,peer,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,190710,-73.83334102609106,baseline,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,190710,-39.59827459172503,peer,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,190710,-0.2751862764452902,relative_legacy,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,190710,-30.963386010047333,spot_peer,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,190710,-78.58751946471523,spot_baseline,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,190772,44.27307617710616,peer,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,190772,64.64998800315122,spot_peer,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,190772,42.71639592961215,baseline,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,190772,0.885391924003469,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,190772,54.59683691052925,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191026,69.02505849122502,spot_baseline,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191026,61.1562041008494,peer,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191026,75.00804343763157,spot_peer,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191026,1.1116407772899757,relative_legacy,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191026,65.22780174969192,baseline,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191046,-46.73620331769612,baseline,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191046,-25.349191178234214,peer,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191046,-69.44675435484027,spot_peer,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191046,-0.0874776267000435,relative_legacy,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191046,-132.19280948873626,spot_baseline,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191284,-80.18540386167156,peer,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191284,-129.83655333301795,baseline,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191284,-173.6965594166206,spot_baseline,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191284,-99.2423975730604,spot_peer,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191284,-0.8295160252271333,relative_legacy,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191471,-89.74769705612961,baseline,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191471,-0.4128470163422115,relative_legacy,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191471,-51.45515921893717,peer,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191471,-69.44675435484027,spot_peer,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191471,-132.19280948873626,spot_baseline,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191935,81.55754288625727,spot_baseline,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191935,76.08728486785094,baseline,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191935,1.2272126529123453,relative_legacy,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191935,69.02357248752308,peer,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191935,84.00514452659638,spot_peer,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191975,-0.0927787273929455,relative_legacy,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191975,-157.34668618833263,spot_baseline,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191975,-32.68319414498265,baseline,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191975,-87.50478373769221,spot_peer,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,191975,-18.28638229922016,peer,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192049,84.79969065549501,spot_baseline,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192049,80.32716902644282,baseline,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192049,86.33269031127388,spot_peer,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192049,72.10834568173263,peer,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192049,1.261532271517297,relative_legacy,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192418,-46.33545796872565,spot_peer,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192418,-52.16650774814229,peer,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192418,-0.4345373438415482,relative_legacy,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192418,-91.3965657753525,baseline,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192472,1.376697075405321,relative_legacy,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192472,91.98606013230116,baseline,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192472,91.93250965712386,spot_peer,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192472,80.53668701884793,peer,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192472,92.5999418556223,spot_baseline,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192924,24.645154821802592,peer,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192924,0.6167514520426054,relative_legacy,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192924,37.56163856310257,spot_peer,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192924,16.864203555883922,spot_baseline,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,192924,14.839194052391182,baseline,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,193275,0.884133303956046,relative_legacy,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,193275,54.399071966485,spot_baseline,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,193275,64.508012067867,spot_peer,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,193275,43.339409587695336,peer,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,193275,40.7278750105616,baseline,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,195286,-2.6914883915348464,peer,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,195286,0.2619104443545457,relative_legacy,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,195286,2.343489346011266,spot_peer,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,195286,-32.19280948873623,spot_baseline,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,195286,-22.12902421479447,baseline,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,204737,-44.45170754136912,peer,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,204737,-180.5912947883697,spot_baseline,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,204737,-0.3486885829828859,relative_legacy,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,204737,-74.81188619457969,baseline,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,204737,-104.1921448989679,spot_peer,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,208405,1.1290633247458426,relative_legacy,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,208405,74.13373304686276,spot_peer,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,208405,66.16030212738912,baseline,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,208405,61.959363391074255,peer,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,218666,80.94547046903627,baseline,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,218666,82.8631581688019,spot_baseline,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,218666,72.6878146810211,peer,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,218666,84.94244891973074,spot_peer,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,218666,1.2764720468550856,relative_legacy,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,218945,-169.088936700743,baseline,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,218945,-173.6965594166206,spot_baseline,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,218945,-1.2210679155059043,relative_legacy,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,218945,-108.8214030838496,peer,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,218945,-99.2423975730604,spot_peer,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,220077,0.3058410694012509,relative_legacy,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,220077,1.955182461891944,peer,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,220077,-15.200309344505014,spot_baseline,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,220077,-15.18478138582516,baseline,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,220077,14.542446610422394,spot_peer,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,221727,-0.0291728741154086,relative_legacy,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,221727,-49.99361533590825,baseline,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,221727,-11.48654774724288,spot_peer,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,221727,-22.278660300978014,peer,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,222631,-34.597844133357455,spot_peer,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,222631,-83.65012677171204,spot_baseline,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,222631,-4.3558386568410805,peer,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,222631,0.0205843490038628,relative_legacy,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,222631,-10.531478621541533,baseline,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,227188,-264.3856189774725,spot_baseline,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,227188,-164.34829444180636,spot_peer,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,227188,-113.13285051793164,peer,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,227188,-175.17133660639666,baseline,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30791,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-13 13:58:11.289205+00,227188,-1.272348583227613,relative_legacy,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31034 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,182315,33.34237337251918,spot_baseline,RyansAGI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,182315,29.324976006538613,baseline,RyansAGI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,182315,42.97441678136031,peer,RyansAGI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,182315,48.49216072777041,spot_peer,RyansAGI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,182315,0.4576076419142327,relative_legacy,RyansAGI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,185699,12.263942203144564,peer,MWG,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,185699,-15.200309344504996,spot_baseline,MWG,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,185699,13.598743596681665,spot_peer,MWG,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,185699,-13.624006078791387,baseline,MWG,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,185699,0.0267391948611549,relative_legacy,MWG,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,187708,-54.65998091280949,spot_peer,twsummerbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,187708,-110.15981400078066,spot_baseline,twsummerbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,187708,-27.94292077681553,peer,twsummerbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,187708,-57.68268268801,baseline,twsummerbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,187708,-0.4844579698678389,relative_legacy,twsummerbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,188107,0.2446910140227131,relative_legacy,Cassie,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,188107,7.807628991996692,baseline,Cassie,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,188107,29.414167295911625,peer,Cassie,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,188107,30.40453641654241,spot_peer,Cassie,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,188107,8.179409116364736,spot_baseline,Cassie,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,189585,25.931603840153684,baseline,mf-bot-1,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,189585,43.432439999088565,spot_peer,mf-bot-1,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,189585,43.61221610862963,peer,mf-bot-1,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,189585,0.4207971619365921,relative_legacy,mf-bot-1,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,189588,-357.74784642238734,baseline,mf-bot-3,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,189588,-235.6840977826123,peer,mf-bot-3,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,189588,-364.38561897747246,spot_baseline,mf-bot-3,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,189588,-237.4023956707702,spot_peer,mf-bot-3,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,189588,-3.4149925859583643,relative_legacy,mf-bot-3,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,189869,-0.5719403169989152,relative_legacy,VeritasAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,189869,-35.00223581944133,peer,VeritasAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,189869,-47.35691054131586,spot_peer,VeritasAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,189869,-75.49454809504526,baseline,VeritasAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,189869,-100.0,spot_baseline,VeritasAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,190710,8.406426478847456,spot_baseline,Bot_Pepa,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,190710,29.1083868024243,peer,Bot_Pepa,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,190710,7.906948187306127,baseline,Bot_Pepa,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,190710,0.2459751438947014,relative_legacy,Bot_Pepa,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,190710,30.567720877757424,spot_peer,Bot_Pepa,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,190772,-0.3171209524777713,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,190772,-64.38561897747248,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,190772,-21.756606163231694,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,190772,-16.309462645022627,peer,Jay_Bailey_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,190772,-50.44680884650576,baseline,Jay_Bailey_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191026,-176.70870171890627,spot_baseline,manticAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191026,-97.5257410003492,peer,manticAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191026,-102.49660568888858,spot_peer,manticAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191026,-1.5015623416003103,relative_legacy,manticAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191026,-166.98880428831922,baseline,manticAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191046,26.303440583379377,spot_baseline,archipelago,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191046,15.444515863010253,peer,archipelago,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191046,0.0928928115767493,relative_legacy,archipelago,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191046,9.276095250598242,baseline,archipelago,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191046,43.432439999088565,spot_peer,archipelago,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191284,43.432439999088565,spot_peer,000_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191284,19.661394271526717,baseline,000_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191284,0.3758102107973317,relative_legacy,000_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191284,26.303440583379377,spot_baseline,000_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191284,33.475528896656364,peer,000_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191471,9.343771116774477,baseline,HSeldon,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191471,24.475111566511195,peer,HSeldon,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191471,0.2595026591347628,relative_legacy,HSeldon,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191471,13.750352374993504,spot_baseline,HSeldon,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191471,34.40903794090475,spot_peer,HSeldon,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191935,-15.469608345231045,spot_peer,pgodzinai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191935,-55.63933485243852,spot_baseline,pgodzinai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191935,-14.465808436635042,peer,pgodzinai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191935,-51.90767649274024,baseline,pgodzinai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,191935,-0.3515451765294713,relative_legacy,pgodzinai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192049,-73.69655941662063,spot_baseline,gnosis-ai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192049,-28.449489836757603,spot_peer,gnosis-ai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192049,-27.097659046926488,peer,gnosis-ai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192049,-0.5317239104010181,relative_legacy,gnosis-ai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192049,-69.9687878064543,baseline,gnosis-ai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192418,51.73316523930716,spot_peer,InstitutPelFutur,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192418,47.60022118682088,peer,InstitutPelFutur,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192418,34.60222037647665,baseline,InstitutPelFutur,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192418,0.507512502765027,relative_legacy,InstitutPelFutur,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192472,1.3842065656493152,spot_peer,bestworldbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192472,-32.19280948873623,spot_baseline,bestworldbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192472,1.0822771861737746,peer,bestworldbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192472,-32.02012896810195,baseline,bestworldbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192472,-0.1598467873645409,relative_legacy,bestworldbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192924,0.3961356714502769,relative_legacy,acm_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192924,23.19826778315687,baseline,acm_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192924,43.432439999088565,spot_peer,acm_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192924,38.59067275456925,peer,acm_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,192924,26.303440583379377,spot_baseline,acm_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,193275,-51.04570643575263,spot_baseline,histerio,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,193275,-2.4056509874712253,peer,histerio,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,193275,-0.1826023877995669,relative_legacy,histerio,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,193275,-12.167619589829402,spot_peer,histerio,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,193275,-34.456294281615754,baseline,histerio,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,195286,-57.49663789026992,baseline,Unwrapped80T,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,195286,-35.60430613910811,spot_peer,Unwrapped80T,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,195286,-0.4049111289525438,relative_legacy,Unwrapped80T,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,195286,-83.65012677171204,spot_baseline,Unwrapped80T,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,195286,-23.52399505230345,peer,Unwrapped80T,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,204737,22.43514257020151,peer,SynapseSeer,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,204737,16.644875109073027,baseline,SynapseSeer,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,204737,53.316458645463,spot_peer,SynapseSeer,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,204737,40.05379295837288,spot_baseline,SynapseSeer,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,204737,0.1986913773270996,relative_legacy,SynapseSeer,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,208405,66.57325272796959,spot_peer,mf-bot-4,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,208405,58.496250072115615,spot_baseline,mf-bot-4,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,208405,0.7309995130481224,relative_legacy,mf-bot-4,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,208405,65.90751676853895,peer,mf-bot-4,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,208405,57.12867606431413,baseline,mf-bot-4,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,218666,-32.12224633037045,peer,GreeneiBot2,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,218666,-79.58592832197745,spot_baseline,GreeneiBot2,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,218666,-0.6173058398595506,relative_legacy,GreeneiBot2,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,218666,-77.914391241104,baseline,GreeneiBot2,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,218666,-32.68288186108035,spot_peer,GreeneiBot2,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,218945,0.6318053400115001,relative_legacy,SeidrBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,218945,58.629470337824905,peer,SeidrBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,218945,48.54268271702416,spot_baseline,SeidrBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,218945,47.28272892219605,baseline,SeidrBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,218945,59.418436425619056,spot_peer,SeidrBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,220077,48.48321151000915,baseline,mmBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,220077,0.6431775257623222,relative_legacy,mmBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,220077,48.54268271702416,spot_baseline,mmBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,220077,59.418436425619056,spot_peer,mmBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,220077,60.087402329963176,peer,mmBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,221727,36.78952410906843,baseline,mf-bot-5,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,221727,50.92151319479025,peer,mf-bot-5,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,221727,0.5279416289160133,relative_legacy,mf-bot-5,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,221727,51.73316523930716,spot_peer,mf-bot-5,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,222631,-15.200309344504996,spot_baseline,Grizeu_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,222631,0.0,relative_legacy,Grizeu_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,222631,-1.917378797248522,baseline,Grizeu_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,222631,1.715356052995225,peer,Grizeu_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,222631,13.598743596681665,spot_peer,Grizeu_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,227188,-0.9882315477267724,relative_legacy,ProfessorSP,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,227188,-173.6965594166206,spot_baseline,ProfessorSP,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,227188,-100.33141967260376,spot_peer,ProfessorSP,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,227188,-65.65804002157833,peer,ProfessorSP,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30792,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-13 13:58:11.500979+00,227188,-115.1800805005005,baseline,ProfessorSP,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31035 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,182315,-0.2828906178095692,relative_legacy,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,182315,-55.63933485243855,spot_baseline,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,182315,-25.209142708049747,peer,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,182315,-48.96740073161455,baseline,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,182315,-28.00155723138224,spot_peer,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,185699,13.750352374993504,spot_baseline,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,185699,19.51945791151073,peer,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,185699,12.524093594348304,baseline,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,185699,0.3280008774748217,relative_legacy,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,185699,21.754235246167053,spot_peer,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,187708,26.070684897198568,peer,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,187708,0.407102192273817,relative_legacy,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,187708,49.18432790545362,spot_peer,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,187708,27.792993401859405,baseline,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,187708,52.00450240398177,spot_baseline,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,188107,0.4904836419960128,relative_legacy,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,188107,29.06020127507676,baseline,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,188107,31.719360907011875,peer,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,188107,34.286412835038234,spot_peer,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,188107,31.227792485364308,spot_baseline,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,189585,-11.553991962614372,peer,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,189585,-31.80485744970271,baseline,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,189585,-32.19280948873623,spot_baseline,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,189585,-0.1123115493553117,relative_legacy,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,189585,-11.189254179888264,spot_peer,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,189588,26.303440583379377,spot_baseline,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,189588,30.755412176128733,spot_peer,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,189588,0.4635011809892049,relative_legacy,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,189588,30.26938956007405,peer,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,189588,25.884695214793627,baseline,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,189869,-73.69655941662059,spot_baseline,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,189869,-31.471250965394447,peer,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,189869,-0.373419381562279,relative_legacy,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,189869,-40.9494685714518,spot_peer,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,189869,-55.64251112044048,baseline,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,190710,-59.94620704162715,spot_baseline,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,190710,-56.43920269735242,baseline,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,190710,-31.08979479859063,spot_peer,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,190710,-0.3606650992237682,relative_legacy,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,190710,-29.91829422822834,peer,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,190772,-20.12654090809736,peer,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,190772,-40.35168940451046,baseline,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,190772,-51.45731728297583,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,190772,-0.2139709604300993,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,190772,-25.00284652035613,spot_peer,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191026,0.5814956150687628,relative_legacy,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191026,37.86569925117201,baseline,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191026,40.6262666404051,spot_peer,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191026,38.33840647850423,peer,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191026,40.06938560882932,spot_baseline,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191046,-73.69655941662059,spot_baseline,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191046,-14.266857441464827,peer,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191046,-25.997795481548177,baseline,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191046,-0.1298002870064155,relative_legacy,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191046,-40.9494685714518,spot_peer,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191284,-4.11863984393434,peer,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191284,-23.44652536370228,spot_baseline,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191284,-4.917741578188102,spot_peer,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191284,0.0038659684905866,relative_legacy,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191284,-17.525737611311214,baseline,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191471,-41.34906798150315,peer,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191471,-59.810319274274704,spot_peer,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191471,-100.0,spot_baseline,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191471,-68.00549990738983,baseline,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191471,-0.5167397627383248,relative_legacy,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191935,0.4220937566217586,relative_legacy,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191935,22.277269209347224,baseline,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191935,29.01674476408932,spot_peer,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191935,23.878685958711674,spot_baseline,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191935,26.85229004077788,peer,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191975,-1.6051221343603648,baseline,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191975,3.193888097754161,spot_peer,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191975,0.4269724055399626,peer,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191975,0.0006707117196624,relative_legacy,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,191975,-12.134004386926286,spot_baseline,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192049,-1.4485126429428248,relative_legacy,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192049,-112.65434931903232,spot_peer,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192049,-108.57863859646004,peer,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192049,-165.36065566373296,baseline,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192049,-173.6965594166206,spot_baseline,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192418,-0.2667581357608646,relative_legacy,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192418,-47.05143588584392,baseline,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192418,-25.00284652035613,spot_peer,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192418,-23.467404050953988,peer,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192472,-11.189254179888264,spot_peer,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192472,-32.19280948873623,spot_baseline,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192472,-32.04475270188558,baseline,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192472,-0.1115759312977714,relative_legacy,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192472,-11.449772719270545,peer,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192924,-4.132287643109707,peer,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192924,-22.431729826094,spot_baseline,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192924,-19.82275344481293,baseline,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192924,0.0082624978881584,relative_legacy,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,192924,-4.190083648114311,spot_peer,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,193275,63.04054714823233,spot_baseline,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,193275,47.233242812996586,peer,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,193275,50.87745936809844,baseline,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,193275,0.7119308302257692,relative_legacy,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,193275,57.09771062856813,spot_peer,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,195286,51.18336680671377,peer,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,195286,87.97057662822883,spot_baseline,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,195286,74.9737585375363,spot_peer,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,195286,0.7696626916664251,relative_legacy,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,195286,60.4643076452172,baseline,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,204737,-82.89413492746883,spot_peer,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,204737,-132.19280948873626,spot_baseline,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,204737,-34.4883618042773,peer,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,204737,-55.153572406366735,baseline,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,204737,-0.4062461690885548,relative_legacy,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,208405,66.29437618812631,baseline,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,208405,67.80719051126377,spot_baseline,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,208405,59.46601389253696,peer,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,208405,60.51562656769229,spot_peer,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,208405,0.8667425242403359,relative_legacy,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,218666,30.063447884667028,spot_peer,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,218666,25.338423580007472,spot_baseline,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,218666,0.4520848205652341,relative_legacy,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,218666,24.862925497688884,baseline,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,218666,29.43442936547425,peer,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,218945,-121.75914350726268,spot_baseline,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,218945,-75.41268717785233,spot_peer,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,218945,-0.9822195246173976,relative_legacy,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,218945,-74.7180615654957,peer,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,218945,-118.69285261444864,baseline,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,219886,88.0959738582781,spot_baseline,SaraBase,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,219886,72.63217872540011,peer,SaraBase,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,219886,84.85965900129821,baseline,SaraBase,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,219886,75.06367447180389,spot_peer,SaraBase,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,219886,1.0508386780696866,relative_legacy,SaraBase,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,220077,-0.3033350222233237,relative_legacy,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,220077,-25.497766964596405,peer,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,220077,-51.38377654525375,baseline,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,220077,-25.00284652035613,spot_peer,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,221727,-24.956869510008406,peer,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,221727,-51.45731728297583,spot_baseline,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,221727,-50.04631065547999,baseline,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,221727,-0.2952351329432919,relative_legacy,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,221727,-25.00284652035613,spot_peer,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,222631,1.7374125367608348,baseline,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,222631,13.750352374993504,spot_baseline,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,222631,2.7487354515416857,peer,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,222631,21.754235246167053,spot_peer,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,222631,0.0327059297956142,relative_legacy,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,227188,0.7436176456922907,relative_legacy,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,227188,87.97057662822883,spot_baseline,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,227188,49.40841963817732,peer,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,227188,58.40789290125871,baseline,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30793,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-13 13:58:11.522253+00,227188,74.9737585375363,spot_peer,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31036 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,182315,60.40713236688608,spot_baseline,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,182315,53.20014968062194,baseline,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,182315,7.73896963743041,spot_peer,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,182315,0.0064420208934055,relative_legacy,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,182315,5.336359977387857,peer,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,185699,60.40713236688608,spot_baseline,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,185699,0.0065491788944715,relative_legacy,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,185699,7.73896963743041,spot_peer,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,185699,55.822801233495866,baseline,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,185699,5.157075295434877,peer,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,187708,13.750352374993504,spot_baseline,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,187708,-25.71621881641717,spot_peer,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,187708,7.495375972338268,baseline,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,187708,-13.439648070775874,peer,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,187708,-0.2503097630714885,relative_legacy,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,188107,0.1475557958482887,relative_legacy,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,188107,75.84453215766577,spot_baseline,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,188107,69.28728879116144,baseline,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,188107,18.808338747936247,spot_peer,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,188107,15.3796840000328,peer,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,189585,10.024712231518812,peer,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,189585,0.0739057082499219,relative_legacy,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,189585,66.93946745535162,baseline,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,189585,13.045172505108066,spot_peer,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,189588,94.11063109464314,spot_baseline,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,189588,92.56355358032536,baseline,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,189588,28.772420742354893,peer,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,189588,0.3321860647903986,relative_legacy,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,189588,31.906023207930936,spot_peer,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,189869,-0.5643719464395844,relative_legacy,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,189869,-15.200309344505014,spot_baseline,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,189869,-46.475256278019046,spot_peer,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,189869,-11.475786887150305,baseline,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,189869,-35.28534130879922,peer,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,190710,43.78271358406711,baseline,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,190710,-4.437977930219487,peer,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,190710,-2.2569099166114968,spot_peer,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,190710,46.46682670034443,spot_baseline,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,190710,-0.1258738432176625,relative_legacy,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,190772,-0.2424886795738453,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,190772,-12.219355719280426,peer,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,190772,-15.005114098399224,spot_peer,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,190772,22.514418951177053,baseline,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,190772,28.688114778816157,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191026,-0.0805764774014219,relative_legacy,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191026,48.50058011084708,baseline,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191026,1.225059753875546,spot_peer,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191026,-1.1625670955621163,peer,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191026,51.322799730610605,spot_baseline,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191046,23.9505726007963,baseline,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191046,13.045172505108066,spot_peer,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191046,4.817141933471664,peer,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191046,0.0264897566412111,relative_legacy,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191284,30.822785290624527,spot_peer,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191284,23.161633914947625,peer,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191284,69.21590088704912,baseline,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191284,0.2469311049511604,relative_legacy,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191471,-37.65071811700631,peer,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191471,-56.10530004346853,spot_peer,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191471,-0.5997893309679623,relative_legacy,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191471,-28.63041851566409,spot_baseline,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191471,-19.48903010535337,baseline,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191935,0.1880961474783593,relative_legacy,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191935,21.72256739966344,spot_peer,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191935,18.259775347615328,peer,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191935,79.90873060740036,spot_baseline,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191935,74.54998768315326,baseline,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191975,59.58218903575427,spot_baseline,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191975,10.08020132274031,baseline,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191975,1.237999584303177,peer,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191975,-0.0010440707501329,relative_legacy,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,191975,7.147445005607228,spot_peer,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192049,0.075202731806202,relative_legacy,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192049,13.045172505108066,spot_peer,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192049,64.6845720267972,baseline,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192049,10.098843381174408,peer,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192418,3.926415715063973,peer,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192418,53.50244122223024,baseline,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192418,-0.0109283290709992,relative_legacy,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192418,6.368773766738638,spot_peer,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192472,19.316685106808222,spot_peer,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192472,76.55347463629771,spot_baseline,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192472,76.25300915328238,baseline,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192472,0.1614651696024795,relative_legacy,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192472,16.459561063029216,peer,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192924,58.496250072115615,spot_baseline,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192924,6.368773766738638,spot_peer,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192924,51.78171762153116,baseline,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192924,-0.0103869892119585,relative_legacy,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,192924,4.096927074438823,peer,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,193275,0.1083638265289848,relative_legacy,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,193275,66.16906970295473,baseline,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,193275,12.447757239332107,peer,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,193275,18.950927710362585,spot_peer,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,193275,76.04338746701116,spot_baseline,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,195286,64.68313514196461,baseline,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,195286,94.11063109464314,spot_baseline,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,195286,22.61338360238924,peer,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,195286,31.906023207930936,spot_peer,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,195286,0.2379461029911148,relative_legacy,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,204737,10.887806416412383,peer,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,204737,25.22962446956152,spot_peer,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,204737,0.1037942380837364,relative_legacy,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,204737,84.79969065549501,spot_baseline,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,204737,35.52487414284682,baseline,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,208405,84.79969065549501,spot_baseline,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,208405,25.22962446956152,spot_peer,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,208405,22.128337034785456,peer,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,208405,0.2408369759929579,relative_legacy,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,208405,83.0752175948463,baseline,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,218666,12.59936940286836,peer,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,218666,71.36958148433591,spot_baseline,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,218666,70.18820564765412,baseline,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,218666,15.599580704112022,spot_peer,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,218666,0.10944075907569,relative_legacy,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,218945,-11.115442914212329,peer,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,218945,36.927923711379655,baseline,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,218945,-0.2171692839620888,relative_legacy,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,218945,-8.43476178229654,spot_peer,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,218945,37.85116232537298,spot_baseline,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,219886,94.07004958957644,spot_baseline,SaraBase,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,219886,88.62951601702099,baseline,SaraBase,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,219886,27.9948751100223,peer,SaraBase,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,219886,31.876924288117294,spot_peer,SaraBase,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,219886,0.3226356232542651,relative_legacy,SaraBase,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,220077,58.39981321320145,baseline,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,220077,58.496250072115615,spot_baseline,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,220077,-0.0183983462623625,relative_legacy,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,220077,6.368773766738638,spot_peer,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,220077,3.275505371862711,peer,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,221727,56.87455203968449,baseline,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,221727,6.368773766738638,spot_peer,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,221727,3.4979159616451607,peer,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,221727,-0.015680242818333,relative_legacy,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,222631,0.020435250578969,relative_legacy,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,222631,2.444772282949069,peer,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,222631,19.316685106808222,spot_peer,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,222631,9.688816270463589,baseline,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,227188,-149.30722152718445,peer,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,227188,-225.15328539082776,spot_peer,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,227188,-2.151759453386396,relative_legacy,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,227188,-264.3856189774725,spot_baseline,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30794,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-13 13:58:11.543075+00,227188,-175.6688068268937,baseline,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.4644,2024-12-14 15:30:00+00,31037 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,182315,-31.59882062867554,baseline,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,182315,-41.664003873185735,spot_peer,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,182315,-0.4609525248568115,relative_legacy,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,182315,-35.845397091247634,spot_baseline,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,182315,-37.54734063568076,peer,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,185699,79.44147650538223,baseline,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,185699,40.91997119937041,peer,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,185699,83.18772411916731,spot_baseline,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,185699,43.79016392850109,spot_peer,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,185699,0.6182243543859149,relative_legacy,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,187708,33.92837717410682,baseline,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,187708,15.604965527703296,peer,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,187708,0.2327446667788081,relative_legacy,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,187708,27.708119985120245,spot_peer,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,187708,60.7862902831235,spot_baseline,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,188107,0.0,baseline,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,188107,-15.109875372352024,peer,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,188107,-15.930505945841126,spot_peer,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,188107,-0.1490937662060998,relative_legacy,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,188107,0.0,spot_baseline,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,189585,25.981300741971868,baseline,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,189585,2.952798150675608,spot_peer,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,189585,26.303440583379377,spot_baseline,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,189585,0.0729113888687906,relative_legacy,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,189585,1.2567150880508513,peer,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,189588,0.1878300040323648,relative_legacy,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,189588,37.85116232537298,spot_baseline,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,189588,9.64963898394213,peer,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,189588,37.31698756374455,baseline,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,189588,11.242935731149029,spot_peer,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,189869,-24.305857479498847,baseline,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,189869,-39.04180233195571,spot_peer,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,189869,-0.3623771638455527,relative_legacy,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,189869,-29.423073587058838,peer,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,190710,4.807985097449093,peer,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,190710,29.270508670634054,baseline,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,190710,0.1198288751710005,relative_legacy,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,190710,6.348886943056803,spot_peer,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,190710,31.034012061215048,spot_baseline,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,190772,30.126239827665746,spot_peer,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,190772,23.734552586292857,peer,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,190772,0.3751258340509039,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,190772,50.38813917655586,baseline,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,190772,64.15460290875237,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191026,32.93321233986983,peer,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191026,72.13587696228392,spot_baseline,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191026,0.5081229672515482,relative_legacy,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191026,35.85601592112888,spot_peer,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191026,68.16963925745851,baseline,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191046,1.0390334475127845,peer,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191046,26.303440583379377,spot_baseline,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191046,9.288335553316218,baseline,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191046,0.0062022641749329,relative_legacy,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191046,2.952798150675608,spot_peer,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191284,-55.08577676247089,baseline,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191284,-68.83744555017587,spot_peer,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191284,-51.448351449060176,peer,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191284,-0.6689045463462046,relative_legacy,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191284,-73.69655941662059,spot_baseline,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191471,-39.592867633113926,spot_baseline,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191471,-30.027878986605177,peer,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191471,-0.3784870380587727,relative_legacy,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191471,-44.35432210780916,spot_peer,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191471,-26.975426588620486,baseline,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191935,0.5767954172004544,relative_legacy,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191935,79.90873060740036,spot_baseline,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191935,41.43616649546848,spot_peer,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191935,37.88103111526379,peer,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191935,74.67896370838837,baseline,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191975,3.327615487429864,spot_baseline,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191975,1.7314396448848748,baseline,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191975,-6.964562634271298,peer,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191975,-13.541602677987951,spot_peer,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,191975,-0.0840224079223826,relative_legacy,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192049,-38.98411404803333,peer,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192049,-30.791954736123746,baseline,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192049,-39.04180233195571,spot_peer,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192049,-32.19280948873623,spot_baseline,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192049,-0.4845095430747403,relative_legacy,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192418,12.58028080874158,baseline,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192418,-6.500298337275353,peer,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192418,-0.0300187455701785,relative_legacy,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192418,13.750352374993504,spot_baseline,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192418,-6.059094466107477,spot_peer,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192472,9.223736786255667,peer,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192472,0.1843203239927826,relative_legacy,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192472,11.242935731149029,spot_peer,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192472,37.73171051411304,baseline,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192924,-4.032849217203516,peer,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192924,-3.823653114864397,spot_peer,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192924,16.864203555883922,spot_baseline,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192924,14.951072119401712,baseline,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,192924,0.0036988255015054,relative_legacy,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,193275,0.5888244383167367,relative_legacy,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,193275,81.0648747782646,spot_baseline,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,193275,38.76021830668439,peer,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,193275,75.9963954345885,baseline,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,193275,42.26616521326511,spot_peer,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,195286,18.918404275641635,spot_peer,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,195286,33.41382537285788,baseline,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,195286,48.54268271702416,spot_baseline,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,195286,13.332248937168895,peer,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,195286,0.2242218299610421,relative_legacy,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,204737,52.00450240398177,spot_baseline,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,204737,21.8568495467636,baseline,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,204737,9.007143036358201,peer,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,204737,0.1205605309691622,relative_legacy,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,204737,21.403653065392557,spot_peer,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,208405,-0.3320620592935376,relative_legacy,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,208405,-15.200309344505014,spot_baseline,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,208405,-26.842845067544587,spot_peer,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,208405,-14.891344664100858,baseline,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,208405,-28.06616836683682,peer,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,218666,82.95399524461482,baseline,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,218666,44.48605520426396,spot_peer,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,218666,0.6434524074431379,relative_legacy,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,218666,84.1570637395517,spot_baseline,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,218666,42.79668761342998,peer,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,218945,-60.68729849278359,baseline,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,218945,-60.54730796970247,spot_peer,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,218945,-61.190395694305295,peer,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,218945,-0.7887336295834619,relative_legacy,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,218945,-62.14883767462704,spot_baseline,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,220077,92.42964919186085,baseline,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,220077,50.547217979156905,spot_peer,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,220077,0.7300803412093766,relative_legacy,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,220077,49.28236984230743,peer,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,221727,1.5358451285733496,peer,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,221727,2.952798150675608,spot_peer,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,221727,25.58845507298376,baseline,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,221727,0.074998593387775,relative_legacy,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,221727,26.303440583379377,spot_baseline,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,222631,2.7153331782414147,baseline,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,222631,0.0,relative_legacy,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,222631,21.412480535284764,spot_baseline,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,222631,-0.0708154447917475,peer,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,222631,-0.5584339871628137,spot_peer,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,227188,-16.73655493571592,baseline,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,227188,-0.2739046543194192,relative_legacy,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,227188,-33.988535328693104,spot_peer,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,227188,-22.399631262758582,peer,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30795,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150?",2024-12-13 13:58:11.563595+00,227188,-25.153876699596427,spot_baseline,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31038 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,182315,15.267317293644512,spot_peer,RyansAGI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,182315,0.1149551931763522,relative_legacy,RyansAGI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,182315,23.20499192103794,baseline,RyansAGI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,182315,15.404111917439696,peer,RyansAGI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,182315,26.303440583379377,spot_baseline,RyansAGI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,185699,-45.74496454159611,baseline,MWG,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,185699,-34.45331798857224,peer,MWG,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,185699,-47.39311883324123,spot_baseline,MWG,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,185699,-37.63962231069026,spot_peer,MWG,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,185699,-0.5800196185152708,relative_legacy,MWG,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,187708,2.577563148730798,baseline,twsummerbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,187708,-0.3536248574373611,spot_peer,twsummerbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,187708,0.3495069062851378,peer,twsummerbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,187708,-0.0701677991334695,relative_legacy,twsummerbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,187708,4.544297076116711,spot_baseline,twsummerbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,188107,-0.386445413622289,relative_legacy,Cassie,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,188107,-30.697775342139103,spot_baseline,Cassie,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,188107,-25.65399453173378,spot_peer,Cassie,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,188107,-27.002727808524227,baseline,Cassie,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,188107,-20.894356331208694,peer,Cassie,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,189585,40.64073266023917,peer,mf-bot-1,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,189585,0.4491386924415277,relative_legacy,mf-bot-1,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,189585,58.496250072115615,spot_baseline,mf-bot-1,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,189585,38.37861367975911,spot_peer,mf-bot-1,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,189585,57.791999037265306,baseline,mf-bot-1,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,189588,6.917008664858317,baseline,mf-bot-3,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,189588,7.0389327891398015,spot_baseline,mf-bot-3,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,189588,1.4372802003903964,spot_peer,mf-bot-3,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,189588,3.6061220826034734,peer,mf-bot-3,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,189588,-0.0584608458755072,relative_legacy,mf-bot-3,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,189869,28.576041244093915,baseline,VeritasAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,189869,0.1560117682993583,relative_legacy,VeritasAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,189869,23.55745487411793,spot_peer,VeritasAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,189869,18.919338463208195,peer,VeritasAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,190710,52.60688116675877,spot_baseline,Bot_Pepa,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,190710,49.67103728217458,baseline,Bot_Pepa,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,190710,34.834830922744075,peer,Bot_Pepa,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,190710,0.380164231940352,relative_legacy,Bot_Pepa,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,190710,34.15062139016123,spot_peer,Bot_Pepa,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,190772,-17.8242417600062,peer,Jay_Bailey_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,190772,-24.16983402784119,spot_peer,Jay_Bailey_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,190772,-28.63041851566411,spot_baseline,Jay_Bailey_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,190772,-22.50469271012816,baseline,Jay_Bailey_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,190772,-0.3469769275270555,relative_legacy,Jay_Bailey_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191026,-0.6249883936992735,relative_legacy,manticAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191026,-37.9793213659921,peer,manticAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191026,-53.815382486458,spot_baseline,manticAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191026,-50.8568727422734,baseline,manticAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191026,-42.25018103844575,spot_peer,manticAI,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191046,17.11180768928948,baseline,archipelago,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191046,11.061157887747513,peer,archipelago,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191046,31.23292341861053,spot_peer,archipelago,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191046,48.54268271702416,spot_baseline,archipelago,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191046,0.0949272019055983,relative_legacy,archipelago,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191284,0.442017734122625,relative_legacy,000_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191284,39.558814314573375,peer,000_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191284,76.55347463629771,spot_baseline,000_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191284,57.22078708418262,baseline,000_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191284,51.34193919999543,spot_peer,000_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191471,0.2852332935969427,relative_legacy,HSeldon,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191471,39.90155553344229,baseline,HSeldon,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191471,58.496250072115615,spot_baseline,HSeldon,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191471,38.37861367975911,spot_peer,HSeldon,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191471,27.111049960961093,peer,HSeldon,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191935,-5.168087137360622,peer,pgodzinai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191935,-0.1690509548914688,relative_legacy,pgodzinai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191935,-7.843979092470072,spot_peer,pgodzinai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191935,-5.503948116006259,baseline,pgodzinai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191935,-5.889368905356857,spot_baseline,pgodzinai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191975,5.333609621075665,baseline,jkraybill_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191975,10.799298410937688,spot_peer,jkraybill_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191975,2.872649756522957,peer,jkraybill_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191975,20.07972737058549,spot_baseline,jkraybill_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,191975,0.0,relative_legacy,jkraybill_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192049,26.303440583379377,spot_baseline,gnosis-ai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192049,0.1321543786574517,relative_legacy,gnosis-ai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192049,17.05447860131016,peer,gnosis-ai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192049,15.267317293644512,spot_peer,gnosis-ai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192049,25.19798713968827,baseline,gnosis-ai,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192418,-0.345333454738002,relative_legacy,InstitutPelFutur,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192418,-23.017397136729457,baseline,InstitutPelFutur,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192418,-21.67401618572421,spot_peer,InstitutPelFutur,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192418,-25.15387669959645,spot_baseline,InstitutPelFutur,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192418,-17.9003837937573,peer,InstitutPelFutur,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192472,-15.168871908836223,baseline,bestworldbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192472,-12.70867491307185,peer,bestworldbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192472,-14.52832592457566,spot_peer,bestworldbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192472,-0.2817188233815385,relative_legacy,bestworldbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192472,-15.200309344504996,spot_baseline,bestworldbot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192924,20.488892331968643,peer,acm_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192924,20.81261101119045,spot_peer,acm_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192924,0.1853989912068934,relative_legacy,acm_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192924,34.027740476625425,spot_baseline,acm_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,192924,30.21544135967188,baseline,acm_bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,193275,-125.58744888947336,spot_peer,histerio,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,193275,-1.725332826539805,relative_legacy,histerio,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,193275,-169.89977439671858,spot_baseline,histerio,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,193275,-117.64119935377047,peer,histerio,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,193275,-160.82387682980124,baseline,histerio,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,195286,6.255424676861445,spot_peer,Unwrapped80T,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,195286,9.464721209115217,baseline,Unwrapped80T,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,195286,-0.0199881384870493,relative_legacy,Unwrapped80T,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,195286,13.750352374993504,spot_baseline,Unwrapped80T,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,195286,5.174710807336679,peer,Unwrapped80T,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,204737,40.70807754505005,spot_baseline,SynapseSeer,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,204737,10.967436026296536,peer,SynapseSeer,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,204737,0.0859473515854335,relative_legacy,SynapseSeer,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,204737,17.16449081066609,baseline,SynapseSeer,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,204737,25.608441272650808,spot_peer,SynapseSeer,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,208405,0.3461539799765689,relative_legacy,mf-bot-4,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,208405,31.23292341861053,spot_peer,mf-bot-4,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,208405,32.973472832252824,peer,mf-bot-4,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,208405,47.35886118981164,baseline,mf-bot-4,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,218666,-56.54365492380671,peer,GreeneiBot2,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,218666,-0.8858806831385138,relative_legacy,GreeneiBot2,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,218666,-76.61119398257227,spot_baseline,GreeneiBot2,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,218666,-58.61534966509292,spot_peer,GreeneiBot2,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,218666,-75.71709431812711,baseline,GreeneiBot2,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,218945,37.85116232537298,spot_baseline,SeidrBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,218945,36.98863381047356,baseline,SeidrBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,218945,0.2427612554010695,relative_legacy,SeidrBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,218945,23.55745487411793,spot_peer,SeidrBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,218945,25.44323694834585,peer,SeidrBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,220077,37.7736425596749,baseline,mmBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,220077,26.1706180683492,peer,mmBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,220077,0.2476986773396215,relative_legacy,mmBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,220077,23.55745487411793,spot_peer,mmBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,220077,37.85116232537298,spot_baseline,mmBot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,221727,25.360413656354428,peer,mf-bot-5,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,221727,37.85116232537298,spot_baseline,mf-bot-5,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,221727,23.55745487411793,spot_peer,mf-bot-5,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,221727,0.2427944395696571,relative_legacy,mf-bot-5,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,221727,36.824216871924094,baseline,mf-bot-5,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,222631,0.7187783214641037,baseline,Grizeu_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,222631,-0.0183194149958278,relative_legacy,Grizeu_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,222631,0.0566753361574796,peer,Grizeu_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,222631,5.658352836636751,spot_baseline,Grizeu_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,222631,0.4461584880033586,spot_peer,Grizeu_Bot,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,227188,-73.69655941662063,spot_baseline,ProfessorSP,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,227188,-0.6002485422410546,relative_legacy,ProfessorSP,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,227188,-49.0736346254064,baseline,ProfessorSP,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,227188,-56.522926407206974,spot_peer,ProfessorSP,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30796,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150?",2024-12-13 13:58:11.585213+00,227188,-36.935011913150674,peer,ProfessorSP,True,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31039 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,182315,5.658352836636751,spot_baseline,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,182315,-3.6661612314977305,spot_peer,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,182315,4.995450860765943,baseline,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,182315,-4.635684168768629,peer,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,182315,-0.0795668424096392,relative_legacy,RyansAGI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,185699,-0.0610719017431447,relative_legacy,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,185699,8.203559516211198,baseline,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,185699,-3.252501582232565,peer,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,185699,-1.6933124666758044,spot_peer,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,185699,8.406426478847456,spot_baseline,MWG,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,187708,-0.0572215612955673,relative_legacy,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,187708,3.2705039514350696,baseline,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,187708,5.658352836636751,spot_baseline,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,187708,-2.9475090684634577,peer,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,187708,-3.6661612314977305,spot_peer,twsummerbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,188107,-0.1594919899554215,relative_legacy,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,188107,-10.35050806360333,spot_peer,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,188107,-10.33252804662578,peer,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,188107,-3.155729919824884,baseline,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,188107,-3.65258760251142,spot_baseline,Cassie,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,189585,40.9506407923636,spot_peer,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,189585,39.4073256730498,peer,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,189585,66.97880980809902,baseline,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,189585,67.80719051126377,spot_baseline,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,189585,0.5242327802984207,relative_legacy,mf-bot-1,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,189588,-4.258650558419307,peer,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,189588,6.922504522092318,baseline,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,189588,-0.0751797623701121,relative_legacy,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,189588,-2.675039519110688,spot_peer,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,189588,7.0389327891398015,spot_baseline,mf-bot-3,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,189869,7.222637238841619,peer,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,189869,19.85678175675635,baseline,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,189869,0.0738456755656021,relative_legacy,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,189869,11.154997574143431,spot_peer,VeritasAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,190710,69.12362426850974,baseline,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,190710,41.15966420633143,peer,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,190710,44.76351658007351,spot_peer,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,190710,73.11832415721999,spot_baseline,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,190710,0.5510334408343556,relative_legacy,Bot_Pepa,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,190772,-43.77064802993204,baseline,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,190772,-55.63933485243855,spot_baseline,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,190772,-47.67192060647174,spot_peer,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,190772,-0.5612680722571001,relative_legacy,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,190772,-38.88800976100344,peer,Jay_Bailey_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191026,-8.436049356108764,baseline,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191026,-14.136830478889538,spot_peer,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191026,-8.926733809708775,spot_baseline,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191026,-0.2244008668760916,relative_legacy,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191026,-15.003514374249004,peer,manticAI,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191046,67.80719051126377,spot_baseline,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191046,24.011252991957686,baseline,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191046,40.9506407923636,spot_peer,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191046,0.1732401624690122,relative_legacy,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191046,13.9630523594255,peer,archipelago,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191284,58.74941740262474,spot_peer,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191284,42.85332077082389,peer,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191284,69.21436210632882,baseline,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191284,0.5678433755498674,relative_legacy,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191284,92.5999418556223,spot_baseline,000_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191471,48.71831529229532,baseline,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191471,0.3693517645473926,relative_legacy,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191471,71.36958148433591,spot_baseline,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191471,43.50808995350923,spot_peer,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191471,28.74186200950253,peer,HSeldon,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191935,26.81075817655166,baseline,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191935,0.1289475504591515,relative_legacy,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191935,12.866960990518818,spot_peer,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191935,28.688114778816157,spot_baseline,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191935,10.63320166561742,peer,pgodzinai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191975,29.86583155645151,spot_baseline,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191975,5.801684334594647,peer,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191975,14.144407369132065,baseline,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191975,0.0574246489549192,relative_legacy,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,191975,13.712446735289053,spot_peer,jkraybill_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192049,67.80719051126377,spot_baseline,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192049,0.5089719821466525,relative_legacy,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192049,65.07167856225277,baseline,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192049,38.16670409509029,peer,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192049,40.9506407923636,spot_peer,gnosis-ai,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192418,-47.095651692356086,baseline,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192418,-0.6045732688168859,relative_legacy,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192418,-44.66964000174202,spot_peer,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192418,-42.60959421137098,peer,InstitutPelFutur,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192472,37.79770962062026,baseline,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192472,19.44513515461685,spot_peer,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192472,37.85116232537298,spot_baseline,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192472,0.2325906067867426,relative_legacy,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192472,18.466420843361814,peer,bestworldbot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192924,27.17089743959456,peer,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192924,55.18851034717248,spot_baseline,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192924,49.09636938936002,baseline,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192924,0.3595010940695968,relative_legacy,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,192924,31.89165955073146,spot_peer,acm_bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,193275,-69.56712969452047,peer,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,193275,-85.20421186128986,spot_baseline,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,193275,-0.97673934471178,relative_legacy,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,193275,-83.54065409397117,baseline,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,193275,-68.8966178609831,spot_peer,histerio,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,195286,76.55347463629771,spot_baseline,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,195286,47.22961948049435,spot_peer,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,195286,0.4075977354828641,relative_legacy,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,195286,52.6926022120175,baseline,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,195286,31.535042828553376,peer,Unwrapped80T,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,204737,-7.362973564940519,peer,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,204737,-0.1190568914641461,relative_legacy,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,204737,-15.914924425491616,spot_peer,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,204737,-11.403524324602929,spot_baseline,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,204737,-4.827007041230193,baseline,SynapseSeer,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,208405,25.286046036601554,peer,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,208405,0.3316618488495959,relative_legacy,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,208405,27.12060369910947,spot_peer,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,208405,47.56769408862202,baseline,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,208405,48.54268271702416,spot_baseline,mf-bot-4,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,218666,-17.788172527065527,spot_baseline,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,218666,-17.620903068222674,baseline,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,218666,-20.49847892948156,spot_peer,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,218666,-0.3212779061793495,relative_legacy,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,218666,-22.11611269509289,peer,GreeneiBot2,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,218945,-0.1432482405782368,relative_legacy,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,218945,0.0,baseline,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,218945,-9.22724431482049,peer,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,218945,-7.728306522373301,spot_peer,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,218945,0.0,spot_baseline,SeidrBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,220077,-0.6584835927983768,relative_legacy,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,220077,-44.66964000174202,spot_peer,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,220077,-51.341471730125406,baseline,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,220077,-46.84872980136193,peer,mmBot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,221727,0.426164460375838,relative_legacy,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,221727,58.496250072115615,spot_baseline,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,221727,56.90127863899416,baseline,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,221727,32.106723702609976,peer,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,221727,34.26629396025801,spot_peer,mf-bot-5,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,222631,-83.65012677171204,spot_baseline,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,222631,-67.78093638785658,spot_peer,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,222631,-0.1136453041337196,relative_legacy,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,222631,-8.62514417897018,peer,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,222631,-10.644503343338444,baseline,Grizeu_Bot,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,227188,-113.54218573104278,spot_peer,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,227188,-1.0955408348721924,relative_legacy,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,227188,-147.39311883324118,spot_baseline,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,227188,-98.23407166193545,baseline,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30797,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900?",2024-12-13 13:58:11.739762+00,227188,-76.83925718315871,peer,ProfessorSP,True,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,0.5,2024-12-14 15:30:00+00,31040 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,185690,-159.22122855687135,spot_baseline,annabot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,185690,-0.3110045155043079,relative_legacy,annabot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,185690,-195.9639691846911,spot_peer,annabot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,185690,-21.19639416542779,peer,annabot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,185690,-16.470292616699254,baseline,annabot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,187708,53.24414257924273,spot_baseline,twsummerbot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,187708,46.35281276576699,peer,twsummerbot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,187708,25.29171805705382,baseline,twsummerbot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,187708,125.35189911266126,spot_peer,twsummerbot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,187708,0.1873820686436877,relative_legacy,twsummerbot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,188107,-5.194462157236206,spot_baseline,Cassie,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,188107,-0.3819616143923465,relative_legacy,Cassie,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,188107,-2.7450517998300192,baseline,Cassie,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,188107,4.376285062485263,peer,Cassie,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,188107,36.973962874957785,spot_peer,Cassie,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,189869,40.21280168868012,spot_baseline,VeritasAI,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,189869,105.64432704602348,spot_peer,VeritasAI,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,189869,101.37930736203911,peer,VeritasAI,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,189869,58.35116538315961,baseline,VeritasAI,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,189869,0.5437983925614149,relative_legacy,VeritasAI,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,190710,74.27134135851207,spot_baseline,Bot_Pepa,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,190710,113.05956832318957,peer,Bot_Pepa,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,190710,0.8399727514853088,relative_legacy,Bot_Pepa,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,190710,65.11479097424774,baseline,Bot_Pepa,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,190710,157.15177594667745,spot_peer,Bot_Pepa,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,191026,-5.954247741446435,baseline,manticAI,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,191026,-0.0949432434965656,relative_legacy,manticAI,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,191026,-155.08832015471904,spot_peer,manticAI,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,191026,-132.19280948873623,spot_baseline,manticAI,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,191026,-6.995604270011523,peer,manticAI,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,191935,-116.09640474436812,spot_baseline,pgodzinai,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,191935,-145.53806352494576,peer,pgodzinai,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,191935,-130.745387284078,spot_peer,pgodzinai,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,191935,-2.4594855933648416,relative_legacy,pgodzinai,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,191935,-100.82852127101694,baseline,pgodzinai,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,191975,-17.13422149199158,spot_peer,jkraybill_bot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,191975,-38.81604521822776,peer,jkraybill_bot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,191975,-33.1080773333474,baseline,jkraybill_bot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,191975,-1.0228370040906671,relative_legacy,jkraybill_bot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,191975,-40.97269973368369,spot_baseline,jkraybill_bot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,192418,-36.84827970831032,spot_baseline,InstitutPelFutur,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,192418,-32.94658961109716,peer,InstitutPelFutur,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,192418,-0.951673326415844,relative_legacy,InstitutPelFutur,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,192418,-29.356930342366528,baseline,InstitutPelFutur,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,192418,-10.896773974829676,spot_peer,InstitutPelFutur,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,192472,-52.21883849199192,peer,bestworldbot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,192472,-10.896773974829676,spot_peer,bestworldbot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,192472,-1.3548991548320106,relative_legacy,bestworldbot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,192472,-36.71373294766112,baseline,bestworldbot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,192472,-36.84827970831032,spot_baseline,bestworldbot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,218666,106.50025505964862,spot_peer,GreeneiBot2,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,218666,48.46234725499481,baseline,GreeneiBot2,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,218666,0.3434085351194856,relative_legacy,GreeneiBot2,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,218666,84.76240026021283,peer,GreeneiBot2,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,218666,40.77877144312863,spot_baseline,GreeneiBot2,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,220077,-52.21883849199192,peer,mmBot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,220077,-10.896773974829676,spot_peer,mmBot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,220077,-36.84827970831032,spot_baseline,mmBot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,220077,-36.82118458139151,baseline,mmBot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30805,How much rain will Miami receive in December 2024?,2024-12-14 18:55:27.323143+00,220077,-1.3548991548320106,relative_legacy,mmBot,True,Greater than 0.90 inches,2024-12-20 15:30:00+00,2024-12-20 15:30:00+00,1.0,2024-12-20 15:30:00+00,31054 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,187708,-0.5088906034344793,relative_legacy,twsummerbot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,187708,-1.522907540133876,peer,twsummerbot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,187708,-12.012429856519756,spot_peer,twsummerbot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,187708,-64.89302685143682,spot_baseline,twsummerbot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,187708,-38.258044089264935,baseline,twsummerbot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,188107,-40.099516208210765,baseline,Cassie,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,188107,-0.3080055523841106,relative_legacy,Cassie,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,188107,14.16099462845643,spot_peer,Cassie,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,188107,25.282439227549823,peer,Cassie,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,188107,-41.09900459236757,spot_baseline,Cassie,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,189869,-119.32347541426994,peer,VeritasAI,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,189869,-157.6367991181815,spot_baseline,VeritasAI,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,189869,-114.03057934993892,spot_peer,VeritasAI,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,189869,-4.013249283701116,relative_legacy,VeritasAI,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,189869,-169.25987974784573,baseline,VeritasAI,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,190710,-98.1427989071312,peer,Bot_Pepa,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,190710,-3.286032687232629,relative_legacy,Bot_Pepa,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,190710,-143.15911098325313,baseline,Bot_Pepa,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,190710,-121.90091895056322,spot_peer,Bot_Pepa,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,190710,-164.79165330056725,spot_baseline,Bot_Pepa,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,191026,1.5307357070787502,baseline,manticAI,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,191026,7.454169409525427,peer,manticAI,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,191026,15.749385357438204,spot_baseline,manticAI,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,191026,0.1001152179819458,relative_legacy,manticAI,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,191026,76.6942235732428,spot_peer,manticAI,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,191935,-60.79145548271404,spot_baseline,pgodzinai,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,191935,6.61686072674212,peer,pgodzinai,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,191935,-0.6919460657393733,relative_legacy,pgodzinai,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,191935,-7.500701350924695,spot_peer,pgodzinai,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,191935,-53.23621016144567,baseline,pgodzinai,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,191975,40.25542626298166,spot_peer,jkraybill_bot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,191975,0.0839373700908235,relative_legacy,jkraybill_bot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,191975,11.543665996171624,peer,jkraybill_bot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,191975,-4.428158406609319,baseline,jkraybill_bot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,191975,-17.376794015526457,spot_baseline,jkraybill_bot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,192418,72.39443892261112,peer,InstitutPelFutur,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,192418,65.16472804124125,spot_peer,InstitutPelFutur,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,192418,0.986044418750016,relative_legacy,InstitutPelFutur,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,192418,4.913794664103415,baseline,InstitutPelFutur,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,192418,5.268025782891358,spot_baseline,InstitutPelFutur,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,192472,19.30521402520495,baseline,bestworldbot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,192472,80.98724230108908,spot_peer,bestworldbot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,192472,19.652129655480284,spot_baseline,bestworldbot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,192472,93.3745402631725,peer,bestworldbot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,192472,1.404666367548865,relative_legacy,bestworldbot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,218666,36.77290086014319,baseline,GreeneiBot2,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,218666,100.0830326512194,spot_peer,GreeneiBot2,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,218666,115.26557454527352,peer,GreeneiBot2,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,218666,1.9093056714292187,relative_legacy,GreeneiBot2,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,218666,37.01193906468967,spot_baseline,GreeneiBot2,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,220077,-164.79174330031367,spot_baseline,mmBot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,220077,-3.873635736964786,relative_legacy,mmBot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,220077,-112.94250722951124,peer,mmBot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,220077,-121.90101795028431,spot_peer,mmBot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30807,"How many unique posters will Bluesky have on December 29, 2024?",2024-12-15 01:57:58.716387+00,220077,-164.7082594847102,baseline,mmBot,True,828408.0,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31057 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,185690,2.468515609687279,peer,annabot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,185690,4.045482720079006,baseline,annabot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,185690,39.05765202658061,spot_baseline,annabot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,185690,23.453915550196346,spot_peer,annabot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,185690,0.0004703133104092,relative_legacy,annabot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,187708,29.78275539375593,spot_baseline,twsummerbot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,187708,7.033808247943369,spot_peer,twsummerbot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,187708,17.261952937598807,baseline,twsummerbot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,187708,-0.0527491077768059,relative_legacy,twsummerbot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,187708,8.627610683988824,peer,twsummerbot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,188107,33.02659570884314,peer,Cassie,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,188107,42.19092094538406,spot_baseline,Cassie,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,188107,36.32219762345253,baseline,Cassie,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,188107,29.000997516747365,spot_peer,Cassie,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,188107,0.178159551396911,relative_legacy,Cassie,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,189869,-8.68109095793138,spot_peer,VeritasAI,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,189869,-0.1454730330314013,relative_legacy,VeritasAI,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,189869,10.39612113653561,peer,VeritasAI,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,189869,24.517326828678407,baseline,VeritasAI,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,189869,20.90619551221676,spot_baseline,VeritasAI,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,190710,30.55315287532914,spot_peer,Bot_Pepa,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,190710,34.74759494203666,peer,Bot_Pepa,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,190710,0.1975202290512724,relative_legacy,Bot_Pepa,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,190710,37.40767789727906,baseline,Bot_Pepa,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,190710,43.06765580733929,spot_baseline,Bot_Pepa,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,191026,0.0447345777504251,relative_legacy,manticAI,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,191026,5.692505961447119,peer,manticAI,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,191026,5.724161622135313,baseline,manticAI,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,191026,58.88946641626562,spot_baseline,manticAI,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,191026,58.56379689642306,spot_peer,manticAI,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,191935,34.77088389753815,spot_baseline,pgodzinai,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,191935,32.13395805382561,baseline,pgodzinai,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,191935,23.818786906766043,peer,pgodzinai,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,191935,15.864699686631674,spot_peer,pgodzinai,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,191935,0.0301926861638025,relative_legacy,pgodzinai,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,192418,0.0303539594218842,relative_legacy,InstitutPelFutur,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,192418,34.77088389753815,spot_baseline,InstitutPelFutur,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,192418,24.23141451946406,peer,InstitutPelFutur,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,192418,32.4297378329358,baseline,InstitutPelFutur,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,192418,15.864699686631674,spot_peer,InstitutPelFutur,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,192472,-14.438589794902182,baseline,bestworldbot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,192472,-62.0212684933674,peer,bestworldbot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,192472,-1.0413747948247771,relative_legacy,bestworldbot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,192472,-71.69213596777324,spot_peer,bestworldbot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,192472,-14.685589512985825,spot_baseline,bestworldbot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,218666,0.1668345834320207,relative_legacy,GreeneiBot2,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,218666,37.90840453258777,baseline,GreeneiBot2,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,218666,21.977383313660876,spot_peer,GreeneiBot2,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,218666,38.223632880614325,spot_baseline,GreeneiBot2,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,218666,34.309932052800995,peer,GreeneiBot2,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,220077,-43.06765580733931,spot_baseline,mmBot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,220077,-1.712495494703592,relative_legacy,mmBot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,220077,-121.9392268478588,spot_peer,mmBot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,220077,-43.02881936781113,baseline,mmBot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30809,"How many books on the New York Times Best Sellers list will be tagged as ""New this week"" for the week of January 5, 2024?",2024-12-15 03:44:56.75155+00,220077,-115.29780902820237,peer,mmBot,True,0-2,2024-12-21 15:30:00+00,2024-12-21 15:30:00+00,1.0,2024-12-21 15:30:00+00,31059 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,185690,53.50264792820728,spot_baseline,annabot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,185690,0.7068500314953463,peer,annabot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,185690,-0.001352875462214,relative_legacy,annabot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,185690,6.8239810913791485,spot_peer,annabot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,185690,5.541977310123896,baseline,annabot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,187708,34.5500966229092,spot_peer,twsummerbot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,187708,26.65733043349657,baseline,twsummerbot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,187708,0.0914472062879051,relative_legacy,twsummerbot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,187708,12.111083563623673,peer,twsummerbot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,187708,76.79870758247155,spot_baseline,twsummerbot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,188107,81.6368663693328,spot_baseline,Cassie,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,188107,0.1730819781696442,relative_legacy,Cassie,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,188107,40.30829571216369,spot_peer,Cassie,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,188107,40.92593313757484,baseline,Cassie,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,188107,21.179531323490863,peer,Cassie,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,189869,10.170256296101307,peer,VeritasAI,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,189869,0.0370848878024884,relative_legacy,VeritasAI,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,189869,21.28988195903576,spot_peer,VeritasAI,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,189869,29.83823660065685,baseline,VeritasAI,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,189869,65.65719908350228,spot_baseline,VeritasAI,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,190710,53.50264792820728,spot_baseline,Bot_Pepa,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,190710,6.8239810913791485,spot_peer,Bot_Pepa,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,190710,-0.0221144882846393,relative_legacy,Bot_Pepa,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,190710,48.88067331794568,baseline,Bot_Pepa,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,190710,12.725253448096344,peer,Bot_Pepa,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,191026,-0.0407300654822982,relative_legacy,manticAI,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,191026,-8.678610303027137,spot_peer,manticAI,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,191026,6.936516299831542,baseline,manticAI,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,191026,-1.45254272586055,peer,manticAI,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,191026,40.47704780369384,spot_baseline,manticAI,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,191935,45.58253107832961,spot_baseline,pgodzinai,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,191935,2.353955445356428,peer,pgodzinai,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,191935,37.55513758411349,baseline,pgodzinai,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,191935,-0.1255385289464727,relative_legacy,pgodzinai,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,191935,-2.6022514158307364,spot_peer,pgodzinai,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,191975,9.50178437806669,baseline,jkraybill_bot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,191975,-0.3905728576483855,relative_legacy,jkraybill_bot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,191975,-37.753913842653326,spot_peer,jkraybill_bot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,191975,-21.0451324680968,peer,jkraybill_bot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,191975,16.047372288755483,spot_baseline,jkraybill_bot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,192418,45.58253107832961,spot_baseline,InstitutPelFutur,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,192418,-0.1368010370081403,relative_legacy,InstitutPelFutur,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,192418,3.728640165584296,peer,InstitutPelFutur,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,192418,41.79340478151248,baseline,InstitutPelFutur,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,192418,-2.6022514158307364,spot_peer,InstitutPelFutur,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,192472,-2.6022514158307364,spot_peer,bestworldbot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,192472,45.5183663050722,baseline,bestworldbot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,192472,-0.1417340252304357,relative_legacy,bestworldbot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,192472,6.134275141652177,peer,bestworldbot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,192472,45.58253107832961,spot_baseline,bestworldbot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,216863,53.50264792820728,spot_baseline,tombot61,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,216863,52.83069582021226,baseline,tombot61,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,216863,6.8239810913791485,spot_peer,tombot61,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,216863,16.11202275327895,peer,tombot61,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,216863,-0.0180756024854305,relative_legacy,tombot61,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,218666,21.964858182021324,spot_peer,GreeneiBot2,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,218666,18.204445680822285,peer,GreeneiBot2,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,218666,45.61869128628177,baseline,GreeneiBot2,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,218666,0.0998292148484367,relative_legacy,GreeneiBot2,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,218666,66.22432816215019,spot_baseline,GreeneiBot2,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,220077,-23.10009849641928,spot_baseline,mmBot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,220077,-80.92863865554423,peer,mmBot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,220077,-1.217381552254897,relative_legacy,mmBot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,220077,-84.34579735709453,spot_peer,mmBot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 -30813,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 19:49:07.295809+00,220077,-22.82537435729844,baseline,mmBot,True,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,2024-12-19 15:30:00+00,31066 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,191935,-123.65994973340156,baseline,pgodzinai,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,191935,-123.49408787248754,peer,pgodzinai,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,191935,-2.4615341728363136,relative_legacy,pgodzinai,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,191935,-198.87925822229053,spot_peer,pgodzinai,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,191935,-161.2507034125319,spot_baseline,pgodzinai,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,192418,7.907773275904913,peer,InstitutPelFutur,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,192418,-17.87469216608008,spot_baseline,InstitutPelFutur,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,192418,47.25918256023476,spot_peer,InstitutPelFutur,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,192418,-2.9909322457238203,baseline,InstitutPelFutur,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,192418,-0.0366090905934062,relative_legacy,InstitutPelFutur,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,192924,49.02184056939643,spot_baseline,acm_bot,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,192924,162.10271962142386,spot_peer,acm_bot,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,192924,0.6020463102332183,relative_legacy,acm_bot,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,192924,103.13896102188716,peer,acm_bot,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,192924,29.58755542516814,baseline,acm_bot,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,218666,-2.915648339332177,relative_legacy,GreeneiBot2,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,218666,-153.16559222553678,baseline,GreeneiBot2,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,218666,-159.09007028863752,peer,GreeneiBot2,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,218666,-242.66087418167223,spot_peer,GreeneiBot2,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,218666,-186.75356043162856,spot_baseline,GreeneiBot2,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,220077,-186.75356043162856,spot_baseline,mmBot,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,220077,-175.80990388784386,baseline,mmBot,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,220077,-159.09007028863752,peer,mmBot,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,220077,-2.915648339332177,relative_legacy,mmBot,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,220077,-242.66087418167223,spot_peer,mmBot,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,222631,77.6957656034913,peer,Grizeu_Bot,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,222631,135.57527294707467,spot_peer,Grizeu_Bot,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,222631,0.337185232665944,relative_legacy,Grizeu_Bot,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,222631,33.56956305992112,spot_baseline,Grizeu_Bot,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,222631,18.56709255098752,baseline,Grizeu_Bot,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236037,0.7465957560196493,relative_legacy,metac-o1,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236037,119.20289669770716,peer,metac-o1,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236037,29.501600416824004,baseline,metac-o1,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236037,151.88096954815222,spot_peer,metac-o1,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236037,43.06765580733931,spot_baseline,metac-o1,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236038,-49.61407271748155,spot_baseline,metac-gpt-4o,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236038,-34.473323520410965,baseline,metac-gpt-4o,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236038,9.944356280324676,peer,metac-gpt-4o,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236038,-0.7021380947126624,relative_legacy,metac-gpt-4o,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236038,-7.228883974804236,spot_peer,metac-gpt-4o,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236040,-88.06019354487339,spot_baseline,metac-claude-3-5-sonnet-latest,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236040,-56.28477673646951,baseline,metac-claude-3-5-sonnet-latest,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236040,-40.05019566446807,peer,metac-claude-3-5-sonnet-latest,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236040,-1.3308161794623987,relative_legacy,metac-claude-3-5-sonnet-latest,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236040,-73.23063805013938,spot_peer,metac-claude-3-5-sonnet-latest,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236041,47.56119116032779,spot_baseline,metac-claude-3-5-sonnet-20240620,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236041,30.988571608838576,baseline,metac-claude-3-5-sonnet-20240620,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236041,114.01296810441993,peer,metac-claude-3-5-sonnet-20240620,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236041,0.7061491061955345,relative_legacy,metac-claude-3-5-sonnet-20240620,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236041,159.59517344997903,spot_peer,metac-claude-3-5-sonnet-20240620,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236043,-21.107933596096803,baseline,metac-grok-2-1212,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236043,14.175990207825214,spot_peer,metac-grok-2-1212,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236043,10.872841486777212,peer,metac-grok-2-1212,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236043,-37.1457013741808,spot_baseline,metac-grok-2-1212,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236043,-0.5742147813324286,relative_legacy,metac-grok-2-1212,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236045,45.80092966137434,peer,metac-Gemini-Exp-1206,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236045,-3.9933866594392806,baseline,metac-Gemini-Exp-1206,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236045,-0.1723546927751905,relative_legacy,metac-Gemini-Exp-1206,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236045,66.70681528492325,spot_peer,metac-Gemini-Exp-1206,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236045,-6.546416910142253,spot_baseline,metac-Gemini-Exp-1206,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236047,57.7283715999236,peer,metac-Llama-3.1,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236047,13.853147112092469,spot_baseline,metac-Llama-3.1,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236047,0.0811281347745046,relative_legacy,metac-Llama-3.1,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236047,101.72743580173524,spot_peer,metac-Llama-3.1,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,236047,7.5304871718611555,baseline,metac-Llama-3.1,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,237476,-39.85888131825488,spot_baseline,NextWorldLab,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,237476,-8.12176142640523,baseline,NextWorldLab,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,237476,2.0563061930904847,peer,NextWorldLab,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,237476,9.518182564893328,spot_peer,NextWorldLab,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,237476,-0.1699563650990853,relative_legacy,NextWorldLab,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,239758,61.95561348219499,peer,metac-perplexity,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,239758,121.19488181996228,spot_peer,metac-perplexity,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,239758,12.52943479293368,baseline,metac-perplexity,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,239758,0.2149922609296599,relative_legacy,metac-perplexity,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,239758,25.192963641259237,spot_baseline,metac-perplexity,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,240416,-110.21583439422676,baseline,metac-o1-preview,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,240416,-2.513572017458049,relative_legacy,metac-o1-preview,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,240416,-205.07609519562476,spot_peer,metac-o1-preview,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,240416,-164.8603702518786,spot_baseline,metac-o1-preview,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31262,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:02:43.857529+00,240416,-128.5923592928648,peer,metac-o1-preview,True,0,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31730 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,191935,35.442793118617544,peer,pgodzinai,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,191935,39.78500442867083,spot_baseline,pgodzinai,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,191935,44.62599257396263,spot_peer,pgodzinai,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,191935,0.5375366593266778,relative_legacy,pgodzinai,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,191935,29.697640718451176,baseline,pgodzinai,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,191975,50.13932101818845,spot_baseline,jkraybill_bot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,191975,5.928968445664896,peer,jkraybill_bot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,191975,0.1067340289942446,relative_legacy,jkraybill_bot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,191975,55.62745395032511,spot_peer,jkraybill_bot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,191975,5.344024058145207,baseline,jkraybill_bot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,192418,-91.30804349727111,spot_baseline,InstitutPelFutur,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,192418,-94.66037084735068,spot_peer,InstitutPelFutur,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,192418,-0.4883020559645309,relative_legacy,InstitutPelFutur,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,192418,-15.311895434386694,peer,InstitutPelFutur,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,192418,-14.94128832934773,baseline,InstitutPelFutur,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,192924,35.08931381288994,spot_peer,acm_bot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,192924,30.80930677119065,spot_baseline,acm_bot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,192924,0.30995492844334,relative_legacy,acm_bot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,192924,21.904352792353304,peer,acm_bot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,192924,19.15450749739445,baseline,acm_bot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,218666,-71.30722320169069,baseline,GreeneiBot2,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,218666,-96.47678939460071,spot_peer,GreeneiBot2,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,218666,-2.387560003954066,relative_legacy,GreeneiBot2,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,218666,-93.01761389468292,spot_baseline,GreeneiBot2,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,218666,-79.03554864104616,peer,GreeneiBot2,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,220077,50.319638540344656,spot_baseline,mmBot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,220077,46.96830239186646,baseline,mmBot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,220077,55.81904131761608,spot_peer,mmBot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,220077,0.7829705304536806,relative_legacy,mmBot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,220077,47.18245414217743,peer,mmBot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,222631,-55.78588635871294,peer,Grizeu_Bot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,222631,-99.09001754724164,spot_peer,Grizeu_Bot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,222631,-95.47712274422727,spot_baseline,Grizeu_Bot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,222631,-1.727384498141213,relative_legacy,Grizeu_Bot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,222631,-53.16462754425357,baseline,Grizeu_Bot,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236037,44.77514673006903,spot_peer,metac-o1,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236037,0.5034143497518434,relative_legacy,metac-o1,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236037,27.16495375607936,baseline,metac-o1,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236037,31.173379829890084,peer,metac-o1,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236037,39.92538481088862,spot_baseline,metac-o1,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236038,-68.31282661426748,peer,metac-gpt-4o,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236038,-63.97517076367595,baseline,metac-gpt-4o,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236038,-92.02748266987552,spot_baseline,metac-gpt-4o,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236038,-2.1282707736219333,relative_legacy,metac-gpt-4o,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236038,-95.42477496824286,spot_peer,metac-gpt-4o,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236040,0.1068274280984624,relative_legacy,metac-claude-3-5-sonnet-latest,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236040,23.23481233057305,spot_peer,metac-claude-3-5-sonnet-latest,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236040,19.65212890548064,spot_baseline,metac-claude-3-5-sonnet-latest,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236040,12.490661497652743,baseline,metac-claude-3-5-sonnet-latest,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236040,14.652476354563786,peer,metac-claude-3-5-sonnet-latest,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236041,39.40418705267732,peer,metac-claude-3-5-sonnet-20240620,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236041,0.7528187815356029,relative_legacy,metac-claude-3-5-sonnet-20240620,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236041,60.05825669625767,spot_peer,metac-claude-3-5-sonnet-20240620,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236041,35.262314526712046,baseline,metac-claude-3-5-sonnet-20240620,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236041,54.30948830847794,spot_baseline,metac-claude-3-5-sonnet-20240620,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236043,-0.2999208285494213,relative_legacy,metac-grok-2-1212,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236043,-2.137218313937581,peer,metac-grok-2-1212,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236043,-3.365608180434628,baseline,metac-grok-2-1212,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236043,-5.889151782819132,spot_baseline,metac-grok-2-1212,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236043,-3.902798400745457,spot_peer,metac-grok-2-1212,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236047,19.652129655480703,spot_baseline,metac-Llama-3.1,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236047,0.0736971096932128,relative_legacy,metac-Llama-3.1,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236047,7.944425182634319,peer,metac-Llama-3.1,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236047,6.742409216264743,baseline,metac-Llama-3.1,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,236047,23.234813127448117,spot_peer,metac-Llama-3.1,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,237476,4.347986252131207,baseline,NextWorldLab,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,237476,5.2050506740810025,peer,NextWorldLab,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,237476,0.0464803357933997,relative_legacy,NextWorldLab,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,237476,23.23481233057305,spot_peer,NextWorldLab,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,237476,19.65212890548064,spot_baseline,NextWorldLab,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,239758,4.160992349528679,peer,metac-perplexity,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,239758,5.268025782891358,spot_baseline,metac-perplexity,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,239758,7.951702762821938,spot_peer,metac-perplexity,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,239758,-0.0966001619498153,relative_legacy,metac-perplexity,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,239758,2.641349911849105,baseline,metac-perplexity,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,239759,5.268025782891358,spot_baseline,metac-exa,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,239759,1.7407493476831524,baseline,metac-exa,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,239759,2.568275433419462,peer,metac-exa,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,239759,-0.0658676715064173,relative_legacy,metac-exa,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,239759,7.951702762821938,spot_peer,metac-exa,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,240416,5.016019986742768,peer,metac-o1-preview,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,240416,-0.1694201347978794,relative_legacy,metac-o1-preview,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,240416,7.951702762821938,spot_peer,metac-o1-preview,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,240416,5.268025782891358,spot_baseline,metac-o1-preview,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31263,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:02:43.897918+00,240416,3.490971413506234,baseline,metac-o1-preview,True,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31731 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,191935,17.305437067540616,spot_peer,pgodzinai,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,191935,0.0379879119903303,relative_legacy,pgodzinai,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,191935,34.737467319715925,baseline,pgodzinai,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,191935,5.298080859466352,peer,pgodzinai,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,191935,89.53026213333065,spot_baseline,pgodzinai,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,192418,-8.824921767144145,baseline,InstitutPelFutur,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,192418,-0.219538305470795,relative_legacy,InstitutPelFutur,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,192418,-14.839457274952869,peer,InstitutPelFutur,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,192418,-86.52752754674262,spot_peer,InstitutPelFutur,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,192924,0.0524407666109753,peer,acm_bot,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,192924,4.576559587449684,spot_peer,acm_bot,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,192924,72.2466024471091,spot_baseline,acm_bot,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,192924,-0.0449198936632711,relative_legacy,acm_bot,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,192924,44.5859033670039,baseline,acm_bot,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,218666,18.89297994234927,spot_peer,GreeneiBot2,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,218666,91.6858764699754,spot_baseline,GreeneiBot2,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,218666,0.0842946541390938,relative_legacy,GreeneiBot2,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,218666,10.340639455193122,peer,GreeneiBot2,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,218666,63.67316224683028,baseline,GreeneiBot2,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,220077,62.72965573011903,baseline,mmBot,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,220077,1.3070708541071132,spot_peer,mmBot,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,220077,-0.0815358427518916,relative_legacy,mmBot,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,220077,-2.346304713179178,peer,mmBot,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,222631,10.814172576509243,peer,Grizeu_Bot,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,222631,0.1004356323937834,relative_legacy,Grizeu_Bot,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,222631,54.22310466580134,baseline,Grizeu_Bot,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,222631,98.5500430304885,spot_baseline,Grizeu_Bot,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,222631,23.948224996807365,spot_peer,Grizeu_Bot,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236037,6.430380849353033,peer,metac-o1,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236037,57.48134229884592,baseline,metac-o1,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236037,0.0338571602998534,relative_legacy,metac-o1,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236037,13.821518392597849,spot_peer,metac-o1,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236038,-12.50855150144958,peer,metac-gpt-4o,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236038,-12.880639612248432,spot_peer,metac-gpt-4o,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236038,33.6307574209038,baseline,metac-gpt-4o,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236038,-0.2147847372724919,relative_legacy,metac-gpt-4o,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236040,-0.0183406801449912,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236040,7.7484369221033,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236040,2.079845178003963,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236040,48.4463204267292,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236041,-6.62392963010972,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236041,-5.550147016759831,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236041,-0.1359788335383852,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236041,37.77187863662664,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236043,7.7484369221033,spot_peer,metac-grok-2-1212,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236043,1.8826487913340488,peer,metac-grok-2-1212,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236043,43.25644624080183,baseline,metac-grok-2-1212,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236043,-0.0205804978018211,relative_legacy,metac-grok-2-1212,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236043,76.55347463629771,spot_baseline,metac-grok-2-1212,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236045,58.496250072115615,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236045,33.69491787930499,baseline,metac-Gemini-Exp-1206,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236045,-5.809380587352635,peer,metac-Gemini-Exp-1206,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236045,-0.1241189869317898,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236045,-5.550147016759831,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236047,-0.1176611630407001,relative_legacy,metac-Llama-3.1,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236047,58.496250072115615,spot_baseline,metac-Llama-3.1,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236047,-5.550147016759831,spot_peer,metac-Llama-3.1,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236047,-5.390879411270099,peer,metac-Llama-3.1,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,236047,31.44511761493448,baseline,metac-Llama-3.1,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,237476,-0.0921464476293365,relative_legacy,NextWorldLab,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,237476,9.011994216014743,baseline,NextWorldLab,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,237476,-20.754611653581374,spot_peer,NextWorldLab,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,237476,-5.308422757324107,peer,NextWorldLab,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,239758,0.0196334396365942,relative_legacy,metac-perplexity,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,239758,41.92907264884727,baseline,metac-perplexity,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,239758,4.738302860887886,peer,metac-perplexity,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,239758,13.821518392597849,spot_peer,metac-perplexity,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,239759,44.53861851639567,baseline,metac-exa,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,239759,13.821518392597849,spot_peer,metac-exa,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,239759,0.0221726004511043,relative_legacy,metac-exa,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,239759,4.987709777602561,peer,metac-exa,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,240416,55.68049836824164,baseline,metac-o1-preview,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,240416,6.202704760677037,peer,metac-o1-preview,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,240416,0.0338550575059484,relative_legacy,metac-o1-preview,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31264,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:02:43.940868+00,240416,13.821518392597849,spot_peer,metac-o1-preview,True,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,2025-01-20 03:27:00+00,31732 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,185699,0.039660630793315,relative_legacy,MWG,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,185699,14.663415214464944,spot_peer,MWG,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,185699,32.19489112546035,baseline,MWG,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,185699,9.804942247027515,peer,MWG,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,185699,42.21088922957006,spot_baseline,MWG,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,187708,14.025951577204074,baseline,twsummerbot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,187708,-0.1827052351082649,relative_legacy,twsummerbot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,187708,-9.706539527975911,spot_peer,twsummerbot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,187708,21.036695415411053,spot_baseline,twsummerbot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,187708,-6.919021604175205,peer,twsummerbot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,189869,34.03373627279495,baseline,VeritasAI,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,189869,53.50264792820728,spot_baseline,VeritasAI,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,189869,27.65940697989129,spot_peer,VeritasAI,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,189869,0.1525746355507419,relative_legacy,VeritasAI,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,189869,17.40841800293308,peer,VeritasAI,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,191026,24.02135371217408,spot_baseline,manticAI,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,191026,-0.0580291189479041,relative_legacy,manticAI,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,191026,-6.271415232234009,spot_peer,manticAI,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,191026,7.088937289856777,baseline,manticAI,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,191026,-1.8431143127330096,peer,manticAI,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,191935,11.145898539515914,spot_peer,pgodzinai,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,191935,34.73448977611042,baseline,pgodzinai,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,191935,7.450420883820482,peer,pgodzinai,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,191935,0.0096641704589946,relative_legacy,pgodzinai,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,191935,39.15464310161983,spot_baseline,pgodzinai,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,192418,-0.2200581386544436,relative_legacy,InstitutPelFutur,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,192418,-12.303428907521692,peer,InstitutPelFutur,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,192418,1.8902362733465448,baseline,InstitutPelFutur,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,192418,-28.806893096866396,spot_peer,InstitutPelFutur,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,192418,4.441072130058007,spot_baseline,InstitutPelFutur,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,192924,-1.626402321301081,baseline,acm_bot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,192924,-2.8619310159853275,spot_baseline,acm_bot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,192924,-37.2121177639784,spot_peer,acm_bot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,192924,-0.3650768983153285,relative_legacy,acm_bot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,192924,-21.406542646241643,peer,acm_bot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,218666,45.252167551486814,baseline,GreeneiBot2,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,218666,23.595314131404105,peer,GreeneiBot2,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,218666,0.2219525563215362,relative_legacy,GreeneiBot2,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,218666,56.4873062249703,spot_baseline,GreeneiBot2,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,218666,31.094531275633194,spot_peer,GreeneiBot2,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,220077,34.82437977702911,baseline,mmBot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,220077,8.55905341100081,spot_peer,mmBot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,220077,-0.0209796010757157,relative_legacy,mmBot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,220077,36.90702464285426,spot_baseline,mmBot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,220077,5.14815049625797,peer,mmBot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,222631,4.282463508878831,spot_peer,Grizeu_Bot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,222631,33.191246570706056,spot_baseline,Grizeu_Bot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,222631,-0.0751617049453422,relative_legacy,Grizeu_Bot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,222631,0.8515572751426699,peer,Grizeu_Bot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,222631,30.53589608931809,baseline,Grizeu_Bot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236037,47.22264612970255,spot_baseline,metac-o1,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236037,30.786610489800875,baseline,metac-o1,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236037,13.11671274714203,peer,metac-o1,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236037,0.0909356587654461,relative_legacy,metac-o1,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236037,20.43158234792496,spot_peer,metac-o1,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236038,-59.06268616709895,peer,metac-gpt-4o,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236038,-46.497352071792704,spot_baseline,metac-gpt-4o,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236038,-87.43330897581542,spot_peer,metac-gpt-4o,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236038,-0.8916907311645415,relative_legacy,metac-gpt-4o,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236038,-30.83680072602821,baseline,metac-gpt-4o,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236040,36.39038680889823,spot_baseline,metac-claude-3-5-sonnet-latest,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236040,21.10436405771797,baseline,metac-claude-3-5-sonnet-latest,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236040,4.451169719596377,peer,metac-claude-3-5-sonnet-latest,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236040,-0.0123012213497161,relative_legacy,metac-claude-3-5-sonnet-latest,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236040,7.964440896246081,spot_peer,metac-claude-3-5-sonnet-latest,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236041,41.36653946827729,spot_baseline,metac-claude-3-5-sonnet-20240620,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236041,0.03268914628148,relative_legacy,metac-claude-3-5-sonnet-20240620,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236041,24.42201203759475,baseline,metac-claude-3-5-sonnet-20240620,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236041,7.901506965804418,peer,metac-claude-3-5-sonnet-20240620,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236041,13.691630142027572,spot_peer,metac-claude-3-5-sonnet-20240620,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236043,21.65549581948299,baseline,metac-grok-2-1212,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236043,42.13531722256466,spot_baseline,metac-grok-2-1212,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236043,14.576437339100185,spot_peer,metac-grok-2-1212,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236043,0.0374489363947662,relative_legacy,metac-grok-2-1212,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236043,7.422672249058356,peer,metac-grok-2-1212,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236045,31.274882680096734,spot_baseline,metac-Gemini-Exp-1206,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236045,2.0768682595821373,spot_peer,metac-Gemini-Exp-1206,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236045,17.358989757104318,baseline,metac-Gemini-Exp-1206,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236045,-0.0549821514225783,relative_legacy,metac-Gemini-Exp-1206,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236045,1.0293675808188287,peer,metac-Gemini-Exp-1206,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236047,20.24398966433073,baseline,metac-Llama-3.1,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236047,0.022943702304345,relative_legacy,metac-Llama-3.1,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236047,12.667890027058862,spot_peer,metac-Llama-3.1,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236047,40.47704780369384,spot_baseline,metac-Llama-3.1,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,236047,6.261803233624526,peer,metac-Llama-3.1,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,237476,4.441072130058007,spot_baseline,NextWorldLab,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,237476,-15.181826802446324,peer,NextWorldLab,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,237476,2.3181421889166454,baseline,NextWorldLab,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,237476,-0.2740227082278494,relative_legacy,NextWorldLab,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,237476,-28.806893096866396,spot_peer,NextWorldLab,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,239758,18.935819413602147,baseline,metac-perplexity,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,239758,0.0468160757533518,relative_legacy,metac-perplexity,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,239758,16.62163867288092,spot_peer,metac-perplexity,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,239758,43.91232049926883,spot_baseline,metac-perplexity,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,239758,7.153610572894997,peer,metac-perplexity,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,240416,3.6784324829008654,peer,metac-o1-preview,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,240416,35.06809497440755,spot_baseline,metac-o1-preview,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,240416,6.442579311070206,spot_peer,metac-o1-preview,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,240416,-0.0283005303602446,relative_legacy,metac-o1-preview,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,240416,21.501813881639094,baseline,metac-o1-preview,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,241713,4.282463508878831,spot_peer,X_bot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,241713,33.191246570706056,spot_baseline,X_bot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,241713,29.251834806856657,baseline,X_bot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,241713,1.0166434617072475,peer,X_bot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,241713,-0.0738418679004641,relative_legacy,X_bot,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,241715,0.4258983900834235,peer,CatrachoCaster,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,241715,-0.0151904092929169,relative_legacy,CatrachoCaster,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,241715,6.41346514014386,baseline,CatrachoCaster,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,241715,2.076868259582114,spot_peer,CatrachoCaster,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31274,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:14:37.68834+00,241715,31.27488268009672,spot_baseline,CatrachoCaster,True,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31742 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,187708,-70.93265051504912,spot_peer,twsummerbot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,187708,-38.035505969233455,peer,twsummerbot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,187708,-35.52352281779822,baseline,twsummerbot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,187708,-66.89628476461075,spot_baseline,twsummerbot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,187708,-1.099225386753794,relative_legacy,twsummerbot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,189869,-0.6915515122077727,spot_peer,VeritasAI,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,189869,-0.2201445028413681,relative_legacy,VeritasAI,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,189869,-6.651393505457848,peer,VeritasAI,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,189869,4.014026833059119e-14,baseline,VeritasAI,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,189869,4.440892098500624e-14,spot_baseline,VeritasAI,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,191026,3.0184118638441224,baseline,manticAI,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,191026,2.9651947601105157,peer,manticAI,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,191026,8.24249525893246,spot_peer,manticAI,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,191026,0.0443405960295967,relative_legacy,manticAI,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,191026,8.508615972514548,spot_baseline,manticAI,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,191935,14.411755979010454,spot_peer,pgodzinai,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,191935,0.085740980178202,relative_legacy,pgodzinai,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,191935,4.292631743909326,peer,pgodzinai,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,191935,4.284373467998386,baseline,pgodzinai,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,191935,14.384102372588831,spot_baseline,pgodzinai,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,192418,-58.36869561728359,spot_peer,InstitutPelFutur,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,192418,-54.93061343340551,spot_baseline,InstitutPelFutur,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,192418,-0.7087191430171911,relative_legacy,InstitutPelFutur,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,192418,-24.350146979125743,peer,InstitutPelFutur,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,192418,-22.95312166907499,baseline,InstitutPelFutur,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,192924,-19.061052856988574,spot_peer,acm_bot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,192924,-9.968643016629509,baseline,acm_bot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,192924,-11.307187915640077,peer,acm_bot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,192924,-0.3763075203400593,relative_legacy,acm_bot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,192924,-17.494763185505484,spot_baseline,acm_bot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,218666,20.73301236287111,baseline,GreeneiBot2,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,218666,20.409385362975684,peer,GreeneiBot2,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,218666,0.4532253114592869,relative_legacy,GreeneiBot2,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,218666,30.694891079962343,spot_peer,GreeneiBot2,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,218666,29.891850087781112,spot_baseline,GreeneiBot2,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,220077,39.41450152384962,spot_peer,mmBot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,220077,35.84988572190419,baseline,mmBot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,220077,34.72326236352732,peer,mmBot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,220077,0.7760295132643524,relative_legacy,mmBot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,220077,38.19624098672137,spot_baseline,mmBot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,222631,-35.81238970222191,baseline,Grizeu_Bot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,222631,-38.71367246487868,peer,Grizeu_Bot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,222631,-1.1229683122708936,relative_legacy,Grizeu_Bot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,222631,-66.46160840821432,spot_peer,Grizeu_Bot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,222631,-62.638149424768095,spot_baseline,Grizeu_Bot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236037,0.5162844182632155,relative_legacy,metac-o1,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236037,35.698675467189354,spot_peer,metac-o1,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236037,34.65735902799731,spot_baseline,metac-o1,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236037,22.20216211055474,baseline,metac-o1,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236037,22.40210147296096,peer,metac-o1,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236038,-66.08779324911586,spot_baseline,metac-gpt-4o,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236038,-70.08373442377949,spot_peer,metac-gpt-4o,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236038,-43.5912928249751,baseline,metac-gpt-4o,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236038,-48.42931166336178,peer,metac-gpt-4o,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236038,-1.38419315109053,relative_legacy,metac-gpt-4o,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236040,19.905131874353344,baseline,metac-claude-3-5-sonnet-latest,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236040,20.292544192808958,peer,metac-claude-3-5-sonnet-latest,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236040,34.65735902799731,spot_baseline,metac-claude-3-5-sonnet-latest,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236040,35.698675467189354,spot_peer,metac-claude-3-5-sonnet-latest,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236040,0.4826554219901599,relative_legacy,metac-claude-3-5-sonnet-latest,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236041,35.698675467189354,spot_peer,metac-claude-3-5-sonnet-20240620,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236041,34.65735902799731,spot_baseline,metac-claude-3-5-sonnet-20240620,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236041,20.263585282949798,baseline,metac-claude-3-5-sonnet-20240620,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236041,20.545456649152687,peer,metac-claude-3-5-sonnet-20240620,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236041,0.4857474673256791,relative_legacy,metac-claude-3-5-sonnet-20240620,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236043,12.138504972291722,peer,metac-grok-2-1212,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236043,0.2750840684351273,relative_legacy,metac-grok-2-1212,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236043,23.98363902319334,spot_peer,metac-grok-2-1212,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236043,23.50018146228682,spot_baseline,metac-grok-2-1212,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236043,11.928477528774977,baseline,metac-grok-2-1212,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236045,-0.6915515122077727,spot_peer,metac-Gemini-Exp-1206,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236045,-0.0003382171500423,baseline,metac-Gemini-Exp-1206,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236045,-0.4752042440279417,peer,metac-Gemini-Exp-1206,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236045,-0.071530509853231,relative_legacy,metac-Gemini-Exp-1206,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236045,4.440892098500624e-14,spot_baseline,metac-Gemini-Exp-1206,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236047,0.0008121263548965,baseline,metac-Llama-3.1,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236047,4.440892098500624e-14,spot_baseline,metac-Llama-3.1,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236047,-0.6915515122077727,spot_peer,metac-Llama-3.1,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236047,-0.0637112153711075,relative_legacy,metac-Llama-3.1,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,236047,-0.3919631353789771,peer,metac-Llama-3.1,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,237476,28.768207307678107,spot_baseline,NextWorldLab,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,237476,15.467636125891364,baseline,NextWorldLab,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,237476,15.801710627330056,peer,NextWorldLab,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,237476,0.3690506134128665,relative_legacy,NextWorldLab,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,237476,29.515066160854197,spot_peer,NextWorldLab,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,239758,0.0003557964101572,baseline,metac-perplexity,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,239758,4.440892098500624e-14,spot_baseline,metac-perplexity,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,239758,-0.6915515122077727,spot_peer,metac-perplexity,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,239758,-0.0478282222397249,relative_legacy,metac-perplexity,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,239758,-0.195534212760442,peer,metac-perplexity,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,239759,-0.0845417323791964,peer,metac-exa,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,239759,0.004492269745054,baseline,metac-exa,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,239759,4.440892098500624e-14,spot_baseline,metac-exa,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,239759,-0.6915515122077727,spot_peer,metac-exa,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,239759,-0.0150286169097234,relative_legacy,metac-exa,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,240416,34.65735902799731,spot_baseline,metac-o1-preview,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,240416,35.698675467189354,spot_peer,metac-o1-preview,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,240416,20.632034496178026,baseline,metac-o1-preview,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,240416,20.850175821507214,peer,metac-o1-preview,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,240416,0.4901255757182555,relative_legacy,metac-o1-preview,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,241713,3.913470564984084e-14,baseline,X_bot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,241713,-0.6915515122077727,spot_peer,X_bot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,241713,4.440892098500624e-14,spot_baseline,X_bot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,241713,-5.786506144331423,peer,X_bot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31275,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:14:37.728111+00,241713,-0.2053395978721568,relative_legacy,X_bot,True,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31743 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,189869,-35.95708592029606,peer,VeritasAI,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,189869,-0.5122094853065708,relative_legacy,VeritasAI,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,189869,-29.129467970029317,baseline,VeritasAI,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,189869,-29.25241373392043,spot_peer,VeritasAI,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,191026,-0.2616203599564694,relative_legacy,manticAI,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,191026,-62.29273501176123,spot_baseline,manticAI,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,191026,-18.39475309964036,baseline,manticAI,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,191026,-15.099348362685824,peer,manticAI,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,191026,-51.159276170837,spot_peer,manticAI,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,191935,31.034012061215048,spot_baseline,pgodzinai,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,191935,9.049593905947232,peer,pgodzinai,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,191935,16.325218859375926,baseline,pgodzinai,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,191935,0.0662018102398516,relative_legacy,pgodzinai,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,191935,16.76435401385088,spot_peer,pgodzinai,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,191975,-0.0631047182046313,relative_legacy,jkraybill_bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,191975,-24.129446496130083,spot_peer,jkraybill_bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,191975,-25.15387669959645,spot_baseline,jkraybill_bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,191975,-3.0847474852856918,baseline,jkraybill_bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,191975,-2.9591164133148133,peer,jkraybill_bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,192418,49.89362551559948,spot_peer,InstitutPelFutur,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,192418,21.01456129663383,peer,InstitutPelFutur,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,192418,0.2118611315162435,relative_legacy,InstitutPelFutur,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,192418,32.27600948661279,baseline,InstitutPelFutur,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,192924,-5.822340845928407,spot_peer,acm_bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,192924,-3.200827470529373,peer,acm_bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,192924,0.0,baseline,acm_bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,192924,-0.0864574762421126,relative_legacy,acm_bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,192924,0.0,spot_baseline,acm_bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,218666,29.507243999298943,spot_peer,GreeneiBot2,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,218666,48.54268271702416,spot_baseline,GreeneiBot2,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,218666,0.2062423911609322,relative_legacy,GreeneiBot2,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,218666,19.75675382053376,peer,GreeneiBot2,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,218666,36.22016209590881,baseline,GreeneiBot2,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,220077,28.79135283025504,peer,mmBot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,220077,0.3076277227397359,relative_legacy,mmBot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,220077,36.751495505428856,spot_peer,mmBot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,220077,54.61862954066701,baseline,mmBot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,222631,49.89362551559948,spot_peer,Grizeu_Bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,222631,0.4724859685501674,relative_legacy,Grizeu_Bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,222631,41.907356144052585,peer,Grizeu_Bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,222631,69.89153562539772,baseline,Grizeu_Bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236037,18.722106831065023,peer,metac-o1,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236037,29.507243999298943,spot_peer,metac-o1,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236037,48.54268271702416,spot_baseline,metac-o1,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236037,31.425482749473705,baseline,metac-o1,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236037,0.204865315302792,relative_legacy,metac-o1,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236038,-29.25241373392043,spot_peer,metac-gpt-4o,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236038,-32.19280948873623,spot_baseline,metac-gpt-4o,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236038,-21.25033953899253,baseline,metac-gpt-4o,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236038,-20.69654659593353,peer,metac-gpt-4o,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236038,-0.3267603836861066,relative_legacy,metac-gpt-4o,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236040,-0.3820501038735234,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236040,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236040,-43.27320995949531,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236040,-29.685374838258117,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236040,-25.049897360622392,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236041,-0.2710191116933877,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236041,-29.25241373392043,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236041,-18.895635009187146,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236041,-32.19280948873623,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236041,-17.235709698121735,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236043,-30.34601829925056,peer,metac-grok-2-1212,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236043,-73.69655941662063,spot_baseline,metac-grok-2-1212,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236043,-59.45903134135744,spot_peer,metac-grok-2-1212,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236043,-37.57925249569232,baseline,metac-grok-2-1212,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236043,-0.4728429033108308,relative_legacy,metac-grok-2-1212,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236045,-51.45731728297583,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236045,-23.33213490475348,peer,metac-Gemini-Exp-1206,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236045,-27.74448966198433,baseline,metac-Gemini-Exp-1206,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236045,-0.3702872460156625,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,236045,-43.27320995949531,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,237476,0.2822000272827806,relative_legacy,NextWorldLab,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,237476,67.80719051126377,spot_baseline,NextWorldLab,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,237476,43.52804022487383,spot_peer,NextWorldLab,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,237476,24.424379746595186,peer,NextWorldLab,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,237476,37.50423766786,baseline,NextWorldLab,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,239758,13.321422617436816,spot_peer,metac-perplexity,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,239758,26.303440583379377,spot_baseline,metac-perplexity,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,239758,11.271985464356472,baseline,metac-perplexity,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,239758,5.63672115527163,peer,metac-perplexity,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,239758,3.255318418284832e-05,relative_legacy,metac-perplexity,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,239759,12.134872580161,baseline,metac-exa,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,239759,0.0086614243422281,relative_legacy,metac-exa,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,239759,6.167677138970095,peer,metac-exa,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,239759,26.303440583379377,spot_baseline,metac-exa,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,239759,13.321422617436816,spot_peer,metac-exa,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,240416,-31.16836374139217,baseline,metac-o1-preview,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,240416,-0.4007587961872906,relative_legacy,metac-o1-preview,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,240416,-51.45731728297583,spot_baseline,metac-o1-preview,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,240416,-26.60425292060303,peer,metac-o1-preview,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,240416,-43.27320995949531,spot_peer,metac-o1-preview,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,241713,33.35314599984073,baseline,X_bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,241713,37.85116232537298,spot_baseline,X_bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,241713,21.725906923158156,spot_peer,X_bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,241713,0.1264675250096821,relative_legacy,X_bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,241713,14.04240888141903,peer,X_bot,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,241715,0.1143925843396661,relative_legacy,CatrachoCaster,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,241715,82.10298589546805,spot_baseline,CatrachoCaster,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,241715,53.93258500251808,spot_peer,CatrachoCaster,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,241715,10.968026195367404,peer,CatrachoCaster,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31276,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:14:37.768168+00,241715,16.83162951607606,baseline,CatrachoCaster,True,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,2025-01-21 11:42:00+00,31744 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,185699,-0.6255876482751729,relative_legacy,MWG,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,185699,-38.92127665903593,peer,MWG,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,185699,-1.123974625895872,baseline,MWG,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,185699,-101.96288047813788,spot_peer,MWG,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,185699,-2.980354095749345,spot_baseline,MWG,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,191935,18.87975573214485,spot_peer,pgodzinai,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,191935,61.09102734320473,spot_baseline,pgodzinai,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,191935,56.50145982924292,baseline,pgodzinai,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,191935,11.04903510861746,peer,pgodzinai,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,191935,-0.0301054541956302,relative_legacy,pgodzinai,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,192418,0.0562328206820749,baseline,InstitutPelFutur,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,192418,-0.0005638626002127,relative_legacy,InstitutPelFutur,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,192418,41.40831163286813,spot_baseline,InstitutPelFutur,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,192418,-0.0247742471440271,peer,InstitutPelFutur,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,192418,-18.24307821955973,spot_peer,InstitutPelFutur,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,192924,14.345613374740688,peer,acm_bot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,192924,44.6932244526494,baseline,acm_bot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,192924,65.09082034567898,spot_baseline,acm_bot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,192924,26.423615718603127,spot_peer,acm_bot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,192924,0.0504370690808662,relative_legacy,acm_bot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,218666,14.071795741697295,peer,GreeneiBot2,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,218666,0.0195521422795515,relative_legacy,GreeneiBot2,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,218666,63.50366895572229,spot_baseline,GreeneiBot2,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,218666,23.430148842757497,spot_peer,GreeneiBot2,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,218666,52.98896401478358,baseline,GreeneiBot2,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,220077,-0.3798336415081488,relative_legacy,mmBot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,220077,36.09774607665728,baseline,mmBot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,220077,44.50972407740524,spot_baseline,mmBot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,220077,-12.393620203263858,spot_peer,mmBot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,220077,-15.95098275876509,peer,mmBot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,222631,9.98164545890723,peer,Grizeu_Bot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,222631,57.81832789439861,baseline,Grizeu_Bot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,222631,-0.0452204929550918,relative_legacy,Grizeu_Bot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,222631,17.523545799947016,spot_peer,Grizeu_Bot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,222631,60.37195792696046,spot_baseline,Grizeu_Bot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236037,50.10898050691946,spot_peer,metac-o1,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236037,0.2917668562553608,relative_legacy,metac-o1,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236037,77.64892143867597,spot_baseline,metac-o1,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236037,33.83367963443815,peer,metac-o1,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236037,59.25741577116432,baseline,metac-o1,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236038,0.3474332404778331,relative_legacy,metac-gpt-4o,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236038,62.52087376041795,baseline,metac-gpt-4o,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236038,80.0935923563223,spot_baseline,metac-gpt-4o,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236038,54.71978289201345,spot_peer,metac-gpt-4o,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236038,38.16042720739544,peer,metac-gpt-4o,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236040,11.851927949625756,peer,metac-claude-3-5-sonnet-latest,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236040,0.0140958164574661,relative_legacy,metac-claude-3-5-sonnet-latest,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236040,44.05058206902329,baseline,metac-claude-3-5-sonnet-latest,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236040,63.07269335734931,spot_baseline,metac-claude-3-5-sonnet-latest,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236040,22.617301885503775,spot_peer,metac-claude-3-5-sonnet-latest,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236041,10.524641254090954,spot_peer,metac-claude-3-5-sonnet-20240620,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236041,40.26192152896953,baseline,metac-claude-3-5-sonnet-20240620,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236041,3.336852109024591,peer,metac-claude-3-5-sonnet-20240620,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236041,56.66110307576336,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236041,-0.1046672587703122,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236043,29.33430322707789,spot_peer,metac-grok-2-1212,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236043,15.292902734404043,peer,metac-grok-2-1212,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236043,41.746523942898975,baseline,metac-grok-2-1212,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236043,66.63408169327622,spot_baseline,metac-grok-2-1212,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236043,0.0750851017601845,relative_legacy,metac-grok-2-1212,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236045,8.211072125798784,spot_peer,metac-Gemini-Exp-1206,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236045,36.99666485604828,baseline,metac-Gemini-Exp-1206,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236045,1.8140344766899528,peer,metac-Gemini-Exp-1206,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236045,-0.1150355793018999,relative_legacy,metac-Gemini-Exp-1206,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236045,55.43443693579063,spot_baseline,metac-Gemini-Exp-1206,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236047,42.34082682925324,baseline,metac-Llama-3.1,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236047,34.09496876565084,spot_peer,metac-Llama-3.1,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236047,69.15821081848341,spot_baseline,metac-Llama-3.1,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236047,0.1140832201415393,relative_legacy,metac-Llama-3.1,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,236047,17.989871117756525,peer,metac-Llama-3.1,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,237476,-77.15857452950229,peer,NextWorldLab,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,237476,-96.32069555921352,spot_peer,NextWorldLab,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,237476,-1.2050008892427255,relative_legacy,NextWorldLab,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,237476,0.0111610964585777,spot_baseline,NextWorldLab,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,237476,0.0083078229829168,baseline,NextWorldLab,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,239758,60.18718471264461,spot_baseline,metac-perplexity,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,239758,17.17505195109425,spot_peer,metac-perplexity,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,239758,-0.0198134114631113,relative_legacy,metac-perplexity,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,239758,7.181012477864271,peer,metac-perplexity,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,239758,32.033066088123725,baseline,metac-perplexity,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,239759,-49.53271226881568,spot_peer,metac-exa,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,239759,24.81838823226814,spot_baseline,metac-exa,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,239759,14.315246502323138,baseline,metac-exa,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,239759,-31.208023332849997,peer,metac-exa,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,239759,-0.5508922911727789,relative_legacy,metac-exa,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,240416,69.01783458123786,spot_baseline,metac-o1-preview,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,240416,20.67428918857108,peer,metac-o1-preview,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,240416,50.6879444464812,baseline,metac-o1-preview,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,240416,0.122380915853769,relative_legacy,metac-o1-preview,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,240416,33.83021039476733,spot_peer,metac-o1-preview,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,241713,47.27972468943313,baseline,X_bot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,241713,-9.1205241691301,peer,X_bot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,241713,-0.2873235249431949,relative_legacy,X_bot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,241713,-1.3030396077032056,spot_peer,X_bot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,241713,50.390006418160446,spot_baseline,X_bot,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,241715,15.49492224633766,spot_baseline,CatrachoCaster,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,241715,-67.11735275967528,spot_peer,CatrachoCaster,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,241715,-0.4686669015808773,relative_legacy,CatrachoCaster,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,241715,-27.198930883305263,peer,CatrachoCaster,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31286,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:20:20.411756+00,241715,6.147340105122511,baseline,CatrachoCaster,True,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31754 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,187708,24.86029482916755,spot_peer,twsummerbot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,187708,74.38377999734847,spot_baseline,twsummerbot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,187708,0.318272606857629,relative_legacy,twsummerbot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,187708,45.21817427301569,baseline,twsummerbot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,187708,15.285009864244518,peer,twsummerbot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,191026,61.81047192181884,baseline,manticAI,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,191026,0.2536232970057371,relative_legacy,manticAI,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,191026,65.10726721360639,spot_baseline,manticAI,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,191026,15.068420224106449,spot_peer,manticAI,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,191026,20.705635210769596,peer,manticAI,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,191935,0.4739571101521233,relative_legacy,pgodzinai,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,191935,89.83545497863568,spot_baseline,pgodzinai,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,191935,45.30574186395995,baseline,pgodzinai,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,191935,20.76301993506805,peer,pgodzinai,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,191935,41.17039619830404,spot_peer,pgodzinai,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,192924,-0.1799713701771961,relative_legacy,acm_bot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,192924,-2.5511295094028874,peer,acm_bot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,192924,32.72378216629621,baseline,acm_bot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,192924,47.63291851653738,spot_baseline,acm_bot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,192924,-3.3767256227997184,spot_peer,acm_bot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,218666,51.730970613391136,spot_peer,GreeneiBot2,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,218666,39.36876258318914,peer,GreeneiBot2,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,218666,76.38494515973534,baseline,GreeneiBot2,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,218666,0.927105065741415,relative_legacy,GreeneiBot2,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,218666,99.84020968766556,spot_baseline,GreeneiBot2,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,220077,77.68441423062488,spot_baseline,mmBot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,220077,62.16134526771239,baseline,mmBot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,220077,0.4538736148611514,relative_legacy,mmBot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,220077,28.34429763095931,spot_peer,mmBot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,220077,22.625227607153175,peer,mmBot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,222631,57.711642745361935,baseline,Grizeu_Bot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,222631,18.9091303752457,peer,Grizeu_Bot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,222631,25.070312217456745,spot_peer,Grizeu_Bot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,222631,74.5827438388856,spot_baseline,Grizeu_Bot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,222631,0.3712186187129201,relative_legacy,Grizeu_Bot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236037,39.92538481088806,spot_baseline,metac-o1,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236037,30.011466206519987,baseline,metac-o1,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236037,-9.295053281900584,peer,metac-o1,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236037,-0.3819009927381592,relative_legacy,metac-o1,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236037,-11.512455645429553,spot_peer,metac-o1,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236038,18.994667955513528,peer,metac-gpt-4o,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236038,57.936430537534186,baseline,metac-gpt-4o,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236038,74.5827438388856,spot_baseline,metac-gpt-4o,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236038,25.070312217456745,spot_peer,metac-gpt-4o,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236038,0.3720791060794078,relative_legacy,metac-gpt-4o,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236040,0.0198129268322065,relative_legacy,metac-claude-3-5-sonnet-latest,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236040,57.7591320578249,spot_baseline,metac-claude-3-5-sonnet-latest,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236040,39.87119094916349,baseline,metac-claude-3-5-sonnet-latest,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236040,4.819634540424832,peer,metac-claude-3-5-sonnet-latest,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236040,7.3120553374482276,spot_peer,metac-claude-3-5-sonnet-latest,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236041,0.1728613041752724,relative_legacy,metac-claude-3-5-sonnet-20240620,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236041,15.447785397776194,spot_peer,metac-claude-3-5-sonnet-20240620,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236041,46.07331234363223,baseline,metac-claude-3-5-sonnet-20240620,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236041,65.46666579918825,spot_baseline,metac-claude-3-5-sonnet-20240620,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236041,10.59076873997711,peer,metac-claude-3-5-sonnet-20240620,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236043,-0.2910694332179956,relative_legacy,metac-grok-2-1212,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236043,39.92538481088862,spot_baseline,metac-grok-2-1212,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236043,24.77571336430731,baseline,metac-grok-2-1212,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236043,-7.002782843974515,peer,metac-grok-2-1212,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236043,-11.51245564542897,spot_peer,metac-grok-2-1212,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236045,-59.87224427212048,spot_peer,metac-Gemini-Exp-1206,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236045,-1.1345262007131536,relative_legacy,metac-Gemini-Exp-1206,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236045,-3.726398498545668,baseline,metac-Gemini-Exp-1206,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236045,-37.87348865404248,peer,metac-Gemini-Exp-1206,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236045,-5.889151782819132,spot_baseline,metac-Gemini-Exp-1206,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236047,5.268025782891358,spot_baseline,metac-Llama-3.1,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236047,3.174651235249061,baseline,metac-Llama-3.1,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236047,-28.71158044403106,peer,metac-Llama-3.1,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236047,-0.8819797677125164,relative_legacy,metac-Llama-3.1,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,236047,-48.095223508314966,spot_peer,metac-Llama-3.1,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,237476,5.268025782891358,spot_baseline,NextWorldLab,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,237476,4.033220032553066,baseline,NextWorldLab,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,237476,-37.94749338222756,peer,NextWorldLab,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,237476,-1.1614021053910173,relative_legacy,NextWorldLab,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,237476,-48.095223508314966,spot_peer,NextWorldLab,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,239758,-6.006844272163473,peer,metac-perplexity,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,239758,39.92538481088806,spot_baseline,metac-perplexity,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,239758,-11.512455645429553,spot_peer,metac-perplexity,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,239758,-0.2581918414636713,relative_legacy,metac-perplexity,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,239758,20.8342171308365,baseline,metac-perplexity,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,239759,39.92538481088806,spot_baseline,metac-exa,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,239759,23.364652945937188,baseline,metac-exa,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,239759,-6.581567781640109,peer,metac-exa,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,239759,-0.2765777957243475,relative_legacy,metac-exa,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,239759,-11.512455645429553,spot_peer,metac-exa,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,240416,74.5827438388856,spot_baseline,metac-o1-preview,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,240416,17.6383138728822,peer,metac-o1-preview,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,240416,0.3599794310411038,relative_legacy,metac-o1-preview,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,240416,53.41533332684153,baseline,metac-o1-preview,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,240416,25.070312217456745,spot_peer,metac-o1-preview,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,241713,-5.773159728050847e-13,spot_baseline,X_bot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,241713,-53.65591739025645,spot_peer,X_bot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,241713,-53.73023051508588,peer,X_bot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,241713,-1.5089095008143378,relative_legacy,X_bot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31287,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:20:20.454618+00,241713,-5.416475452216517e-13,baseline,X_bot,True,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31755 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,187708,-13.083734426331816,peer,twsummerbot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,187708,21.86430458321268,baseline,twsummerbot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,187708,-0.1849566192685027,relative_legacy,twsummerbot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,187708,-22.1620788710092,spot_peer,twsummerbot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,187708,35.16283291027824,spot_baseline,twsummerbot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,189869,0.090283075851966,relative_legacy,VeritasAI,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,189869,7.962218073645876,spot_peer,VeritasAI,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,189869,74.02996632122759,baseline,VeritasAI,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,189869,6.963848793773114,peer,VeritasAI,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,191935,52.896006875366346,baseline,pgodzinai,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,191935,3.763808668415059,peer,pgodzinai,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,191935,71.36958148433588,spot_baseline,pgodzinai,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,191935,4.1893571049092255,spot_peer,pgodzinai,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,191935,0.042430332889166,relative_legacy,pgodzinai,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,192418,13.963851526840486,spot_peer,InstitutPelFutur,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,192418,0.0889591519773262,peer,InstitutPelFutur,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,192418,0.0010825368630566,relative_legacy,InstitutPelFutur,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,192418,0.5402312216047535,baseline,InstitutPelFutur,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,192418,84.79969065549501,spot_baseline,InstitutPelFutur,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,192924,-5.179911936524754,spot_peer,acm_bot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,192924,58.496250072115615,spot_baseline,acm_bot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,192924,-0.0457439337772184,relative_legacy,acm_bot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,192924,40.4006040545138,baseline,acm_bot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,192924,-2.8836671852565754,peer,acm_bot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,218666,46.714366615301344,baseline,GreeneiBot2,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,218666,0.0112397529768968,relative_legacy,GreeneiBot2,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,218666,0.8061648087371015,spot_peer,GreeneiBot2,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,218666,66.72109124808708,spot_baseline,GreeneiBot2,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,218666,1.3002943262542463,peer,GreeneiBot2,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,220077,60.84978840880064,baseline,mmBot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,220077,7.962218073645876,spot_peer,mmBot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,220077,6.963848793773114,peer,mmBot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,220077,0.090283075851966,relative_legacy,mmBot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,222631,0.090283075851966,relative_legacy,Grizeu_Bot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,222631,7.962218073645876,spot_peer,Grizeu_Bot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,222631,72.77117948586513,baseline,Grizeu_Bot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,222631,6.963848793773114,peer,Grizeu_Bot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236037,57.103008192328765,baseline,metac-o1,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236037,7.962218073645876,spot_peer,metac-o1,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236037,76.55347463629771,spot_baseline,metac-o1,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236037,6.633649829085181,peer,metac-o1,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236037,0.0808829217126738,relative_legacy,metac-o1,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236038,-12.424163442654663,spot_peer,metac-gpt-4o,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236038,37.83992386801045,baseline,metac-gpt-4o,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236038,-9.250789957886562,peer,metac-gpt-4o,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236038,-0.1280662559900238,relative_legacy,metac-gpt-4o,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236040,0.0185561380716357,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236040,1.838325192455655,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236040,47.06327066525086,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236040,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236040,1.596632782920235,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236041,34.31210370257316,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236041,48.54268271702416,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236041,-12.424163442654663,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236041,-0.1178267641298921,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236041,-8.163929499836383,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236043,-5.179911936524754,spot_peer,metac-grok-2-1212,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236043,36.40221235493606,baseline,metac-grok-2-1212,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236043,-2.460113052556185,peer,metac-grok-2-1212,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236043,-0.0398859845775843,relative_legacy,metac-grok-2-1212,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236043,58.496250072115615,spot_baseline,metac-grok-2-1212,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236045,0.0371845773686921,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236045,81.55754288625727,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236045,11.604201662374328,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236045,20.47206935747924,baseline,metac-Gemini-Exp-1206,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236045,3.0919759187770133,peer,metac-Gemini-Exp-1206,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236047,15.956251776741578,baseline,metac-Llama-3.1,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236047,-0.2351578045971616,relative_legacy,metac-Llama-3.1,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236047,-28.609984824516783,spot_peer,metac-Llama-3.1,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236047,-16.692517495927504,peer,metac-Llama-3.1,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,237476,-15.514343636584448,peer,NextWorldLab,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,237476,-0.2125974912278461,relative_legacy,NextWorldLab,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,237476,-20.20550051879544,spot_peer,NextWorldLab,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,237476,29.6219549303334,baseline,NextWorldLab,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,239758,19.640909760219447,spot_peer,metac-perplexity,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,239758,48.84837767249046,baseline,metac-perplexity,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,239758,10.95759376764653,peer,metac-perplexity,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,239758,0.1400267780485141,relative_legacy,metac-perplexity,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,239759,39.43486349621205,baseline,metac-exa,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,239759,1.6219393110864997,peer,metac-exa,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,239759,0.0142485974097217,relative_legacy,metac-exa,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,239759,1.596632782920235,spot_peer,metac-exa,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,239759,67.80719051126377,spot_baseline,metac-exa,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,240416,61.73553033990889,baseline,metac-o1-preview,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,240416,0.1402037761644436,relative_legacy,metac-o1-preview,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,240416,13.963851526840486,spot_peer,metac-o1-preview,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,240416,10.921786927779843,peer,metac-o1-preview,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,241713,0.090283075851966,relative_legacy,X_bot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,241713,6.963848793773114,peer,X_bot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,241713,71.81933097906267,baseline,X_bot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,241713,76.55347463629771,spot_baseline,X_bot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,241713,7.962218073645876,spot_peer,X_bot,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,241715,-0.9869773513108,spot_peer,CatrachoCaster,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,241715,64.25732238912514,spot_baseline,CatrachoCaster,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,241715,-0.024633014190344,peer,CatrachoCaster,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,241715,25.488748413615543,baseline,CatrachoCaster,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31288,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:20:20.496831+00,241715,-0.0062531403630776,relative_legacy,CatrachoCaster,True,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,2025-01-22 20:19:00+00,31756 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,187708,-2.730141485981404,baseline,twsummerbot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,187708,-5.093315326775298,spot_baseline,twsummerbot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,187708,44.13618146141539,spot_peer,twsummerbot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,187708,0.2168820774755073,relative_legacy,twsummerbot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,187708,24.46173503001056,peer,twsummerbot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,191026,32.68313354188134,spot_baseline,manticAI,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,191026,24.94187364980212,baseline,manticAI,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,191026,64.02642898982552,peer,manticAI,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,191026,1.1123037256484545,relative_legacy,manticAI,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,191026,84.0113219338863,spot_peer,manticAI,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,191935,68.71549134949286,peer,pgodzinai,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,191935,31.37967175880953,baseline,pgodzinai,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,191935,36.69845022067596,spot_baseline,pgodzinai,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,191935,88.24971176150284,spot_peer,pgodzinai,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,191935,1.2305690381221654,relative_legacy,pgodzinai,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,192418,31.503614379165768,baseline,InstitutPelFutur,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,192418,88.24972076891113,spot_peer,InstitutPelFutur,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,192418,1.2309763314060471,relative_legacy,InstitutPelFutur,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,192418,68.74428264212702,peer,InstitutPelFutur,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,192418,36.69845875401013,spot_baseline,InstitutPelFutur,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,192924,-81.54848065427716,baseline,acm_bot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,192924,-106.41158395913104,spot_baseline,acm_bot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,192924,-62.81087987273789,spot_peer,acm_bot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,192924,-1.959603421955618,relative_legacy,acm_bot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,192924,-49.055271337862486,peer,acm_bot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,218666,66.21910722161614,peer,GreeneiBot2,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,218666,34.258950385538576,spot_baseline,GreeneiBot2,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,218666,85.67468415774671,spot_peer,GreeneiBot2,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,218666,1.1663272123336863,relative_legacy,GreeneiBot2,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,218666,27.4123816380499,baseline,GreeneiBot2,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,220077,30.809542570635767,spot_baseline,mmBot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,220077,63.36814624341714,peer,mmBot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,220077,1.0864807629482596,relative_legacy,mmBot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,220077,82.03364257534929,spot_peer,mmBot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,220077,27.01862109668165,baseline,mmBot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,222631,0.9531747377294056,relative_legacy,Grizeu_Bot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,222631,25.5412811882992,spot_baseline,Grizeu_Bot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,222631,76.47270000510514,spot_peer,Grizeu_Bot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,222631,22.91762278498813,baseline,Grizeu_Bot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,222631,58.27633516736133,peer,Grizeu_Bot,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236037,-7.385182959091012,baseline,metac-o1,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236037,-9.116077839697322,spot_baseline,metac-o1,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236037,39.88993214221993,spot_peer,metac-o1,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236037,0.1561894722290098,relative_legacy,metac-o1,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236037,28.829521409855715,peer,metac-o1,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236038,25.5412811882992,spot_baseline,metac-gpt-4o,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236038,76.47270000510514,spot_peer,metac-gpt-4o,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236038,20.9385601941653,baseline,metac-gpt-4o,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236038,58.70961721021024,peer,metac-gpt-4o,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236038,0.9636353315670128,relative_legacy,metac-gpt-4o,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236040,-151.1752954706275,baseline,metac-claude-3-5-sonnet-latest,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236040,-199.44916232823192,spot_baseline,metac-claude-3-5-sonnet-latest,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236040,-161.0172125956777,spot_peer,metac-claude-3-5-sonnet-latest,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236040,-3.9689589852958926,relative_legacy,metac-claude-3-5-sonnet-latest,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236040,-123.15407285942293,peer,metac-claude-3-5-sonnet-latest,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236041,-153.11229772155207,baseline,metac-claude-3-5-sonnet-20240620,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236041,-199.44910232831091,spot_baseline,metac-claude-3-5-sonnet-20240620,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236041,-161.0171492624278,spot_peer,metac-claude-3-5-sonnet-20240620,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236041,-4.024582584255547,relative_legacy,metac-claude-3-5-sonnet-20240620,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236041,-125.10351689324042,peer,metac-claude-3-5-sonnet-20240620,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236043,-64.77273039858008,peer,metac-grok-2-1212,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236043,-2.335356361840238,relative_legacy,metac-grok-2-1212,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236043,-95.48238379788934,spot_peer,metac-grok-2-1212,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236043,-137.36353504611662,spot_baseline,metac-grok-2-1212,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236043,-94.16839607534632,baseline,metac-grok-2-1212,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236045,42.99590021588633,peer,metac-Gemini-Exp-1206,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236045,6.330131648571384,baseline,metac-Gemini-Exp-1206,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236045,8.717669757238886,spot_baseline,metac-Gemini-Exp-1206,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236045,58.71444349454147,spot_peer,metac-Gemini-Exp-1206,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236045,0.5689974708028903,relative_legacy,metac-Gemini-Exp-1206,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236047,-3.4855142968339785,relative_legacy,metac-Llama-3.1,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236047,-133.85120403715715,baseline,metac-Llama-3.1,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236047,-161.0172125956777,spot_peer,metac-Llama-3.1,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236047,-107.34680406194693,peer,metac-Llama-3.1,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,236047,-199.44916232823192,spot_baseline,metac-Llama-3.1,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,237476,39.88993214221836,spot_peer,NextWorldLab,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,237476,0.0506522670526294,relative_legacy,NextWorldLab,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,237476,7.795822303971553,peer,NextWorldLab,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,237476,-1.7815854560516815,baseline,NextWorldLab,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,237476,-9.116077839698802,spot_baseline,NextWorldLab,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,239758,-77.2170464719871,peer,metac-perplexity,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,239758,-128.2786714524999,spot_peer,metac-perplexity,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,239758,-168.43370229785296,spot_baseline,metac-perplexity,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,239758,-102.60590306535484,baseline,metac-perplexity,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,239758,-2.617192310860473,relative_legacy,metac-perplexity,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,239759,8.717669757238886,spot_baseline,metac-exa,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,239759,38.30859854203517,peer,metac-exa,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,239759,5.519568371082851,baseline,metac-exa,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,239759,0.5127377015395341,relative_legacy,metac-exa,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,239759,58.71444349454147,spot_peer,metac-exa,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,240416,-76.27055565699533,baseline,metac-o1-preview,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,240416,-52.88590436563297,spot_peer,metac-o1-preview,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,240416,-1.8148800396850864,relative_legacy,metac-o1-preview,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,240416,-43.80154430276949,peer,metac-o1-preview,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31317,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:56:24.55544+00,240416,-97.008975583979,spot_baseline,metac-o1-preview,True,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31793 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,185690,11.30779469161817,baseline,annabot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,185690,0.7792009502060064,peer,annabot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,185690,-3.967608310544126e-05,relative_legacy,annabot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,185690,3.925178562326084,spot_peer,annabot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,185690,50.080205305715765,spot_baseline,annabot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,187708,-12.26576515901999,peer,twsummerbot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,187708,11.295440522564942,baseline,twsummerbot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,187708,18.1420640280142,spot_baseline,twsummerbot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,187708,-19.266836520398154,spot_peer,twsummerbot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,187708,-0.2166154371083307,relative_legacy,twsummerbot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,189869,-0.1222846798594612,relative_legacy,VeritasAI,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,189869,-4.954992227243508,spot_peer,VeritasAI,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,189869,-4.07533524740229,peer,VeritasAI,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,189869,30.307992096481748,baseline,VeritasAI,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,191026,-55.55613785976016,spot_peer,manticAI,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,191026,-31.83258582071665,spot_baseline,manticAI,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,191026,-0.6379290981657476,relative_legacy,manticAI,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,191026,-41.980691396474825,peer,manticAI,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,191026,-23.78723686995077,baseline,manticAI,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,191935,12.087184729727635,baseline,pgodzinai,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,191935,13.750352374993504,spot_baseline,pgodzinai,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,191935,-22.455896334813303,spot_peer,pgodzinai,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,191935,-0.3253832714206666,relative_legacy,pgodzinai,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,191935,-19.288405742954225,peer,pgodzinai,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,192418,-11.000615624313973,peer,InstitutPelFutur,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,192418,-13.34041874542353,spot_peer,InstitutPelFutur,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,192418,22.366660993670205,baseline,InstitutPelFutur,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,192418,-0.2167076252130035,relative_legacy,InstitutPelFutur,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,192418,26.303440583379377,spot_baseline,InstitutPelFutur,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,192924,7.563190582759537,peer,acm_bot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,192924,44.79305243744106,baseline,acm_bot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,192924,0.0370683982425156,relative_legacy,acm_bot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,192924,10.036524725588928,spot_peer,acm_bot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,192924,58.496250072115615,spot_baseline,acm_bot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,218666,24.82725058131782,baseline,GreeneiBot2,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,218666,-5.401531859634049,peer,GreeneiBot2,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,218666,-0.1330763877749264,relative_legacy,GreeneiBot2,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,218666,-7.236056941959397,spot_peer,GreeneiBot2,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,218666,34.709867062226834,spot_baseline,GreeneiBot2,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,220077,32.768825145935885,baseline,mmBot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,220077,-0.1167357217495127,relative_legacy,mmBot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,220077,-4.954992227243508,spot_peer,mmBot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,220077,37.85116232537298,spot_baseline,mmBot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,220077,-3.355988811274277,peer,mmBot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,222631,-0.0385233572526445,relative_legacy,Grizeu_Bot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,222631,2.808700093622583,spot_peer,Grizeu_Bot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,222631,36.86544202815328,baseline,Grizeu_Bot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,222631,1.9705022738409956,peer,Grizeu_Bot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,222631,48.54268271702416,spot_baseline,Grizeu_Bot,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236037,46.83196982374217,baseline,metac-o1,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236037,8.104906387585114,peer,metac-o1,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236037,10.036524725588928,spot_peer,metac-o1,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236037,0.0429986636797035,relative_legacy,metac-o1,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236037,58.496250072115615,spot_baseline,metac-o1,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236038,47.83146054824568,baseline,metac-gpt-4o,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236038,8.49011267396606,peer,metac-gpt-4o,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236038,0.0465300682771316,relative_legacy,metac-gpt-4o,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236038,10.036524725588928,spot_peer,metac-gpt-4o,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236038,58.496250072115615,spot_baseline,metac-gpt-4o,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236040,44.02675785016279,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236040,10.036524725588928,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236040,0.0370565670626196,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236040,7.453096925369219,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236041,0.1080499046732016,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236041,51.6923512854477,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236041,16.797703130477338,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236041,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236041,12.729258177074003,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236043,6.631564119289285,peer,metac-grok-2-1212,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236043,10.036524725588928,spot_peer,metac-grok-2-1212,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236043,58.496250072115615,spot_baseline,metac-grok-2-1212,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236043,39.920161715915945,baseline,metac-grok-2-1212,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236043,0.0346414831935395,relative_legacy,metac-grok-2-1212,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236045,58.496250072115615,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236045,10.036524725588928,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236045,0.0346396500844525,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236045,40.42642742706321,baseline,metac-Gemini-Exp-1206,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236045,6.729699720378719,peer,metac-Gemini-Exp-1206,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236047,16.797703130477338,spot_peer,metac-Llama-3.1,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236047,45.18230757698339,baseline,metac-Llama-3.1,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236047,10.984902808331553,peer,metac-Llama-3.1,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,236047,0.0966551252123238,relative_legacy,metac-Llama-3.1,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,237476,-0.0771776560879203,relative_legacy,NextWorldLab,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,237476,13.750352374993504,spot_baseline,NextWorldLab,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,237476,2.969588953209594,baseline,NextWorldLab,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,237476,-4.845333215223039,peer,NextWorldLab,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,237476,-22.455896334813303,spot_peer,NextWorldLab,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,239758,48.54268271702416,spot_baseline,metac-perplexity,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,239758,2.808700093622583,spot_peer,metac-perplexity,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,239758,-0.0273228346000097,relative_legacy,metac-perplexity,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,239758,1.4767250209728826,peer,metac-perplexity,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,239758,29.369507614227093,baseline,metac-perplexity,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,239759,-0.0294079513065069,relative_legacy,metac-exa,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,239759,1.5720202276701192,peer,metac-exa,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,239759,31.22937848450701,baseline,metac-exa,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,239759,48.54268271702416,spot_baseline,metac-exa,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,239759,2.808700093622583,spot_peer,metac-exa,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,240416,17.856237650332893,peer,metac-o1-preview,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,240416,0.1764448612465585,relative_legacy,metac-o1-preview,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,240416,23.14885398743718,spot_peer,metac-o1-preview,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,240416,59.09111850722861,baseline,metac-o1-preview,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,241715,35.470360091041826,baseline,CatrachoCaster,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,241715,73.4655433479005,spot_baseline,CatrachoCaster,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,241715,20.906539746535383,spot_peer,CatrachoCaster,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,241715,0.0929629746696303,relative_legacy,CatrachoCaster,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31318,Will the S&P 500 index go up in January 2025?,2025-01-21 13:56:24.614038+00,241715,9.87224953852026,peer,CatrachoCaster,True,yes,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31794 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,185699,-70.10992942813617,spot_peer,MWG,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,185699,-29.90172878643969,spot_baseline,MWG,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,185699,-13.367788071702442,baseline,MWG,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,185699,-31.42686018317052,peer,MWG,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,185699,-0.4250939694938674,relative_legacy,MWG,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,187708,27.51874817959396,spot_baseline,twsummerbot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,187708,3.1981650164628315,baseline,twsummerbot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,187708,-0.4675603348367466,peer,twsummerbot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,187708,-0.0070461041580834,relative_legacy,twsummerbot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,187708,-4.023142973207055,spot_peer,twsummerbot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,191026,-0.8133057527447551,relative_legacy,manticAI,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,191026,-24.454899293066408,baseline,manticAI,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,191026,-32.98758100431187,spot_baseline,manticAI,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,191026,-73.66152055606469,spot_peer,manticAI,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,191026,-57.16848105758473,peer,manticAI,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,191935,49.92789075722226,baseline,pgodzinai,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,191935,65.89393243583083,spot_baseline,pgodzinai,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,191935,40.14389884030275,spot_peer,pgodzinai,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,191935,0.350554666023156,relative_legacy,pgodzinai,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,191935,28.5370648409529,peer,pgodzinai,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,191975,0.0081992984285078,relative_legacy,jkraybill_bot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,191975,2.800369525659907,spot_peer,jkraybill_bot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,191975,33.447457431266315,spot_baseline,jkraybill_bot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,191975,0.67647396936179,peer,jkraybill_bot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,191975,8.124247524648267,baseline,jkraybill_bot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,192418,34.267859476860075,spot_peer,InstitutPelFutur,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,192418,0.3073183457386762,relative_legacy,InstitutPelFutur,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,192418,52.20500970739839,baseline,InstitutPelFutur,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,192418,26.467862012751315,peer,InstitutPelFutur,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,192418,60.78844916119508,spot_baseline,InstitutPelFutur,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,192924,51.84492471460312,baseline,acm_bot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,192924,42.0315517977262,spot_peer,acm_bot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,192924,0.3712328259231697,relative_legacy,acm_bot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,192924,30.241997935443912,peer,acm_bot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,192924,67.53404748720378,spot_baseline,acm_bot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,218666,15.811303451450833,baseline,GreeneiBot2,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,218666,-15.63558907593471,peer,GreeneiBot2,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,218666,-0.250526457657686,relative_legacy,GreeneiBot2,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,218666,18.84324174411861,spot_baseline,GreeneiBot2,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,218666,-14.00801895270776,spot_peer,GreeneiBot2,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,220077,-32.376388575956405,peer,mmBot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,220077,-0.4693257107069614,relative_legacy,mmBot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,220077,-30.583867118077613,spot_peer,mmBot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,220077,4.441072130058007,spot_baseline,mmBot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,220077,3.896797850228356,baseline,mmBot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,222631,44.98278652757055,spot_peer,Grizeu_Bot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,222631,70.09827121356034,spot_baseline,Grizeu_Bot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,222631,61.30689880955944,baseline,Grizeu_Bot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,222631,37.14081244555482,peer,Grizeu_Bot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,222631,0.4408041931560064,relative_legacy,Grizeu_Bot,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236037,23.6470967961249,baseline,metac-o1,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236037,-0.1028576344630682,relative_legacy,metac-o1,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236037,-1.9531367847776464,spot_peer,metac-o1,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236037,29.317303519295955,spot_baseline,metac-o1,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236037,-4.66445933064705,peer,metac-o1,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236038,67.53404748720378,spot_baseline,metac-gpt-4o,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236038,55.94480793242504,baseline,metac-gpt-4o,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236038,32.19349059198696,peer,metac-gpt-4o,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236038,0.389727073327911,relative_legacy,metac-gpt-4o,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236038,42.0315517977262,spot_peer,metac-gpt-4o,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236040,-16.594864081222866,spot_peer,metac-claude-3-5-sonnet-latest,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236040,-0.2347129681490961,relative_legacy,metac-claude-3-5-sonnet-latest,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236040,-14.612453338272202,peer,metac-claude-3-5-sonnet-latest,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236040,12.40843288969801,baseline,metac-claude-3-5-sonnet-latest,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236040,16.595623285353042,spot_baseline,metac-claude-3-5-sonnet-latest,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236041,31.274882680096702,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236041,23.78950147120216,baseline,metac-claude-3-5-sonnet-20240620,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236041,-2.084574304703268,peer,metac-claude-3-5-sonnet-20240620,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236041,-0.0664477295341067,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236041,0.2998942383708785,spot_peer,metac-claude-3-5-sonnet-20240620,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236043,47.22264612970255,spot_baseline,metac-grok-2-1212,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236043,18.654608326713756,spot_peer,metac-grok-2-1212,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236043,0.1312312764294508,relative_legacy,metac-grok-2-1212,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236043,31.4596540339973,baseline,metac-grok-2-1212,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236043,11.354837117131124,peer,metac-grok-2-1212,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236045,32.64361136356849,spot_peer,metac-Gemini-Exp-1206,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236045,0.2640806605695751,relative_legacy,metac-Gemini-Exp-1206,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236045,21.977997690453574,peer,metac-Gemini-Exp-1206,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236045,42.71321547568305,baseline,metac-Gemini-Exp-1206,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236045,59.37719728499754,spot_baseline,metac-Gemini-Exp-1206,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236047,-13.09214772051414,spot_peer,metac-Llama-3.1,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236047,-9.589746750288178,peer,metac-Llama-3.1,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236047,12.705505428069923,baseline,metac-Llama-3.1,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236047,19.63900994246932,spot_baseline,metac-Llama-3.1,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,236047,-0.1527097762151582,relative_legacy,metac-Llama-3.1,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,237476,1.2377486307924266,peer,NextWorldLab,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,237476,6.801041197196908,baseline,NextWorldLab,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,237476,0.0121289802231803,relative_legacy,NextWorldLab,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,237476,6.782079389789582,spot_peer,NextWorldLab,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,237476,36.90702464285426,spot_baseline,NextWorldLab,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,239758,24.70444644029363,spot_peer,metac-perplexity,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,239758,52.47913700607404,spot_baseline,metac-perplexity,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,239758,30.30020214241571,baseline,metac-perplexity,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,239758,13.853157995827514,peer,metac-perplexity,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,239758,0.1758205975558285,relative_legacy,metac-perplexity,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,239759,-46.497352071792704,spot_baseline,metac-exa,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,239759,-55.3114066439924,peer,metac-exa,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,239759,-28.31704295392909,baseline,metac-exa,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,239759,-0.770807353310894,relative_legacy,metac-exa,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,239759,-89.21028299702667,spot_peer,metac-exa,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,240416,25.362931976185557,peer,metac-o1-preview,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,240416,35.37776643633967,spot_peer,metac-o1-preview,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,240416,61.75280815669113,spot_baseline,metac-o1-preview,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,240416,0.3015956345185053,relative_legacy,metac-o1-preview,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,240416,48.25110663172829,baseline,metac-o1-preview,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,241715,21.036695415411053,spot_baseline,CatrachoCaster,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,241715,-5.70685561105582,peer,CatrachoCaster,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,241715,10.24099616925602,baseline,CatrachoCaster,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,241715,-0.0730530431492846,relative_legacy,CatrachoCaster,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31332,What will be Egypt's inflation rate for January 2025?,2025-01-21 14:23:31.956169+00,241715,-11.483513549187132,spot_peer,CatrachoCaster,True,Less than 25%,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31808 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,187708,38.29038978289832,spot_peer,twsummerbot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,187708,25.33644953390768,spot_baseline,twsummerbot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,187708,13.097778657068512,baseline,twsummerbot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,187708,19.88719001631683,peer,twsummerbot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,187708,0.3444440696771248,relative_legacy,twsummerbot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,191026,10.638176972173508,spot_peer,manticAI,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,191026,-0.6594924293586324,baseline,manticAI,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,191026,-0.8603836552000212,spot_baseline,manticAI,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,191026,9.304932585060406,peer,manticAI,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,191026,-0.0038341073516996,relative_legacy,manticAI,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,191935,2.4508133568342547e-14,baseline,pgodzinai,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,191935,3.3306690738754684e-14,spot_baseline,pgodzinai,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,191935,11.54635971932914,spot_peer,pgodzinai,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,191935,0.0112372891224521,relative_legacy,pgodzinai,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,191935,9.499190461040376,peer,pgodzinai,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,192418,0.4985564860656832,relative_legacy,InstitutPelFutur,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,192418,32.94590709170469,spot_peer,InstitutPelFutur,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,192418,20.273255405408463,spot_baseline,InstitutPelFutur,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,192418,17.30255388558082,baseline,InstitutPelFutur,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,192418,30.766517648532208,peer,InstitutPelFutur,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,192924,-11.157177565709834,spot_baseline,acm_bot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,192924,-8.618344278292133,baseline,acm_bot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,192924,0.9453258445088352,peer,acm_bot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,192924,-0.2326349282549839,relative_legacy,acm_bot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,192924,-0.2306610444757294,spot_peer,acm_bot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,218666,15.992238853284816,baseline,GreeneiBot2,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,218666,27.32703176536015,peer,GreeneiBot2,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,218666,32.94590709170382,spot_peer,GreeneiBot2,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,218666,0.4724665749770881,relative_legacy,GreeneiBot2,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,218666,20.27325540540764,spot_baseline,GreeneiBot2,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,220077,17.498162855646292,baseline,mmBot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,220077,31.950953920730772,peer,mmBot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,220077,0.5070774322047621,relative_legacy,mmBot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,220077,32.938905557352065,spot_peer,mmBot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,220077,20.266622372863864,spot_baseline,mmBot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,222631,-2.4796240714650586,relative_legacy,Grizeu_Bot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,222631,-86.38942921884531,baseline,Grizeu_Bot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,222631,-82.23716676305581,peer,Grizeu_Bot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,222631,-99.62151341969594,spot_baseline,Grizeu_Bot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,222631,-93.6096822236833,spot_peer,Grizeu_Bot,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236037,0.3714557583271711,relative_legacy,metac-o1,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236037,15.754052602264949,spot_baseline,metac-o1,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236037,12.569002700965012,baseline,metac-o1,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236037,23.87387282139105,peer,metac-o1,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236037,28.17563746616432,spot_peer,metac-o1,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236038,-9.768540073784228,baseline,metac-gpt-4o,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236038,0.4310769466834862,peer,metac-gpt-4o,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236038,-0.2744948023299048,relative_legacy,metac-gpt-4o,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236038,-0.9378605210885604,spot_peer,metac-gpt-4o,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236038,-11.827156017237774,spot_baseline,metac-gpt-4o,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236040,-25.54128118829888,spot_baseline,metac-claude-3-5-sonnet-latest,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236040,-15.413881534986386,spot_peer,metac-claude-3-5-sonnet-latest,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236040,-0.5356980586866613,relative_legacy,metac-claude-3-5-sonnet-latest,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236040,-10.56481570773126,peer,metac-claude-3-5-sonnet-latest,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236040,-19.015336227952726,baseline,metac-claude-3-5-sonnet-latest,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236041,0.0143276973186985,relative_legacy,metac-claude-3-5-sonnet-20240620,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236041,6.550315845288381e-13,spot_baseline,metac-claude-3-5-sonnet-20240620,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236041,11.546359719329788,spot_peer,metac-claude-3-5-sonnet-20240620,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236041,9.858811518989924,peer,metac-claude-3-5-sonnet-20240620,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236041,0.0061949014779576,baseline,metac-claude-3-5-sonnet-20240620,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236043,-33.62017227537705,peer,metac-grok-2-1212,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236043,-39.591934709145605,baseline,metac-grok-2-1212,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236043,-51.99664939787022,spot_peer,metac-grok-2-1212,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236043,-60.19864021629409,spot_baseline,metac-grok-2-1212,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236043,-1.1441564019884414,relative_legacy,metac-grok-2-1212,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236045,-6.115579933222477,baseline,metac-Gemini-Exp-1206,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236045,2.2162310529291545,spot_peer,metac-Gemini-Exp-1206,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236045,-8.839069262905207,spot_baseline,metac-Gemini-Exp-1206,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236045,2.3384965413992185,peer,metac-Gemini-Exp-1206,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236045,-0.1722919779890221,relative_legacy,metac-Gemini-Exp-1206,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236047,-0.471776604649016,relative_legacy,metac-Llama-3.1,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236047,-15.04863594041252,spot_peer,metac-Llama-3.1,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236047,-25.195259046070998,spot_baseline,metac-Llama-3.1,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236047,-9.039157039139935,peer,metac-Llama-3.1,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,236047,-16.03719867010844,baseline,metac-Llama-3.1,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,237476,-1.666270511507289,baseline,NextWorldLab,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,237476,3.4106299815316525,spot_peer,NextWorldLab,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,237476,-7.707533435808098,spot_baseline,NextWorldLab,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,237476,-0.0572676189867377,relative_legacy,NextWorldLab,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,237476,0.737334740253774,peer,NextWorldLab,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,239758,15.247159103454038,baseline,metac-perplexity,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,239758,22.863231788037965,peer,metac-perplexity,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,239758,0.4096557060576531,relative_legacy,metac-perplexity,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,239758,26.94982494404169,spot_baseline,metac-perplexity,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,239758,39.99339716026199,spot_peer,metac-perplexity,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,239759,9.11607783969736,spot_baseline,metac-exa,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,239759,21.16888632789853,spot_peer,metac-exa,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,239759,0.1480126699586732,relative_legacy,metac-exa,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,239759,5.65611064620119,baseline,metac-exa,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,239759,13.64323630703556,peer,metac-exa,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,240416,-94.85599924429546,spot_baseline,metac-o1-preview,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,240416,-2.0997233240596853,relative_legacy,metac-o1-preview,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,240416,-88.57941726076056,spot_peer,metac-o1-preview,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,240416,-67.96589112003663,peer,metac-o1-preview,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31333,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:23:31.997141+00,240416,-73.32660382938053,baseline,metac-o1-preview,True,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31809 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,185699,22.594450754247664,baseline,MWG,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,185699,-14.671021365612242,spot_peer,MWG,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,185699,48.54268271702416,spot_baseline,MWG,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,185699,-0.0977472062337,relative_legacy,MWG,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,185699,-7.048327982329703,peer,MWG,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,187708,12.697285625776551,spot_baseline,twsummerbot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,187708,-40.646527110455374,spot_peer,twsummerbot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,187708,7.614463429607316,baseline,twsummerbot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,187708,-24.80917556686864,peer,twsummerbot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,187708,-0.3404242377722446,relative_legacy,twsummerbot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,189869,5.627107416851493,spot_peer,VeritasAI,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,189869,0.0463401755646143,relative_legacy,VeritasAI,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,189869,3.155563705539332,peer,VeritasAI,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,189869,61.30424189774371,baseline,VeritasAI,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,191026,-5.583951324948778,peer,manticAI,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,191026,-0.0733867888774565,relative_legacy,manticAI,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,191026,60.40713236688608,spot_baseline,manticAI,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,191026,-6.073402004474236,spot_peer,manticAI,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,191026,44.792575731774015,baseline,manticAI,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,191935,76.55347463629771,spot_baseline,pgodzinai,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,191935,59.4262773559243,baseline,pgodzinai,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,191935,5.627107416851493,spot_peer,pgodzinai,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,191935,0.0463401755646143,relative_legacy,pgodzinai,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,191935,3.1605939807410115,peer,pgodzinai,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,192418,5.627107416851493,spot_peer,InstitutPelFutur,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,192418,65.03920954272418,baseline,InstitutPelFutur,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,192418,0.0463401755646143,relative_legacy,InstitutPelFutur,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,192418,2.9558668821248903,peer,InstitutPelFutur,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,192924,0.0463401755646143,relative_legacy,acm_bot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,192924,58.811739274915766,baseline,acm_bot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,192924,3.159252894401136,peer,acm_bot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,192924,76.55347463629771,spot_baseline,acm_bot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,192924,5.627107416851493,spot_peer,acm_bot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,218666,60.04784980195022,baseline,GreeneiBot2,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,218666,0.0876690125099628,relative_legacy,GreeneiBot2,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,218666,9.727454701058177,spot_peer,GreeneiBot2,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,218666,82.21182747293444,spot_baseline,GreeneiBot2,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,218666,6.180469998075976,peer,GreeneiBot2,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,220077,0.1833706395053443,relative_legacy,mmBot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,220077,17.25524199655677,spot_peer,mmBot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,220077,92.5999418556223,spot_baseline,mmBot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,220077,79.50432327074219,baseline,mmBot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,220077,13.299638816248788,peer,mmBot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,222631,65.84018180529898,baseline,Grizeu_Bot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,222631,2.855912008988455,peer,Grizeu_Bot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,222631,0.0455991148592853,relative_legacy,Grizeu_Bot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,222631,5.627107416851493,spot_peer,Grizeu_Bot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236037,-0.0231093070447348,relative_legacy,metac-o1,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236037,53.828276423846205,baseline,metac-o1,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236037,67.80719051126377,spot_baseline,metac-o1,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236037,-1.9428905115758277,peer,metac-o1,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236037,-0.7109212275939564,spot_peer,metac-o1,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236038,-0.0253181243532556,relative_legacy,metac-gpt-4o,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236038,-0.7109212275939564,spot_peer,metac-gpt-4o,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236038,-2.183571381212196,peer,metac-gpt-4o,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236038,55.55294725516184,baseline,metac-gpt-4o,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236040,5.627107416851493,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236040,3.1680469034629244,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236040,56.72599095678601,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236040,0.0463722774709887,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236041,66.29079039248691,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236041,13.900554566172628,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236041,9.446696850656794,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236041,0.1323336363910522,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236041,87.97057662822883,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236043,-7.45813025561276,spot_peer,metac-grok-2-1212,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236043,38.76866668053948,baseline,metac-grok-2-1212,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236043,58.496250072115615,spot_baseline,metac-grok-2-1212,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236043,-5.555064780271549,peer,metac-grok-2-1212,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236043,-0.0732385832392491,relative_legacy,metac-grok-2-1212,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236045,-0.7109212275939564,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236045,45.62739254194569,baseline,metac-Gemini-Exp-1206,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236045,-1.1287460771993063,peer,metac-Gemini-Exp-1206,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236045,-0.0125166955178603,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236045,67.80719051126377,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236047,-0.7109212275939564,spot_peer,metac-Llama-3.1,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236047,-0.0099521742139492,relative_legacy,metac-Llama-3.1,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236047,43.64168864394112,baseline,metac-Llama-3.1,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,236047,-0.9683917087841812,peer,metac-Llama-3.1,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,237476,-22.41867299986497,spot_peer,NextWorldLab,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,237476,-5.196177284766362,peer,NextWorldLab,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,237476,-0.0694317782333879,relative_legacy,NextWorldLab,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,237476,8.773104004786191,baseline,NextWorldLab,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,239758,48.69176741065268,baseline,metac-perplexity,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,239758,6.3459925349905655,peer,metac-perplexity,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,239758,0.0876099667699704,relative_legacy,metac-perplexity,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,239758,11.602759772846142,spot_peer,metac-perplexity,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,239759,-9.456095942248174,peer,metac-exa,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,239759,48.54268271702416,spot_baseline,metac-exa,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,239759,-14.671021365612242,spot_peer,metac-exa,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,239759,-0.1284701570815315,relative_legacy,metac-exa,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,239759,29.898132179433308,baseline,metac-exa,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,240416,5.627107416851493,spot_peer,metac-o1-preview,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,240416,0.0462867408898788,relative_legacy,metac-o1-preview,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,240416,58.684471064299714,baseline,metac-o1-preview,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,240416,3.154858046773917,peer,metac-o1-preview,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,241713,24.81524218272685,baseline,X_bot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,241713,1.7308053892502522,peer,X_bot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,241713,0.0202720486162975,relative_legacy,X_bot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,241713,5.627107416851493,spot_peer,X_bot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,241713,76.55347463629771,spot_baseline,X_bot,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,241715,11.279589640562156,spot_peer,CatrachoCaster,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,241715,84.35372583642504,spot_baseline,CatrachoCaster,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,241715,41.05185241517318,baseline,CatrachoCaster,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,241715,0.0705914702524959,relative_legacy,CatrachoCaster,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31334,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:23:32.036276+00,241715,5.258694548950773,peer,CatrachoCaster,True,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,2025-01-24 14:23:00+00,31810 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,185690,9.994071054445286,spot_peer,annabot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,185690,56.87517618749676,spot_baseline,annabot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,185690,0.0493355488292609,relative_legacy,annabot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,185690,3.715600326737509,peer,annabot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,185690,26.69151465558665,baseline,annabot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,185699,34.78492740509073,baseline,MWG,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,185699,0.0474879905094281,relative_legacy,MWG,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,185699,8.269175664714359,spot_peer,MWG,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,185699,55.685024958236426,spot_baseline,MWG,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,185699,3.375764964155353,peer,MWG,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,189869,1.2268685673654105,peer,VeritasAI,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,189869,53.80514895428957,spot_baseline,VeritasAI,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,189869,42.8496081238552,baseline,VeritasAI,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,189869,5.544656819752944,spot_peer,VeritasAI,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,189869,0.0168689779747616,relative_legacy,VeritasAI,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,191026,2.685247407527044,baseline,manticAI,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,191026,-0.1971064796148815,relative_legacy,manticAI,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,191026,-14.275916890220165,peer,manticAI,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,191026,10.706240267642382,spot_baseline,manticAI,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,191026,-56.91892517581802,spot_peer,manticAI,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,191935,24.964984176772315,baseline,pgodzinai,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,191935,15.54646188272172,spot_peer,pgodzinai,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,191935,0.0777231977994188,relative_legacy,pgodzinai,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,191935,5.70416020890807,peer,pgodzinai,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,191935,60.70624026764238,spot_baseline,pgodzinai,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,192418,-1.3447093885648438,peer,InstitutPelFutur,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,192418,50.0,spot_baseline,InstitutPelFutur,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,192418,0.0298249839931348,spot_peer,InstitutPelFutur,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,192418,-0.0172189803631818,relative_legacy,InstitutPelFutur,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,192418,27.08515510956446,baseline,InstitutPelFutur,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,192924,-17.529448478451208,spot_peer,acm_bot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,192924,29.169264984012784,baseline,acm_bot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,192924,-16.586525536352852,peer,acm_bot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,192924,-0.2261015347543572,relative_legacy,acm_bot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,192924,37.8843719911001,spot_baseline,acm_bot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,218666,-7.708412247262554,peer,GreeneiBot2,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,218666,-15.73802257916788,spot_peer,GreeneiBot2,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,218666,-0.1071725782112973,relative_legacy,GreeneiBot2,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,218666,17.11050045955559,baseline,GreeneiBot2,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,218666,39.12042824636868,spot_baseline,GreeneiBot2,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,220077,9.994071054445286,spot_peer,mmBot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,220077,56.87517618749676,spot_baseline,mmBot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,220077,0.0645863983248356,relative_legacy,mmBot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,220077,4.803378085619023,peer,mmBot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,220077,46.159460837043056,baseline,mmBot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,222631,27.3980393953765,baseline,Grizeu_Bot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,222631,-9.073035469842116,peer,Grizeu_Bot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,222631,-0.1223607095641689,relative_legacy,Grizeu_Bot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,222631,-10.9851380165978,spot_peer,Grizeu_Bot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,222631,42.39984532774751,spot_baseline,Grizeu_Bot,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236037,70.02689647918642,spot_baseline,metac-o1,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236037,20.896023000889667,peer,metac-o1,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236037,58.296812021093565,baseline,metac-o1,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236037,0.2806638723124634,relative_legacy,metac-o1,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236037,29.05496108290414,spot_peer,metac-o1,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236038,20.81877839826041,spot_peer,metac-gpt-4o,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236038,54.20319155123107,baseline,metac-gpt-4o,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236038,64.34405738940808,spot_baseline,metac-gpt-4o,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236038,14.165517228438093,peer,metac-gpt-4o,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236038,0.1879180477576242,relative_legacy,metac-gpt-4o,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236040,34.6264696140156,spot_baseline,metac-claude-3-5-sonnet-latest,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236040,-0.2961151038447974,relative_legacy,metac-claude-3-5-sonnet-latest,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236040,-21.69441489833489,peer,metac-claude-3-5-sonnet-latest,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236040,28.07627848450411,baseline,metac-claude-3-5-sonnet-latest,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236040,-22.251151613538504,spot_peer,metac-claude-3-5-sonnet-latest,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236041,63.151720291689685,spot_baseline,metac-claude-3-5-sonnet-20240620,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236041,19.090715012452016,spot_peer,metac-claude-3-5-sonnet-20240620,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236041,12.298080463573864,peer,metac-claude-3-5-sonnet-20240620,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236041,0.1664271516866291,relative_legacy,metac-claude-3-5-sonnet-20240620,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236041,51.49454696282723,baseline,metac-claude-3-5-sonnet-20240620,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236043,60.70624026764237,spot_baseline,metac-grok-2-1212,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236043,0.1264858726656564,relative_legacy,metac-grok-2-1212,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236043,9.223987100216895,peer,metac-grok-2-1212,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236043,47.75139402500076,baseline,metac-grok-2-1212,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236043,15.5464618827217,spot_peer,metac-grok-2-1212,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236045,46.02614727353429,baseline,metac-Gemini-Exp-1206,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236045,6.3170932048753095,peer,metac-Gemini-Exp-1206,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236045,0.086629462848262,relative_legacy,metac-Gemini-Exp-1206,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236045,11.87782390245254,spot_peer,metac-Gemini-Exp-1206,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236045,58.17493661414397,spot_baseline,metac-Gemini-Exp-1206,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236047,52.829176418318376,spot_baseline,metac-Llama-3.1,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236047,0.0035488254285978,relative_legacy,metac-Llama-3.1,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236047,41.05698132384786,baseline,metac-Llama-3.1,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236047,4.130172268199809,spot_peer,metac-Llama-3.1,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,236047,0.210384666607353,peer,metac-Llama-3.1,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,237476,-13.028903245135073,peer,NextWorldLab,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,237476,5.437524169317327,baseline,NextWorldLab,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,237476,-0.1808900991048567,relative_legacy,NextWorldLab,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,237476,-45.00657078930891,spot_peer,NextWorldLab,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,237476,18.92558116268649,spot_baseline,NextWorldLab,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,239758,0.212216979146892,relative_legacy,metac-perplexity,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,239758,24.191504902892664,spot_peer,metac-perplexity,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,239758,66.6711866862596,spot_baseline,metac-perplexity,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,239758,15.462654027634311,peer,metac-perplexity,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,239758,49.82355996601385,baseline,metac-perplexity,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,239759,55.551565619437206,spot_baseline,metac-exa,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,239759,42.60561707283759,baseline,metac-exa,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,239759,3.32008683792113,peer,metac-exa,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,239759,8.075752011861105,spot_peer,metac-exa,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,239759,0.0458625206296706,relative_legacy,metac-exa,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,240414,38.28259171361233,baseline,minefrac1,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,240414,-11.505766681658688,peer,minefrac1,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,240414,-0.1550811470143351,relative_legacy,minefrac1,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,240414,-8.687343223271315,spot_peer,minefrac1,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,240414,43.985288314114406,spot_baseline,minefrac1,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,240416,66.27235065011794,spot_baseline,metac-o1-preview,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,240416,0.21748930642607,relative_legacy,metac-o1-preview,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,240416,16.07046332824831,peer,metac-o1-preview,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,240416,54.32504051722394,baseline,metac-o1-preview,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,240416,23.61346874825469,spot_peer,metac-o1-preview,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,241715,30.20356618344304,spot_baseline,CatrachoCaster,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,241715,-28.661299793918168,spot_peer,CatrachoCaster,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,241715,-0.2944890635541232,relative_legacy,CatrachoCaster,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,241715,-21.57237765381919,peer,CatrachoCaster,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31366,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:45:41.979785+00,241715,20.3677810054568,baseline,CatrachoCaster,True,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,2025-01-27 13:34:00+00,31859 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,185690,6.875176187496752,spot_baseline,annabot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,185690,41.3631308820063,spot_peer,annabot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,185690,0.1710410214839224,relative_legacy,annabot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,185690,7.440027888014151,peer,annabot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,185690,-0.4952018335566164,baseline,annabot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,185699,-36.84827970831032,spot_baseline,MWG,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,185699,-10.71597199675581,peer,MWG,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,185699,-0.0157859265419398,relative_legacy,MWG,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,185699,-16.448876593032583,baseline,MWG,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,185699,-22.13681044440773,spot_peer,MWG,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,187708,-3.036456875517239,spot_peer,twsummerbot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,187708,-23.696559416620616,spot_baseline,twsummerbot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,187708,-12.675606579242968,baseline,twsummerbot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,187708,-3.047234007906874,peer,twsummerbot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,187708,0.1039853416913257,relative_legacy,twsummerbot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,191026,0.0196601834211863,relative_legacy,manticAI,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,191026,-21.43142531763939,baseline,manticAI,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,191026,-10.26428150748359,spot_peer,manticAI,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,191026,-28.673343094166345,spot_baseline,manticAI,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,191026,-11.452163388724983,peer,manticAI,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,191935,-14.315209257832056,spot_baseline,pgodzinai,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,191935,0.2248928949025542,relative_legacy,pgodzinai,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,191935,4.411076590417114,peer,pgodzinai,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,191935,-11.995051938851484,baseline,pgodzinai,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,191935,10.58815656000825,spot_peer,pgodzinai,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,192418,24.27134135851208,spot_baseline,InstitutPelFutur,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,192418,66.62772731044218,spot_peer,InstitutPelFutur,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,192418,0.890833638307967,relative_legacy,InstitutPelFutur,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,192418,54.15791082192419,peer,InstitutPelFutur,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,192418,20.74514351112745,baseline,InstitutPelFutur,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,192924,-24.25722956572416,peer,acm_bot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,192924,-0.1520930659487473,relative_legacy,acm_bot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,192924,-30.5416458410191,baseline,acm_bot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,192924,-39.60817073093636,spot_baseline,acm_bot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,192924,-26.145023299806866,spot_peer,acm_bot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,218666,57.23978687628448,spot_peer,GreeneiBot2,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,218666,0.7230927115058634,relative_legacy,GreeneiBot2,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,218666,17.807190511263766,spot_baseline,GreeneiBot2,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,218666,13.510360878725658,baseline,GreeneiBot2,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,218666,40.06516177402453,peer,GreeneiBot2,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,220077,-0.1529680041974581,relative_legacy,mmBot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,220077,-22.13681044440772,spot_peer,mmBot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,220077,-36.84827970831029,spot_baseline,mmBot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,220077,-31.7369817684254,baseline,mmBot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,220077,-24.07629233603182,peer,mmBot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,222631,-47.26048008072067,baseline,Grizeu_Bot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,222631,-52.94468445267842,spot_baseline,Grizeu_Bot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,222631,-45.51375391542019,spot_peer,Grizeu_Bot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,222631,-45.0118167040052,peer,Grizeu_Bot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,222631,-0.4302408147346603,relative_legacy,Grizeu_Bot,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236037,-22.44510040868174,peer,metac-o1,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236037,-0.1279460157598401,relative_legacy,metac-o1,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236037,-22.13681044440773,spot_peer,metac-o1,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236037,-36.84827970831032,spot_baseline,metac-o1,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236037,-29.67521999798484,baseline,metac-o1,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236038,33.903595255631885,spot_baseline,metac-gpt-4o,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236038,27.78292935842005,baseline,metac-gpt-4o,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236038,62.7296720420354,peer,metac-gpt-4o,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236038,1.0151918107533742,relative_legacy,metac-gpt-4o,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236038,80.61673034729694,spot_peer,metac-gpt-4o,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236040,-10.65279682130863,peer,metac-claude-3-5-sonnet-latest,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236040,-21.016711380116718,baseline,metac-claude-3-5-sonnet-latest,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236040,-27.81966742621928,spot_baseline,metac-claude-3-5-sonnet-latest,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236040,-9.024481182559487,spot_peer,metac-claude-3-5-sonnet-latest,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236040,0.0317466282108402,relative_legacy,metac-claude-3-5-sonnet-latest,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236041,-26.525362080674665,peer,metac-claude-3-5-sonnet-20240620,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236041,-0.1827454117043772,relative_legacy,metac-claude-3-5-sonnet-20240620,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236041,-29.364635076374075,spot_peer,metac-claude-3-5-sonnet-20240620,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236041,-41.82506338585603,spot_baseline,metac-claude-3-5-sonnet-20240620,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236041,-31.99893882964044,baseline,metac-claude-3-5-sonnet-20240620,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236043,36.85176376217314,baseline,metac-grok-2-1212,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236043,72.2163881804739,peer,metac-grok-2-1212,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236043,110.09803562177352,spot_peer,metac-grok-2-1212,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236043,54.203213239423725,spot_baseline,metac-grok-2-1212,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236043,1.152640939819153,relative_legacy,metac-grok-2-1212,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236045,55.982009547459526,peer,metac-Gemini-Exp-1206,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236045,0.9356074236441694,relative_legacy,metac-Gemini-Exp-1206,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236045,83.20357547581204,spot_peer,metac-Gemini-Exp-1206,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236045,35.684790742167955,spot_baseline,metac-Gemini-Exp-1206,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236045,25.307543513385248,baseline,metac-Gemini-Exp-1206,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236047,0.1539845140411265,relative_legacy,metac-Llama-3.1,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236047,-13.020331438761357,baseline,metac-Llama-3.1,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236047,-0.9626005724210528,peer,metac-Llama-3.1,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236047,-19.796433816556963,spot_baseline,metac-Llama-3.1,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,236047,2.627728209940224,spot_peer,metac-Llama-3.1,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,237476,-108.4385653412971,spot_baseline,NextWorldLab,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,237476,-25.104959445643708,baseline,NextWorldLab,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,237476,-29.08894536555213,peer,NextWorldLab,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,237476,-0.3369881438624063,relative_legacy,NextWorldLab,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,237476,-126.10798207523544,spot_peer,NextWorldLab,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,239758,-0.1730769997723674,relative_legacy,metac-perplexity,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,239758,-28.3889093617128,baseline,metac-perplexity,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,239758,-24.420590003678992,peer,metac-perplexity,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,239758,-37.12832739724017,spot_peer,metac-perplexity,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,239758,-47.17082358168162,spot_baseline,metac-perplexity,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,239759,-0.647563941993429,relative_legacy,metac-exa,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,239759,-52.85027202053092,baseline,metac-exa,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,239759,-87.99105095532312,spot_peer,metac-exa,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,239759,-59.32125129729183,peer,metac-exa,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,239759,-82.19280948873623,spot_baseline,metac-exa,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,240416,-9.221228556871354,spot_baseline,metac-o1-preview,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,240416,-7.204315245496884,baseline,metac-o1-preview,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,240416,10.217471946730385,peer,metac-o1-preview,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,240416,0.3154670206239731,relative_legacy,metac-o1-preview,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,240416,17.98618741099386,spot_peer,metac-o1-preview,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,241715,-41.82506338585602,spot_baseline,CatrachoCaster,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,241715,-29.364635076374057,spot_peer,CatrachoCaster,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,241715,-0.0708624779067053,relative_legacy,CatrachoCaster,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,241715,-15.242364242321162,peer,CatrachoCaster,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +31370,How many Grammy awards will Taylor Swift win in 2025?,2025-01-23 18:06:36.599465+00,241715,-20.204479423767,baseline,CatrachoCaster,True,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,2025-01-23 23:23:00+00,31865 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,185690,41.65773331883175,peer,annabot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,185690,31.31001354569472,spot_baseline,annabot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,185690,59.58481313061915,spot_peer,annabot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,185690,0.5718697099644263,relative_legacy,annabot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,185690,22.641316400558757,baseline,annabot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,187708,-11.233777097908495,spot_peer,twsummerbot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,187708,-8.469051767912555,baseline,twsummerbot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,187708,-5.648700447535976,peer,twsummerbot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,187708,-0.0245150898749221,relative_legacy,twsummerbot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,187708,-17.55372202734394,spot_baseline,twsummerbot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,189869,28.18784636104611,spot_peer,VeritasAI,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,189869,0.2488603195836352,relative_legacy,VeritasAI,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,189869,24.012683252273828,peer,VeritasAI,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,189869,9.646590466059733,spot_baseline,VeritasAI,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,189869,8.886711463134139,baseline,VeritasAI,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,191026,-73.69655941662063,spot_baseline,manticAI,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,191026,-59.49032340722851,baseline,manticAI,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,191026,-78.16439280736874,peer,manticAI,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,191026,-1.0875360770119968,relative_legacy,manticAI,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,191026,-92.60202593748032,spot_peer,manticAI,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,191935,-0.6533384590604041,relative_legacy,pgodzinai,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,191935,-51.93169606181495,peer,pgodzinai,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,191935,-39.99344198602565,baseline,pgodzinai,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,191935,-102.94468445267842,spot_baseline,pgodzinai,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,191935,-134.9915599669702,spot_peer,pgodzinai,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,192418,-66.09640474436812,spot_baseline,InstitutPelFutur,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,192418,-84.12214961161243,peer,InstitutPelFutur,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,192418,-64.43879840328675,baseline,InstitutPelFutur,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,192418,-1.1869140190121232,relative_legacy,InstitutPelFutur,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,192418,-81.58706293688938,spot_peer,InstitutPelFutur,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,192924,13.972108117770327,spot_baseline,acm_bot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,192924,0.3265242203353667,relative_legacy,acm_bot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,192924,34.456852578241204,spot_peer,acm_bot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,192924,25.05846057728548,peer,acm_bot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,192924,10.895753912664528,baseline,acm_bot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,218666,-81.5870629368896,spot_peer,GreeneiBot2,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,218666,-51.45845771729364,peer,GreeneiBot2,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,218666,-0.6791317423349347,relative_legacy,GreeneiBot2,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,218666,-40.62214945997652,baseline,GreeneiBot2,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,218666,-66.09640474436827,spot_baseline,GreeneiBot2,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,220077,-40.38629151336124,peer,mmBot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,220077,-36.84827970831032,spot_baseline,mmBot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,220077,-39.19752890739949,spot_peer,mmBot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,220077,-0.6166215681104742,relative_legacy,mmBot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,220077,-36.57431217486133,baseline,mmBot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,222631,20.71527681039377,baseline,Grizeu_Bot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,222631,24.27134135851208,spot_baseline,Grizeu_Bot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,222631,49.38361104217181,spot_peer,Grizeu_Bot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,222631,0.4987465067831977,relative_legacy,Grizeu_Bot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,222631,40.08176046310757,peer,Grizeu_Bot,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236037,22.252895150549328,spot_peer,metac-o1,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236037,5.19312562641692,baseline,metac-o1,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236037,19.053692536729866,peer,metac-o1,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236037,0.1732043230118715,relative_legacy,metac-o1,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236037,5.551565619437198,spot_baseline,metac-o1,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236038,36.69588508263474,spot_peer,metac-gpt-4o,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236038,0.3874197295629403,relative_legacy,metac-gpt-4o,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236038,15.517006030607511,spot_baseline,metac-gpt-4o,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236038,14.925602832360513,baseline,metac-gpt-4o,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236038,35.508914857860034,peer,metac-gpt-4o,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236040,-0.287476049128306,relative_legacy,metac-claude-3-5-sonnet-latest,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236040,-19.842012210148752,peer,metac-claude-3-5-sonnet-latest,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236040,-19.74410469904636,baseline,metac-claude-3-5-sonnet-latest,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236040,-22.090816421120174,spot_peer,metac-claude-3-5-sonnet-latest,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236040,-25.04491179663409,spot_baseline,metac-claude-3-5-sonnet-latest,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236041,41.35173960111521,spot_peer,metac-claude-3-5-sonnet-20240620,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236041,18.72947387730467,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236041,0.4049490165708253,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236041,31.87213246370351,peer,metac-claude-3-5-sonnet-20240620,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236041,15.281950455889085,baseline,metac-claude-3-5-sonnet-20240620,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236043,43.98528831411442,spot_baseline,metac-grok-2-1212,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236043,26.189079579424828,baseline,metac-grok-2-1212,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236043,45.81067389514745,peer,metac-grok-2-1212,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236043,0.657576869007333,relative_legacy,metac-grok-2-1212,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236043,77.9551869739567,spot_peer,metac-grok-2-1212,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236045,0.1583441440245753,relative_legacy,metac-Gemini-Exp-1206,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236045,2.103689860718636,baseline,metac-Gemini-Exp-1206,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236045,2.8291764183183603,spot_baseline,metac-Gemini-Exp-1206,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236045,18.30731540688804,spot_peer,metac-Gemini-Exp-1206,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236045,11.778959240350332,peer,metac-Gemini-Exp-1206,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236047,-8.931600646407398,peer,metac-Llama-3.1,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236047,-19.796433816556963,spot_baseline,metac-Llama-3.1,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236047,-14.48415665522993,spot_peer,metac-Llama-3.1,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236047,-0.0858475549014105,relative_legacy,metac-Llama-3.1,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,236047,-11.192322359928047,baseline,metac-Llama-3.1,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,237476,-16.096404744368115,spot_baseline,NextWorldLab,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,237476,-11.637930696865668,baseline,NextWorldLab,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,237476,-8.551138365424332,peer,NextWorldLab,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,237476,-0.1136869528936953,relative_legacy,NextWorldLab,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,237476,-9.121675878349643,spot_peer,NextWorldLab,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,239758,-0.0569344518804537,relative_legacy,metac-perplexity,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,239758,-27.81966742621926,spot_baseline,metac-perplexity,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,239758,-26.112291234935203,spot_peer,metac-perplexity,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,239758,-8.44326404563376,peer,metac-perplexity,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,239758,-9.341879705479146,baseline,metac-perplexity,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,239759,29.650196625848697,peer,metac-exa,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,239759,0.4597931509760145,relative_legacy,metac-exa,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,239759,33.90359525563188,spot_baseline,metac-exa,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,239759,63.34371118019008,spot_peer,metac-exa,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,239759,15.882922261608249,baseline,metac-exa,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,240414,-26.11229123493522,spot_peer,minefrac1,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,240414,-8.944899837994072,baseline,minefrac1,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,240414,-27.81966742621928,spot_baseline,minefrac1,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,240414,-7.991542753220021,peer,minefrac1,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,240414,-0.0516577060506619,relative_legacy,minefrac1,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,240416,0.7674695139364994,relative_legacy,metac-o1-preview,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,240416,60.78045479803065,peer,metac-o1-preview,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,240416,34.41742966637288,baseline,metac-o1-preview,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,240416,39.120428246368654,spot_baseline,metac-o1-preview,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,240416,70.90450761806008,spot_peer,metac-o1-preview,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,241715,15.517006030607524,spot_baseline,CatrachoCaster,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,241715,0.2055841506522179,peer,CatrachoCaster,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,241715,36.69588508263475,spot_peer,CatrachoCaster,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,241715,0.0869321041932679,baseline,CatrachoCaster,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33735,How many Grammy awards will Kendrick Lamar win in 2025?,2025-01-25 06:31:49.645348+00,241715,0.003546031309156,relative_legacy,CatrachoCaster,True,Greater than 3,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34238 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,185690,-12.196279144304462,spot_baseline,annabot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,185690,-0.0931963310296853,relative_legacy,annabot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,185690,-7.16163777183077,spot_peer,annabot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,185690,-1.7247518901348091,peer,annabot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,185690,-8.928448971331152,baseline,annabot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,185699,0.0171268340878331,relative_legacy,MWG,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,185699,0.6805547485130763,baseline,MWG,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,185699,1.7452485943543898,peer,MWG,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,185699,25.968414592921285,spot_peer,MWG,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,185699,10.706240267642368,spot_baseline,MWG,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,187708,4.024545844779278,spot_peer,twsummerbot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,187708,3.705303103578205,peer,twsummerbot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,187708,-2.2648482063490314,baseline,twsummerbot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,187708,-4.463366904854371,spot_baseline,twsummerbot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,187708,-0.0088964964878195,relative_legacy,twsummerbot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,189869,24.312473946778702,peer,VeritasAI,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,189869,19.491047260845992,spot_peer,VeritasAI,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,189869,0.2162244483849306,relative_legacy,VeritasAI,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,189869,6.228492106308458,spot_baseline,VeritasAI,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,189869,5.683665697336489,baseline,VeritasAI,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,191026,6.411985237756954,peer,manticAI,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,191026,-5.390164476725752,spot_baseline,manticAI,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,191026,0.0069921337080825,relative_legacy,manticAI,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,191026,2.68387010796026,spot_peer,manticAI,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,191026,-4.352115306544934,baseline,manticAI,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,191935,-19.796433816556963,spot_baseline,pgodzinai,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,191935,-5.52686497670646,peer,pgodzinai,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,191935,-0.1134470687601073,relative_legacy,pgodzinai,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,191935,-18.1557785361257,spot_peer,pgodzinai,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,191935,-6.71980842563397,baseline,pgodzinai,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,192418,-0.1841534171304422,relative_legacy,InstitutPelFutur,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,192418,-4.471166603634458,peer,InstitutPelFutur,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,192418,-15.606510670305587,baseline,InstitutPelFutur,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,192418,-16.096404744368115,spot_baseline,InstitutPelFutur,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,192418,-12.8034347739465,spot_peer,InstitutPelFutur,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,192924,1.6312137983215036,baseline,acm_bot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,192924,14.675055203789054,peer,acm_bot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,192924,0.1238975980940939,relative_legacy,acm_bot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,192924,13.495879805920822,spot_peer,acm_bot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,192924,2.0840845604762315,spot_baseline,acm_bot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,218666,-1.245960996801616,peer,GreeneiBot2,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,218666,-11.215864913046998,spot_baseline,GreeneiBot2,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,218666,-5.743401889722338,spot_peer,GreeneiBot2,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,218666,-0.0788102382954317,relative_legacy,GreeneiBot2,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,218666,-6.011159898095377,baseline,GreeneiBot2,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,220077,-59.12803044098575,peer,mmBot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,220077,-52.08759748642664,baseline,mmBot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,220077,-52.94468445267842,spot_baseline,mmBot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,220077,-66.1069781234412,spot_peer,mmBot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,220077,-0.8986894636365529,relative_legacy,mmBot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,222631,10.199180645734977,peer,Grizeu_Bot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,222631,-2.9446844526784286,spot_baseline,Grizeu_Bot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,222631,6.221423326292229,spot_peer,Grizeu_Bot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,222631,-2.5027161415528925,baseline,Grizeu_Bot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,222631,0.0465845630196998,relative_legacy,Grizeu_Bot,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236037,-2.741281292644204,baseline,metac-o1,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236037,6.221423326292229,spot_peer,metac-o1,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236037,12.525343348530582,peer,metac-o1,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236037,0.0541715536557805,relative_legacy,metac-o1,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236037,-2.9446844526784286,spot_baseline,metac-o1,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236038,-16.014318404593865,peer,metac-gpt-4o,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236038,-23.79757553824141,spot_peer,metac-gpt-4o,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236038,-22.762694126021767,baseline,metac-gpt-4o,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236038,-23.69655941662061,spot_baseline,metac-gpt-4o,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236038,-0.3330597890225303,relative_legacy,metac-gpt-4o,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236040,-7.712287208440581,spot_peer,metac-claude-3-5-sonnet-latest,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236040,-0.1059895147790796,relative_legacy,metac-claude-3-5-sonnet-latest,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236040,-2.157722660425733,peer,metac-claude-3-5-sonnet-latest,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236040,-9.880396429540555,baseline,metac-claude-3-5-sonnet-latest,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236040,-12.576938349798237,spot_baseline,metac-claude-3-5-sonnet-latest,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236041,1.7804200825917869,spot_peer,metac-claude-3-5-sonnet-20240620,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236041,-4.892769510842465,baseline,metac-claude-3-5-sonnet-20240620,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236041,-0.0031528751551729,relative_legacy,metac-claude-3-5-sonnet-20240620,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236041,5.75431757236638,peer,metac-claude-3-5-sonnet-20240620,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236041,-6.014711685885597,spot_baseline,metac-claude-3-5-sonnet-20240620,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236043,-0.0573582364247409,relative_legacy,metac-grok-2-1212,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236043,-5.469171867908457,baseline,metac-grok-2-1212,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236043,-9.221228556871363,spot_baseline,metac-grok-2-1212,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236043,-2.85802470740825,spot_peer,metac-grok-2-1212,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236043,0.5868174072214721,peer,metac-grok-2-1212,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236045,-26.873191449202068,baseline,metac-Gemini-Exp-1206,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236045,-36.84827970831032,spot_baseline,metac-Gemini-Exp-1206,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236045,-42.82243363848017,spot_peer,metac-Gemini-Exp-1206,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236045,-0.4527151326506382,relative_legacy,metac-Gemini-Exp-1206,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236045,-28.03157527578548,peer,metac-Gemini-Exp-1206,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236047,0.0458494089982555,relative_legacy,metac-Llama-3.1,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236047,0.0,spot_baseline,metac-Llama-3.1,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236047,7.892315096038469,peer,metac-Llama-3.1,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236047,-0.0001669466904759,baseline,metac-Llama-3.1,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,236047,10.4811097110145,spot_peer,metac-Llama-3.1,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,237476,-12.40539307978455,spot_baseline,NextWorldLab,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,237476,-9.144666108420973,baseline,NextWorldLab,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,237476,-1.9502906138056864,peer,NextWorldLab,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,237476,-0.0969231761981729,relative_legacy,NextWorldLab,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,237476,-7.464135305313522,spot_peer,NextWorldLab,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,239758,14.660413199182983,peer,metac-perplexity,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,239758,7.032629930897565,baseline,metac-perplexity,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,239758,20.02689647918645,spot_baseline,metac-perplexity,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,239758,39.45137787779152,spot_peer,metac-perplexity,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,239758,0.1628221796464787,relative_legacy,metac-perplexity,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,239759,8.412591185064029,baseline,metac-exa,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,239759,18.63717790284277,peer,metac-exa,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,239759,0.1993456188231768,relative_legacy,metac-exa,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,239759,36.24042219082589,spot_peer,metac-exa,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,239759,17.807190511263766,spot_baseline,metac-exa,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,240414,0.069928351061939,relative_legacy,minefrac1,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,240414,10.4811097110145,spot_peer,minefrac1,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,240414,0.0,spot_baseline,minefrac1,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,240414,9.952786190692713,peer,minefrac1,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,240414,0.0,baseline,minefrac1,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,240416,-18.1557785361257,spot_peer,metac-o1-preview,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,240416,-17.1839635578633,baseline,metac-o1-preview,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,240416,-11.006757284395617,peer,metac-o1-preview,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,240416,-0.2410351850848635,relative_legacy,metac-o1-preview,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,240416,-19.796433816556963,spot_baseline,metac-o1-preview,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,241715,36.24042219082589,spot_peer,CatrachoCaster,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,241715,17.807190511263766,spot_baseline,CatrachoCaster,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,241715,0.0977918325744301,baseline,CatrachoCaster,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,241715,0.0015534542982213,relative_legacy,CatrachoCaster,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33736,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 06:31:49.68661+00,241715,0.1990216984015628,peer,CatrachoCaster,True,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34239 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,185690,64.91926462231199,spot_peer,annabot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,185690,19.71394695560232,spot_baseline,annabot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,185690,14.65348749309264,baseline,annabot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,185690,54.35723116406755,peer,annabot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,185690,0.3986294074258564,relative_legacy,annabot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,187708,0.2879634644342476,spot_baseline,twsummerbot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,187708,36.76503636870604,spot_peer,twsummerbot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,187708,0.0610993309379181,baseline,twsummerbot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,187708,8.383801035911047,peer,twsummerbot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,187708,0.0174986713352597,relative_legacy,twsummerbot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,189869,29.13479758052768,spot_peer,VeritasAI,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,189869,-4.514845997382916,baseline,VeritasAI,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,189869,39.229708554785134,peer,VeritasAI,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,189869,0.0618163196662265,relative_legacy,VeritasAI,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,189869,-4.976783677545702,spot_baseline,VeritasAI,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,191026,-44.60483873419612,peer,manticAI,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,191026,-0.9870877234764196,relative_legacy,manticAI,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,191026,-63.714096341615765,spot_peer,manticAI,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,191026,-69.04108919704655,spot_baseline,manticAI,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,191026,-55.756476524873975,baseline,manticAI,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,191935,-63.73111900545028,spot_baseline,pgodzinai,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,191935,-56.01831543754913,spot_peer,pgodzinai,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,191935,-0.2782317164010169,relative_legacy,pgodzinai,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,191935,-13.807296878772512,peer,pgodzinai,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,191935,-14.78867918507,baseline,pgodzinai,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,192418,-132.19280948873623,spot_baseline,InstitutPelFutur,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,192418,-2.286444833268872,relative_legacy,InstitutPelFutur,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,192418,-127.464132018726,baseline,InstitutPelFutur,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,192418,-138.01400170026986,peer,InstitutPelFutur,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,192418,-155.2403734286144,spot_peer,InstitutPelFutur,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,192924,-17.670997276944938,spot_baseline,acm_bot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,192924,-13.729543482047378,baseline,acm_bot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,192924,14.94286583123004,peer,acm_bot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,192924,-0.1588934688409715,relative_legacy,acm_bot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,192924,10.736975542842789,spot_peer,acm_bot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,218666,-28.67334309416633,spot_baseline,GreeneiBot2,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,218666,-13.07390965608546,baseline,GreeneiBot2,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,218666,-0.9884206179379328,peer,GreeneiBot2,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,218666,-0.2108497148276744,relative_legacy,GreeneiBot2,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,218666,-5.208809421094295,spot_peer,GreeneiBot2,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,220077,-2.286444833268872,relative_legacy,mmBot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,220077,-155.2403734286144,spot_peer,mmBot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,220077,-132.19280948873623,spot_baseline,mmBot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,220077,-129.26522122559288,baseline,mmBot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,220077,-138.01400170026986,peer,mmBot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,222631,-23.73624841462017,spot_baseline,Grizeu_Bot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,222631,-0.258459530054453,relative_legacy,Grizeu_Bot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,222631,10.456479911093792,peer,Grizeu_Bot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,222631,-19.9417276924264,baseline,Grizeu_Bot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,222631,1.946560116865088,spot_peer,Grizeu_Bot,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236037,58.83660565048051,spot_peer,metac-o1,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236037,0.4462425589417496,relative_legacy,metac-o1,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236037,69.75619781143021,peer,metac-o1,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236037,15.517006030607524,spot_baseline,metac-o1,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236037,14.353523233698462,baseline,metac-o1,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236038,-0.1341330695154879,relative_legacy,metac-gpt-4o,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236038,25.743824370758663,peer,metac-gpt-4o,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236038,-18.955138154138044,baseline,metac-gpt-4o,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236038,-19.79643381655695,spot_baseline,metac-gpt-4o,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236038,7.656563912615834,spot_peer,metac-gpt-4o,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236040,13.373951397242196,peer,metac-claude-3-5-sonnet-latest,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236040,-19.25609606872781,spot_baseline,metac-claude-3-5-sonnet-latest,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236040,8.439679593391398,spot_peer,metac-claude-3-5-sonnet-latest,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236040,-0.1836401026014325,relative_legacy,metac-claude-3-5-sonnet-latest,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236040,-15.06827764718301,baseline,metac-claude-3-5-sonnet-latest,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236041,-55.9454360203008,baseline,metac-claude-3-5-sonnet-20240620,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236041,-44.69365691602058,peer,metac-claude-3-5-sonnet-20240620,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236041,-69.04108919704655,spot_baseline,metac-claude-3-5-sonnet-20240620,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236041,-63.714096341615765,spot_peer,metac-claude-3-5-sonnet-20240620,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236041,-0.9896884664248756,relative_legacy,metac-claude-3-5-sonnet-20240620,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236043,-0.0342040131863861,relative_legacy,metac-grok-2-1212,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236043,-5.172159815784422,baseline,metac-grok-2-1212,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236043,16.820684872916182,peer,metac-grok-2-1212,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236043,-8.754335327904556,spot_baseline,metac-grok-2-1212,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236043,23.65996273099007,spot_peer,metac-grok-2-1212,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236045,-0.5726326306354822,relative_legacy,metac-Gemini-Exp-1206,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236045,-32.01735108380592,spot_peer,metac-Gemini-Exp-1206,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236045,-18.144865536608997,peer,metac-Gemini-Exp-1206,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236045,-33.55186506373214,baseline,metac-Gemini-Exp-1206,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236045,-47.17082358168162,spot_baseline,metac-Gemini-Exp-1206,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236047,2.8291764183183603,spot_baseline,metac-Llama-3.1,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236047,24.76500716949901,peer,metac-Llama-3.1,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236047,1.5621581257605983,baseline,metac-Llama-3.1,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236047,0.0926966710783223,relative_legacy,metac-Llama-3.1,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,236047,40.44803597473378,spot_peer,metac-Llama-3.1,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,237476,13.019044689496113,spot_peer,NextWorldLab,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,237476,-16.096404744368115,spot_baseline,NextWorldLab,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,237476,-12.136698710055516,baseline,NextWorldLab,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,237476,15.72825418811903,peer,NextWorldLab,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,237476,-0.1341032823447947,relative_legacy,NextWorldLab,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,239758,6.289635626093316,baseline,metac-perplexity,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,239758,20.026896479186423,spot_baseline,metac-perplexity,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,239758,21.81074138765785,peer,metac-perplexity,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,239758,0.1516213176260768,relative_legacy,metac-perplexity,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,239758,65.37282478943814,spot_peer,metac-perplexity,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,239759,37.08456960041684,peer,metac-exa,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,239759,26.30344058337939,spot_baseline,metac-exa,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,239759,74.46946874744492,spot_peer,metac-exa,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,239759,0.3018920185337927,relative_legacy,metac-exa,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,239759,12.497954659656951,baseline,metac-exa,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,240414,5.551565619437198,spot_baseline,minefrac1,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,240414,0.1579213966619968,relative_legacy,minefrac1,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,240414,44.39361571839508,spot_peer,minefrac1,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,240414,3.6217684301191593,baseline,minefrac1,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,240414,32.952164810850675,peer,minefrac1,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,240416,-19.814048908946447,baseline,metac-o1-preview,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,240416,3.1592918356845128,spot_peer,metac-o1-preview,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,240416,-0.2462398548282678,relative_legacy,metac-o1-preview,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,240416,12.601694198051426,peer,metac-o1-preview,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,240416,-22.89948222316954,spot_baseline,metac-o1-preview,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,241715,48.19568760898655,spot_peer,CatrachoCaster,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,241715,0.2599057800464983,peer,CatrachoCaster,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,241715,0.0440851325696948,baseline,CatrachoCaster,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,241715,8.174936614143979,spot_baseline,CatrachoCaster,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33737,"Between them, how many Grammy awards will Chappell Roan and Charli XCX win in 2025?",2025-01-25 06:31:49.72897+00,241715,0.0006216562871592,relative_legacy,CatrachoCaster,True,4 or 5,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34240 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,185690,21.90271953142313,spot_peer,annabot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,185690,61.467750092804245,baseline,annabot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,185690,10.722509197326476,peer,annabot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,185690,-0.0353238386877787,relative_legacy,annabot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,185690,81.80324746580945,spot_baseline,annabot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,189869,-0.0149513051059552,relative_legacy,VeritasAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,189869,76.3886002772489,baseline,VeritasAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,189869,12.30811064551569,peer,VeritasAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,189869,24.08354448749365,spot_peer,VeritasAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,191026,17.697042856003424,baseline,manticAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,191026,21.9091058246197,spot_baseline,manticAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,191026,-24.97669701107595,peer,manticAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,191026,-0.5229489312529997,relative_legacy,manticAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,191026,-21.68850864975799,spot_peer,manticAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,192418,22.15117178184098,peer,InstitutPelFutur,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,192418,94.57595363309792,baseline,InstitutPelFutur,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,192418,98.5500430304885,spot_baseline,InstitutPelFutur,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,192418,34.09111336694775,spot_peer,InstitutPelFutur,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,192418,0.1113033143811316,relative_legacy,InstitutPelFutur,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,192924,30.860089206938618,spot_peer,acm_bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,192924,94.11063109464314,spot_baseline,acm_bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,192924,0.0575031614748818,relative_legacy,acm_bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,192924,17.705966149343226,peer,acm_bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,192924,72.88437137211915,baseline,acm_bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,218666,0.0213883735555648,relative_legacy,GreeneiBot2,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,218666,91.3798964950696,spot_baseline,GreeneiBot2,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,218666,28.872648168959127,spot_peer,GreeneiBot2,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,218666,29.71839015112884,baseline,GreeneiBot2,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,218666,9.49139692879585,peer,GreeneiBot2,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,220077,34.09111336694775,spot_peer,mmBot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,220077,22.15117178184098,peer,mmBot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,220077,98.5500430304885,spot_baseline,mmBot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,220077,95.8006599047838,baseline,mmBot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,220077,0.1113033143811316,relative_legacy,mmBot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,222631,84.79969065549501,spot_baseline,Grizeu_Bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,222631,24.08354448749365,spot_peer,Grizeu_Bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,222631,-0.0149513051059552,relative_legacy,Grizeu_Bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,222631,12.435511541258633,peer,Grizeu_Bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,222631,71.12375886503294,baseline,Grizeu_Bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236037,24.08354448749365,spot_peer,metac-o1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236037,12.266173451685487,peer,metac-o1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236037,77.86598115703325,baseline,metac-o1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236037,-0.0149513051059552,relative_legacy,metac-o1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236038,64.7823793330252,baseline,metac-gpt-4o,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236038,11.716325743573394,spot_peer,metac-gpt-4o,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236038,-0.2528361127557648,peer,metac-gpt-4o,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236038,-0.1823972125980444,relative_legacy,metac-gpt-4o,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236040,29.7606027208726,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236040,16.88119036358895,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236040,72.12939297317365,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236040,0.0457983683132851,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236041,29.7606027208726,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236041,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236041,0.0480227069634709,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236041,17.145935600248333,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236041,74.7773915602259,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236043,49.80664068489482,baseline,metac-grok-2-1212,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236043,-2.09210220975524e-05,relative_legacy,metac-grok-2-1212,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236043,24.08354448749365,spot_peer,metac-grok-2-1212,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236043,12.29045137479766,peer,metac-grok-2-1212,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236045,64.41717316649806,baseline,metac-Gemini-Exp-1206,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236045,16.313613959962975,peer,metac-Gemini-Exp-1206,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236045,0.045803565558462,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236045,29.7606027208726,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236047,11.716325743573394,spot_peer,metac-Llama-3.1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236047,5.44234834189641,peer,metac-Llama-3.1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236047,37.28275936284128,baseline,metac-Llama-3.1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,236047,-0.0934423374572973,relative_legacy,metac-Llama-3.1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,237476,29.7606027208726,spot_peer,NextWorldLab,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,237476,71.20984771070472,baseline,NextWorldLab,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,237476,16.805040560296824,peer,NextWorldLab,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,237476,0.045803565558462,relative_legacy,NextWorldLab,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,239758,24.08354448749365,spot_peer,metac-perplexity,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,239758,26.533104401833423,baseline,metac-perplexity,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,239758,7.510695500872959,peer,metac-perplexity,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,239758,-0.0024194149880176,relative_legacy,metac-perplexity,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,239759,-448.3964708971841,spot_peer,metac-exa,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,239759,-216.08156578472983,peer,metac-exa,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,239759,-271.48840955147455,baseline,metac-exa,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,239759,-564.3856189774723,spot_baseline,metac-exa,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,239759,-3.1228106877841597,relative_legacy,metac-exa,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,240414,55.05610444207807,baseline,minefrac1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,240414,84.79969065549501,spot_baseline,minefrac1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,240414,24.08354448749365,spot_peer,minefrac1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,240414,-0.00483947823439,relative_legacy,minefrac1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,240414,12.312792161335745,peer,minefrac1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,240416,17.358295462300816,peer,metac-o1-preview,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,240416,79.52664183494664,baseline,metac-o1-preview,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,240416,29.7606027208726,spot_peer,metac-o1-preview,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,240416,0.0520343934952009,relative_legacy,metac-o1-preview,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,241715,0.2999776116637145,baseline,CatrachoCaster,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,241715,-0.0014977726262889,relative_legacy,CatrachoCaster,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,241715,3.5303638892536284,spot_peer,CatrachoCaster,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,241715,56.55971758542251,spot_baseline,CatrachoCaster,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33738,"Will the Federal Reserve cut interest rates before February 1, 2025?",2025-01-25 06:31:49.770687+00,241715,0.0187241056535097,peer,CatrachoCaster,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34241 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,185690,14.267753607354647,peer,annabot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,185690,62.14306677904478,spot_baseline,annabot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,185690,17.036165159143554,spot_peer,annabot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,185690,0.0712909569981437,relative_legacy,annabot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,185690,48.59719109795525,baseline,annabot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,185699,31.166109003694448,spot_peer,MWG,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,185699,0.0006511770392045,relative_legacy,MWG,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,185699,0.0614712722710962,peer,MWG,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,185699,0.1608621058191266,baseline,MWG,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,185699,81.55754288625727,spot_baseline,MWG,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,189869,-0.2248741056639504,relative_legacy,VeritasAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,189869,23.96617270432886,baseline,VeritasAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,189869,-5.177112249046704,peer,VeritasAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,189869,-9.048077483196655,spot_peer,VeritasAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,191026,32.23451844806795,spot_peer,manticAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,191026,0.2432800067303486,relative_legacy,manticAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,191026,27.49080082982203,peer,manticAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,191026,67.07757523744678,baseline,manticAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,191026,83.02553241676829,spot_baseline,manticAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,192418,-15.200309344505014,spot_baseline,InstitutPelFutur,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,192418,-39.25469509063366,spot_peer,InstitutPelFutur,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,192418,-0.6053032810274032,relative_legacy,InstitutPelFutur,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,192418,-33.98124018914551,peer,InstitutPelFutur,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,192418,-14.499296778725707,baseline,InstitutPelFutur,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,192924,0.0796455594497332,relative_legacy,acm_bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,192924,17.8249268012094,spot_peer,acm_bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,192924,63.22682154995129,spot_baseline,acm_bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,192924,48.74118873641452,baseline,acm_bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,192924,14.670377850287442,peer,acm_bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,220077,78.82432541086268,baseline,mmBot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,220077,36.83611241714707,peer,mmBot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,220077,0.3176521558453815,relative_legacy,mmBot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,220077,31.166109003694448,spot_peer,mmBot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,220077,81.55754288625727,spot_baseline,mmBot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,222631,7.137743898665456,spot_peer,Grizeu_Bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,222631,4.264464534239791,peer,Grizeu_Bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,222631,24.59262223671179,baseline,Grizeu_Bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,222631,48.54268271702416,spot_baseline,Grizeu_Bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,222631,-0.000750081094207,relative_legacy,Grizeu_Bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236037,48.54268271702416,spot_baseline,metac-o1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236037,-0.0222430026723883,relative_legacy,metac-o1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236037,10.220385370285149,peer,metac-o1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236037,44.35774725205266,baseline,metac-o1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236037,7.137743898665456,spot_peer,metac-o1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236038,-95.86838993038816,peer,metac-gpt-4o,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236038,-100.0,spot_baseline,metac-gpt-4o,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236038,-100.97229490535614,spot_peer,metac-gpt-4o,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236038,-1.4128346813092687,relative_legacy,metac-gpt-4o,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236038,-95.29248255854364,baseline,metac-gpt-4o,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236040,14.381995404795362,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236040,45.07977955991933,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236040,11.968646856052052,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236040,0.0431869857109031,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236041,46.771243754089454,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236041,12.552070792045797,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236041,14.381995404795362,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236041,0.0441674511262412,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236043,21.15854012424035,spot_peer,metac-grok-2-1212,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236043,0.1022096202983924,relative_legacy,metac-grok-2-1212,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236043,13.163512132128975,peer,metac-grok-2-1212,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236043,39.44469336584756,baseline,metac-grok-2-1212,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236045,-65.64271006012879,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236045,-51.45731728297583,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236045,-32.672201040125266,baseline,metac-Gemini-Exp-1206,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236045,-41.23833443302273,peer,metac-Gemini-Exp-1206,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236045,-0.6500164435320732,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236047,-0.0040263094384586,relative_legacy,metac-Llama-3.1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236047,4.5441288522042695,peer,metac-Llama-3.1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236047,26.19072242355828,baseline,metac-Llama-3.1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,236047,7.137743898665456,spot_peer,metac-Llama-3.1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,237476,0.1844590761631356,relative_legacy,NextWorldLab,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,237476,60.06810092146317,baseline,NextWorldLab,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,237476,22.697225645903632,peer,NextWorldLab,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,237476,27.52412541496599,spot_peer,NextWorldLab,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,239758,6.576239107994349,peer,metac-perplexity,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,239758,67.80719051126377,spot_baseline,metac-perplexity,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,239758,21.15854012424035,spot_peer,metac-perplexity,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,239758,0.0563836228553718,relative_legacy,metac-perplexity,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,239758,20.351098472475627,baseline,metac-perplexity,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,239759,6.86256328723975,baseline,metac-exa,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,239759,-8.53191775295637,peer,metac-exa,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,239759,-18.18427206710777,spot_peer,metac-exa,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,239759,13.750352374993504,spot_baseline,metac-exa,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,239759,-0.1736425092035869,relative_legacy,metac-exa,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,240414,-0.0682515030553403,relative_legacy,minefrac1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,240414,26.303440583379377,spot_baseline,minefrac1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,240414,-2.50686724727558,peer,minefrac1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,240414,-9.048077483196655,spot_peer,minefrac1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,240414,8.072439449843145,baseline,minefrac1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,240416,48.54268271702416,spot_baseline,metac-o1-preview,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,240416,8.061052004029628,peer,metac-o1-preview,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,240416,-0.0352852351794692,relative_legacy,metac-o1-preview,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,240416,41.37931153683697,baseline,metac-o1-preview,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,240416,7.137743898665456,spot_peer,metac-o1-preview,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,241715,-14.433873393889456,spot_peer,CatrachoCaster,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,241715,0.0986619518368228,baseline,CatrachoCaster,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,241715,-0.07037946993092,peer,CatrachoCaster,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,241715,-0.0015469565967591,relative_legacy,CatrachoCaster,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33739,"Will the Federal Reserve cut interest rates before April 1, 2025?",2025-01-25 06:31:49.811375+00,241715,18.903382439001717,spot_baseline,CatrachoCaster,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.53,2025-01-27 23:00:00+00,34242 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,185690,58.03703910624564,baseline,annabot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,185690,94.90861312399127,spot_peer,annabot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,185690,71.25841844393283,spot_baseline,annabot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,185690,70.99404706522854,peer,annabot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,185690,1.1495828841609246,relative_legacy,annabot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,187708,33.377853065250335,peer,twsummerbot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,187708,41.65231171539279,spot_baseline,twsummerbot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,187708,0.3761618786917121,relative_legacy,twsummerbot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,187708,24.34523794679755,baseline,twsummerbot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,187708,63.89269178933027,spot_peer,twsummerbot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,189869,-85.3489605178407,baseline,VeritasAI,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,189869,-93.43602871820973,spot_baseline,VeritasAI,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,189869,-77.62842676015806,spot_peer,VeritasAI,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,189869,-2.986592778141348,relative_legacy,VeritasAI,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,189869,-78.23195797135885,peer,VeritasAI,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,191026,-74.42678485488868,spot_baseline,manticAI,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,191026,-65.17751870208564,baseline,manticAI,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,191026,-57.78329167461921,peer,manticAI,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,191026,-2.4005262455257004,relative_legacy,manticAI,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,191026,-57.71398080810747,spot_peer,manticAI,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,191935,-60.25660230550611,peer,pgodzinai,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,191935,-1.924600365635167,relative_legacy,pgodzinai,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,191935,-215.8744056768161,spot_baseline,pgodzinai,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,191935,-205.89720262155527,spot_peer,pgodzinai,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,191935,-62.80482181937327,baseline,pgodzinai,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,192418,-74.6344125113979,spot_peer,InstitutPelFutur,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,192418,-90.57810602621136,spot_baseline,InstitutPelFutur,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,192418,-85.94585829908952,baseline,InstitutPelFutur,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,192418,-77.83721255270335,peer,InstitutPelFutur,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,192418,-2.9861470547821343,relative_legacy,InstitutPelFutur,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,192924,24.466814176204835,peer,acm_bot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,192924,14.948905211584902,baseline,acm_bot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,192924,-0.0519440254488768,relative_legacy,acm_bot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,192924,40.63986797640997,spot_peer,acm_bot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,192924,19.45643443942342,spot_baseline,acm_bot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,218666,-19.544629562904632,baseline,GreeneiBot2,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,218666,-94.42616325101817,spot_baseline,GreeneiBot2,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,218666,-78.66571055643358,spot_peer,GreeneiBot2,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,218666,-0.6334883856247839,relative_legacy,GreeneiBot2,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,218666,-16.282480609118608,peer,GreeneiBot2,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,220077,67.82584825874791,peer,mmBot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,220077,47.25059603195117,baseline,mmBot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,220077,49.22503566394604,spot_baseline,mmBot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,220077,71.82602164019559,spot_peer,mmBot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,220077,0.8434676491704098,relative_legacy,mmBot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,222631,-1.6752361618205072,relative_legacy,Grizeu_Bot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,222631,-77.62842676015806,spot_peer,Grizeu_Bot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,222631,-93.43602871820973,spot_baseline,Grizeu_Bot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,222631,-48.34760002737383,baseline,Grizeu_Bot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,222631,-43.613861599783306,peer,Grizeu_Bot,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236037,51.08256237659911,spot_baseline,metac-o1,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236037,63.53341358410045,peer,metac-o1,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236037,0.8085474174921882,relative_legacy,metac-o1,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236037,73.77200200583215,spot_peer,metac-o1,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236037,46.37105720217647,baseline,metac-o1,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236038,-77.62842676015806,spot_peer,metac-gpt-4o,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236038,-81.12551770267183,peer,metac-gpt-4o,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236038,-3.071496530687744,relative_legacy,metac-gpt-4o,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236038,-93.43602871820973,spot_baseline,metac-gpt-4o,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236038,-88.86518138757894,baseline,metac-gpt-4o,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236040,30.809307371190865,spot_baseline,metac-claude-3-5-sonnet-latest,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236040,52.533353904928255,spot_peer,metac-claude-3-5-sonnet-latest,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236040,0.1992861411639416,relative_legacy,metac-claude-3-5-sonnet-latest,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236040,34.03882514506804,peer,metac-claude-3-5-sonnet-latest,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236040,23.910924407687293,baseline,metac-claude-3-5-sonnet-latest,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236041,51.08256237659911,spot_baseline,metac-claude-3-5-sonnet-20240620,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236041,52.76222495068569,peer,metac-claude-3-5-sonnet-20240620,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236041,0.6691294751346247,relative_legacy,metac-claude-3-5-sonnet-20240620,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236041,73.77200200583215,spot_peer,metac-claude-3-5-sonnet-20240620,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236041,41.15131238279216,baseline,metac-claude-3-5-sonnet-20240620,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236043,-87.5468737353893,spot_baseline,metac-grok-2-1212,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236043,-51.16082227991138,baseline,metac-grok-2-1212,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236043,-46.12757815115197,peer,metac-grok-2-1212,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236043,-71.45883582577477,spot_peer,metac-grok-2-1212,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236043,-1.802542469643275,relative_legacy,metac-grok-2-1212,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236045,0.5935061491226545,relative_legacy,metac-Gemini-Exp-1206,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236045,34.55552394930741,baseline,metac-Gemini-Exp-1206,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236045,44.686856114889416,peer,metac-Gemini-Exp-1206,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236045,51.08256237659911,spot_baseline,metac-Gemini-Exp-1206,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236045,73.77200200583215,spot_peer,metac-Gemini-Exp-1206,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236047,36.646754965507526,peer,metac-Llama-3.1,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236047,51.08256237659911,spot_baseline,metac-Llama-3.1,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236047,73.77200200583215,spot_peer,metac-Llama-3.1,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236047,0.5012738649039952,relative_legacy,metac-Llama-3.1,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,236047,27.827618839642064,baseline,metac-Llama-3.1,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,237476,24.70877403998045,baseline,NextWorldLab,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,237476,52.53335390492809,spot_peer,NextWorldLab,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,237476,0.1981300405002221,relative_legacy,NextWorldLab,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,237476,35.2177924876416,peer,NextWorldLab,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,237476,30.80930737119069,spot_baseline,NextWorldLab,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,239758,37.46429254793024,spot_peer,metac-perplexity,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,239758,6.748631213843813,baseline,metac-perplexity,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,239758,12.86463865162074,peer,metac-perplexity,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,239758,16.425203348601837,spot_baseline,metac-perplexity,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,239758,0.045514565275172,relative_legacy,metac-perplexity,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,239759,0.4554069716987425,relative_legacy,metac-exa,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,239759,33.063183980157355,peer,metac-exa,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,239759,73.77200200583215,spot_peer,metac-exa,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,239759,24.89424704233401,baseline,metac-exa,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,239759,51.08256237659911,spot_baseline,metac-exa,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,240414,-60.17159221239321,baseline,minefrac1,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,240414,-93.43602871820973,spot_baseline,minefrac1,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,240414,-77.62842676015806,spot_peer,minefrac1,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,240414,-2.107360800504701,relative_legacy,minefrac1,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,240414,-55.31758742006269,peer,minefrac1,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,240416,-3.246927635192969,baseline,metac-o1-preview,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,240416,7.097837541872919,peer,metac-o1-preview,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,240416,-0.6160622796629696,relative_legacy,metac-o1-preview,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,240416,16.22564444702654,spot_peer,metac-o1-preview,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33740,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:49.999836+00,240416,-3.8480516568062346,spot_baseline,metac-o1-preview,True,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34243 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,185690,57.49150015682027,spot_peer,annabot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,185690,0.1520414341602999,relative_legacy,annabot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,185690,39.49126825614331,peer,annabot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,185690,12.478801763972172,baseline,annabot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,185690,15.050744702473626,spot_baseline,annabot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,187708,-0.3358019545313313,relative_legacy,twsummerbot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,187708,-4.628031289519066,baseline,twsummerbot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,187708,11.032480885831266,peer,twsummerbot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,187708,-8.463642467629438,spot_baseline,twsummerbot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,187708,32.908277206257985,spot_peer,twsummerbot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,189869,-54.66330130451568,peer,VeritasAI,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,189869,-2.484245300745997,relative_legacy,VeritasAI,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,189869,-80.01225289508155,baseline,VeritasAI,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,189869,-49.76964639185552,spot_peer,VeritasAI,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,189869,-87.54687373539018,spot_baseline,VeritasAI,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,191026,-2.088113272421829,relative_legacy,manticAI,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,191026,-41.31632438941122,peer,manticAI,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,191026,-65.63037055744137,baseline,manticAI,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,191026,-74.92947912063109,spot_baseline,manticAI,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,191026,-36.578733840061936,spot_peer,manticAI,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,191935,-215.8744056768161,spot_baseline,pgodzinai,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,191935,-183.93024796698265,spot_peer,pgodzinai,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,191935,-2.766415160632059,relative_legacy,pgodzinai,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,191935,-82.45425328770699,peer,pgodzinai,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,191935,-91.060210286997,baseline,pgodzinai,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,191975,-0.1394676315808936,relative_legacy,jkraybill_bot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,191975,-4.156727568996909,peer,jkraybill_bot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,191975,-4.837878489142068,baseline,jkraybill_bot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,191975,-193.4606929812113,spot_peer,jkraybill_bot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,191975,-224.9904835165131,spot_baseline,jkraybill_bot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,192418,-57.07538629601081,spot_peer,InstitutPelFutur,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,192418,-62.5551779927782,peer,InstitutPelFutur,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,192418,-89.13417131690058,baseline,InstitutPelFutur,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,192418,-94.53497277414742,spot_baseline,InstitutPelFutur,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,192418,-2.688585334175631,relative_legacy,InstitutPelFutur,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,192924,-49.76964639185552,spot_peer,acm_bot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,192924,-66.86523152813594,baseline,acm_bot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,192924,-2.1326428929957646,relative_legacy,acm_bot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,192924,-47.38395342254493,peer,acm_bot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,192924,-87.54687373539018,spot_baseline,acm_bot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,218666,-0.1959814618501483,relative_legacy,GreeneiBot2,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,218666,-88.7815058049094,spot_baseline,GreeneiBot2,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,218666,-4.281030380737388,peer,GreeneiBot2,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,218666,-6.491613960084694,baseline,GreeneiBot2,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,218666,-51.06039810089835,spot_peer,GreeneiBot2,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,220077,12.706327626094405,spot_peer,mmBot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,220077,-26.512270431619168,baseline,mmBot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,220077,6.760184457436584,peer,mmBot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,220077,-27.787246413872857,spot_baseline,mmBot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,220077,-0.8685887825081787,relative_legacy,mmBot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,222631,-23.28979475808671,peer,Grizeu_Bot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,222631,-34.731718204603226,spot_peer,Grizeu_Bot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,222631,-73.16276851280102,spot_baseline,Grizeu_Bot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,222631,-36.12622091353365,baseline,Grizeu_Bot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,222631,-1.2188619574734196,relative_legacy,Grizeu_Bot,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236037,95.1611277252242,spot_peer,metac-o1,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236037,51.08256237659911,spot_baseline,metac-o1,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236037,1.1375128113123791,relative_legacy,metac-o1,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236037,80.85795241189753,peer,metac-o1,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236037,46.21157925930941,baseline,metac-o1,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236038,-88.68973340965407,baseline,metac-gpt-4o,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236038,-55.9264827102572,spot_peer,metac-gpt-4o,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236038,-93.43602151820916,spot_baseline,metac-gpt-4o,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236038,-2.6665222277906317,relative_legacy,metac-gpt-4o,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236038,-61.83413563934813,peer,metac-gpt-4o,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236040,73.96636112866103,spot_peer,metac-claude-3-5-sonnet-latest,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236040,23.821523801157845,baseline,metac-claude-3-5-sonnet-latest,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236040,30.809307371190865,spot_baseline,metac-claude-3-5-sonnet-latest,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236040,0.4821549817208114,relative_legacy,metac-claude-3-5-sonnet-latest,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236040,49.323109268543774,peer,metac-claude-3-5-sonnet-latest,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236041,-87.54687373539018,spot_baseline,metac-claude-3-5-sonnet-20240620,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236041,-49.76964639185552,spot_peer,metac-claude-3-5-sonnet-20240620,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236041,-2.23261466100054,relative_legacy,metac-claude-3-5-sonnet-20240620,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236041,-70.300785911537,baseline,metac-claude-3-5-sonnet-20240620,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236041,-49.67311583022807,peer,metac-claude-3-5-sonnet-20240620,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236043,29.560920361211057,baseline,metac-grok-2-1212,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236043,0.6399513961325795,relative_legacy,metac-grok-2-1212,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236043,48.00780772618407,peer,metac-grok-2-1212,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236043,95.1611277252242,spot_peer,metac-grok-2-1212,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236043,51.08256237659911,spot_baseline,metac-grok-2-1212,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236045,37.73366759939098,spot_peer,metac-Gemini-Exp-1206,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236045,-2.5238141871584,baseline,metac-Gemini-Exp-1206,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236045,16.907942234705626,peer,metac-Gemini-Exp-1206,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236045,-0.2812793411020173,relative_legacy,metac-Gemini-Exp-1206,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236045,-3.8480516568065695,spot_baseline,metac-Gemini-Exp-1206,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236047,27.23560718486721,baseline,metac-Llama-3.1,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236047,51.08256237659911,spot_baseline,metac-Llama-3.1,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236047,95.1611277252242,spot_peer,metac-Llama-3.1,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236047,0.5870786069982418,relative_legacy,metac-Llama-3.1,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,236047,44.21284859294314,peer,metac-Llama-3.1,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,237476,52.66409299358595,peer,NextWorldLab,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,237476,25.2451932562474,baseline,NextWorldLab,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,237476,73.96636112866103,spot_peer,NextWorldLab,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,237476,30.809307371190865,spot_baseline,NextWorldLab,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,237476,0.5203243663613139,relative_legacy,NextWorldLab,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,239758,0.3887054218725196,relative_legacy,metac-perplexity,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,239758,95.16112772522412,spot_peer,metac-perplexity,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,239758,17.439665734918762,baseline,metac-perplexity,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,239758,29.01815441211208,peer,metac-perplexity,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,239758,51.08256237659905,spot_baseline,metac-perplexity,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,239759,51.08256237659905,spot_baseline,metac-exa,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,239759,25.6793299923124,baseline,metac-exa,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,239759,41.88105966433793,peer,metac-exa,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,239759,0.558105119566156,relative_legacy,metac-exa,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,239759,95.16112772522412,spot_peer,metac-exa,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,240414,-0.9339405677608302,relative_legacy,minefrac1,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,240414,-28.67623699749586,baseline,minefrac1,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,240414,-19.78638995798136,peer,minefrac1,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,240414,-87.54687373539018,spot_baseline,minefrac1,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,240414,-49.76964639185552,spot_peer,minefrac1,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,240416,-0.0797431156325298,relative_legacy,metac-o1-preview,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,240416,31.237303628613507,peer,metac-o1-preview,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,240416,4.406535564777913,baseline,metac-o1-preview,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,240416,5.268025782891358,spot_baseline,metac-o1-preview,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33741,"On March 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:50.046921+00,240416,47.264112195438805,spot_peer,metac-o1-preview,True,0.5724152,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34244 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,185690,83.99595874895317,spot_baseline,annabot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,185690,41.191283688658025,peer,annabot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,185690,0.3196870371791246,relative_legacy,annabot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,185690,70.4345053247944,baseline,annabot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,185690,52.262502280850605,spot_peer,annabot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,187708,-115.200309344505,spot_baseline,twsummerbot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,187708,-50.324688019662695,peer,twsummerbot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,187708,-0.8966542492101264,relative_legacy,twsummerbot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,187708,-62.788530298803536,baseline,twsummerbot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,187708,-92.08584439924036,spot_peer,twsummerbot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,189869,-0.0753070111026132,relative_legacy,VeritasAI,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,189869,18.823496945128024,spot_peer,VeritasAI,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,189869,11.08869989023526,peer,VeritasAI,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,189869,34.58949964809348,baseline,VeritasAI,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,191026,-171.3405146236573,baseline,manticAI,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,191026,-2.084831821180683,relative_legacy,manticAI,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,191026,-162.2534366644536,spot_peer,manticAI,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,191026,-212.0294233717712,spot_baseline,manticAI,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,191026,-135.7905999307848,peer,manticAI,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,191935,-4.505147055903004,spot_peer,pgodzinai,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,191935,3.541696220816972,baseline,pgodzinai,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,191935,-0.2664584463797744,relative_legacy,pgodzinai,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,191935,-3.6009953289997263,peer,pgodzinai,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,191935,5.658352836636751,spot_baseline,pgodzinai,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,192418,48.54268271702416,spot_baseline,InstitutPelFutur,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,192418,45.50635924595089,baseline,InstitutPelFutur,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,192418,17.8709005166929,peer,InstitutPelFutur,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,192418,0.0157787510453256,relative_legacy,InstitutPelFutur,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,192418,26.571148579380758,spot_peer,InstitutPelFutur,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,192924,-41.50374992788438,spot_baseline,acm_bot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,192924,-38.681347369159525,spot_peer,acm_bot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,192924,-0.6694227280877066,relative_legacy,acm_bot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,192924,-31.886283053185903,peer,acm_bot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,192924,-31.614467352292344,baseline,acm_bot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,218666,69.59938131099001,spot_baseline,GreeneiBot2,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,218666,21.3158762485426,baseline,GreeneiBot2,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,218666,12.90699984571848,peer,GreeneiBot2,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,218666,0.0186215465944554,relative_legacy,GreeneiBot2,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,218666,41.82996671724819,spot_peer,GreeneiBot2,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,220077,0.3859415163569372,relative_legacy,mmBot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,220077,55.142724511165625,spot_peer,mmBot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,220077,87.97057662822883,spot_baseline,mmBot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,220077,83.45574761600555,baseline,mmBot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,220077,45.96359507225734,peer,mmBot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,222631,17.374022197390076,peer,Grizeu_Bot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,222631,28.055605287572757,baseline,Grizeu_Bot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,222631,46.86927736184448,spot_peer,Grizeu_Bot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,222631,0.0637325012873561,relative_legacy,Grizeu_Bot,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236037,43.56903041533398,baseline,metac-o1,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236037,18.6358379315036,peer,metac-o1,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236037,0.022388947082213,relative_legacy,metac-o1,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236037,26.571148579380758,spot_peer,metac-o1,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236037,48.54268271702416,spot_baseline,metac-o1,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236038,0.2777982157892957,relative_legacy,metac-gpt-4o,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236038,76.55347463629771,spot_baseline,metac-gpt-4o,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236038,46.86927736184448,spot_peer,metac-gpt-4o,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236038,37.6967876828247,peer,metac-gpt-4o,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236038,72.51179347387227,baseline,metac-gpt-4o,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236040,34.38694776597263,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236040,58.74202039478486,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236040,0.2314112768192885,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236040,46.86927736184448,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236041,0.2428534842991218,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236041,35.551885937610635,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236041,61.00289552639512,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236041,46.86927736184448,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236043,0.1570719075517361,relative_legacy,metac-grok-2-1212,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236043,26.884404249505124,peer,metac-grok-2-1212,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236043,44.07194532980533,baseline,metac-grok-2-1212,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236043,46.86927736184448,spot_peer,metac-grok-2-1212,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236043,76.55347463629771,spot_baseline,metac-grok-2-1212,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236045,64.15460290875237,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236045,37.88438697358691,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236045,0.0970851588306616,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236045,22.92051185180601,peer,metac-Gemini-Exp-1206,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236045,39.716858378513024,baseline,metac-Gemini-Exp-1206,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236047,40.53124871739903,spot_peer,metac-Llama-3.1,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236047,36.01759345122422,baseline,metac-Llama-3.1,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236047,0.095054696449881,relative_legacy,metac-Llama-3.1,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236047,21.84578059290915,peer,metac-Llama-3.1,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,237476,18.823496945128024,spot_peer,NextWorldLab,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,237476,-0.0669111810586154,relative_legacy,NextWorldLab,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,237476,31.6170027215872,baseline,NextWorldLab,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,237476,12.660076946987688,peer,NextWorldLab,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,239758,-62.00999137019053,spot_peer,metac-perplexity,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,239758,-21.550209581637635,peer,metac-perplexity,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,239758,-25.74931739770397,baseline,metac-perplexity,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,239758,-73.69655941662063,spot_baseline,metac-perplexity,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,239758,-0.4633899103952873,relative_legacy,metac-perplexity,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,239759,-90.00398168604201,peer,metac-exa,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,239759,-1.4356801336183505,relative_legacy,metac-exa,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,239759,-176.86491245822018,spot_peer,metac-exa,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,239759,-232.19280948873623,spot_baseline,metac-exa,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,239759,-118.14279436462608,baseline,metac-exa,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,240414,5.834545078959738,peer,minefrac1,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,240414,26.303440583379377,spot_baseline,minefrac1,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,240414,10.455395688349206,spot_peer,minefrac1,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,240414,-0.1372918448891389,relative_legacy,minefrac1,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,240414,16.476666815970137,baseline,minefrac1,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,240416,-0.6417380852207224,relative_legacy,metac-o1-preview,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,240416,-26.19060660222543,baseline,metac-o1-preview,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,240416,-32.19280948873623,spot_baseline,metac-o1-preview,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,240416,-31.934138341140702,spot_peer,metac-o1-preview,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,240416,-29.68170635284057,peer,metac-o1-preview,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,241715,0.097189818537668,baseline,CatrachoCaster,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,241715,18.903382439001685,spot_baseline,CatrachoCaster,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,241715,5.092914911468903,spot_peer,CatrachoCaster,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,241715,-0.0003804664644229,relative_legacy,CatrachoCaster,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33742,"Will Russia have control of Chasiv Yar on January 30, 2025?",2025-01-25 06:31:50.09791+00,241715,0.026184704122168,peer,CatrachoCaster,True,yes,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34245 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,185690,-0.983283017096576,relative_legacy,annabot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,185690,-67.21561370129773,spot_peer,annabot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,185690,-135.25482662953291,baseline,annabot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,185690,-51.68879992512183,peer,annabot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,185690,-154.3298968991795,spot_baseline,annabot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,185699,0.0083821714160429,relative_legacy,MWG,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,185699,-0.5508192371336964,baseline,MWG,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,185699,2.4449641865143867,peer,MWG,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,185699,-8.926733809708741,spot_baseline,MWG,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,185699,37.95216981866528,spot_peer,MWG,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,187708,25.40248929115269,peer,twsummerbot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,187708,0.0,spot_baseline,twsummerbot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,187708,44.4087336849005,spot_peer,twsummerbot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,187708,0.0,baseline,twsummerbot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,187708,0.1659757050317713,relative_legacy,twsummerbot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,189869,31.085145470913545,peer,VeritasAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,189869,0.1180274333075046,relative_legacy,VeritasAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,189869,21.1241891999395,spot_peer,VeritasAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,189869,-29.364684749969904,baseline,VeritasAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,191026,69.24271980897078,spot_baseline,manticAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,191026,55.96716812542891,baseline,manticAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,191026,83.82737916961302,peer,manticAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,191026,0.86802571411139,relative_legacy,manticAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,191026,94.49088604304698,spot_peer,manticAI,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,191935,35.708044056477775,spot_peer,pgodzinai,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,191935,-6.2987232273801705,baseline,pgodzinai,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,191935,20.59120129234367,peer,pgodzinai,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,191935,-12.029423371771196,spot_baseline,pgodzinai,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,191935,0.1009770938628364,relative_legacy,pgodzinai,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,192418,-161.84249808240136,baseline,InstitutPelFutur,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,192418,-65.7082398861216,peer,InstitutPelFutur,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,192418,-1.1726996183419471,relative_legacy,InstitutPelFutur,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,192418,-81.22321111432757,spot_peer,InstitutPelFutur,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,192924,26.05890549170692,peer,acm_bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,192924,27.450236693828348,spot_peer,acm_bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,192924,-23.44652536370228,spot_baseline,acm_bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,192924,0.1025669973136393,relative_legacy,acm_bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,192924,-17.72452075811221,baseline,acm_bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,218666,-26.98857892673698,baseline,GreeneiBot2,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,218666,-10.093292592060491,peer,GreeneiBot2,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,218666,-0.1849575889736931,relative_legacy,GreeneiBot2,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,218666,-53.31232083944815,spot_peer,GreeneiBot2,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,218666,-135.10744405468793,spot_baseline,GreeneiBot2,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,220077,-1.1726996183419471,relative_legacy,mmBot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,220077,-65.7082398861216,peer,mmBot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,220077,-163.91788835999532,baseline,mmBot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,220077,-173.6965594166206,spot_baseline,mmBot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,220077,-81.22321111432757,spot_peer,mmBot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,222631,-0.0554225274539025,relative_legacy,Grizeu_Bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,222631,-17.48035484934812,baseline,Grizeu_Bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,222631,3.2489946387804465,peer,Grizeu_Bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,222631,7.19047866520669,spot_peer,Grizeu_Bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236037,21.1241891999395,spot_peer,metac-o1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236037,0.0871360346626155,relative_legacy,metac-o1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236037,28.943689201578334,peer,metac-o1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236037,-28.663502831522408,baseline,metac-o1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236037,-32.19280948873623,spot_baseline,metac-o1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236038,-173.6965594166206,spot_baseline,metac-gpt-4o,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236038,-164.353360479189,baseline,metac-gpt-4o,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236038,-1.1726996183419471,relative_legacy,metac-gpt-4o,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236038,-65.7082398861216,peer,metac-gpt-4o,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236038,-81.22321111432757,spot_peer,metac-gpt-4o,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236040,-0.4761429092711805,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236040,-16.59405869119757,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236040,-27.919667764832912,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236040,-76.48129477765823,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236040,-100.0,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236041,-100.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236041,-27.919667764832912,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236041,-0.4904692721319074,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236041,-16.924641222220842,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236041,-79.43439751986095,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236043,-81.22321111432757,spot_peer,metac-grok-2-1212,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236043,-99.58434118592751,baseline,metac-grok-2-1212,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236043,-44.52156381448063,peer,metac-grok-2-1212,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236043,-173.6965594166206,spot_baseline,metac-grok-2-1212,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236043,-0.8062976532016507,relative_legacy,metac-grok-2-1212,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236045,-51.45731728297583,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236045,-30.935513612136283,baseline,metac-Gemini-Exp-1206,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236045,7.0701375959197925,peer,metac-Gemini-Exp-1206,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236045,7.19047866520669,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236045,-0.1054669809797639,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236047,-0.5305259360848004,relative_legacy,metac-Llama-3.1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236047,-69.60040696153453,baseline,metac-Llama-3.1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236047,-25.347626763250595,peer,metac-Llama-3.1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236047,-51.204212249793954,spot_peer,metac-Llama-3.1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,236047,-132.19280948873626,spot_baseline,metac-Llama-3.1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,237476,-0.10756266359923,relative_legacy,NextWorldLab,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,237476,-51.45731728297583,spot_baseline,NextWorldLab,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,237476,-43.8039176709581,baseline,NextWorldLab,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,237476,13.861494345034377,peer,NextWorldLab,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,237476,7.19047866520669,spot_peer,NextWorldLab,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,239758,7.590921472548963,baseline,metac-perplexity,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,239758,26.303440583379377,spot_baseline,metac-perplexity,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,239758,63.43359178513925,spot_peer,metac-perplexity,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,239758,0.1977699996834993,relative_legacy,metac-perplexity,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,239758,21.839154352760747,peer,metac-perplexity,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,239759,42.85614752687308,peer,metac-exa,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,239759,0.4106835888348855,relative_legacy,metac-exa,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,239759,48.54268271702416,spot_baseline,metac-exa,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,239759,24.968473803981247,baseline,metac-exa,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,239759,79.51888011494012,spot_peer,metac-exa,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,240414,30.740285045644303,peer,minefrac1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,240414,44.4087336849005,spot_peer,minefrac1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,240414,0.0,baseline,minefrac1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,240414,0.0,spot_baseline,minefrac1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,240414,0.2100270348865746,relative_legacy,minefrac1,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,240416,21.1241891999395,spot_peer,metac-o1-preview,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,240416,-32.19280948873623,spot_baseline,metac-o1-preview,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,240416,-26.462959762318675,baseline,metac-o1-preview,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,240416,0.0509010317601259,relative_legacy,metac-o1-preview,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,240416,24.121743266765627,peer,metac-o1-preview,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,241715,40.14904730017823,spot_peer,CatrachoCaster,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,241715,-5.889368905356857,spot_baseline,CatrachoCaster,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,241715,-0.0297734525605269,baseline,CatrachoCaster,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,241715,0.2029717910954631,peer,CatrachoCaster,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33743,"Will Russia have control of Chasiv Yar on February 28, 2025?",2025-01-25 06:31:50.156842+00,241715,0.000310407826904,relative_legacy,CatrachoCaster,True,no,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,0.5,2025-01-27 23:00:00+00,34246 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,185690,23.55487179756981,spot_peer,annabot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,185690,0.2400930718465724,relative_legacy,annabot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,185690,11.156543851890811,peer,annabot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,185690,71.08780501958793,spot_baseline,annabot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,185690,46.043639515958375,baseline,annabot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,187708,-39.053367465762506,spot_peer,twsummerbot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,187708,-13.92357973711722,spot_baseline,twsummerbot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,187708,-0.1605652276015437,relative_legacy,twsummerbot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,187708,-18.36792437908542,peer,twsummerbot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,187708,-6.1782308079041,baseline,twsummerbot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,189869,42.74301708539927,baseline,VeritasAI,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,189869,0.0731711750566946,relative_legacy,VeritasAI,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,189869,-2.678008611966209,peer,VeritasAI,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,189869,6.951090840706021,spot_peer,VeritasAI,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,192418,0.3279038710028712,relative_legacy,InstitutPelFutur,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,192418,27.58016737505777,spot_peer,InstitutPelFutur,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,192418,74.17322643110965,baseline,InstitutPelFutur,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,192418,16.85847650819704,peer,InstitutPelFutur,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,192924,0.0,spot_baseline,acm_bot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,192924,-0.0789845231163069,relative_legacy,acm_bot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,192924,-12.416308137233216,peer,acm_bot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,192924,0.0,baseline,acm_bot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,192924,-28.79908430029784,spot_peer,acm_bot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,220077,27.58016737505777,spot_peer,mmBot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,220077,0.3279038710028712,relative_legacy,mmBot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,220077,76.06002729391179,baseline,mmBot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,220077,16.85847650819704,peer,mmBot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236037,0.0686953157507455,relative_legacy,metac-o1,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236037,6.951090840706021,spot_peer,metac-o1,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236037,48.54268271702416,spot_baseline,metac-o1,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236037,44.916451543062045,baseline,metac-o1,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236037,-3.362127526033771,peer,metac-o1,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236038,0.1546224803581979,relative_legacy,metac-gpt-4o,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236038,58.496250072115615,spot_baseline,metac-gpt-4o,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236038,14.281583436194618,spot_peer,metac-gpt-4o,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236038,3.318691614659317,peer,metac-gpt-4o,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236038,56.14045907805821,baseline,metac-gpt-4o,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236040,27.58016737505777,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236040,56.294047196212624,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236040,14.603783377890872,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236040,0.2913134650991588,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236041,4.5102247404235865,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236041,44.90831506821191,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236041,14.281583436194618,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236041,0.15853744964287,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236043,14.281583436194618,spot_peer,metac-grok-2-1212,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236043,0.1607798062284793,relative_legacy,metac-grok-2-1212,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236043,5.295319945075343,peer,metac-grok-2-1212,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236043,29.552130465956317,baseline,metac-grok-2-1212,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236043,58.496250072115615,spot_baseline,metac-grok-2-1212,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236045,4.977645512729064,peer,metac-Gemini-Exp-1206,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236045,0.1585186719925453,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236045,14.281583436194618,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236045,58.496250072115615,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236045,39.155851329206165,baseline,metac-Gemini-Exp-1206,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236047,0.2026705499221244,relative_legacy,metac-Llama-3.1,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236047,8.437957473991757,peer,metac-Llama-3.1,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236047,21.13880130706156,spot_peer,metac-Llama-3.1,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,236047,30.566813773814093,baseline,metac-Llama-3.1,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,237476,5.296344886740034,baseline,NextWorldLab,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,237476,-0.154821699088988,relative_legacy,NextWorldLab,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,237476,-22.60801281212541,spot_peer,NextWorldLab,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,237476,8.406426478847456,spot_baseline,NextWorldLab,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,237476,-18.33620463429635,peer,NextWorldLab,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,239758,-16.292366140188566,peer,metac-perplexity,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,239758,-9.996239007391388,baseline,metac-perplexity,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,239758,-0.1260319021856106,relative_legacy,metac-perplexity,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,239758,-52.50808662743263,spot_peer,metac-perplexity,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,239758,-32.19280948873623,spot_baseline,metac-perplexity,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,239759,-73.69655941662063,spot_baseline,metac-exa,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,239759,-30.434041728839293,peer,metac-exa,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,239759,-26.78491904617371,baseline,metac-exa,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,239759,-0.3204665049582265,relative_legacy,metac-exa,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,239759,-83.07430682543436,spot_peer,metac-exa,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,240416,0.3133692340152498,relative_legacy,metac-o1-preview,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,240416,27.58016737505777,spot_peer,metac-o1-preview,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,240416,15.869861624588076,peer,metac-o1-preview,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33744,"Will Russia have control of Chasiv Yar on March 31, 2025?",2025-01-25 06:31:50.204318+00,240416,65.65264412770762,baseline,metac-o1-preview,True,yes,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.5,2025-01-28 22:00:00+00,34247 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,187708,-6.867294657114949,peer,twsummerbot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,187708,-21.087335700712647,spot_peer,twsummerbot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,187708,-79.1814533347669,spot_baseline,twsummerbot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,187708,-0.9386019361397502,relative_legacy,twsummerbot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,187708,-47.21221610993882,baseline,twsummerbot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,189869,-79.97741141302473,peer,VeritasAI,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,189869,-137.3779925267068,baseline,VeritasAI,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,189869,-153.98067621005447,spot_baseline,VeritasAI,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,189869,-100.56151000570568,spot_peer,VeritasAI,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,189869,-3.178197337090553,relative_legacy,VeritasAI,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,191975,45.45448779283349,spot_baseline,jkraybill_bot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,191975,0.0625882586129068,relative_legacy,jkraybill_bot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,191975,5.061692414659943,peer,jkraybill_bot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,191975,2.06646346440716,baseline,jkraybill_bot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,191975,111.33835174736276,spot_peer,jkraybill_bot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,192418,41.502624599231,spot_peer,InstitutPelFutur,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,192418,0.2943176012634032,relative_legacy,InstitutPelFutur,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,192418,-20.27325540540818,spot_baseline,InstitutPelFutur,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,192418,54.433850182720285,peer,InstitutPelFutur,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,192418,-19.5405357815321,baseline,InstitutPelFutur,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,192924,0.2591467318151201,relative_legacy,acm_bot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,192924,-15.44899993207103,baseline,acm_bot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,192924,-18.14527440669113,spot_baseline,acm_bot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,192924,43.76360441036787,spot_peer,acm_bot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,192924,49.46771445267262,peer,acm_bot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,220077,90.69316954114984,peer,mmBot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,220077,13.056595784699718,spot_baseline,mmBot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,220077,76.91559148872064,spot_peer,mmBot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,220077,1.2212560249188746,relative_legacy,mmBot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,220077,12.797587118103078,baseline,mmBot,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236037,-144.51858789481372,spot_baseline,metac-o1,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236037,-132.1311517952451,baseline,metac-o1,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236037,-72.74649692305879,peer,metac-o1,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236037,-2.993384573728729,relative_legacy,metac-o1,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236037,-90.5080411707624,spot_peer,metac-o1,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236038,-82.86340256398174,peer,metac-gpt-4o,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236038,-142.0140815229684,baseline,metac-gpt-4o,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236038,-94.76029407841814,spot_peer,metac-gpt-4o,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236038,-3.2397168971255805,relative_legacy,metac-gpt-4o,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236038,-148.52070827848974,spot_baseline,metac-gpt-4o,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236040,-91.76382440077872,baseline,metac-claude-3-5-sonnet-latest,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236040,-43.9121842207563,peer,metac-claude-3-5-sonnet-latest,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236040,-124.24533248939812,spot_baseline,metac-claude-3-5-sonnet-latest,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236040,-68.96770730250832,spot_peer,metac-claude-3-5-sonnet-latest,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236040,-2.1105635223383867,relative_legacy,metac-claude-3-5-sonnet-latest,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236041,0.8857231213171676,relative_legacy,metac-claude-3-5-sonnet-20240620,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236041,78.32606856647809,spot_peer,metac-claude-3-5-sonnet-20240620,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236041,14.384103622589084,spot_baseline,metac-claude-3-5-sonnet-20240620,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236041,11.08572546415356,baseline,metac-claude-3-5-sonnet-20240620,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236041,70.05024975454724,peer,metac-claude-3-5-sonnet-20240620,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236043,-80.82220846608358,spot_peer,metac-grok-2-1212,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236043,-1.6275148383416942,relative_legacy,metac-grok-2-1212,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236043,-36.26196143762954,peer,metac-grok-2-1212,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236043,-68.85290021950887,baseline,metac-grok-2-1212,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236043,-135.402510055116,spot_baseline,metac-grok-2-1212,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236045,61.099444283071165,peer,metac-Gemini-Exp-1206,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236045,0.7599462835673634,relative_legacy,metac-Gemini-Exp-1206,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236045,78.32606856647809,spot_peer,metac-Gemini-Exp-1206,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236045,9.86244131411005,baseline,metac-Gemini-Exp-1206,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236045,14.384103622589084,spot_baseline,metac-Gemini-Exp-1206,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236047,-1.65495972396643,relative_legacy,metac-Llama-3.1,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236047,-148.52070827848974,spot_baseline,metac-Llama-3.1,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236047,-68.11527511147187,baseline,metac-Llama-3.1,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236047,-94.76029407841814,spot_peer,metac-Llama-3.1,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,236047,-39.26003046540112,peer,metac-Llama-3.1,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,237476,0.4310411891052518,relative_legacy,NextWorldLab,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,237476,-1.538582516670597,spot_baseline,NextWorldLab,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,237476,61.40821454351468,spot_peer,NextWorldLab,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,237476,47.65500871188431,peer,NextWorldLab,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,237476,-1.0231083021650165,baseline,NextWorldLab,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,239758,0.2509979781064999,relative_legacy,metac-perplexity,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,239758,3.399820071817554,baseline,metac-perplexity,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,239758,25.324494185934057,peer,metac-perplexity,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,239758,14.384103622589084,spot_baseline,metac-perplexity,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,239758,78.32606856647809,spot_peer,metac-perplexity,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,239759,5.13833650480268,baseline,metac-exa,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,239759,30.779304509699777,peer,metac-exa,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,239759,0.3387758430932075,relative_legacy,metac-exa,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,239759,78.32606856647809,spot_peer,metac-exa,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,239759,14.384103622589084,spot_baseline,metac-exa,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,240416,-126.73272845452776,baseline,metac-o1-preview,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,240416,-72.67614635537119,peer,metac-o1-preview,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,240416,-2.9640755105224703,relative_legacy,metac-o1-preview,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,240416,-96.76527025249965,spot_peer,metac-o1-preview,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33745,How many FBI firearms background checks will initiated through the NICS in January 2025?,2025-01-25 06:31:50.399994+00,240416,-150.40774467762526,spot_baseline,metac-o1-preview,True,2401324.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34248 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,187708,-16.336580422702287,baseline,twsummerbot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,187708,49.563230356496256,spot_peer,twsummerbot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,187708,-31.94641959146043,spot_baseline,twsummerbot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,187708,-0.0558779780126222,relative_legacy,twsummerbot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,187708,26.08046144643067,peer,twsummerbot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,189869,-152.22612521949557,spot_baseline,VeritasAI,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,189869,-78.23395687329109,spot_peer,VeritasAI,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,189869,-3.1852951467597554,relative_legacy,VeritasAI,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,189869,-66.38959937910661,peer,VeritasAI,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,189869,-140.18582039716014,baseline,VeritasAI,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,191975,0.073736281972329,relative_legacy,jkraybill_bot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,191975,0.3985187116146104,spot_baseline,jkraybill_bot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,191975,83.92972730351349,spot_peer,jkraybill_bot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,191975,0.0362169610744413,baseline,jkraybill_bot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,191975,7.627445282116051,peer,jkraybill_bot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,192418,-80.09819297784559,spot_peer,InstitutPelFutur,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,192418,-3.346207879657117,relative_legacy,InstitutPelFutur,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,192418,-153.98070037672335,spot_baseline,InstitutPelFutur,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,192418,-147.64754055416364,baseline,InstitutPelFutur,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,192418,-71.93585612959717,peer,InstitutPelFutur,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,192924,1.5631175635223378,relative_legacy,acm_bot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,192924,120.3297451396701,spot_peer,acm_bot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,192924,34.657359027997295,spot_baseline,acm_bot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,192924,29.759479157804133,baseline,acm_bot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,192924,112.1173532945792,peer,acm_bot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,220077,1.3119658289949576,relative_legacy,mmBot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,220077,109.80929446242531,peer,mmBot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,220077,14.023671835766892,baseline,mmBot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,220077,14.38406862257671,spot_baseline,mmBot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,220077,98.78937408391072,spot_peer,mmBot,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236037,-152.22612521949557,spot_baseline,metac-o1,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236037,-78.23395687329109,spot_peer,metac-o1,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236037,-3.1563112991768776,relative_legacy,metac-o1,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236037,-65.66888247695947,peer,metac-o1,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236037,-138.2166156443122,baseline,metac-o1,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236038,-3.2732069008572244,relative_legacy,metac-gpt-4o,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236038,-144.99960148767354,baseline,metac-gpt-4o,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236038,-78.23395687329109,spot_peer,metac-gpt-4o,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236038,-68.9964842499611,peer,metac-gpt-4o,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236038,-152.22612521949557,spot_baseline,metac-gpt-4o,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236040,59.29872302381532,peer,metac-claude-3-5-sonnet-latest,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236040,0.4574366868000801,relative_legacy,metac-claude-3-5-sonnet-latest,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236040,-5.889151782819132,spot_baseline,metac-claude-3-5-sonnet-latest,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236040,77.24907740317762,spot_peer,metac-claude-3-5-sonnet-latest,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236040,-4.285763256039485,baseline,metac-claude-3-5-sonnet-latest,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236041,-2.448695953472685,relative_legacy,metac-claude-3-5-sonnet-20240620,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236041,-106.43153353937544,baseline,metac-claude-3-5-sonnet-20240620,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236041,-47.56300993877587,peer,metac-claude-3-5-sonnet-20240620,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236041,-65.42221375072666,spot_peer,metac-claude-3-5-sonnet-20240620,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236041,-140.16801404531728,spot_baseline,metac-claude-3-5-sonnet-20240620,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236043,-1.5278626680376914,relative_legacy,metac-grok-2-1212,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236043,-30.580969039535912,peer,metac-grok-2-1212,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236043,-66.429443719988,baseline,metac-grok-2-1212,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236043,-65.42221375072666,spot_peer,metac-grok-2-1212,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236043,-140.16801404531728,spot_baseline,metac-grok-2-1212,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236045,-5.889151782819132,spot_baseline,metac-Gemini-Exp-1206,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236045,0.3766271650537655,relative_legacy,metac-Gemini-Exp-1206,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236045,77.24907740317762,spot_peer,metac-Gemini-Exp-1206,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236045,48.24364693057063,peer,metac-Gemini-Exp-1206,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236045,-3.589851892294806,baseline,metac-Gemini-Exp-1206,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236047,-1.354313683550339,relative_legacy,metac-Llama-3.1,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236047,-58.257125557588026,baseline,metac-Llama-3.1,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236047,-67.78371186649254,spot_peer,metac-Llama-3.1,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236047,-142.39060050721457,spot_baseline,metac-Llama-3.1,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,236047,-27.418068053399622,peer,metac-Llama-3.1,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,237476,50.47508070390031,peer,NextWorldLab,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,237476,69.05982209464739,spot_peer,NextWorldLab,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,237476,-13.596686190847596,spot_baseline,NextWorldLab,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,237476,0.2791921198184661,relative_legacy,NextWorldLab,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,237476,-9.476734936414068,baseline,NextWorldLab,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,239758,-83.29730521706199,spot_peer,metac-perplexity,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,239758,-156.99162954304467,spot_baseline,metac-perplexity,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,239758,-0.752231392632678,relative_legacy,metac-perplexity,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,239758,-12.481166985990887,peer,metac-perplexity,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,239758,-33.38212333867005,baseline,metac-perplexity,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,239759,14.384103622589084,spot_baseline,metac-exa,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,239759,98.78941127142386,spot_peer,metac-exa,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,239759,0.4629885888281518,relative_legacy,metac-exa,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,239759,39.11970047361371,peer,metac-exa,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,239759,5.320876492640429,baseline,metac-exa,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,240416,-78.23395687329109,spot_peer,metac-o1-preview,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,240416,-2.962703483255817,relative_legacy,metac-o1-preview,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,240416,-61.7376693641251,peer,metac-o1-preview,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,240416,-126.5848197195391,baseline,metac-o1-preview,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33746,How many FBI firearms background checks will initiated through the NICS in Febrary 2025?,2025-01-25 06:31:50.450676+00,240416,-152.22612521949557,spot_baseline,metac-o1-preview,True,2322106.0,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34249 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,185690,7.254171245967381,spot_peer,annabot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,185690,58.451986009694494,spot_baseline,annabot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,185690,41.17384410795471,baseline,annabot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,185690,6.46745185025521,peer,annabot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,185690,0.0406949106263222,relative_legacy,annabot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,189869,0.1476566289660378,relative_legacy,VeritasAI,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,189869,62.58140768857599,spot_baseline,VeritasAI,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,189869,15.181596669794027,spot_peer,VeritasAI,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,189869,16.983954941336613,peer,VeritasAI,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,189869,57.36043879463326,baseline,VeritasAI,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,192418,55.43443693579066,spot_baseline,InstitutPelFutur,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,192418,52.87147256968407,baseline,InstitutPelFutur,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,192418,4.569634827206023,peer,InstitutPelFutur,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,192418,-0.0133501348362588,relative_legacy,InstitutPelFutur,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,192418,1.4612546812949718,spot_peer,InstitutPelFutur,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,220077,41.40831163286813,spot_baseline,mmBot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,220077,40.12750022918575,baseline,mmBot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,220077,-22.593970104416684,peer,mmBot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,220077,-0.3591570928645476,relative_legacy,mmBot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,220077,-25.46529120594496,spot_peer,mmBot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236037,53.15611804191354,spot_baseline,metac-o1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236037,-2.912530445875205,spot_peer,metac-o1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236037,-0.0748529950377472,relative_legacy,metac-o1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236037,-0.3057000140200394,peer,metac-o1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236037,48.11934228050943,baseline,metac-o1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236038,-0.1416230154516269,relative_legacy,metac-gpt-4o,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236038,-5.5250801733098776,peer,metac-gpt-4o,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236038,50.23896150146138,spot_baseline,metac-gpt-4o,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236038,-8.512719218634878,spot_peer,metac-gpt-4o,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236038,47.66392536492965,baseline,metac-gpt-4o,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236040,-12.829900967626836,peer,metac-claude-3-5-sonnet-latest,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236040,-0.2156954572142904,relative_legacy,metac-claude-3-5-sonnet-latest,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236040,31.86852838778537,baseline,metac-claude-3-5-sonnet-latest,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236040,44.50972407740524,spot_baseline,metac-claude-3-5-sonnet-latest,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236040,-19.51137858221524,spot_peer,metac-claude-3-5-sonnet-latest,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236041,-0.016323881175332,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236041,41.46584697906488,baseline,metac-claude-3-5-sonnet-20240620,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236041,55.43443693579066,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236041,1.4612546812949718,spot_peer,metac-claude-3-5-sonnet-20240620,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236041,2.5330270794525576,peer,metac-claude-3-5-sonnet-20240620,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236043,0.079115976891961,relative_legacy,metac-grok-2-1212,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236043,29.929141149384296,baseline,metac-grok-2-1212,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236043,62.41992494930901,spot_baseline,metac-grok-2-1212,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236043,7.726637332419923,peer,metac-grok-2-1212,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236043,14.871591426367043,spot_peer,metac-grok-2-1212,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236045,-0.0240227725647233,relative_legacy,metac-Gemini-Exp-1206,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236045,-0.9465513028541388,spot_peer,metac-Gemini-Exp-1206,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236045,29.101719421025404,baseline,metac-Gemini-Exp-1206,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236045,54.18020296979183,spot_baseline,metac-Gemini-Exp-1206,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236045,0.2299081390859367,peer,metac-Gemini-Exp-1206,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236047,18.4340573729125,baseline,metac-Llama-3.1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236047,-9.14082329792792,peer,metac-Llama-3.1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236047,-0.1426897534798558,relative_legacy,metac-Llama-3.1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236047,-22.4469829595132,spot_peer,metac-Llama-3.1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,236047,42.980558212306256,spot_baseline,metac-Llama-3.1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,237476,50.30246461498535,baseline,NextWorldLab,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,237476,19.72282105372607,peer,NextWorldLab,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,237476,0.2112925994594499,relative_legacy,NextWorldLab,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,237476,24.04707912227603,spot_peer,NextWorldLab,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,237476,67.19946632372756,spot_baseline,NextWorldLab,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,239758,65.60999676539791,spot_baseline,metac-perplexity,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,239758,17.35847517294923,baseline,metac-perplexity,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,239758,0.0283764297507468,relative_legacy,metac-perplexity,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,239758,3.114113289636168,peer,metac-perplexity,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,239758,20.995707194932955,spot_peer,metac-perplexity,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,239759,64.56676895869876,spot_baseline,metac-exa,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,239759,7.664023411679805,peer,metac-exa,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,239759,24.61009807578534,baseline,metac-exa,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,239759,0.0853806666166504,relative_legacy,metac-exa,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,239759,18.99297865791664,spot_peer,metac-exa,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,240416,34.51678024915644,baseline,metac-o1-preview,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,240416,41.92666831392948,spot_baseline,metac-o1-preview,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,240416,-24.470179964806476,spot_peer,metac-o1-preview,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,240416,-0.3090890289698683,relative_legacy,metac-o1-preview,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33747,"Which company will be the world's most valuable by market cap on March 29, 2025?",2025-01-25 06:31:50.500166+00,240416,-18.616097367496884,peer,metac-o1-preview,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34250 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,185690,-6.509383085854256,spot_peer,annabot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,185690,54.38822593628242,spot_baseline,annabot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,185690,-4.944810920429005,peer,annabot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,185690,38.87234264190051,baseline,annabot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,185690,-0.0458916358144455,relative_legacy,annabot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,189869,62.38868099247427,baseline,VeritasAI,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,189869,19.096300090007468,spot_peer,VeritasAI,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,189869,67.72630955813179,spot_baseline,VeritasAI,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,189869,0.2462112779503128,relative_legacy,VeritasAI,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,189869,16.484393759793342,peer,VeritasAI,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,192418,55.43443693579066,spot_baseline,InstitutPelFutur,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,192418,-6.626762043131854,peer,InstitutPelFutur,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,192418,52.58380218288388,baseline,InstitutPelFutur,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,192418,-0.0525907245684025,relative_legacy,InstitutPelFutur,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,192418,-4.5009275874477135,spot_peer,InstitutPelFutur,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,220077,75.95754767920671,spot_baseline,mmBot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,220077,73.19977735483776,baseline,mmBot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,220077,34.898155997407706,spot_peer,mmBot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,220077,0.4506430495981797,relative_legacy,mmBot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,220077,32.78671717652375,peer,mmBot,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236037,-2.610344256646346,peer,metac-o1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236037,-1.0402158221767537,spot_peer,metac-o1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236037,57.23713294664405,spot_baseline,metac-o1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236037,51.545658688554525,baseline,metac-o1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236037,8.28934487925321e-05,relative_legacy,metac-o1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236038,50.23896150146138,spot_baseline,metac-gpt-4o,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236038,47.51274099259447,baseline,metac-gpt-4o,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236038,-16.44752328914004,peer,metac-gpt-4o,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236038,-0.1787861745378526,relative_legacy,metac-gpt-4o,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236038,-14.474901487377556,spot_peer,metac-gpt-4o,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236040,-17.120538550631647,spot_peer,metac-claude-3-5-sonnet-latest,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236040,48.86084055306145,spot_baseline,metac-claude-3-5-sonnet-latest,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236040,-12.60791567143472,peer,metac-claude-3-5-sonnet-latest,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236040,-0.1476491070683771,relative_legacy,metac-claude-3-5-sonnet-latest,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236040,34.857356142842136,baseline,metac-claude-3-5-sonnet-latest,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236041,-0.2837100601949301,peer,metac-claude-3-5-sonnet-20240620,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236041,0.158191548952871,spot_peer,metac-claude-3-5-sonnet-20240620,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236041,0.0175555108382878,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236041,57.86138724282453,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236041,43.1132868329817,baseline,metac-claude-3-5-sonnet-20240620,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236043,0.0204275474448775,relative_legacy,metac-grok-2-1212,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236043,27.601525970999724,baseline,metac-grok-2-1212,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236043,0.158191548952871,spot_peer,metac-grok-2-1212,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236043,57.86138724282453,spot_baseline,metac-grok-2-1212,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236043,0.3275797057269303,peer,metac-grok-2-1212,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236045,-2.140497057479504,peer,metac-Gemini-Exp-1206,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236045,28.603806323732485,baseline,metac-Gemini-Exp-1206,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236045,55.43443693579066,spot_baseline,metac-Gemini-Exp-1206,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236045,-4.5009275874477135,spot_peer,metac-Gemini-Exp-1206,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236045,-0.0111696068584657,relative_legacy,metac-Gemini-Exp-1206,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236047,41.31350233035975,spot_baseline,metac-Llama-3.1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236047,-13.088608613077424,peer,metac-Llama-3.1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236047,-0.1608238561194516,relative_legacy,metac-Llama-3.1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236047,-31.60948290205228,spot_peer,metac-Llama-3.1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,236047,17.581631607109365,baseline,metac-Llama-3.1,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,237476,0.003448756902395,relative_legacy,NextWorldLab,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,237476,43.66426913443275,baseline,NextWorldLab,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,237476,-1.2414887667335233,spot_peer,NextWorldLab,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,237476,-1.4995960301212352,peer,NextWorldLab,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,237476,57.13228921539596,spot_baseline,NextWorldLab,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,239758,16.26140197700007,baseline,metac-perplexity,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,239758,62.41992494930901,spot_baseline,metac-perplexity,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,239758,-0.5120555811060239,peer,metac-perplexity,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,239758,0.0028155342490539,relative_legacy,metac-perplexity,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,239758,8.909409157624369,spot_peer,metac-perplexity,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,239759,61.31471927654584,spot_baseline,metac-exa,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,239759,2.950261079985199,peer,metac-exa,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,239759,6.787699090176529,spot_peer,metac-exa,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,239759,0.0525671225384834,relative_legacy,metac-exa,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,239759,23.522956342680907,baseline,metac-exa,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,240416,63.50366895572229,spot_baseline,metac-o1-preview,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,240416,10.989918356599532,spot_peer,metac-o1-preview,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,240416,0.1316890501684205,relative_legacy,metac-o1-preview,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,240416,8.212871800731769,peer,metac-o1-preview,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33748,"Which company will be the world's most valuable by market cap on March 1, 2025?",2025-01-25 06:31:50.564898+00,240416,51.65453294879149,baseline,metac-o1-preview,True,Apple,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34251 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,185690,-0.2507449198945102,relative_legacy,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,185690,-22.745750912078485,peer,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,185690,-72.64244343846202,spot_baseline,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,185690,-52.80892624052771,baseline,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,185690,-35.52551386431303,spot_peer,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,187708,92.75172461984762,spot_baseline,twsummerbot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,187708,45.510323577505446,peer,twsummerbot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,187708,48.095631966345245,baseline,twsummerbot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,187708,86.28214373577929,spot_peer,twsummerbot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,187708,0.6510486747706001,relative_legacy,twsummerbot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,189869,-19.923327745800886,spot_peer,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,189869,-0.0967792910309352,relative_legacy,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,189869,-13.469276817526511,peer,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,189869,-46.77762317069983,baseline,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,192418,84.79969065549501,spot_baseline,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,192418,80.00914874974359,baseline,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,192418,85.09822016827752,peer,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,192418,1.1961036077888054,relative_legacy,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,192418,80.42571819353958,spot_peer,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,192924,-0.0967792910309352,relative_legacy,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,192924,-12.445611010186433,peer,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,192924,-43.21375401349732,baseline,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,192924,-51.45731728297583,spot_baseline,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,192924,-19.923327745800886,spot_peer,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,220077,-100.0,spot_baseline,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,220077,-0.5474954341735001,relative_legacy,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,220077,-55.67350288680476,spot_peer,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,220077,-49.66529339664861,peer,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,220077,-95.77200002802742,baseline,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236037,-32.19280948873623,spot_baseline,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236037,-28.831865500959275,baseline,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236037,0.0758218887246473,relative_legacy,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236037,-5.7356172794453535,spot_peer,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236037,-0.1451836335386455,peer,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236038,-36.30183747744707,spot_peer,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236038,-0.2989466295279537,relative_legacy,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236038,-73.69655941662059,spot_baseline,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236038,-30.447001191159572,peer,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236038,-69.50306860026335,baseline,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236040,-11.246225998862911,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236040,-19.923327745800886,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236040,-0.0967373920393863,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236040,-37.23638254372997,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236040,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236041,-38.89781286412413,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236041,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236041,-11.53443728732983,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236041,-19.923327745800886,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236041,-0.0966872570528416,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236043,-2.329237557279649,peer,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236043,-32.19280948873623,spot_baseline,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236043,-16.159804859185215,baseline,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236043,-5.7356172794453535,spot_peer,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236043,0.0001022303834924,relative_legacy,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236045,28.10009165189896,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236045,8.11339869428784,baseline,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236045,13.750352374993504,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236045,0.2882546649331579,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236045,18.08722268891377,peer,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236047,8.134626439886832e-06,relative_legacy,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236047,-5.7356172794453535,spot_peer,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236047,-14.964452164909968,baseline,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,236047,-2.2455535510489097,peer,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,237476,-28.63041851566409,spot_baseline,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,237476,-22.36575028332913,baseline,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,237476,1.5314721729667808,peer,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,237476,0.081561986706881,relative_legacy,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,237476,-3.112027191718382,spot_peer,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,239758,0.0454489547470131,relative_legacy,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,239758,-5.716918816772888,baseline,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,239758,6.778830259045369,spot_peer,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,239758,-15.200309344505014,spot_baseline,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,239758,1.5566440402714008,peer,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,239759,0.2517920492255002,relative_legacy,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,239759,16.550693030975562,peer,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,239759,13.705152737787945,baseline,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,239759,37.85116232537298,spot_baseline,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,239759,45.84958814736034,spot_peer,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,240416,-19.923327745800886,spot_peer,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,240416,-51.45731728297583,spot_baseline,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,240416,-41.51622530120351,baseline,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,240416,-12.06100432325104,peer,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33749,"Will Texas have 15.0 million or more residents living in drought on March 28, 2025?",2025-01-25 06:31:50.612897+00,240416,-0.0968297598078155,relative_legacy,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34252 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,185690,-25.18823067144325,spot_baseline,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,185690,-19.125192873758785,baseline,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,185690,4.340852204096985,peer,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,185690,-0.0923503531701498,relative_legacy,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,185690,1.4501783063041414,spot_peer,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,189869,-46.53416883728586,peer,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,189869,-91.7744890583886,baseline,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,189869,-0.7769811850021626,relative_legacy,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,189869,-53.86242647533862,spot_peer,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,189869,-100.0,spot_baseline,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,192418,0.6024721484430111,relative_legacy,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,192418,59.52030413957997,peer,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,192418,45.5244618910428,baseline,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,192418,48.54268271702416,spot_baseline,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,192418,55.96364469065158,spot_peer,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,192924,-17.972054569075926,spot_peer,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,192924,-51.45731728297583,spot_baseline,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,192924,-0.293499228063789,relative_legacy,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,192924,-11.167352728630636,peer,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,192924,-43.15524356815802,baseline,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,220077,-53.86242647533862,spot_peer,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,220077,-100.0,spot_baseline,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,220077,-95.27810921933916,baseline,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,220077,-48.30943325412741,peer,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,220077,-0.7927767594932786,relative_legacy,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236037,55.50966356379524,peer,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236037,48.54268271702416,spot_baseline,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236037,0.5451716770608219,relative_legacy,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236037,43.20603339979387,baseline,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236037,55.96364469065158,spot_peer,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236038,-3.72870602246016,spot_peer,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236038,-30.37208098134818,baseline,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236038,1.3293703707990636,peer,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236038,-0.1529733076599599,relative_legacy,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236038,-32.19280948873623,spot_baseline,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236040,-37.06604623177845,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236040,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236040,-10.387761362434617,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236040,-0.2815364923491075,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236040,-17.972054569075926,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236041,39.71866870786814,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236041,0.3820441835343186,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236041,48.05879432758792,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236041,28.48235506982436,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236043,55.96364469065158,spot_peer,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236043,0.2754460568743063,relative_legacy,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236043,28.22862609117236,peer,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236043,24.211476527348985,baseline,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236045,0.2030133817969291,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236045,23.633922156880573,peer,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236045,39.520905509077366,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236045,26.303440583379377,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236045,15.083611529936892,baseline,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236047,-3.72870602246016,spot_peer,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236047,-14.383424568217633,baseline,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236047,-1.7775466172715244,peer,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236047,-0.0951118986253082,relative_legacy,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,237476,-226.46301310594444,baseline,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,237476,-149.71076061670368,peer,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,237476,-283.65012677171217,spot_baseline,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,237476,-189.64543189538003,spot_peer,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,237476,-2.1456099243812967,relative_legacy,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,239758,-0.0059501721258876,relative_legacy,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,239758,-32.19280948873623,spot_baseline,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,239758,-3.72870602246016,spot_peer,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,239758,-5.506312155996163,baseline,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,239758,1.7855832255652673,peer,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,239759,17.584777729940498,peer,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,239759,13.937040417259038,baseline,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,239759,37.85116232537298,spot_baseline,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,239759,0.1710102221013973,relative_legacy,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,239759,48.05879432758792,spot_peer,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,240416,0.3289354236941413,relative_legacy,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,240416,26.303440583379377,spot_baseline,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,240416,39.520905509077366,spot_peer,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,240416,21.04114483574771,baseline,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33750,"Will Texas have 15.0 million or more residents living in drought on February 28, 2025?",2025-01-25 06:31:50.796053+00,240416,36.23525522675551,peer,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,0.53,2025-01-28 22:00:00+00,34253 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,185690,-2.1241831827077347,spot_peer,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,185690,61.81214041702378,baseline,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,185690,-0.7176035547103128,peer,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,185690,-0.0278491166873036,relative_legacy,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,185690,77.4249407304768,spot_baseline,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,185699,2.793129869931401,peer,MWG,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,185699,0.0190056686626671,relative_legacy,MWG,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,185699,41.17627635094525,baseline,MWG,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,185699,5.61547565348604,spot_peer,MWG,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,185699,87.97057662822883,spot_baseline,MWG,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,187708,0.0632047378230408,spot_peer,twsummerbot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,187708,38.52619413727958,baseline,twsummerbot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,187708,0.210481507030983,peer,twsummerbot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,187708,-0.0159779423235827,relative_legacy,twsummerbot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,187708,80.4053558967353,spot_baseline,twsummerbot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,189869,-7.005800231365846,peer,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,189869,59.78723080592093,baseline,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,189869,-0.1077963266536393,relative_legacy,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,189869,-9.182847656824892,spot_peer,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,192418,-0.1084136632382825,relative_legacy,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,192418,67.80719051126377,spot_baseline,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,192418,63.217229151258216,baseline,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,192418,-7.265447752355671,peer,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,192418,-9.182847656824892,spot_peer,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,192924,63.88573562172862,baseline,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,192924,-1.2144477496006356,peer,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,192924,-0.0348064593825458,relative_legacy,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,192924,-2.7637700527318,spot_peer,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,220077,77.32299814057217,baseline,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,220077,0.908818440103626,spot_peer,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,220077,0.0203843873290671,relative_legacy,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,220077,2.7076534057689288,peer,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,220077,81.55754288625727,spot_baseline,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236037,9.59390271448853,peer,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236037,9.013061900115495,spot_peer,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236037,0.1113030853829555,relative_legacy,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236037,82.06333320752077,baseline,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236038,-7.350985554465105,peer,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236038,-9.182847656824892,spot_peer,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236038,-0.109045384677918,relative_legacy,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236038,63.82577674349411,baseline,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236040,55.002905271728295,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236040,-1.2146413238742753,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236040,-0.0344252418729726,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236040,-2.7637700527318,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236041,-2.7637700527318,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236041,-0.0344347313488041,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236041,-1.225055674981411,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236041,57.45338832594692,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236043,41.43457563126604,baseline,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236043,1.811958545735741,peer,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236043,0.0058582023801761,relative_legacy,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236043,3.288297295027469,spot_peer,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236045,42.71388122265566,baseline,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236045,-2.7637700527318,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236045,-0.0344342159857447,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236045,-1.1715804278504076,peer,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236047,1.542049777647171,peer,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236047,84.79969065549501,spot_baseline,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236047,3.288297295027469,spot_peer,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236047,36.83269803778635,baseline,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,236047,0.0027025364228851,relative_legacy,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,237476,63.00537444862563,baseline,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,237476,-1.2227191286776606,peer,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,237476,-0.0348064593825458,relative_legacy,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,237476,-2.7637700527318,spot_peer,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,239758,27.574805697888948,baseline,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,239758,2.6829089838518314,peer,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,239758,0.0232119508065385,relative_legacy,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,239758,9.013061900115495,spot_peer,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,239759,9.013061900115495,spot_peer,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,239759,3.3989080396482025,peer,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,239759,0.02899808446533,relative_legacy,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,239759,34.55690794567008,baseline,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,240416,3.64728855377864,peer,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,240416,3.288297295027469,spot_peer,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,240416,67.26108890083962,baseline,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33751,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 06:31:50.853076+00,240416,0.0306162953373151,relative_legacy,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34254 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,185690,27.543032981080582,spot_peer,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,185690,14.67607909415437,baseline,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,185690,21.337098559145936,peer,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,185690,0.5445732415347355,relative_legacy,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,185690,17.568427073099755,spot_baseline,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,187708,44.57267033499841,spot_baseline,twsummerbot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,187708,27.64946216309782,baseline,twsummerbot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,187708,29.28680120521746,peer,twsummerbot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,187708,0.5597825061405605,relative_legacy,twsummerbot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,187708,47.4308177537293,spot_peer,twsummerbot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,189869,-0.2455317422300759,relative_legacy,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,189869,-73.69655941662059,spot_baseline,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,189869,-39.670789342435015,spot_peer,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,189869,-41.25740590947191,peer,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,189869,-67.7706380926913,baseline,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,192418,0.9701004556954052,relative_legacy,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,192418,54.27720506271557,baseline,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,192418,51.6674115188046,peer,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,192418,57.68510091919393,spot_peer,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,192924,-73.69655941662059,spot_baseline,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,192924,-61.31775522967881,baseline,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,192924,-35.554609548874986,peer,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,192924,-0.2147789109830558,relative_legacy,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,192924,-39.670789342435015,spot_peer,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,220077,70.98368485805707,spot_peer,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,220077,1.1430252734438964,relative_legacy,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,220077,65.4299307408696,peer,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,220077,72.2234217691439,baseline,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236037,0.1288844376561891,relative_legacy,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236037,-32.19280948873623,spot_baseline,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236037,-9.104569144433311,spot_peer,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236037,-28.35547192561002,baseline,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236037,-10.924278217499706,peer,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236038,-48.29762486546117,baseline,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236038,-51.45731728297583,spot_baseline,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236038,-23.292279610788857,spot_peer,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236038,-0.0584562304243329,relative_legacy,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236038,-27.30170758249071,peer,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236040,0.6260467294040571,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236040,30.483441675581098,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236040,27.72041537483312,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236040,42.4806362823724,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236041,-56.37536579249262,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236041,-31.80925582182656,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236041,-0.1911157704874599,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236041,-39.670789342435015,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236041,-73.69655941662059,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236043,-0.1165818115188849,relative_legacy,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236043,-73.69655941662059,spot_baseline,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236043,-39.670789342435015,spot_peer,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236043,-35.555929127740015,baseline,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236043,-18.812107514076104,peer,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236045,-100.0,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236045,-59.04245475179271,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236045,-0.3462231045228381,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236045,-39.38961370358805,peer,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236045,-65.5253147482872,baseline,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236047,-82.75145707892753,spot_peer,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236047,-0.360930603077431,relative_legacy,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236047,-55.24843338273684,baseline,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236047,-132.19280948873626,spot_baseline,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,236047,-34.124186518086816,peer,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,237476,58.39384992527344,peer,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,237476,70.98368485805707,spot_peer,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,237476,1.040043828678576,relative_legacy,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,237476,64.14234554447584,baseline,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,239758,67.80719051126377,spot_baseline,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,239758,64.54231879006088,spot_peer,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,239758,19.41081379572113,baseline,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,239758,0.2846528693897107,relative_legacy,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,239758,18.384273184172365,peer,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,239759,0.0472789227643026,relative_legacy,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,239759,-2.9002101681567507,peer,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,239759,-12.158236667124378,baseline,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,239759,-32.19280948873623,spot_baseline,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,239759,-9.104569144433311,spot_peer,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,240416,-73.69655941662059,spot_baseline,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,240416,-39.670789342435015,spot_peer,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,240416,-0.1959183662476802,relative_legacy,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,240416,-32.90943182499278,peer,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33752,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 06:31:50.895519+00,240416,-57.96797223270975,baseline,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34255 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,185690,10.540989404008174,spot_baseline,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,185690,9.177016895390707,baseline,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,185690,22.233802483268164,peer,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,185690,0.19371344292903,relative_legacy,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,185690,22.101124739146183,spot_peer,annabot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,185699,28.25976696626984,spot_peer,MWG,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,185699,10.10827573973291,baseline,MWG,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,185699,16.77376398747708,peer,MWG,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,185699,18.903382439001717,spot_baseline,MWG,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,185699,0.0892272152229605,relative_legacy,MWG,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,189869,-5.088739557262855,peer,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,189869,-0.1689243454214561,relative_legacy,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,189869,-9.370988241545398,spot_peer,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,189869,-29.7502597808437,baseline,VeritasAI,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,192418,-34.28879803334145,peer,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,192418,-0.5517523548253664,relative_legacy,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,192418,-39.9372084395471,spot_peer,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,192418,-73.69655941662059,spot_baseline,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,192418,-67.97724829781426,baseline,InstitutPelFutur,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,192924,-23.55869870790094,spot_peer,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,192924,-42.28079934645528,baseline,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,192924,-16.928237157870193,peer,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,192924,-0.3157064225561866,relative_legacy,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,192924,-51.45731728297583,spot_baseline,acm_bot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,220077,-48.30626106343173,baseline,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,220077,-0.3481147023059255,relative_legacy,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,220077,-23.55869870790094,spot_peer,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,220077,-18.827404411340996,peer,mmBot,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236037,0.4335191681984278,relative_legacy,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236037,40.31073356119111,peer,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236037,33.06178578389914,baseline,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236037,42.21421718526031,spot_peer,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236037,37.85116232537298,spot_baseline,metac-o1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236038,-0.1678394761127562,relative_legacy,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236038,-32.19280948873623,spot_baseline,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236038,-4.933015965596283,peer,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236038,-30.13911483110992,baseline,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236038,-9.370988241545398,spot_peer,metac-gpt-4o,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236040,-1.178671014303717,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236040,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236040,-113.58409637404128,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236040,-126.70290790923244,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236040,-80.69270702383463,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236041,58.31508019302905,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236041,57.49593028488642,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236041,0.6681213080325931,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236041,70.71726576094498,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236043,-39.9372084395471,spot_peer,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236043,-18.226863586112405,peer,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236043,-0.3949443381739822,relative_legacy,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236043,-73.69655941662059,spot_baseline,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236043,-35.76792797829851,baseline,metac-grok-2-1212,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236045,-72.89116957183008,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236045,-74.56270458828745,baseline,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236045,-0.7086525870847509,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236045,-118.44245711374276,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236045,-43.62600047511595,peer,metac-Gemini-Exp-1206,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236047,0.0453059035374312,relative_legacy,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236047,15.461023806258494,peer,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236047,33.709679494947046,spot_peer,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,236047,11.163987076086382,baseline,metac-Llama-3.1,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,237476,0.7570325961882622,relative_legacy,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,237476,65.3270943510509,baseline,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,237476,64.07431653908662,peer,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,237476,70.71726576094498,spot_peer,NextWorldLab,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,239758,22.045496536910584,peer,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,239758,24.065079567208684,baseline,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,239758,0.1608225328161901,relative_legacy,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,239758,70.71726576094498,spot_peer,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,239759,9.817976583168187,baseline,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,239759,0.0065373316537002,relative_legacy,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,239759,33.709679494947046,spot_peer,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,239759,26.303440583379377,spot_baseline,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,239759,12.744391671556292,peer,metac-exa,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,240416,-39.9372084395471,spot_peer,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,240416,-28.527692660159925,peer,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,240416,-57.26540398693207,baseline,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,240416,-73.69655941662059,spot_baseline,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33753,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 06:31:50.938429+00,240416,-0.479953125881796,relative_legacy,metac-o1-preview,True,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,2025-01-28 22:00:00+00,34256 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,185690,10.701284754830224,baseline,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,185690,-16.34627316946048,spot_peer,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,185690,-0.221587355023699,relative_legacy,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,185690,15.704371014558005,spot_baseline,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,185690,-13.76877119462774,peer,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,185699,-0.0122279648729963,relative_legacy,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,185699,2.6072830060099754,baseline,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,185699,-0.6650919127213614,peer,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,185699,-5.095534671298463,spot_peer,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,185699,31.034012061215048,spot_baseline,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,189869,5.066135764062951,peer,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,189869,43.49989165695911,baseline,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,189869,-0.0062529640128843,relative_legacy,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,189869,7.754438423271033,spot_peer,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,192418,-31.388034152396614,baseline,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,192418,-51.49899794636195,spot_peer,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,192418,-32.19280948873623,spot_baseline,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,192418,-0.780527534268397,relative_legacy,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,192418,-58.07565984704389,peer,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,192924,63.22682154995129,spot_baseline,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,192924,0.1153212777380544,relative_legacy,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,192924,13.02164010431202,peer,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,192924,51.92900012754245,baseline,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,192924,18.531429585500224,spot_peer,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,220077,28.31213406996064,spot_peer,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,220077,0.2797502526880552,relative_legacy,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,220077,30.856029171340715,peer,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,220077,76.12333152736016,baseline,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236037,20.251221494214867,baseline,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236037,26.303440583379377,spot_baseline,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236037,-8.567398264321035,spot_peer,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236037,-0.1692521281262078,relative_legacy,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236037,-9.48045892748179,peer,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236038,21.893056465867552,spot_peer,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236038,0.152940435960056,relative_legacy,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236038,16.041730407947618,peer,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236038,56.03287307100934,baseline,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236040,22.326120590173343,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236040,-0.0922880400642202,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236040,-0.0610001336703451,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236040,-2.109189847567069,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236041,-0.0922880400642202,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236041,-0.0645116600749846,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236041,-2.228023052214534,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236041,23.644927490300613,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236043,6.55840964825702,peer,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236043,23.74375532470483,baseline,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236043,21.893056465867552,spot_peer,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236043,0.0548963778654209,relative_legacy,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236045,21.95070165095556,baseline,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236045,-0.0124892193374009,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236045,1.9864611780350676,peer,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236045,48.54268271702416,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236045,7.754438423271033,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236047,-9.279901748521924,baseline,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236047,-51.49899794636195,spot_peer,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236047,-0.2455022165397163,relative_legacy,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,236047,-15.861872339275422,peer,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,237476,16.70558299434228,peer,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,237476,50.18360435606256,baseline,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,237476,28.31213406996064,spot_peer,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,237476,0.1858007174221609,relative_legacy,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,239758,4.614494352477086,peer,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,239758,28.31213406996064,spot_peer,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,239758,14.274254482269242,baseline,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,239758,0.0396695276566102,relative_legacy,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,239759,76.55347463629771,spot_baseline,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,239759,0.0516336907383161,relative_legacy,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,239759,17.544405420303224,baseline,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,239759,5.715979477931449,peer,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,239759,28.31213406996064,spot_peer,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,240416,33.606123520028405,baseline,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,240416,0.0021866878759636,relative_legacy,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,240416,7.754438423271033,spot_peer,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,240416,48.54268271702416,spot_baseline,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,240416,3.1402598224428644,peer,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,250015,-1.5176558002172311,peer,metac-deepseek-r1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,250015,-1.1858774671915695,baseline,metac-deepseek-r1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,250015,-0.0206448081291692,relative_legacy,metac-deepseek-r1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,250015,-65.63761598895847,spot_peer,metac-deepseek-r1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33754,"Will the temperature in San Francisco, CA ever go below 40 degrees F in the entire month of February 2025?",2025-01-25 06:31:50.981171+00,250015,-51.45731728297583,spot_baseline,metac-deepseek-r1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34257 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,185690,43.81539069065612,baseline,annabot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,185690,61.774708246312535,spot_baseline,annabot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,185690,-6.253963064614936,spot_peer,annabot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,185690,-0.5775251135507692,relative_legacy,annabot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,185690,-21.077780209101824,peer,annabot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,189869,67.02766275132717,baseline,VeritasAI,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,189869,74.58274383888589,spot_baseline,VeritasAI,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,189869,7.354574752494238,spot_peer,VeritasAI,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,189869,-0.4784944680141428,relative_legacy,VeritasAI,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,189869,-17.207066093693943,peer,VeritasAI,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,191975,-3.5888536417580528,baseline,jkraybill_bot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,191975,-0.1389157847732321,relative_legacy,jkraybill_bot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,191975,-310.9419793126232,spot_peer,jkraybill_bot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,191975,-4.9598775796649806,peer,jkraybill_bot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,191975,-224.9904835165188,spot_baseline,jkraybill_bot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,192418,116.73704569078072,baseline,InstitutPelFutur,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,192418,32.10638810766076,peer,InstitutPelFutur,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,192418,0.7406944938831168,relative_legacy,InstitutPelFutur,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,192418,120.39728043259352,spot_baseline,InstitutPelFutur,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,192418,56.03251988330861,spot_peer,InstitutPelFutur,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,192924,62.28974365255407,spot_peer,acm_bot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,192924,106.57856295491425,baseline,acm_bot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,192924,126.2864322154128,spot_baseline,acm_bot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,192924,32.705763392227155,peer,acm_bot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,192924,0.8143914188611328,relative_legacy,acm_bot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,220077,81.74238986472211,baseline,mmBot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,220077,83.13629140096519,spot_baseline,mmBot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,220077,16.442719037203506,spot_peer,mmBot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,220077,-0.3017451858974245,relative_legacy,mmBot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,220077,-11.135152805265363,peer,mmBot,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236037,85.73992140459636,spot_baseline,metac-o1,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236037,67.8169607528827,baseline,metac-o1,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236037,-4.083189815653795,peer,metac-o1,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236037,-0.133464810982836,relative_legacy,metac-o1,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236037,19.20907591606164,spot_peer,metac-o1,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236038,56.03251988330861,spot_peer,metac-gpt-4o,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236038,120.39728043259352,spot_baseline,metac-gpt-4o,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236038,98.66353275227114,baseline,metac-gpt-4o,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236038,26.57811146350142,peer,metac-gpt-4o,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236038,0.6637222614063923,relative_legacy,metac-gpt-4o,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236040,0.5398065281267774,relative_legacy,metac-claude-3-5-sonnet-latest,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236040,120.39728043259356,spot_baseline,metac-claude-3-5-sonnet-latest,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236040,56.03251988330867,spot_peer,metac-claude-3-5-sonnet-latest,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236040,20.907471114201808,peer,metac-claude-3-5-sonnet-latest,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236040,73.02196929760044,baseline,metac-claude-3-5-sonnet-latest,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236041,64.03174062385874,baseline,metac-claude-3-5-sonnet-20240620,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236041,100.12402497718536,spot_baseline,metac-claude-3-5-sonnet-20240620,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236041,0.1918888440402356,relative_legacy,metac-claude-3-5-sonnet-20240620,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236041,34.49218596193743,spot_peer,metac-claude-3-5-sonnet-20240620,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236041,7.90083263522358,peer,metac-claude-3-5-sonnet-20240620,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236043,34.49218596193743,spot_peer,metac-grok-2-1212,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236043,36.99512238526465,baseline,metac-grok-2-1212,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236043,5.39732390045341,peer,metac-grok-2-1212,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236043,100.12402497718536,spot_baseline,metac-grok-2-1212,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236043,0.1436995498868413,relative_legacy,metac-grok-2-1212,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236045,-29.468869214752853,spot_peer,metac-Gemini-Exp-1206,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236045,22.221625311406004,baseline,metac-Gemini-Exp-1206,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236045,-28.74605614266044,peer,metac-Gemini-Exp-1206,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236045,-0.7820841673791291,relative_legacy,metac-Gemini-Exp-1206,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236045,39.92538481088862,spot_baseline,metac-Gemini-Exp-1206,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236047,51.08256237659889,spot_baseline,metac-Llama-3.1,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236047,16.686859304424413,baseline,metac-Llama-3.1,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236047,-0.3256849606834357,relative_legacy,metac-Llama-3.1,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236047,-17.614368051185693,spot_peer,metac-Llama-3.1,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,236047,-12.14190766521492,peer,metac-Llama-3.1,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,237476,-0.1910620195138539,relative_legacy,NextWorldLab,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,237476,53.30212754812895,baseline,NextWorldLab,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,237476,-6.49809365865131,peer,NextWorldLab,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,237476,12.95185209369129,spot_peer,NextWorldLab,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,237476,79.85076957177722,spot_baseline,NextWorldLab,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,239758,15.5259794124265,baseline,metac-perplexity,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,239758,0.2686570476585369,peer,metac-perplexity,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,239758,0.0085537044017291,relative_legacy,metac-perplexity,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,239758,19.2090759160614,spot_peer,metac-perplexity,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,239758,85.73992140459615,spot_baseline,metac-perplexity,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,239759,-8.313458401969292,peer,metac-exa,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,239759,51.08256237659911,spot_baseline,metac-exa,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,239759,-0.2214787905935665,relative_legacy,metac-exa,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,239759,-17.614368051185455,spot_peer,metac-exa,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,239759,11.855119860070438,baseline,metac-exa,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,240416,7.354574752494238,spot_peer,metac-o1-preview,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,240416,74.58274383888589,spot_baseline,metac-o1-preview,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,240416,-0.3290967780686038,relative_legacy,metac-o1-preview,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,240416,-11.701965289051223,peer,metac-o1-preview,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33755,"What will be Google's global search engine market share for January 2025, according to StatCounter?",2025-01-25 06:31:51.178902+00,240416,54.319793141282126,baseline,metac-o1-preview,True,89.78,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34258 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,185690,51.299035661697005,peer,annabot,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,185690,0.7122923446284822,relative_legacy,annabot,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,185690,86.79870835702441,spot_baseline,annabot,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,185690,73.00360123254084,spot_peer,annabot,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,185690,62.46660035207099,baseline,annabot,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,189869,-8.879250590304302,spot_peer,VeritasAI,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,189869,9.006034365231415,baseline,VeritasAI,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,189869,-4.510385820641211,peer,VeritasAI,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,189869,-0.9247221818063784,relative_legacy,VeritasAI,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,189869,10.033534773107087,spot_baseline,VeritasAI,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,192418,-104.0855836016218,spot_baseline,InstitutPelFutur,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,192418,-130.6063101900151,spot_peer,InstitutPelFutur,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,192418,-100.4088268860796,baseline,InstitutPelFutur,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,192418,-132.65676508762243,peer,InstitutPelFutur,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,192418,-4.1596394074941045,relative_legacy,InstitutPelFutur,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,192924,31.13734686783365,baseline,acm_bot,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,192924,19.97294464769961,spot_peer,acm_bot,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,192924,19.222801532938146,peer,acm_bot,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,192924,37.08246780873576,spot_baseline,acm_bot,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,192924,-0.2500151759695366,relative_legacy,acm_bot,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,220077,73.47464496512548,spot_baseline,mmBot,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,220077,0.7826883342121274,relative_legacy,mmBot,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,220077,72.01825924080042,peer,mmBot,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,220077,71.85553760459969,baseline,mmBot,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,220077,58.79126694784865,spot_peer,mmBot,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236037,-0.4886179434587213,relative_legacy,metac-o1,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236037,27.867282242771108,spot_baseline,metac-o1,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236037,10.143413377337314,spot_peer,metac-o1,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236037,21.898737032781487,baseline,metac-o1,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236037,8.14364969554938,peer,metac-o1,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236038,-85.00647159044352,baseline,metac-gpt-4o,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236038,-108.98825713478897,peer,metac-gpt-4o,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236038,-3.5829529779279587,relative_legacy,metac-gpt-4o,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236038,-130.6063101900151,spot_peer,metac-gpt-4o,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236038,-104.0855836016218,spot_baseline,metac-gpt-4o,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236040,54.598019669647854,baseline,metac-claude-3-5-sonnet-latest,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236040,43.62546665640124,peer,metac-claude-3-5-sonnet-latest,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236040,76.95743807284813,spot_peer,metac-claude-3-5-sonnet-latest,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236040,90.50543039481252,spot_baseline,metac-claude-3-5-sonnet-latest,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236040,0.6347056957806871,relative_legacy,metac-claude-3-5-sonnet-latest,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236041,0.6688139653132773,relative_legacy,metac-claude-3-5-sonnet-20240620,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236041,76.95743807284836,spot_peer,metac-claude-3-5-sonnet-20240620,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236041,46.36956998368791,peer,metac-claude-3-5-sonnet-20240620,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236041,57.648308754307934,baseline,metac-claude-3-5-sonnet-20240620,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236041,90.50543039481272,spot_baseline,metac-claude-3-5-sonnet-20240620,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236043,8.699293351117255,peer,metac-grok-2-1212,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236043,28.088599039559988,spot_peer,metac-grok-2-1212,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236043,44.69089380110486,spot_baseline,metac-grok-2-1212,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236043,16.384242845723875,baseline,metac-grok-2-1212,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236043,-0.0431450330872666,relative_legacy,metac-grok-2-1212,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236045,-0.1241174096031812,relative_legacy,metac-Gemini-Exp-1206,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236045,12.192302802080162,peer,metac-Gemini-Exp-1206,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236045,44.69089380110486,spot_baseline,metac-Gemini-Exp-1206,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236045,23.898221779181927,baseline,metac-Gemini-Exp-1206,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236045,28.088599039559988,spot_peer,metac-Gemini-Exp-1206,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236047,10.033534773107087,spot_baseline,metac-Llama-3.1,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236047,3.138984332228076,baseline,metac-Llama-3.1,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236047,-3.9156583711672543,peer,metac-Llama-3.1,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236047,-0.3333718132708999,relative_legacy,metac-Llama-3.1,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,236047,-8.879250590304302,spot_peer,metac-Llama-3.1,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,237476,28.088599039559988,spot_peer,NextWorldLab,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,237476,-0.1675402271859906,relative_legacy,NextWorldLab,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,237476,16.577747516954002,peer,NextWorldLab,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,237476,30.458022425227288,baseline,NextWorldLab,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,237476,44.69089380110486,spot_baseline,NextWorldLab,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,239758,-130.6063101900151,spot_peer,metac-perplexity,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,239758,-104.0855836016218,spot_baseline,metac-perplexity,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,239758,-0.7503534608915944,relative_legacy,metac-perplexity,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,239758,-23.082924498014066,peer,metac-perplexity,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,239758,-18.385905650477955,baseline,metac-perplexity,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,239759,3.814342891967799,peer,metac-exa,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,239759,-0.065228404502184,relative_legacy,metac-exa,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,239759,18.36478287115504,spot_peer,metac-exa,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,239759,35.57481614322523,spot_baseline,metac-exa,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,239759,8.423218688819265,baseline,metac-exa,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,240416,-0.8776849931103071,relative_legacy,metac-o1-preview,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,240416,7.211467105498089,baseline,metac-o1-preview,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,240416,-8.808478420959693,peer,metac-o1-preview,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,240416,-8.879250590304302,spot_peer,metac-o1-preview,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33756,"What will be Google's global search engine market share for February 2025, according to StatCounter?",2025-01-25 06:31:51.220135+00,240416,10.033534773107087,spot_baseline,metac-o1-preview,True,90.15,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.53,2025-01-29 07:00:00+00,34259 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,185690,1.7544094132800736,spot_peer,annabot,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,185690,27.3166972139158,spot_baseline,annabot,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,185690,19.882212094594998,baseline,annabot,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,185690,-0.0271548261728293,relative_legacy,annabot,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,185690,5.471495014101822,peer,annabot,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,185699,26.969212406797983,spot_peer,MWG,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,185699,3.0878858994751406,baseline,MWG,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,185699,1.7053345892627432,peer,MWG,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,185699,0.0082226618359685,relative_legacy,MWG,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,185699,48.83373106676064,spot_baseline,MWG,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,189869,32.97955414295785,baseline,VeritasAI,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,189869,0.1061108715197288,relative_legacy,VeritasAI,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,189869,12.99286441678151,spot_peer,VeritasAI,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,189869,36.90702464285423,spot_baseline,VeritasAI,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,189869,17.486922434199734,peer,VeritasAI,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,192418,51.36596704284803,baseline,InstitutPelFutur,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,192418,53.50264792820728,spot_baseline,InstitutPelFutur,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,192418,32.44049714147003,spot_peer,InstitutPelFutur,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,192418,0.3635602444008643,relative_legacy,InstitutPelFutur,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,192418,39.89800144201371,peer,InstitutPelFutur,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,220077,4.441072130058007,spot_baseline,mmBot,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,220077,-0.3829928105338739,relative_legacy,mmBot,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,220077,-25.052462936683256,spot_peer,mmBot,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,220077,-22.929174039456367,peer,mmBot,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,220077,4.320582186683594,baseline,mmBot,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236037,0.1307018749594628,relative_legacy,metac-o1,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236037,17.548717013373526,spot_peer,metac-o1,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236037,31.249349186800288,baseline,metac-o1,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236037,40.79475815299277,spot_baseline,metac-o1,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236037,18.59355830382385,peer,metac-o1,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236038,-1.02810231111927,relative_legacy,metac-gpt-4o,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236038,-41.64998421304661,baseline,metac-gpt-4o,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236038,-71.57742009517757,peer,metac-gpt-4o,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236038,-90.21609838446706,spot_peer,metac-gpt-4o,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236038,-51.16626893323938,spot_baseline,metac-gpt-4o,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236040,7.005295856414573,spot_baseline,metac-claude-3-5-sonnet-latest,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236040,4.1207500838075815,baseline,metac-claude-3-5-sonnet-latest,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236040,-10.056813207471237,peer,metac-claude-3-5-sonnet-latest,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236040,-0.2041862946786417,relative_legacy,metac-claude-3-5-sonnet-latest,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236040,-22.04756939356897,spot_peer,metac-claude-3-5-sonnet-latest,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236041,-0.3804029536564525,relative_legacy,metac-claude-3-5-sonnet-20240620,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236041,-5.973614507387767,baseline,metac-claude-3-5-sonnet-20240620,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236041,-9.59032742893847,spot_baseline,metac-claude-3-5-sonnet-20240620,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236041,-41.49520211825747,spot_peer,metac-claude-3-5-sonnet-20240620,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236041,-22.95315310112612,peer,metac-claude-3-5-sonnet-20240620,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236043,19.44032505895052,baseline,metac-grok-2-1212,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236043,56.4873062249703,spot_baseline,metac-grok-2-1212,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236043,35.93807824258905,spot_peer,metac-grok-2-1212,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236043,0.1056410102435616,relative_legacy,metac-grok-2-1212,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236043,13.397453406854275,peer,metac-grok-2-1212,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236045,33.191246570706085,spot_baseline,metac-Gemini-Exp-1206,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236045,8.638518334621017,spot_peer,metac-Gemini-Exp-1206,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236045,-0.0149701946846959,relative_legacy,metac-Gemini-Exp-1206,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236045,5.457183224804754,peer,metac-Gemini-Exp-1206,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236045,14.4215239757541,baseline,metac-Gemini-Exp-1206,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236047,1.9467307529804496,baseline,metac-Llama-3.1,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236047,7.005295856414573,spot_baseline,metac-Llama-3.1,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236047,-22.04756939356897,spot_peer,metac-Llama-3.1,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236047,-0.1330490898041925,relative_legacy,metac-Llama-3.1,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,236047,-5.5497222580889805,peer,metac-Llama-3.1,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,237476,-7.616364580063316,peer,NextWorldLab,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,237476,-0.1947611895071184,relative_legacy,NextWorldLab,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,237476,-16.000066068070804,spot_peer,NextWorldLab,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,237476,12.1659284345627,spot_baseline,NextWorldLab,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,237476,8.491454728953487,baseline,NextWorldLab,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,239758,0.0050331160589068,relative_legacy,metac-perplexity,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,239758,6.713200032220706,baseline,metac-perplexity,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,239758,17.548717013373526,spot_peer,metac-perplexity,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,239758,40.79475815299277,spot_baseline,metac-perplexity,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,239758,3.078526226462077,peer,metac-perplexity,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,239759,50.41679571033508,spot_baseline,metac-exa,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,239759,28.82433162939735,spot_peer,metac-exa,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,239759,0.0479270528777434,relative_legacy,metac-exa,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,239759,7.625581195749196,peer,metac-exa,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,239759,12.488029536336107,baseline,metac-exa,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,240416,34.20362268293249,spot_peer,metac-o1-preview,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,240416,55.00720983068243,spot_baseline,metac-o1-preview,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,240416,0.2753260981036336,relative_legacy,metac-o1-preview,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,240416,37.86928043950757,baseline,metac-o1-preview,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33757,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 06:31:51.2596+00,240416,27.968591444111368,peer,metac-o1-preview,True,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34260 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,185690,13.204591559673784,spot_baseline,annabot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,185690,-12.043548518904458,peer,annabot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,185690,-0.2868730232265896,relative_legacy,annabot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,185690,-11.606950157414062,spot_peer,annabot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,185690,9.734629348722413,baseline,annabot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,189869,27.74524575619575,baseline,VeritasAI,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,189869,-0.511067786950858,peer,VeritasAI,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,189869,0.0382022570809605,relative_legacy,VeritasAI,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,189869,7.098059754822608,spot_peer,VeritasAI,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,189869,30.80930677119065,spot_baseline,VeritasAI,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,191975,28.303617983081487,spot_baseline,jkraybill_bot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,191975,1.3695249392218267,baseline,jkraybill_bot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,191975,4.4357654174566274,spot_peer,jkraybill_bot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,191975,0.0057896623812139,relative_legacy,jkraybill_bot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,191975,0.2146330326877588,peer,jkraybill_bot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,192418,48.738593027943466,baseline,InstitutPelFutur,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,192418,0.5664325011484219,relative_legacy,InstitutPelFutur,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,192418,51.08256237659889,spot_baseline,InstitutPelFutur,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,192418,28.638393835568856,spot_peer,InstitutPelFutur,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,192418,20.38150664523315,peer,InstitutPelFutur,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,192924,0.3290272683673023,relative_legacy,acm_bot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,192924,41.966484696901695,spot_baseline,acm_bot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,192924,34.89805800007785,baseline,acm_bot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,192924,11.110315053340033,peer,acm_bot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,192924,18.952561300890597,spot_peer,acm_bot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,220077,18.245340813776732,peer,mmBot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,220077,49.19665405748594,spot_baseline,mmBot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,220077,26.634616246511357,spot_peer,mmBot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,220077,0.5145136080460802,relative_legacy,mmBot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,220077,47.6076226159076,baseline,mmBot,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236037,18.63172739120625,peer,metac-o1,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236037,38.86911492916823,baseline,metac-o1,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236037,51.08256237659889,spot_baseline,metac-o1,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236037,28.638393835568856,spot_peer,metac-o1,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236037,0.5243038069079516,relative_legacy,metac-o1,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236038,25.01830905595037,baseline,metac-gpt-4o,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236038,1.1191552702905412,peer,metac-gpt-4o,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236038,0.0671642420431401,relative_legacy,metac-gpt-4o,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236038,7.098059754822608,spot_peer,metac-gpt-4o,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236038,30.80930677119065,spot_baseline,metac-gpt-4o,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236040,28.638393835568856,spot_peer,metac-claude-3-5-sonnet-latest,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236040,30.62857227699849,baseline,metac-claude-3-5-sonnet-latest,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236040,15.572366137482694,peer,metac-claude-3-5-sonnet-latest,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236040,0.4333700771127227,relative_legacy,metac-claude-3-5-sonnet-latest,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236040,51.08256237659889,spot_baseline,metac-claude-3-5-sonnet-latest,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236041,30.809306771191316,spot_baseline,metac-claude-3-5-sonnet-20240620,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236041,19.54348710576905,baseline,metac-claude-3-5-sonnet-20240620,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236041,2.430914897127009,peer,metac-claude-3-5-sonnet-20240620,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236041,0.0857641313975014,relative_legacy,metac-claude-3-5-sonnet-20240620,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236041,7.09805975482331,spot_peer,metac-claude-3-5-sonnet-20240620,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236043,-23.254518237361857,baseline,metac-grok-2-1212,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236043,-64.04669227310428,spot_baseline,metac-grok-2-1212,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236043,-93.68643922974076,spot_peer,metac-grok-2-1212,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236043,-0.9067598118923844,relative_legacy,metac-grok-2-1212,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236043,-34.1413504067864,peer,metac-grok-2-1212,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236045,-5.339738088139366,peer,metac-Gemini-Exp-1206,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236045,8.45119559891505,baseline,metac-Gemini-Exp-1206,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236045,16.425203348601617,spot_baseline,metac-Gemini-Exp-1206,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236045,-8.18505013167824,spot_peer,metac-Gemini-Exp-1206,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236045,-0.1253063460361544,relative_legacy,metac-Gemini-Exp-1206,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236047,-20.0395512952454,spot_peer,metac-Llama-3.1,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236047,5.268025782891358,spot_baseline,metac-Llama-3.1,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236047,1.6249848969584193,baseline,metac-Llama-3.1,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236047,-6.042003036114043,peer,metac-Llama-3.1,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,236047,-0.1530434907618291,relative_legacy,metac-Llama-3.1,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,237476,-3.848051656805233,spot_baseline,NextWorldLab,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,237476,-2.7361193266271084,baseline,NextWorldLab,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,237476,-24.46264920465023,peer,NextWorldLab,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,237476,-0.619073312421764,relative_legacy,NextWorldLab,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,237476,-29.725383574923026,spot_peer,NextWorldLab,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,239758,7.0980603923233625,spot_peer,metac-perplexity,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,239758,30.80930737119136,spot_baseline,metac-perplexity,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,239758,0.0358508610206787,relative_legacy,metac-perplexity,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,239758,1.2633483568630337,peer,metac-perplexity,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,239758,5.330442370529881,baseline,metac-perplexity,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,239759,30.80930737119136,spot_baseline,metac-exa,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,239759,7.405668881073867,baseline,metac-exa,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,239759,0.0531330946098068,relative_legacy,metac-exa,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,239759,1.7990559895322595,peer,metac-exa,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,239759,7.0980603923233625,spot_peer,metac-exa,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,240416,-8.18505013167824,spot_peer,metac-o1-preview,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,240416,11.155897806266465,baseline,metac-o1-preview,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,240416,-0.1920973954291378,relative_legacy,metac-o1-preview,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,240416,-8.228006545994049,peer,metac-o1-preview,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33758,"On March 31, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 06:31:51.299816+00,240416,16.425203348601617,spot_baseline,metac-o1-preview,True,0.6513669,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,0.5,2025-01-29 07:00:00+00,34261 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,185690,-37.48230433194876,spot_baseline,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,185690,-27.898383793747183,baseline,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,185690,-19.98466233371208,peer,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,185690,-0.3564827077283378,relative_legacy,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,185690,-30.388397955431103,spot_peer,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,189869,52.83887323349256,baseline,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,189869,40.296820447677725,spot_peer,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,189869,0.4919656668540393,relative_legacy,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,189869,44.84900490623657,peer,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,191975,0.0998830988447714,peer,jkraybill_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,191975,10.452218260483509,spot_peer,jkraybill_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,191975,0.0,relative_legacy,jkraybill_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,191975,0.1717465600629378,baseline,jkraybill_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,191975,17.972335180097737,spot_baseline,jkraybill_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,192418,-51.04207890958414,peer,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,192418,-73.69655941662059,spot_baseline,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,192418,-57.05906981395124,spot_peer,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,192418,-0.7120683014444859,relative_legacy,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,192418,-69.86772441557909,baseline,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,192924,31.259803279704425,baseline,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,192924,25.755626576828845,peer,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,192924,0.2512495606319919,relative_legacy,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,192924,25.092355810856198,spot_peer,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,192924,37.85116232537298,spot_baseline,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,220077,-30.997369097353182,baseline,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,220077,-32.19280948873623,spot_baseline,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,220077,-26.49284961594952,spot_peer,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,220077,-0.3185936826659383,relative_legacy,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,220077,-18.764732091876397,peer,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236037,-0.3171125676472738,relative_legacy,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236037,-24.348991789176548,baseline,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236037,-32.19280948873623,spot_baseline,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236037,-26.49284961594952,spot_peer,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236037,-17.199443708953925,peer,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236038,-26.49284961594952,spot_peer,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236038,-32.19280948873623,spot_baseline,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236038,-26.139378116494875,baseline,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236038,-18.349873054434443,peer,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236038,-0.3172989678942824,relative_legacy,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236040,15.3591836523252,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236040,26.303440583379377,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236040,16.587818120542927,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236040,0.0457324061567508,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236040,11.859320740967815,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236041,-0.4156842993505689,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236041,-31.889787169609107,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236041,-40.68056008230506,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236041,-23.408689549347777,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236041,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236043,7.342859315394787,spot_peer,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236043,4.675740123601204,baseline,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236043,13.750352374993504,spot_baseline,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236043,3.082659724739893,peer,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236043,-0.018113400115827,relative_legacy,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236045,0.0726420430021388,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236045,11.430218394037793,peer,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236045,25.092355810856198,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236045,37.85116232537298,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236045,15.749138052123824,baseline,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236047,-6.88013459517075,baseline,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236047,-21.308894672947368,spot_peer,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236047,-5.502363059068711,peer,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236047,-25.153876699596427,spot_baseline,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,236047,-0.1245222800244563,relative_legacy,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,237476,67.80719051126377,spot_baseline,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,237476,49.329045228945134,baseline,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,237476,38.267974032202446,peer,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,237476,47.15403831854466,spot_peer,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,237476,0.4103773173782805,relative_legacy,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,239758,16.587818120542927,spot_peer,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,239758,26.303440583379377,spot_baseline,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,239758,2.6010303588585724,peer,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,239758,3.9632789231561016,baseline,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,239758,0.0008368563922076,relative_legacy,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,239759,12.394407632572914,baseline,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,239759,0.0707687789119339,relative_legacy,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,239759,32.96632785218912,spot_peer,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,239759,48.54268271702416,spot_baseline,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,239759,8.747316113292198,peer,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,240416,13.750352374993504,spot_baseline,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,240416,-0.0116419165564373,relative_legacy,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,240416,7.342859315394787,spot_peer,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,240416,7.558808760968533,peer,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33759,"Will Tesla's stock price be at least $420 a share on March 31, 2025?",2025-01-25 06:31:51.342505+00,240416,9.142446715304734,baseline,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34262 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,185690,-4.511244632532569,spot_peer,annabot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,185690,-4.168690356834003,peer,annabot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,185690,40.86929534637717,baseline,annabot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,185690,52.70703355126608,spot_baseline,annabot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,185690,-0.047313222567137,relative_legacy,annabot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,189869,43.3908421764308,baseline,VeritasAI,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,189869,-8.152029146136382,peer,VeritasAI,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,189869,-0.095934341288132,relative_legacy,VeritasAI,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,189869,-7.578159424625882,spot_peer,VeritasAI,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,191975,0.9802721846226182,peer,jkraybill_bot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,191975,74.67427157777361,spot_baseline,jkraybill_bot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,191975,11.666942539153034,spot_peer,jkraybill_bot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,191975,0.0135929909922864,relative_legacy,jkraybill_bot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,191975,6.274232609699721,baseline,jkraybill_bot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,192418,0.0762652922136472,relative_legacy,InstitutPelFutur,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,192418,63.94815625444343,baseline,InstitutPelFutur,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,192418,5.454743848542661,peer,InstitutPelFutur,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,192418,67.80719051126377,spot_baseline,InstitutPelFutur,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,192418,6.609551041729652,spot_peer,InstitutPelFutur,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,192924,0.1473976120719928,relative_legacy,acm_bot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,192924,62.25988278280111,baseline,acm_bot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,192924,13.05091710972584,spot_peer,acm_bot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,192924,76.55347463629771,spot_baseline,acm_bot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,192924,10.361532110870977,peer,acm_bot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,220077,0.0762652922136472,relative_legacy,mmBot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,220077,5.454743848542661,peer,mmBot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,220077,64.97679438795484,baseline,mmBot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,220077,6.609551041729652,spot_peer,mmBot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,220077,67.80719051126377,spot_baseline,mmBot,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236037,-6.392843706207467,peer,metac-o1,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236037,48.54268271702416,spot_baseline,metac-o1,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236037,-7.578159424625882,spot_peer,metac-o1,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236037,-0.07865652183333,relative_legacy,metac-o1,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236037,36.47356886293283,baseline,metac-o1,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236038,39.2740027335879,baseline,metac-gpt-4o,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236038,-7.013245695337507,peer,metac-gpt-4o,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236038,-0.0796225364590274,relative_legacy,metac-gpt-4o,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236038,-7.578159424625882,spot_peer,metac-gpt-4o,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236040,39.41556532053509,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236040,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236040,6.609551041729652,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236040,0.0446176636086454,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236040,3.598120682320648,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236041,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236041,3.768973604629246,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236041,0.0477245217336016,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236041,6.609551041729652,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236041,41.823120662261616,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236043,0.0075319544397188,relative_legacy,metac-grok-2-1212,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236043,-0.2476668291372821,spot_peer,metac-grok-2-1212,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236043,0.053631819815014,peer,metac-grok-2-1212,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236043,20.353179830696448,baseline,metac-grok-2-1212,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236043,58.496250072115615,spot_baseline,metac-grok-2-1212,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236045,19.34143200171645,baseline,metac-Gemini-Exp-1206,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236045,-0.0321770745142061,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236045,-7.578159424625882,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236045,48.54268271702416,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236045,-2.978510132368673,peer,metac-Gemini-Exp-1206,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236047,7.448904171083966,baseline,metac-Llama-3.1,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236047,-23.956669156272078,spot_peer,metac-Llama-3.1,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236047,-0.083506992319078,relative_legacy,metac-Llama-3.1,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,236047,-6.596218524577246,peer,metac-Llama-3.1,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,237476,0.1040902351433738,relative_legacy,NextWorldLab,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,237476,10.521035686018257,spot_peer,NextWorldLab,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,237476,73.11832415721999,spot_baseline,NextWorldLab,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,237476,54.35678711431165,baseline,NextWorldLab,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,237476,7.513453914543327,peer,NextWorldLab,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,239758,2.261506550806588,peer,metac-perplexity,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,239758,12.890967218100387,baseline,metac-perplexity,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,239758,13.05091710972584,spot_peer,metac-perplexity,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,239758,0.0303734600771988,relative_legacy,metac-perplexity,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,239759,-15.45213146595883,spot_peer,metac-exa,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,239759,-0.0428511928166975,relative_legacy,metac-exa,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,239759,-3.597371343370574,peer,metac-exa,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,239759,9.23497641159321,baseline,metac-exa,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,239759,37.85116232537298,spot_baseline,metac-exa,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,240416,58.496250072115615,spot_baseline,metac-o1-preview,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,240416,38.44914779623915,baseline,metac-o1-preview,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,240416,-0.5480696598618966,peer,metac-o1-preview,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,240416,-0.0091746460165246,relative_legacy,metac-o1-preview,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33760,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on March 31, 2025? ",2025-01-25 06:31:51.519267+00,240416,-0.2476668291372821,spot_peer,metac-o1-preview,True,yes,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34263 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,185690,84.43053001639366,spot_baseline,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,185690,2.927538340297492,peer,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,185690,2.690782567175602,spot_peer,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,185690,68.15608514137622,baseline,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,185690,0.0564072969802662,relative_legacy,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,185699,3.568720077847752,peer,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,185699,89.53026213333065,spot_baseline,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,185699,6.433580737315966,spot_peer,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,185699,0.060636376150513,relative_legacy,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,185699,46.76506296039711,baseline,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,189869,-3.090350203465862,spot_peer,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,189869,-0.0071798032126274,relative_legacy,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,189869,-1.9106873639862625,peer,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,189869,68.6317144013534,baseline,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,192418,-3.090350203465862,spot_peer,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,192418,-0.0071798032126274,relative_legacy,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,192418,-1.9106873639862625,peer,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,192418,71.74500055183954,baseline,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,192924,-0.0071798032126274,relative_legacy,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,192924,-3.090350203465862,spot_peer,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,192924,60.87591487547521,baseline,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,192924,-1.910203172851538,peer,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,220077,-0.0071798032126274,relative_legacy,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,220077,-3.090350203465862,spot_peer,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,220077,72.95301225409281,baseline,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,220077,-1.9106873639862625,peer,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236037,0.112213095280262,relative_legacy,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236037,7.093421765968661,peer,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236037,68.90379973775703,baseline,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236037,8.686481749381421,spot_peer,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236038,-0.0776785348371501,relative_legacy,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236038,54.66761889762589,baseline,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236038,-7.271269994995461,peer,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236038,-9.509427807558954,spot_peer,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236040,-3.090350203465862,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236040,-0.0071345761466468,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236040,-1.5948240075015163,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236040,44.30853955198398,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236041,46.95244350673115,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236041,-1.679669906402291,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236041,-0.0071679739691726,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236041,-3.090350203465862,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236043,1.143207619425708,peer,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236043,0.0222172339176477,relative_legacy,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236043,2.961717144293395,spot_peer,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236043,30.426018220498776,baseline,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236045,-0.007121971230281,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236045,-3.090350203465862,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236045,-1.0692120272283137,peer,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236045,28.88473297754229,baseline,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236047,20.51465095117526,baseline,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236047,-2.815808736859646,peer,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236047,-0.0335402170059891,relative_legacy,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236047,-9.509427807558954,spot_peer,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,237476,-0.0071798032126274,relative_legacy,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,237476,-3.090350203465862,spot_peer,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,237476,57.92614361059944,baseline,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,237476,-1.914846325584962,peer,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,239758,8.686481749381421,spot_peer,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,239758,17.90028593761376,baseline,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,239758,1.6653628432716705,peer,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,239758,0.0238976673852085,relative_legacy,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,239759,20.599468502596824,baseline,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,239759,1.9295870343197237,peer,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,239759,0.028558678374672,relative_legacy,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,239759,8.686481749381421,spot_peer,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,240416,8.686481749381421,spot_peer,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,240416,5.992261547503238,peer,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,240416,0.0964515374864298,relative_legacy,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,240416,59.814188102072734,baseline,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,250015,-3.090350203465862,spot_peer,metac-deepseek-r1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,250015,8.21183738111404,baseline,metac-deepseek-r1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,250015,-0.332202965251718,peer,metac-deepseek-r1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,250015,-2.5785766900899808e-05,relative_legacy,metac-deepseek-r1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33761,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 06:31:51.559905+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34264 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,185690,-0.0069439670138762,relative_legacy,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,185690,56.59870407507712,spot_baseline,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,185690,47.34495382211859,baseline,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,185690,7.793149843090749,peer,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,185690,6.119160412688187,spot_peer,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,185699,15.722970948588046,peer,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,185699,0.1333433578358036,relative_legacy,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,185699,24.436964973650188,spot_peer,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,185699,81.55754288625727,spot_baseline,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,185699,50.45338379415293,baseline,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,189869,43.10974318061049,baseline,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,189869,4.101901662964711,peer,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,189869,-0.0743327819028322,relative_legacy,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,189869,0.2066808341251459,spot_peer,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,191975,-4.095740983309705,peer,jkraybill_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,191975,1.6329454834462946,baseline,jkraybill_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,191975,-0.0711048409103471,relative_legacy,jkraybill_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,191975,-27.401774869847724,spot_peer,jkraybill_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,191975,10.924910704673463,spot_baseline,jkraybill_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,192418,0.1175413497471662,relative_legacy,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,192418,67.80719051126377,spot_baseline,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,192418,21.020292176071884,peer,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,192418,63.17701470550195,baseline,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,192418,14.345298876721682,spot_peer,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,192924,39.25917689557434,baseline,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,192924,48.54268271702416,spot_baseline,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,192924,0.2066808341251459,spot_peer,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,192924,-0.0720975081591015,relative_legacy,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,192924,2.1928094020367634,peer,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,220077,-73.18537357810436,spot_peer,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,220077,-0.9936646309090432,relative_legacy,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,220077,-68.6017164227417,peer,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,220077,-48.77655218489663,baseline,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236037,59.69760041348943,baseline,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236037,0.1463295165680367,relative_legacy,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236037,18.3470186293529,peer,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236037,76.55347463629771,spot_baseline,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236037,20.764376480814768,spot_peer,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236038,39.08264491719823,baseline,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236038,-0.0721366881799557,relative_legacy,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236038,0.2066808341251459,spot_peer,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236038,2.1447658263238294,peer,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236040,7.511808403331782,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236040,34.87383976630704,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236040,-0.0093860377796109,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236040,4.842690875356577,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236041,5.260938715104129,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236041,7.511808403331782,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236041,-0.0093507732623839,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236041,36.8985229567589,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236043,0.023724270883945,relative_legacy,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236043,14.345298876721682,spot_peer,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236043,24.223324197265228,baseline,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236043,5.087719522073264,peer,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236045,67.80719051126377,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236045,14.345298876721682,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236045,0.0366675121841352,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236045,7.235593898163946,peer,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236045,33.48990929549488,baseline,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236047,7.858481252554416,baseline,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236047,-4.881625079532316,peer,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236047,-0.105484194146808,relative_legacy,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,236047,-16.11515585346691,spot_peer,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,237476,-41.97130461356548,spot_peer,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,237476,-0.5163270689207516,relative_legacy,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,237476,-31.590328365439,peer,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,237476,-6.900409469120525,baseline,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,237476,-8.926733809708741,spot_baseline,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,239758,14.345298876721682,spot_peer,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,239758,67.80719051126377,spot_baseline,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,239758,0.0139170548371075,relative_legacy,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,239758,2.31477501481489,peer,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,239758,11.040376251434443,baseline,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,239759,26.816443828574023,spot_peer,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,239759,0.0563484621402011,relative_legacy,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,239759,6.619582744439768,peer,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,239759,21.164964281616847,baseline,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,240416,7.511808403331782,spot_peer,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,240416,58.496250072115615,spot_baseline,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,240416,6.485201592641321,peer,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,240416,41.433411481471886,baseline,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33762,"Before April 1, 2025, will the government of Republika Srpska officially announce a date for an independence referendum?",2025-01-25 06:31:51.606047+00,240416,-0.0015781542368948,relative_legacy,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34265 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,185690,7.854527737913291,peer,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,185690,8.28574688196188,spot_peer,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,185690,92.2958964236172,spot_baseline,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,185690,80.92900924578717,baseline,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,185690,0.0695560975477673,relative_legacy,annabot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,185699,6.22481309563104,peer,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,185699,94.11063109464314,spot_baseline,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,185699,9.613507226019337,spot_peer,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,185699,0.05985658648866,relative_legacy,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,185699,60.5221781513265,baseline,MWG,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,189869,43.46306549150378,baseline,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,189869,-22.268377369084583,peer,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,189869,-0.322247970255255,relative_legacy,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,189869,-23.72652632370882,spot_peer,VeritasAI,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,191975,73.29203821082574,spot_baseline,jkraybill_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,191975,10.11936791166079,baseline,jkraybill_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,191975,-0.7878553912458971,peer,jkraybill_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,191975,-0.0158885155509197,relative_legacy,jkraybill_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,191975,-5.618527787993116,spot_peer,jkraybill_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,192418,12.56756028251639,peer,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,192418,98.5500430304885,spot_baseline,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,192418,12.861626751954445,spot_peer,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,192418,0.1264565404106778,relative_legacy,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,192418,91.44988694929226,baseline,InstitutPelFutur,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,192924,-3.2322803549410866,spot_peer,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,192924,61.54857683549852,baseline,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,192924,-2.332705869477841,peer,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,192924,-0.0570121165740572,relative_legacy,acm_bot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,220077,0.0712423504371612,relative_legacy,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,220077,8.508203351138162,spot_peer,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,220077,87.27792597923938,baseline,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,220077,8.169747365037749,peer,mmBot,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236037,71.92029016268268,baseline,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236037,0.0666368475822591,relative_legacy,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236037,7.079811323571358,peer,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236037,8.508203351138162,spot_peer,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236038,-9.631545991120312,spot_peer,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236038,54.35953396770917,baseline,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236038,-7.616873036213471,peer,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236038,-0.1271291536318068,relative_legacy,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236040,54.99731209945379,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236040,8.508203351138162,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236040,5.024875553185428,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236040,0.0463275506561772,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236041,84.79969065549501,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236041,2.8011077726090483,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236041,-2.5680133572248847e-05,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236041,1.6979459067098506,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236041,53.257059962528416,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236043,2.8011077726090483,spot_peer,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236043,0.0,relative_legacy,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236043,0.9400812679625006,peer,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236043,30.00127028717099,baseline,metac-grok-2-1212,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236045,39.84342764375927,baseline,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236045,1.2319312809857903,peer,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236045,-2.6418811740389756e-05,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236045,2.8011077726090483,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236047,19.870698767405923,baseline,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236047,-2.868886219247332,peer,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236047,-0.0497960244518656,relative_legacy,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236047,-9.631545991120312,spot_peer,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,237476,-0.277687501613769,relative_legacy,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,237476,-23.72652632370882,spot_peer,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,237476,48.54268271702416,spot_baseline,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,237476,38.24302872375803,baseline,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,237476,-18.92301643166944,peer,NextWorldLab,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,239758,8.508203351138162,spot_peer,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,239758,0.0147801630643769,relative_legacy,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,239758,1.5797315002755918,peer,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,239758,17.580426563387604,baseline,metac-perplexity,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,239759,0.0,relative_legacy,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,239759,19.29140514013244,baseline,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,239759,0.6009533751774165,peer,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,239759,2.8011077726090483,spot_peer,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,240416,2.8011077726090483,spot_peer,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,240416,59.6108355722315,baseline,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,240416,2.073841296492859,peer,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,240416,-2.070904350563015e-05,relative_legacy,metac-o1-preview,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,250015,5.876145914503635,baseline,metac-deepseek-r1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,250015,-3.2322803549410866,spot_peer,metac-deepseek-r1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,250015,-0.0063296889921107,relative_legacy,metac-deepseek-r1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33763,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 06:31:51.649872+00,250015,-0.2481056685206521,peer,metac-deepseek-r1,True,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,2025-01-29 07:00:00+00,34266 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,185690,94.47085476266273,spot_baseline,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,185690,0.0123873319634983,relative_legacy,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,185690,1.9879103631422892,peer,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,185690,63.95132972501797,baseline,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,185690,2.864398181624236,spot_peer,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,187708,-1.4047393723941692,peer,twsummerbot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,187708,87.02660703959828,spot_baseline,twsummerbot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,187708,-2.541273487609205,spot_peer,twsummerbot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,187708,-0.0305695350672857,relative_legacy,twsummerbot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,187708,47.30019303119307,baseline,twsummerbot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,189869,70.56450141515955,baseline,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,189869,-4.158358148830455,spot_peer,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,189869,-0.0651860256149074,relative_legacy,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,189869,-3.917655467459341,peer,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,190710,1.5058269366269894,spot_peer,Bot_Pepa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,190710,-0.0002776712806789,relative_legacy,Bot_Pepa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,190710,1.2874702112229792,peer,Bot_Pepa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,190710,89.24608894910813,baseline,Bot_Pepa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,190710,92.5999418556223,spot_baseline,Bot_Pepa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,191935,0.0041604256505403,relative_legacy,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,191935,0.5105427735225418,peer,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,191935,3.688445564543771,spot_peer,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,191935,13.233428728334223,baseline,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,191935,95.60566524124027,spot_baseline,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,191975,4.869781457375021,spot_peer,jkraybill_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,191975,97.23250415571516,spot_baseline,jkraybill_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,191975,1.1488656442672205,peer,jkraybill_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,191975,22.588056573844888,baseline,jkraybill_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,191975,0.0107618928695674,relative_legacy,jkraybill_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,192418,90.32217761891678,baseline,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,192418,-0.0002776712806789,relative_legacy,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,192418,1.5058269366269894,spot_peer,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,192418,1.2874702112229792,peer,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,192924,1.415197967067709,peer,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,192924,94.86008474933556,spot_baseline,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,192924,3.1470391669926547,spot_peer,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,192924,0.0092644212502378,relative_legacy,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,192924,40.04895923556634,baseline,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,218666,3.688445564543771,spot_peer,GreeneiBot2,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,218666,0.0143689953429519,relative_legacy,GreeneiBot2,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,218666,1.86762466388704,peer,GreeneiBot2,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,218666,46.58792997450072,baseline,GreeneiBot2,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,218666,95.60566524124027,spot_baseline,GreeneiBot2,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,220077,-0.0002776712806789,relative_legacy,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,220077,91.97564709290565,baseline,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,220077,1.2874702112229792,peer,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,220077,1.5058269366269894,spot_peer,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236037,9.241569001880408e-06,relative_legacy,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236037,0.7010019502307013,peer,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236037,37.30703177317542,baseline,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236037,1.5058269366269894,spot_peer,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236038,-6.635693407987151,peer,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236038,27.55240250173897,baseline,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236038,-16.497533312832534,spot_peer,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236038,-0.1006877467075856,relative_legacy,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236040,0.7058716972604544,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236040,37.6895825413505,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236040,1.5058269366269894,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236040,-1.903914336637628e-05,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236041,37.67556557159685,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236041,0.7069098428987959,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236041,-3.590777124226881e-06,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236041,1.5058269366269894,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236041,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236043,0.707512507308964,peer,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236043,37.66195534955576,baseline,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236043,1.5058269366269894,spot_peer,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236043,5.731862995928966e-06,relative_legacy,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236045,1.5058269366269894,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236045,-6.059571575861836e-06,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236045,0.6851028822378288,peer,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236045,36.66445983853795,baseline,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236047,34.01099731095575,baseline,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236047,84.79969065549501,spot_baseline,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236047,-4.158358148830455,spot_peer,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236047,-0.0313187227446716,relative_legacy,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,236047,-1.5857512494436974,peer,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,239758,4.762936058249297,spot_peer,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,239758,0.0171911248984911,relative_legacy,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,239758,1.9107977269323355,peer,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,239758,37.213136318254605,baseline,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,239758,97.08536543404836,spot_baseline,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,239759,1.765369690417436,peer,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,239759,0.0159394536588098,relative_legacy,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,239759,4.762936058249297,spot_peer,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,239759,97.08536543404836,spot_baseline,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,239759,34.49846475057409,baseline,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,240414,29.944967270328835,baseline,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,240414,-0.0275447074255358,relative_legacy,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,240414,-4.158358148830455,spot_peer,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,240414,84.79969065549501,spot_baseline,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,240414,-1.403240314689648,peer,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,240416,33.84376970913162,baseline,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,240416,-1.575653635880421,peer,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,240416,-4.158358148830455,spot_peer,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,240416,-0.0311249651558591,relative_legacy,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,250015,-0.0285704448690276,relative_legacy,metac-deepseek-r1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,250015,84.79969065549501,spot_baseline,metac-deepseek-r1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,250015,-1.4523848949878169,peer,metac-deepseek-r1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,250015,31.05765553530633,baseline,metac-deepseek-r1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33764,"Will Elon Musk confirm that he is Adrian Dittman before April 1, 2025?",2025-01-25 06:31:51.691576+00,250015,-4.158358148830455,spot_peer,metac-deepseek-r1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34267 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,185690,15.933883554410473,baseline,annabot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,185690,0.9862509530131388,relative_legacy,annabot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,185690,48.61001447486783,peer,annabot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,185690,22.54006571130401,spot_baseline,annabot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,185690,60.82873216695712,spot_peer,annabot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,187708,-0.6416351425677327,relative_legacy,twsummerbot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,187708,-83.13299831338352,spot_baseline,twsummerbot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,187708,-50.71505763687971,spot_peer,twsummerbot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,187708,-19.771734445883705,peer,twsummerbot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,187708,-32.86937944552497,baseline,twsummerbot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,189869,-13.761430185347097,peer,VeritasAI,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,189869,-20.945874652458407,spot_peer,VeritasAI,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,189869,-54.930614433405445,spot_baseline,VeritasAI,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,189869,-45.795845603009525,baseline,VeritasAI,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,189869,-0.604626405491561,relative_legacy,VeritasAI,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,190710,-54.930614433405445,spot_baseline,Bot_Pepa,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,190710,-0.6210016382099596,relative_legacy,Bot_Pepa,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,190710,-52.61025653456223,baseline,Bot_Pepa,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,190710,-14.892361196608633,peer,Bot_Pepa,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,190710,-20.945874652458407,spot_peer,Bot_Pepa,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,191935,1.4041173891458747,peer,pgodzinai,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,191935,-4.307598870975836,baseline,pgodzinai,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,191935,-27.302751491515263,spot_baseline,pgodzinai,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,191935,-0.0006305110255358,relative_legacy,pgodzinai,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,191935,8.216869563981232,spot_peer,pgodzinai,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,191975,0.0232573410674394,relative_legacy,jkraybill_bot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,191975,-1.0248833978987872,baseline,jkraybill_bot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,191975,1.5263371991587835,peer,jkraybill_bot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,191975,-14.553575691378787,spot_baseline,jkraybill_bot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,191975,21.67433290856973,spot_peer,jkraybill_bot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,192418,-53.30061721868697,baseline,InstitutPelFutur,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,192418,-54.930614433405445,spot_baseline,InstitutPelFutur,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,192418,-20.945874652458407,spot_peer,InstitutPelFutur,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,192418,-0.6246072502772898,relative_legacy,InstitutPelFutur,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,192418,-15.121508019268626,peer,InstitutPelFutur,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,192924,-21.632908458059067,baseline,acm_bot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,192924,-6.766955967861189,peer,acm_bot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,192924,-17.304586089412958,spot_peer,acm_bot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,192924,-0.2965393400484781,relative_legacy,acm_bot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,192924,-51.48097263683608,spot_baseline,acm_bot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,218666,-0.9693829915777992,relative_legacy,GreeneiBot2,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,218666,-78.43079589569186,spot_baseline,GreeneiBot2,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,218666,-45.7516217515385,spot_peer,GreeneiBot2,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,218666,-28.657496148269203,peer,GreeneiBot2,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,218666,-51.00064951398938,baseline,GreeneiBot2,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,220077,6.309666184453478,peer,mmBot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,220077,-0.1141321512540137,relative_legacy,mmBot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,220077,-1.7001910378491034,spot_peer,mmBot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,220077,-36.69786153535453,spot_baseline,mmBot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,220077,-36.10806792919432,baseline,mmBot,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236037,0.075709966166732,relative_legacy,metac-o1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236037,6.657339297715211,peer,metac-o1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236037,15.636893210427594,spot_peer,metac-o1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236037,-8.058789425395771,baseline,metac-o1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236037,-20.27325540540818,spot_baseline,metac-o1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236038,-22.200095345430142,baseline,metac-gpt-4o,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236038,-8.112438121375352,peer,metac-gpt-4o,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236038,-20.945874652458407,spot_peer,metac-gpt-4o,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236038,-54.930614433405445,spot_baseline,metac-gpt-4o,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236038,-0.3275695802746445,relative_legacy,metac-gpt-4o,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236040,13.180151278810696,peer,metac-claude-3-5-sonnet-latest,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236040,0.2503361371344651,relative_legacy,metac-claude-3-5-sonnet-latest,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236040,31.350547565428524,spot_peer,metac-claude-3-5-sonnet-latest,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236040,-5.386635490144142,spot_baseline,metac-claude-3-5-sonnet-latest,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236040,-2.1785796421831063,baseline,metac-claude-3-5-sonnet-latest,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236041,11.563421369244889,peer,metac-claude-3-5-sonnet-20240620,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236041,0.2065833957220705,relative_legacy,metac-claude-3-5-sonnet-20240620,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236041,-9.116077839697695,spot_baseline,metac-claude-3-5-sonnet-20240620,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236041,-3.6885174928301434,baseline,metac-claude-3-5-sonnet-20240620,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236041,27.41391397423311,spot_peer,metac-claude-3-5-sonnet-20240620,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236043,6.753089312432024,peer,metac-grok-2-1212,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236043,-20.27325540540818,spot_baseline,metac-grok-2-1212,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236043,15.636893210427594,spot_peer,metac-grok-2-1212,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236043,-8.17642995437971,baseline,metac-grok-2-1212,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236043,0.0763491812452342,relative_legacy,metac-grok-2-1212,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236045,0.1932317290550307,relative_legacy,metac-Gemini-Exp-1206,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236045,27.41391397423311,spot_peer,metac-Gemini-Exp-1206,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236045,-9.116077839697695,spot_baseline,metac-Gemini-Exp-1206,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236045,-3.4156570260411296,baseline,metac-Gemini-Exp-1206,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236045,10.662933087620235,peer,metac-Gemini-Exp-1206,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236047,17.16214428310245,peer,metac-Llama-3.1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236047,42.597134464743775,spot_peer,metac-Llama-3.1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236047,5.268025782891358,spot_baseline,metac-Llama-3.1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236047,0.3628383721791113,relative_legacy,metac-Llama-3.1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,236047,2.059413562844981,baseline,metac-Llama-3.1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,240414,-19.27348008986809,baseline,minefrac1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,240414,-6.970244363233411,peer,minefrac1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,240414,-0.277447184022637,relative_legacy,minefrac1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,240414,-20.945874652458407,spot_peer,minefrac1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,240414,-54.930614433405445,spot_baseline,minefrac1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,250015,-64.04669227310316,spot_baseline,metac-deepseek-r1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,250015,-30.56840126102823,spot_peer,metac-deepseek-r1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,250015,-0.3478085603032739,relative_legacy,metac-deepseek-r1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,250015,-9.775045428704091,peer,metac-deepseek-r1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33765,"What will Elon Musk's net worth be on March 31, 2025, according to Forbes?",2025-01-25 06:31:51.94265+00,250015,-21.256654565245096,baseline,metac-deepseek-r1,True,340.4,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34268 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,185690,30.166296694690303,spot_baseline,annabot,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,185690,21.63039859517804,baseline,annabot,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,185690,-3.6770069327379664,peer,annabot,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,185690,-1.6643439419245143,spot_peer,annabot,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,185690,-0.1767227106452939,relative_legacy,annabot,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,185699,90.74624500098716,spot_peer,MWG,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,185699,0.0513954867138497,relative_legacy,MWG,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,185699,5.641458891782626,peer,MWG,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,185699,5.257014565053834,baseline,MWG,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,185699,84.56222775796748,spot_baseline,MWG,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,187708,-0.0814177288940921,relative_legacy,twsummerbot,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,187708,11.45175250776814,spot_peer,twsummerbot,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,187708,37.88686515397726,spot_baseline,twsummerbot,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,187708,5.469371850186516,peer,twsummerbot,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,187708,16.001795988512775,baseline,twsummerbot,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,189869,43.80297200410419,spot_baseline,VeritasAI,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,189869,21.50233731407379,spot_peer,VeritasAI,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,189869,0.0347602751596606,relative_legacy,VeritasAI,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,189869,15.825147711061716,peer,VeritasAI,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,189869,36.2284422485334,baseline,VeritasAI,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,190710,58.17750514702874,spot_baseline,Bot_Pepa,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,190710,45.92252918415726,spot_peer,Bot_Pepa,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,190710,0.3886546868951382,relative_legacy,Bot_Pepa,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,190710,45.15598319352153,peer,Bot_Pepa,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,190710,55.48076816574528,baseline,Bot_Pepa,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,191935,-10.097868842419825,spot_baseline,pgodzinai,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,191935,-70.06716705475806,spot_peer,pgodzinai,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,191935,-0.2574045911446194,relative_legacy,pgodzinai,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,191935,-13.496647624263243,peer,pgodzinai,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,191935,-2.042848576669765,baseline,pgodzinai,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,192418,-37.84688225729583,peer,InstitutPelFutur,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,192418,13.86468838532139,spot_baseline,InstitutPelFutur,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,192418,-29.358349635715225,spot_peer,InstitutPelFutur,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,192418,13.390902666797023,baseline,InstitutPelFutur,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,192418,-0.5957163621200618,relative_legacy,InstitutPelFutur,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,220077,33.698230410190384,baseline,mmBot,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,220077,34.46099051970067,spot_baseline,mmBot,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,220077,5.631701514803122,spot_peer,mmBot,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,220077,-0.133827211958836,relative_legacy,mmBot,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,220077,1.352209779274163,peer,mmBot,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236037,-3.820925588102491,peer,metac-o1,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236037,23.08654180207135,spot_baseline,metac-o1,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236037,-13.691793539897503,spot_peer,metac-o1,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236037,-0.1834274232392743,relative_legacy,metac-o1,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236037,8.06413654699371,baseline,metac-o1,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236038,0.063106972569634,relative_legacy,metac-gpt-4o,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236038,53.08780920065796,spot_baseline,metac-gpt-4o,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236038,37.27589347536978,spot_peer,metac-gpt-4o,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236038,15.64738815109322,peer,metac-gpt-4o,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236038,20.943976964646563,baseline,metac-gpt-4o,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236040,18.835510684165914,baseline,metac-claude-3-5-sonnet-latest,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236040,27.886992173628503,spot_peer,metac-claude-3-5-sonnet-latest,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236040,47.56119116032779,spot_baseline,metac-claude-3-5-sonnet-latest,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236040,0.012839330490072,relative_legacy,metac-claude-3-5-sonnet-latest,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236040,11.9585011357815,peer,metac-claude-3-5-sonnet-latest,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236041,-35.273337281506954,peer,metac-claude-3-5-sonnet-20240620,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236041,-22.161460295122545,spot_baseline,metac-claude-3-5-sonnet-20240620,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236041,-90.56141302352576,spot_peer,metac-claude-3-5-sonnet-20240620,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236041,-8.760325172321878,baseline,metac-claude-3-5-sonnet-20240620,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236041,-0.6272004170797671,relative_legacy,metac-claude-3-5-sonnet-20240620,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236043,0.1305556859377966,relative_legacy,metac-grok-2-1212,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236043,50.04144117747155,spot_peer,metac-grok-2-1212,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236043,60.60203306538714,spot_baseline,metac-grok-2-1212,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236043,23.665084531353905,baseline,metac-grok-2-1212,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236043,20.53138537197508,peer,metac-grok-2-1212,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236045,12.13016198981855,peer,metac-Gemini-Exp-1206,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236045,0.0429212644225004,relative_legacy,metac-Gemini-Exp-1206,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236045,35.15859326411393,spot_peer,metac-Gemini-Exp-1206,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236045,51.84149622235972,spot_baseline,metac-Gemini-Exp-1206,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236045,16.577279430036125,baseline,metac-Gemini-Exp-1206,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236047,-47.071606576409664,spot_baseline,metac-Llama-3.1,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236047,-0.8043275946041762,relative_legacy,metac-Llama-3.1,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236047,-132.88004317676317,spot_peer,metac-Llama-3.1,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236047,-48.79591406899642,peer,metac-Llama-3.1,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,236047,-17.553466170690765,baseline,metac-Llama-3.1,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,239758,-157.8612422385122,spot_peer,metac-perplexity,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,239758,-0.8948686039969169,relative_legacy,metac-perplexity,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,239758,-22.16257262582949,baseline,metac-perplexity,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,239758,-55.84158212515718,peer,metac-perplexity,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,239758,-61.77636711938568,spot_baseline,metac-perplexity,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,239759,28.44076916829848,peer,metac-exa,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,239759,71.50119178384749,spot_peer,metac-exa,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,239759,28.01176223798719,baseline,metac-exa,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,239759,73.23395250202961,spot_baseline,metac-exa,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,239759,0.2408932027323584,relative_legacy,metac-exa,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,240414,74.18257388175704,spot_baseline,minefrac1,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,240414,73.11275828654183,spot_peer,minefrac1,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,240414,0.2259565575856182,relative_legacy,minefrac1,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,240414,26.21603738120753,peer,minefrac1,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,240414,25.53797254190621,baseline,minefrac1,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,240416,16.65623891228498,baseline,metac-o1-preview,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,240416,10.383881254059238,peer,metac-o1-preview,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,240416,0.0056443331761683,relative_legacy,metac-o1-preview,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,240416,46.36386715139937,spot_baseline,metac-o1-preview,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33766,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 06:31:51.988736+00,240416,25.8529169283339,spot_peer,metac-o1-preview,True,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34269 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,185690,50.16174805429828,spot_baseline,annabot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,185690,31.03315182540897,spot_peer,annabot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,185690,36.40653817738986,baseline,annabot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,185690,20.341380860146085,peer,annabot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,185690,0.1517182443508117,relative_legacy,annabot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,187708,11.08655162855628,baseline,twsummerbot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,187708,24.36690809668629,spot_baseline,twsummerbot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,187708,12.160218980816673,spot_peer,twsummerbot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,187708,0.0010189302544977,relative_legacy,twsummerbot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,187708,4.072994014377355,peer,twsummerbot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,189869,13.577093349209283,spot_peer,VeritasAI,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,189869,21.4609440669282,baseline,VeritasAI,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,189869,7.648591287794609,peer,VeritasAI,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,189869,-0.0214412677235459,relative_legacy,VeritasAI,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,191935,-4.445173342248342,baseline,pgodzinai,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,191935,-29.222001395541405,spot_peer,pgodzinai,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,191935,-0.0807714441739047,relative_legacy,pgodzinai,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,191935,-4.034965064358655,peer,pgodzinai,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,191935,-32.19280948873623,spot_baseline,pgodzinai,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,191975,-59.50968778548695,spot_baseline,jkraybill_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,191975,-0.1635558168460208,relative_legacy,jkraybill_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,191975,-9.47243919459243,peer,jkraybill_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,191975,-49.20854174491621,spot_peer,jkraybill_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,191975,-11.34226869596127,baseline,jkraybill_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,192418,-29.222001395541405,spot_peer,InstitutPelFutur,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,192418,-32.19280948873623,spot_baseline,InstitutPelFutur,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,192418,-0.5557565178606587,relative_legacy,InstitutPelFutur,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,192418,-39.607270616743406,peer,InstitutPelFutur,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,192418,-30.947081925347963,baseline,InstitutPelFutur,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,192924,13.577093349209283,spot_peer,acm_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,192924,10.89656313204244,baseline,acm_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,192924,4.5610047074573306,peer,acm_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,192924,0.009829841884693,relative_legacy,acm_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,192924,26.303440583379377,spot_baseline,acm_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,220077,22.643277085068693,peer,mmBot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,220077,37.85116232537298,spot_baseline,mmBot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,220077,22.02604582586035,spot_peer,mmBot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,220077,0.1175791022772577,relative_legacy,mmBot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,220077,36.81787198221844,baseline,mmBot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236037,-1.005287198437996e-05,relative_legacy,metac-o1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236037,8.738013235691163,baseline,metac-o1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236037,3.833925886287304,peer,metac-o1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236037,26.303440583379377,spot_baseline,metac-o1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236037,13.577093349209283,spot_peer,metac-o1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236038,0.0968422010911396,relative_legacy,metac-gpt-4o,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236038,29.84855399764208,spot_peer,metac-gpt-4o,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236038,18.99231805755465,baseline,metac-gpt-4o,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236038,10.90327861364048,peer,metac-gpt-4o,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236040,7.814140517191205,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236040,0.0549893129071751,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236040,22.02604582586035,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236040,14.805930734116778,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236041,-15.200309344504996,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236041,-5.913633181698215,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236041,-7.44005887515619,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236041,-0.1515610276387493,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236041,-16.789347631812035,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236043,-15.200309344504996,spot_baseline,metac-grok-2-1212,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236043,-5.844409563933122,baseline,metac-grok-2-1212,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236043,-7.338994481974505,peer,metac-grok-2-1212,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236043,-0.1496237779519928,relative_legacy,metac-grok-2-1212,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236043,-16.789347631812035,spot_peer,metac-grok-2-1212,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236045,37.85116232537298,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236045,5.7913897898905216,peer,metac-Gemini-Exp-1206,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236045,10.832422563396351,baseline,metac-Gemini-Exp-1206,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236045,22.02604582586035,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236045,0.0330438547452802,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236047,7.070827602120868e-05,relative_legacy,metac-Llama-3.1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236047,13.577093349209283,spot_peer,metac-Llama-3.1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236047,9.488638365186038,baseline,metac-Llama-3.1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,236047,4.143760875049656,peer,metac-Llama-3.1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,239758,-73.69655941662063,spot_baseline,metac-perplexity,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,239758,-21.20393880516136,peer,metac-perplexity,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,239758,-0.3423528974293102,relative_legacy,metac-perplexity,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,239758,-25.23104985725313,baseline,metac-perplexity,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,239758,-59.588442376562725,spot_peer,metac-perplexity,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,239759,-0.3798893827051161,relative_legacy,metac-exa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,239759,-73.69655941662063,spot_baseline,metac-exa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,239759,-59.588442376562725,spot_peer,metac-exa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,239759,-28.73023761556046,baseline,metac-exa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,239759,-24.284371705121185,peer,metac-exa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,240414,0.1095464218159584,relative_legacy,minefrac1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,240414,19.904903366624332,baseline,minefrac1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,240414,37.13113487682031,spot_peer,minefrac1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,240414,58.496250072115615,spot_baseline,minefrac1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,240414,11.970001339292685,peer,minefrac1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,240416,29.84855399764208,spot_peer,metac-o1-preview,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,240416,16.83603973172678,baseline,metac-o1-preview,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,240416,9.65829376691176,peer,metac-o1-preview,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,240416,48.54268271702416,spot_baseline,metac-o1-preview,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33767,Will the Euro Area Inflation Rate be above 2.4% for January 2025?,2025-01-25 06:31:52.030506+00,240416,0.0771371678264409,relative_legacy,metac-o1-preview,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34270 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,185690,9.396912157678107,baseline,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,185690,19.82804093886776,peer,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,185690,0.1642239893341701,relative_legacy,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,185690,12.533758727345688,spot_peer,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,185690,12.432813500220147,spot_baseline,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,187708,15.055967657538112,spot_baseline,twsummerbot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,187708,6.358243665915497,baseline,twsummerbot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,187708,7.371280307219633,peer,twsummerbot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,187708,0.0264716411076451,relative_legacy,twsummerbot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,187708,14.45894545380116,spot_peer,twsummerbot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,189869,-0.3186674709950852,relative_legacy,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,189869,-34.35652082110209,spot_peer,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,189869,-20.38731938621808,peer,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,189869,-41.58178766622884,baseline,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,191935,4.304261723712445,peer,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,191935,37.85116232537298,spot_baseline,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,191935,31.18880712779216,spot_peer,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,191935,0.0332607122019257,relative_legacy,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,191935,5.223710818037387,baseline,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,192418,-32.19280948873623,spot_baseline,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,192418,-20.21790277850558,spot_peer,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,192418,-0.1492278163284484,relative_legacy,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,192418,-30.774240975039284,baseline,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,192418,-5.345386630789074,peer,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,192924,-2.021993221565188,spot_peer,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,192924,0.1294033995435748,peer,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,192924,-3.0336404670811707,baseline,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,192924,-0.065910626976282,relative_legacy,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,192924,-7.400058144377692,spot_baseline,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,220077,-0.3333840346084595,relative_legacy,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,220077,-34.35652082110209,spot_peer,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,220077,-49.75953662933056,baseline,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,220077,-22.36160977260509,peer,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236037,4.439245346558043,baseline,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236037,13.50072757522162,spot_peer,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236037,4.833785819913151e-05,relative_legacy,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236037,4.764658747734642,peer,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236037,13.750352374993504,spot_baseline,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236038,-7.746757826653223,spot_peer,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236038,-2.3138835560038835,peer,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236038,-5.831479682019661,baseline,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236038,-15.200309344505014,spot_baseline,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236038,-0.0948429593626005,relative_legacy,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236040,-12.712519027517168,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236040,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236040,-34.35652082110209,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236040,-0.2358639958231446,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236040,-19.985011860215693,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236041,-2.306300406716511,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236041,-5.860772858804484,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236041,-15.200309344505014,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236041,-7.746757826653223,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236041,-0.0948294049489501,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236043,21.08220652744435,peer,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236043,0.221881338055999,relative_legacy,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236043,25.870030616514143,baseline,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236043,53.17415163372393,spot_peer,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236045,13.750352374993504,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236045,13.50072757522162,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236045,3.5277413931380526e-05,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236045,3.857141891795634,peer,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236045,3.679214102616221,baseline,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236047,-20.21790277850558,spot_peer,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236047,-11.470896275085712,baseline,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236047,-6.689609137189046,peer,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236047,-0.1553648963440801,relative_legacy,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,239758,46.34066116033404,spot_peer,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,239758,19.958733636692717,baseline,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,239758,16.321589088722458,peer,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,239758,58.496250072115615,spot_baseline,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,239758,0.1566267905107428,relative_legacy,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,239759,13.50072757522162,spot_peer,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,239759,13.750352374993504,spot_baseline,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,239759,0.0174793415340352,relative_legacy,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,239759,6.151678736582992,peer,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,239759,5.421618506559165,baseline,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,240414,-0.2920744247666254,relative_legacy,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,240414,-24.88528029293586,baseline,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,240414,-16.71248933209162,peer,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,240414,-73.69655941662059,spot_baseline,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,240414,-50.67835750869413,spot_peer,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,240416,0.0031192583293776,relative_legacy,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,240416,13.750352374993504,spot_baseline,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,240416,13.50072757522162,spot_peer,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,240416,4.634587367572971,baseline,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33768,Will the Euro Area Inflation Rate be above 2.4% for February 2025?,2025-01-25 06:31:52.070741+00,240416,5.018855887507088,peer,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,0.53,2025-01-30 02:00:00+00,34271 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,185690,-2.942302119366844,spot_peer,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,185690,39.364726497971205,baseline,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,185690,-0.5292995828983329,peer,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,185690,-0.0222860615056284,relative_legacy,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,185690,50.222874884146655,spot_baseline,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,187708,10.674245546825258,spot_peer,twsummerbot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,187708,0.7608373917708061,peer,twsummerbot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,187708,4.909987893950662,baseline,twsummerbot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,187708,68.88517438658803,spot_baseline,twsummerbot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,187708,0.0074050030459327,relative_legacy,twsummerbot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,189869,-0.1192556360891358,relative_legacy,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,189869,-8.642153082491971,peer,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,189869,31.028379738498018,baseline,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,189869,-11.96905757074794,spot_peer,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,190710,-4.168218396671973,spot_peer,Bot_Pepa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,190710,-0.0316122100187902,relative_legacy,Bot_Pepa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,190710,-1.9904775146092928,peer,Bot_Pepa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,190710,46.10973582463311,baseline,Bot_Pepa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,190710,48.54268271702416,spot_baseline,Bot_Pepa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,191935,58.496250072115615,spot_baseline,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,191935,0.4516302579203981,peer,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,191935,8.083916658171173,baseline,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,191935,0.0,relative_legacy,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,191935,3.094189128270292,spot_peer,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,191975,28.293396327149885,spot_baseline,jkraybill_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,191975,-2.325108470607187,peer,jkraybill_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,191975,-18.94267710140064,spot_peer,jkraybill_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,191975,-0.0375030575044312,relative_legacy,jkraybill_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,191975,3.513207322767077,baseline,jkraybill_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,192418,88.12633081247513,baseline,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,192418,33.20129661086785,peer,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,192418,0.387495788053956,relative_legacy,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,192418,27.97721839818928,spot_peer,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,192924,6.545749425427224,spot_peer,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,192924,0.024110658256685,relative_legacy,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,192924,2.842717907153403,peer,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,192924,25.6479038529761,baseline,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,192924,63.22682154995129,spot_baseline,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,220077,-29.553698061607545,spot_peer,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,220077,-29.802458185090032,peer,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,220077,13.236364822159452,baseline,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,220077,-0.3629069517049841,relative_legacy,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,220077,13.750352374993504,spot_baseline,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236037,20.270049083435445,baseline,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236037,58.496250072115615,spot_baseline,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236037,1.070854522870197,peer,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236037,1.2922326853392765e-05,relative_legacy,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236037,3.094189128270292,spot_peer,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236038,19.1165400880807,baseline,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236038,-4.168218396671973,spot_peer,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236038,-0.035308793501924,relative_legacy,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236038,-1.547554976909312,peer,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236040,0.0039456751465798,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236040,23.040450577015893,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236040,1.3486617366339366,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236040,3.094189128270292,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236041,-0.0772037897288617,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236041,-11.96905757074794,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236041,14.863694902371083,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236041,-4.636068292099717,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236043,18.82986716579201,baseline,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236043,-4.168218396671973,spot_peer,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236043,-0.0352355406991968,relative_legacy,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236043,-1.535138465612564,peer,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236045,0.0390176892826034,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236045,3.779092201233308,peer,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236045,71.36958148433591,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236045,21.63239185793829,baseline,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236045,12.486940047001102,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236047,1.176006455536523,peer,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236047,3.094189128270292,spot_peer,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236047,58.496250072115615,spot_baseline,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236047,21.53886101161673,baseline,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,236047,0.0013566066006039,relative_legacy,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,239758,5.785646008420144,peer,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,239758,27.053476057196647,baseline,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,239758,16.269256807639337,spot_peer,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,239758,0.0638340273982916,relative_legacy,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,239759,-0.035228873540401,relative_legacy,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,239759,18.76979362199784,baseline,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,239759,-1.5333406069486446,peer,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,239759,48.54268271702416,spot_baseline,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,239759,-4.168218396671973,spot_peer,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,240414,-0.0340188412708116,relative_legacy,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,240414,48.54268271702416,spot_baseline,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,240414,-4.168218396671973,spot_peer,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,240414,16.59416323126878,baseline,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,240414,-1.443812464898084,peer,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,240416,24.273515191968357,baseline,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,240416,3.5686685497585056,peer,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,240416,67.80719051126377,spot_baseline,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,240416,9.887717669067271,spot_peer,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33769,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 06:31:52.111478+00,240416,0.0337264404018837,relative_legacy,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34272 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,185690,31.100018805484144,peer,annabot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,185690,23.45293152058585,spot_peer,annabot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,185690,0.1487452793622531,relative_legacy,annabot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,185690,-67.0988662729698,baseline,annabot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,185690,-82.46989660997563,spot_baseline,annabot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,187708,-6.793882865657539,spot_baseline,twsummerbot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,187708,78.82169239252507,spot_peer,twsummerbot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,187708,0.4667182062088227,relative_legacy,twsummerbot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,187708,34.19518952069514,peer,twsummerbot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,187708,-2.886696256733546,baseline,twsummerbot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,189869,36.683061183480525,peer,VeritasAI,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,189869,-73.69655941662063,spot_baseline,VeritasAI,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,189869,29.87199067913248,spot_peer,VeritasAI,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,189869,0.2162113825748094,relative_legacy,VeritasAI,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,189869,-59.67219687555181,baseline,VeritasAI,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,191935,-5.971347393867855,peer,pgodzinai,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,191935,-23.95743975871892,baseline,pgodzinai,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,191935,-43.29354504663953,spot_peer,pgodzinai,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,191935,-173.6965594166206,spot_baseline,pgodzinai,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,191935,-0.0572448638014346,relative_legacy,pgodzinai,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,191975,39.39805000750905,spot_peer,jkraybill_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,191975,7.312190001565399,peer,jkraybill_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,191975,-11.440014154879202,baseline,jkraybill_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,191975,-60.67668710395048,spot_baseline,jkraybill_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,191975,0.1185429447013417,relative_legacy,jkraybill_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,192418,-1.1122307850648396,relative_legacy,InstitutPelFutur,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,192418,-232.19280948873623,spot_baseline,InstitutPelFutur,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,192418,-75.75875527500459,peer,InstitutPelFutur,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,192418,-219.78985461063849,baseline,InstitutPelFutur,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,192418,-86.0926397913902,spot_peer,InstitutPelFutur,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,192924,-12.927104065618195,spot_peer,acm_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,192924,-5.349790456992244,peer,acm_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,192924,-53.42446202492236,baseline,acm_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,192924,-132.19280948873623,spot_baseline,acm_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,192924,-0.053955857181974,relative_legacy,acm_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,220077,-166.29620694147903,baseline,mmBot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,220077,-25.333075390453097,peer,mmBot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,220077,-0.5585150034724934,relative_legacy,mmBot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,220077,-173.6965594166206,spot_baseline,mmBot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,220077,-43.29354504663953,spot_peer,mmBot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236037,-73.69655941662063,spot_baseline,metac-o1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236037,29.87199067913248,spot_peer,metac-o1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236037,0.1466431993840317,relative_legacy,metac-o1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236037,9.2946377227497,peer,metac-o1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236037,-23.399082304805045,baseline,metac-o1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236038,-38.76053570698884,baseline,metac-gpt-4o,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236038,4.060565853898547,peer,metac-gpt-4o,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236038,0.0737781337966572,relative_legacy,metac-gpt-4o,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236038,10.626937461992831,spot_peer,metac-gpt-4o,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236038,-100.0,spot_baseline,metac-gpt-4o,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236040,-12.927104065618195,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236040,-5.132516711139024,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236040,-50.926191803303176,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236040,-132.19280948873623,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236040,-0.0502660536684833,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236041,-100.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236041,-38.34141436689552,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236041,4.015645784014053,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236041,0.0733685792022464,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236041,10.626937461992831,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236043,-12.927104065618195,spot_peer,metac-grok-2-1212,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236043,-0.0483882658844558,relative_legacy,metac-grok-2-1212,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236043,-5.040159357439377,peer,metac-grok-2-1212,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236043,-49.97037116941196,baseline,metac-grok-2-1212,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236043,-132.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236045,-32.64476570279906,baseline,metac-Gemini-Exp-1206,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236045,-3.333099341754511,peer,metac-Gemini-Exp-1206,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236045,-0.0163330961140864,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236045,-12.927104065618195,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236045,-132.19280948873623,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236047,-35.15149078984063,baseline,metac-Llama-3.1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236047,3.5734869164230845,peer,metac-Llama-3.1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236047,-100.0,spot_baseline,metac-Llama-3.1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236047,0.0646812799674523,relative_legacy,metac-Llama-3.1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,236047,10.626937461992831,spot_peer,metac-Llama-3.1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,239758,-173.6965594166206,spot_baseline,metac-perplexity,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,239758,-58.648456575183296,baseline,metac-perplexity,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,239758,-14.902228009621531,peer,metac-perplexity,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,239758,-0.1842071800398602,relative_legacy,metac-perplexity,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,239758,-43.29354504663953,spot_peer,metac-perplexity,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,239759,-12.927104065618195,spot_peer,metac-exa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,239759,-132.19280948873623,spot_baseline,metac-exa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,239759,-52.64490047065996,baseline,metac-exa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,239759,-5.27149971836694,peer,metac-exa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,239759,-0.0509974632639795,relative_legacy,metac-exa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,240414,-32.19280948873623,spot_baseline,minefrac1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,240414,0.2889594905566728,relative_legacy,minefrac1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,240414,19.932803021661027,peer,minefrac1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,240414,-10.720160462295777,baseline,minefrac1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,240414,60.23843166015381,spot_peer,minefrac1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,240416,-12.927104065618195,spot_peer,metac-o1-preview,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,240416,-0.0332560594577789,relative_legacy,metac-o1-preview,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,240416,-4.075127155332673,peer,metac-o1-preview,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,240416,-39.60181070981261,baseline,metac-o1-preview,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33770,"Will TikTok become available in the US on both the App Store and Google Play before April 5, 2025?",2025-01-25 06:31:52.323213+00,240416,-132.19280948873623,spot_baseline,metac-o1-preview,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34273 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,185690,0.0,spot_baseline,annabot,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,185690,-0.0062500625854777,relative_legacy,annabot,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,185690,0.0,baseline,annabot,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,185690,19.97843180462908,peer,annabot,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,185690,28.2531292416801,spot_peer,annabot,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,187708,64.63321558886469,spot_peer,twsummerbot,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,187708,21.348428649256476,spot_baseline,twsummerbot,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,187708,1.5102771034795528,baseline,twsummerbot,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,187708,4.57242391146759,peer,twsummerbot,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,187708,0.0540901644616303,relative_legacy,twsummerbot,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,189869,55.378342895705856,peer,VeritasAI,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,189869,19.611003156122663,baseline,VeritasAI,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,189869,23.93769885835344,spot_baseline,VeritasAI,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,189869,69.04561873716015,spot_peer,VeritasAI,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,189869,0.4519881005991658,relative_legacy,VeritasAI,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,190710,-73.67403317769401,peer,Bot_Pepa,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,190710,-64.7898645935929,spot_peer,Bot_Pepa,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,190710,-1.1155132909495231,relative_legacy,Bot_Pepa,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,190710,-54.59914790332139,spot_baseline,Bot_Pepa,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,190710,-51.62926239260173,baseline,Bot_Pepa,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,191935,-20.668272362661387,spot_peer,pgodzinai,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,191935,-3.21869370759692,peer,pgodzinai,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,191935,-5.010336542305951,baseline,pgodzinai,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,191935,-0.0465211658744805,relative_legacy,pgodzinai,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,191935,-28.707877205264783,spot_baseline,pgodzinai,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,192418,34.77088389753815,spot_baseline,InstitutPelFutur,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,192418,32.74321216226637,baseline,InstitutPelFutur,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,192418,87.59275014785516,peer,InstitutPelFutur,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,192418,0.8391334453739737,relative_legacy,InstitutPelFutur,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,192418,87.50656561131308,spot_peer,InstitutPelFutur,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,218666,-12.33045010252697,spot_baseline,GreeneiBot2,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,218666,-7.293524765230724,baseline,GreeneiBot2,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,218666,2.5126152600617497,peer,GreeneiBot2,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,218666,-0.0421571679855558,relative_legacy,GreeneiBot2,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,218666,7.24067690621486,spot_peer,GreeneiBot2,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,220077,-41.01241554299773,baseline,mmBot,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,220077,-52.72949437782499,peer,mmBot,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,220077,-0.8623245858628795,relative_legacy,mmBot,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,220077,-45.138925170549406,spot_peer,mmBot,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,220077,-43.06765580733931,spot_baseline,mmBot,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236037,-22.293425286582945,spot_baseline,metac-o1,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236037,-9.73733601575435,spot_peer,metac-o1,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236037,-8.07440188446326,baseline,metac-o1,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236037,-2.599261945338587,peer,metac-o1,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236037,-0.0628351002800538,relative_legacy,metac-o1,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236038,-0.4424978250561344,relative_legacy,metac-gpt-4o,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236038,-30.34601820280768,peer,metac-gpt-4o,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236038,-77.33908428385402,spot_peer,metac-gpt-4o,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236038,-24.88275769732536,baseline,metac-gpt-4o,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236038,-61.96323490973161,spot_baseline,metac-gpt-4o,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236040,17.744443719209865,spot_peer,metac-claude-3-5-sonnet-latest,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236040,-2.479324491133794,baseline,metac-claude-3-5-sonnet-latest,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236040,8.143497104154461,peer,metac-claude-3-5-sonnet-latest,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236040,-6.166668240777612,spot_baseline,metac-claude-3-5-sonnet-latest,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236040,0.077672048638879,relative_legacy,metac-claude-3-5-sonnet-latest,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236041,-3.18703157116355,spot_baseline,metac-claude-3-5-sonnet-20240620,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236041,-1.2780701780162098,baseline,metac-claude-3-5-sonnet-20240620,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236041,10.19606720558181,peer,metac-claude-3-5-sonnet-20240620,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236041,0.1054188955204571,relative_legacy,metac-claude-3-5-sonnet-20240620,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236041,22.82207454182181,spot_peer,metac-claude-3-5-sonnet-20240620,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236043,-23.77761610533086,spot_baseline,metac-grok-2-1212,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236043,-0.0853985543048822,relative_legacy,metac-grok-2-1212,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236043,-3.960496459782377,peer,metac-grok-2-1212,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236043,-12.266561516556177,spot_peer,metac-grok-2-1212,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236043,-9.486974539800794,baseline,metac-grok-2-1212,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236045,0.1438081599586596,relative_legacy,metac-Gemini-Exp-1206,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236045,1.0578699368580229,baseline,metac-Gemini-Exp-1206,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236045,12.650069610761946,peer,metac-Gemini-Exp-1206,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236045,33.41914662432584,spot_peer,metac-Gemini-Exp-1206,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236045,3.0315033461366783,spot_baseline,metac-Gemini-Exp-1206,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236047,1.9338419778451663,baseline,metac-Llama-3.1,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236047,15.340738024245631,peer,metac-Llama-3.1,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236047,0.1773636134998964,relative_legacy,metac-Llama-3.1,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236047,36.79888593545848,spot_peer,metac-Llama-3.1,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,236047,5.014789555197203,spot_baseline,metac-Llama-3.1,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,239758,-9.934851829699925,baseline,metac-perplexity,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,239758,-26.76604749797037,spot_baseline,metac-perplexity,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,239758,-17.359179521050333,spot_peer,metac-perplexity,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,239758,-0.1022081603447471,relative_legacy,metac-perplexity,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,239758,-5.480687546463491,peer,metac-perplexity,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,239759,-12.330450102526951,spot_baseline,metac-exa,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,239759,-4.451333468566815,baseline,metac-exa,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,239759,3.562203086555694,peer,metac-exa,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,239759,7.24067690621486,spot_peer,metac-exa,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,239759,0.0207504493111008,relative_legacy,metac-exa,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,240416,-0.6785166852624428,relative_legacy,metac-o1-preview,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,240416,-127.40521034824494,spot_peer,metac-o1-preview,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,240416,-91.34285511816591,spot_baseline,metac-o1-preview,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,240416,-34.894220025675594,baseline,metac-o1-preview,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33771,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 06:31:52.370373+00,240416,-47.918453633510914,peer,metac-o1-preview,True,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34274 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,185690,43.35522822600861,baseline,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,185690,50.72111026677171,spot_baseline,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,185690,9.95525228114754,spot_peer,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,185690,-0.0097160610675043,relative_legacy,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,185690,-1.338962780123045,peer,annabot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,185699,0.0089371658513955,relative_legacy,MWG,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,185699,0.9812570394417864,peer,MWG,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,185699,71.36958148433591,spot_baseline,MWG,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,185699,2.794255115301052,baseline,MWG,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,185699,25.062816866660214,spot_peer,MWG,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,189869,-7.910066554455878,spot_peer,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,189869,-0.2006853655603664,relative_legacy,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,189869,-17.339637748453175,peer,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,189869,21.55458771220921,baseline,VeritasAI,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,191935,-0.2047211667198701,relative_legacy,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,191935,-100.32065549736754,spot_peer,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,191935,-13.71900544377092,peer,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,191935,-13.781975858741337,baseline,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,191935,-100.0,spot_baseline,pgodzinai,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,191975,-20.26060014923817,baseline,jkraybill_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,191975,-57.060720774408566,spot_baseline,jkraybill_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,191975,-68.90390181517844,spot_peer,jkraybill_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,191975,-0.38307894661499,relative_legacy,jkraybill_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,191975,-25.35550812192196,peer,jkraybill_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,192418,34.88902819029481,spot_peer,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,192418,79.42189275050283,baseline,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,192418,23.734865670809537,peer,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,192418,0.2849044767813968,relative_legacy,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,192418,84.79969065549501,spot_baseline,InstitutPelFutur,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,192924,58.496250072115615,spot_baseline,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,192924,0.0301406259879591,relative_legacy,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,192924,23.2222644587292,baseline,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,192924,5.140052627209375,peer,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,192924,15.643974973155164,spot_peer,acm_bot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,220077,28.855640062744676,spot_peer,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,220077,0.207671873783484,relative_legacy,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,220077,16.845558300695238,peer,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,220077,72.49492145089627,baseline,mmBot,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236037,2.0306658855292565,peer,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236037,8.361394093976942,spot_peer,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236037,48.54268271702416,spot_baseline,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236037,15.234593920743755,baseline,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236037,-0.0071065668869744,relative_legacy,metac-o1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236038,8.361394093976942,spot_peer,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236038,18.673946026906155,baseline,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236038,2.2834423964269845,peer,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236038,-0.0092200914751096,relative_legacy,metac-gpt-4o,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236040,28.855640062744676,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236040,29.377343934614707,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236040,10.258986495476488,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236040,0.0983720819484173,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236041,15.643974973155164,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236041,0.0288377115839026,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236041,5.128039984764833,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236041,22.26137026995344,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236043,-73.69655941662059,spot_baseline,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236043,-0.4678159084960356,relative_legacy,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236043,-31.60884542124487,peer,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236043,-81.07560228022786,spot_peer,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236043,-27.68515463543748,baseline,metac-grok-2-1212,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236045,-3.705158171976452e-06,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236045,8.361394093976942,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236045,48.54268271702416,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236045,11.109334384041176,baseline,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236045,1.6542528060933634,peer,metac-Gemini-Exp-1206,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236047,22.456374426565446,spot_peer,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236047,0.0589272553390988,relative_legacy,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236047,7.192328681064233,peer,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,236047,23.596474378906475,baseline,metac-Llama-3.1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,239758,25.57409184831962,baseline,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,239758,9.039386577397453,peer,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,239758,0.0857604440797501,relative_legacy,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,239758,28.855640062744676,spot_peer,metac-perplexity,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,239759,2.156814409104086,peer,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,239759,-0.0093737656427431,relative_legacy,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,239759,8.361394093976942,spot_peer,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,239759,19.551178727084004,baseline,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,239759,48.54268271702416,spot_baseline,metac-exa,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,240414,-0.0811143897970083,relative_legacy,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,240414,26.303440583379377,spot_baseline,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,240414,8.706453285842445,baseline,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,240414,-3.2911642840307227,peer,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,240414,-7.910066554455878,spot_peer,minefrac1,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,240416,22.456374426565446,spot_peer,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,240416,20.348593676518792,baseline,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,240416,6.207472925532024,peer,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,240416,0.0507016773465927,relative_legacy,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33772,"Will the USDA-posted recall by Yu Shang Food, Inc. of Ready-To-Eat Meat and Poultry Products issued November 21, 2024 be closed before March 1, 2025?",2025-01-25 06:31:52.412922+00,240416,67.80719051126377,spot_baseline,metac-o1-preview,True,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34275 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,185690,94.7479145966675,spot_baseline,annabot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,185690,10.4836561158248,spot_peer,annabot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,185690,0.053801643481337,relative_legacy,annabot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,185690,4.520205272272719,peer,annabot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,185690,83.74854339369207,baseline,annabot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,185699,60.40713236688608,spot_baseline,MWG,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,185699,33.19641851348241,baseline,MWG,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,185699,-14.40152464591654,spot_peer,MWG,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,185699,-9.644189303846538,peer,MWG,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,185699,-0.1349162999655368,relative_legacy,MWG,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,189869,6.7528925298863705,baseline,VeritasAI,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,189869,-30.746795641307276,spot_peer,VeritasAI,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,189869,-0.0795756842779544,relative_legacy,VeritasAI,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,189869,-5.419156776782318,peer,VeritasAI,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,190710,92.5999418556223,spot_baseline,Bot_Pepa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,190710,8.927119355114463,spot_peer,Bot_Pepa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,190710,87.196814679925,baseline,Bot_Pepa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,190710,0.0324535442381957,relative_legacy,Bot_Pepa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,190710,2.778744154612699,peer,Bot_Pepa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,191935,0.0025897581032355,relative_legacy,pgodzinai,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,191935,5.572431924730328,spot_peer,pgodzinai,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,191935,87.97057662822883,spot_baseline,pgodzinai,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,191935,12.16548683970728,baseline,pgodzinai,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,191935,0.8225558308297387,peer,pgodzinai,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,191975,69.89592715864612,spot_baseline,jkraybill_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,191975,21.98583034887657,baseline,jkraybill_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,191975,-2.383299070990044,peer,jkraybill_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,191975,-0.0314696311686419,relative_legacy,jkraybill_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,191975,-7.525432772877068,spot_peer,jkraybill_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,192418,12.177498912435908,spot_peer,InstitutPelFutur,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,192418,90.42583521805076,baseline,InstitutPelFutur,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,192418,6.293760829036583,peer,InstitutPelFutur,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,192418,0.0744625840116204,relative_legacy,InstitutPelFutur,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,192418,97.08536543404836,spot_baseline,InstitutPelFutur,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,192924,-0.0200839569304565,relative_legacy,acm_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,192924,-1.2586011899340337,peer,acm_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,192924,76.55347463629771,spot_baseline,acm_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,192924,-2.701015224590804,spot_peer,acm_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,192924,30.164986757064817,baseline,acm_bot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,218666,4.009515033923052,peer,GreeneiBot2,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,218666,0.0455546877753829,relative_legacy,GreeneiBot2,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,218666,49.85523314921978,baseline,GreeneiBot2,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,218666,9.366386617092212,spot_peer,GreeneiBot2,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,218666,93.20611713434246,spot_baseline,GreeneiBot2,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,220077,91.50910210376588,baseline,mmBot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,220077,6.325614507819112,peer,mmBot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,220077,0.0746905738400922,relative_legacy,mmBot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,220077,12.177498912435908,spot_peer,mmBot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,220077,97.08536543404836,spot_baseline,mmBot,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236037,4.681517427355684,peer,metac-o1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236037,0.0624412354707303,relative_legacy,metac-o1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236037,34.9277826641339,baseline,metac-o1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236037,98.5500430304885,spot_baseline,metac-o1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236037,13.23888320185597,spot_peer,metac-o1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236038,3.378027171418538,peer,metac-gpt-4o,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236038,8.927119355114463,spot_peer,metac-gpt-4o,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236038,92.5999418556223,spot_baseline,metac-gpt-4o,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236038,0.0431437191900334,relative_legacy,metac-gpt-4o,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236038,36.92731953552016,baseline,metac-gpt-4o,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236040,98.5500430304885,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236040,0.0668578071859376,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236040,5.115470323927288,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236040,39.29007458654454,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236040,13.23888320185597,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236041,36.82948315802095,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236041,3.375958676645702,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236041,0.043144883700698,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236041,8.927119355114463,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236041,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236043,36.67444852534504,baseline,metac-grok-2-1212,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236043,8.927119355114463,spot_peer,metac-grok-2-1212,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236043,0.0431396551371244,relative_legacy,metac-grok-2-1212,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236043,3.373457126500861,peer,metac-grok-2-1212,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236045,13.23888320185597,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236045,0.0600984113777312,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236045,33.377832527070275,baseline,metac-Gemini-Exp-1206,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236045,4.486396177877371,peer,metac-Gemini-Exp-1206,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236045,98.5500430304885,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236047,-0.0507800520894623,relative_legacy,metac-Llama-3.1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236047,-9.03904386903626,spot_peer,metac-Llama-3.1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236047,-3.527037792432521,peer,metac-Llama-3.1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,236047,25.698000285409464,baseline,metac-Llama-3.1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,239758,35.44941528474904,baseline,metac-perplexity,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,239758,4.747912252155705,peer,metac-perplexity,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,239758,98.5500430304885,spot_baseline,metac-perplexity,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,239758,0.062763180935245,relative_legacy,metac-perplexity,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,239758,13.23888320185597,spot_peer,metac-perplexity,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,239759,13.750352374993504,spot_baseline,metac-exa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,239759,-0.2541320090258968,relative_legacy,metac-exa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,239759,5.185445069142929,baseline,metac-exa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,239759,-18.3964737139262,peer,metac-exa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,239759,-48.21154085609282,spot_peer,metac-exa,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,240414,48.54268271702416,spot_baseline,minefrac1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,240414,-0.1117394264290911,relative_legacy,minefrac1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,240414,-22.99914400705455,spot_peer,minefrac1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,240414,-8.079875413028958,peer,minefrac1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,240414,16.86864123675229,baseline,minefrac1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,240416,58.496250072115615,spot_baseline,metac-o1-preview,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,240416,-0.083338077407611,relative_legacy,metac-o1-preview,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,240416,-15.786252897055071,spot_peer,metac-o1-preview,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,240416,21.6954085999918,baseline,metac-o1-preview,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,240416,-5.955679646583432,peer,metac-o1-preview,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,241715,79.90873060740036,spot_baseline,CatrachoCaster,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,241715,-0.0086610462991232,peer,CatrachoCaster,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,241715,0.0,relative_legacy,CatrachoCaster,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,241715,-0.2696159983264934,spot_peer,CatrachoCaster,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,241715,2.566959007591114,baseline,CatrachoCaster,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,250015,5.684970882708019,baseline,metac-deepseek-r1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,250015,0.7638391694481306,peer,metac-deepseek-r1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,250015,0.0086886877939594,relative_legacy,metac-deepseek-r1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,250015,98.5500430304885,spot_baseline,metac-deepseek-r1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33773,"Before March 31, 2025, will Israel or Hamas accuse the other of violating the ceasefire agreed to on January 15, 2025?",2025-01-25 06:31:52.454511+00,250015,13.23888320185597,spot_peer,metac-deepseek-r1,True,yes,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,2025-01-30 02:00:00+00,34276 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,185690,15.886925017638935,spot_peer,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,185690,11.895850986298829,peer,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,185690,44.62069811533762,baseline,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,185690,0.0184390224321462,relative_legacy,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,185690,66.84822495413289,spot_baseline,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,187708,23.03671243599715,baseline,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,187708,2.496192467522085,peer,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,187708,52.40636757772108,spot_baseline,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,187708,5.320462699435304,spot_peer,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,187708,-0.0600843648428489,relative_legacy,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,189869,-26.67784757251816,baseline,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,189869,-56.5769784208326,spot_peer,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,189869,-0.7888406325910431,relative_legacy,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,189869,-50.54324213555141,peer,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,192418,9.776157851529083,spot_peer,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,192418,-0.0415288680088567,relative_legacy,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,192418,11.68278569474975,peer,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,192418,57.1139223747432,baseline,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,192924,-0.0539974373334537,relative_legacy,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,192924,53.60529002402098,spot_baseline,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,192924,6.197660730207156,spot_peer,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,192924,2.7678173825494388,peer,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,192924,22.66859928393831,baseline,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,218666,8.080384533062709,peer,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,218666,60.026975350900464,spot_baseline,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,218666,-0.0265858115233684,relative_legacy,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,218666,10.896121202241837,spot_peer,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,218666,39.330967549035634,baseline,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,220077,64.15460290875237,spot_baseline,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,220077,63.77296724387885,baseline,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,220077,13.916122017708776,spot_peer,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,220077,0.0137175322787115,relative_legacy,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,220077,16.75980375578336,peer,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236037,22.9878229411186,spot_peer,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236037,76.55347463629771,spot_baseline,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236037,0.0334299532122769,relative_legacy,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236037,8.876592618274358,peer,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236037,29.141867310428,baseline,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236038,-70.67195875342112,spot_peer,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236038,-51.45731728297583,spot_baseline,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236038,-0.4568285418928712,relative_legacy,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236038,-26.998693316430906,peer,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236038,-19.72589689989435,baseline,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236040,16.588557304939396,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236040,26.037511038098657,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236040,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236040,6.530510828495814,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236040,0.0005834062678225,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236041,22.52095101037457,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236041,3.9109860282173914,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236041,-0.0353162520038185,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236041,9.776157851529083,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236043,-73.69655941662059,spot_baseline,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236043,-0.5428901190066391,relative_legacy,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236043,-33.30073100381622,peer,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236043,-28.2994049913316,baseline,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236043,-86.94341940185393,spot_peer,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236045,67.80719051126377,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236045,16.588557304939396,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236045,6.192834847669337,peer,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236045,-0.0002808622194981,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236045,25.10512153565682,baseline,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236047,6.442529402629494,peer,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236047,0.000162707608304,relative_legacy,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236047,25.82492961270944,baseline,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,236047,16.588557304939396,spot_peer,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,239758,24.222404916122127,spot_peer,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,239758,8.768090480821376,peer,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,239758,0.0376166297744384,relative_legacy,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,239758,28.207521134786663,baseline,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,239758,78.24085649273731,spot_baseline,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,239759,-0.000145862767512,relative_legacy,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,239759,22.752635565067383,baseline,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,239759,5.5622531496979954,peer,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,239759,16.588557304939396,spot_peer,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,239759,67.80719051126377,spot_baseline,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,240414,0.8042207164450795,peer,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,240414,15.65583557504799,baseline,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,240414,48.54268271702416,spot_baseline,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,240414,2.4935769723508794,spot_peer,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,240414,-0.0621312934472557,relative_legacy,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,240416,6.402402000119468,peer,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,240416,67.80719051126377,spot_baseline,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,240416,16.588557304939396,spot_peer,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,240416,3.590624472570502e-05,relative_legacy,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,240416,25.711280946234,baseline,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,250015,21.61723728409419,baseline,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,250015,9.776157851529083,spot_peer,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,250015,-0.0344419278018969,relative_legacy,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33774,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 06:31:52.495508+00,250015,3.669411563462114,peer,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34277 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,185690,37.75645422259448,peer,annabot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,185690,108.89302865507275,baseline,annabot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,185690,60.2783097344447,spot_peer,annabot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,185690,0.5264462600142455,relative_legacy,annabot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,185690,155.68887707455752,spot_baseline,annabot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,187708,18.71319261545654,peer,twsummerbot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,187708,145.61983166825615,spot_baseline,twsummerbot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,187708,53.88727937515441,baseline,twsummerbot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,187708,49.61696753953738,spot_peer,twsummerbot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,187708,0.2259574719370397,relative_legacy,twsummerbot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,189869,24.01829608434744,peer,VeritasAI,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,189869,0.1242327755419599,relative_legacy,VeritasAI,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,189869,35.82580058088467,spot_peer,VeritasAI,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,189869,107.51516414093156,baseline,VeritasAI,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,189869,132.5948406517508,spot_baseline,VeritasAI,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,191935,0.4435768829836745,peer,pgodzinai,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,191935,0.0002449079860666,relative_legacy,pgodzinai,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,191935,27.59653495712862,spot_peer,pgodzinai,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,191935,2.006356570425175,baseline,pgodzinai,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,191935,124.82275645153678,spot_baseline,pgodzinai,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,192418,-35.8362686782635,peer,InstitutPelFutur,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,192418,75.467722799119,spot_baseline,InstitutPelFutur,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,192418,-1.277313063313368,relative_legacy,InstitutPelFutur,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,192418,-24.661735968960784,spot_peer,InstitutPelFutur,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,192418,73.33976715428716,baseline,InstitutPelFutur,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,192924,0.1341877788624679,relative_legacy,acm_bot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,192924,16.16591102130559,peer,acm_bot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,192924,136.5100813136077,spot_baseline,acm_bot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,192924,57.40434720922586,baseline,acm_bot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,192924,39.97134951696842,spot_peer,acm_bot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,218666,25.351936151302613,peer,GreeneiBot2,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,218666,86.31270769853755,baseline,GreeneiBot2,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,218666,145.55050505009956,spot_baseline,GreeneiBot2,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,218666,49.54356288501864,spot_peer,GreeneiBot2,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,218666,0.2839461900704103,relative_legacy,GreeneiBot2,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,220077,-0.578735397930603,relative_legacy,mmBot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,220077,-3.46263591607364,peer,mmBot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,220077,98.45372503244457,baseline,mmBot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,220077,1.7170901005383958,spot_peer,mmBot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,220077,100.3810585314238,spot_baseline,mmBot,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236037,43.58300750336768,baseline,metac-o1,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236037,117.39208419371012,spot_baseline,metac-o1,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236037,7.633184306770342,peer,metac-o1,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236037,-0.075314542205524,relative_legacy,metac-o1,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236037,19.728764331194515,spot_peer,metac-o1,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236038,-211.79443589559756,spot_peer,metac-gpt-4o,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236038,-101.26871602048236,spot_baseline,metac-gpt-4o,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236038,-38.557541098292766,baseline,metac-gpt-4o,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236038,-2.478430151561453,relative_legacy,metac-gpt-4o,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236038,-80.81095330905892,peer,metac-gpt-4o,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236040,138.10587111862424,spot_baseline,metac-claude-3-5-sonnet-latest,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236040,41.66100931051533,spot_peer,metac-claude-3-5-sonnet-latest,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236040,0.1520538789241232,relative_legacy,metac-claude-3-5-sonnet-latest,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236040,16.21958824865493,peer,metac-claude-3-5-sonnet-latest,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236040,52.57773426253802,baseline,metac-claude-3-5-sonnet-latest,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236041,110.12508170430915,spot_baseline,metac-claude-3-5-sonnet-20240620,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236041,4.858850098905919,peer,metac-claude-3-5-sonnet-20240620,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236041,-0.1565222347386293,relative_legacy,metac-claude-3-5-sonnet-20240620,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236041,12.034291107122923,spot_peer,metac-claude-3-5-sonnet-20240620,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236041,42.15855086398735,baseline,metac-claude-3-5-sonnet-20240620,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236043,35.157183417391195,baseline,metac-grok-2-1212,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236043,-6.848500023998756,spot_peer,metac-grok-2-1212,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236043,-2.3361993184163383,peer,metac-grok-2-1212,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236043,-0.3510615726878952,relative_legacy,metac-grok-2-1212,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236043,92.29133452491648,spot_baseline,metac-grok-2-1212,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236045,126.94869355291382,spot_baseline,metac-Gemini-Exp-1206,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236045,10.884792645365248,peer,metac-Gemini-Exp-1206,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236045,0.0252694775364266,relative_legacy,metac-Gemini-Exp-1206,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236045,29.8475271821161,spot_peer,metac-Gemini-Exp-1206,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236045,44.40828710454613,baseline,metac-Gemini-Exp-1206,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236047,34.72743217623415,baseline,metac-Llama-3.1,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236047,-0.3476245855275572,relative_legacy,metac-Llama-3.1,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236047,-2.309351352984343,peer,metac-Llama-3.1,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236047,92.29133452491648,spot_baseline,metac-Llama-3.1,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,236047,-6.848500023998756,spot_peer,metac-Llama-3.1,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,239758,60.20379434924259,baseline,metac-perplexity,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,239758,74.83699137739782,spot_peer,metac-perplexity,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,239758,169.43874307067992,spot_baseline,metac-perplexity,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,239758,0.4600590340400036,relative_legacy,metac-perplexity,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,239758,27.039515839667743,peer,metac-perplexity,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,239759,-212.2337910415059,spot_peer,metac-exa,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,239759,-34.54866009699418,baseline,metac-exa,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,239759,-101.6836625471736,spot_baseline,metac-exa,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,239759,-71.84753927846609,peer,metac-exa,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,239759,-2.2154405763395086,relative_legacy,metac-exa,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,240416,7.517649735908479,peer,metac-o1-preview,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,240416,19.728764331194515,spot_peer,metac-o1-preview,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,240416,42.86138643896965,baseline,metac-o1-preview,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,240416,117.39208419371012,spot_baseline,metac-o1-preview,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33775,"What will be the Lake Kariba water level on February 24, 2025?",2025-01-25 06:31:52.667379+00,240416,-0.0751332685835091,relative_legacy,metac-o1-preview,True,476.68,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34278 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,185690,13.724705165964618,peer,annabot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,185690,18.991690460443625,spot_peer,annabot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,185690,124.79080851349951,spot_baseline,annabot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,185690,88.5201154651743,baseline,annabot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,185690,0.1577929644155382,relative_legacy,annabot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,187708,32.4221758604333,baseline,twsummerbot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,187708,74.90589357803005,spot_baseline,twsummerbot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,187708,-15.312334613570073,peer,twsummerbot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,187708,-0.5066837430546969,relative_legacy,twsummerbot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,187708,-33.51874631373476,spot_peer,twsummerbot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,189869,21.26314839666922,spot_peer,VeritasAI,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,189869,104.95659038880032,baseline,VeritasAI,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,189869,126.94869355291382,spot_baseline,VeritasAI,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,189869,0.265660819229128,relative_legacy,VeritasAI,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,189869,20.372970360509825,peer,VeritasAI,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,191935,-22.76145887546709,spot_peer,pgodzinai,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,191935,85.12531664438433,spot_baseline,pgodzinai,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,191935,-2.172346585515234,peer,pgodzinai,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,191935,-0.0785096548844048,relative_legacy,pgodzinai,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,191935,8.124333855974628,baseline,pgodzinai,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,192418,-32.92734713364104,spot_peer,InstitutPelFutur,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,192418,72.98723675095266,baseline,InstitutPelFutur,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,192418,-33.98764088896939,peer,InstitutPelFutur,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,192418,-1.0070784816467409,relative_legacy,InstitutPelFutur,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,192418,75.46772279911907,spot_baseline,InstitutPelFutur,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,192924,104.23592995219184,spot_baseline,acm_bot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,192924,43.52068478489573,baseline,acm_bot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,192924,-1.6232556193065109,peer,acm_bot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,192924,-2.6450238146170704,spot_peer,acm_bot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,192924,-0.1344307602320332,relative_legacy,acm_bot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,218666,147.7244657720497,spot_baseline,GreeneiBot2,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,218666,0.4586970374780438,relative_legacy,GreeneiBot2,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,218666,43.13238231154909,spot_peer,GreeneiBot2,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,218666,78.4296386457361,baseline,GreeneiBot2,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,218666,22.64593630753503,peer,GreeneiBot2,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,220077,-8.285615225830501,peer,mmBot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,220077,-11.823926011676107,spot_peer,mmBot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,220077,95.51597286498576,spot_baseline,mmBot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,220077,93.16500378524684,baseline,mmBot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,220077,-0.4476215209833921,relative_legacy,mmBot,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236037,-1.7046570205984717,peer,metac-o1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236037,-3.473884721527398,spot_peer,metac-o1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236037,103.44851209062703,spot_baseline,metac-o1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236037,38.0306514695565,baseline,metac-o1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236037,-0.1265439703091974,relative_legacy,metac-o1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236038,21.26314839666912,spot_peer,metac-gpt-4o,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236038,48.157123264199136,baseline,metac-gpt-4o,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236038,7.614769467641451,peer,metac-gpt-4o,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236038,0.1251397618271606,relative_legacy,metac-gpt-4o,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236038,126.94869355291374,spot_baseline,metac-gpt-4o,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236040,0.1247857544334528,relative_legacy,metac-claude-3-5-sonnet-latest,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236040,126.94869355291382,spot_baseline,metac-claude-3-5-sonnet-latest,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236040,47.875556467305465,baseline,metac-claude-3-5-sonnet-latest,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236040,7.5834483070922944,peer,metac-claude-3-5-sonnet-latest,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236040,21.26314839666922,spot_peer,metac-claude-3-5-sonnet-latest,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236041,0.8727615975464728,peer,metac-claude-3-5-sonnet-20240620,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236041,41.89669774067157,baseline,metac-claude-3-5-sonnet-20240620,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236041,110.12508170430932,spot_baseline,metac-claude-3-5-sonnet-20240620,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236041,3.554083292874986,spot_peer,metac-claude-3-5-sonnet-20240620,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236041,-0.0587451547372359,relative_legacy,metac-claude-3-5-sonnet-20240620,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236043,126.94869355291374,spot_baseline,metac-grok-2-1212,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236043,47.90543812404836,baseline,metac-grok-2-1212,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236043,7.5822600412077135,peer,metac-grok-2-1212,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236043,0.1246994143691734,relative_legacy,metac-grok-2-1212,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236043,21.26314839666912,spot_peer,metac-grok-2-1212,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236045,36.14297517697682,baseline,metac-Gemini-Exp-1206,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236045,110.12508170430932,spot_baseline,metac-Gemini-Exp-1206,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236045,3.554083292874986,spot_peer,metac-Gemini-Exp-1206,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236045,-0.0494647908767803,relative_legacy,metac-Gemini-Exp-1206,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236045,0.905962944136812,peer,metac-Gemini-Exp-1206,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236047,-15.218282159117472,spot_peer,metac-Llama-3.1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236047,-0.2477118368463486,relative_legacy,metac-Llama-3.1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236047,-6.126954869914885,peer,metac-Llama-3.1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236047,34.272584443061426,baseline,metac-Llama-3.1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,236047,92.29133452491648,spot_baseline,metac-Llama-3.1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,239758,3.7561655950004793,peer,metac-perplexity,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,239758,0.0244879907095173,relative_legacy,metac-perplexity,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,239758,11.667276986461022,spot_peer,metac-perplexity,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,239758,117.83261571321604,spot_baseline,metac-perplexity,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,239758,41.32864440882389,baseline,metac-perplexity,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,239759,31.8529618091264,baseline,metac-exa,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,239759,-0.2303387771878662,relative_legacy,metac-exa,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,239759,-15.218282159117418,spot_peer,metac-exa,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,239759,92.29133452491652,spot_baseline,metac-exa,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,239759,-5.597096365965826,peer,metac-exa,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,240414,-109.52141211848868,spot_peer,minefrac1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,240414,2.703361063513832,spot_baseline,minefrac1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,240414,-1.0216309598796278,relative_legacy,minefrac1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,240414,-34.74654325003081,peer,minefrac1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,240414,0.8514807558257892,baseline,minefrac1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,240416,16.12550354417085,peer,metac-o1-preview,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,240416,152.4899747412133,spot_baseline,metac-o1-preview,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,240416,51.93411819024709,baseline,metac-o1-preview,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,240416,0.3635091026580077,relative_legacy,metac-o1-preview,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,240416,48.148707542247614,spot_peer,metac-o1-preview,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,250015,35.7888829166067,baseline,metac-deepseek-r1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,250015,33.0075458342592,spot_peer,metac-deepseek-r1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,250015,8.371961108896247,peer,metac-deepseek-r1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,250015,0.1676173906129718,relative_legacy,metac-deepseek-r1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33776,"What will be the Lake Kariba water level on March 24, 2025?",2025-01-25 06:31:52.709021+00,250015,138.10587111862432,spot_baseline,metac-deepseek-r1,True,476.82,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,0.53,2025-01-31 02:00:00+00,34279 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,185690,34.86521109355338,peer,annabot,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,185690,46.17641470841528,baseline,annabot,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,185690,64.22372185677008,spot_baseline,annabot,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,185690,36.42405398544153,spot_peer,annabot,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,185690,0.2168866821911723,relative_legacy,annabot,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,187708,-0.2682213651054832,relative_legacy,twsummerbot,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,187708,3.1313528050044392,spot_baseline,twsummerbot,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,187708,-13.863361967094328,peer,twsummerbot,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,187708,1.4167310595106202,baseline,twsummerbot,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,187708,-34.64082206832943,spot_peer,twsummerbot,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,189869,-1.0455673377072152,baseline,VeritasAI,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,189869,-0.5637529953971072,relative_legacy,VeritasAI,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,189869,-1.2589671894785668,spot_baseline,VeritasAI,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,189869,-28.314491818162807,peer,VeritasAI,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,189869,-39.74780271234344,spot_peer,VeritasAI,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,192418,58.541649367153,baseline,InstitutPelFutur,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,192418,60.78844916119508,spot_baseline,InstitutPelFutur,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,192418,32.42801925784596,spot_peer,InstitutPelFutur,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,192418,0.3232963332993379,relative_legacy,InstitutPelFutur,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,192418,53.46213576322332,peer,InstitutPelFutur,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,218666,-1.7608354695988755,baseline,GreeneiBot2,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,218666,-18.234114679028387,peer,GreeneiBot2,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,218666,-3.7157780721482063,spot_baseline,GreeneiBot2,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,218666,-0.3240179463978779,relative_legacy,GreeneiBot2,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,218666,-42.60565490525046,spot_peer,GreeneiBot2,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,220077,-1.0042641689116754,relative_legacy,mmBot,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,220077,-68.7437808038826,spot_peer,mmBot,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,220077,-26.185950714291486,spot_baseline,mmBot,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,220077,-25.41324154103699,baseline,mmBot,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,220077,-68.74423598752561,peer,mmBot,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236037,25.27112972082837,spot_baseline,metac-o1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236037,8.966158364805178,baseline,metac-o1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236037,-2.754011863397626,peer,metac-o1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236037,-0.1282161372265855,relative_legacy,metac-o1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236037,-8.887024551523263,spot_peer,metac-o1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236038,37.20547711107216,spot_peer,metac-gpt-4o,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236038,24.295670394138725,baseline,metac-gpt-4o,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236038,0.100320422740938,relative_legacy,metac-gpt-4o,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236038,14.574378605704752,peer,metac-gpt-4o,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236038,64.89548817267116,spot_baseline,metac-gpt-4o,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236040,-0.062552286822473,relative_legacy,metac-claude-3-5-sonnet-latest,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236040,37.38484160706352,spot_baseline,metac-claude-3-5-sonnet-latest,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236040,5.204087760997429,spot_peer,metac-claude-3-5-sonnet-latest,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236040,13.905922650223022,baseline,metac-claude-3-5-sonnet-latest,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236040,2.469953928110621,peer,metac-claude-3-5-sonnet-latest,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236041,55.00720983068243,spot_baseline,metac-claude-3-5-sonnet-20240620,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236041,10.217459283840371,peer,metac-claude-3-5-sonnet-20240620,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236041,20.568504584453837,baseline,metac-claude-3-5-sonnet-20240620,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236041,25.703070416658523,spot_peer,metac-claude-3-5-sonnet-20240620,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236041,0.0413842129855331,relative_legacy,metac-claude-3-5-sonnet-20240620,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236043,40.47704780369384,spot_baseline,metac-grok-2-1212,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236043,-0.0441255200144138,relative_legacy,metac-grok-2-1212,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236043,3.786164146358894,peer,metac-grok-2-1212,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236043,14.97149540433126,baseline,metac-grok-2-1212,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236043,8.801055001047283,spot_peer,metac-grok-2-1212,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236045,31.88363578133106,spot_peer,metac-Gemini-Exp-1206,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236045,9.383856855592937,peer,metac-Gemini-Exp-1206,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236045,17.482057568886862,baseline,metac-Gemini-Exp-1206,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236045,0.0527391580713035,relative_legacy,metac-Gemini-Exp-1206,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236045,60.32045881069101,spot_baseline,metac-Gemini-Exp-1206,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236047,-2.882318472647879,baseline,metac-Llama-3.1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236047,-0.3212102409630406,relative_legacy,metac-Llama-3.1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236047,-47.451829704345634,spot_peer,metac-Llama-3.1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236047,-7.881891006640251,spot_baseline,metac-Llama-3.1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,236047,-16.829101301096895,peer,metac-Llama-3.1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,239758,50.4167957103351,spot_baseline,metac-perplexity,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,239758,17.351708819697404,baseline,metac-perplexity,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,239758,7.373897163629923,peer,metac-perplexity,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,239758,0.011355335584638,relative_legacy,metac-perplexity,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,239758,20.36333297381116,spot_peer,metac-perplexity,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,239759,14.177125993117288,baseline,metac-exa,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,239759,-0.0434351424172018,relative_legacy,metac-exa,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,239759,8.80105500104726,spot_peer,metac-exa,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,239759,3.4729927415837447,peer,metac-exa,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,239759,40.47704780369381,spot_baseline,metac-exa,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,240414,23.95290903358917,spot_peer,minefrac1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,240414,0.0237561266466979,relative_legacy,minefrac1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,240414,53.50264792820728,spot_baseline,minefrac1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,240414,16.548655154015457,baseline,minefrac1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,240414,7.6017402040472515,peer,minefrac1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,240416,11.2120716036128,baseline,metac-o1-preview,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,240416,2.5091634217860155,spot_peer,metac-o1-preview,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,240416,35.06809497440752,spot_baseline,metac-o1-preview,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,240416,1.0176501548068444,peer,metac-o1-preview,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,240416,-0.068543792626692,relative_legacy,metac-o1-preview,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,250015,2.371126591979269,baseline,metac-deepseek-r1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,250015,40.47704780369384,spot_baseline,metac-deepseek-r1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,250015,8.801055001047283,spot_peer,metac-deepseek-r1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,250015,-0.0080344886612925,relative_legacy,metac-deepseek-r1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33777,"How many people will be in space on March 29, 2025, according to whoisinspace.com?",2025-01-25 06:31:52.750779+00,250015,0.5138776758535913,peer,metac-deepseek-r1,True,10,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34280 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,185690,39.71327614001873,spot_peer,annabot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,185690,39.47889766352011,spot_baseline,annabot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,185690,31.55310737807688,peer,annabot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,185690,28.72312621706533,baseline,annabot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,185690,0.2736628934264137,relative_legacy,annabot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,187708,-0.4157279779220185,relative_legacy,twsummerbot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,187708,-68.06431117762023,spot_peer,twsummerbot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,187708,-26.111678686146725,peer,twsummerbot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,187708,-9.533017811217984,baseline,twsummerbot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,187708,-23.9625572277412,spot_baseline,twsummerbot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,189869,0.0746471385423859,relative_legacy,VeritasAI,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,189869,26.828149945375237,spot_baseline,VeritasAI,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,189869,18.22153908634043,spot_peer,VeritasAI,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,189869,15.490492156954913,peer,VeritasAI,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,189869,20.828980990433063,baseline,VeritasAI,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,191935,0.0074622561477749,relative_legacy,pgodzinai,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,191935,27.230309883053646,spot_baseline,pgodzinai,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,191935,18.90474895082229,spot_peer,pgodzinai,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,191935,1.3187270702015066,peer,pgodzinai,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,191935,1.7597973442585206,baseline,pgodzinai,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,191975,0.0009388632301286,relative_legacy,jkraybill_bot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,191975,27.714613848233068,spot_peer,jkraybill_bot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,191975,0.1143686350100892,peer,jkraybill_bot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,191975,0.1337699940348848,baseline,jkraybill_bot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,191975,32.41608793206477,spot_baseline,jkraybill_bot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,192418,-0.4399258649136726,relative_legacy,InstitutPelFutur,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,192418,0.0,baseline,InstitutPelFutur,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,192418,-29.114310288062043,peer,InstitutPelFutur,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,192418,-27.355493758577392,spot_peer,InstitutPelFutur,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,192418,0.0,spot_baseline,InstitutPelFutur,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,218666,-5.17199656432236,baseline,GreeneiBot2,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,218666,-12.33045010252697,spot_baseline,GreeneiBot2,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,218666,-48.30309284609368,spot_peer,GreeneiBot2,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,218666,-0.3214280906545351,relative_legacy,GreeneiBot2,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,218666,-19.227965842370843,peer,GreeneiBot2,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,220077,-3.8014522309663774,spot_peer,mmBot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,220077,13.86468838532139,spot_baseline,mmBot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,220077,-0.1313706693481287,relative_legacy,mmBot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,220077,-0.0366361882898081,peer,mmBot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,220077,13.380736769020334,baseline,mmBot,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236037,-0.0174749499710991,relative_legacy,metac-o1,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236037,20.90619551221676,spot_baseline,metac-o1,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236037,7.265202260909446,baseline,metac-o1,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236037,8.161020106995082,spot_peer,metac-o1,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236037,3.6994569534579513,peer,metac-o1,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236038,-0.0187794304075503,relative_legacy,metac-gpt-4o,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236038,20.90619551221676,spot_baseline,metac-gpt-4o,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236038,8.161020106995082,spot_peer,metac-gpt-4o,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236038,4.125680743443284,peer,metac-gpt-4o,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236038,7.791160784649927,baseline,metac-gpt-4o,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236040,10.769774459526715,baseline,metac-claude-3-5-sonnet-latest,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236040,29.202967422017903,spot_baseline,metac-claude-3-5-sonnet-latest,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236040,22.25600043958354,spot_peer,metac-claude-3-5-sonnet-latest,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236040,0.0524633128538599,relative_legacy,metac-claude-3-5-sonnet-latest,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236040,9.30102777243083,peer,metac-claude-3-5-sonnet-latest,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236041,6.945667937538433,baseline,metac-claude-3-5-sonnet-20240620,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236041,18.64654673111698,spot_baseline,metac-claude-3-5-sonnet-20240620,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236041,4.322213222291613,spot_peer,metac-claude-3-5-sonnet-20240620,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236041,-0.038342737781237,relative_legacy,metac-claude-3-5-sonnet-20240620,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236041,2.6758760002484983,peer,metac-claude-3-5-sonnet-20240620,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236043,-10.63861900327278,peer,metac-grok-2-1212,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236043,-0.855385637776215,baseline,metac-grok-2-1212,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236043,-0.2172120170339556,relative_legacy,metac-grok-2-1212,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236043,-31.29844084735216,spot_peer,metac-grok-2-1212,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236043,-2.320949151829776,spot_baseline,metac-grok-2-1212,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236045,1.2747552052213524,baseline,metac-Gemini-Exp-1206,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236045,-0.1142360022208843,relative_legacy,metac-Gemini-Exp-1206,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236045,-19.358949855893236,spot_peer,metac-Gemini-Exp-1206,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236045,4.707030393925892,spot_baseline,metac-Gemini-Exp-1206,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236045,-4.6181311026620415,peer,metac-Gemini-Exp-1206,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236047,3.0315033461366783,spot_baseline,metac-Llama-3.1,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236047,-22.20542087402624,spot_peer,metac-Llama-3.1,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236047,1.0714586898922946,baseline,metac-Llama-3.1,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236047,-0.1644949703860111,relative_legacy,metac-Llama-3.1,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,236047,-7.03600898106582,peer,metac-Llama-3.1,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,239758,0.1437758215786621,relative_legacy,metac-perplexity,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,239758,15.421800174338028,peer,metac-perplexity,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,239758,43.137606679964,spot_peer,metac-perplexity,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,239758,13.979370144045191,baseline,metac-perplexity,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,239758,41.49457195062816,spot_baseline,metac-perplexity,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,239759,0.0848591877495226,relative_legacy,metac-exa,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,239759,11.871120692711449,baseline,metac-exa,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,239759,11.41155273886475,peer,metac-exa,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,239759,29.274362017960385,spot_peer,metac-exa,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,239759,33.33420732603351,spot_baseline,metac-exa,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,240414,-0.0642905934996582,relative_legacy,minefrac1,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,240414,4.22972715950166,baseline,minefrac1,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,240414,-0.4448695163158143,peer,minefrac1,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,240414,13.86468838532139,spot_baseline,minefrac1,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,240414,-3.8014522309663774,spot_peer,minefrac1,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,240416,2.1161299851591955,peer,metac-o1-preview,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,240416,-0.032036610787909,relative_legacy,metac-o1-preview,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,240416,4.322213222291613,spot_peer,metac-o1-preview,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,240416,18.64654673111698,spot_baseline,metac-o1-preview,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33778,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 06:31:52.795962+00,240416,5.902610947161633,baseline,metac-o1-preview,True,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34281 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,185690,12.337953453205944,peer,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,185690,30.88824560289853,baseline,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,185690,0.0105295747447032,relative_legacy,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,185690,4.93056373158698,spot_peer,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,185690,41.748799851366606,spot_baseline,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,187708,-0.0202680713719084,relative_legacy,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,187708,-12.34339412482792,spot_baseline,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,187708,-34.43798060055897,spot_peer,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,187708,-1.390572002382407,peer,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,187708,-0.4984141922676675,baseline,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,189869,30.71042548521549,baseline,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,189869,2.093845446500489,spot_peer,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,189869,-0.0183074662247569,relative_legacy,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,189869,12.855406364950284,peer,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,191935,0.0375199814214712,relative_legacy,pgodzinai,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,191935,9.562415865813405,baseline,pgodzinai,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,191935,62.29303509201767,spot_baseline,pgodzinai,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,191935,19.882751402095405,spot_peer,pgodzinai,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,191935,2.8624953759130416,peer,pgodzinai,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,191975,14.01242239090704,spot_baseline,jkraybill_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,191975,-15.256097695860202,spot_peer,jkraybill_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,191975,3.83632316644858,baseline,jkraybill_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,191975,-4.45003121162778,peer,jkraybill_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,191975,-0.0652657390123213,relative_legacy,jkraybill_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,192418,-95.3078705271085,baseline,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,192418,-97.36360082449109,peer,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,192418,-1.2784904263479977,relative_legacy,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,192418,-98.23485628138032,spot_peer,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,192924,43.29594072761063,spot_baseline,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,192924,17.52846033068435,baseline,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,192924,6.056579884699436,spot_peer,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,192924,0.0167932098614081,relative_legacy,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,192924,2.8290260558348126,peer,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,218666,21.40754039785817,baseline,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,218666,6.042227077379347,peer,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,218666,58.496250072115615,spot_baseline,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,218666,0.0718382842658014,relative_legacy,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,218666,17.1194340287712,spot_peer,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,220077,17.1194340287712,spot_peer,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,220077,56.13256317262313,baseline,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,220077,42.60108373179257,peer,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,220077,0.2321035817425437,relative_legacy,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,220077,58.496250072115615,spot_baseline,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236037,-0.0392971626551664,relative_legacy,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236037,-6.31063885922084,spot_peer,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236037,26.303440583379377,spot_baseline,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236037,8.847124430457267,baseline,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236037,-2.413257151974953,peer,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236038,3.473358004776345,peer,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236038,0.0357022886253093,relative_legacy,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236038,9.875182522641282,spot_peer,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236038,18.016206803481264,baseline,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236040,24.740186775669983,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236040,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236040,23.89597874821616,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236040,0.1056322123918402,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236040,8.512642309225418,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236041,26.303440583379377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236041,-0.0464813662590761,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236041,-6.31063885922084,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236041,9.71219956633693,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236041,-2.6142495854486465,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236043,9.875182522641282,spot_peer,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236043,17.690004321688292,baseline,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236043,3.338289805441225,peer,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236043,0.0353686148649465,relative_legacy,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236045,3.950086188557444,peer,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236045,0.0505852715462742,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236045,17.1194340287712,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236045,58.496250072115615,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236045,14.337661015644642,baseline,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236047,-0.0427824737644831,relative_legacy,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236047,9.231745901550816,baseline,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236047,-2.5267038941043847,peer,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,236047,-6.31063885922084,spot_peer,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,239758,0.4241273556624085,peer,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,239758,12.649700744588118,baseline,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,239758,37.85116232537298,spot_baseline,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,239758,2.093845446500489,spot_peer,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,239758,-0.0004388897134638,relative_legacy,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,239759,0.1055162483423545,relative_legacy,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,239759,8.493567184956223,peer,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,239759,24.692988424276407,baseline,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,239759,67.80719051126377,spot_baseline,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,239759,23.89597874821616,spot_peer,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,240414,7.937246728426968,baseline,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,240414,-0.0348460560993454,relative_legacy,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,240414,-6.31063885922084,spot_peer,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,240414,26.303440583379377,spot_baseline,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,240414,-2.187469957166296,peer,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,240416,58.496250072115615,spot_baseline,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,240416,17.1194340287712,spot_peer,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,240416,0.0635716896970828,relative_legacy,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,240416,18.134834528940576,baseline,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,240416,5.059448258275589,peer,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,250015,2.093845446500489,spot_peer,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,250015,0.166173461224958,peer,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,250015,0.0,relative_legacy,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33779,"Will the government of Greenland officially announce a date for an independence referendum, before April 6, 2025?",2025-01-25 06:31:52.844109+00,250015,6.928905754194059,baseline,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34282 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,185690,60.80030932848431,baseline,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,185690,1.689578249848625,peer,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,185690,0.0123936859739609,relative_legacy,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,185690,3.970801348479246,spot_peer,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,185690,78.44202246177844,spot_baseline,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,187708,-0.0163486876031375,relative_legacy,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,187708,71.72102990195957,spot_baseline,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,187708,-0.9330271182605544,spot_peer,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,187708,-0.6001379476245867,peer,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,187708,30.67155061442193,baseline,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,189869,-17.844612382763213,spot_peer,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,189869,-18.68184916215347,peer,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,189869,39.45308305481927,baseline,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,189869,-0.2359439994925336,relative_legacy,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,191935,0.0008272473986906,relative_legacy,pgodzinai,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,191935,0.1513671687991113,peer,pgodzinai,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,191935,78.91032175013815,spot_baseline,pgodzinai,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,191935,4.312485907831618,spot_peer,pgodzinai,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,191935,2.7697324113346924,baseline,pgodzinai,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,192418,11.366293340577156,peer,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,192418,87.80246794117139,baseline,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,192418,14.300824412098024,spot_peer,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,192418,0.1221315345885718,relative_legacy,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,192924,0.9599043056464956,peer,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,192924,2.592862821548089,spot_peer,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,192924,30.7514446156797,baseline,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,192924,0.0030631885151374,relative_legacy,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,218666,-0.0007269881649178,relative_legacy,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,218666,75.87295684578628,spot_baseline,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,218666,0.6007751569917112,peer,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,218666,22.011433140358736,baseline,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,218666,2.0963375712176906,spot_peer,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,220077,88.4330189899716,baseline,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,220077,0.1221315345885718,relative_legacy,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,220077,11.366293340577156,peer,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,220077,14.300824412098024,spot_peer,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236037,4.787247542357437,peer,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236037,14.300824412098024,spot_peer,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236037,0.0549284320205377,relative_legacy,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236037,31.06115885799932,baseline,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236038,17.906399324837892,baseline,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236038,-6.64846957571938,peer,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236038,-0.1002024971155096,relative_legacy,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236038,-17.844612382763213,spot_peer,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236040,2.592862821548089,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236040,27.73833830228276,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236040,0.9458047577702632,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236040,0.0028623092761266,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236041,-25.645451556839188,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236041,13.848009643550702,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236041,-9.479207907752851,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236041,-0.1386394512887628,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236043,-0.0288289221278943,relative_legacy,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236043,24.595055407490577,baseline,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236043,-3.788676317023977,spot_peer,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236043,-1.3889531503476855,peer,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236045,2.592862821548089,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236045,0.601314601988232,peer,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236045,17.608158221423576,baseline,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236045,0.0008382791184743,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236047,-3.788676317023977,spot_peer,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236047,23.50324623346505,baseline,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236047,-1.3476880095863064,peer,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,236047,-0.0282259843767835,relative_legacy,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,239758,14.300824412098024,spot_peer,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,239758,30.80442282302951,baseline,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,239758,0.0545042865489807,relative_legacy,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,239758,4.746994094754759,peer,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,239759,34.13060551730792,baseline,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,239759,14.300824412098024,spot_peer,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,239759,0.0621861753404019,relative_legacy,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,239759,5.324296580247859,peer,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,240414,-5.363154018867999,peer,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,240414,48.54268271702416,spot_baseline,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,240414,-17.844612382763213,spot_peer,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,240414,-0.0823624523235305,relative_legacy,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,240414,14.48955652393856,baseline,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,240416,25.877653362821665,baseline,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,240416,8.609537962595335,spot_peer,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,240416,0.0262901220434395,relative_legacy,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,240416,2.620879167453306,peer,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,250015,-10.582204857820956,spot_peer,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,250015,-1.651288534959827,peer,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,250015,9.257869139981,baseline,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33780,"Will the World Health Organization prequalify moxidectin before April 1, 2025?",2025-01-25 06:31:53.12787+00,250015,-0.027753622845668,relative_legacy,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34283 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,185690,4.448673841821631,peer,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,185690,85.08794150880713,spot_baseline,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,185690,8.959619069283074,spot_peer,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,185690,-0.0050929193434244,relative_legacy,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,185690,68.9117627384348,baseline,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,185699,92.5999418556223,spot_baseline,MWG,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,185699,51.12163421040792,baseline,MWG,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,185699,14.426887023081363,spot_peer,MWG,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,185699,0.0363785682431551,relative_legacy,MWG,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,185699,7.297077488034501,peer,MWG,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,187708,-0.1383310771519934,relative_legacy,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,187708,27.17637203430207,baseline,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,187708,-6.293837882376766,peer,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,187708,56.36462694840639,spot_baseline,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,187708,-11.945339659789042,spot_peer,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,189869,48.68414932134511,baseline,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,189869,-0.2280858134528536,relative_legacy,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,189869,-10.393934673662825,spot_peer,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,189869,-13.730074854994218,peer,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,191975,-2.746015658674857,spot_peer,jkraybill_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,191975,-0.4814901530159949,peer,jkraybill_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,191975,-0.0276955834675021,relative_legacy,jkraybill_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,191975,12.099335754577206,baseline,jkraybill_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,191975,69.00445467787138,spot_baseline,jkraybill_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,192418,14.176345271050812,peer,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,192418,98.5500430304885,spot_baseline,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,192418,18.757397669156514,spot_peer,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,192418,0.108543379381555,relative_legacy,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,192418,92.98794871136444,baseline,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,192924,1.3219650458081944,peer,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,192924,-0.0338115469107954,relative_legacy,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,192924,2.748195336507799,spot_peer,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,192924,30.471516164843315,baseline,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,218666,23.027791400037724,baseline,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,218666,4.303697295422092,peer,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,218666,18.3322958739265,spot_peer,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,218666,97.96595517158244,spot_baseline,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,218666,0.0309485057603081,relative_legacy,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,220077,14.426887023081363,spot_peer,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,220077,0.0524005624063544,relative_legacy,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,220077,9.180894717768664,peer,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,220077,87.94833332234823,baseline,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236037,0.0416407858888232,relative_legacy,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236037,17.69139866543463,spot_peer,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236037,97.08536543404836,spot_baseline,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236037,35.40283392259109,baseline,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236037,6.705574366993721,peer,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236038,-49.78857314484422,baseline,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236038,-56.21863748114564,peer,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236038,-0.8200963302602807,relative_legacy,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236038,-132.19280948873626,spot_baseline,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236038,-149.1782978718064,spot_peer,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236040,0.0261120863747003,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236040,5.714534368088565,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236040,34.58365930519966,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236040,14.426887023081363,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236041,1.3467547955354142,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236041,28.830768171384957,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236041,-0.0342406407771329,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236041,2.748195336507799,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236043,-0.002975038613174,relative_legacy,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236043,3.5907465436558845,peer,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236043,31.706303769190328,baseline,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236043,8.749828789702416,spot_peer,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236045,8.749828789702416,spot_peer,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236045,-1.9774307192896664e-05,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236045,2.760031078143876,peer,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236045,26.136757079839622,baseline,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236047,24.828596639382145,baseline,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236047,-3.61738995421785,spot_peer,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236047,-0.0653848775057244,relative_legacy,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,236047,-1.1044385752407604,peer,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,239758,97.08536543404836,spot_baseline,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,239758,17.69139866543463,spot_peer,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,239758,6.278582140823935,peer,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,239758,0.0390852757098014,relative_legacy,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,239758,33.79061916874245,baseline,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,239759,5.953271026504012,peer,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,239759,0.0345586680130998,relative_legacy,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,239759,95.60566524124027,spot_baseline,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,239759,16.61446614787978,spot_peer,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,239759,33.367338462737706,baseline,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,240414,21.154550448711845,baseline,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,240414,67.80719051126377,spot_baseline,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,240414,-3.61738995421785,spot_peer,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,240414,-0.0533122765178605,relative_legacy,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,240414,-1.0665022822196246,peer,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,240416,14.426887023081363,spot_peer,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,240416,31.48371482813865,baseline,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,240416,5.027554796156163,peer,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,240416,0.024036380036414,relative_legacy,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,250015,0.7892784531855556,peer,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,250015,-0.0228435384714682,relative_legacy,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,250015,21.21195084562715,baseline,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33781,"Will William Ruto cease to be President of Kenya before April 1, 2025?",2025-01-25 06:31:53.182664+00,250015,2.748195336507799,spot_peer,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34284 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,185690,94.33587626778102,spot_baseline,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,185690,6.1235135442933775,spot_peer,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,185690,0.0215422670223651,relative_legacy,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,185690,5.233051284062835,peer,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,185690,79.59588441145601,baseline,annabot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,185699,0.2897338558199559,peer,MWG,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,185699,5.520334779161258,baseline,MWG,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,185699,92.5999418556223,spot_baseline,MWG,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,185699,4.860092598697344,spot_peer,MWG,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,185699,0.0,relative_legacy,MWG,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,187708,37.89154170486916,baseline,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,187708,1.6720785340933624,peer,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,187708,0.0035519113136581,relative_legacy,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,187708,4.083543892778802,spot_peer,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,187708,91.53296760130094,spot_baseline,twsummerbot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,189869,-0.1261456637567764,relative_legacy,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,189869,-6.818599087876212,spot_peer,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,189869,63.52807621065024,baseline,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,189869,-7.884705620302778,peer,VeritasAI,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,191935,10.865900652347095,baseline,pgodzinai,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,191935,0.0027557369679742,relative_legacy,pgodzinai,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,191935,6.613786808580159,spot_peer,pgodzinai,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,191935,95.0095094173686,spot_baseline,pgodzinai,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,191935,0.7706411297448332,peer,pgodzinai,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,191975,-1.4700798948863167,peer,jkraybill_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,191975,-8.520553725411409,spot_peer,jkraybill_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,191975,74.21499700259295,spot_baseline,jkraybill_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,191975,13.153663772251509,baseline,jkraybill_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,191975,-0.0306078116555161,relative_legacy,jkraybill_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,192418,7.047671723495754,spot_peer,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,192418,95.60566524124027,spot_baseline,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,192418,44.823402289791694,baseline,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,192418,3.233105159306029,peer,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,192418,0.0211082329097837,relative_legacy,InstitutPelFutur,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,192924,-1.5263137481355091,peer,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,192924,80.73549220576041,spot_baseline,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,192924,-3.774907716184722,spot_peer,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,192924,-0.039074146580719,relative_legacy,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,192924,31.87259649894764,baseline,acm_bot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,218666,0.884819304547805,peer,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,218666,92.5999418556223,spot_baseline,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,218666,16.001523701423558,baseline,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,218666,4.860092598697344,spot_peer,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,218666,0.001265577431243,relative_legacy,GreeneiBot2,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,220077,4.860092598697344,spot_peer,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,220077,3.920671459988068,peer,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,220077,87.49939589408754,baseline,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,220077,0.0068953224788241,relative_legacy,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236037,0.002249946991727,relative_legacy,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236037,4.860092598697344,spot_peer,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236037,29.6168897410406,baseline,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236037,1.641122502040815,peer,metac-o1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236038,27.97469415818693,baseline,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236038,-6.818599087876212,spot_peer,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236038,76.55347463629771,spot_baseline,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236038,-2.4588896903941806,peer,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236038,-0.0510225953018764,relative_legacy,metac-gpt-4o,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236040,-6.818599087876212,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236040,-0.0499800063826323,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236040,-2.3861045971581336,peer,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236040,27.296315115830392,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236041,27.55094292670486,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236041,-2.4117605662767705,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236041,-6.818599087876212,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236041,-0.0502105221389888,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236043,1.837348513687851,peer,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236043,0.00724451055867,relative_legacy,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236043,33.10448168311525,baseline,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236043,4.860092598697344,spot_peer,metac-grok-2-1212,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236047,-2.2494857114296107,peer,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236047,-0.0491917374399115,relative_legacy,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236047,-6.818599087876212,spot_peer,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236047,76.55347463629771,spot_baseline,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,236047,25.842122826336496,baseline,metac-Llama-3.1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,239758,0.002546880881667,relative_legacy,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,239758,4.860092598697344,spot_peer,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,239758,1.653658487880231,peer,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,239758,29.855028961174355,baseline,metac-perplexity,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,239759,0.0076009226924026,relative_legacy,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,239759,35.175707722269536,baseline,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,239759,1.9120082605336808,peer,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,239759,4.860092598697344,spot_peer,metac-exa,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,240414,67.80719051126377,spot_baseline,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,240414,-3.764640693232974,peer,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,240414,19.604988831477428,baseline,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,240414,-0.0694329541199189,relative_legacy,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,240414,-13.184184378601856,spot_peer,minefrac1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,240416,1.483272886096993,peer,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,240416,4.860092598697344,spot_peer,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,240416,0.0019771634620716,relative_legacy,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,240416,26.56506975278459,baseline,metac-o1-preview,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,250015,-0.3795308559861617,peer,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,250015,-0.0126288000959582,relative_legacy,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,250015,-3.176615499147749,spot_peer,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,250015,81.55754288625727,spot_baseline,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33782,"Will the United States accuse North Korea of invading South Korea before April 1, 2025?",2025-01-25 06:31:53.224183+00,250015,10.27145346335586,baseline,metac-deepseek-r1,True,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34285 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,185690,24.215910424258016,spot_peer,annabot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,185690,0.0788032594522345,relative_legacy,annabot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,185690,84.8116664920782,baseline,annabot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,185690,96.12528840582075,spot_baseline,annabot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,185690,12.549695190447894,peer,annabot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,187708,8.451001618857811,peer,twsummerbot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,187708,49.94834167409864,baseline,twsummerbot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,187708,21.191188982885,spot_peer,twsummerbot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,187708,91.9912088677308,spot_baseline,twsummerbot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,187708,0.0456128317934004,relative_legacy,twsummerbot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,189869,-0.0816302118266517,relative_legacy,VeritasAI,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,189869,9.89608802853606,spot_peer,VeritasAI,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,189869,62.28114735802025,baseline,VeritasAI,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,189869,-1.47896483971014,peer,VeritasAI,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,191975,85.97045661207515,spot_baseline,jkraybill_bot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,191975,0.0141624069995703,relative_legacy,jkraybill_bot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,191975,19.971946175207854,baseline,jkraybill_bot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,191975,16.786073340313013,spot_peer,jkraybill_bot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,191975,4.1928962732642105,peer,jkraybill_bot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,192418,98.5500430304885,spot_baseline,InstitutPelFutur,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,192418,0.076718888466772,relative_legacy,InstitutPelFutur,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,192418,10.664405608666415,peer,InstitutPelFutur,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,192418,46.73853839873099,baseline,InstitutPelFutur,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,192418,25.9899951354316,spot_peer,InstitutPelFutur,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,192924,9.89608802853606,spot_peer,acm_bot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,192924,76.55347463629771,spot_baseline,acm_bot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,192924,29.948496081798737,baseline,acm_bot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,192924,3.7232113267255658,peer,acm_bot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,192924,-0.0142755871243414,relative_legacy,acm_bot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,218666,0.0052933975810269,relative_legacy,GreeneiBot2,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,218666,8.462363561094092,baseline,GreeneiBot2,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,218666,1.877499157821913,peer,GreeneiBot2,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,218666,20.069440322265883,spot_peer,GreeneiBot2,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,218666,90.45804349213174,spot_baseline,GreeneiBot2,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,220077,9.717116081995076,peer,mmBot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,220077,87.08151478499417,baseline,mmBot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,220077,92.5999418556223,spot_baseline,mmBot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,220077,21.636571734615305,spot_peer,mmBot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,220077,0.0476990078194951,relative_legacy,mmBot,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236037,76.55347463629771,spot_baseline,metac-o1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236037,25.06367954751249,baseline,metac-o1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236037,-0.0082480091626692,relative_legacy,metac-o1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236037,9.89608802853606,spot_peer,metac-o1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236037,3.5798245190075395,peer,metac-o1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236038,0.0192258609404258,relative_legacy,metac-gpt-4o,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236038,6.128483975533046,peer,metac-gpt-4o,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236038,31.164645154272293,baseline,metac-gpt-4o,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236038,84.79969065549501,spot_baseline,metac-gpt-4o,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236038,15.929476156086215,spot_peer,metac-gpt-4o,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236040,33.23628217701825,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236040,21.636571734615305,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236040,0.0472171158059025,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236040,8.043569918429393,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236041,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236041,21.636571734615305,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236041,0.0475149176514288,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236041,8.126331123861636,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236041,33.58308520303199,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236043,5.980855741888493,peer,metac-grok-2-1212,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236043,0.019183209287679,relative_legacy,metac-grok-2-1212,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236043,15.929476156086215,spot_peer,metac-grok-2-1212,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236043,30.47366604186144,baseline,metac-grok-2-1212,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236047,3.684789446373672,peer,metac-Llama-3.1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236047,-0.0089159041135777,relative_legacy,metac-Llama-3.1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236047,9.89608802853606,spot_peer,metac-Llama-3.1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236047,76.55347463629771,spot_baseline,metac-Llama-3.1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,236047,26.12399798131497,baseline,metac-Llama-3.1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,239758,22.133891663814627,baseline,metac-perplexity,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,239758,-0.0366261208810024,relative_legacy,metac-perplexity,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,239758,3.49682239235685,spot_peer,metac-perplexity,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,239758,67.80719051126377,spot_baseline,metac-perplexity,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,239758,1.4780823276582709,peer,metac-perplexity,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,239759,-53.28196787674423,peer,metac-exa,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,239759,-48.9646655093221,baseline,metac-exa,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,239759,-132.19280948873623,spot_baseline,metac-exa,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,239759,-142.83424905918716,spot_peer,metac-exa,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,239759,-0.7842768758264844,relative_legacy,metac-exa,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,240414,-28.921028440030344,peer,minefrac1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,240414,-100.0351543144365,spot_peer,minefrac1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,240414,-73.69655941662063,spot_baseline,minefrac1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,240414,-0.4475819920078441,relative_legacy,minefrac1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,240414,-21.575191117232905,baseline,minefrac1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,240416,-26.86961858866449,spot_peer,metac-o1-preview,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,240416,-7.587390620371947,peer,metac-o1-preview,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,240416,7.836718685654604,baseline,metac-o1-preview,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,240416,26.303440583379377,spot_baseline,metac-o1-preview,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,240416,-0.1579332530640936,relative_legacy,metac-o1-preview,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,250015,12.912897683390712,baseline,metac-deepseek-r1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,250015,21.636571734615305,spot_peer,metac-deepseek-r1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,250015,0.0146621665069002,relative_legacy,metac-deepseek-r1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,250015,3.071589466325712,peer,metac-deepseek-r1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +33783,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 06:31:53.265765+00,250015,92.5999418556223,spot_baseline,metac-deepseek-r1,True,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,2025-01-31 02:00:00+00,34286 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,185690,-4.365461941585282,peer,annabot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,185690,11.308761125142688,baseline,annabot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,185690,-0.118612017937475,relative_legacy,annabot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,185690,-4.812236557130507,spot_peer,annabot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,185690,12.829340100981756,spot_baseline,annabot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,185699,0.0136598034408157,relative_legacy,MWG,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,185699,28.688114778816157,spot_baseline,MWG,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,185699,16.433020901390485,baseline,MWG,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,185699,3.7975848535888734,peer,MWG,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,185699,6.638247771074036,spot_peer,MWG,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,187708,27.26204546629918,spot_baseline,twsummerbot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,187708,3.0000938304355715,peer,twsummerbot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,187708,0.005127682677685,relative_legacy,twsummerbot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,187708,14.5827671845377,baseline,twsummerbot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,187708,5.6085853510175925,spot_peer,twsummerbot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,189869,4.916445484489617,spot_peer,VeritasAI,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,189869,-0.0054642911706084,relative_legacy,VeritasAI,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,189869,3.625681589539914,peer,VeritasAI,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,189869,24.30623516400943,baseline,VeritasAI,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,190710,4.916445484489617,spot_peer,Bot_Pepa,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,190710,26.303440583379377,spot_baseline,Bot_Pepa,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,190710,0.0,relative_legacy,Bot_Pepa,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,190710,3.998061078391485,peer,Bot_Pepa,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,190710,21.093245208942072,baseline,Bot_Pepa,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,191935,0.2456497952498213,relative_legacy,pgodzinai,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,191935,54.92584390394774,spot_baseline,pgodzinai,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,191935,25.582631070428747,spot_peer,pgodzinai,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,191935,22.07010925229517,peer,pgodzinai,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,191935,47.15268176269403,baseline,pgodzinai,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,192418,57.047334549380935,baseline,InstitutPelFutur,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,192418,26.33595210335496,peer,InstitutPelFutur,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,192418,0.2971122361302385,relative_legacy,InstitutPelFutur,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,192418,28.160565413053128,spot_peer,InstitutPelFutur,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,192924,17.185511698696235,spot_peer,acm_bot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,192924,43.29594072761063,spot_baseline,acm_bot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,192924,0.1499438906827219,relative_legacy,acm_bot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,192924,38.72467378822185,baseline,acm_bot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,192924,15.152159965279914,peer,acm_bot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,218666,18.554966604467086,peer,GreeneiBot2,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,218666,58.496250072115615,spot_baseline,GreeneiBot2,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,218666,28.160565413053128,spot_peer,GreeneiBot2,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,218666,0.2119818600870481,relative_legacy,GreeneiBot2,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,218666,38.51836511113704,baseline,GreeneiBot2,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,220077,13.254227533816335,spot_peer,mmBot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,220077,10.777254728096285,peer,mmBot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,220077,37.626345198813134,baseline,mmBot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,220077,0.0957750177550785,relative_legacy,mmBot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,222631,-0.4149030074998516,relative_legacy,Grizeu_Bot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,222631,-32.19280948873623,spot_baseline,Grizeu_Bot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,222631,-37.31950327677751,spot_peer,Grizeu_Bot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,222631,-26.44115654353028,peer,Grizeu_Bot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,222631,-22.833760215876605,baseline,Grizeu_Bot,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236037,26.303440583379377,spot_baseline,metac-o1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236037,22.97017480051373,baseline,metac-o1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236037,4.259706150273387,peer,metac-o1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236037,-0.0001129977084802,relative_legacy,metac-o1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236037,4.916445484489617,spot_peer,metac-o1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236038,-0.1103883128624209,relative_legacy,metac-gpt-4o,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236038,-3.75774904661552,peer,metac-gpt-4o,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236038,13.750352374993504,spot_baseline,metac-gpt-4o,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236038,12.101868836411924,baseline,metac-gpt-4o,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236038,-4.147239618596811,spot_peer,metac-gpt-4o,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236040,0.1011325225502738,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236040,11.608071298866042,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236040,33.17022131247766,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236040,13.254227533816335,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236041,-37.31950327677751,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236041,-28.289603725997814,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236041,-33.03776277641986,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236041,-0.5141408045458147,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236041,-32.19280948873623,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236043,4.916445484489617,spot_peer,metac-grok-2-1212,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236043,4.268642902075413,peer,metac-grok-2-1212,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236043,-4.464066114251248e-05,relative_legacy,metac-grok-2-1212,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236043,26.303440583379377,spot_baseline,metac-grok-2-1212,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236043,23.04465627831968,baseline,metac-grok-2-1212,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236045,24.40796912164896,peer,metac-Gemini-Exp-1206,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236045,50.503946898987486,baseline,metac-Gemini-Exp-1206,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236045,58.496250072115615,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236045,28.160565413053128,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236045,0.2778838335836347,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236047,4.269422878579771,peer,metac-Llama-3.1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236047,23.09619941355699,baseline,metac-Llama-3.1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236047,4.916445484489617,spot_peer,metac-Llama-3.1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,236047,-8.036819849938059e-05,relative_legacy,metac-Llama-3.1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,237476,-51.45731728297583,spot_baseline,NextWorldLab,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,237476,-44.1545787886775,baseline,NextWorldLab,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,237476,-44.10749193580399,peer,NextWorldLab,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,237476,-0.6672507800971569,relative_legacy,NextWorldLab,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,237476,-51.229023341831954,spot_peer,NextWorldLab,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,239758,42.39432857269271,baseline,metac-perplexity,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,239758,0.1941567601776701,relative_legacy,metac-perplexity,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,239758,48.54268271702416,spot_baseline,metac-perplexity,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,239758,18.34892552273043,peer,metac-perplexity,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,239758,20.97380796649568,spot_peer,metac-perplexity,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,239759,42.343529242491,baseline,metac-exa,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,239759,48.54268271702416,spot_baseline,metac-exa,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,239759,20.97380796649568,spot_peer,metac-exa,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,239759,0.1939300933518407,relative_legacy,metac-exa,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,239759,18.332249819346178,peer,metac-exa,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,240414,4.916445484489617,spot_peer,minefrac1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,240414,16.627251523214017,baseline,minefrac1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,240414,3.099447546916984,peer,minefrac1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,240414,26.303440583379377,spot_baseline,minefrac1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,240414,0.0,relative_legacy,minefrac1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,240416,-37.31950327677751,spot_peer,metac-o1-preview,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,240416,-0.5092046701636467,relative_legacy,metac-o1-preview,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,240416,-32.19280948873623,spot_baseline,metac-o1-preview,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,240416,-28.0201302738222,baseline,metac-o1-preview,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,240416,-32.65291789234371,peer,metac-o1-preview,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,241715,-0.1443397873741128,relative_legacy,CatrachoCaster,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,241715,0.0,baseline,CatrachoCaster,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,241715,-7.720947622946001,peer,CatrachoCaster,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,241715,0.0,spot_baseline,CatrachoCaster,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,241715,-14.075383348213991,spot_peer,CatrachoCaster,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,250015,-51.45731728297583,spot_baseline,metac-deepseek-r1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,250015,-43.88688397841884,baseline,metac-deepseek-r1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,250015,-0.6632577866967728,relative_legacy,metac-deepseek-r1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,250015,-43.82281148664175,peer,metac-deepseek-r1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34180,"Will Intuitive Machines land with fully working payloads on the Moon before April 1, 2025?",2025-02-01 05:24:00.41747+00,250015,-51.229023341831954,spot_peer,metac-deepseek-r1,True,no,2025-02-01 16:00:00+00,2025-02-01 16:00:00+00,1.0,2025-02-01 16:00:00+00,34666 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,185690,27.61225041893205,baseline,annabot,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,185690,30.40721787073967,spot_baseline,annabot,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,185690,-0.0020666951829956,relative_legacy,annabot,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,185690,9.396779414847437,peer,annabot,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,185690,8.164071652144456,spot_peer,annabot,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,185699,-7.822293283577781,spot_peer,MWG,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,185699,20.90619551221676,spot_baseline,MWG,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,185699,15.217310155933644,baseline,MWG,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,185699,-5.10351890789163,peer,MWG,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,185699,-0.1665551423351969,relative_legacy,MWG,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,189869,-11.451061317831057,peer,VeritasAI,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,189869,-14.768826403521023,spot_peer,VeritasAI,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,189869,16.777729362959608,spot_baseline,VeritasAI,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,189869,-0.2881961464634095,relative_legacy,VeritasAI,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,189869,15.545244792655009,baseline,VeritasAI,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,190710,15.021372740136457,baseline,Bot_Pepa,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,190710,-0.2116418169328418,relative_legacy,Bot_Pepa,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,190710,-7.771643002873186,peer,Bot_Pepa,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,190710,19.08565451952517,spot_baseline,Bot_Pepa,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,190710,-10.885524964482316,spot_peer,Bot_Pepa,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,191935,15.600880066785493,peer,pgodzinai,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,191935,17.966357264882618,spot_peer,pgodzinai,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,191935,29.494926615142283,baseline,pgodzinai,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,191935,36.23291590438996,spot_baseline,pgodzinai,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,191935,0.103393586842141,relative_legacy,pgodzinai,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,192418,0.0,baseline,InstitutPelFutur,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,192418,0.0,spot_baseline,InstitutPelFutur,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,192418,-42.99893620306823,spot_peer,InstitutPelFutur,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,192418,-0.6573416932991999,relative_legacy,InstitutPelFutur,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,192418,-39.29847922654766,peer,InstitutPelFutur,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,218666,29.75507638392269,baseline,GreeneiBot2,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,218666,21.417319153992384,peer,GreeneiBot2,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,218666,0.2031091720695751,relative_legacy,GreeneiBot2,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,218666,31.02298761618177,spot_peer,GreeneiBot2,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,218666,43.99273731428808,spot_baseline,GreeneiBot2,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,220077,-15.022899913359325,peer,mmBot,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,220077,-19.670292202037206,spot_peer,mmBot,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,220077,-0.3435344555654526,relative_legacy,mmBot,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,220077,13.77975450594494,baseline,mmBot,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,220077,13.86468838532139,spot_baseline,mmBot,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,222631,14.606477199051024,baseline,Grizeu_Bot,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,222631,-4.987961025383832,peer,Grizeu_Bot,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,222631,-0.1620752190479106,relative_legacy,Grizeu_Bot,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,222631,-7.822293283577781,spot_peer,Grizeu_Bot,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,222631,20.90619551221676,spot_baseline,Grizeu_Bot,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236037,32.60321661873784,spot_baseline,metac-o1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236037,28.41761872561229,baseline,metac-o1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236037,11.504530422397115,peer,metac-o1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236037,0.0349356341177574,relative_legacy,metac-o1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236037,11.859046367407156,spot_peer,metac-o1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236038,20.335074139043734,baseline,metac-gpt-4o,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236038,23.08654180207135,spot_baseline,metac-gpt-4o,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236038,-4.1536553033086525,spot_peer,metac-gpt-4o,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236038,-0.1573320504056288,relative_legacy,metac-gpt-4o,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236038,-2.416241320865836,peer,metac-gpt-4o,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236040,27.230309883053657,spot_baseline,metac-claude-3-5-sonnet-latest,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236040,-0.0733748366344896,relative_legacy,metac-claude-3-5-sonnet-latest,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236040,3.642982132660276,peer,metac-claude-3-5-sonnet-latest,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236040,23.821586489499037,baseline,metac-claude-3-5-sonnet-latest,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236040,2.81862475791618,spot_peer,metac-claude-3-5-sonnet-latest,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236041,16.38291396906073,baseline,metac-claude-3-5-sonnet-20240620,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236041,-9.05174068997224,peer,metac-claude-3-5-sonnet-20240620,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236041,-0.2479133780597765,relative_legacy,metac-claude-3-5-sonnet-20240620,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236041,-11.624365174169249,spot_peer,metac-claude-3-5-sonnet-20240620,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236041,18.64654673111698,spot_baseline,metac-claude-3-5-sonnet-20240620,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236043,-0.4956332414339408,relative_legacy,metac-grok-2-1212,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236043,5.67461220492371,baseline,metac-grok-2-1212,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236043,6.4781008027035965,spot_baseline,metac-grok-2-1212,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236043,-27.12447299431979,peer,metac-grok-2-1212,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236043,-32.09892148733451,spot_peer,metac-grok-2-1212,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236045,21.9540026951916,spot_baseline,metac-Gemini-Exp-1206,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236045,-0.1787969176806947,relative_legacy,metac-Gemini-Exp-1206,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236045,-4.201739298679168,peer,metac-Gemini-Exp-1206,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236045,18.984517390819395,baseline,metac-Gemini-Exp-1206,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236045,-6.059259014504555,spot_peer,metac-Gemini-Exp-1206,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236047,-0.4501054548142559,relative_legacy,metac-Llama-3.1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236047,8.683897731959355,spot_baseline,metac-Llama-3.1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236047,-23.822531495757843,peer,metac-Llama-3.1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236047,7.597714799173706,baseline,metac-Llama-3.1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,236047,-28.387460409301617,spot_peer,metac-Llama-3.1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,237476,-0.5212487611120247,baseline,NextWorldLab,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,237476,-0.6244624769837445,spot_baseline,NextWorldLab,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,237476,-44.049653133207016,spot_peer,NextWorldLab,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,237476,-0.6066862987520092,relative_legacy,NextWorldLab,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,237476,-35.9250540322625,peer,NextWorldLab,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,239758,46.09915915347599,spot_baseline,metac-perplexity,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,239758,40.11227892662032,baseline,metac-perplexity,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,239758,31.338060463234356,peer,metac-perplexity,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,239758,0.3073366894992154,relative_legacy,metac-perplexity,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,239758,34.56724074591213,spot_peer,metac-perplexity,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,239759,39.079703550670985,baseline,metac-exa,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,239759,0.2832590091298352,relative_legacy,metac-exa,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,239759,32.55668927163297,spot_peer,metac-exa,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,239759,44.90424745298036,spot_baseline,metac-exa,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,239759,29.58554020508884,peer,metac-exa,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,240414,-23.938046174609344,spot_peer,minefrac1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,240414,11.328275255937832,spot_baseline,minefrac1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,240414,6.686424246761711,baseline,minefrac1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,240414,-13.833946487512003,peer,minefrac1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,240414,-0.2680977451239488,relative_legacy,minefrac1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,240416,39.55087888989933,peer,metac-o1-preview,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,240416,44.07792664923809,spot_peer,metac-o1-preview,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,240416,51.75155353929865,spot_baseline,metac-o1-preview,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,240416,44.92000972248508,baseline,metac-o1-preview,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,240416,0.4206803937635274,relative_legacy,metac-o1-preview,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,246118,36.25429384500705,baseline,laylaps,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,246118,33.97279031950182,peer,laylaps,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,246118,52.79509485650253,spot_peer,laylaps,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,246118,0.3811677150596068,relative_legacy,laylaps,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,246118,56.93234419266072,spot_baseline,laylaps,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,250015,18.451487854880597,spot_peer,metac-deepseek-r1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,250015,36.52123889719707,spot_baseline,metac-deepseek-r1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,250015,7.920512427611503,baseline,metac-deepseek-r1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,250015,4.001528644848742,peer,metac-deepseek-r1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34181,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-02-01 05:24:00.456127+00,250015,0.0206410037298439,relative_legacy,metac-deepseek-r1,True,3rd,2025-02-02 17:00:00+00,2025-02-02 17:00:00+00,0.5,2025-02-02 17:00:00+00,34667 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,185690,-16.096404744368115,spot_baseline,annabot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,185690,-0.2499553379880127,relative_legacy,annabot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,185690,1.5739796369757324,spot_peer,annabot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,185690,12.70632440447848,peer,annabot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,185690,-12.848366088507886,baseline,annabot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,185699,47.3796781871466,peer,MWG,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,185699,0.2747114896261762,relative_legacy,MWG,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,185699,17.807190511263755,spot_baseline,MWG,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,185699,12.899900382506209,baseline,MWG,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,185699,50.61783660174811,spot_peer,MWG,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,189869,32.9566991362874,spot_peer,VeritasAI,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,189869,-0.0111935185468303,relative_legacy,VeritasAI,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,189869,47.891589666300696,peer,VeritasAI,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,189869,5.598198530613678,spot_baseline,VeritasAI,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,189869,5.058959177884042,baseline,VeritasAI,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,190710,14.327123921245196,spot_peer,Bot_Pepa,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,190710,-5.20586046011987,baseline,Bot_Pepa,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,190710,20.758533413640656,peer,Bot_Pepa,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,190710,-7.280266112344974,spot_baseline,Bot_Pepa,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,190710,-0.0861628682970546,relative_legacy,Bot_Pepa,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,191935,-73.7667080611686,baseline,pgodzinai,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,191935,-153.08673171140515,spot_baseline,pgodzinai,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,191935,-1.4885759858007672,relative_legacy,pgodzinai,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,191935,-196.5918476350662,spot_peer,pgodzinai,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,191935,-87.71940294300893,peer,pgodzinai,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,191975,0.0154795011300157,relative_legacy,jkraybill_bot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,191975,7.120570621667267,peer,jkraybill_bot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,191975,75.043656212501,spot_peer,jkraybill_bot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,191975,34.69254890517785,spot_baseline,jkraybill_bot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,191975,3.291827144261838,baseline,jkraybill_bot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,192418,-162.08798245512486,baseline,InstitutPelFutur,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,192418,97.84656390540572,spot_baseline,InstitutPelFutur,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,192418,166.40023521448032,spot_peer,InstitutPelFutur,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,192418,-3.4257435148715194,relative_legacy,InstitutPelFutur,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,192418,-217.2812818699388,peer,InstitutPelFutur,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,218666,-2.9109624047978864,relative_legacy,GreeneiBot2,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,218666,-313.0905317560856,spot_peer,GreeneiBot2,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,218666,-233.6212670985748,spot_baseline,GreeneiBot2,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,218666,-186.3792225297558,peer,GreeneiBot2,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,218666,-146.1036071870973,baseline,GreeneiBot2,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,220077,1.728707993709074,relative_legacy,mmBot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,220077,97.27948091055596,baseline,mmBot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,220077,207.9535618043548,peer,mmBot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,220077,166.40023521448032,spot_peer,mmBot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,220077,97.84656390540572,spot_baseline,mmBot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,222631,-27.908892431342768,spot_peer,Grizeu_Bot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,222631,-7.934682662249064,peer,Grizeu_Bot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,222631,-23.45582021072991,baseline,Grizeu_Bot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,222631,-36.47765987884555,spot_baseline,Grizeu_Bot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,222631,-0.4548115308962716,relative_legacy,Grizeu_Bot,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236037,0.0484157245546873,relative_legacy,metac-o1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236037,34.67443434348837,peer,metac-o1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236037,2.6366335912038417,spot_baseline,metac-o1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236037,2.114757516946116,baseline,metac-o1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236037,28.672593979145617,spot_peer,metac-o1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236038,-68.13499301207135,baseline,metac-gpt-4o,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236038,-82.19280948873623,spot_baseline,metac-gpt-4o,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236038,-94.03896629771872,spot_peer,metac-gpt-4o,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236038,-1.354986728316511,relative_legacy,metac-gpt-4o,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236038,-66.34408174043274,peer,metac-gpt-4o,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236040,5.551565619437198,spot_baseline,metac-claude-3-5-sonnet-latest,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236040,32.88924145788056,spot_peer,metac-claude-3-5-sonnet-latest,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236040,4.541239944630046,baseline,metac-claude-3-5-sonnet-latest,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236040,0.0974207653199264,relative_legacy,metac-claude-3-5-sonnet-latest,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236040,39.73745165803327,peer,metac-claude-3-5-sonnet-latest,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236041,0.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236041,24.858524121936725,spot_peer,metac-claude-3-5-sonnet-20240620,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236041,0.0066640478286905,relative_legacy,metac-claude-3-5-sonnet-20240620,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236041,33.047670168542226,peer,metac-claude-3-5-sonnet-20240620,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236041,-0.0004004093283869,baseline,metac-claude-3-5-sonnet-20240620,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236043,-105.46360227273634,spot_baseline,metac-grok-2-1212,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236043,-127.70175114841312,spot_peer,metac-grok-2-1212,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236043,-1.7370024355381446,relative_legacy,metac-grok-2-1212,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236043,-94.2770111349583,peer,metac-grok-2-1212,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236043,-87.18372457767013,baseline,metac-grok-2-1212,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236045,-129.7963602248726,spot_baseline,metac-Gemini-Exp-1206,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236045,-162.9007408592392,spot_peer,metac-Gemini-Exp-1206,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236045,-2.1076720177330928,relative_legacy,metac-Gemini-Exp-1206,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236045,-121.8835211292426,peer,metac-Gemini-Exp-1206,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236045,-105.76237099367616,baseline,metac-Gemini-Exp-1206,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236047,0.3248111716335872,relative_legacy,metac-Llama-3.1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236047,19.41834419342673,spot_baseline,metac-Llama-3.1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236047,52.94848000816211,spot_peer,metac-Llama-3.1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236047,55.98920023138661,peer,metac-Llama-3.1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,236047,15.87952339720858,baseline,metac-Llama-3.1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,237476,24.858524121936725,spot_peer,NextWorldLab,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,237476,0.0,baseline,NextWorldLab,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,237476,0.0180358567647125,relative_legacy,NextWorldLab,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,237476,27.846872124974308,peer,NextWorldLab,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,237476,0.0,spot_baseline,NextWorldLab,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,239758,56.94388409563695,spot_peer,metac-perplexity,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,239758,22.180332573780724,spot_baseline,metac-perplexity,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,239758,0.365026663943715,relative_legacy,metac-perplexity,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,239758,58.21926999034551,peer,metac-perplexity,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,239758,17.97112483034637,baseline,metac-perplexity,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,239759,72.35614730988216,baseline,metac-exa,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,239759,154.98363303877667,spot_peer,metac-exa,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,239759,1.4527690442641954,relative_legacy,metac-exa,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,239759,137.11306349255707,peer,metac-exa,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,239759,89.95436530370016,spot_baseline,metac-exa,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,240414,0.1270339596508319,relative_legacy,minefrac1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,240414,43.88338222217547,spot_peer,minefrac1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,240414,13.151720291689688,spot_baseline,minefrac1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,240414,7.01154290819581,baseline,minefrac1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,240414,31.428786093890583,peer,minefrac1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,240416,-19.565110439741147,spot_peer,metac-o1-preview,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,240416,-0.4937623176731659,relative_legacy,metac-o1-preview,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,240416,-4.138593728019412,peer,metac-o1-preview,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,240416,-25.06068815765551,baseline,metac-o1-preview,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,240416,-30.7096753635232,spot_baseline,metac-o1-preview,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,246118,30.653411864269412,peer,laylaps,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,246118,0.1027181718995974,relative_legacy,laylaps,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,246118,38.79223465666952,spot_peer,laylaps,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,246118,5.45640329588026,baseline,laylaps,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,246118,9.632253897119792,spot_baseline,laylaps,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,250015,-24.35242307243293,spot_peer,metac-deepseek-r1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,250015,-23.51646303423009,baseline,metac-deepseek-r1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,250015,-6.562620327470597,peer,metac-deepseek-r1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,250015,-0.4517070525690585,relative_legacy,metac-deepseek-r1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34182,How many Grammy awards will Beyoncé win in 2025?,2025-02-01 05:24:00.489738+00,250015,-34.01910328999194,spot_baseline,metac-deepseek-r1,True,3,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34668 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,185690,-55.59739417560223,peer,annabot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,185690,-1.8607578712145203,baseline,annabot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,185690,-0.6758540512303698,relative_legacy,annabot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,185690,-55.61492383162585,spot_peer,annabot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,185690,-2.3045261959506704,spot_baseline,annabot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,189869,-15.62560743134396,baseline,VeritasAI,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,189869,-80.09015021630192,peer,VeritasAI,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,189869,-1.0163877836412092,relative_legacy,VeritasAI,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,189869,-73.14061072959755,spot_peer,VeritasAI,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,189869,-17.56350398458133,spot_baseline,VeritasAI,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,190710,11.926706423906367,spot_baseline,Bot_Pepa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,190710,-39.26965283623513,spot_peer,Bot_Pepa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,190710,-15.764095088928784,peer,Bot_Pepa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,190710,3.900980564307085,baseline,Bot_Pepa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,190710,-0.1962355786485719,relative_legacy,Bot_Pepa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,191935,93.88239596564772,spot_baseline,pgodzinai,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,191935,54.86048971408249,spot_peer,pgodzinai,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,191935,0.3520351878605148,relative_legacy,pgodzinai,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,191935,22.369151831975167,peer,pgodzinai,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,191935,47.68040097870609,baseline,pgodzinai,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,191975,0.0005218514631862,relative_legacy,jkraybill_bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,191975,54.10607229605933,spot_baseline,jkraybill_bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,191975,9.175424551657484,spot_peer,jkraybill_bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,191975,0.1055336582692577,peer,jkraybill_bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,191975,0.622315808041013,baseline,jkraybill_bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,192418,0.6175760361955682,relative_legacy,InstitutPelFutur,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,192418,59.79588020815501,spot_peer,InstitutPelFutur,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,192418,98.17946086049,spot_baseline,InstitutPelFutur,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,192418,95.63949616516706,baseline,InstitutPelFutur,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,192418,44.2577018943362,peer,InstitutPelFutur,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,218666,-7.073642772026997,peer,GreeneiBot2,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,218666,26.710772993752407,baseline,GreeneiBot2,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,218666,-0.6142819878716661,spot_peer,GreeneiBot2,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,218666,-0.0394625404000251,relative_legacy,GreeneiBot2,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,218666,45.58253107832961,spot_baseline,GreeneiBot2,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,220077,93.60801210414007,baseline,mmBot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,220077,95.33108313855332,spot_baseline,mmBot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,220077,0.5735982656976767,relative_legacy,mmBot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,220077,56.52437822333562,spot_peer,mmBot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,220077,40.6754346500296,peer,mmBot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,222631,1.2694708601355864,spot_peer,Grizeu_Bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,222631,14.435104913682528,baseline,Grizeu_Bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,222631,-2.210936557724517,peer,Grizeu_Bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,222631,-0.0125074917130454,relative_legacy,Grizeu_Bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,222631,47.222646129702525,spot_baseline,Grizeu_Bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236037,-29.5788150472916,peer,metac-o1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236037,25.271129720828394,spot_baseline,metac-o1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236037,-23.94292598890268,spot_peer,metac-o1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236037,20.33987922312806,baseline,metac-o1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236037,-0.3207865613325136,relative_legacy,metac-o1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236038,27.816399896379547,peer,metac-gpt-4o,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236038,86.27150894903679,spot_baseline,metac-gpt-4o,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236038,46.119011437054894,spot_peer,metac-gpt-4o,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236038,0.4583670609829696,relative_legacy,metac-gpt-4o,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236038,70.23397678602987,baseline,metac-gpt-4o,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236040,60.78844916119508,spot_baseline,metac-claude-3-5-sonnet-latest,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236040,16.850463226913885,spot_peer,metac-claude-3-5-sonnet-latest,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236040,0.1292462311946062,relative_legacy,metac-claude-3-5-sonnet-latest,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236040,3.6484894562560535,peer,metac-claude-3-5-sonnet-latest,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236040,49.54355639836587,baseline,metac-claude-3-5-sonnet-latest,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236041,79.68859864249879,spot_baseline,metac-claude-3-5-sonnet-20240620,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236041,0.37340382186983,relative_legacy,metac-claude-3-5-sonnet-20240620,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236041,21.593056344951687,peer,metac-claude-3-5-sonnet-20240620,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236041,38.558214999184905,spot_peer,metac-claude-3-5-sonnet-20240620,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236041,64.96374384584226,baseline,metac-claude-3-5-sonnet-20240620,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236043,93.9835470476758,spot_baseline,metac-grok-2-1212,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236043,35.173984763014985,peer,metac-grok-2-1212,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236043,54.97666670952552,spot_peer,metac-grok-2-1212,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236043,0.5581025808873613,relative_legacy,metac-grok-2-1212,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236043,76.63924310710152,baseline,metac-grok-2-1212,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236045,25.490400117285983,spot_peer,metac-Gemini-Exp-1206,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236045,37.75151780661821,baseline,metac-Gemini-Exp-1206,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236045,7.910892019699521,peer,metac-Gemini-Exp-1206,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236045,0.1596020968118139,relative_legacy,metac-Gemini-Exp-1206,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236045,68.31092778773132,spot_baseline,metac-Gemini-Exp-1206,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236047,8.828996869428572,baseline,metac-Llama-3.1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236047,-43.66287452699384,peer,metac-Llama-3.1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236047,-0.514550419121343,relative_legacy,metac-Llama-3.1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236047,-40.49961354682825,spot_peer,metac-Llama-3.1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,236047,10.855824393827348,spot_baseline,metac-Llama-3.1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,237476,30.112135627407,baseline,NextWorldLab,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,237476,41.57321074565946,spot_baseline,NextWorldLab,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,237476,-5.219183692126296,spot_peer,NextWorldLab,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,237476,-0.079109672187674,relative_legacy,NextWorldLab,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,237476,-12.507984428334815,peer,NextWorldLab,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,239758,0.5298788431982784,relative_legacy,metac-perplexity,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,239758,32.92395293025883,peer,metac-perplexity,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,239758,91.91670905922508,spot_baseline,metac-perplexity,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,239758,74.18840138592675,baseline,metac-perplexity,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,239758,52.60280156887301,spot_peer,metac-perplexity,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,239759,18.83436241042668,peer,metac-exa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,239759,62.248325966292974,baseline,metac-exa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,239759,76.91375931651822,spot_baseline,metac-exa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,239759,35.371175481010305,spot_peer,metac-exa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,239759,0.3372838790970802,relative_legacy,metac-exa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,240414,24.98656419626762,baseline,minefrac1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,240414,47.22264612970255,spot_baseline,minefrac1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,240414,1.2694708601356095,spot_peer,minefrac1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,240414,-0.0243031581876728,relative_legacy,minefrac1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,240414,-5.2630084108509925,peer,minefrac1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,240416,49.23752499171896,spot_peer,metac-o1-preview,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,240416,88.98668521238025,spot_baseline,metac-o1-preview,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,240416,0.4925729876960726,relative_legacy,metac-o1-preview,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,240416,30.21574031670228,peer,metac-o1-preview,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,240416,71.96245514793767,baseline,metac-o1-preview,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,246118,-181.3588092215596,spot_baseline,laylaps,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,246118,-15.84519941608887,baseline,laylaps,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,246118,-22.836107488126917,peer,laylaps,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,246118,-0.3245972594698481,relative_legacy,laylaps,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,246118,-261.2675793054262,spot_peer,laylaps,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,250015,32.75342721557432,baseline,metac-deepseek-r1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,250015,43.91232049926883,spot_baseline,metac-deepseek-r1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,250015,-2.5326010304558464,spot_peer,metac-deepseek-r1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,250015,-0.0560998821527462,relative_legacy,metac-deepseek-r1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34183,How many Grammy awards will Post Malone win in 2025?,2025-02-01 05:24:00.522166+00,250015,-10.939691460117166,peer,metac-deepseek-r1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34669 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,185690,0.3400778957456836,relative_legacy,annabot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,185690,25.79393857157425,spot_peer,annabot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,185690,-35.77627814322996,spot_baseline,annabot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,185690,-29.18179975298097,baseline,annabot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,185690,16.991301245323445,peer,annabot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,185699,-23.71472016878566,spot_peer,MWG,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,185699,-78.96330458458897,spot_baseline,MWG,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,185699,-0.0161110891903982,relative_legacy,MWG,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,185699,-1.4890768368193148,peer,MWG,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,185699,-4.958204312711516,baseline,MWG,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,189869,46.8542558844068,peer,VeritasAI,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,189869,0.7809660292617909,relative_legacy,VeritasAI,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,189869,65.030042352382,spot_peer,VeritasAI,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,189869,-1.550130746991057,spot_baseline,VeritasAI,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,189869,-1.4018190330547426,baseline,VeritasAI,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,190710,-109.59032742893848,spot_baseline,Bot_Pepa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,190710,-58.82486659882524,spot_peer,Bot_Pepa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,190710,-0.2581478164763519,relative_legacy,Bot_Pepa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,190710,-34.30702655066484,baseline,Bot_Pepa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,190710,-18.657528925767515,peer,Bot_Pepa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,191935,-67.76189221859242,spot_baseline,pgodzinai,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,191935,-10.873667011509772,spot_peer,pgodzinai,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,191935,-0.0679325871725426,relative_legacy,pgodzinai,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,191935,-39.656226170418286,baseline,pgodzinai,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,191935,-8.852553660248063,peer,pgodzinai,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,191975,-30.663439697270825,spot_baseline,jkraybill_bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,191975,0.0469249132177154,relative_legacy,jkraybill_bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,191975,-4.386006849437235,baseline,jkraybill_bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,191975,4.449777917777219,peer,jkraybill_bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,191975,31.655184289875592,spot_peer,jkraybill_bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,192418,179.35785614420527,spot_peer,InstitutPelFutur,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,192418,2.2592018270929515,relative_legacy,InstitutPelFutur,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,192418,166.8054588860672,peer,InstitutPelFutur,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,192418,95.32932973673029,baseline,InstitutPelFutur,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,192418,98.17946086049,spot_baseline,InstitutPelFutur,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,218666,-20.372082257190527,baseline,GreeneiBot2,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,218666,-37.82184563631737,spot_baseline,GreeneiBot2,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,218666,23.44894491744641,spot_peer,GreeneiBot2,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,218666,0.1882617094805077,relative_legacy,GreeneiBot2,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,218666,10.585708960116696,peer,GreeneiBot2,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,220077,-46.497352071792704,spot_baseline,mmBot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,220077,0.0326960758041938,relative_legacy,mmBot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,220077,-13.025568768530656,peer,mmBot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,220077,-45.43199771607108,baseline,mmBot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,220077,13.503534850908174,spot_peer,mmBot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,222631,-82.10941108378628,spot_peer,Grizeu_Bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,222631,-129.90172878643972,spot_baseline,Grizeu_Bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,222631,-24.778683065046888,peer,Grizeu_Bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,222631,-38.90809245057796,baseline,Grizeu_Bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,222631,-0.3450051788667831,relative_legacy,Grizeu_Bot,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236037,-0.2989632738625872,relative_legacy,metac-o1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236037,-68.51957669337845,baseline,metac-o1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236037,-29.504082806936648,peer,metac-o1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236037,-31.447725958739245,spot_peer,metac-o1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236037,-85.70890291059766,spot_baseline,metac-o1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236038,-89.33106165813228,baseline,metac-gpt-4o,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236038,-0.6135606694042512,relative_legacy,metac-gpt-4o,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236038,-53.07679403951534,peer,metac-gpt-4o,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236038,-109.59032742893848,spot_baseline,metac-gpt-4o,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236038,-58.82486659882524,spot_peer,metac-gpt-4o,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236040,-51.16626893323938,spot_baseline,metac-claude-3-5-sonnet-latest,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236040,2.478334359856777,peer,metac-claude-3-5-sonnet-latest,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236040,-41.62421265903231,baseline,metac-claude-3-5-sonnet-latest,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236040,8.151191088728972,spot_peer,metac-claude-3-5-sonnet-latest,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236040,0.1417024462353037,relative_legacy,metac-claude-3-5-sonnet-latest,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236041,-9.78100963405286,spot_peer,metac-claude-3-5-sonnet-20240620,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236041,-0.0599033501209135,relative_legacy,metac-claude-3-5-sonnet-20240620,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236041,-12.330338887015944,peer,metac-claude-3-5-sonnet-20240620,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236041,-54.336278640173866,baseline,metac-claude-3-5-sonnet-20240620,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236041,-66.80875342929394,spot_baseline,metac-claude-3-5-sonnet-20240620,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236043,-0.0596364553815521,relative_legacy,metac-grok-2-1212,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236043,-9.781009634052875,spot_peer,metac-grok-2-1212,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236043,-66.80875342929396,spot_baseline,metac-grok-2-1212,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236043,-54.27068323006196,baseline,metac-grok-2-1212,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236043,-12.286576793265,peer,metac-grok-2-1212,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236045,-26.185950714291486,spot_baseline,metac-Gemini-Exp-1206,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236045,-14.061451791114932,baseline,metac-Gemini-Exp-1206,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236045,17.76917881967509,peer,metac-Gemini-Exp-1206,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236045,0.2864536936187588,relative_legacy,metac-Gemini-Exp-1206,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236045,36.78807933586918,spot_peer,metac-Gemini-Exp-1206,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236047,-87.34912579328349,spot_baseline,metac-Llama-3.1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236047,-70.70996940710306,baseline,metac-Llama-3.1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236047,-33.32804145272877,spot_peer,metac-Llama-3.1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236047,-0.3233434834094872,relative_legacy,metac-Llama-3.1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,236047,-31.557255742629287,peer,metac-Llama-3.1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,237476,-7.661041648023599,peer,NextWorldLab,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,237476,-0.0156601761270483,relative_legacy,NextWorldLab,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,237476,-5.5004557707915085,spot_peer,NextWorldLab,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,237476,-63.07477239284896,spot_baseline,NextWorldLab,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,237476,-46.699931012587626,baseline,NextWorldLab,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,239758,-74.61278698303887,baseline,metac-perplexity,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,239758,-92.99470414358544,spot_baseline,metac-perplexity,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,239758,-39.80000849858652,spot_peer,metac-perplexity,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,239758,-0.392551473763595,relative_legacy,metac-perplexity,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,239758,-36.434568493514384,peer,metac-perplexity,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,239759,-12.289416779047832,peer,metac-exa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,239759,-9.78100963405286,spot_peer,metac-exa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,239759,-66.80875342929394,spot_baseline,metac-exa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,239759,-0.0596533277027136,relative_legacy,metac-exa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,239759,-54.27637629017124,baseline,metac-exa,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,240414,-109.59032742893848,spot_baseline,minefrac1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,240414,-15.254743012029367,peer,minefrac1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,240414,-28.276009736034435,baseline,minefrac1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,240414,-0.2163604508619933,relative_legacy,minefrac1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,240414,-58.82486659882524,spot_peer,minefrac1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,240416,0.0105758040173078,relative_legacy,metac-o1-preview,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,240416,-61.290462541620336,spot_baseline,metac-o1-preview,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,240416,-6.840085338010569,peer,metac-o1-preview,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,240416,-49.18770236923384,baseline,metac-o1-preview,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,240416,-3.4549621401640005,spot_peer,metac-o1-preview,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,246118,10.263325022787132,peer,laylaps,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,246118,0.1376395064153318,relative_legacy,laylaps,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,246118,36.78807933586918,spot_peer,laylaps,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,246118,-7.354834600808299,baseline,laylaps,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,246118,-26.185950714291486,spot_baseline,laylaps,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,250015,-44.72984172647855,spot_baseline,metac-deepseek-r1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,250015,7.840973700389941,peer,metac-deepseek-r1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,250015,0.1901819624945211,relative_legacy,metac-deepseek-r1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,250015,15.529769896866576,spot_peer,metac-deepseek-r1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34184,How many Grammy awards will Billie Eilish win in 2025?,2025-02-01 05:24:00.554452+00,250015,-31.89948708251277,baseline,metac-deepseek-r1,True,0,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.8,2025-02-03 09:00:00+00,34670 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,185690,-0.0596867580374966,relative_legacy,annabot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,185690,-7.291055518066771,spot_peer,annabot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,185690,-5.850424456543302,peer,annabot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,185690,40.14120253638085,spot_baseline,annabot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,185690,33.45505550596918,baseline,annabot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,189869,61.23596482463226,baseline,VeritasAI,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,189869,0.1708910784108065,relative_legacy,VeritasAI,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,189869,12.68457110922015,spot_peer,VeritasAI,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,189869,10.786660589878178,peer,VeritasAI,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,190710,26.303440583379377,spot_baseline,Bot_Pepa,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,190710,-17.282311437840374,spot_peer,Bot_Pepa,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,190710,-0.1401049155655425,relative_legacy,Bot_Pepa,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,190710,18.925712664859866,baseline,Bot_Pepa,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,190710,-11.694663701504744,peer,Bot_Pepa,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,191935,11.00271123546406,peer,pgodzinai,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,191935,0.1516962438824043,relative_legacy,pgodzinai,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,191935,24.02357162089535,spot_peer,pgodzinai,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,191935,83.51156152582178,spot_baseline,pgodzinai,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,191935,37.8209300301621,baseline,pgodzinai,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,191975,27.64344579280789,baseline,jkraybill_bot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,191975,0.1136757527423202,relative_legacy,jkraybill_bot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,191975,25.79896349207164,spot_peer,jkraybill_bot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,191975,8.282797468951975,peer,jkraybill_bot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,191975,85.97045661207515,spot_baseline,jkraybill_bot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,192418,94.103236500079,baseline,InstitutPelFutur,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,192418,33.063202094003344,peer,InstitutPelFutur,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,192418,0.4514177874946229,relative_legacy,InstitutPelFutur,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,192418,30.58563953908046,spot_peer,InstitutPelFutur,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,192924,12.68457110922015,spot_peer,acm_bot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,192924,0.1708910784108065,relative_legacy,acm_bot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,192924,10.977545489823484,peer,acm_bot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,192924,57.98230161911097,baseline,acm_bot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,192924,67.80719051126377,spot_baseline,acm_bot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,218666,55.77776713949258,spot_baseline,GreeneiBot2,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,218666,3.998986844735661,spot_peer,GreeneiBot2,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,218666,0.0644423566298246,relative_legacy,GreeneiBot2,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,218666,3.396710068472488,peer,GreeneiBot2,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,218666,37.44870893713296,baseline,GreeneiBot2,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,220077,-1.2249489558343063,spot_peer,mmBot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,220077,48.54268271702416,spot_baseline,mmBot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,220077,47.18048857924106,baseline,mmBot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,220077,-0.0203579689743037,relative_legacy,mmBot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,220077,-4.522534903681774,peer,mmBot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,222631,16.965890784975336,baseline,Grizeu_Bot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,222631,26.303440583379377,spot_baseline,Grizeu_Bot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,222631,-17.282311437840374,spot_peer,Grizeu_Bot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,222631,-0.1287368579092347,relative_legacy,Grizeu_Bot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,222631,-10.560590736261087,peer,Grizeu_Bot,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236037,-0.3687945017187968,relative_legacy,metac-o1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236037,0.0,spot_baseline,metac-o1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236037,-28.29651826473981,peer,metac-o1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236037,-0.0002603326072601,baseline,metac-o1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236037,-36.27414027054399,spot_peer,metac-o1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236038,-0.4300089637112872,peer,metac-gpt-4o,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236038,0.014309229527839,relative_legacy,metac-gpt-4o,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236038,-1.2249489558343063,spot_peer,metac-gpt-4o,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236038,39.459001952407895,baseline,metac-gpt-4o,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236040,16.14454028359303,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236040,62.03205502720641,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236040,18.999635881765435,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236040,0.2417312059880949,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236041,16.14665200502678,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236041,0.2417628293129184,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236041,18.999635881765435,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236041,62.04446524595998,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236043,-0.3866058849555764,peer,metac-grok-2-1212,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236043,-1.2249489558343063,spot_peer,metac-grok-2-1212,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236043,0.0149008362621457,relative_legacy,metac-grok-2-1212,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236043,39.30711148598363,baseline,metac-grok-2-1212,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236045,-1.2249489558343063,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236045,25.180485073029757,baseline,metac-Gemini-Exp-1206,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236045,-0.0066546783887053,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236045,-0.3945552986309634,peer,metac-Gemini-Exp-1206,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236045,48.54268271702416,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236047,-59.51826019910749,spot_peer,metac-Llama-3.1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236047,-25.939628910543185,baseline,metac-Llama-3.1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236047,-47.73238724597288,peer,metac-Llama-3.1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236047,-0.6349840489163265,relative_legacy,metac-Llama-3.1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,237476,-0.740284060010501,relative_legacy,NextWorldLab,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,237476,-39.11753176373844,baseline,NextWorldLab,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,237476,-51.45731728297583,spot_baseline,NextWorldLab,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,237476,-73.42778026416195,spot_peer,NextWorldLab,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,237476,-55.35122859280323,peer,NextWorldLab,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,239758,67.83875372202965,baseline,metac-perplexity,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,239758,20.831844548409613,peer,metac-perplexity,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,239758,0.3056942904538053,relative_legacy,metac-perplexity,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,239758,24.95363732342676,spot_peer,metac-perplexity,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,239759,75.44539092141581,baseline,metac-exa,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,239759,25.7117663915736,peer,metac-exa,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,239759,0.37287368840276,relative_legacy,metac-exa,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,239759,30.58563953908046,spot_peer,metac-exa,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,240414,-0.3926420897348616,peer,minefrac1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,240414,48.54268271702416,spot_baseline,minefrac1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,240414,-1.2249489558343063,spot_peer,minefrac1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,240414,-0.0066622796177548,relative_legacy,minefrac1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,240414,25.312121584187164,baseline,minefrac1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,240416,58.496250072115615,spot_baseline,metac-o1-preview,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,240416,5.96180849072314,spot_peer,metac-o1-preview,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,240416,0.0954700575705173,relative_legacy,metac-o1-preview,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,240416,5.503528644286949,peer,metac-o1-preview,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,240416,46.60219515683542,baseline,metac-o1-preview,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,241715,0.2526171891611559,spot_peer,CatrachoCaster,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,241715,7.294614793474242,baseline,CatrachoCaster,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,241715,0.0364257387679296,peer,CatrachoCaster,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,241715,0.0,relative_legacy,CatrachoCaster,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,241715,50.58909297299573,spot_baseline,CatrachoCaster,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,246118,47.962383292600784,baseline,laylaps,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,246118,0.2021157130673119,relative_legacy,laylaps,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,246118,84.79969065549501,spot_baseline,laylaps,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,246118,24.95363732342676,spot_peer,laylaps,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,246118,14.499041182912649,peer,laylaps,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,250015,-10.77126560262464,peer,metac-deepseek-r1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,250015,17.31707151391598,baseline,metac-deepseek-r1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,250015,-0.1307622359042646,relative_legacy,metac-deepseek-r1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,250015,-17.282311437840374,spot_peer,metac-deepseek-r1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34185,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:24:00.714663+00,250015,26.303440583379377,spot_baseline,metac-deepseek-r1,True,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34671 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,185690,63.72473786522808,spot_peer,annabot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,185690,0.75477736206888,relative_legacy,annabot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,185690,-30.79299488463629,spot_baseline,annabot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,185690,-26.948285255548114,baseline,annabot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,185690,61.69947827935373,peer,annabot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,185699,-283.65012677171205,spot_baseline,MWG,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,185699,-1.0236647486689332,relative_legacy,MWG,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,185699,-75.84521003346266,peer,MWG,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,185699,-183.8759364029777,baseline,MWG,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,185699,-118.55315850885276,spot_peer,MWG,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,189869,0.3793096624121024,relative_legacy,VeritasAI,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,189869,-73.69655941662063,spot_baseline,VeritasAI,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,189869,-66.70227370480417,baseline,VeritasAI,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,189869,37.6716041649842,peer,VeritasAI,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,189869,32.7967136822588,spot_peer,VeritasAI,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,190710,-5.243327403600697,peer,Bot_Pepa,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,190710,-132.19280948873623,spot_baseline,Bot_Pepa,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,190710,-0.0614161737458163,relative_legacy,Bot_Pepa,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,190710,-95.56593144531026,baseline,Bot_Pepa,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,190710,-9.37165756099028,spot_peer,Bot_Pepa,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,191935,-32.5785868976681,spot_peer,pgodzinai,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,191935,-164.38561897747246,spot_baseline,pgodzinai,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,191935,-17.035228704321902,peer,pgodzinai,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,191935,-0.1903728487909652,relative_legacy,pgodzinai,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,191935,-91.2029185516466,baseline,pgodzinai,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,191975,1.9695683747429773,peer,jkraybill_bot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,191975,-108.11049681437268,spot_baseline,jkraybill_bot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,191975,7.988633055871764,spot_peer,jkraybill_bot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,191975,-23.959290371987684,baseline,jkraybill_bot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,191975,0.0533708695451455,relative_legacy,jkraybill_bot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,192418,-564.3856189774725,spot_baseline,InstitutPelFutur,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,192418,-543.106508982108,baseline,InstitutPelFutur,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,192418,-319.6721517679757,peer,InstitutPelFutur,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,192418,-4.362084222578984,relative_legacy,InstitutPelFutur,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,192418,-320.92781401060535,spot_peer,InstitutPelFutur,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,192924,23.747530475337317,spot_peer,acm_bot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,192924,-86.24964762500649,spot_baseline,acm_bot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,192924,0.2824784278129844,relative_legacy,acm_bot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,192924,24.391141959516265,peer,acm_bot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,192924,-73.45487807197425,baseline,acm_bot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,218666,38.294386956899054,spot_baseline,GreeneiBot2,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,218666,27.152466630900395,baseline,GreeneiBot2,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,218666,82.356575118497,peer,GreeneiBot2,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,218666,1.1474157936378246,relative_legacy,GreeneiBot2,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,218666,113.5279707583858,spot_peer,GreeneiBot2,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,220077,56.52673911155789,baseline,mmBot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,220077,151.98480434838265,peer,mmBot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,220077,1.6318884449151403,relative_legacy,mmBot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,220077,128.09094979717094,spot_peer,mmBot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,222631,17.395217535736823,baseline,Grizeu_Bot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,222631,26.303440583379377,spot_baseline,Grizeu_Bot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,222631,104.88402046049312,spot_peer,Grizeu_Bot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,222631,1.002126301248048,relative_legacy,Grizeu_Bot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,222631,70.93124571513384,peer,Grizeu_Bot,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236037,-132.19280948873623,spot_baseline,metac-o1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236037,-0.0790660398645106,relative_legacy,metac-o1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236037,-5.052444038681269,peer,metac-o1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236037,-104.62237461416623,baseline,metac-o1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236037,-9.37165756099028,spot_peer,metac-o1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236038,32.7967136822588,spot_peer,metac-gpt-4o,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236038,-59.78664900438954,baseline,metac-gpt-4o,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236038,0.3881254349753611,relative_legacy,metac-gpt-4o,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236038,29.69372121485681,peer,metac-gpt-4o,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236038,-73.69655941662063,spot_baseline,metac-gpt-4o,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236040,13.835271775687524,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236040,0.1757989428862516,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236040,13.974502032437645,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236040,-80.70776779345545,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236040,-100.0,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236041,13.987519984276627,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236041,13.835271775687524,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236041,0.1756543587657936,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236041,-100.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236041,-80.76131616502349,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236043,-132.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236043,-9.37165756099028,spot_peer,metac-grok-2-1212,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236043,-0.0841308937970055,relative_legacy,metac-grok-2-1212,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236043,-4.945787181990786,peer,metac-grok-2-1212,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236043,-106.66899190602716,baseline,metac-grok-2-1212,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236045,-18.73316107465224,peer,metac-Gemini-Exp-1206,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236045,-87.17666154524834,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236045,-173.6965594166206,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236045,-39.29059309597552,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236045,-0.2082964522450118,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236047,-132.19280948873623,spot_baseline,metac-Llama-3.1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236047,-9.37165756099028,spot_peer,metac-Llama-3.1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236047,-0.0817431989230522,relative_legacy,metac-Llama-3.1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236047,-4.977448098113344,peer,metac-Llama-3.1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,236047,-105.79106780789267,baseline,metac-Llama-3.1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,237476,20.44956662003297,baseline,NextWorldLab,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,237476,84.3125091752386,peer,NextWorldLab,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,237476,1.153258798583629,relative_legacy,NextWorldLab,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,237476,104.88402046049312,spot_peer,NextWorldLab,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,237476,26.303440583379377,spot_baseline,NextWorldLab,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,239758,13.595817743033551,peer,metac-perplexity,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,239758,13.835271775687524,spot_peer,metac-perplexity,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,239758,-100.0,spot_baseline,metac-perplexity,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,239758,-79.55786559516558,baseline,metac-perplexity,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,239758,0.1758359684331345,relative_legacy,metac-perplexity,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,239759,-124.29699544730556,peer,metac-exa,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,239759,-272.88752929569387,baseline,metac-exa,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,239759,-332.1928094887362,spot_baseline,metac-exa,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,239759,-153.5462711174589,spot_peer,metac-exa,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,239759,-1.7340923783539768,relative_legacy,metac-exa,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,240414,-68.51922930938242,baseline,minefrac1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,240414,-3.819295821525488,peer,minefrac1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,240414,-1.880688019200277e-05,relative_legacy,minefrac1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,240414,-9.37165756099028,spot_peer,minefrac1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,240414,-132.19280948873623,spot_baseline,minefrac1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,240416,-62.59694890389974,peer,metac-o1-preview,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,240416,-232.19280948873623,spot_baseline,metac-o1-preview,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,240416,-81.4589643392246,spot_peer,metac-o1-preview,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,240416,-0.8712690444838503,relative_legacy,metac-o1-preview,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,240416,-183.91012796379425,baseline,metac-o1-preview,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,241715,0.1427655405468411,relative_legacy,CatrachoCaster,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,241715,8.953633561245915,peer,CatrachoCaster,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,241715,62.71564921724403,spot_peer,CatrachoCaster,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,241715,-4.596023848380903,baseline,CatrachoCaster,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,241715,-32.19280948873623,spot_baseline,CatrachoCaster,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,246118,-32.19280948873623,spot_baseline,laylaps,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,246118,62.71564921724403,spot_peer,laylaps,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,246118,0.5510748503756411,relative_legacy,laylaps,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,246118,36.713726024866965,peer,laylaps,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,246118,-18.242049772761835,baseline,laylaps,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,250015,9.9821507789624,peer,metac-deepseek-r1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,250015,0.1669319445495499,relative_legacy,metac-deepseek-r1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,250015,13.835271775687524,spot_peer,metac-deepseek-r1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,250015,-100.0,spot_baseline,metac-deepseek-r1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34186,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:24:00.751971+00,250015,-62.87678805459987,baseline,metac-deepseek-r1,True,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,0.9,2025-02-03 09:00:00+00,34672 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,185690,-176.02983333536824,baseline,annabot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,185690,-194.41405876165533,peer,annabot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,185690,-195.6011502714073,spot_baseline,annabot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,185690,-6.197468241617527,relative_legacy,annabot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,185690,-217.10599858406908,spot_peer,annabot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,189869,40.05521879896874,peer,VeritasAI,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,189869,45.49823292782751,baseline,VeritasAI,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,189869,51.48097085905792,spot_baseline,VeritasAI,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,189869,41.20712805232637,spot_peer,VeritasAI,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,189869,0.1799853446378826,relative_legacy,VeritasAI,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,190710,86.55374863166415,spot_peer,Bot_Pepa,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,190710,94.85599923929404,spot_baseline,Bot_Pepa,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,190710,1.0874967925670838,relative_legacy,Bot_Pepa,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,190710,67.05840979461748,peer,Bot_Pepa,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,190710,71.59830706077248,baseline,Bot_Pepa,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,191935,-129.49934785828972,baseline,pgodzinai,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,191935,-142.29746505490786,peer,pgodzinai,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,191935,-4.569816307239531,relative_legacy,pgodzinai,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,191935,-195.6011502714073,spot_baseline,pgodzinai,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,191935,-217.10599858406908,spot_peer,pgodzinai,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,192418,0.0,spot_baseline,InstitutPelFutur,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,192418,-3.683914058075516,peer,InstitutPelFutur,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,192418,0.0,baseline,InstitutPelFutur,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,192418,-12.613886936688727,spot_peer,InstitutPelFutur,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,192418,-1.0845170301149911,relative_legacy,InstitutPelFutur,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,192924,0.0,baseline,acm_bot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,192924,0.0,spot_baseline,acm_bot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,192924,-12.613886936688727,spot_peer,acm_bot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,192924,-1.12723744021358,relative_legacy,acm_bot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,192924,-7.502324078290822,peer,acm_bot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,218666,0.0,spot_baseline,GreeneiBot2,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,218666,0.0,baseline,GreeneiBot2,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,218666,-0.940853517684761,relative_legacy,GreeneiBot2,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,218666,-7.727534032627411,peer,GreeneiBot2,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,218666,-12.613886936688727,spot_peer,GreeneiBot2,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,220077,-41.660115622657365,baseline,mmBot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,220077,-49.79035334552929,peer,mmBot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,220077,-2.257306460336773,relative_legacy,mmBot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,220077,-56.41376457299916,spot_peer,mmBot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,220077,-41.89553513038389,spot_baseline,mmBot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,222631,-12.613886936688727,spot_peer,Grizeu_Bot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,222631,-0.8725173908076662,relative_legacy,Grizeu_Bot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,222631,-6.847959196135128,peer,Grizeu_Bot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,222631,0.0,baseline,Grizeu_Bot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,222631,0.0,spot_baseline,Grizeu_Bot,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236037,-1.1167111270831684,relative_legacy,metac-o1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236037,-9.658919195750716,peer,metac-o1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236037,0.0100708447584145,baseline,metac-o1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236037,0.0,spot_baseline,metac-o1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236037,-12.613886936688727,spot_peer,metac-o1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236038,75.29995798174879,peer,metac-gpt-4o,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236038,80.66728507391299,baseline,metac-gpt-4o,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236038,1.209844271593595,relative_legacy,metac-gpt-4o,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236038,86.55374863166415,spot_peer,metac-gpt-4o,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236038,94.85599923929404,spot_baseline,metac-gpt-4o,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236040,43.87098773015376,baseline,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236040,36.56411275397196,peer,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236040,0.1464202773300577,relative_legacy,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236040,41.20712805232637,spot_peer,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236040,51.48097085905792,spot_baseline,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236041,0.0141206565688939,baseline,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236041,0.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236041,-12.613886936688727,spot_peer,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236041,-1.119503442198472,relative_legacy,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236041,-9.62466840546286,peer,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236043,60.1986402262968,spot_baseline,metac-grok-2-1212,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236043,0.3610166476266158,relative_legacy,metac-grok-2-1212,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236043,50.3210551180761,spot_peer,metac-grok-2-1212,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236043,44.42378675756588,peer,metac-grok-2-1212,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236043,51.32251685736114,baseline,metac-grok-2-1212,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236045,0.864802067221124,relative_legacy,metac-Gemini-Exp-1206,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236045,67.29601985173117,baseline,metac-Gemini-Exp-1206,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236045,61.50000651819059,peer,metac-Gemini-Exp-1206,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236045,72.98839068236806,spot_peer,metac-Gemini-Exp-1206,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236045,81.88043946170649,spot_baseline,metac-Gemini-Exp-1206,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236047,73.2227887564035,baseline,metac-Llama-3.1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236047,86.13832988705518,spot_baseline,metac-Llama-3.1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236047,77.43982158159625,spot_peer,metac-Llama-3.1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236047,0.9954529305094596,relative_legacy,metac-Llama-3.1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,236047,67.4569965585773,peer,metac-Llama-3.1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,237476,-12.613886936688727,spot_peer,NextWorldLab,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,237476,0.0,spot_baseline,NextWorldLab,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,237476,0.0,baseline,NextWorldLab,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,237476,-9.101855305912224,peer,NextWorldLab,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,237476,-1.0570838922258252,relative_legacy,NextWorldLab,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,239758,0.0058322924401806,baseline,metac-perplexity,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,239758,0.0,spot_baseline,metac-perplexity,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,239758,-12.613886936688727,spot_peer,metac-perplexity,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,239758,-1.1116558328538426,relative_legacy,metac-perplexity,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,239758,-9.630393786002474,peer,metac-perplexity,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,239759,0.0,spot_baseline,metac-exa,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,239759,0.0,baseline,metac-exa,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,239759,-9.621874320099204,peer,metac-exa,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,239759,-1.1096145813231837,relative_legacy,metac-exa,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,239759,-12.613886936688727,spot_peer,metac-exa,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,240414,-0.3182383764843119,relative_legacy,minefrac1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,240414,0.0,baseline,minefrac1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,240414,-3.0194494357218047,peer,minefrac1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,240414,-12.613886936688727,spot_peer,minefrac1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,240414,0.0,spot_baseline,minefrac1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,240416,60.1986402262968,spot_baseline,metac-o1-preview,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,240416,0.3585081541399636,relative_legacy,metac-o1-preview,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,240416,43.9304331369701,peer,metac-o1-preview,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,240416,50.84723123243371,baseline,metac-o1-preview,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,240416,50.3210551180761,spot_peer,metac-o1-preview,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,246118,15.556666935084351,baseline,laylaps,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,246118,60.1986402262968,spot_baseline,laylaps,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,246118,50.3210551180761,spot_peer,laylaps,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,246118,0.1104580132371564,relative_legacy,laylaps,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,246118,13.089601553387183,peer,laylaps,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,250015,15.687157235664056,baseline,metac-deepseek-r1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,250015,69.31471805599453,spot_baseline,metac-deepseek-r1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,250015,59.85150012185101,spot_peer,metac-deepseek-r1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,250015,0.1537920165635548,relative_legacy,metac-deepseek-r1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34187,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:24:00.790785+00,250015,13.542245122172837,peer,metac-deepseek-r1,True,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,2025-02-03 17:00:00+00,34673 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,185690,-187.72959987400225,spot_baseline,annabot,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,185690,-129.05508376356923,spot_peer,annabot,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,185690,-167.81440628103343,baseline,annabot,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,185690,-117.68724012036247,peer,annabot,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,185690,-4.095138624383804,relative_legacy,annabot,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,189869,-76.42339067812371,peer,VeritasAI,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,189869,-141.660663869489,spot_baseline,VeritasAI,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,189869,-79.9148853587551,spot_peer,VeritasAI,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,189869,-2.9908853582798347,relative_legacy,VeritasAI,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,189869,-130.15667833807515,baseline,VeritasAI,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,191935,61.6451186415372,spot_peer,pgodzinai,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,191935,-8.948160119214954,spot_baseline,pgodzinai,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,191935,0.2877562309908392,relative_legacy,pgodzinai,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,191935,-5.69378170562937,baseline,pgodzinai,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,191935,38.07430629146916,peer,pgodzinai,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,192418,-19.78905293175877,baseline,InstitutPelFutur,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,192418,49.565017002929125,spot_peer,InstitutPelFutur,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,192418,0.1806099684054293,relative_legacy,InstitutPelFutur,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,192418,43.65831400787039,peer,InstitutPelFutur,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,192418,-20.27325540541003,spot_baseline,InstitutPelFutur,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,218666,81.77387207545263,spot_peer,GreeneiBot2,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,218666,55.13294134657445,peer,GreeneiBot2,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,218666,6.805251554012779,baseline,GreeneiBot2,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,218666,9.92254622508075,spot_baseline,GreeneiBot2,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,218666,0.6919697146833595,relative_legacy,GreeneiBot2,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,220077,95.50788364993326,peer,mmBot,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,220077,25.632879368409625,baseline,mmBot,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,220077,25.788864533501577,spot_baseline,mmBot,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,220077,1.4779385162564522,relative_legacy,mmBot,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,220077,98.69794493776818,spot_peer,mmBot,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,222631,-2.4200057731747737,relative_legacy,Grizeu_Bot,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,222631,-81.76476827364971,spot_peer,Grizeu_Bot,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,222631,-143.3949291022027,spot_baseline,Grizeu_Bot,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,222631,-102.11851242633377,baseline,Grizeu_Bot,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,222631,-59.51619758811479,peer,Grizeu_Bot,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,236037,-1.8932482257484904,relative_legacy,metac-o1,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,236037,-104.59319908392166,spot_baseline,metac-o1,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,236037,-90.04960154978923,baseline,metac-o1,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,236037,-35.60273094992625,peer,metac-o1,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,236037,-40.37625625414996,spot_peer,metac-o1,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,236038,-107.0033142859267,spot_baseline,metac-gpt-4o,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,236038,-42.94704580295535,spot_peer,metac-gpt-4o,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,236038,-92.80003235941244,baseline,metac-gpt-4o,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,236038,-38.12959104996435,peer,metac-gpt-4o,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,236038,-1.965650114990629,relative_legacy,metac-gpt-4o,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,236041,2.8942410487314725e-14,baseline,metac-claude-3-5-sonnet-20240620,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,236041,62.40815417212632,peer,metac-claude-3-5-sonnet-20240620,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,236041,0.7133023014215907,relative_legacy,metac-claude-3-5-sonnet-20240620,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,236041,71.18982276869987,spot_peer,metac-claude-3-5-sonnet-20240620,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,236041,3.3306690738754684e-14,spot_baseline,metac-claude-3-5-sonnet-20240620,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,237476,86.53286663279485,spot_peer,NextWorldLab,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,237476,11.44081985636202,baseline,NextWorldLab,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,237476,68.33198858216036,peer,NextWorldLab,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,237476,0.9316783217348512,relative_legacy,NextWorldLab,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,237476,14.384103622589084,spot_baseline,NextWorldLab,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,239758,-54.9306144334073,spot_baseline,metac-perplexity,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,239758,12.597167373065377,spot_peer,metac-perplexity,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,239758,-0.6593951267941308,relative_legacy,metac-perplexity,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,239758,9.389320678735658,peer,metac-perplexity,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,239758,-44.7145375401754,baseline,metac-perplexity,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,239759,-14.646865894451498,spot_peer,metac-exa,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,239759,-68.46783369264914,baseline,metac-exa,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,239759,-13.110166259811011,peer,metac-exa,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,239759,-1.2850700949773235,relative_legacy,metac-exa,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,239759,-80.47189562170436,spot_baseline,metac-exa,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,240414,-1.0797008263131809,relative_legacy,minefrac1,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,240414,-26.12169599999857,peer,minefrac1,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,240414,-46.30447481898779,baseline,minefrac1,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,240414,-141.660663869489,spot_baseline,minefrac1,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,240414,-79.9148853587551,spot_peer,minefrac1,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,240416,8.159319552380435,baseline,metac-o1-preview,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,240416,86.53286663279485,spot_peer,metac-o1-preview,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,240416,14.384103622589084,spot_baseline,metac-o1-preview,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,240416,0.6287415425735795,relative_legacy,metac-o1-preview,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,240416,47.95269957507517,peer,metac-o1-preview,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,246118,-53.86459565764292,peer,laylaps,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,246118,-93.162279332772,baseline,laylaps,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,246118,-141.660663869489,spot_baseline,laylaps,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,246118,-79.9148853587551,spot_peer,laylaps,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34188,"What ranking will RedNote have in the Apple app store in the Social Networking category on February 17, 2025?",2025-02-01 05:24:00.832574+00,246118,-2.2143063024416305,relative_legacy,laylaps,True,27.0,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34674 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,185690,8.401275997154837,peer,annabot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,185690,60.78844916119508,spot_baseline,annabot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,185690,8.873109278655908,spot_peer,annabot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,185690,0.0838210495763005,relative_legacy,annabot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,185690,55.05332972851766,baseline,annabot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,185699,-0.0022971794213451,relative_legacy,MWG,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,185699,1.791305502015541,peer,MWG,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,185699,39.941996051899054,baseline,MWG,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,185699,2.257129515913644,spot_peer,MWG,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,185699,55.00720983068244,spot_baseline,MWG,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,189869,3.950645068449048,peer,VeritasAI,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,189869,56.4873062249703,spot_baseline,VeritasAI,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,189869,3.950933773390744,spot_peer,VeritasAI,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,189869,0.0235072668144882,relative_legacy,VeritasAI,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,189869,51.841903777101095,baseline,VeritasAI,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,190710,39.64035651207672,baseline,Bot_Pepa,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,190710,-2.1661390496348147,peer,Bot_Pepa,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,190710,50.4167957103351,spot_baseline,Bot_Pepa,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,190710,-2.996084403554263,spot_peer,Bot_Pepa,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,190710,-0.0566449253266572,relative_legacy,Bot_Pepa,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,191935,29.30984774397252,baseline,pgodzinai,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,191935,-10.118719554047711,spot_peer,pgodzinai,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,191935,-6.586580788177869,peer,pgodzinai,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,191935,-0.1174519598671198,relative_legacy,pgodzinai,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,191935,44.19282587584204,spot_baseline,pgodzinai,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,191975,54.863447181765295,spot_baseline,jkraybill_bot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,191975,2.0926092942971377,spot_peer,jkraybill_bot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,191975,18.03811158835103,baseline,jkraybill_bot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,191975,0.6880121811576208,peer,jkraybill_bot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,191975,-0.0084216740292217,relative_legacy,jkraybill_bot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,192418,-0.0166321569294983,relative_legacy,InstitutPelFutur,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,192418,0.5353272293291798,spot_peer,InstitutPelFutur,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,192418,53.50264792820728,spot_baseline,InstitutPelFutur,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,192418,1.2028422644305337,peer,InstitutPelFutur,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,192418,51.95727765184709,baseline,InstitutPelFutur,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,192924,3.605976672347559,peer,acm_bot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,192924,8.873109278655908,spot_peer,acm_bot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,192924,60.78844916119508,spot_baseline,acm_bot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,192924,24.6500286736418,baseline,acm_bot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,192924,0.0301997430664619,relative_legacy,acm_bot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,218666,70.09827121356034,spot_baseline,GreeneiBot2,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,218666,0.1803149759185927,relative_legacy,GreeneiBot2,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,218666,19.52715606203279,spot_peer,GreeneiBot2,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,218666,53.19555650708982,baseline,GreeneiBot2,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,218666,15.025522704753838,peer,GreeneiBot2,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,220077,-0.1385372054995098,relative_legacy,mmBot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,220077,-8.528357873757235,spot_peer,mmBot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,220077,45.58253107832961,spot_baseline,mmBot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,220077,44.29578924209462,baseline,mmBot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,220077,-8.24914624297433,peer,mmBot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,222631,53.5026479282073,spot_baseline,Grizeu_Bot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,222631,0.5353272293292027,spot_peer,Grizeu_Bot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,222631,-0.0195881405655567,relative_legacy,Grizeu_Bot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,222631,0.5358647408164615,peer,Grizeu_Bot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,222631,38.709956442695336,baseline,Grizeu_Bot,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236037,44.47700187233384,baseline,metac-o1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236037,-1.2154142619605053,spot_peer,metac-o1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236037,51.97279809039444,spot_baseline,metac-o1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236037,-0.7835376786518663,peer,metac-o1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236037,-0.0383531567026001,relative_legacy,metac-o1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236038,-1.2154142619605053,spot_peer,metac-gpt-4o,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236038,51.97279809039444,spot_baseline,metac-gpt-4o,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236038,-0.0383417848162677,relative_legacy,metac-gpt-4o,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236038,44.93170469999278,baseline,metac-gpt-4o,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236038,-0.7881307593549605,peer,metac-gpt-4o,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236040,48.83339475228357,baseline,metac-claude-3-5-sonnet-latest,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236040,3.950933773390744,spot_peer,metac-claude-3-5-sonnet-latest,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236040,56.4873062249703,spot_baseline,metac-claude-3-5-sonnet-latest,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236040,0.0235103482182959,relative_legacy,metac-claude-3-5-sonnet-latest,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236040,3.709215696100496,peer,metac-claude-3-5-sonnet-latest,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236041,48.83373106676062,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236041,42.3131072193229,baseline,metac-claude-3-5-sonnet-20240620,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236041,-0.0813749503182366,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236041,-3.925133619875968,peer,metac-claude-3-5-sonnet-20240620,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236041,-4.8077242693740025,spot_peer,metac-claude-3-5-sonnet-20240620,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236043,42.33879400745519,baseline,metac-grok-2-1212,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236043,-4.807724269373978,spot_peer,metac-grok-2-1212,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236043,-3.928088787395146,peer,metac-grok-2-1212,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236043,-0.08139064089608,relative_legacy,metac-grok-2-1212,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236043,48.83373106676064,spot_baseline,metac-grok-2-1212,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236045,32.3380033075497,baseline,metac-Gemini-Exp-1206,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236045,-0.2135894116293851,relative_legacy,metac-Gemini-Exp-1206,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236045,38.70953745837968,spot_baseline,metac-Gemini-Exp-1206,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236045,-16.39372792668903,spot_peer,metac-Gemini-Exp-1206,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236045,-13.516309890822512,peer,metac-Gemini-Exp-1206,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236047,45.58253107832961,spot_baseline,metac-Llama-3.1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236047,39.23249903586117,baseline,metac-Llama-3.1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236047,-8.528357873757235,spot_peer,metac-Llama-3.1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236047,-0.1254395303288104,relative_legacy,metac-Llama-3.1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,236047,-7.120439230933146,peer,metac-Llama-3.1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,237476,0.0779338199816805,relative_legacy,NextWorldLab,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,237476,50.38242928526286,baseline,NextWorldLab,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,237476,7.632081961073677,peer,NextWorldLab,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,237476,8.873109278655908,spot_peer,NextWorldLab,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,237476,60.78844916119508,spot_baseline,NextWorldLab,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,239758,42.82838164812048,baseline,metac-perplexity,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,239758,-2.996084403554287,spot_peer,metac-perplexity,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,239758,50.41679571033508,spot_baseline,metac-perplexity,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,239758,-0.0591183693031977,relative_legacy,metac-perplexity,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,239758,-2.30024202920856,peer,metac-perplexity,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,239759,5.617635996978371,spot_peer,metac-exa,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,239759,57.94372005826531,spot_baseline,metac-exa,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,239759,0.0428473899127733,relative_legacy,metac-exa,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,239759,5.114865625323655,peer,metac-exa,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,239759,49.70801413676256,baseline,metac-exa,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,240414,-0.0049861649398948,relative_legacy,minefrac1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,240414,33.927744642054485,baseline,minefrac1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,240414,2.257129515913644,spot_peer,minefrac1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,240414,55.00720983068244,spot_baseline,minefrac1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,240414,1.5020046147896935,peer,minefrac1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,240416,46.663415595119055,baseline,metac-o1-preview,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,240416,2.185062326558007,peer,metac-o1-preview,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,240416,0.0026442822288458,relative_legacy,metac-o1-preview,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,240416,2.257129515913644,spot_peer,metac-o1-preview,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,240416,55.00720983068244,spot_baseline,metac-o1-preview,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,246118,0.5353272293291798,spot_peer,laylaps,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,246118,53.50264792820728,spot_baseline,laylaps,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,246118,34.899274584880885,baseline,laylaps,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,246118,0.4790417098694381,peer,laylaps,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,246118,-0.0196945308807078,relative_legacy,laylaps,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,250015,-8.528357873757235,spot_peer,metac-deepseek-r1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,250015,45.58253107832961,spot_baseline,metac-deepseek-r1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,250015,-0.1159252082887971,relative_legacy,metac-deepseek-r1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,250015,-6.459968987811261,peer,metac-deepseek-r1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34189,Who will win the Liberal Party of Canada's leadership election to replace Justin Trudeau as Prime Minister of Canada?,2025-02-01 05:24:00.871941+00,250015,35.40581057853905,baseline,metac-deepseek-r1,True,Mark Carney,2025-02-03 16:00:00+00,2025-02-03 16:00:00+00,1.0,2025-02-03 16:00:00+00,34675 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,185690,-0.0675282572130327,relative_legacy,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,185690,9.037144141110412,baseline,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,185690,3.720008676670429,spot_peer,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,185690,14.509047680241984,spot_baseline,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,185690,1.5901871938637744,peer,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,187708,5.582006306557771,peer,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,187708,10.826274756842771,spot_peer,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,187708,0.0,relative_legacy,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,187708,24.36690809668629,spot_baseline,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,187708,12.531061711506553,baseline,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,189869,23.97645336682587,baseline,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,189869,6.145318053802276,peer,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,189869,-0.0184896869142697,relative_legacy,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,189869,12.222268871385385,spot_peer,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,190710,-0.464195606373478,relative_legacy,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,190710,-29.94610237186369,spot_peer,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,190710,-25.15362779206089,baseline,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,190710,-32.19280948873623,spot_baseline,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,190710,-25.95613565164235,peer,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,191026,-134.1903349824684,peer,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,191026,-180.88105165148576,baseline,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,191026,-1.942075467380709,relative_legacy,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,191026,-246.2080227065665,spot_peer,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,191026,-332.1928094887361,spot_baseline,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,191935,43.43314648622055,spot_peer,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,191935,69.59938131099001,spot_baseline,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,191935,24.49263990797446,peer,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,191935,39.54923804231686,baseline,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,191935,0.2536675127769529,relative_legacy,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,191975,1.980803181316336,baseline,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,191975,0.1318150535163245,peer,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,191975,10.299399332332596,spot_baseline,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,191975,0.6853865578281332,spot_peer,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,191975,-0.0270549429287119,relative_legacy,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,192418,43.15153927705023,baseline,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,192418,0.138640790237736,relative_legacy,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,192418,17.34707037658609,peer,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,192418,44.36066514756145,spot_baseline,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,192418,25.239235738602,spot_peer,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,192924,20.163386116965043,spot_baseline,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,192924,-0.0678307607310468,relative_legacy,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,192924,2.7383297984025603,peer,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,192924,17.827323424139234,baseline,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,192924,7.796068971830618,spot_peer,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,218666,12.54985002818631,peer,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,218666,27.618890301976503,baseline,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,218666,19.258768312662127,spot_peer,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,218666,36.06452024602161,spot_baseline,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,218666,0.0676129655386238,relative_legacy,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,220077,35.173311824168806,peer,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,220077,67.36121702687136,baseline,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,220077,42.14120440637061,spot_peer,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,220077,0.366715292001101,relative_legacy,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,222631,-0.7225619752041441,relative_legacy,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,222631,-73.69655941662059,spot_baseline,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,222631,-53.05448402016224,baseline,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,222631,-44.99046423890442,peer,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,222631,-59.8650379068489,spot_peer,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236037,-0.0136525666911891,relative_legacy,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236037,22.603771164334123,baseline,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236037,6.962637204505126,peer,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236037,12.222268871385385,spot_peer,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236037,26.303440583379377,spot_baseline,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236038,-32.19280948873623,spot_baseline,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236038,-29.776955168721663,peer,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236038,-0.5187688175978232,relative_legacy,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236038,-29.94610237186369,spot_peer,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236038,-27.802445091051418,baseline,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236040,0.0859493990596425,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236040,20.546710469433176,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236040,32.65328974860962,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236040,14.203532452790972,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236041,-0.0137278093030488,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236041,12.222268871385385,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236041,26.303440583379377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236041,6.94905743268479,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236041,22.6927982772796,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236043,12.222268871385385,spot_peer,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236043,26.303440583379377,spot_baseline,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236043,6.953225825440396,peer,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236043,22.675657397485995,baseline,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236043,-0.0137688807960964,relative_legacy,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236045,37.85116232537298,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236045,20.546710469433176,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236045,14.150043004902283,peer,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236045,0.085162749758593,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236045,32.389245911195005,baseline,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236047,28.25393957342025,spot_peer,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236047,41.74629368622576,baseline,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236047,20.85915789660813,peer,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236047,0.1775606519166742,relative_legacy,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,237476,44.8667606204219,peer,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,237476,70.9860617973107,baseline,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,237476,0.5202154657233945,relative_legacy,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,237476,65.24408170835574,spot_peer,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,237476,99.85565831303312,spot_baseline,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,239758,48.54268271702416,spot_baseline,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,239758,28.25393957342025,spot_peer,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,239758,40.6670389425892,baseline,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,239758,0.1726663340077618,relative_legacy,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,239758,20.542070423346964,peer,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,239759,55.32025028076601,baseline,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,239759,31.654201663440737,peer,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,239759,67.80719051126377,spot_baseline,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,239759,0.327477413833977,relative_legacy,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,239759,42.14120440637061,spot_peer,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,240414,-32.19280948873623,spot_baseline,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,240414,-18.704035279067732,peer,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,240414,-29.94610237186369,spot_peer,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,240414,-0.3464763802829878,relative_legacy,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,240414,-19.48854775506522,baseline,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,240416,12.222268871385385,spot_peer,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,240416,22.53106349218091,baseline,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,240416,6.967276683014543,peer,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,240416,-0.0136635420384244,relative_legacy,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,240416,26.303440583379377,spot_baseline,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,246118,12.384384910881453,peer,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,246118,37.85116232537298,spot_baseline,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,246118,0.0783968644794427,relative_legacy,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,246118,24.71121068627601,baseline,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,246118,20.546710469433176,spot_peer,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,250015,-0.6413846825227115,relative_legacy,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,250015,-41.739751894975626,baseline,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,250015,-38.62495134029124,peer,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,250015,-43.83336720481405,spot_peer,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34190,"Will François Bayrou step down or be removed from his position as Prime Minister of France before March 31, 2025?",2025-02-01 05:24:01.090156+00,250015,-51.45731728297583,spot_baseline,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34676 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,185690,-131.4015013244098,spot_baseline,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,185690,-86.32590907215659,baseline,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,185690,-47.89593180377887,peer,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,185690,-71.80357170945773,spot_peer,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,185690,-0.7276716343497527,relative_legacy,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,187708,-0.1936655900849782,relative_legacy,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,187708,-56.064282152574286,spot_baseline,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,187708,-17.407966438432275,spot_peer,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,187708,-10.078040742745484,peer,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,187708,-30.95585400700015,baseline,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,189869,23.99977883526497,baseline,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,189869,42.06386146111937,spot_peer,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,189869,0.4325076802295005,relative_legacy,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,189869,37.00564379365893,peer,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,190710,-30.138969847208244,spot_peer,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,190710,-57.11237013593639,baseline,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,190710,-0.4003985608527178,relative_legacy,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,190710,-73.69655941662059,spot_baseline,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,190710,-24.559646936282384,peer,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,191026,17.619308877801412,peer,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,191026,13.750352374993504,spot_baseline,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,191026,33.000176358032945,spot_peer,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,191026,7.489975308245227,baseline,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,191026,0.1883982727103377,relative_legacy,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,191935,0.2430281857082896,relative_legacy,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,191935,15.48856019781713,spot_baseline,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,191935,10.462411682918985,baseline,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,191935,22.78369561349658,peer,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,191935,34.25521162013444,spot_peer,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,191975,28.154341396064968,spot_peer,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,191975,2.010313825609393,baseline,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,191975,7.89695291953725,peer,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,191975,0.0665397593509145,relative_legacy,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,191975,7.038932789139833,spot_baseline,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,192418,0.2083167999251567,relative_legacy,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,192418,23.07203262841576,spot_peer,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,192418,0.0,spot_baseline,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,192418,0.0,baseline,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,192418,21.44198736077019,peer,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,192924,6.673656130432519,peer,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,192924,17.728981129712576,spot_peer,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,192924,0.0354661938666626,relative_legacy,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,192924,-2.904942667978529,baseline,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,192924,-7.400058144377692,spot_baseline,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,218666,-88.08563628916114,spot_peer,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,218666,-111.22122750924892,baseline,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,218666,-64.74206800657878,peer,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,218666,-153.95195299599888,spot_baseline,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,218666,-0.9583965409083692,relative_legacy,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,220077,-64.38561897747249,spot_baseline,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,220077,-0.414697729199238,relative_legacy,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,220077,-27.6139691057652,peer,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,220077,-63.61447810484112,baseline,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,220077,-23.416207228711283,spot_peer,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,222631,-14.73347075974352,peer,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,222631,-100.0,spot_baseline,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,222631,-49.13079867991188,spot_peer,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,222631,-0.2464296804809663,relative_legacy,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,222631,-29.631648527251347,baseline,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236037,-85.46432230999937,baseline,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236037,-100.0,spot_baseline,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236037,-44.38725571456846,peer,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236037,-49.13079867991188,spot_peer,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236037,-0.663013874803292,relative_legacy,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236038,-1.9841376320960924,peer,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236038,-32.19280948873623,spot_baseline,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236038,-27.631948324734097,baseline,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236038,-0.172087300147739,spot_peer,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236038,-0.0835048294181652,relative_legacy,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236040,-28.14159640296166,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236040,-73.69655941662059,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236040,-30.138969847208244,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236040,-0.4404712433698222,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236040,-63.306258262555744,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236041,42.06386146111937,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236041,26.303440583379377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236041,22.6021280233845,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236041,34.85246222820526,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236041,0.4185715362834168,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236043,0.6096658533083334,relative_legacy,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236043,48.86889665417827,peer,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236043,41.71559614314828,baseline,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236043,58.12122394312544,spot_peer,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236045,-0.2600650239333587,peer,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236045,-0.9360856542004896,baseline,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236045,-0.0035984983229089,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236045,-14.081607365202196,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236045,-51.45731728297583,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236047,-27.49239144771209,baseline,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236047,-1.908661121535735,peer,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236047,-0.0834508584214795,relative_legacy,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236047,-0.172087300147739,spot_peer,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,237476,4.079083395148339,baseline,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,237476,19.140672291863577,peer,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,237476,0.193811421920149,relative_legacy,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,237476,27.157523581882582,spot_peer,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,237476,5.658352836636751,spot_baseline,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,239758,8.618594808706993,peer,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,239758,0.0584116274863277,relative_legacy,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,239758,-15.200309344505014,spot_baseline,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,239758,12.096978914058864,spot_peer,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,239758,-12.694594682324327,baseline,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,239759,39.89099010332691,baseline,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,239759,0.579989181604497,relative_legacy,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,239759,46.85227225596272,peer,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,239759,48.54268271702416,spot_baseline,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,239759,58.12122394312544,spot_peer,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,240414,-0.5262626560512852,peer,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,240414,-18.438546322519457,baseline,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,240414,-0.0618594214618176,relative_legacy,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,240414,-0.172087300147739,spot_peer,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,240414,-32.19280948873623,spot_baseline,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,246118,7.540722942144135,peer,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,246118,12.096978914058864,spot_peer,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,246118,-15.200309344505014,spot_baseline,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,246118,0.0354657284771619,relative_legacy,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,246118,-9.962661607409975,baseline,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,250015,-51.45731728297583,spot_baseline,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,250015,-14.081607365202196,spot_peer,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,250015,-0.2317142077403616,relative_legacy,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,250015,-12.463759970717128,peer,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34191,"Will OpenAI publicly release the full o3 model before March 28, 2025?",2025-02-01 05:24:01.128328+00,250015,-40.85219003186408,baseline,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34677 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,185690,-5.946666556336241,relative_legacy,annabot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,185690,-290.8959223818877,spot_peer,annabot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,185690,-195.6011502714073,spot_baseline,annabot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,185690,-203.10592435219468,peer,annabot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,185690,-136.04463542393,baseline,annabot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,187708,20.53383248769273,peer,twsummerbot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,187708,0.2904832932932971,relative_legacy,twsummerbot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,187708,40.03878400254175,spot_peer,twsummerbot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,187708,121.54461001367092,spot_baseline,twsummerbot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,187708,62.164184046809375,baseline,twsummerbot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,189869,59.6384697988226,baseline,VeritasAI,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,189869,12.611063069317227,peer,VeritasAI,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,189869,103.9720770839918,spot_baseline,VeritasAI,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,189869,21.70222790200698,spot_peer,VeritasAI,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,189869,0.0353834739859803,relative_legacy,VeritasAI,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,190710,0.075146394223402,relative_legacy,Bot_Pepa,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,190710,21.70222790200698,spot_peer,Bot_Pepa,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,190710,80.18038934420484,baseline,Bot_Pepa,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,190710,103.9720770839918,spot_baseline,Bot_Pepa,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,190710,16.717987838120017,peer,Bot_Pepa,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,191026,46.57835384373351,spot_baseline,manticAI,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,191026,-38.18687460956687,spot_peer,manticAI,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,191026,-0.770410634184826,relative_legacy,manticAI,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,191026,-18.569701508230363,peer,manticAI,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,191026,22.567745577405848,baseline,manticAI,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,191935,0.5580164504632044,relative_legacy,pgodzinai,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,191935,84.51412454760249,baseline,pgodzinai,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,191935,33.16471538045792,peer,pgodzinai,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,191935,50.899573359507286,spot_peer,pgodzinai,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,191935,131.9528664807629,spot_baseline,pgodzinai,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,192418,-15.962686866035916,peer,InstitutPelFutur,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,192418,69.31471805599453,spot_baseline,InstitutPelFutur,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,192418,66.72343488004773,baseline,InstitutPelFutur,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,192418,-0.805947997939931,relative_legacy,InstitutPelFutur,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,192418,-14.461972822859726,spot_peer,InstitutPelFutur,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,192924,0.2436082600444072,relative_legacy,acm_bot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,192924,123.68666745668476,spot_baseline,acm_bot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,192924,42.27397437786052,spot_peer,acm_bot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,192924,48.20350508992539,baseline,acm_bot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,192924,16.444359987131712,peer,acm_bot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,218666,28.83405999763087,peer,GreeneiBot2,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,218666,81.50877993785319,baseline,GreeneiBot2,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,218666,0.4315379185112213,relative_legacy,GreeneiBot2,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,218666,43.00410535553021,spot_peer,GreeneiBot2,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,218666,124.38637631028487,spot_baseline,GreeneiBot2,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,220077,1.984383951448866,spot_peer,mmBot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,220077,85.07580996470693,spot_baseline,mmBot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,220077,1.7158224663651005,peer,mmBot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,220077,83.20996728854927,baseline,mmBot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,220077,-0.368180241616328,relative_legacy,mmBot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,222631,-7.719911873898431,peer,Grizeu_Bot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,222631,-0.2895796127465238,relative_legacy,Grizeu_Bot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,222631,5.394026478822791,baseline,Grizeu_Bot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,222631,-50.62617354772643,spot_peer,Grizeu_Bot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,222631,34.657359027997266,spot_baseline,Grizeu_Bot,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236037,4.248500492513691,peer,metac-o1,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236037,75.89043904792484,baseline,metac-o1,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236037,89.58797346140274,spot_baseline,metac-o1,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236037,-0.2743383070541034,relative_legacy,metac-o1,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236037,6.692728469740153,spot_peer,metac-o1,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236038,17.209004098633628,peer,metac-gpt-4o,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236038,21.70222790200698,spot_peer,metac-gpt-4o,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236038,88.83133737060099,baseline,metac-gpt-4o,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236038,0.0765872338380056,relative_legacy,metac-gpt-4o,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236038,103.9720770839918,spot_baseline,metac-gpt-4o,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236040,38.09833115484005,peer,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236040,126.9486935502822,spot_baseline,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236040,45.677827692918726,spot_peer,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236040,0.6438386658642435,relative_legacy,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236040,108.63566003420286,baseline,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236041,17.254498614715317,peer,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236041,21.70222790200698,spot_peer,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236041,103.9720770839918,spot_baseline,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236041,0.0769466852013619,relative_legacy,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236041,89.10370472407112,baseline,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236043,88.99487418741474,baseline,metac-grok-2-1212,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236043,17.22729383263441,peer,metac-grok-2-1212,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236043,0.0765593885926669,relative_legacy,metac-grok-2-1212,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236043,21.70222790200698,spot_peer,metac-grok-2-1212,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236043,103.9720770839918,spot_baseline,metac-grok-2-1212,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236045,0.6482170607687621,baseline,metac-Gemini-Exp-1206,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236045,108.73758607420802,spot_baseline,metac-Gemini-Exp-1206,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236045,26.674932935276104,spot_peer,metac-Gemini-Exp-1206,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236045,0.0014995993198127,relative_legacy,metac-Gemini-Exp-1206,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236045,0.161031329632549,peer,metac-Gemini-Exp-1206,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236047,17.17833945084303,peer,metac-Llama-3.1,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236047,0.077192954712688,relative_legacy,metac-Llama-3.1,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236047,21.70222790200698,spot_peer,metac-Llama-3.1,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236047,103.9720770839918,spot_baseline,metac-Llama-3.1,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,236047,88.23854109137544,baseline,metac-Llama-3.1,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,237476,25.43234129696165,baseline,NextWorldLab,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,237476,-37.08044478893242,peer,NextWorldLab,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,237476,-1.393571750277149,relative_legacy,NextWorldLab,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,237476,-50.62617354772643,spot_peer,NextWorldLab,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,237476,34.657359027997266,spot_baseline,NextWorldLab,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,239758,-0.7544593002921415,relative_legacy,metac-perplexity,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,239758,57.66916806925392,baseline,metac-perplexity,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,239758,-13.441858255038577,peer,metac-perplexity,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,239758,69.31471805599453,spot_baseline,metac-perplexity,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,239758,-14.461972822859726,spot_peer,metac-perplexity,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,239759,103.9720770839918,spot_baseline,metac-exa,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,239759,0.0768337143630216,relative_legacy,metac-exa,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,239759,85.56213199756759,baseline,metac-exa,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,239759,21.70222790200698,spot_peer,metac-exa,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,239759,17.019906198371547,peer,metac-exa,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,240414,103.9720770839918,spot_baseline,minefrac1,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,240414,11.499088078159684,peer,minefrac1,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,240414,0.0321624836981533,relative_legacy,minefrac1,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,240414,54.89669513455319,baseline,minefrac1,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,240414,21.70222790200698,spot_peer,minefrac1,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,240416,42.85692919460686,spot_peer,metac-o1-preview,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,240416,103.84564230497833,baseline,metac-o1-preview,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,240416,124.2453324894,spot_baseline,metac-o1-preview,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,240416,0.5658107363386046,relative_legacy,metac-o1-preview,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,240416,35.04455307210173,peer,metac-o1-preview,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,246118,-9.081859904831074,peer,laylaps,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,246118,-14.461972822859726,spot_peer,laylaps,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,246118,69.31471805599453,spot_baseline,laylaps,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,246118,45.477823467097664,baseline,laylaps,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34192,"How many acres will be reported as burned in California during 2025 on March 4, 2025?",2025-02-01 05:24:01.164365+00,246118,-0.6100948904425912,relative_legacy,laylaps,True,below_lower_bound,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34678 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,185690,0.8515778637965138,relative_legacy,annabot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,185690,14.641581202786098,spot_baseline,annabot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,185690,61.32293129150784,spot_peer,annabot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,185690,10.343216890670144,baseline,annabot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,185690,42.89911671545647,peer,annabot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,187708,5.719004445543314,peer,twsummerbot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,187708,-31.621752703771826,spot_baseline,twsummerbot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,187708,13.131958472176668,spot_peer,twsummerbot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,187708,-0.0298433601298145,relative_legacy,twsummerbot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,187708,-14.64224384139682,baseline,twsummerbot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,189869,-39.2208402426858,spot_peer,VeritasAI,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,189869,-81.8804394700398,spot_baseline,VeritasAI,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,189869,-37.797554698722685,peer,VeritasAI,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,189869,-74.90089174340318,baseline,VeritasAI,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,189869,-1.359419012773047,relative_legacy,VeritasAI,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,190710,-62.763562826815246,baseline,Bot_Pepa,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,190710,-81.8804394700398,spot_baseline,Bot_Pepa,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,190710,-39.2208402426858,spot_peer,Bot_Pepa,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,190710,-1.177479974256057,relative_legacy,Bot_Pepa,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,190710,-30.79335520492344,peer,Bot_Pepa,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,191026,48.25305337368228,spot_peer,manticAI,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,191026,23.05029269971967,peer,manticAI,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,191026,1.0152283108271885,baseline,manticAI,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,191026,0.4354267999520474,relative_legacy,manticAI,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,191026,2.0944984016735577,spot_baseline,manticAI,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,191935,-1.3451052137564985,relative_legacy,pgodzinai,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,191935,-61.93320966374809,baseline,pgodzinai,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,191935,-40.5871813289091,peer,pgodzinai,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,191935,-75.30624645284186,spot_peer,pgodzinai,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,191935,-116.5224294317896,spot_baseline,pgodzinai,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,192418,-0.7392655629865421,relative_legacy,InstitutPelFutur,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,192418,-56.33915942459736,spot_baseline,InstitutPelFutur,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,192418,-12.615340195349926,spot_peer,InstitutPelFutur,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,192418,-15.252691240968382,peer,InstitutPelFutur,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,192418,-53.99509547021244,baseline,InstitutPelFutur,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,192924,-18.242656947303164,baseline,acm_bot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,192924,-1.4094405698515078,peer,acm_bot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,192924,-47.22308044204253,spot_baseline,acm_bot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,192924,-3.119424588521984,spot_peer,acm_bot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,192924,-0.1841578681546848,relative_legacy,acm_bot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,218666,-7.127811195314398,spot_peer,GreeneiBot2,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,218666,-0.4049029263854906,relative_legacy,GreeneiBot2,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,218666,-4.961929742344103,peer,GreeneiBot2,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,218666,-30.79210584830308,baseline,GreeneiBot2,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,218666,-51.07113158456325,spot_baseline,GreeneiBot2,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,220077,1.0754771843629332,relative_legacy,mmBot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,220077,55.7573446384008,peer,mmBot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,220077,55.74360478727191,spot_peer,mmBot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,220077,9.032116922847422,baseline,mmBot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,220077,9.2854277587196,spot_baseline,mmBot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,222631,-15.475321902443069,baseline,Grizeu_Bot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,222631,-47.22308044204253,spot_baseline,Grizeu_Bot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,222631,-0.1470635182140465,relative_legacy,Grizeu_Bot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,222631,-3.119424588521984,spot_peer,Grizeu_Bot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,222631,-1.1038108076068094,peer,Grizeu_Bot,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236037,-12.565721414045267,spot_baseline,metac-o1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236037,0.4090956066803479,relative_legacy,metac-o1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236037,27.80414519249084,peer,metac-o1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236037,-10.571434097524302,baseline,metac-o1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236037,32.98199106564184,spot_peer,metac-o1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236038,-3.119424588521984,spot_peer,metac-gpt-4o,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236038,-2.9323241886574825,peer,metac-gpt-4o,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236038,-40.26686690922404,baseline,metac-gpt-4o,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236038,-47.22308044204253,spot_baseline,metac-gpt-4o,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236038,-0.4304529234086739,relative_legacy,metac-gpt-4o,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236040,-67.49633441887943,spot_baseline,metac-claude-3-5-sonnet-latest,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236040,-24.23739748106041,spot_peer,metac-claude-3-5-sonnet-latest,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236040,-0.9288897529808572,relative_legacy,metac-claude-3-5-sonnet-latest,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236040,-57.53690466806943,baseline,metac-claude-3-5-sonnet-latest,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236040,-21.20719551221251,peer,metac-claude-3-5-sonnet-latest,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236041,-0.4308202205621414,relative_legacy,metac-claude-3-5-sonnet-20240620,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236041,-40.38472627442594,baseline,metac-claude-3-5-sonnet-20240620,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236041,-47.22308044204253,spot_baseline,metac-claude-3-5-sonnet-20240620,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236041,-3.119424588521984,spot_peer,metac-claude-3-5-sonnet-20240620,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236041,-2.942749530193797,peer,metac-claude-3-5-sonnet-20240620,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236043,-67.49633870459472,spot_baseline,metac-grok-2-1212,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236043,-21.222867885196266,peer,metac-grok-2-1212,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236043,-57.57018395300207,baseline,metac-grok-2-1212,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236043,-24.237401945347177,spot_peer,metac-grok-2-1212,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236043,-0.9292794858971912,relative_legacy,metac-grok-2-1212,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236045,-47.22308044204253,spot_baseline,metac-Gemini-Exp-1206,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236045,-0.0276056969964719,relative_legacy,metac-Gemini-Exp-1206,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236045,-0.2115505076218378,peer,metac-Gemini-Exp-1206,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236045,-3.2442314389252576,baseline,metac-Gemini-Exp-1206,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236045,-3.119424588521984,spot_peer,metac-Gemini-Exp-1206,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236047,-0.0819151835724225,relative_legacy,metac-Llama-3.1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236047,9.832605973975136,peer,metac-Llama-3.1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236047,-27.676647975651573,baseline,metac-Llama-3.1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236047,-32.838975390882744,spot_baseline,metac-Llama-3.1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,236047,11.864018173102789,spot_peer,metac-Llama-3.1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,237476,-1.1568801390240788,relative_legacy,NextWorldLab,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,237476,-61.25680894095926,baseline,NextWorldLab,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,237476,-30.123038676823636,peer,NextWorldLab,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,237476,-39.22084024268498,spot_peer,NextWorldLab,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,237476,-81.88043947003901,spot_baseline,NextWorldLab,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,239758,-2.9435062427992835,peer,metac-perplexity,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,239758,-3.119424588521984,spot_peer,metac-perplexity,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,239758,-47.22308044204253,spot_baseline,metac-perplexity,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,239758,-0.4270790844451013,relative_legacy,metac-perplexity,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,239758,-38.97191496696129,baseline,metac-perplexity,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,239759,-33.29155056195275,peer,metac-exa,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,239759,-67.91874169698161,baseline,metac-exa,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,239759,-1.257715496812911,relative_legacy,metac-exa,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,239759,-39.2208402426858,spot_peer,metac-exa,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,239759,-81.8804394700398,spot_baseline,metac-exa,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,240414,-24.63232394282971,baseline,minefrac1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,240414,-11.845084637756116,peer,minefrac1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,240414,-39.2208402426858,spot_peer,minefrac1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,240414,-0.4326213484657186,relative_legacy,minefrac1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,240414,-81.8804394700398,spot_baseline,minefrac1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,240416,32.98199106564184,spot_peer,metac-o1-preview,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,240416,-10.411588087940595,baseline,metac-o1-preview,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,240416,27.364225649803235,peer,metac-o1-preview,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,240416,0.4004940813420002,relative_legacy,metac-o1-preview,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,240416,-12.565721414045267,spot_baseline,metac-o1-preview,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,246118,44.58343518985895,peer,laylaps,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,246118,22.091637613952,spot_baseline,laylaps,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,246118,69.08340671980565,spot_peer,laylaps,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,246118,0.923881821244337,relative_legacy,laylaps,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,246118,14.429596978000571,baseline,laylaps,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,250015,32.98199106564184,spot_peer,metac-deepseek-r1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,250015,-8.496100891171618,baseline,metac-deepseek-r1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,250015,0.2807862285868223,relative_legacy,metac-deepseek-r1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,250015,21.61566083129072,peer,metac-deepseek-r1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34193,"What percent of the European Union's gas storage capacity will be full on February 12, 2025?",2025-02-01 05:24:01.202637+00,250015,-12.565721414045267,spot_baseline,metac-deepseek-r1,True,46.6,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34679 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,185690,15.085187263976556,baseline,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,185690,-11.321580213945712,spot_peer,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,185690,-0.1318306001596492,relative_legacy,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,185690,-7.617931445904047,peer,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,185690,21.03888644454029,spot_baseline,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,187708,2.634998579985928,peer,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,187708,9.02620881207206,baseline,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,187708,0.0211992567451712,relative_legacy,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,187708,16.646589293640915,spot_peer,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,187708,59.83652053236445,spot_baseline,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,189869,24.04652268562579,baseline,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,189869,-7.860838948776598,peer,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,189869,-0.1191693727888587,relative_legacy,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,189869,-7.526504921374548,spot_peer,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,190710,-7.526504921374548,spot_peer,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,190710,26.303440583379377,spot_baseline,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,190710,-0.0440310996113068,relative_legacy,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,190710,8.405297901487407,baseline,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,190710,-1.954954187177116,peer,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,191026,0.2074104144346163,relative_legacy,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,191026,31.116104947603688,spot_peer,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,191026,79.90873060740036,spot_baseline,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,191026,43.53943847297813,baseline,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,191026,17.48277321844777,peer,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,191935,46.46682670034443,spot_baseline,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,191935,7.00873708564195,spot_peer,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,191935,0.0191158645576123,relative_legacy,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,191935,3.618605898282923,peer,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,191935,21.415066609369863,baseline,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,191975,1.3523670767351836,peer,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,191975,6.302966078468639,spot_peer,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,191975,-0.0004455113242869,relative_legacy,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,191975,8.408084085518471,baseline,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,191975,45.48777638106349,spot_baseline,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,192418,40.26485733398324,spot_peer,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,192418,88.30146929711816,baseline,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,192418,39.45872636478182,peer,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,192418,0.4966753673063351,relative_legacy,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,192924,20.44893664456312,baseline,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,192924,53.60529002402098,spot_baseline,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,192924,12.154663041032414,spot_peer,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,192924,0.0463471292667459,relative_legacy,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,192924,5.056048201064838,peer,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,218666,28.28957875206328,baseline,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,218666,7.559661288711206,peer,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,218666,56.55971758542251,spot_baseline,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,218666,0.0687817694517785,relative_legacy,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,218666,14.28443030076064,spot_peer,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,220077,36.594548389704336,baseline,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,220077,-1.3734589056154562,peer,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,220077,0.7979366766732522,spot_peer,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,220077,-0.025398143526164,relative_legacy,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,222631,-63.58214099757399,spot_peer,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,222631,-0.2813981895181297,relative_legacy,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,222631,-19.190957933625057,peer,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,222631,-15.858999891229026,baseline,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236037,8.505165780660317,spot_peer,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236037,48.54268271702416,spot_baseline,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236037,40.56633774979765,baseline,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236037,0.075573819952842,relative_legacy,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236037,7.672148989321779,peer,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236038,-7.526504921374548,spot_peer,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236038,-0.1118661649904559,relative_legacy,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236038,-6.14568533208116,peer,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236038,22.351205769054697,baseline,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236040,32.17841562552211,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236040,1.0654787852910854,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236040,-0.0137182038087256,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236040,0.7979366766732522,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236041,-0.1120070250307011,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236041,22.401276574273663,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236041,-6.181564626318659,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236041,-7.526504921374548,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236041,26.303440583379377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236043,7.747278172237135,peer,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236043,41.28204156879181,baseline,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236043,8.505165780660317,spot_peer,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236043,0.0772156649769587,relative_legacy,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236045,28.6973912825199,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236045,0.0137017362272328,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236045,1.3066194555570552,peer,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236045,3.4846203565628566,baseline,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236047,21.412480535284764,spot_baseline,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236047,-8.974333716778668,peer,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236047,-11.052266295645383,spot_peer,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236047,-0.1512408243941743,relative_legacy,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,236047,17.89840217455305,baseline,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,237476,-2.6206242545017884,peer,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,237476,31.034012061215048,spot_baseline,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,237476,-4.116363347783494,spot_peer,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,237476,-0.0601640972522979,relative_legacy,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,237476,23.712376299807627,baseline,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,239758,67.80719051126377,spot_baseline,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,239758,55.59030964106283,baseline,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,239758,19.174399820866885,peer,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,239758,0.2315561732234847,relative_legacy,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,239758,22.392430613610685,spot_peer,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,239759,63.797254587255466,baseline,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,239759,76.55347463629771,spot_baseline,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,239759,24.7815508439184,peer,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,239759,0.308758070925903,relative_legacy,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,239759,28.6973912825199,spot_peer,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,240414,14.355299381887002,baseline,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,240414,-3.730041552049979,peer,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,240414,-0.0846658341913207,relative_legacy,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,240414,-7.526504921374548,spot_peer,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,240414,26.303440583379377,spot_baseline,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,240416,-52.64292986120645,peer,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,240416,-51.45731728297583,spot_baseline,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,240416,-63.58214099757399,spot_peer,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,240416,-0.7479517666212054,relative_legacy,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,240416,-42.2959557095269,baseline,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,246118,50.157790608128366,baseline,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,246118,76.55347463629771,spot_baseline,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,246118,28.6973912825199,spot_peer,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,246118,0.2380791481761697,relative_legacy,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,246118,19.59031567495059,peer,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,250015,-63.58214099757399,spot_peer,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,250015,-40.20765160611767,peer,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,250015,-32.72167668399759,baseline,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,250015,-51.45731728297583,spot_baseline,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34194,"Will the eighth Starship integrated flight test reach an altitude of 160 kilometers before March 10, 2025?",2025-02-01 05:24:01.239454+00,250015,-0.5834102469298584,relative_legacy,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34680 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,185690,-121.66225790853522,baseline,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,185690,-30.798301113100987,peer,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,185690,-161.26374591640047,spot_baseline,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,185690,-0.4246465210544597,relative_legacy,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,185690,-51.08645316787228,spot_peer,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,187708,0.0239118289119445,relative_legacy,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,187708,-6.7723485698156445,baseline,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,187708,2.1540602981511623,peer,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,187708,-66.20035364849844,spot_baseline,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,187708,17.55200758729482,spot_peer,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,189869,-66.68796297902179,baseline,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,189869,-73.69655941662059,spot_baseline,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,189869,0.325469560985431,relative_legacy,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,189869,27.371917264446484,peer,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,189869,12.139534782012436,spot_peer,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,190710,-60.0632965263152,spot_peer,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,190710,-19.568350353895763,peer,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,190710,-61.86486035732198,baseline,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,190710,-173.6965594166206,spot_baseline,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,190710,-0.273147783439967,relative_legacy,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,191026,-7.400058144377692,spot_baseline,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,191026,0.4940668000220361,relative_legacy,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,191026,-4.033531901828463,baseline,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,191026,36.58868093973823,peer,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,191026,60.00748575893328,spot_peer,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,191935,33.34237337251918,spot_baseline,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,191935,0.7958346737410055,relative_legacy,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,191935,89.42467485798923,spot_peer,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,191935,59.08564953166597,peer,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,191935,20.166604556512063,baseline,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,192418,-164.60141230390116,baseline,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,192418,-36.0631624820227,peer,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,192418,-0.5544293193156781,relative_legacy,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,192418,-60.0632965263152,spot_peer,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,192924,0.4420592334764628,relative_legacy,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,192924,7.596709308019512,baseline,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,192924,20.163386116965043,spot_baseline,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,192924,32.15987902891668,peer,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,192924,79.90907292171549,spot_peer,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,218666,18.903382439001717,spot_baseline,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,218666,78.99931459163692,spot_peer,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,218666,0.508456291178063,relative_legacy,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,218666,37.03453447031709,peer,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,218666,8.2530514365466,baseline,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,220077,-2.056399576778713,relative_legacy,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,220077,-174.50207659590987,spot_peer,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,220077,-332.1928094887361,spot_baseline,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,220077,-317.6493247726345,baseline,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,220077,-153.43785552864472,peer,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,222631,-34.66987433170465,peer,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,222631,-0.4872179083418968,relative_legacy,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,222631,-117.97381329943498,baseline,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,222631,-173.6965594166206,spot_baseline,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,222631,-60.0632965263152,spot_peer,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236037,-173.6965594166206,spot_baseline,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236037,-144.3042097531915,baseline,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236037,-41.06776656900952,peer,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236037,-0.5655361530658433,relative_legacy,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236037,-60.0632965263152,spot_peer,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236038,-100.0,spot_baseline,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236038,-84.61129341692958,baseline,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236038,3.910224952561744,peer,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236038,0.0466931100964367,relative_legacy,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236038,-6.852294050691179,spot_peer,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236040,3.9224113462713577,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236040,-100.0,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236040,-84.6816826711092,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236040,-6.852294050691179,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236040,0.0465083669691102,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236041,0.6212558555356507,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236041,46.211609014515645,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236041,-27.321080745247915,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236041,-32.19280948873623,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236041,42.10641732907295,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236043,82.38366274149945,peer,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236043,84.34236609034008,spot_peer,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236043,22.268199626874296,baseline,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236043,26.303440583379377,spot_baseline,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236043,1.1160518380737374,relative_legacy,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236045,0.045001976289253,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236045,2.405971422268624,baseline,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236045,120.62431340994588,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236045,3.803158187538739,peer,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236047,45.15834312338004,peer,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236047,-26.856614321397927,baseline,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236047,0.6117826354465937,relative_legacy,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236047,42.10641732907295,spot_peer,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,237476,-0.5286032125514221,relative_legacy,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,237476,-60.0632965263152,spot_peer,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,237476,-135.2938987473649,baseline,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,237476,-173.6965594166206,spot_baseline,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,237476,-38.6727783993689,peer,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,239758,-30.096413979254727,spot_peer,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,239758,-132.19280948873626,spot_baseline,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,239758,-108.18543678079462,baseline,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,239758,-15.636636451135852,peer,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,239758,-0.2168012491133124,relative_legacy,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,239759,-30.096413979254727,spot_peer,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,239759,-15.934574649895792,peer,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,239759,-0.2230003753667222,relative_legacy,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,239759,-110.76103793559771,baseline,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,239759,-132.19280948873626,spot_baseline,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,240414,-6.852294050691179,spot_peer,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,240414,0.2966441604677065,peer,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,240414,-58.29663988616731,baseline,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,240414,-100.0,spot_baseline,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,240414,-0.0106654767991795,relative_legacy,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,240416,0.0454672444653884,relative_legacy,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,240416,-81.44492585923956,baseline,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,240416,3.5993280290825744,peer,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,240416,-6.852294050691179,spot_peer,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,240416,-100.0,spot_baseline,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,246118,1.3364471362370889,peer,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,246118,-0.0010948399735371,relative_legacy,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,246118,-100.0,spot_baseline,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,246118,-65.56569958395428,baseline,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,246118,-6.852294050691179,spot_peer,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,250015,-0.0106827218947708,relative_legacy,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,250015,-62.62940659162464,baseline,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,250015,-100.0,spot_baseline,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,250015,0.8327496539885044,peer,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34195,"Will the debt ceiling be raised or suspended in the US before March 17, 2025?",2025-02-01 05:24:01.485736+00,250015,-6.852294050691179,spot_peer,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34681 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,185690,-154.02717067247207,baseline,annabot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,185690,-195.6011502714073,spot_baseline,annabot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,185690,-264.90730485881426,spot_peer,annabot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,185690,-6.230386474033636,relative_legacy,annabot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,185690,-209.19668960733907,peer,annabot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,189869,33.86225333746297,spot_peer,VeritasAI,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,189869,77.73436078790787,baseline,VeritasAI,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,189869,0.2732996288056566,relative_legacy,VeritasAI,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,189869,30.656776232215677,peer,VeritasAI,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,189869,89.58797346140274,spot_baseline,VeritasAI,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,191026,21.62994783043217,spot_peer,manticAI,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,191026,77.91168184105517,spot_baseline,manticAI,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,191026,10.581723855798993,peer,manticAI,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,191026,0.0113227031223192,relative_legacy,manticAI,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,191026,37.78005638023919,baseline,manticAI,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,191935,0.0,spot_baseline,pgodzinai,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,191935,-59.991814098292295,spot_peer,pgodzinai,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,191935,-1.118832178199763,relative_legacy,pgodzinai,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,191935,-30.07061006153733,peer,pgodzinai,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,191935,0.0,baseline,pgodzinai,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,192418,-52.09298676908496,peer,InstitutPelFutur,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,192418,-59.991814098292295,spot_peer,InstitutPelFutur,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,192418,0.0,spot_baseline,InstitutPelFutur,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,192418,-1.9676372041899304,relative_legacy,InstitutPelFutur,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,192418,0.0,baseline,InstitutPelFutur,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,192924,69.31471805599453,spot_baseline,acm_bot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,192924,12.623604817511508,spot_peer,acm_bot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,192924,-0.2365985573636619,relative_legacy,acm_bot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,192924,11.426920039122702,peer,acm_bot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,192924,59.59877261685519,baseline,acm_bot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,218666,-0.1698111135548938,relative_legacy,GreeneiBot2,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,218666,24.353995036213117,baseline,GreeneiBot2,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,218666,4.944375208714021,spot_peer,GreeneiBot2,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,218666,61.98454433850602,spot_baseline,GreeneiBot2,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,218666,1.9426663626434388,peer,GreeneiBot2,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,220077,-2.017980741633038,relative_legacy,mmBot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,220077,-61.929233124831946,spot_peer,mmBot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,220077,-1.7573399936686336,baseline,mmBot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,220077,-1.849354525333302,spot_baseline,mmBot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,220077,-54.08429786001676,peer,mmBot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,222631,24.408141584353228,baseline,Grizeu_Bot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,222631,34.657359027997266,spot_baseline,Grizeu_Bot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,222631,-23.684104640390395,spot_peer,Grizeu_Bot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,222631,-0.8826499301826422,relative_legacy,Grizeu_Bot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,222631,-16.267500338265336,peer,Grizeu_Bot,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236037,82.24688989652094,baseline,metac-o1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236037,44.373575485480416,spot_peer,metac-o1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236037,99.62150823905576,spot_baseline,metac-o1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236037,0.4917931072516607,relative_legacy,metac-o1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236037,37.16571289693451,peer,metac-o1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236038,-1.0827379780537802,relative_legacy,metac-gpt-4o,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236038,-23.684104640390395,spot_peer,metac-gpt-4o,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236038,34.657359027997266,spot_baseline,metac-gpt-4o,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236038,29.272478579003376,baseline,metac-gpt-4o,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236038,-20.095601280889664,peer,metac-gpt-4o,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236040,35.78083891131794,peer,metac-claude-3-5-sonnet-latest,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236040,97.29550745276563,spot_baseline,metac-claude-3-5-sonnet-latest,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236040,82.03638402903862,baseline,metac-claude-3-5-sonnet-latest,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236040,41.93681275698602,spot_peer,metac-claude-3-5-sonnet-latest,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236040,0.4425375043423076,relative_legacy,metac-claude-3-5-sonnet-latest,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236041,79.23404013715509,baseline,metac-claude-3-5-sonnet-20240620,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236041,32.642415003496374,peer,metac-claude-3-5-sonnet-20240620,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236041,93.59010884507956,spot_baseline,metac-claude-3-5-sonnet-20240620,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236041,38.05496659655298,spot_peer,metac-claude-3-5-sonnet-20240620,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236041,0.3539853075889381,relative_legacy,metac-claude-3-5-sonnet-20240620,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236043,41.83580612968376,peer,metac-grok-2-1212,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236043,0.6062816716315081,relative_legacy,metac-grok-2-1212,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236043,103.9720770839918,spot_baseline,metac-grok-2-1212,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236043,48.931314275413406,spot_peer,metac-grok-2-1212,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236043,87.85686724715728,baseline,metac-grok-2-1212,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236047,-0.2311314759939184,relative_legacy,metac-Llama-3.1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236047,69.31471805599453,spot_baseline,metac-Llama-3.1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236047,57.407018189488205,baseline,metac-Llama-3.1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236047,10.754506530553856,peer,metac-Llama-3.1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,236047,12.623604817511508,spot_peer,metac-Llama-3.1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,237476,38.87271271577884,baseline,NextWorldLab,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,237476,-6.204296414778705,peer,NextWorldLab,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,237476,-0.6776208064938907,relative_legacy,NextWorldLab,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,237476,-8.615043715535204,spot_peer,NextWorldLab,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,237476,49.04146263808631,spot_baseline,NextWorldLab,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,239758,69.33567239624944,baseline,metac-perplexity,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,239758,29.30451454276809,spot_peer,metac-perplexity,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,239758,0.149541663755731,relative_legacy,metac-perplexity,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,239758,85.23740461192126,spot_baseline,metac-perplexity,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,239758,24.39811179062205,peer,metac-perplexity,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,239759,41.93681275698602,spot_peer,metac-exa,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,239759,35.73912992783958,peer,metac-exa,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,239759,0.4420925265872151,relative_legacy,metac-exa,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,239759,97.29550745276563,spot_baseline,metac-exa,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,239759,81.93898318797359,baseline,metac-exa,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,240414,-0.1438255556082003,relative_legacy,minefrac1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,240414,41.37006817267267,baseline,minefrac1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,240414,12.623604817511508,spot_peer,minefrac1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,240414,69.31471805599453,spot_baseline,minefrac1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,240414,7.744331359233812,peer,minefrac1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,240416,98.22653015740964,baseline,metac-o1-preview,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,240416,56.53069941231446,peer,metac-o1-preview,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,240416,1.0398512226728729,relative_legacy,metac-o1-preview,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,240416,124.2453324894,spot_baseline,metac-o1-preview,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,240416,70.16996279536487,spot_peer,metac-o1-preview,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,246118,103.9720770839918,spot_baseline,laylaps,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,246118,67.79323094155322,baseline,laylaps,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,246118,32.27110904967164,peer,laylaps,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,246118,0.4867481144451208,relative_legacy,laylaps,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,246118,48.931314275413406,spot_peer,laylaps,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,250015,0.2492542658894916,relative_legacy,metac-deepseek-r1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,250015,43.63907217585413,baseline,metac-deepseek-r1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,250015,18.541234830463104,peer,metac-deepseek-r1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,250015,96.26454309887887,spot_baseline,metac-deepseek-r1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34196,What will India's Consumer Food Price Index provisional year-over-year inflation rate be for February 2025?,2025-02-01 05:24:01.521729+00,250015,40.85675486243798,spot_peer,metac-deepseek-r1,True,3.75,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34682 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,185690,77.92323407043833,baseline,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,185690,96.08082253889796,spot_baseline,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,185690,48.57331419298617,spot_peer,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,185690,0.0691681253968017,relative_legacy,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,185690,43.98191571269697,peer,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,185699,46.74910389797103,baseline,MWG,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,185699,0.0391315866000029,relative_legacy,MWG,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,185699,26.437132827213745,peer,MWG,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,185699,98.5500430304885,spot_baseline,MWG,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,185699,50.35330874379005,spot_peer,MWG,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,189869,21.36913555694019,peer,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,189869,14.304349502926026,spot_peer,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,189869,-0.3284706670193468,relative_legacy,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,189869,43.844910553959686,baseline,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,190710,30.99668021381615,baseline,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,190710,92.5999418556223,spot_baseline,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,190710,46.06404105624895,spot_peer,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,190710,0.0003161137476336,relative_legacy,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,190710,16.361919194471945,peer,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,191026,0.0034795915056421,relative_legacy,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,191026,48.82081090827143,baseline,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,191026,27.29004167520491,peer,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,191026,89.53026213333067,spot_baseline,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,191026,43.85119161773133,spot_peer,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,191935,-332.1928094887361,spot_baseline,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,191935,-218.69879111354496,baseline,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,191935,-168.39873825193283,peer,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,191935,-2.767589628765436,relative_legacy,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,191935,-260.1576127770608,spot_peer,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,191975,17.739751396112126,baseline,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,191975,47.6214443544466,spot_peer,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,191975,94.76038225463564,spot_baseline,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,191975,0.0040446937298661,relative_legacy,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,191975,9.1583466124122,peer,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,192418,-3.089142957299118,relative_legacy,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,192418,-247.3931188332413,spot_baseline,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,192418,-187.77280820383055,peer,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,192418,-232.1717175991657,baseline,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,192418,-199.02779962724048,spot_peer,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,192924,68.90173816538079,baseline,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,192924,-0.0537289803584423,relative_legacy,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,192924,37.511278839603854,spot_peer,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,192924,80.73549220576041,spot_baseline,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,192924,37.13505749335603,peer,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,218666,14.011544302578075,peer,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,218666,92.2958964236172,spot_baseline,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,218666,45.84486289293421,spot_peer,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,218666,26.86792206802369,baseline,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,218666,-0.0005689818296126,relative_legacy,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,220077,83.1454856562939,baseline,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,220077,87.97057662822883,spot_baseline,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,220077,42.72685634289291,spot_peer,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,220077,0.0581541689470231,relative_legacy,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,220077,56.33554056446884,peer,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,222631,31.58703661150871,baseline,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,222631,92.5999418556223,spot_baseline,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,222631,46.06404105624895,spot_peer,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,222631,16.71192181964019,peer,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,222631,0.0005118163611133,relative_legacy,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236037,69.34747804960946,baseline,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236037,37.590727751583,peer,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236037,40.44105004414028,spot_peer,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236037,-0.0220469450961343,relative_legacy,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236038,84.79969065549501,spot_baseline,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236038,71.40249658794322,baseline,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236038,-0.0202416865934658,relative_legacy,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236038,38.79078666155068,peer,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236038,40.44105004414028,spot_peer,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236040,34.49657500478561,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236040,-0.0894734932297975,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236040,33.698114024646785,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236040,64.45053686398721,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236041,-84.33054331266563,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236041,-100.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236041,-92.77606988391442,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236041,-75.34497774622781,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236041,-1.5783431682120337,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236043,43.69787967699686,peer,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236043,46.06404105624895,spot_peer,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236043,78.09332066004127,baseline,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236043,0.0459282770833617,relative_legacy,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236045,2.7916979202357,peer,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236045,5.612091634448635,baseline,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236045,-2.3025394111786163e-06,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236045,46.06404105624895,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236047,-43.89569244235791,spot_peer,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236047,-0.6378996156370601,relative_legacy,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236047,-20.072001251294,peer,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,236047,-16.933042134477475,baseline,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,237476,-92.77606988391442,spot_peer,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,237476,-100.0,spot_baseline,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,237476,-80.91736472315259,baseline,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,237476,-72.0876741448384,peer,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,237476,-1.5176742318734386,relative_legacy,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,239758,75.03881020990873,baseline,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,239758,41.888403586318944,peer,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,239758,0.0408881646803327,relative_legacy,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,239758,46.06404105624895,spot_peer,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,239759,57.381904273250505,baseline,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,239759,67.80719051126377,spot_baseline,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,239759,28.191614335876395,spot_peer,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,239759,-0.1631484707388432,relative_legacy,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,239759,28.5263852494034,peer,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,240414,-73.1883535026453,peer,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,240414,-173.6965594166206,spot_baseline,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,240414,-145.90193475557743,spot_peer,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,240414,-1.367024578621248,relative_legacy,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,240414,-90.35768214110183,baseline,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,240416,40.68890260552852,peer,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,240416,72.72916419123655,baseline,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,240416,46.06404105624895,spot_peer,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,240416,0.0389306149382065,relative_legacy,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,246118,0.0582748123033562,relative_legacy,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,246118,97.08536543404836,spot_baseline,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,246118,49.29746211153218,spot_peer,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,246118,63.69165113500677,baseline,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,246118,37.002479069532335,peer,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,250015,23.39662079598972,peer,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,250015,-0.0696130052658568,relative_legacy,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,250015,43.92437788409306,baseline,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,250015,34.49657500478561,spot_peer,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34197,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:24:01.554305+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,0.9,2025-02-06 16:00:00+00,34683 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,185690,58.19333950246914,baseline,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,185690,68.72398939846029,spot_baseline,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,185690,-4.510035478004881,spot_peer,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,185690,-0.053327426064436,relative_legacy,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,185690,-3.4127186322997174,peer,annabot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,185699,14.839574564957914,spot_peer,MWG,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,185699,40.04533412687494,baseline,MWG,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,185699,6.2344207523993465,peer,MWG,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,185699,0.0798018963310061,relative_legacy,MWG,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,185699,95.60566524124027,spot_baseline,MWG,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,187708,0.6358390993327512,spot_peer,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,187708,-0.003316475899849,relative_legacy,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,187708,75.87295684578628,spot_baseline,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,187708,47.81418471508683,baseline,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,187708,0.6572683678421246,peer,twsummerbot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,189869,-0.0649157028851969,relative_legacy,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,189869,-5.16995344810567,spot_peer,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,189869,-4.484849858010746,peer,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,189869,60.38250911500669,baseline,VeritasAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,190710,67.80719051126377,spot_baseline,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,190710,-3.506975677185448,peer,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,190710,-0.0567350765572956,relative_legacy,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,190710,-5.16995344810567,spot_peer,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,190710,51.5427203578626,baseline,Bot_Pepa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,191026,12.676034771201229,spot_peer,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,191026,0.0877390628839905,relative_legacy,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,191026,50.51468071658735,baseline,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,191026,7.076783753264275,peer,manticAI,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,191935,1.1256803559087092,spot_peer,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,191935,76.55347463629771,spot_baseline,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,191935,1.035037866369238,peer,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,191935,50.40939576354555,baseline,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,191935,0.0012811534858523,relative_legacy,pgodzinai,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,191975,35.0253588516538,baseline,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,191975,86.49949829068471,spot_baseline,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,191975,8.284894696415009,spot_peer,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,191975,0.0402734182886535,relative_legacy,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,191975,3.3656526841430505,peer,jkraybill_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,192418,0.1591676355028459,relative_legacy,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,192418,86.38181437050481,baseline,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,192418,12.376901854594914,peer,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,192418,12.676034771201229,spot_peer,InstitutPelFutur,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,192924,65.19646201260812,baseline,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,192924,1.1256803559087092,spot_peer,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,192924,0.0129702229171072,relative_legacy,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,192924,1.395721223223281,peer,acm_bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,218666,77.56827017390599,spot_baseline,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,218666,0.5163310112214115,peer,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,218666,0.0032494217502076,relative_legacy,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,218666,19.656875891194808,baseline,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,218666,1.856136970328924,spot_peer,GreeneiBot2,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,220077,0.0094782377704726,relative_legacy,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,220077,1.1256803559087092,spot_peer,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,220077,71.839125303177,baseline,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,220077,0.8264091925878116,peer,mmBot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,222631,-8.127225291547319,peer,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,222631,41.76511309288823,baseline,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,222631,-11.872030643161144,spot_peer,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,222631,-0.1227900977192564,relative_legacy,Grizeu_Bot,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236037,58.496250072115615,spot_baseline,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236037,-11.872030643161144,spot_peer,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236037,47.60633837400616,baseline,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236037,-9.237531907137209,peer,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236037,-0.1341652251864847,relative_legacy,metac-o1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236038,56.97666559649471,baseline,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236038,-0.0605135856489901,relative_legacy,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236038,-3.9165962321504377,peer,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236038,-5.16995344810567,spot_peer,metac-gpt-4o,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236040,64.18492286437885,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236040,1.4296011341248358,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236040,1.1256803559087092,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236040,0.0129637320772497,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236041,0.0129702229171072,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236041,1.1256803559087092,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236041,1.425084223722204,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236041,64.41802713275835,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236043,0.0822476501373354,relative_legacy,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236043,6.46517575936225,peer,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236043,71.25429177242563,baseline,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236043,7.061361793134147,spot_peer,metac-grok-2-1212,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236045,0.7002019925179175,peer,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236045,39.58349588976947,baseline,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236045,1.1256803559087092,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236045,7.422099605031827e-06,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236047,-3.7445602955458006,peer,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236047,55.31427549414848,baseline,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236047,-5.16995344810567,spot_peer,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,236047,-0.058393577159722,relative_legacy,metac-Llama-3.1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,237476,-26.73250286738491,spot_peer,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,237476,-21.68362280984413,peer,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,237476,-0.305518033901431,relative_legacy,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,237476,31.14776431155948,baseline,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,239758,0.0790532187557206,relative_legacy,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,239758,6.256534058910527,peer,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,239758,68.58286672102649,baseline,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,239758,7.061361793134147,spot_peer,metac-perplexity,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,239759,78.79365192236624,baseline,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,239759,12.676034771201229,spot_peer,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,239759,0.1495102387450283,relative_legacy,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,239759,11.34617187014481,peer,metac-exa,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,240414,-2.894529484614817,peer,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,240414,40.79440229309683,baseline,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,240414,-0.0518420252068903,relative_legacy,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,240414,67.80719051126377,spot_baseline,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,240414,-5.16995344810567,spot_peer,minefrac1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,240416,1.341212296572031,peer,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,240416,59.3580067474273,baseline,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,240416,0.0097486213260654,relative_legacy,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,240416,1.1256803559087092,spot_peer,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,246118,7.061361793134147,spot_peer,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,246118,84.79969065549501,spot_baseline,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,246118,55.504642585393256,baseline,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,246118,4.922962296841424,peer,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,246118,0.0549467012137478,relative_legacy,laylaps,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,250015,-0.098541353064509,relative_legacy,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,250015,32.05687519156226,baseline,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,250015,-6.36286014950582,peer,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34198,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:24:01.588177+00,250015,-11.872030643161144,spot_peer,metac-deepseek-r1,True,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34684 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,185690,0.0506927258379731,relative_legacy,annabot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,185690,21.04488409917468,peer,annabot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,185690,80.70094148637484,baseline,annabot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,185690,91.73171754564224,spot_baseline,annabot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,185690,25.671654638707,spot_peer,annabot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,185699,2.7789898560319006,peer,MWG,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,185699,35.08001595873248,baseline,MWG,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,185699,60.40713236688608,spot_baseline,MWG,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,185699,3.124008743732136,spot_peer,MWG,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,185699,-0.1375092066048442,relative_legacy,MWG,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,187708,-0.0549059821711371,relative_legacy,twsummerbot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,187708,10.88630724729472,peer,twsummerbot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,187708,50.24425359062369,baseline,twsummerbot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,187708,76.55347463629771,spot_baseline,twsummerbot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,187708,14.74625388799214,spot_peer,twsummerbot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,189869,69.41726820182674,baseline,VeritasAI,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,189869,10.874769133945303,peer,VeritasAI,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,189869,-0.0871754571183104,relative_legacy,VeritasAI,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,189869,14.74625388799214,spot_peer,VeritasAI,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,190710,34.028308035022384,baseline,Bot_Pepa,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,190710,92.5999418556223,spot_baseline,Bot_Pepa,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,190710,26.29660830328468,spot_peer,Bot_Pepa,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,190710,0.0286616113569229,relative_legacy,Bot_Pepa,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,190710,9.820927469002656,peer,Bot_Pepa,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,191026,11.584643937899257,peer,manticAI,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,191026,19.81292478251008,spot_peer,manticAI,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,191026,83.59240742543749,spot_baseline,manticAI,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,191026,-0.0053319181488525,relative_legacy,manticAI,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,191026,45.61609351548768,baseline,manticAI,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,191935,-183.68552142034684,peer,pgodzinai,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,191935,-2.74647466225893,relative_legacy,pgodzinai,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,191935,-279.4720549178457,spot_peer,pgodzinai,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,191935,-332.1928094887362,spot_baseline,pgodzinai,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,191935,-218.7197182452924,baseline,pgodzinai,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,191975,87.70898180752766,spot_baseline,jkraybill_bot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,191975,0.0128502878065844,relative_legacy,jkraybill_bot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,191975,38.74838973403356,baseline,jkraybill_bot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,191975,22.77606255234855,spot_peer,jkraybill_bot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,191975,10.4247068745,peer,jkraybill_bot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,192418,29.525246191326367,spot_peer,InstitutPelFutur,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,192418,97.08536543404836,spot_baseline,InstitutPelFutur,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,192418,24.81335053158185,peer,InstitutPelFutur,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,192418,0.0994890025010969,relative_legacy,InstitutPelFutur,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,192418,90.15157078823395,baseline,InstitutPelFutur,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,192924,-0.0789179923979018,relative_legacy,acm_bot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,192924,11.578290637498323,peer,acm_bot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,192924,64.82772871993424,baseline,acm_bot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,192924,76.55347463629771,spot_baseline,acm_bot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,192924,14.74625388799214,spot_peer,acm_bot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,218666,17.397085248782734,baseline,GreeneiBot2,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,218666,3.7378078106746666,peer,GreeneiBot2,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,218666,-0.010527870773106,relative_legacy,GreeneiBot2,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,218666,16.682835023022818,spot_peer,GreeneiBot2,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,218666,79.2438930064638,spot_baseline,GreeneiBot2,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,220077,92.5999418556223,spot_baseline,mmBot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,220077,0.0578382367612922,relative_legacy,mmBot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,220077,86.44253081866219,baseline,mmBot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,220077,21.64756714361114,peer,mmBot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,220077,26.29660830328468,spot_peer,mmBot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,222631,0.0504116107966283,relative_legacy,Grizeu_Bot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,222631,26.29660830328468,spot_peer,Grizeu_Bot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,222631,19.074560417989733,peer,Grizeu_Bot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,222631,64.30877428333694,baseline,Grizeu_Bot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,222631,92.5999418556223,spot_baseline,Grizeu_Bot,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236037,0.0508930377137192,relative_legacy,metac-o1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236037,74.78926845037509,baseline,metac-o1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236037,92.5999418556223,spot_baseline,metac-o1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236037,26.29660830328468,spot_peer,metac-o1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236037,20.824692103830102,peer,metac-o1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236038,0.0555336233245005,relative_legacy,metac-gpt-4o,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236038,26.29660830328468,spot_peer,metac-gpt-4o,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236038,92.5999418556223,spot_baseline,metac-gpt-4o,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236038,21.418227205006904,peer,metac-gpt-4o,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236038,77.55693545436215,baseline,metac-gpt-4o,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236040,63.947546400109886,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236040,11.629430783275348,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236040,-0.0787037893854527,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236040,14.74625388799214,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236041,64.18058271723083,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236041,11.630994910598718,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236041,-0.0788578892942807,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236041,14.74625388799214,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236043,26.29660830328468,spot_peer,metac-grok-2-1212,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236043,0.0556447304908874,relative_legacy,metac-grok-2-1212,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236043,21.425374343926336,peer,metac-grok-2-1212,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236043,77.65260817303162,baseline,metac-grok-2-1212,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236045,4.174936965511249e-06,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236045,20.681935325217587,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236045,25.544444098051887,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236045,6.282536465090777,peer,metac-Gemini-Exp-1206,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236047,20.681935325217587,spot_peer,metac-Llama-3.1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236047,-0.0116454776138892,relative_legacy,metac-Llama-3.1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236047,68.9591939002086,baseline,metac-Llama-3.1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236047,84.79969065549501,spot_baseline,metac-Llama-3.1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,236047,16.319798105383633,peer,metac-Llama-3.1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,237476,-125.61312182186944,spot_peer,NextWorldLab,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,237476,-99.08725207858194,baseline,NextWorldLab,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,237476,-107.1167702742863,peer,NextWorldLab,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,237476,-1.7100243524724434,relative_legacy,NextWorldLab,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,237476,-118.44245711374272,spot_baseline,NextWorldLab,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,239758,20.78387851257098,peer,metac-perplexity,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,239758,26.29660830328468,spot_peer,metac-perplexity,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,239758,74.57362846978616,baseline,metac-perplexity,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,239758,0.0507135611173184,relative_legacy,metac-perplexity,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,239759,-0.1536537980498278,relative_legacy,metac-exa,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,239759,57.90184325441005,baseline,metac-exa,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,239759,6.067866642170068,peer,metac-exa,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,239759,8.450620083977764,spot_peer,metac-exa,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,239759,67.80719051126377,spot_baseline,metac-exa,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,240414,-54.50760426226208,peer,minefrac1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,240414,-73.69655941662063,spot_baseline,minefrac1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,240414,-93.40472542108613,spot_peer,minefrac1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,240414,-43.68222375218899,baseline,minefrac1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,240414,-0.935311341608236,relative_legacy,minefrac1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,240416,71.38500479562389,baseline,metac-o1-preview,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,240416,20.225698527640084,peer,metac-o1-preview,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,240416,0.0504152941893977,relative_legacy,metac-o1-preview,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,240416,26.29660830328468,spot_peer,metac-o1-preview,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,246118,18.489182817071395,peer,laylaps,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,246118,60.73766899702088,baseline,laylaps,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,246118,92.5999418556223,spot_baseline,laylaps,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,246118,26.29660830328468,spot_peer,laylaps,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,246118,0.0503793114267847,relative_legacy,laylaps,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,250015,0.0012054778753365,relative_legacy,metac-deepseek-r1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,250015,20.681935325217587,spot_peer,metac-deepseek-r1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,250015,84.79969065549501,spot_baseline,metac-deepseek-r1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,250015,45.8972521946135,baseline,metac-deepseek-r1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34199,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:24:01.619975+00,250015,11.945410381126324,peer,metac-deepseek-r1,True,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,2025-02-06 16:00:00+00,34685 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,185690,1.7154186764090604,spot_peer,annabot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,185690,4.064942535516088,peer,annabot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,185690,53.186799560555485,spot_baseline,annabot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,185690,-0.0689956365980436,relative_legacy,annabot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,185690,40.47656957277606,baseline,annabot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,187708,-12.185219520137265,peer,twsummerbot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,187708,24.36690809668629,spot_baseline,twsummerbot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,187708,19.554006639034675,baseline,twsummerbot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,187708,-0.2883988163020602,relative_legacy,twsummerbot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,187708,-19.060064896304493,spot_peer,twsummerbot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,189869,-0.0722743651726387,relative_legacy,VeritasAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,189869,-1.6324000797270035,spot_peer,VeritasAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,189869,2.8968374028465496,peer,VeritasAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,189869,46.97022567898389,baseline,VeritasAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,190710,-0.049717391803538,relative_legacy,Bot_Pepa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,190710,5.542858554915942,spot_peer,Bot_Pepa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,190710,58.496250072115615,spot_baseline,Bot_Pepa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,190710,29.840497532005227,baseline,Bot_Pepa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,190710,2.806078294694104,peer,Bot_Pepa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,191026,26.22334786441313,spot_peer,manticAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,191026,26.70905179397667,peer,manticAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,191026,73.30532153755102,baseline,manticAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,191026,87.18436485093177,spot_baseline,manticAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,191026,0.2366057940372943,relative_legacy,manticAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,191935,21.57452925695081,spot_peer,pgodzinai,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,191935,19.62788569914906,peer,pgodzinai,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,191935,61.75928159463213,baseline,pgodzinai,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,191935,0.1427973235828252,relative_legacy,pgodzinai,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,191935,80.73549220576041,spot_baseline,pgodzinai,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,191975,12.71058813113594,baseline,jkraybill_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,191975,-0.1506117625492196,relative_legacy,jkraybill_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,191975,-14.253929208170833,spot_peer,jkraybill_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,191975,31.034012061215023,spot_baseline,jkraybill_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,191975,-5.837976187482825,peer,jkraybill_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,192418,57.09565006407306,baseline,InstitutPelFutur,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,192418,10.148049965261048,peer,InstitutPelFutur,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,192418,0.0232502582749347,relative_legacy,InstitutPelFutur,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,192418,5.542858554915942,spot_peer,InstitutPelFutur,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,192924,-1.2069285457445416,relative_legacy,acm_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,192924,-71.57796770016874,baseline,acm_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,192924,-80.25128862316308,peer,acm_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,192924,-86.24964762500649,spot_baseline,acm_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,192924,-98.80056076691768,spot_peer,acm_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,218666,-0.0056516739432272,relative_legacy,GreeneiBot2,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,218666,37.50641579305512,baseline,GreeneiBot2,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,218666,65.62675347942893,spot_baseline,GreeneiBot2,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,218666,10.683046420978346,spot_peer,GreeneiBot2,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,218666,6.664003482441237,peer,GreeneiBot2,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,220077,23.70619718417693,peer,mmBot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,220077,76.03048209314706,baseline,mmBot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,220077,0.1994989876505607,relative_legacy,mmBot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,220077,18.55982542213258,spot_peer,mmBot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,222631,-17.66407078176187,spot_peer,Grizeu_Bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,222631,26.303440583379377,spot_baseline,Grizeu_Bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,222631,24.74476231279264,baseline,Grizeu_Bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,222631,-12.566201414003736,peer,Grizeu_Bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,222631,-0.2788143938415515,relative_legacy,Grizeu_Bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236037,-0.1007677541166131,relative_legacy,metac-o1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236037,-0.852508758445078,peer,metac-o1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236037,48.54268271702416,spot_baseline,metac-o1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236037,-1.6324000797270035,spot_peer,metac-o1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236037,24.864706241181636,baseline,metac-o1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236038,-0.8458126580858368,peer,metac-gpt-4o,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236038,-1.6324000797270035,spot_peer,metac-gpt-4o,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236038,-0.1011361389547399,relative_legacy,metac-gpt-4o,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236038,24.985752065717914,baseline,metac-gpt-4o,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236040,39.367364795593424,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236040,9.54264813725537,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236040,0.0429140385897905,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236040,18.55982542213258,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236041,39.38059138227801,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236041,9.546832894126824,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236041,0.0429508180795777,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236041,18.55982542213258,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236043,24.50430046148724,spot_peer,metac-grok-2-1212,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236043,12.641295378721969,peer,metac-grok-2-1212,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236043,0.085660629520205,relative_legacy,metac-grok-2-1212,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236043,43.72363873831355,baseline,metac-grok-2-1212,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236045,38.715783623054335,baseline,metac-Gemini-Exp-1206,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236045,18.55982542213258,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236045,0.0418189522159096,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236045,9.360519581959576,peer,metac-Gemini-Exp-1206,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236047,34.685668692324526,baseline,metac-Llama-3.1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236047,12.25486475322335,spot_peer,metac-Llama-3.1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236047,-0.0021765813542056,relative_legacy,metac-Llama-3.1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,236047,6.254267724031448,peer,metac-Llama-3.1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,237476,42.22330006830476,spot_baseline,NextWorldLab,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,237476,-0.1394049998495837,relative_legacy,NextWorldLab,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,237476,-2.695967533742321,peer,NextWorldLab,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,237476,27.116484789271738,baseline,NextWorldLab,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,237476,-6.187872836199876,spot_peer,NextWorldLab,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,239758,-8.699766961936906,peer,metac-perplexity,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,239758,26.303440583379377,spot_baseline,metac-perplexity,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,239758,-17.66407078176187,spot_peer,metac-perplexity,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,239758,-0.20588618181883,relative_legacy,metac-perplexity,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,239758,12.89684691343022,baseline,metac-perplexity,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,239759,22.167123452873145,spot_peer,metac-exa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,239759,0.0628999735831555,relative_legacy,metac-exa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,239759,10.477087463133351,peer,metac-exa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,239759,38.6752658895661,baseline,metac-exa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,239759,81.55754288625727,spot_baseline,metac-exa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,240414,-9.154112994872069,peer,minefrac1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,240414,-0.216626605139341,relative_legacy,minefrac1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,240414,-17.66407078176187,spot_peer,minefrac1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,240414,26.303440583379377,spot_baseline,minefrac1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,240414,13.68617925860132,baseline,minefrac1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,240416,12.4532350967772,peer,metac-o1-preview,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,240416,0.0841550482922178,relative_legacy,metac-o1-preview,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,240416,24.50430046148724,spot_peer,metac-o1-preview,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,240416,43.16276031722333,baseline,metac-o1-preview,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,246118,-47.58300631674709,spot_peer,laylaps,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,246118,-15.200309344505014,spot_baseline,laylaps,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,246118,-41.09126886292408,peer,laylaps,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,246118,-0.6591444334138108,relative_legacy,laylaps,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,246118,-14.058410573081852,baseline,laylaps,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,250015,35.20478836699555,baseline,metac-deepseek-r1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,250015,71.36958148433591,spot_baseline,metac-deepseek-r1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,250015,14.822896462622005,spot_peer,metac-deepseek-r1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,250015,0.0151593080568089,relative_legacy,metac-deepseek-r1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34200,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:24:01.780365+00,250015,7.28119088072569,peer,metac-deepseek-r1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34686 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,185690,4.05214653936088,peer,annabot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,185690,75.5335321236258,baseline,annabot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,185690,95.35259995739597,spot_baseline,annabot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,185690,5.134599125313284,spot_peer,annabot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,185690,0.0332061106774604,relative_legacy,annabot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,187708,60.110263149548295,baseline,twsummerbot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,187708,-4.9006069246776605,peer,twsummerbot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,187708,79.57669477823923,spot_baseline,twsummerbot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,187708,-0.0869734428095406,relative_legacy,twsummerbot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,187708,-6.275860904996478,spot_peer,twsummerbot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,189869,-14.788555199857994,spot_peer,VeritasAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,189869,65.7976144952368,baseline,VeritasAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,189869,-15.217065244644491,peer,VeritasAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,189869,-0.2268640489799705,relative_legacy,VeritasAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,190710,92.5999418556223,spot_baseline,Bot_Pepa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,190710,89.9146216080139,baseline,Bot_Pepa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,190710,3.024919529627719,peer,Bot_Pepa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,190710,0.0137157306764927,relative_legacy,Bot_Pepa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,190710,3.143645522923828,spot_peer,Bot_Pepa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,191026,-1.6321894463541464,spot_peer,manticAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,191026,-0.041819216264283,relative_legacy,manticAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,191026,72.32842195311727,baseline,manticAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,191026,-1.5213361714612572,peer,manticAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,191026,85.9969548221026,spot_baseline,manticAI,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,191935,68.73436419628226,baseline,pgodzinai,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,191935,3.513019271421064,peer,pgodzinai,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,191935,0.0267246849500205,relative_legacy,pgodzinai,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,191935,4.886447222186248,spot_peer,pgodzinai,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,191935,95.0095094173686,spot_baseline,pgodzinai,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,191975,-0.0467118180569736,peer,jkraybill_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,191975,86.4466813382043,spot_baseline,jkraybill_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,191975,-1.3069094463622004,spot_peer,jkraybill_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,191975,-0.0021993106450248,relative_legacy,jkraybill_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,191975,3.0897945236675954,baseline,jkraybill_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,192418,5.31763719974213,spot_peer,InstitutPelFutur,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,192418,95.60566524124027,spot_baseline,InstitutPelFutur,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,192418,92.69694698117937,baseline,InstitutPelFutur,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,192418,5.227239932846117,peer,InstitutPelFutur,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,192418,0.0428584996341356,relative_legacy,InstitutPelFutur,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,192924,66.78491859499324,baseline,acm_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,192924,80.73549220576041,spot_baseline,acm_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,192924,-5.437721249629771,spot_peer,acm_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,192924,-0.0844277601714997,relative_legacy,acm_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,192924,-4.706277868144238,peer,acm_bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,220077,91.53028520303516,baseline,mmBot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,220077,3.024919529627719,peer,mmBot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,220077,0.0137157306764927,relative_legacy,mmBot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,220077,3.143645522923828,spot_peer,mmBot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,222631,90.1699611481855,baseline,Grizeu_Bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,222631,98.5500430304885,spot_baseline,Grizeu_Bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,222631,7.447258587346355,spot_peer,Grizeu_Bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,222631,0.0681571469627823,relative_legacy,Grizeu_Bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,222631,6.8369230090042015,peer,Grizeu_Bot,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236037,47.10716688584815,baseline,metac-o1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236037,1.5736556142853309,peer,metac-o1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236037,0.0,relative_legacy,metac-o1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236037,3.143645522923828,spot_peer,metac-o1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236038,-1.3129879600456689,peer,metac-gpt-4o,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236038,-0.03989900393098,relative_legacy,metac-gpt-4o,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236038,-2.4981514791918977,spot_peer,metac-gpt-4o,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236038,84.79969065549501,spot_baseline,metac-gpt-4o,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236038,43.453525976174106,baseline,metac-gpt-4o,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236040,1.5797903311233674,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236040,0.0,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236040,47.31998058717901,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236040,3.143645522923828,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236041,47.35939848638937,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236041,1.5804697931683145,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236041,-3.265778734102586e-06,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236041,3.143645522923828,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236041,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236043,3.143645522923828,spot_peer,metac-grok-2-1212,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236043,47.556353954464406,baseline,metac-grok-2-1212,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236043,1.5877190369446323,peer,metac-grok-2-1212,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236043,6.3541103768314e-05,relative_legacy,metac-grok-2-1212,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236047,-1.2875605651909088,peer,metac-Llama-3.1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236047,-0.0393194693281131,relative_legacy,metac-Llama-3.1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236047,-2.4981514791918977,spot_peer,metac-Llama-3.1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236047,42.75722497286442,baseline,metac-Llama-3.1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,236047,84.79969065549501,spot_baseline,metac-Llama-3.1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,237476,-1.7020162548186906,peer,NextWorldLab,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,237476,-0.0416763850802651,relative_legacy,NextWorldLab,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,237476,-2.4981514791918977,spot_peer,NextWorldLab,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,237476,84.79969065549501,spot_baseline,NextWorldLab,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,237476,55.41059597855358,baseline,NextWorldLab,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,239758,1.5130339256857457,peer,metac-perplexity,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,239758,1.947122221209834e-06,relative_legacy,metac-perplexity,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,239758,3.143645522923828,spot_peer,metac-perplexity,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,239758,45.2248753065736,baseline,metac-perplexity,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,239759,-1.2152113800428104,peer,metac-exa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,239759,-2.4981514791918977,spot_peer,metac-exa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,239759,-0.0371227056429054,relative_legacy,metac-exa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,239759,40.3779765557384,baseline,metac-exa,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,240414,-7.442025733750899,peer,minefrac1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,240414,67.80719051126377,spot_baseline,minefrac1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,240414,-14.788555199857994,spot_peer,minefrac1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,240414,-0.12411259180351,relative_legacy,minefrac1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,240414,33.94430105952025,baseline,minefrac1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,240416,3.143645522923828,spot_peer,metac-o1-preview,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,240416,1.5596682255103675,peer,metac-o1-preview,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,240416,3.528159240563842e-06,relative_legacy,metac-o1-preview,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,240416,46.586009250687205,baseline,metac-o1-preview,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,246118,92.5999418556223,spot_baseline,laylaps,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,246118,85.93276304663448,baseline,laylaps,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,246118,2.808866186844124,peer,laylaps,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,246118,0.0137157306764927,relative_legacy,laylaps,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,246118,3.143645522923828,spot_peer,laylaps,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,250015,92.5999418556223,spot_baseline,metac-deepseek-r1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,250015,0.0,relative_legacy,metac-deepseek-r1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,250015,1.469428995384147,peer,metac-deepseek-r1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,250015,43.94272250084023,baseline,metac-deepseek-r1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34201,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:24:01.81474+00,250015,3.143645522923828,spot_peer,metac-deepseek-r1,True,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34687 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,185690,-38.18507534723884,baseline,annabot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,185690,-46.497352071792704,spot_baseline,annabot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,185690,-35.80120238160814,spot_peer,annabot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,185690,-0.5535916711367925,relative_legacy,annabot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,185690,-37.00161362092343,peer,annabot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,187708,35.44429949720313,baseline,twsummerbot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,187708,75.55914258291133,spot_peer,twsummerbot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,187708,50.2597224657274,spot_baseline,twsummerbot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,187708,0.6158636838218763,relative_legacy,twsummerbot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,187708,49.30319798096371,peer,twsummerbot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,189869,-0.0419441774701248,relative_legacy,VeritasAI,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,189869,3.875830349793057,peer,VeritasAI,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,189869,-6.391736248643579,spot_baseline,VeritasAI,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,189869,-6.182353756948478,baseline,VeritasAI,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,189869,10.357440120015864,spot_peer,VeritasAI,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,190710,-85.5767075544417,peer,Bot_Pepa,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,190710,-85.70890291059777,spot_baseline,Bot_Pepa,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,190710,-80.93084121034158,spot_peer,Bot_Pepa,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,190710,-1.218449814065958,relative_legacy,Bot_Pepa,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,190710,-80.19840551247157,baseline,Bot_Pepa,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,191026,80.39750207048975,baseline,manticAI,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,191026,95.57030514920967,spot_baseline,manticAI,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,191026,127.70832280868724,spot_peer,manticAI,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,191026,1.318042983608698,relative_legacy,manticAI,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,191026,103.18473158931916,peer,manticAI,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,191935,-7.098036481338957,peer,pgodzinai,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,191935,-0.1407710420662254,relative_legacy,pgodzinai,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,191935,-4.36167364871557,spot_peer,pgodzinai,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,191935,-19.18065485787692,spot_baseline,pgodzinai,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,191935,-12.947368745602615,baseline,pgodzinai,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,192418,-0.3442310647114647,relative_legacy,InstitutPelFutur,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,192418,-19.32066397833607,peer,InstitutPelFutur,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,192418,-25.25217044721212,baseline,InstitutPelFutur,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,192418,-26.185950714291486,spot_baseline,InstitutPelFutur,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,192418,-12.424258910595686,spot_peer,InstitutPelFutur,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,220077,16.65856222787732,peer,mmBot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,220077,4.3656402076858525,baseline,mmBot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,220077,0.1241273035504336,relative_legacy,mmBot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,220077,22.8252134973409,spot_peer,mmBot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,220077,4.441072130058007,spot_baseline,mmBot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,222631,42.71531274816945,baseline,Grizeu_Bot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,222631,0.7206672250007509,relative_legacy,Grizeu_Bot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,222631,75.73992244617007,spot_peer,Grizeu_Bot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,222631,50.41679571033508,spot_baseline,Grizeu_Bot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,222631,58.69551726135828,peer,Grizeu_Bot,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236037,-15.870329227443229,spot_baseline,metac-o1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236037,-0.5517299736715584,spot_peer,metac-o1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236037,0.004955476046324,relative_legacy,metac-o1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236037,-0.5619713978220872,peer,metac-o1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236037,-7.987654099948216,baseline,metac-o1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236038,-108.41662129741216,spot_peer,metac-gpt-4o,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236038,-109.59032742893868,spot_baseline,metac-gpt-4o,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236038,-0.7536169475684773,relative_legacy,metac-gpt-4o,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236038,-55.68159290965117,peer,metac-gpt-4o,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236038,-55.9184372330829,baseline,metac-gpt-4o,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236040,-17.166408117933035,baseline,metac-claude-3-5-sonnet-latest,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236040,-11.05051121390847,peer,metac-claude-3-5-sonnet-latest,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236040,-0.1397103561975213,relative_legacy,metac-claude-3-5-sonnet-latest,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236040,-21.15947508516295,spot_peer,metac-claude-3-5-sonnet-latest,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236040,-33.77567183784982,spot_baseline,metac-claude-3-5-sonnet-latest,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236041,15.727935235853613,peer,metac-claude-3-5-sonnet-20240620,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236041,6.06553535506824,baseline,metac-claude-3-5-sonnet-20240620,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236041,0.2284786902204434,relative_legacy,metac-claude-3-5-sonnet-20240620,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236041,31.440633312642746,spot_peer,metac-claude-3-5-sonnet-20240620,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236041,11.926706423906367,spot_baseline,metac-claude-3-5-sonnet-20240620,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236043,-72.52777637625992,baseline,metac-grok-2-1212,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236043,-142.05627994173483,spot_baseline,metac-grok-2-1212,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236043,-145.78256780527929,spot_peer,metac-grok-2-1212,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236043,-1.016884640342107,relative_legacy,metac-grok-2-1212,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236043,-74.82470267807302,peer,metac-grok-2-1212,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236047,5.74576487709325,peer,metac-Llama-3.1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236047,0.092016061194223,relative_legacy,metac-Llama-3.1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236047,12.132624760476984,spot_peer,metac-Llama-3.1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236047,-4.849340949583742,spot_baseline,metac-Llama-3.1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,236047,-2.422729931623404,baseline,metac-Llama-3.1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,237476,18.18606086425908,baseline,NextWorldLab,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,237476,0.353701310454678,relative_legacy,NextWorldLab,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,237476,49.15339169819774,spot_peer,NextWorldLab,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,237476,27.3166972139158,spot_baseline,NextWorldLab,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,237476,29.22154262009808,peer,NextWorldLab,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,239758,-53.03024123493187,baseline,metac-perplexity,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,239758,-0.7101926180786677,relative_legacy,metac-perplexity,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,239758,-108.41662129741196,spot_peer,metac-perplexity,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,239758,-52.73462933379908,peer,metac-perplexity,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,239758,-109.5903274289385,spot_baseline,metac-perplexity,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,239759,0.7575681869929101,relative_legacy,metac-exa,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,239759,39.624125279178,baseline,metac-exa,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,239759,53.83196616947875,peer,metac-exa,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,239759,113.28633739618878,spot_peer,metac-exa,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,239759,83.03955088492702,spot_baseline,metac-exa,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,240414,-0.0864643836494064,relative_legacy,minefrac1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,240414,-29.90172878643969,spot_baseline,minefrac1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,240414,-16.700848812717656,spot_peer,minefrac1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,240414,-7.878132754945034,peer,minefrac1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,240414,-13.75257858605025,baseline,minefrac1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,240416,29.31730351929593,spot_baseline,metac-o1-preview,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,240416,51.455943830640855,spot_peer,metac-o1-preview,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,240416,14.518587761286406,baseline,metac-o1-preview,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,240416,0.3602576470829761,relative_legacy,metac-o1-preview,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,240416,25.228574291672192,peer,metac-o1-preview,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,246118,17.71386296530519,spot_peer,laylaps,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,246118,0.0,spot_baseline,laylaps,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,246118,0.0488971496059587,relative_legacy,laylaps,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,246118,10.485591633347507,peer,laylaps,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,246118,0.0,baseline,laylaps,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,250015,-20.230652313615693,peer,metac-deepseek-r1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,250015,-52.82699499566079,spot_peer,metac-deepseek-r1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,250015,-61.29046254162037,spot_baseline,metac-deepseek-r1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,250015,-23.469670936364363,baseline,metac-deepseek-r1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34202,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:24:01.84835+00,250015,-0.2443831579540539,relative_legacy,metac-deepseek-r1,True,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34688 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,185690,-0.3434144080154611,relative_legacy,annabot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,185690,14.886072112257969,spot_baseline,annabot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,185690,6.706857157410333,spot_peer,annabot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,185690,12.442633809487038,baseline,annabot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,185690,7.219726875356836,peer,annabot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,187708,34.28644361982256,peer,twsummerbot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,187708,0.5231777781639699,relative_legacy,twsummerbot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,187708,57.96116578104448,spot_baseline,twsummerbot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,187708,51.739909629323485,spot_peer,twsummerbot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,187708,38.35010326305193,baseline,twsummerbot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,189869,6.202632211276686,spot_baseline,VeritasAI,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,189869,-2.371284557251925,spot_peer,VeritasAI,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,189869,5.933633304416472,baseline,VeritasAI,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,189869,-0.5890754677573027,relative_legacy,VeritasAI,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,189869,2.231596135083436,peer,VeritasAI,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,190710,47.92224681709461,spot_peer,Bot_Pepa,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,190710,49.492030047395495,baseline,Bot_Pepa,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,190710,48.75355293400764,peer,Bot_Pepa,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,190710,54.309488308477725,spot_baseline,Bot_Pepa,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,190710,0.6734073208618625,relative_legacy,Bot_Pepa,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,191026,39.67172395933461,spot_baseline,manticAI,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,191026,32.61912954299045,spot_peer,manticAI,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,191026,0.2722863992307983,relative_legacy,manticAI,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,191026,32.19853650232836,peer,manticAI,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,191026,35.018499118223346,baseline,manticAI,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,191935,20.98551884915974,peer,pgodzinai,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,191935,0.1746571163160728,relative_legacy,pgodzinai,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,191935,32.923169198139966,spot_peer,pgodzinai,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,191935,39.96254449904284,spot_baseline,pgodzinai,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,191935,25.742579622311403,baseline,pgodzinai,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,191975,0.5499050219015547,relative_legacy,jkraybill_bot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,191975,29.051772587103283,peer,jkraybill_bot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,191975,77.85012227739863,spot_baseline,jkraybill_bot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,191975,31.18157974315493,baseline,jkraybill_bot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,191975,72.53290960278466,spot_peer,jkraybill_bot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,192418,25.578582693186384,spot_peer,InstitutPelFutur,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,192418,0.150906312473748,relative_legacy,InstitutPelFutur,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,192418,31.59608374100835,baseline,InstitutPelFutur,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,192418,30.765615960656987,peer,InstitutPelFutur,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,192418,32.93728784213072,spot_baseline,InstitutPelFutur,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,192924,20.957175035840216,baseline,acm_bot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,192924,16.282308789353575,peer,acm_bot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,192924,-0.0872513795057079,relative_legacy,acm_bot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,192924,17.846393918726157,spot_peer,acm_bot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,192924,25.5412811882992,spot_baseline,acm_bot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,220077,-2.2728650897439504,relative_legacy,mmBot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,220077,-54.62996017774926,spot_baseline,mmBot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,220077,-62.39950046624482,peer,mmBot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,220077,-53.42710439199386,baseline,mmBot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,220077,-65.96899478214269,spot_peer,mmBot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,222631,-1.2189019380591335,peer,Grizeu_Bot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,222631,5.268025782891358,spot_baseline,Grizeu_Bot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,222631,1.9177094822997156,baseline,Grizeu_Bot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,222631,-3.3483730960184106,spot_peer,Grizeu_Bot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,222631,-0.260030816810616,relative_legacy,Grizeu_Bot,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236037,8.166971816461826,peer,metac-o1,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236037,24.920155138371737,spot_baseline,metac-o1,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236037,17.197034866529265,spot_peer,metac-o1,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236037,-0.0714051675951346,relative_legacy,metac-o1,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236037,12.409645061776615,baseline,metac-o1,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236038,16.22709799511718,peer,metac-gpt-4o,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236038,39.92538481088862,spot_baseline,metac-gpt-4o,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236038,0.1438988738071101,relative_legacy,metac-gpt-4o,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236038,20.266670649055456,baseline,metac-gpt-4o,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236038,32.88432043325146,spot_peer,metac-gpt-4o,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236040,23.80721665506418,peer,metac-claude-3-5-sonnet-latest,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236040,54.309488308477725,spot_baseline,metac-claude-3-5-sonnet-latest,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236040,47.92224681709461,spot_peer,metac-claude-3-5-sonnet-latest,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236040,0.3538387596293808,relative_legacy,metac-claude-3-5-sonnet-latest,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236040,27.479358101286355,baseline,metac-claude-3-5-sonnet-latest,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236041,-8.097882730755135,peer,metac-claude-3-5-sonnet-20240620,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236041,-15.012695096534646,spot_peer,metac-claude-3-5-sonnet-20240620,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236041,-5.889151782819825,spot_baseline,metac-claude-3-5-sonnet-20240620,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236041,-2.9794237457216046,baseline,metac-claude-3-5-sonnet-20240620,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236041,-0.5245575953954694,relative_legacy,metac-claude-3-5-sonnet-20240620,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236043,69.11701396252133,spot_peer,metac-grok-2-1212,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236043,37.8503840129368,baseline,metac-grok-2-1212,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236043,34.65057555456929,peer,metac-grok-2-1212,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236043,0.6511725541515961,relative_legacy,metac-grok-2-1212,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236043,74.58274383888589,spot_baseline,metac-grok-2-1212,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236047,5.393933744984398,peer,metac-Llama-3.1,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236047,19.652128905480215,spot_baseline,metac-Llama-3.1,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236047,11.689552895779036,spot_peer,metac-Llama-3.1,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236047,-0.1434645591060237,relative_legacy,metac-Llama-3.1,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,236047,9.630683282859795,baseline,metac-Llama-3.1,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,237476,-9.505212942829676,spot_peer,NextWorldLab,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,237476,-0.420948284906642,baseline,NextWorldLab,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,237476,-0.6211253749281161,spot_baseline,NextWorldLab,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,237476,-0.6046401959314746,relative_legacy,NextWorldLab,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,237476,-6.81118990468169,peer,NextWorldLab,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,239758,-2.1202638887731444,relative_legacy,metac-perplexity,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,239758,-66.5585794890527,peer,metac-perplexity,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,239758,-59.38061217682817,baseline,metac-perplexity,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,239758,-124.86646798931676,spot_baseline,metac-perplexity,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,239758,-139.39807113059962,spot_peer,metac-perplexity,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,239759,39.92538481088806,spot_baseline,metac-exa,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,239759,32.88432043325088,spot_peer,metac-exa,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,239759,19.324398269241296,baseline,metac-exa,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,239759,15.653638968978765,peer,metac-exa,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,239759,0.1422494512112277,relative_legacy,metac-exa,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,240414,-50.61284897192632,baseline,minefrac1,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,240414,-1.8167814058952767,relative_legacy,minefrac1,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,240414,-122.97944009018424,spot_baseline,minefrac1,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,240414,-137.42526923605195,spot_peer,minefrac1,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,240414,-56.5441778268513,peer,minefrac1,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,240416,-0.1416893767561479,relative_legacy,metac-o1-preview,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,240416,9.566957348864236,baseline,metac-o1-preview,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,240416,11.689553679870446,spot_peer,metac-o1-preview,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,240416,19.652129655480703,spot_baseline,metac-o1-preview,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,240416,5.39294298054508,peer,metac-o1-preview,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,246118,-4.047965191722888,relative_legacy,laylaps,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,246118,-123.74281289672363,spot_baseline,laylaps,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,246118,-138.223340806525,spot_peer,laylaps,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,246118,-129.43721761294896,peer,laylaps,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34203,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:24:01.881904+00,246118,-114.27497316702768,baseline,laylaps,True,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34689 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,185690,42.03316135913558,baseline,annabot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,185690,13.125036535188777,spot_peer,annabot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,185690,0.0253521843940363,relative_legacy,annabot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,185690,15.928790387080095,peer,annabot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,185690,49.63842153844621,spot_baseline,annabot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,187708,44.49854442296292,spot_peer,twsummerbot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,187708,0.325079495039441,relative_legacy,twsummerbot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,187708,31.699061568943616,peer,twsummerbot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,187708,47.703802238608446,baseline,twsummerbot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,187708,71.32665690583366,spot_baseline,twsummerbot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,189869,12.599353679888928,spot_peer,VeritasAI,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,189869,47.92446588472172,baseline,VeritasAI,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,189869,18.4548988975791,peer,VeritasAI,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,189869,0.0456626285101073,relative_legacy,VeritasAI,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,189869,49.275021515244255,spot_baseline,VeritasAI,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,190710,55.551565619437206,spot_baseline,Bot_Pepa,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,190710,46.56397169939063,baseline,Bot_Pepa,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,190710,23.24259194209815,peer,Bot_Pepa,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,190710,0.1239770706281828,relative_legacy,Bot_Pepa,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,190710,21.67880171358941,spot_peer,Bot_Pepa,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,191026,-38.53465392326868,baseline,manticAI,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,191026,-106.35297878116825,peer,manticAI,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,191026,-45.79678676057628,spot_baseline,manticAI,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,191026,-1.5807220338341736,relative_legacy,manticAI,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,191026,-124.9284846306238,spot_peer,manticAI,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,191935,21.505001330213897,baseline,pgodzinai,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,191935,-2.479294776888288,peer,pgodzinai,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,191935,36.73277167395026,spot_baseline,pgodzinai,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,191935,-5.543863952190422,spot_peer,pgodzinai,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,191935,-0.1059155724549821,relative_legacy,pgodzinai,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,191975,-0.0551242212921666,relative_legacy,jkraybill_bot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,191975,-1.4276796758632964,peer,jkraybill_bot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,191975,13.533076937391224,baseline,jkraybill_bot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,191975,37.30945446316877,spot_baseline,jkraybill_bot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,191975,-4.709653066435461,spot_peer,jkraybill_bot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,192418,7.429434946510355,peer,InstitutPelFutur,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,192418,2.653943613350664,spot_peer,InstitutPelFutur,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,192418,42.39984532774751,spot_baseline,InstitutPelFutur,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,192418,40.47507783647632,baseline,InstitutPelFutur,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,192418,-0.0896368372597102,relative_legacy,InstitutPelFutur,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,192924,29.248125036057807,spot_baseline,acm_bot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,192924,10.325380348365076,baseline,acm_bot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,192924,-5.527641707367086,peer,acm_bot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,192924,-0.1114476883248071,relative_legacy,acm_bot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,192924,-16.37091448688808,spot_peer,acm_bot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,220077,23.59848914332484,baseline,mmBot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,220077,-20.63985070754394,peer,mmBot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,220077,-0.4405478911362472,relative_legacy,mmBot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,220077,24.27134135851208,spot_baseline,mmBot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,220077,-23.570170642048247,spot_peer,mmBot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,222631,4.342961571252946,peer,Grizeu_Bot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,222631,15.714445486812169,spot_peer,Grizeu_Bot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,222631,13.835199737976572,baseline,Grizeu_Bot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,222631,51.42845760983855,spot_baseline,Grizeu_Bot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,222631,0.026580149899184,relative_legacy,Grizeu_Bot,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236037,0.0715259066521358,spot_peer,metac-o1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236037,0.5148984431980779,peer,metac-o1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236037,19.179921310252183,baseline,metac-o1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236037,40.61464224366355,spot_baseline,metac-o1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236037,-0.0367123408798827,relative_legacy,metac-o1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236038,27.7147367032891,baseline,metac-gpt-4o,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236038,55.551565619437206,spot_baseline,metac-gpt-4o,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236038,21.67880171358941,spot_peer,metac-gpt-4o,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236038,0.1068063762725656,relative_legacy,metac-gpt-4o,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236038,11.401420334248227,peer,metac-gpt-4o,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236040,-9.636460107315434,spot_peer,metac-claude-3-5-sonnet-latest,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236040,33.903595255631885,spot_baseline,metac-claude-3-5-sonnet-latest,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236040,-0.1082698267165188,relative_legacy,metac-claude-3-5-sonnet-latest,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236040,-4.314002134074255,peer,metac-claude-3-5-sonnet-latest,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236040,16.83435746087287,baseline,metac-claude-3-5-sonnet-latest,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236041,13.64808437764558,spot_peer,metac-claude-3-5-sonnet-20240620,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236041,24.800939708948132,baseline,metac-claude-3-5-sonnet-20240620,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236041,7.324647048386771,peer,metac-claude-3-5-sonnet-20240620,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236041,50.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236041,0.0516091606735999,relative_legacy,metac-claude-3-5-sonnet-20240620,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236043,24.064947077378264,spot_baseline,metac-grok-2-1212,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236043,11.930429476088367,baseline,metac-grok-2-1212,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236043,-11.414486350271057,peer,metac-grok-2-1212,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236043,-0.2055660333993999,relative_legacy,metac-grok-2-1212,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236043,-23.868734010503758,spot_peer,metac-grok-2-1212,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236047,-0.252576115989475,relative_legacy,metac-Llama-3.1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236047,-15.310532149308374,peer,metac-Llama-3.1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236047,7.760765246574409,baseline,metac-Llama-3.1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236047,-34.204862803965874,spot_peer,metac-Llama-3.1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,236047,16.91967040439284,spot_baseline,metac-Llama-3.1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,237476,60.08169305848252,spot_baseline,NextWorldLab,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,237476,41.57612437697168,baseline,NextWorldLab,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,237476,21.511878235091604,peer,NextWorldLab,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,237476,0.1780520624848909,relative_legacy,NextWorldLab,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,237476,28.23193923418386,spot_peer,NextWorldLab,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,239758,-0.0805250033587389,relative_legacy,metac-perplexity,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,239758,16.40285855636786,baseline,metac-perplexity,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,239758,35.684790742167955,spot_baseline,metac-perplexity,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,239758,-7.059839663102746,spot_peer,metac-perplexity,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,239758,-2.7930915472289146,peer,metac-perplexity,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,239759,25.75607930245796,baseline,metac-exa,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,239759,8.43924891691674,peer,metac-exa,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,239759,0.0656699626218607,relative_legacy,metac-exa,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,239759,15.714445486812169,spot_peer,metac-exa,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,239759,51.42845760983855,spot_baseline,metac-exa,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,240414,9.626025171902125,baseline,minefrac1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,240414,9.388397992923291,spot_peer,minefrac1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,240414,6.2594840507992e-05,relative_legacy,minefrac1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,240414,2.017923093096837,peer,minefrac1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,240414,47.05531554732157,spot_baseline,minefrac1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,240416,23.593494444183825,spot_peer,metac-o1-preview,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,240416,0.111023312637559,relative_legacy,metac-o1-preview,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,240416,11.104322527771403,peer,metac-o1-preview,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,240416,25.57910356859044,baseline,metac-o1-preview,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,240416,56.87517618749676,spot_baseline,metac-o1-preview,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,246118,50.0,spot_baseline,laylaps,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,246118,17.543406390481525,baseline,laylaps,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,246118,5.0623052565506,peer,laylaps,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,246118,0.0346565992121759,relative_legacy,laylaps,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,246118,13.64808437764558,spot_peer,laylaps,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,250015,50.0,spot_baseline,metac-deepseek-r1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,250015,13.64808437764558,spot_peer,metac-deepseek-r1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,250015,1.7851746609889785,peer,metac-deepseek-r1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,250015,0.0065843106181795,relative_legacy,metac-deepseek-r1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34204,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:24:01.915069+00,250015,6.538623383974062,baseline,metac-deepseek-r1,True,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34690 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,185690,13.45606832956113,baseline,annabot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,185690,15.632622585608514,spot_baseline,annabot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,185690,17.647335009932622,spot_peer,annabot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,185690,0.1272594417555853,relative_legacy,annabot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,185690,11.52521861426191,peer,annabot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,187708,0.0013149975513674,relative_legacy,twsummerbot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,187708,4.745582351273349,spot_baseline,twsummerbot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,187708,1.868663319872744,spot_peer,twsummerbot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,187708,0.1469604639823344,baseline,twsummerbot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,187708,0.057868478131368,peer,twsummerbot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,189869,-8.289813499309075,baseline,VeritasAI,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,189869,-21.634093636897976,peer,VeritasAI,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,189869,-0.3222501463337145,relative_legacy,VeritasAI,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,189869,-17.427424680778635,spot_peer,VeritasAI,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,189869,-8.568420915599027,spot_baseline,VeritasAI,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,190710,-32.82706992035919,peer,Bot_Pepa,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,190710,-81.7422869493031,spot_peer,Bot_Pepa,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,190710,-52.94468445267842,spot_baseline,Bot_Pepa,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,190710,-0.4190303990449705,relative_legacy,Bot_Pepa,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,190710,-20.52954161705722,baseline,Bot_Pepa,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,191026,25.4195294854564,baseline,manticAI,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,191026,38.76511636243722,spot_peer,manticAI,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,191026,30.20356618344304,spot_baseline,manticAI,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,191026,0.3742246390494002,relative_legacy,manticAI,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,191026,30.12259601644144,peer,manticAI,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,191935,0.7726487545005646,relative_legacy,pgodzinai,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,191935,53.61384195083477,peer,pgodzinai,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,191935,39.73114686311553,baseline,pgodzinai,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,191935,104.1158231726344,spot_peer,pgodzinai,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,191935,75.29454648649785,spot_baseline,pgodzinai,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,191975,17.138738691244065,spot_baseline,jkraybill_bot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,191975,19.830160740932214,spot_peer,jkraybill_bot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,191975,0.0944675520034728,relative_legacy,jkraybill_bot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,191975,5.662782689122935,peer,jkraybill_bot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,191975,5.503301029347075,baseline,jkraybill_bot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,192418,14.05174411026768,spot_peer,InstitutPelFutur,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,192418,10.1771951043883,peer,InstitutPelFutur,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,192418,12.4960769470468,baseline,InstitutPelFutur,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,192418,0.0861661148317922,relative_legacy,InstitutPelFutur,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,192418,13.151720291689688,spot_baseline,InstitutPelFutur,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,220077,-35.63646173574118,baseline,mmBot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,220077,-36.84827970831032,spot_baseline,mmBot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,220077,-58.41364294827205,spot_peer,mmBot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,220077,-0.8692467028819617,relative_legacy,mmBot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,220077,-65.24897840126812,peer,mmBot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,222631,2.5285105800269743,baseline,Grizeu_Bot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,222631,13.151720291689688,spot_baseline,Grizeu_Bot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,222631,14.05174411026768,spot_peer,Grizeu_Bot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,222631,0.0436355671042271,relative_legacy,Grizeu_Bot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,222631,2.398065132809009,peer,Grizeu_Bot,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236037,-9.221228556871385,spot_baseline,metac-o1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236037,-4.303229244295083,baseline,metac-o1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236037,-10.10105327320348,peer,metac-o1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236037,-18.373543848770097,spot_peer,metac-o1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236037,-0.0901069160401203,relative_legacy,metac-o1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236038,-31.05196564728366,peer,metac-gpt-4o,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236038,-58.41364294827205,spot_peer,metac-gpt-4o,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236038,-18.31815414629449,baseline,metac-gpt-4o,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236038,-36.84827970831032,spot_baseline,metac-gpt-4o,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236038,-0.3672871241305703,relative_legacy,metac-gpt-4o,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236040,0.5930664504604899,baseline,metac-claude-3-5-sonnet-latest,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236040,1.201485984077952,spot_baseline,metac-claude-3-5-sonnet-latest,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236040,-3.271436453081075,peer,metac-claude-3-5-sonnet-latest,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236040,0.0131419590327915,relative_legacy,metac-claude-3-5-sonnet-latest,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236040,-3.267822980558828,spot_peer,metac-claude-3-5-sonnet-latest,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236041,-15.756040851531464,peer,metac-claude-3-5-sonnet-20240620,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236041,-7.937903672145135,baseline,metac-claude-3-5-sonnet-20240620,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236041,-28.337789919222224,spot_peer,metac-claude-3-5-sonnet-20240620,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236041,-16.096404744368115,spot_baseline,metac-claude-3-5-sonnet-20240620,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236041,-0.157385888963957,relative_legacy,metac-claude-3-5-sonnet-20240620,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236043,-7.923392477162693,baseline,metac-grok-2-1212,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236043,-16.096404744368105,spot_baseline,metac-grok-2-1212,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236043,-0.1570241953133809,relative_legacy,metac-grok-2-1212,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236043,-15.721029836062309,peer,metac-grok-2-1212,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236043,-28.33778991922221,spot_peer,metac-grok-2-1212,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236047,-6.014711685885597,spot_baseline,metac-Llama-3.1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236047,-13.726314125455652,spot_peer,metac-Llama-3.1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236047,-0.0605399616763195,relative_legacy,metac-Llama-3.1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236047,-7.692839489411418,peer,metac-Llama-3.1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,236047,-2.736420479630427,baseline,metac-Llama-3.1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,237476,-35.27608989013566,baseline,NextWorldLab,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,237476,-0.7783318612444345,relative_legacy,NextWorldLab,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,237476,-77.47453297673096,spot_peer,NextWorldLab,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,237476,-50.0,spot_baseline,NextWorldLab,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,237476,-59.18651031473355,peer,NextWorldLab,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,239758,22.33524371575808,peer,metac-perplexity,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,239758,51.68839357718752,spot_peer,metac-perplexity,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,239758,0.3503773593279874,relative_legacy,metac-perplexity,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,239758,39.12042824636868,spot_baseline,metac-perplexity,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,239758,17.807893704123384,baseline,metac-perplexity,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,239759,34.569858014487245,baseline,metac-exa,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,239759,46.34191165833844,peer,metac-exa,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,239759,68.9255811626865,spot_baseline,metac-exa,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,239759,0.6863432923181895,relative_legacy,metac-exa,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,239759,94.88523242558624,spot_peer,metac-exa,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,240414,-2.932795191642677,baseline,minefrac1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,240414,-0.055326343464042,relative_legacy,minefrac1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,240414,-39.35275291981317,spot_peer,minefrac1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,240414,-5.1492489832132495,peer,minefrac1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,240414,-23.696559416620616,spot_baseline,minefrac1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,240416,7.879821760344498,baseline,metac-o1-preview,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,240416,0.1513930869150947,relative_legacy,metac-o1-preview,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,240416,20.79895313828646,spot_peer,metac-o1-preview,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,240416,17.807190511263755,spot_baseline,metac-o1-preview,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,240416,7.96618026697768,peer,metac-o1-preview,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,246118,0.9988838806918586,relative_legacy,laylaps,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,246118,58.34888678547102,baseline,laylaps,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,246118,80.91170519039828,peer,laylaps,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,246118,63.151720291689685,spot_baseline,laylaps,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,246118,86.51713116880742,spot_peer,laylaps,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,250015,-3.4723420104168694,peer,metac-deepseek-r1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,250015,-23.696559416620616,spot_baseline,metac-deepseek-r1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,250015,-39.35275291981317,spot_peer,metac-deepseek-r1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,250015,-0.0376019544461473,relative_legacy,metac-deepseek-r1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34205,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:24:02.139905+00,250015,-2.091120439770464,baseline,metac-deepseek-r1,True,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34691 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,185690,40.41036319222027,baseline,annabot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,185690,-0.0184427577197627,relative_legacy,annabot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,185690,12.479272557100272,spot_peer,annabot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,185690,13.40883033137286,peer,annabot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,185690,46.29997092781115,spot_baseline,annabot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,189869,32.38491280345596,spot_baseline,VeritasAI,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,189869,31.2306401422017,baseline,VeritasAI,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,189869,-4.561864336650996,peer,VeritasAI,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,189869,-0.2657054572179734,relative_legacy,VeritasAI,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,189869,-7.729682941655962,spot_peer,VeritasAI,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,190710,29.72538471557732,spot_peer,Bot_Pepa,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,190710,46.65417519660805,baseline,Bot_Pepa,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,190710,25.681297182453463,peer,Bot_Pepa,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,190710,0.1555964334616417,relative_legacy,Bot_Pepa,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,190710,58.17493661414397,spot_baseline,Bot_Pepa,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,191026,-49.65121260511491,spot_peer,manticAI,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,191026,3.519466394569885,spot_baseline,manticAI,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,191026,-0.7452373221235687,relative_legacy,manticAI,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,191026,-42.16733524887531,peer,manticAI,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,191026,2.962640302109206,baseline,manticAI,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,191935,4.521226813671769,peer,pgodzinai,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,191935,19.46392419121494,baseline,pgodzinai,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,191935,13.576265876531233,spot_peer,pgodzinai,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,191935,47.05531554732159,spot_baseline,pgodzinai,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,191935,-0.001401821715916,relative_legacy,pgodzinai,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,191975,41.39095123086598,spot_baseline,jkraybill_bot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,191975,13.203178037973016,baseline,jkraybill_bot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,191975,0.8927308025635603,peer,jkraybill_bot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,191975,-0.0335668211479176,relative_legacy,jkraybill_bot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,191975,5.349862121908152,spot_peer,jkraybill_bot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,192418,0.0,baseline,InstitutPelFutur,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,192418,0.0,spot_baseline,InstitutPelFutur,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,192418,-54.76256313715062,spot_peer,InstitutPelFutur,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,192418,-0.8761101498355874,relative_legacy,InstitutPelFutur,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,192418,-52.005928976274575,peer,InstitutPelFutur,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,192924,-27.27678305008013,spot_peer,acm_bot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,192924,-10.37784137686937,peer,acm_bot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,192924,6.572708957999122,baseline,acm_bot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,192924,18.92558116268648,spot_baseline,acm_bot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,192924,-0.1950445672031635,relative_legacy,acm_bot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,220077,6.8150874716428165,spot_peer,mmBot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,220077,42.39984532774752,spot_baseline,mmBot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,220077,10.656375885299466,peer,mmBot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,220077,40.79659872768921,baseline,mmBot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,220077,-0.0729806110209406,relative_legacy,mmBot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,222631,40.77877144312863,spot_baseline,Grizeu_Bot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,222631,5.698771154847244,baseline,Grizeu_Bot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,222631,0.3955391276260515,peer,Grizeu_Bot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,222631,-0.0163877289150407,relative_legacy,Grizeu_Bot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,222631,4.460788287141438,spot_peer,Grizeu_Bot,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236037,-0.0057818700039542,relative_legacy,metac-o1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236037,13.576265876531211,spot_peer,metac-o1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236037,47.05531554732157,spot_baseline,metac-o1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236037,22.70472266743268,baseline,metac-o1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236037,5.308540128996599,peer,metac-o1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236038,52.829176418318376,spot_baseline,metac-gpt-4o,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236038,26.55822595809666,baseline,metac-gpt-4o,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236038,9.867391689692544,peer,metac-gpt-4o,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236038,0.050951447361237,relative_legacy,metac-gpt-4o,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236038,21.961692394711225,spot_peer,metac-gpt-4o,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236040,28.66112158326277,spot_baseline,metac-claude-3-5-sonnet-latest,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236040,-7.925486120547719,peer,metac-claude-3-5-sonnet-latest,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236040,-0.1909534421481893,relative_legacy,metac-claude-3-5-sonnet-latest,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236040,-13.137776129842385,spot_peer,metac-claude-3-5-sonnet-latest,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236040,14.302765234220134,baseline,metac-claude-3-5-sonnet-latest,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236043,11.73834451666557,peer,metac-grok-2-1212,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236043,27.68402285778779,baseline,metac-grok-2-1212,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236043,55.551565619437206,spot_baseline,metac-grok-2-1212,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236043,25.915441040533292,spot_peer,metac-grok-2-1212,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236043,0.0779342697322268,relative_legacy,metac-grok-2-1212,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236047,5.691026567546659,peer,metac-Llama-3.1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236047,22.435463779183667,baseline,metac-Llama-3.1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236047,0.0029641247979316,relative_legacy,metac-Llama-3.1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236047,14.800305421410249,spot_peer,metac-Llama-3.1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,236047,47.89813898837222,spot_baseline,metac-Llama-3.1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,237476,40.838983234974926,baseline,NextWorldLab,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,237476,56.87517618749676,spot_baseline,NextWorldLab,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,237476,27.83773175815389,spot_peer,NextWorldLab,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,237476,0.1129049218730503,relative_legacy,NextWorldLab,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,237476,20.58584029754484,peer,NextWorldLab,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,239758,33.903595255631885,spot_baseline,metac-perplexity,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,239758,15.700578884129742,baseline,metac-perplexity,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,239758,-3.840906564585441,peer,metac-perplexity,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,239758,-0.1262019634736196,relative_legacy,metac-perplexity,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,239758,-5.5240876923592594,spot_peer,metac-perplexity,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,239759,40.77877144312863,spot_baseline,metac-exa,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,239759,20.27611348585534,baseline,metac-exa,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,239759,0.9483290239589371,peer,metac-exa,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,239759,-0.0690080284530635,relative_legacy,metac-exa,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,239759,4.460788287141438,spot_peer,metac-exa,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,240414,6.686930000501166,baseline,minefrac1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,240414,-4.045781574826664,peer,minefrac1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,240414,-0.0928585903472091,relative_legacy,minefrac1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,240414,-12.576938349798214,spot_baseline,minefrac1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,240414,-73.02815607612732,spot_peer,minefrac1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,240416,56.87517618749676,spot_baseline,metac-o1-preview,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,240416,26.0079806377143,baseline,metac-o1-preview,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,240416,11.549836001450206,peer,metac-o1-preview,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,240416,0.085624605284354,relative_legacy,metac-o1-preview,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,240416,27.83773175815389,spot_peer,metac-o1-preview,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,246118,31.31598397157827,baseline,laylaps,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,246118,33.903595255631885,spot_baseline,laylaps,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,246118,-5.5240876923592594,spot_peer,laylaps,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,246118,-0.2348325450744953,relative_legacy,laylaps,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,246118,-2.490029188760934,peer,laylaps,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,250015,13.936560888611211,baseline,metac-deepseek-r1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,250015,56.87517618749676,spot_baseline,metac-deepseek-r1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,250015,27.83773175815389,spot_peer,metac-deepseek-r1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,250015,0.0469381824887131,relative_legacy,metac-deepseek-r1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34206,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:24:02.175003+00,250015,6.169865018548597,peer,metac-deepseek-r1,True,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34692 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,185690,-44.21343877177341,spot_peer,annabot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,185690,-22.675913872233664,baseline,annabot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,185690,-25.728658641487915,spot_baseline,annabot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,185690,-0.4808127286912619,relative_legacy,annabot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,185690,-25.077993949128736,peer,annabot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,187708,0.4079251403457626,relative_legacy,twsummerbot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,187708,43.92045904163276,peer,twsummerbot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,187708,34.62135990448539,spot_baseline,twsummerbot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,187708,43.43339879407421,spot_peer,twsummerbot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,187708,25.45119353507994,baseline,twsummerbot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,189869,5.877608909141427,spot_baseline,VeritasAI,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,189869,5.731262591191172,baseline,VeritasAI,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,189869,21.45621736790811,peer,VeritasAI,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,189869,0.0772624151174909,relative_legacy,VeritasAI,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,189869,1.688608399305117,spot_peer,VeritasAI,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,190710,5.89145429448395,baseline,Bot_Pepa,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,190710,24.27134135851208,spot_baseline,Bot_Pepa,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,190710,28.4019801440304,spot_peer,Bot_Pepa,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,190710,-0.002810279763035,relative_legacy,Bot_Pepa,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,190710,7.409291190481877,peer,Bot_Pepa,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,191026,-1.2214544070253874,relative_legacy,manticAI,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,191026,-58.766717792329295,baseline,manticAI,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,191026,-81.33718483489282,peer,manticAI,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,191026,-108.21343787227536,spot_peer,manticAI,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,191026,-69.79643381655697,spot_baseline,manticAI,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,191935,-0.1434198851885877,relative_legacy,pgodzinai,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,191935,-3.5012103248822184,peer,pgodzinai,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,191935,-1.6280215371719988,baseline,pgodzinai,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,191935,-7.280266112344974,spot_baseline,pgodzinai,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,191935,-17.420683735235407,spot_peer,pgodzinai,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,191975,12.14774665239926,peer,jkraybill_bot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,191975,57.75507790628513,spot_baseline,jkraybill_bot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,191975,77.0306912696894,spot_peer,jkraybill_bot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,191975,0.1009762941151127,relative_legacy,jkraybill_bot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,191975,9.008092133494866,baseline,jkraybill_bot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,192418,0.7550812844323508,relative_legacy,InstitutPelFutur,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,192418,74.4626930810785,peer,InstitutPelFutur,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,192418,39.872841562952,baseline,InstitutPelFutur,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,192418,42.39984532774751,spot_baseline,InstitutPelFutur,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,192418,54.73015834488723,spot_peer,InstitutPelFutur,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,220077,-102.83985465072266,spot_peer,mmBot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,220077,-1.3003432326793467,relative_legacy,mmBot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,220077,-89.58586850386013,peer,mmBot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,220077,-66.09640474436827,spot_baseline,mmBot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,220077,-63.25531664334748,baseline,mmBot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,222631,3.3002041546066865,peer,Grizeu_Bot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,222631,2.5630225834854583,baseline,Grizeu_Bot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,222631,39.120428246368654,spot_baseline,Grizeu_Bot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,222631,0.0177344066326607,relative_legacy,Grizeu_Bot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,222631,49.96743344160789,spot_peer,Grizeu_Bot,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236037,15.687985600726185,spot_peer,metac-o1,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236037,9.476372416284873,peer,metac-o1,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236037,7.183195644273146,baseline,metac-o1,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236037,15.517006030607511,spot_baseline,metac-o1,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236037,-0.0748158628110566,relative_legacy,metac-o1,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236038,28.279858792711256,spot_baseline,metac-gpt-4o,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236038,34.22358359834391,spot_peer,metac-gpt-4o,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236038,0.0760046025402538,relative_legacy,metac-gpt-4o,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236038,20.055141626061346,peer,metac-gpt-4o,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236038,13.970497381978804,baseline,metac-gpt-4o,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236040,-52.542370236121975,spot_baseline,metac-claude-3-5-sonnet-latest,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236040,-0.7192076880072921,relative_legacy,metac-claude-3-5-sonnet-latest,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236040,-83.15521677441136,spot_peer,metac-claude-3-5-sonnet-latest,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236040,-38.49195850202538,peer,metac-claude-3-5-sonnet-latest,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236040,-25.844212119077223,baseline,metac-claude-3-5-sonnet-latest,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236041,-15.767680963327107,baseline,metac-claude-3-5-sonnet-20240620,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236041,-23.704242267871127,peer,metac-claude-3-5-sonnet-20240620,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236041,-0.5182467767183847,relative_legacy,metac-claude-3-5-sonnet-20240620,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236041,-53.60137920593111,spot_peer,metac-claude-3-5-sonnet-20240620,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236041,-32.192809488736245,spot_baseline,metac-claude-3-5-sonnet-20240620,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236043,-31.924150883793665,spot_baseline,metac-grok-2-1212,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236043,-15.61411762631978,baseline,metac-grok-2-1212,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236043,-0.5154948917711561,relative_legacy,metac-grok-2-1212,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236043,-23.49089982736673,peer,metac-grok-2-1212,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236043,-53.2112040630663,spot_peer,metac-grok-2-1212,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236047,32.784620252883265,peer,metac-Llama-3.1,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236047,23.252789648830174,baseline,metac-Llama-3.1,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236047,0.2424013938694483,relative_legacy,metac-Llama-3.1,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236047,52.00852192377671,spot_baseline,metac-Llama-3.1,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,236047,68.68491986983003,spot_peer,metac-Llama-3.1,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,237476,-0.5045465170244612,relative_legacy,NextWorldLab,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,237476,-25.315553882303828,peer,NextWorldLab,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,237476,-20.12000171525454,baseline,NextWorldLab,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,237476,-46.75838751710187,spot_peer,NextWorldLab,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,237476,-27.48100599644795,spot_baseline,NextWorldLab,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,239758,12.768552360504804,baseline,metac-perplexity,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,239758,17.47177559711822,peer,metac-perplexity,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,239758,0.0314916199952115,relative_legacy,metac-perplexity,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,239758,28.279858792711256,spot_baseline,metac-perplexity,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,239758,34.22358359834391,spot_peer,metac-perplexity,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,239759,37.42306165020178,spot_baseline,metac-exa,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,239759,18.96404931567572,baseline,metac-exa,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,239759,27.6231718365526,peer,metac-exa,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,239759,0.1734143737225665,relative_legacy,metac-exa,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,239759,47.5023337129209,spot_peer,metac-exa,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,240414,-3.992578017624692,peer,minefrac1,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,240414,-0.0886567513813765,relative_legacy,minefrac1,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,240414,-23.696559416620616,spot_baseline,minefrac1,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,240414,-41.262204041929024,spot_peer,minefrac1,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,240414,-2.418796157074002,baseline,minefrac1,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,240416,66.69914971465674,spot_peer,metac-o1-preview,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,240416,22.12452870487392,baseline,metac-o1-preview,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,240416,31.05975195375464,peer,metac-o1-preview,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,240416,50.64120201787919,spot_baseline,metac-o1-preview,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,240416,0.2232865473064803,relative_legacy,metac-o1-preview,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,246118,28.4019801440304,spot_peer,laylaps,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,246118,24.27134135851208,spot_baseline,laylaps,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,246118,13.33004493919371,peer,laylaps,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,246118,-0.0052925484282236,relative_legacy,laylaps,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34207,How many tornadoes will NOAA report for March 2025?,2025-02-01 05:24:02.214412+00,246118,10.047713039689054,baseline,laylaps,True,80 and above,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,0.6,2025-02-07 04:00:00+00,34693 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,185690,-0.5230331038496987,relative_legacy,annabot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,185690,35.57505060205081,baseline,annabot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,185690,-12.430893450203625,peer,annabot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,185690,39.925384810888346,spot_baseline,annabot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,185690,-13.304490603137452,spot_peer,annabot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,187708,28.554634259736737,spot_baseline,twsummerbot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,187708,18.771397681038337,baseline,twsummerbot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,187708,-0.5809687636956656,relative_legacy,twsummerbot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,187708,-16.243418002837025,peer,twsummerbot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,187708,-25.19209345206867,spot_peer,twsummerbot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,189869,22.79876114829691,peer,VeritasAI,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,189869,74.58274383888589,spot_baseline,VeritasAI,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,189869,22.92820292613271,spot_peer,VeritasAI,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,189869,0.3957944885862173,relative_legacy,VeritasAI,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,189869,72.30691878243364,baseline,VeritasAI,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,190710,36.238780125801966,baseline,Bot_Pepa,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,190710,22.92820292613241,spot_peer,Bot_Pepa,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,190710,11.517272138267233,peer,Bot_Pepa,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,190710,74.5827438388856,spot_baseline,Bot_Pepa,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,190710,0.2090029172598776,relative_legacy,Bot_Pepa,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,191026,36.92918478919231,spot_baseline,manticAI,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,191026,-16.436881534910572,spot_peer,manticAI,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,191026,32.60464482727852,baseline,manticAI,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,191026,-0.5959858722277873,relative_legacy,manticAI,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,191026,-15.170051694549016,peer,manticAI,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,191935,16.84191412202682,baseline,pgodzinai,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,191935,65.53086223300113,spot_peer,pgodzinai,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,191935,8.415992619329161,peer,pgodzinai,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,191935,0.1789269173586733,relative_legacy,pgodzinai,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,191935,115.33311361067308,spot_baseline,pgodzinai,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,191975,4.505918679615925,baseline,jkraybill_bot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,191975,-9.661853207127358,peer,jkraybill_bot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,191975,-0.3303423616061292,relative_legacy,jkraybill_bot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,191975,-37.5040751934948,spot_peer,jkraybill_bot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,191975,16.77795607228566,spot_baseline,jkraybill_bot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,192418,-24.968812603652854,spot_peer,InstitutPelFutur,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,192418,-0.8469213141888662,relative_legacy,InstitutPelFutur,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,192418,28.76820724517796,spot_baseline,InstitutPelFutur,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,192418,26.92984422939646,baseline,InstitutPelFutur,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,192418,-24.87404935459765,peer,InstitutPelFutur,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,192924,22.92820292613271,spot_peer,acm_bot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,192924,74.58274383888589,spot_baseline,acm_bot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,192924,0.3207317204646293,relative_legacy,acm_bot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,192924,18.93461836280773,peer,acm_bot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,192924,60.13395825375843,baseline,acm_bot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,220077,-0.3251798506236449,relative_legacy,mmBot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,220077,-5.108986086148082,peer,mmBot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,220077,46.02074920889174,baseline,mmBot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,220077,-4.509808420027996,spot_peer,mmBot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,220077,48.33768950777565,spot_baseline,mmBot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,222631,109.24010286688302,spot_baseline,Grizeu_Bot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,222631,90.04747011051137,baseline,Grizeu_Bot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,222631,1.1458987375102512,relative_legacy,Grizeu_Bot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,222631,50.07928771162811,peer,Grizeu_Bot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,222631,59.16089645540242,spot_peer,Grizeu_Bot,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236037,36.58810518173959,baseline,metac-o1,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236037,11.640581609508873,peer,metac-o1,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236037,0.2117359456040664,relative_legacy,metac-o1,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236037,22.92820292613271,spot_peer,metac-o1,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236037,74.58274383888589,spot_baseline,metac-o1,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236038,-0.283653378322569,relative_legacy,metac-gpt-4o,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236038,39.92538481088862,spot_baseline,metac-gpt-4o,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236038,20.2504214019412,baseline,metac-gpt-4o,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236038,-13.30449060313716,spot_peer,metac-gpt-4o,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236038,-6.335508262395785,peer,metac-gpt-4o,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236040,-13.30449060313716,spot_peer,metac-claude-3-5-sonnet-latest,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236040,-6.314659470957236,peer,metac-claude-3-5-sonnet-latest,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236040,20.0996448388353,baseline,metac-claude-3-5-sonnet-latest,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236040,39.92538481088862,spot_baseline,metac-claude-3-5-sonnet-latest,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236040,-0.2825627835007622,relative_legacy,metac-claude-3-5-sonnet-latest,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236041,-12.21991516520307,peer,metac-claude-3-5-sonnet-20240620,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236041,-24.968812603652676,spot_peer,metac-claude-3-5-sonnet-20240620,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236041,-0.4448990119242869,relative_legacy,metac-claude-3-5-sonnet-20240620,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236041,28.768207245178136,spot_baseline,metac-claude-3-5-sonnet-20240620,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236041,14.494218924678162,baseline,metac-claude-3-5-sonnet-20240620,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236043,27.40635722408045,baseline,metac-grok-2-1212,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236043,54.30948830847752,spot_baseline,metac-grok-2-1212,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236043,1.7334357807057756,spot_peer,metac-grok-2-1212,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236043,-0.0737530959475171,relative_legacy,metac-grok-2-1212,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236043,1.2890275108279678,peer,metac-grok-2-1212,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236047,22.92820292613241,spot_peer,metac-Llama-3.1,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236047,35.828521541757944,baseline,metac-Llama-3.1,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236047,11.38435387441374,peer,metac-Llama-3.1,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236047,0.2063893512126094,relative_legacy,metac-Llama-3.1,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,236047,74.5827438388856,spot_baseline,metac-Llama-3.1,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,237476,-0.621126499927584,spot_baseline,NextWorldLab,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,237476,-1.2970668618338328,relative_legacy,NextWorldLab,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,237476,-0.4624428529629439,baseline,NextWorldLab,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,237476,-42.00955119657343,peer,NextWorldLab,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,237476,-55.6940251553541,spot_peer,NextWorldLab,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,239758,-0.0729551298104479,relative_legacy,metac-perplexity,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,239758,54.30948868347755,spot_baseline,metac-perplexity,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,239758,25.630755181243345,baseline,metac-perplexity,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,239758,1.162680477999788,peer,metac-perplexity,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,239758,1.733436172751263,spot_peer,metac-perplexity,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,239759,-0.0752443323990074,relative_legacy,metac-exa,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,239759,1.200855002105028,peer,metac-exa,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,239759,26.58336640413749,baseline,metac-exa,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,239759,54.30948830847752,spot_baseline,metac-exa,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,239759,1.7334357807057756,spot_peer,metac-exa,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,240414,-21.244992319404968,peer,minefrac1,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,240414,-0.663612535845396,relative_legacy,minefrac1,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,240414,-2.092289870428937,baseline,minefrac1,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,240414,-61.20150613292254,spot_peer,minefrac1,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,240414,-5.889151782819132,spot_baseline,minefrac1,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,240416,35.166802244933294,baseline,metac-o1-preview,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,240416,74.58274383888589,spot_baseline,metac-o1-preview,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,240416,22.92820292613271,spot_peer,metac-o1-preview,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,240416,0.2028680717688963,relative_legacy,metac-o1-preview,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,240416,11.18275982218966,peer,metac-o1-preview,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,246118,0.3827693312907785,relative_legacy,laylaps,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,246118,22.00768793262314,peer,laylaps,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,246118,69.04679873874149,baseline,laylaps,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,246118,74.5827438388856,spot_baseline,laylaps,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34208,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:24:02.254897+00,246118,22.92820292613241,spot_peer,laylaps,True,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34694 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,185690,33.047517668117344,baseline,annabot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,185690,-0.2604855884551691,relative_legacy,annabot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,185690,-8.417027987183145,peer,annabot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,185690,-5.868478409973436,spot_peer,annabot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,185690,36.628229722591925,spot_baseline,annabot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,187708,16.81955871874186,peer,twsummerbot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,187708,47.26687671047316,baseline,twsummerbot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,187708,64.99865911261834,spot_baseline,twsummerbot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,187708,23.791515952326908,spot_peer,twsummerbot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,187708,0.3916950043802326,relative_legacy,twsummerbot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,189869,0.7376458141785311,relative_legacy,VeritasAI,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,189869,29.66695239624403,peer,VeritasAI,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,189869,71.90788301987675,baseline,VeritasAI,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,189869,74.58274383888589,spot_baseline,VeritasAI,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,189869,33.81124089342479,spot_peer,VeritasAI,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,190710,0.344778386812428,relative_legacy,Bot_Pepa,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,190710,33.811240893424646,spot_peer,Bot_Pepa,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,190710,32.91835612158274,baseline,Bot_Pepa,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,190710,74.58274383888575,spot_baseline,Bot_Pepa,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,190710,14.63665414183155,peer,Bot_Pepa,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,191026,33.287487077792115,spot_baseline,manticAI,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,191026,-0.3333418938519568,relative_legacy,manticAI,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,191026,-11.07896325567091,peer,manticAI,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,191026,29.39542730074832,baseline,manticAI,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,191026,-9.36107299317324,spot_peer,manticAI,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,191935,0.0055450019823587,relative_legacy,pgodzinai,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,191935,50.94881364877678,spot_baseline,pgodzinai,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,191935,2.3671612069389694,baseline,pgodzinai,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,191935,0.422941464783639,peer,pgodzinai,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,191935,9.103041149219823,spot_peer,pgodzinai,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,191975,-50.19086965575368,spot_baseline,jkraybill_bot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,191975,-96.63390048733474,spot_peer,jkraybill_bot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,191975,-0.8438797154000035,relative_legacy,jkraybill_bot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,191975,-29.236147919119624,peer,jkraybill_bot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,191975,-15.213621600233967,baseline,jkraybill_bot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,192418,51.08256237659889,spot_baseline,InstitutPelFutur,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,192418,9.242869364670206,spot_peer,InstitutPelFutur,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,192418,47.58604664341248,baseline,InstitutPelFutur,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,192418,5.308497544638844,peer,InstitutPelFutur,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,192418,0.103619074544553,relative_legacy,InstitutPelFutur,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,192924,-44.08111828612545,peer,acm_bot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,192924,-51.68752086339833,spot_peer,acm_bot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,192924,-1.2255629834913129,relative_legacy,acm_bot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,192924,-7.198680450249283,spot_baseline,acm_bot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,192924,-5.77734090611112,baseline,acm_bot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,220077,0.4375790791578616,relative_legacy,mmBot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,220077,63.605476271035634,spot_baseline,mmBot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,220077,18.02262041718368,peer,mmBot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,220077,60.257842366296494,baseline,mmBot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,220077,22.335006617944984,spot_peer,mmBot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,222631,33.811240893424646,spot_peer,Grizeu_Bot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,222631,0.2647856657927821,relative_legacy,Grizeu_Bot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,222631,11.203349279551222,peer,Grizeu_Bot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,222631,24.699169192239093,baseline,Grizeu_Bot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,222631,74.58274383888575,spot_baseline,Grizeu_Bot,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236037,65.4666660991881,spot_baseline,metac-o1,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236037,24.28079598374075,spot_peer,metac-o1,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236037,11.442564481016754,peer,metac-o1,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236037,0.2547025989878624,relative_legacy,metac-o1,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236037,31.886767835907776,baseline,metac-o1,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236038,-0.1073836769235334,relative_legacy,metac-gpt-4o,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236038,-2.421452635845364,spot_peer,metac-gpt-4o,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236038,39.925384810888346,spot_baseline,metac-gpt-4o,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236038,20.12577674481785,baseline,metac-gpt-4o,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236038,-1.7186410049520684,peer,metac-gpt-4o,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236040,-0.1071236984807209,relative_legacy,metac-claude-3-5-sonnet-latest,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236040,-2.421452635845078,spot_peer,metac-claude-3-5-sonnet-latest,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236040,39.92538481088862,spot_baseline,metac-claude-3-5-sonnet-latest,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236040,20.01475969421485,baseline,metac-claude-3-5-sonnet-latest,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236040,-1.7102166370896277,peer,metac-claude-3-5-sonnet-latest,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236041,39.925384810888346,spot_baseline,metac-claude-3-5-sonnet-20240620,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236041,20.01830938744661,baseline,metac-claude-3-5-sonnet-20240620,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236041,-1.7132460302263426,peer,metac-claude-3-5-sonnet-20240620,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236041,-0.1072170907218573,relative_legacy,metac-claude-3-5-sonnet-20240620,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236041,-2.421452635845364,spot_peer,metac-claude-3-5-sonnet-20240620,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236043,37.41564638771123,baseline,metac-grok-2-1212,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236043,74.58274383888575,spot_baseline,metac-grok-2-1212,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236043,33.811240893424646,spot_peer,metac-grok-2-1212,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236043,0.3942864426659438,relative_legacy,metac-grok-2-1212,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236043,16.569300975254514,peer,metac-grok-2-1212,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236047,5.268025782891358,spot_baseline,metac-Llama-3.1,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236047,2.5151399657008957,baseline,metac-Llama-3.1,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236047,-18.9045731429084,peer,metac-Llama-3.1,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236047,-0.5776424571909383,relative_legacy,metac-Llama-3.1,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,236047,-38.65414616511495,spot_peer,metac-Llama-3.1,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,237476,-31.267735730112072,peer,NextWorldLab,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,237476,4.011141881295912,baseline,NextWorldLab,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,237476,5.268025782891358,spot_baseline,NextWorldLab,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,237476,-38.65414616511495,spot_peer,NextWorldLab,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,237476,-0.8921917567562241,relative_legacy,NextWorldLab,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,239758,-2.421452635845078,spot_peer,metac-perplexity,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,239758,39.92538481088862,spot_baseline,metac-perplexity,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,239758,18.597734470174597,baseline,metac-perplexity,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,239758,-1.5050637561104747,peer,metac-perplexity,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,239758,-0.099306875637678,relative_legacy,metac-perplexity,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,239759,-1.659755025230922,peer,metac-exa,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,239759,39.92538481088862,spot_baseline,metac-exa,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,239759,-2.421452635845078,spot_peer,metac-exa,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,239759,-0.1052195715909374,relative_legacy,metac-exa,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,239759,19.66477295511139,baseline,metac-exa,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,240414,12.472883807802091,baseline,minefrac1,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,240414,-2.421452635845364,spot_peer,minefrac1,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,240414,-0.0589646273888195,relative_legacy,minefrac1,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,240414,39.925384810888346,spot_baseline,minefrac1,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,240414,-0.6903297277008235,peer,minefrac1,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,240416,39.92538481088862,spot_baseline,metac-o1-preview,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,240416,18.531178848034862,baseline,metac-o1-preview,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,240416,-0.0990786476993172,relative_legacy,metac-o1-preview,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,240416,-2.421452635845078,spot_peer,metac-o1-preview,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,240416,-1.4988743747637592,peer,metac-o1-preview,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,246118,33.811240893424646,spot_peer,laylaps,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,246118,0.7329479980081369,relative_legacy,laylaps,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,246118,74.58274383888575,spot_baseline,laylaps,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,246118,69.02742319717524,baseline,laylaps,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34209,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:24:02.296741+00,246118,29.389253457947028,peer,laylaps,True,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,2025-02-07 04:00:00+00,34695 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,187708,36.9243291772731,baseline,twsummerbot,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,187708,67.42945681835367,spot_baseline,twsummerbot,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,187708,65.54794027475994,spot_peer,twsummerbot,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,187708,37.96507852358801,peer,twsummerbot,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,187708,0.5234273772322828,relative_legacy,twsummerbot,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,189869,-3.1904978562239643,peer,VeritasAI,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,189869,-0.70573539228969,relative_legacy,VeritasAI,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,189869,-11.629542463316689,spot_peer,VeritasAI,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,189869,-5.889151782819132,spot_baseline,VeritasAI,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,189869,-4.106536595263297,baseline,VeritasAI,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,190710,-5.889151782819132,spot_baseline,Bot_Pepa,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,190710,-4.22098705972527,baseline,Bot_Pepa,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,190710,-3.0596380337492333,peer,Bot_Pepa,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,190710,-0.7234113460909601,relative_legacy,Bot_Pepa,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,190710,-11.629542463316689,spot_peer,Bot_Pepa,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,191026,-8.249183558414561,peer,manticAI,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,191026,-1.0850223693959222,relative_legacy,manticAI,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,191026,-18.69795159319945,spot_peer,manticAI,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,191026,-11.058474538312137,baseline,manticAI,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,191026,-12.604140456207755,spot_baseline,manticAI,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,192418,61.333318648256494,spot_peer,InstitutPelFutur,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,192418,63.42556627317539,spot_baseline,InstitutPelFutur,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,192418,60.81020633373977,baseline,InstitutPelFutur,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,192418,0.9196066650046608,relative_legacy,InstitutPelFutur,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,192418,85.12082238047066,peer,InstitutPelFutur,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,192924,46.46192982482461,baseline,acm_bot,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,192924,53.04359803426295,spot_baseline,acm_bot,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,192924,50.40493102834867,spot_peer,acm_bot,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,192924,0.5755590716338869,relative_legacy,acm_bot,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,192924,56.87471082318291,peer,acm_bot,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,220077,-167.91008935230633,spot_peer,mmBot,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,220077,-154.3556713273593,spot_baseline,mmBot,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,220077,-5.10511683009249,relative_legacy,mmBot,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,220077,-167.00706099242396,peer,mmBot,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,220077,-153.30819170184986,baseline,mmBot,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236037,20.74650571124594,peer,metac-o1,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236037,43.6242534313504,spot_peer,metac-o1,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236037,0.1387297196519665,relative_legacy,metac-o1,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236037,46.60195431711461,spot_baseline,metac-o1,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236037,21.82627536834265,baseline,metac-o1,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236038,24.851888092469903,spot_peer,metac-gpt-4o,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236038,28.768207245178136,spot_baseline,metac-gpt-4o,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236038,-0.092643170362686,relative_legacy,metac-gpt-4o,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236038,13.322099736485615,peer,metac-gpt-4o,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236038,14.510332173696469,baseline,metac-gpt-4o,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236040,14.331306874745598,baseline,metac-claude-3-5-sonnet-latest,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236040,24.851888092469903,spot_peer,metac-claude-3-5-sonnet-latest,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236040,28.768207245178136,spot_baseline,metac-claude-3-5-sonnet-latest,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236040,13.066635720162251,peer,metac-claude-3-5-sonnet-latest,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236040,-0.0942272362073197,relative_legacy,metac-claude-3-5-sonnet-latest,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236041,19.835562313295235,spot_peer,metac-claude-3-5-sonnet-20240620,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236041,12.070067623520316,baseline,metac-claude-3-5-sonnet-20240620,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236041,10.717849348581677,peer,metac-claude-3-5-sonnet-20240620,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236041,-0.1618218594415682,relative_legacy,metac-claude-3-5-sonnet-20240620,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236041,24.002697754962192,spot_baseline,metac-claude-3-5-sonnet-20240620,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236043,-69.45123923531939,spot_peer,metac-grok-2-1212,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236043,-60.8197637162217,spot_baseline,metac-grok-2-1212,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236043,-1.3868090728205225,relative_legacy,metac-grok-2-1212,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236043,-34.247404316367145,peer,metac-grok-2-1212,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236043,-30.44388424659686,baseline,metac-grok-2-1212,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236045,26.0661393958966,baseline,metac-Gemini-Exp-1206,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236045,63.42556627317539,spot_baseline,metac-Gemini-Exp-1206,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236045,61.333318648256494,spot_peer,metac-Gemini-Exp-1206,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236045,0.3102472439853399,relative_legacy,metac-Gemini-Exp-1206,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236045,25.274681231042813,peer,metac-Gemini-Exp-1206,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236047,-2.822036619090764,baseline,metac-Llama-3.1,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236047,-5.889151782819132,spot_baseline,metac-Llama-3.1,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236047,-11.629542463316689,spot_peer,metac-Llama-3.1,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236047,-0.5783228321803057,relative_legacy,metac-Llama-3.1,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,236047,-5.214483486647154,peer,metac-Llama-3.1,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,237476,-2.662225335315892,spot_baseline,NextWorldLab,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,237476,-0.945369371775071,peer,NextWorldLab,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,237476,-0.6279344133713718,relative_legacy,NextWorldLab,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,237476,-8.232777781734328,spot_peer,NextWorldLab,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,237476,-1.8002837110691967,baseline,NextWorldLab,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,239758,61.333318648256494,spot_peer,metac-perplexity,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,239758,63.42556627317539,spot_baseline,metac-perplexity,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,239758,28.859720185996743,baseline,metac-perplexity,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,239758,28.143863523226344,peer,metac-perplexity,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,239758,0.350650971661941,relative_legacy,metac-perplexity,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,239759,9.791462728825865,baseline,metac-exa,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,239759,19.652129655480284,spot_baseline,metac-exa,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,239759,-0.2247628763756305,relative_legacy,metac-exa,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,239759,15.256016945419535,spot_peer,metac-exa,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,239759,8.255542696046655,peer,metac-exa,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,240416,12.20753808935686,peer,metac-o1-preview,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,240416,28.768207245178136,spot_baseline,metac-o1-preview,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,240416,-0.1000398131492543,relative_legacy,metac-o1-preview,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,240416,13.698091969044713,baseline,metac-o1-preview,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,240416,24.851888092469903,spot_peer,metac-o1-preview,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,246118,-141.29165558792985,spot_baseline,laylaps,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,246118,-84.0903691843696,baseline,laylaps,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,246118,-89.78562324923872,peer,laylaps,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,246118,-2.969869057428636,relative_legacy,laylaps,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,246118,-154.15849383711745,spot_peer,laylaps,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,250015,-0.0175508984687526,relative_legacy,metac-deepseek-r1,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,250015,0.0039330814493511,peer,metac-deepseek-r1,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,250015,5.268025782891358,spot_baseline,metac-deepseek-r1,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,250015,0.1127489806259169,baseline,metac-deepseek-r1,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34210,What will be the year-over-year percentage change in the number of employees of the US federal government for February 2025?,2025-02-01 05:24:02.549021+00,250015,0.1148549742732925,spot_peer,metac-deepseek-r1,True,0.73702,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34696 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,187708,-51.58388681779905,peer,twsummerbot,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,187708,-29.79440300381687,baseline,twsummerbot,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,187708,-1.7483496226957564,relative_legacy,twsummerbot,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,187708,-56.606244075766455,spot_baseline,twsummerbot,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,187708,-100.27452857168974,spot_peer,twsummerbot,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,189869,-0.5773930910804334,relative_legacy,VeritasAI,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,189869,-14.019627044420805,spot_peer,VeritasAI,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,189869,25.5412811882992,spot_baseline,VeritasAI,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,189869,17.98805041263059,baseline,VeritasAI,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,189869,-5.179734936036439,peer,VeritasAI,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,190710,-141.0689336537953,spot_baseline,Bot_Pepa,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,190710,-96.74642653557126,baseline,Bot_Pepa,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,190710,-128.0721100403196,peer,Bot_Pepa,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,190710,-3.8614243298655255,relative_legacy,Bot_Pepa,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,190710,-188.96035262862003,spot_peer,Bot_Pepa,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,191026,9.168521622871598,spot_baseline,manticAI,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,191026,8.046009738106353,baseline,manticAI,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,191026,-26.616920459600557,peer,manticAI,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,191026,-1.163908552728627,relative_legacy,manticAI,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,191026,-31.211024588119784,spot_peer,manticAI,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,191935,46.12855182594647,baseline,pgodzinai,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,191935,28.22097753788281,peer,pgodzinai,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,191935,85.46234775707188,spot_baseline,pgodzinai,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,191935,0.420017175383734,relative_legacy,pgodzinai,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,191935,48.8974928527905,spot_peer,pgodzinai,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,192418,-1.3097467543436698,relative_legacy,InstitutPelFutur,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,192418,8.494951527269798,spot_baseline,InstitutPelFutur,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,192418,-33.73265568537169,peer,InstitutPelFutur,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,192418,-31.91827318850168,spot_peer,InstitutPelFutur,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,192418,8.093052479920045,baseline,InstitutPelFutur,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,192924,43.65751811065534,spot_peer,acm_bot,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,192924,70.2242783880154,baseline,acm_bot,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,192924,43.98044434896999,peer,acm_bot,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,192924,0.6362931933412905,relative_legacy,acm_bot,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,192924,80.47189562170504,spot_baseline,acm_bot,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,220077,93.10996605267532,baseline,mmBot,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,220077,64.49835599280665,peer,mmBot,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,220077,1.0489661766588751,relative_legacy,mmBot,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,220077,58.178326540452,spot_peer,mmBot,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,220077,94.30123698341616,spot_baseline,mmBot,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236037,10.762631323185689,peer,metac-o1,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236037,27.47637419002193,baseline,metac-o1,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236037,22.37059993497671,spot_peer,metac-o1,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236037,60.19864021629683,spot_baseline,metac-o1,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236037,0.0013305516949324,relative_legacy,metac-o1,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236038,-2.4395080418059933,spot_baseline,metac-gpt-4o,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236038,-1.2218396961736877,baseline,metac-gpt-4o,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236038,-20.791395511789563,peer,metac-gpt-4o,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236038,-0.889084149185633,relative_legacy,metac-gpt-4o,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236038,-43.39945573603125,spot_peer,metac-gpt-4o,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236040,-0.2750210215046217,relative_legacy,metac-claude-3-5-sonnet-latest,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236040,19.860216029730577,baseline,metac-claude-3-5-sonnet-latest,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236040,1.5276168265825638,peer,metac-claude-3-5-sonnet-latest,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236040,39.92538481088862,spot_baseline,metac-claude-3-5-sonnet-latest,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236040,1.0836817592980887,spot_peer,metac-claude-3-5-sonnet-latest,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236041,70.23217489849519,spot_baseline,metac-claude-3-5-sonnet-20240620,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236041,0.1616971607885169,relative_legacy,metac-claude-3-5-sonnet-20240620,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236041,35.17390464843694,baseline,metac-claude-3-5-sonnet-20240620,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236041,17.55932791750227,peer,metac-claude-3-5-sonnet-20240620,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236041,32.90581135128499,spot_peer,metac-claude-3-5-sonnet-20240620,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236043,-14.019627044420805,spot_peer,metac-grok-2-1212,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236043,-6.01108051082048,peer,metac-grok-2-1212,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236043,12.727744331963434,baseline,metac-grok-2-1212,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236043,25.5412811882992,spot_baseline,metac-grok-2-1212,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236043,-0.4821237014154483,relative_legacy,metac-grok-2-1212,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236045,55.43313145941384,spot_baseline,metac-Gemini-Exp-1206,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236045,7.252259437064353,peer,metac-Gemini-Exp-1206,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236045,22.01530317503649,baseline,metac-Gemini-Exp-1206,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236045,17.366815740249557,spot_peer,metac-Gemini-Exp-1206,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236045,-0.0552609739220858,relative_legacy,metac-Gemini-Exp-1206,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236047,37.47390873869522,spot_peer,metac-Llama-3.1,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236047,74.58274383888589,spot_baseline,metac-Llama-3.1,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236047,18.435872734204608,peer,metac-Llama-3.1,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236047,35.28232922748757,baseline,metac-Llama-3.1,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,236047,0.2015166859505207,relative_legacy,metac-Llama-3.1,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,237476,-0.4354724507776796,relative_legacy,NextWorldLab,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,237476,22.33137239784381,baseline,NextWorldLab,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,237476,-7.009228756633109,spot_peer,NextWorldLab,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,237476,32.21785098619224,spot_baseline,NextWorldLab,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,237476,0.0707367842141755,peer,NextWorldLab,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,239758,22.724962361926863,peer,metac-perplexity,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,239758,49.18894518269111,spot_peer,metac-perplexity,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,239758,85.73992140459626,spot_baseline,metac-perplexity,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,239758,38.66976356327383,baseline,metac-perplexity,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,239758,0.3327303651074835,relative_legacy,metac-perplexity,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,239759,12.543972746901476,peer,metac-exa,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,239759,0.0187504508001182,relative_legacy,metac-exa,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,239759,22.37059993497671,spot_peer,metac-exa,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,239759,60.19864021629683,spot_baseline,metac-exa,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,239759,30.579452780787776,baseline,metac-exa,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,240416,60.19864021629683,spot_baseline,metac-o1-preview,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,240416,28.069644628750726,baseline,metac-o1-preview,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,240416,11.061742488990635,peer,metac-o1-preview,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,240416,0.0035746777517754,relative_legacy,metac-o1-preview,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,240416,22.37059993497671,spot_peer,metac-o1-preview,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,246118,0.2974994790569747,relative_legacy,laylaps,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,246118,25.365657291620305,peer,laylaps,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,246118,44.49919566735405,baseline,laylaps,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,246118,37.473908738695066,spot_peer,laylaps,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,246118,74.58274383888575,spot_baseline,laylaps,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,250015,37.47390873869522,spot_peer,metac-deepseek-r1,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,250015,15.902888440906816,baseline,metac-deepseek-r1,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,250015,0.0811882864800297,relative_legacy,metac-deepseek-r1,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,250015,7.983226169884905,peer,metac-deepseek-r1,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34211,"How many US government workers will accept the deferred resignation offer from January 28, 2025?",2025-02-01 05:24:02.607166+00,250015,74.58274383888589,spot_baseline,metac-deepseek-r1,True,75000.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34697 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,187708,0.4022976271285829,relative_legacy,twsummerbot,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,187708,24.333206646729053,baseline,twsummerbot,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,187708,20.836575461719907,peer,twsummerbot,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,187708,45.58267394153011,spot_peer,twsummerbot,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,187708,51.00122946202254,spot_baseline,twsummerbot,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,189869,0.6198826235715065,relative_legacy,VeritasAI,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,189869,56.748996641949255,spot_baseline,VeritasAI,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,189869,33.25121376229809,peer,VeritasAI,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,189869,40.16308830020782,baseline,VeritasAI,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,189869,51.63295518355823,spot_peer,VeritasAI,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,190710,-93.03761703575584,spot_baseline,Bot_Pepa,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,190710,-106.03716447718396,spot_peer,Bot_Pepa,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,190710,-60.54828688601323,baseline,Bot_Pepa,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,190710,-73.0588573195295,peer,Bot_Pepa,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,190710,-2.215826627665291,relative_legacy,Bot_Pepa,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,191026,49.32071429863042,spot_baseline,manticAI,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,191026,0.4536788394293083,relative_legacy,manticAI,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,191026,29.673225493158277,peer,manticAI,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,191026,43.29188536346775,baseline,manticAI,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,191026,43.813710611643664,spot_peer,manticAI,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,191935,-42.90524672656031,peer,pgodzinai,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,191935,-40.68094472779366,spot_peer,pgodzinai,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,191935,-1.4240891025745233,relative_legacy,pgodzinai,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,191935,-30.94920827383504,spot_baseline,pgodzinai,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,191935,-25.35473154401496,baseline,pgodzinai,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,192418,15.15152462777164,spot_peer,InstitutPelFutur,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,192418,22.091637613952,spot_baseline,InstitutPelFutur,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,192418,-0.2602220831297382,relative_legacy,InstitutPelFutur,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,192418,1.38121710655997,peer,InstitutPelFutur,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,192418,20.94856088937332,baseline,InstitutPelFutur,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,192924,1.428108617217162,relative_legacy,acm_bot,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,192924,88.17942961306791,spot_baseline,acm_bot,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,192924,84.71762146894629,spot_peer,acm_bot,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,192924,76.77628166938405,baseline,acm_bot,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,192924,67.3506310047115,peer,acm_bot,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,220077,37.846859027019896,spot_peer,mmBot,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,220077,42.86340269247789,baseline,mmBot,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,220077,25.61975576708198,peer,mmBot,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,220077,0.3296950489939244,relative_legacy,mmBot,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,220077,43.65220529323784,spot_baseline,mmBot,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236037,10.7664960155077,baseline,metac-o1,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236037,22.091637613952,spot_baseline,metac-o1,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236037,15.15152462777164,spot_peer,metac-o1,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236037,0.0046060295703487,relative_legacy,metac-o1,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236037,6.435918998878367,peer,metac-o1,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236038,0.9283753206701726,baseline,metac-gpt-4o,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236038,1.8183825656864645,spot_baseline,metac-gpt-4o,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236038,-6.188743844086809,spot_peer,metac-gpt-4o,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236038,-0.2935074034491275,relative_legacy,metac-gpt-4o,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236038,-4.12440135291274,peer,metac-gpt-4o,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236040,6.796649660485591,peer,metac-claude-3-5-sonnet-latest,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236040,11.214546497696062,baseline,metac-claude-3-5-sonnet-latest,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236040,15.15152462777164,spot_peer,metac-claude-3-5-sonnet-latest,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236040,22.091637613952,spot_baseline,metac-claude-3-5-sonnet-latest,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236040,0.0064646822531187,relative_legacy,metac-claude-3-5-sonnet-latest,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236041,-6.4271551343343125,baseline,metac-claude-3-5-sonnet-20240620,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236041,-0.5045757390378226,relative_legacy,metac-claude-3-5-sonnet-20240620,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236041,-12.565721414044477,spot_baseline,metac-claude-3-5-sonnet-20240620,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236041,-21.32990592801412,spot_peer,metac-claude-3-5-sonnet-20240620,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236041,-11.874517737642291,peer,metac-claude-3-5-sonnet-20240620,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236043,-127.69497606374712,spot_baseline,metac-grok-2-1212,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236043,-65.11159627632063,baseline,metac-grok-2-1212,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236043,-73.87862310301892,peer,metac-grok-2-1212,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236043,-2.197112409192897,relative_legacy,metac-grok-2-1212,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236043,-142.5185950329643,spot_peer,metac-grok-2-1212,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236045,1.8183825656864645,spot_baseline,metac-Gemini-Exp-1206,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236045,-3.735894518021591,peer,metac-Gemini-Exp-1206,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236045,-6.188743844086809,spot_peer,metac-Gemini-Exp-1206,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236045,-0.2601313657836874,relative_legacy,metac-Gemini-Exp-1206,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236045,0.8194310884984427,baseline,metac-Gemini-Exp-1206,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236047,-2.220859610350206,peer,metac-Llama-3.1,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236047,-1.7103504616129368,baseline,metac-Llama-3.1,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236047,-32.83897753374006,spot_baseline,metac-Llama-3.1,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236047,-42.67017552769368,spot_peer,metac-Llama-3.1,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,236047,-0.0755413557297781,relative_legacy,metac-Llama-3.1,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,237476,-21.329905928015783,spot_peer,NextWorldLab,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,237476,-8.917653030405466,baseline,NextWorldLab,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,237476,-19.846734930992955,peer,NextWorldLab,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,237476,-0.7983580422797618,relative_legacy,NextWorldLab,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,237476,-12.56572141404606,spot_baseline,NextWorldLab,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,239758,-21.32990592801412,spot_peer,metac-perplexity,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,239758,-5.985726996917025,baseline,metac-perplexity,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,239758,-0.4720613992713798,relative_legacy,metac-perplexity,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,239758,-11.155000616613757,peer,metac-perplexity,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,239758,-12.565721414044477,spot_baseline,metac-perplexity,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,239759,19.319579385157475,peer,metac-exa,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,239759,47.63291851653714,spot_baseline,metac-exa,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,239759,42.037083472598106,spot_peer,metac-exa,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,239759,0.358684443753563,relative_legacy,metac-exa,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,239759,22.937689207008795,baseline,metac-exa,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,240416,-4.021066807751388,peer,metac-o1-preview,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,240416,1.8183814942581005,spot_baseline,metac-o1-preview,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,240416,-6.188744971906146,spot_peer,metac-o1-preview,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,240416,-0.2835873777152518,relative_legacy,metac-o1-preview,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,240416,0.9000983188852338,baseline,metac-o1-preview,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,246118,67.90617420765959,spot_baseline,laylaps,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,246118,0.7490236914868121,relative_legacy,laylaps,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,246118,36.15643608334235,peer,laylaps,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,246118,40.60319897296884,baseline,laylaps,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34212,"How many registered Syrian refugees will be in Lebanon on April 1, 2025, according to UNHCR?",2025-02-01 05:24:02.729922+00,246118,63.37735262114805,spot_peer,laylaps,True,755426.0,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34698 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,185690,40.63212732052425,baseline,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,185690,-10.36435184321046,spot_peer,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,185690,-0.1076289541860202,relative_legacy,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,185690,58.63083881095273,spot_baseline,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,185690,-7.309298602956405,peer,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,187708,13.9154769264463,spot_peer,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,187708,91.9912088677308,spot_baseline,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,187708,0.0628831207555632,relative_legacy,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,187708,5.668245111742321,peer,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,187708,37.47113539434707,baseline,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,189869,-2.641290279342825,peer,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,189869,47.99450800982141,baseline,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,189869,-3.6857614188685415,spot_peer,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,189869,-0.0440353406224879,relative_legacy,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,191026,-0.0556003383482374,relative_legacy,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,191026,-3.6857614188685415,spot_peer,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,191026,67.80719051126377,spot_baseline,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,191026,56.96048707980946,baseline,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,191026,-3.4814652716893724,peer,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,191935,0.1061359938361577,relative_legacy,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,191935,87.97057662822883,spot_baseline,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,191935,10.98924253052312,spot_peer,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,191935,8.68558692926516,peer,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,191935,68.00910786453478,baseline,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,192418,71.74122801731524,baseline,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,192418,2.1613431708821667,peer,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,192418,0.0178716046926087,relative_legacy,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,192418,2.679823871857112,spot_peer,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,192924,2.1613431708821667,peer,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,192924,65.99210904731979,baseline,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,192924,2.679823871857112,spot_peer,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,192924,0.0178716046926087,relative_legacy,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,220077,2.1613431708821667,peer,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,220077,0.0178716046926087,relative_legacy,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,220077,74.36019377224625,baseline,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,220077,2.679823871857112,spot_peer,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236037,-1.1211733077396556e-06,relative_legacy,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236037,36.80581838364724,baseline,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236037,76.55347463629771,spot_baseline,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236037,2.679823871857112,spot_peer,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236037,1.3274161618539704,peer,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236038,-5.287306447958848,peer,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236038,29.808258409440494,baseline,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236038,-0.0914880666982334,relative_legacy,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236038,-10.462306138313524,spot_peer,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236038,58.496250072115615,spot_baseline,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236040,1.404677432491754,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236040,2.679823871857112,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236040,38.6249454500712,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236040,2.155253601196608e-05,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236041,-0.1417975758220175,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236041,48.54268271702416,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236041,24.63336283512421,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236041,-8.947688813645538,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236041,-17.706557644443436,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236043,76.55347463629771,spot_baseline,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236043,1.4189687038175252,peer,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236043,0.000296267945201,relative_legacy,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236043,38.82267753026391,baseline,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236043,2.679823871857112,spot_peer,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236045,2.679823871857112,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236045,3.038734372338436e-06,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236045,33.787710141223464,baseline,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236045,1.206929646911176,peer,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236047,31.46407344619193,baseline,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236047,-3.0748023852760755,peer,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236047,-0.0607641997963948,relative_legacy,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236047,-6.344131257218974,spot_peer,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,236047,64.15460290875237,spot_baseline,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,237476,-6.945665338188128,peer,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,237476,-0.1019674326332766,relative_legacy,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,237476,-9.071557329561353,spot_peer,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,237476,60.40713236688608,spot_baseline,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,237476,44.834504742161336,baseline,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,239758,2.679823871857112,spot_peer,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,239758,2.0225464670390785e-07,relative_legacy,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,239758,1.3013415702394355,peer,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,239758,36.01694171540107,baseline,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,239759,37.52678984407527,baseline,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,239759,1.81110167321002e-05,relative_legacy,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,239759,2.679823871857112,spot_peer,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,239759,76.55347463629771,spot_baseline,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,239759,1.3543837010853952,peer,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,240416,45.39119222498478,baseline,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,240416,7.085411801099591,peer,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,240416,14.358515558430664,spot_peer,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,240416,0.0786753042763861,relative_legacy,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,246118,59.135742949930496,baseline,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,246118,11.29821383166485,peer,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,246118,0.1404396091816496,relative_legacy,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,246118,18.689026204505836,spot_peer,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,246118,98.5500430304885,spot_baseline,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,250015,44.36066514756145,spot_baseline,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,250015,20.49620495536432,baseline,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,250015,-9.547687263760432,peer,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,250015,-0.1487146470624682,relative_legacy,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34214,"Will Dogecoin close at $0.690 before April 1, 2025?",2025-02-01 05:24:02.884096+00,250015,-20.75024901613492,spot_peer,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34700 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,185690,5.297227481398839,spot_baseline,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,185690,28.40239951730929,spot_peer,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,185690,0.1028130814824019,relative_legacy,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,185690,3.858836827243552,baseline,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,185690,18.1960770850854,peer,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,187708,66.7000474137329,spot_peer,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,187708,0.3818032993681244,relative_legacy,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,187708,35.819602916881124,peer,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,187708,32.38501806116193,baseline,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,187708,57.918014812715,spot_baseline,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,189869,-2.134168568342496,peer,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,189869,-22.248200866741257,baseline,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,189869,-0.1562435794088693,relative_legacy,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,189869,1.116980421125206,spot_peer,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,191026,40.35303801084704,baseline,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,191026,59.50096691281675,spot_peer,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,191026,0.5092387902409177,relative_legacy,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,191026,51.25023892792695,peer,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,191026,48.02651220544628,spot_baseline,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,191935,39.87949721447178,peer,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,191935,34.005521786329936,baseline,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,191935,0.4057597230488499,relative_legacy,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,191935,59.87663815434456,spot_peer,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,191935,48.54268271702416,spot_baseline,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,192418,-44.69156202419245,peer,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,192418,-0.7345157943283327,relative_legacy,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,192418,-93.21583930651347,baseline,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,192418,-48.23340064967705,spot_peer,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,192924,-44.02775368308739,baseline,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,192924,-51.45731728297583,spot_baseline,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,192924,-12.537177756544056,peer,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,192924,-0.3191763653355033,relative_legacy,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,192924,-12.903815804449696,spot_peer,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,220077,-48.23340064967705,spot_peer,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,220077,-0.7345157943283327,relative_legacy,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,220077,-96.5681226650874,baseline,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,220077,-44.69156202419245,peer,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,220077,-100.0,spot_baseline,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236037,0.2099714252489638,peer,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236037,-32.19280948873623,spot_baseline,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236037,1.116980421125206,spot_peer,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236037,-0.084934839495371,relative_legacy,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236037,-15.31797677966393,baseline,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236038,13.750352374993504,spot_baseline,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236038,34.55462218857132,spot_peer,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236038,0.1303439089465,relative_legacy,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236038,16.54057663638631,peer,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236038,6.957987790613137,baseline,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236040,21.06046795815677,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236040,26.303440583379377,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236040,43.69081677248245,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236040,0.1934478903653147,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236040,13.199877558260404,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236041,0.1935454962046261,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236041,26.303440583379377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236041,13.252396133006778,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236041,21.109297702975677,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236041,43.69081677248245,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236043,0.2517404414130879,relative_legacy,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236043,37.85116232537298,spot_baseline,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236043,19.067966078892816,baseline,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236043,25.345405346483236,peer,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236043,52.09530107820378,spot_peer,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236045,-21.910516335698222,baseline,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236045,-51.45731728297583,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236045,-0.1543642602731419,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236045,-5.491744747751482,peer,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236045,-12.903815804449696,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236047,28.538795210294985,peer,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236047,0.3013371522940262,relative_legacy,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236047,59.87663815434456,spot_peer,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,236047,23.554370308255457,baseline,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,237476,19.491922333554783,peer,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,237476,4.280664071405084,baseline,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,237476,28.66522819021175,spot_peer,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,237476,5.658352836636751,spot_baseline,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,237476,0.1054437478544556,relative_legacy,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,239758,-564.3856189774723,spot_baseline,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,239758,-2.5356319063876955,relative_legacy,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,239758,-178.38141211717172,peer,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,239758,-260.58246240945385,baseline,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,239758,-386.2153622608381,spot_peer,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,239759,-32.19280948873623,spot_baseline,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,239759,1.116980421125206,spot_peer,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,239759,-0.0964670212829738,relative_legacy,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,239759,-0.2046568958423571,peer,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,239759,-15.958947338173957,baseline,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,240416,6.007061077686078,peer,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,240416,-7.383684726476441,baseline,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,240416,-15.200309344505014,spot_baseline,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,240416,13.48419916504544,spot_peer,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,240416,-0.0080928645882776,relative_legacy,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,246118,-19.31231964961305,baseline,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,246118,-0.1220538652714399,relative_legacy,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,246118,1.116980421125206,spot_peer,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,246118,-32.19280948873623,spot_baseline,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,246118,-1.3989393103796277,peer,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,250015,6.0823096092645885,peer,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,250015,-6.866025520913213,baseline,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,250015,5.44377864755789e-05,relative_legacy,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,250015,13.48419916504544,spot_peer,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34215,Will Bitcoin dominance exceed 63.0% on any single day in February or March 2025?,2025-02-01 05:24:03.150188+00,250015,-15.200309344505014,spot_baseline,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,1.0,2025-02-08 19:00:00+00,34701 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,185690,-0.3587742891820423,relative_legacy,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,185690,-22.729972036876863,peer,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,185690,21.2836087927242,baseline,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,185690,27.667531650318008,spot_baseline,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,185690,-30.347694441401465,spot_peer,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,187708,-0.1469416027851718,relative_legacy,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,187708,-5.636877991609478,peer,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,187708,29.5614309249482,baseline,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,187708,54.59683691052925,spot_baseline,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,187708,-10.699302846081965,spot_peer,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,189869,34.77776560479894,baseline,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,189869,-15.116586961769569,spot_peer,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,189869,-0.1949912940716838,relative_legacy,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,189869,-9.975749768260265,peer,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,191026,70.59158352781228,baseline,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,191026,0.0800662668322654,relative_legacy,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,191026,10.751137588909472,spot_peer,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,191026,83.99595874895317,spot_baseline,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,191026,10.473085464076457,peer,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,192418,62.91381576289589,baseline,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,192418,-0.4657061072573701,peer,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,192418,-0.0598676262474937,relative_legacy,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,192418,-1.0606508960303254,spot_peer,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,192418,67.80719051126377,spot_baseline,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,192924,-0.0186772535862082,relative_legacy,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,192924,2.903781161562999,peer,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,192924,61.75274075541344,baseline,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,192924,72.2466024471091,spot_baseline,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,192924,2.1784710688911053,spot_peer,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,220077,5.3208882425417565,spot_peer,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,220077,0.0212833702623703,relative_legacy,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,220077,6.185899589428902,peer,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,220077,73.56111580010777,baseline,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,222631,-7.854179436827294,spot_peer,Grizeu_Bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,222631,-0.1258282490916286,relative_legacy,Grizeu_Bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,222631,-4.5120082814436735,peer,Grizeu_Bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,222631,38.68662369504464,baseline,Grizeu_Bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236037,43.69336547709265,baseline,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236037,5.9061346365266365,peer,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236037,0.0091972977082974,relative_legacy,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236037,11.337563383588982,spot_peer,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236038,-1.0606508960303254,spot_peer,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236038,-0.4668516029395027,peer,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236038,35.36322534311617,baseline,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236038,-0.0780336055791877,relative_legacy,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236040,30.434141857116828,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236040,-4.009491042099235,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236040,-0.1266202591855429,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236040,-7.854179436827294,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236041,-11.87509912046316,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236041,19.74848437070628,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236041,-0.2342780860399157,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236041,-22.91742613584555,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236043,44.25734256750504,baseline,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236043,6.007713330166494,peer,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236043,0.0106721527780256,relative_legacy,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236043,11.337563383588982,spot_peer,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236045,2.7705429112848567,peer,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236045,39.10863285269055,baseline,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236045,-0.0336816606682623,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236045,5.3208882425417565,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236047,34.99756171813794,baseline,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236047,-0.4819705018692105,peer,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236047,-0.0783460698463485,relative_legacy,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,236047,-1.0606508960303254,spot_peer,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,237476,54.59683691052925,spot_baseline,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,237476,-10.699302846081965,spot_peer,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,237476,-0.1525646478660018,relative_legacy,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,237476,-7.218757501031955,peer,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,237476,42.292435509650815,baseline,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,239758,46.00071200231319,baseline,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,239758,0.0448021218659304,relative_legacy,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,239758,17.028849833091677,spot_peer,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,239758,8.485497156297408,peer,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,239759,0.0403411179361218,relative_legacy,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,239759,43.43209218578193,baseline,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,239759,7.986239659086206,peer,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,239759,17.028849833091677,spot_peer,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,240416,43.93305839314186,baseline,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,240416,5.9471174424040205,peer,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,240416,0.0096633434403643,relative_legacy,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,240416,11.337563383588982,spot_peer,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,246118,17.028849833091677,spot_peer,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,246118,92.5999418556223,spot_baseline,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,246118,55.63396234646112,baseline,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,246118,10.706472603016737,peer,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34216,Will ChatGPT be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.605634+00,246118,0.0790664264922013,relative_legacy,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34702 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,185690,-0.0035271354670045,relative_legacy,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,185690,1.861864210729629,peer,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,185690,81.2621439577092,spot_baseline,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,185690,65.79030801279634,baseline,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,185690,1.357986195743418,spot_peer,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,187708,-0.0943474388582511,relative_legacy,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,187708,-4.940658014769431,peer,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,187708,36.46124131390504,baseline,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,187708,66.72109124808708,spot_baseline,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,187708,-9.225057976707108,spot_peer,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,189869,48.22784818343759,baseline,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,189869,-8.434590002523993,spot_peer,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,189869,-0.1028240929899512,relative_legacy,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,189869,-5.5478785669605735,peer,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,191026,9.045016052621964,peer,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,191026,0.0882643408049889,relative_legacy,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,191026,9.609686974775205,spot_peer,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,191026,77.84066622941265,baseline,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,192418,-2.069004711798351,spot_peer,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,192418,-0.0526127388268592,relative_legacy,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,192418,-2.114393561749757,peer,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,192418,70.61160992104716,baseline,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,192924,-0.0466242643010649,relative_legacy,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,192924,-1.3066632271062704,peer,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,192924,65.05222933177738,baseline,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,192924,-2.069004711798351,spot_peer,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,220077,0.0953971182416764,relative_legacy,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,220077,9.95451193294306,peer,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,220077,88.52215958020538,baseline,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,220077,9.609686974775205,spot_peer,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,222631,46.79496246209935,baseline,Grizeu_Bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,222631,-1.0291195914104132,peer,Grizeu_Bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,222631,-2.069004711798351,spot_peer,Grizeu_Bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,222631,-0.0406161678759802,relative_legacy,Grizeu_Bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236037,43.29109962622117,baseline,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236037,2.0437728803337385,peer,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236037,0.0015003060175302,relative_legacy,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236037,3.932628741396251,spot_peer,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236038,-1.0244530012388762,peer,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236038,76.55347463629771,spot_baseline,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236038,-0.0406123117436815,relative_legacy,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236038,-2.069004711798351,spot_peer,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236038,39.71355774364498,baseline,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236040,-2.069004711798351,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236040,-1.023255475238224,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236040,-0.0405933732781026,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236040,39.5623426802856,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236041,-0.0406211119267936,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236041,39.69498185535494,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236041,-2.069004711798351,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236041,-1.0256461841534432,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236043,3.932628741396251,spot_peer,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236043,44.0372272662591,baseline,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236043,2.0946955004460466,peer,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236043,0.0022110691448715,relative_legacy,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236045,4.8070241842352175,peer,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236045,46.165599926884575,baseline,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236045,0.0393914114289533,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236045,9.609686974775205,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236047,-0.0852901613957159,relative_legacy,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236047,-4.275600658585725,peer,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236047,34.66065878999425,baseline,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,236047,-8.434590002523993,spot_peer,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,237476,-0.3454647817030155,relative_legacy,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,237476,29.814431432240063,baseline,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,237476,-30.236723304239668,spot_peer,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,237476,-23.885943568361437,peer,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,239758,45.59997310934024,baseline,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,239758,9.609686974775205,spot_peer,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,239758,4.741556340506702,peer,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,239758,0.0384079227391177,relative_legacy,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,239759,4.549948108350516,peer,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,239759,43.847801036437495,baseline,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,239759,9.609686974775205,spot_peer,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,239759,0.0369291497157194,relative_legacy,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,240416,43.50680521800125,baseline,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,240416,3.932628741396251,spot_peer,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,240416,0.0017120375709958,relative_legacy,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,240416,2.058077081355387,peer,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,246118,55.57940322791747,baseline,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,246118,0.055696319377731,relative_legacy,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,246118,9.609686974775205,spot_peer,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,246118,92.5999418556223,spot_baseline,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,246118,6.037262050098777,peer,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,250015,-1.0201164920467904,peer,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,250015,-2.069004711798351,spot_peer,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,250015,38.64491075296628,baseline,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34217,Will Claude be able to order you a Starbucks delivery in Q1 2025?,2025-02-01 05:24:03.710747+00,250015,-0.0406203750855756,relative_legacy,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.75,2025-02-08 19:00:00+00,34703 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,185690,-0.1396407194587218,relative_legacy,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,185690,49.67575427347083,baseline,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,185690,-10.022490503590609,peer,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,185690,-10.892127557232778,spot_peer,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,185690,58.68848128521847,spot_baseline,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,187708,48.05506462292144,baseline,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,187708,91.8386234446348,spot_baseline,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,187708,13.179987043011858,spot_peer,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,187708,0.0799613657502149,relative_legacy,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,187708,6.786042105848516,peer,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,189869,-13.325828194351962,peer,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,189869,-18.259541689880702,spot_peer,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,189869,34.423903902345025,baseline,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,189869,-0.1870635899473227,relative_legacy,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,191026,72.9728475198318,baseline,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,191026,8.026613322663412,peer,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,191026,86.78964639926548,spot_baseline,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,191026,0.0976400009716506,relative_legacy,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,191026,9.513651210554164,spot_peer,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,191935,56.21168554998689,baseline,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,191935,7.150336621046477,peer,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,191935,89.53026213333065,spot_baseline,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,191935,11.503760806718024,spot_peer,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,191935,0.0814559046898527,relative_legacy,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,192418,0.1530253806948275,relative_legacy,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,192418,85.06183481691644,baseline,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,192418,12.629864069779767,peer,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,192418,13.7328215964336,spot_peer,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,192924,1.4876229780566188,peer,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,192924,0.011574135717454,relative_legacy,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,192924,64.72515659284659,baseline,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,192924,2.080612203933888,spot_peer,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,220077,72.73142986208929,baseline,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,220077,0.6855696368435167,peer,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,220077,0.0056233503422155,relative_legacy,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,220077,2.080612203933888,spot_peer,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,222631,1.0414047956672134,peer,Grizeu_Bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,222631,2.080612203933888,spot_peer,Grizeu_Bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,222631,-1.901572821855793e-05,relative_legacy,Grizeu_Bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,222631,43.7845173126322,baseline,Grizeu_Bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236037,42.60557332835524,baseline,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236037,0.0414190975583351,relative_legacy,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236037,8.068636510976143,spot_peer,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236037,3.944409782286898,peer,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236038,-18.259541689880702,spot_peer,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236038,24.944377196605988,baseline,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236038,-9.510681163854995,peer,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236038,-0.1439124997525273,relative_legacy,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236040,0.0,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236040,0.9580566592859604,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236040,2.080612203933888,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236040,39.32177211587149,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236041,-11.031717057914356,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236041,30.186345966001067,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236041,-5.819912928037584,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236041,-0.0931921160913055,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236043,8.068636510976143,spot_peer,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236043,4.057992773166457,peer,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236043,43.78058686952038,baseline,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236043,0.0425547453294703,relative_legacy,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236045,37.05507209776824,baseline,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236045,2.080612203933888,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236045,0.8924133102759552,peer,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236045,-8.94328869437848e-06,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236047,-11.031717057914356,spot_peer,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236047,58.496250072115615,spot_baseline,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236047,-0.0913531529773657,relative_legacy,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236047,-5.701572750804652,peer,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,236047,29.60297259376332,baseline,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,237476,-7.086076856322049,peer,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,237476,49.93764472749539,baseline,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,237476,-0.1027456694691512,relative_legacy,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,237476,-8.27466571037999,spot_peer,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,237476,62.29303509201767,spot_baseline,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,239758,37.36443964694435,baseline,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,239758,2.080612203933888,spot_peer,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,239758,4.109578500377298e-06,relative_legacy,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,239758,0.901598486402557,peer,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,239759,3.747219596498853,peer,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,239759,40.53859883931241,baseline,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,239759,0.0394254431670728,relative_legacy,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,239759,8.068636510976143,spot_peer,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,240416,6.538776100276164e-06,relative_legacy,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,240416,38.86698230542129,baseline,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,240416,0.9457925995477072,peer,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,240416,2.080612203933888,spot_peer,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,246118,76.55347463629771,spot_baseline,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,246118,-1.901572821855793e-05,relative_legacy,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,246118,45.88617247299314,baseline,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,246118,1.0910635614261044,peer,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,246118,2.080612203933888,spot_peer,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,250015,-2.879437901834188,peer,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,250015,-11.031717057914356,spot_peer,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,250015,15.256691521854078,baseline,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34218,"Will the United States accuse the People's Republic of China of blockading Taiwan before April 1, 2025?",2025-02-01 05:24:03.75451+00,250015,-0.0471286099805591,relative_legacy,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34704 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,185690,-1.2352996342945195,spot_peer,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,185690,-0.0602570622311658,relative_legacy,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,185690,-2.289169921797474,peer,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,185690,73.86055878842353,baseline,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,185690,83.70551562730242,spot_baseline,annabot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,187708,74.67427157777361,spot_baseline,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,187708,-7.808280051668176,spot_peer,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,187708,-0.0623056753180286,relative_legacy,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,187708,-3.274774306513656,peer,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,187708,31.318214037196537,baseline,twsummerbot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,189869,-12.806172825592446,spot_peer,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,189869,48.53542527478683,baseline,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,189869,-0.159436546964349,relative_legacy,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,189869,-9.844040011106124,peer,VeritasAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,191026,77.87565766274449,baseline,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,191026,3.7146969011375615,peer,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,191026,0.0180264508619057,relative_legacy,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,191026,5.238104151706754,spot_peer,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,191935,5.0809106219572,peer,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,191935,60.93625611170432,baseline,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,191935,0.0461795013986645,relative_legacy,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,191935,97.08536543404836,spot_baseline,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,191935,8.502615794060022,spot_peer,pgodzinai,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,192418,97.08536543404836,spot_baseline,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,192418,8.502615794060022,spot_peer,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,192418,0.0584649251125808,relative_legacy,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,192418,6.937336818090527,peer,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,192418,88.54662167843718,baseline,InstitutPelFutur,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,192924,-3.8936435676625,peer,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,192924,80.73549220576041,spot_baseline,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,192924,-0.081819090142068,relative_legacy,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,192924,-3.3968961631753003,spot_peer,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,192924,68.07898622346511,baseline,acm_bot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,220077,87.47646395873879,baseline,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,220077,5.238104151706754,spot_peer,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,220077,0.0175556590361981,relative_legacy,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,220077,3.690735695199999,peer,mmBot,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236037,47.679293871424456,baseline,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236037,95.60566524124027,spot_baseline,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236037,7.425683276505172,spot_peer,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236037,0.0313628366279055,relative_legacy,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236037,3.685197382530356,peer,metac-o1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236038,-12.806172825592446,spot_peer,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236038,-0.1097085768588518,relative_legacy,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236038,-6.637063708676499,peer,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236038,34.93502289972274,baseline,metac-gpt-4o,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236040,-3.30975837859181,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236040,-6.440587534866798,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236040,-0.0640453685294846,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236040,39.03370323133073,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236041,-3.3323315160933085,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236041,-0.0643081608997154,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236041,-6.440587534866798,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236041,39.26186049620148,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236043,-0.2494778542078594,peer,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236043,-0.4389540816721809,spot_peer,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236043,-0.022015922107754,relative_legacy,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236043,43.54265422254409,baseline,metac-grok-2-1212,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236045,42.23808485572968,baseline,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236045,89.53026213333065,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236045,3.003977314741852,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236045,2.491477789382365e-06,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236045,1.3971537222529484,peer,metac-Gemini-Exp-1206,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236047,-12.806172825592446,spot_peer,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236047,-0.1073330994426567,relative_legacy,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236047,33.84586212744789,baseline,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,236047,-6.420468580936305,peer,metac-Llama-3.1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,237476,75.72578816879376,baseline,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,237476,5.238104151706754,spot_peer,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,237476,0.0180264508619057,relative_legacy,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,237476,3.649226266882255,peer,NextWorldLab,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,239758,5.238104151706754,spot_peer,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,239758,44.820845361924746,baseline,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,239758,2.5129822861186915,peer,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,239758,0.0147106819441534,relative_legacy,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,239759,5.238104151706754,spot_peer,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,239759,0.0144879499923144,relative_legacy,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,239759,44.53984487023247,baseline,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,239759,2.4978667380922683,peer,metac-exa,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,240416,95.60566524124027,spot_baseline,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,240416,7.425683276505172,spot_peer,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,240416,0.0319726089020312,relative_legacy,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,240416,3.7234819155001593,peer,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,240416,48.1908460785077,baseline,metac-o1-preview,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,246118,5.541481022240689,peer,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,246118,59.27124354300352,baseline,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,246118,98.5500430304885,spot_baseline,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,246118,9.568614797781926,spot_peer,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,246118,0.0538123201518765,relative_legacy,laylaps,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,250015,-0.0629577066685459,relative_legacy,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,250015,-6.440587534866798,spot_peer,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,250015,37.53211336231308,baseline,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34219,"Will the United States accuse the People's Republic of China of invading Taiwan before April 1, 2025?",2025-02-01 05:24:03.788835+00,250015,-3.1803415244171096,peer,metac-deepseek-r1,True,no,2025-02-08 19:00:00+00,2025-02-08 19:00:00+00,0.8,2025-02-08 19:00:00+00,34705 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,185699,-53.19793711397391,baseline,MWG,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,185699,-66.80875342929394,spot_baseline,MWG,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,185699,-0.0498961474596194,relative_legacy,MWG,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,185699,5.500587392331926,spot_peer,MWG,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,185699,1.5145324646883394,peer,MWG,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,187708,-22.15046967795361,baseline,twsummerbot,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,187708,21.601331348908563,peer,twsummerbot,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,187708,40.0704083152797,spot_peer,twsummerbot,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,187708,-36.99809410784236,spot_baseline,twsummerbot,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,187708,0.2394259505873565,relative_legacy,twsummerbot,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,189869,-54.03882860861734,baseline,VeritasAI,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,189869,10.353059152086326,peer,VeritasAI,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,189869,0.0589003027610281,relative_legacy,VeritasAI,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,189869,13.134435003514708,spot_peer,VeritasAI,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,189869,-60.22584312275592,spot_baseline,VeritasAI,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,191026,-0.6527384659073954,relative_legacy,manticAI,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,191026,-101.6025627148418,baseline,manticAI,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,191026,-43.80780314702792,peer,manticAI,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,191026,-109.59032742893848,spot_baseline,manticAI,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,191026,-44.11090680582906,spot_peer,manticAI,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,192418,-1.311812061078366,spot_peer,InstitutPelFutur,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,192418,-0.1090504416931301,relative_legacy,InstitutPelFutur,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,192418,-3.605371852924246,peer,InstitutPelFutur,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,192418,-51.21013470864796,baseline,InstitutPelFutur,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,192418,-72.68330278608423,spot_baseline,InstitutPelFutur,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,220077,-72.68330278608423,spot_baseline,mmBot,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,220077,-1.7994239015207354,peer,mmBot,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,220077,-0.1104124179823126,relative_legacy,mmBot,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,220077,-1.311812061078366,spot_peer,mmBot,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,220077,-71.0262976410521,baseline,mmBot,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236037,-0.2115704870990575,relative_legacy,metac-o1,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236037,-78.96330458458897,spot_baseline,metac-o1,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236037,-8.594392940256576,spot_peer,metac-o1,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236037,-65.44730922032312,baseline,metac-o1,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236037,-10.05816954385087,peer,metac-o1,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236038,-42.83575355927767,baseline,metac-gpt-4o,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236038,0.1549319842572744,relative_legacy,metac-gpt-4o,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236038,23.6403367345904,spot_peer,metac-gpt-4o,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236038,-51.16626893323938,spot_baseline,metac-gpt-4o,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236038,17.047587441842843,peer,metac-gpt-4o,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236040,0.3845983496213856,relative_legacy,metac-claude-3-5-sonnet-latest,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236040,-33.77567183784982,spot_baseline,metac-claude-3-5-sonnet-latest,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236040,-28.1973601905228,baseline,metac-claude-3-5-sonnet-latest,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236040,33.880055092697866,peer,metac-claude-3-5-sonnet-latest,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236040,43.80727839287636,spot_peer,metac-claude-3-5-sonnet-latest,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236041,11.899853028511162,spot_peer,metac-claude-3-5-sonnet-20240620,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236041,0.020513869230833,relative_legacy,metac-claude-3-5-sonnet-20240620,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236041,7.08883438710419,peer,metac-claude-3-5-sonnet-20240620,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236041,-51.14899827104346,baseline,metac-claude-3-5-sonnet-20240620,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236041,-61.290462541620336,spot_baseline,metac-claude-3-5-sonnet-20240620,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236043,-77.62802976546944,baseline,metac-grok-2-1212,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236043,-92.9947041435854,spot_baseline,metac-grok-2-1212,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236043,-24.86585358868937,spot_peer,metac-grok-2-1212,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236043,-0.3989218948871544,relative_legacy,metac-grok-2-1212,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236043,-23.767413084603323,peer,metac-grok-2-1212,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236045,-3.9878914050254415,peer,metac-Gemini-Exp-1206,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236045,-1.311812061078366,spot_peer,metac-Gemini-Exp-1206,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236045,-72.68330278608423,spot_baseline,metac-Gemini-Exp-1206,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236045,-0.1284799211044327,relative_legacy,metac-Gemini-Exp-1206,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236045,-60.02756480608986,baseline,metac-Gemini-Exp-1206,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236047,23.64033673459042,spot_peer,metac-Llama-3.1,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236047,16.919575991754538,peer,metac-Llama-3.1,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236047,0.154333441642003,relative_legacy,metac-Llama-3.1,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236047,-42.65923377990551,baseline,metac-Llama-3.1,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,236047,-51.16626893323938,spot_baseline,metac-Llama-3.1,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,237476,-0.7437465073083422,baseline,NextWorldLab,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,237476,-135.77627814322997,spot_baseline,NextWorldLab,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,237476,-74.47734778685037,spot_peer,NextWorldLab,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,237476,-0.0060430982111149,relative_legacy,NextWorldLab,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,237476,-0.4079671946201495,peer,NextWorldLab,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,239758,-0.3934447865396972,relative_legacy,metac-perplexity,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,239758,-24.86585358868937,spot_peer,metac-perplexity,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,239758,-92.9947041435854,spot_baseline,metac-perplexity,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,239758,-76.6033428582109,baseline,metac-perplexity,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,239758,-23.483004027893323,peer,metac-perplexity,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,239759,11.899853028511162,spot_peer,metac-exa,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,239759,-50.603490417497206,baseline,metac-exa,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,239759,6.971035761744464,peer,metac-exa,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,239759,0.0205853029377818,relative_legacy,metac-exa,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,239759,-61.290462541620336,spot_baseline,metac-exa,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,240416,11.899853028511162,spot_peer,metac-o1-preview,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,240416,-61.290462541620336,spot_baseline,metac-o1-preview,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,240416,0.020420038560156,relative_legacy,metac-o1-preview,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,240416,6.943171321058614,peer,metac-o1-preview,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,240416,-50.46278208126291,baseline,metac-o1-preview,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,246118,-40.55097226503358,peer,laylaps,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,246118,-0.6208942720102253,relative_legacy,laylaps,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,246118,-44.110906805829046,spot_peer,laylaps,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,246118,-109.59032742893848,spot_baseline,laylaps,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,246118,-93.598740636681,baseline,laylaps,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,247214,-37.51778038819605,spot_baseline,ajf-bot,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,247214,39.467756040661534,spot_peer,ajf-bot,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,247214,0.3248707620328957,relative_legacy,ajf-bot,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,247214,-30.336578081274336,baseline,ajf-bot,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34220,How many arms sales globally will the US State Department approve in March 2025?,2025-02-01 05:24:04.045627+00,247214,29.14883346061369,peer,ajf-bot,True,0-5,2025-02-09 00:44:00+00,2025-02-09 00:44:00+00,1.0,2025-02-09 00:44:00+00,34706 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,187708,52.11725239067436,baseline,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,187708,89.8401859992193,spot_baseline,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,187708,2.076260483005505,spot_peer,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,187708,-0.0061954805312425,relative_legacy,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,187708,1.1698182458537911,peer,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,189869,-9.455402623857037,peer,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,189869,44.3918091162687,baseline,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,189869,-13.923091490273558,spot_peer,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,189869,-0.1515885433499661,relative_legacy,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,191026,0.0107239012222733,relative_legacy,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,191026,4.08026875918596,spot_peer,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,191026,76.24448273306984,baseline,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,191026,2.425870907175131,peer,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,191935,5.721480989551628,spot_peer,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,191935,94.86008474933556,spot_baseline,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,191935,48.86802845615917,baseline,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,191935,3.0278814622449883,peer,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,191935,0.0206031371551984,relative_legacy,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,192418,4.396881725434845,peer,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,192418,93.14109210126423,baseline,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,192418,6.2628873871027455,spot_peer,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,192418,0.035472277968821,relative_legacy,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,192418,95.60566524124027,spot_baseline,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,192924,80.61116520246306,baseline,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,192924,4.08026875918596,spot_peer,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,192924,0.0093065094450423,relative_legacy,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,192924,92.5999418556223,spot_baseline,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,192924,2.327624795761474,peer,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,218666,91.3798964950696,spot_baseline,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,218666,0.0019502006997187,relative_legacy,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,218666,65.71393749381375,baseline,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,218666,1.908097596978643,peer,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,218666,3.194327709657799,spot_peer,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,220077,0.035472277968821,relative_legacy,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,220077,95.60566524124027,spot_baseline,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,220077,6.2628873871027455,spot_peer,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,220077,4.396881725434845,peer,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,220077,94.97868068799669,baseline,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236037,0.0086914029608675,relative_legacy,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236037,4.08026875918596,spot_peer,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236037,44.76435990864338,baseline,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236037,2.0914981794470515,peer,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236038,-13.923091490273558,spot_peer,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236038,33.38702792012019,baseline,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236038,-6.758942000972778,peer,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236038,-0.1131044629573928,relative_legacy,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236040,37.41043242680449,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236040,-3.592804624405755,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236040,-0.0695237926679884,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236040,-7.57194063331373,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236041,-0.0697198438842932,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236041,37.52764803277191,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236041,-7.57194063331373,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236041,-3.604227547386752,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236043,4.08026875918596,spot_peer,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236043,2.113706383344811,peer,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236043,45.2288813979677,baseline,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236043,0.0088422655059527,relative_legacy,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236045,-0.6121255444580441,peer,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236045,-1.5839163262714802,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236045,-0.0268986598112866,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236045,38.55790905626176,baseline,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236047,-13.923091490273558,spot_peer,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236047,-0.110219115160957,relative_legacy,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236047,-6.57598753769878,peer,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,236047,32.53356806640543,baseline,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,237476,-0.0717753547254943,relative_legacy,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,237476,79.90873060740036,spot_baseline,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,237476,51.90537172898637,baseline,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,237476,-3.5194216465726216,peer,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,237476,-5.13550745420001,spot_peer,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,239758,94.11063109464314,spot_baseline,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,239758,43.595684683281554,baseline,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,239758,5.177262078616911,spot_peer,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,239758,0.0155679605824934,relative_legacy,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,239758,2.510862565954691,peer,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,239759,45.455970207777305,baseline,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,239759,95.60566524124027,spot_baseline,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,239759,6.2628873871027455,spot_peer,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,239759,0.022861458447654,relative_legacy,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,239759,3.094802212701876,peer,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,240416,0.0085686130131355,relative_legacy,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,240416,4.08026875918596,spot_peer,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,240416,2.0431161762671923,peer,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,240416,43.78885467458736,baseline,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,246118,98.5500430304885,spot_baseline,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,246118,0.0439811106715755,relative_legacy,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,246118,4.854153699166321,peer,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,246118,56.77366694319191,baseline,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,246118,8.40095965322921,spot_peer,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,247214,7.444223279933997,spot_peer,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,247214,13.84173485721363,baseline,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,247214,1.080439478831116,peer,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,247214,0.0069145297843336,relative_legacy,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,247214,97.23250415571516,spot_baseline,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,250015,-0.0640455260869299,relative_legacy,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,250015,-7.57194063331373,spot_peer,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,250015,34.639710727518754,baseline,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34221,"Will China announce an agreement to build a PLA military base anywhere in North American or South American continents before April 1, 2025?",2025-02-01 05:24:04.113232+00,250015,-3.3227236292450324,peer,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34707 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,187708,4.508735802654961,peer,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,187708,41.169878217770695,baseline,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,187708,-0.0065214761577169,relative_legacy,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,187708,9.193936746359585,spot_peer,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,187708,80.4053558967353,spot_baseline,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,189869,-0.0765349069800242,relative_legacy,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,189869,-0.157249589441932,peer,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,189869,42.04129327357364,baseline,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,189869,0.0457261759936552,spot_peer,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,191026,12.384901339995722,spot_peer,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,191026,0.0353194037181082,relative_legacy,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,191026,69.83312219617778,baseline,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,191026,10.50357834848962,peer,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,191026,84.79969065549501,spot_baseline,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,191935,9.433666610151343,spot_peer,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,191935,80.73549220576041,spot_baseline,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,191935,-0.0032604985542156,relative_legacy,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,191935,4.9807087811195245,peer,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,191935,44.37099130616041,baseline,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,192418,12.19520246923888,peer,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,192418,0.0311256960213228,relative_legacy,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,192418,78.87852531317684,baseline,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,192418,81.55754288625727,spot_baseline,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,192418,10.03060215549434,spot_peer,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,192924,-0.0325887462377865,relative_legacy,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,192924,5.701178787881336,peer,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,192924,66.3244605329378,baseline,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,192924,6.3968770329534905,spot_peer,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,218666,58.64255912029527,baseline,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,218666,87.3419503434857,spot_baseline,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,218666,14.230973862357777,spot_peer,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,218666,0.0474573852054119,relative_legacy,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,218666,9.727616381783047,peer,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,220077,-23.96627025868437,peer,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,220077,37.31457856941741,baseline,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,220077,-0.391581355149534,relative_legacy,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,220077,-21.706969181727203,spot_peer,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236037,40.662109753347856,baseline,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236037,5.754012540876689,peer,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236037,0.0135727527194951,relative_legacy,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236037,12.384901339995722,spot_peer,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236038,23.76425080192293,baseline,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236038,-7.027998631759451,peer,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236038,-0.1624461699088936,relative_legacy,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236038,-13.943276860861122,spot_peer,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236040,-10.729695640864968,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236040,18.342402090823548,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236040,-21.706969181727203,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236040,-0.2130248899227725,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236041,-10.779107154757318,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236041,-0.2137622913869895,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236041,18.42650705012506,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236041,-21.706969181727203,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236043,41.12919349830091,baseline,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236043,12.384901339995722,spot_peer,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236043,0.0144540882763774,relative_legacy,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236043,5.833709979301876,peer,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236045,21.41719280444624,baseline,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236045,-0.147769892201076,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236045,48.54268271702416,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236045,-13.943276860861122,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236045,-6.346302042685447,peer,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236047,-3.404901803158777,peer,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236047,-6.715452228894758,spot_peer,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236047,58.496250072115615,spot_baseline,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236047,27.855156761855174,baseline,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,236047,-0.1119236782869249,relative_legacy,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,237476,-30.09239569990721,spot_peer,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,237476,-20.82124876534204,peer,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,237476,17.58026643481508,baseline,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,237476,26.303440583379377,spot_baseline,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,237476,-0.3605794240766586,relative_legacy,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,239758,0.0122597238664662,relative_legacy,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,239758,5.508369343685996,peer,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,239758,39.03201376877897,baseline,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,239758,12.384901339995722,spot_peer,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,239759,18.049086425453176,spot_peer,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,239759,44.12879211068173,baseline,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,239759,8.417586020396651,peer,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,239759,0.0504891702980139,relative_legacy,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,240416,12.384901339995722,spot_peer,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,240416,39.58601161732465,baseline,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,240416,0.0125416778661562,relative_legacy,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,240416,5.588288187107808,peer,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,246118,6.3968770329534905,spot_peer,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,246118,3.4801081614701856,peer,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,246118,-0.026244227289519,relative_legacy,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,246118,44.01785051905488,baseline,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,246118,76.55347463629771,spot_baseline,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,247214,5.823975629160938,peer,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,247214,33.85047890514151,baseline,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,247214,89.53026213333065,spot_baseline,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,247214,15.820025635737611,spot_peer,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,247214,0.027577478272633,relative_legacy,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,250015,-0.0938939325322252,relative_legacy,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,250015,-21.706969181727203,spot_peer,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,250015,-4.790296546473172,peer,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34222,"Will China announce an agreement to build second PLA military base in Africa before April 1, 2025?",2025-02-01 05:24:04.165293+00,250015,8.34394344013834,baseline,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.75,2025-02-09 07:00:00+00,34708 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,187708,-7.142262950305343,peer,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,187708,-3.209362970985334,spot_baseline,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,187708,-13.42510418719762,spot_peer,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,187708,-0.1591871581117828,relative_legacy,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,187708,-1.780331224340981,baseline,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,189869,-48.46055832915514,spot_peer,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,189869,-0.4482657845453092,relative_legacy,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,189869,-33.79183192482268,baseline,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,189869,-31.16703367341457,peer,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,191026,62.29923699464111,baseline,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,191026,75.61693281392988,spot_baseline,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,191026,39.342713353463296,peer,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,191026,43.81494071282915,spot_peer,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,191026,0.4226199765960575,relative_legacy,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,191935,0.7779171156362177,spot_peer,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,191935,16.349873228287958,spot_baseline,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,191935,-0.0483828574830306,relative_legacy,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,191935,8.691433329029557,baseline,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,191935,0.6629473592197201,peer,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,192418,-52.53463139085192,peer,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,192418,-48.46055832915514,spot_peer,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,192418,-49.04849120140964,baseline,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,192418,-0.7163573512824649,relative_legacy,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,192924,-0.2003723933503536,relative_legacy,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,192924,-9.294851464695428,peer,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,192924,0.0,spot_baseline,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,192924,-11.09461182128794,spot_peer,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,192924,0.0,baseline,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,218666,35.13873776608652,baseline,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,218666,0.2024480314524942,relative_legacy,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,218666,60.40713236688608,spot_baseline,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,218666,32.770280401950494,spot_peer,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,218666,19.76741190214683,peer,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,220077,44.49501448046325,spot_peer,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,220077,74.4777056935403,baseline,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,220077,0.5038260031294501,relative_legacy,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,220077,50.83804919124164,peer,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236037,-0.4916876479064702,peer,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236037,6.440948366381866,baseline,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236037,-1.1097358417872292,spot_peer,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236037,13.750352374993504,spot_baseline,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236037,-0.0588140724664131,relative_legacy,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236038,8.005741747602555,spot_peer,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236038,3.945246110076541,peer,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236038,5.364112855850245e-05,relative_legacy,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236038,12.79648274928775,baseline,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236040,7.870344747149275,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236040,18.080914510580868,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236040,0.0551552626910476,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236040,16.39116826578256,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236041,-0.1994064163619796,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236041,-15.200309344505014,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236041,-10.610459978861376,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236041,-7.303847244304547,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236041,-22.132380128298315,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236043,8.005741747602555,spot_peer,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236043,26.303440583379377,spot_baseline,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236043,1.337848281336998e-05,relative_legacy,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236043,3.8751782833772697,peer,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236043,12.604388426149503,baseline,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236045,24.154860586648663,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236045,0.0924257572407955,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236045,20.175145080437805,baseline,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236045,10.038972592695965,peer,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236045,48.54268271702416,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236047,22.619926556396948,baseline,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236047,24.154860586648663,spot_peer,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236047,0.1036205354310799,relative_legacy,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,236047,11.291191210009131,peer,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,237476,-55.43376850809676,baseline,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,237476,-47.90465531899,peer,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,237476,-68.16126829612975,spot_peer,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,237476,-0.6651015813251424,relative_legacy,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,237476,-78.58751946471523,spot_baseline,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,239758,-21.89640883926551,peer,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,239758,-0.3518873338034014,relative_legacy,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,239758,-51.45731728297583,spot_baseline,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,239758,-48.46055832915514,spot_peer,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,239758,-23.28513460836137,baseline,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,239759,15.313572361245871,peer,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,239759,28.420933793979515,baseline,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,239759,0.1564492877223318,relative_legacy,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,239759,31.382685218615,spot_peer,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,239759,58.496250072115615,spot_baseline,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,240416,8.005741747602555,spot_peer,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,240416,11.97373171475849,baseline,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,240416,3.6826509341588056,peer,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,240416,-4.789148776199544e-05,relative_legacy,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,240416,26.303440583379377,spot_baseline,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,246118,15.10212160986688,baseline,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,246118,8.005741747602555,spot_peer,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,246118,5.088995369033254,peer,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,246118,0.004529336908241,relative_legacy,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,246118,26.303440583379377,spot_baseline,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,247214,0.1025761850403807,relative_legacy,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,247214,9.777775299074657,peer,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,247214,21.334008128455544,baseline,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,247214,32.42345622705313,spot_baseline,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,247214,12.449816744968974,spot_peer,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,250015,-0.4530574486017818,peer,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,250015,-0.051349514325356,relative_legacy,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,250015,-1.1097358417872292,spot_peer,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,250015,13.750352374993504,spot_baseline,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34224,"Will Donald Trump have a positive net favorability rate on February 28, 2025, according to 538?",2025-02-01 05:24:04.236354+00,250015,5.627785909150355,baseline,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34710 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,187708,44.10810613283637,baseline,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,187708,0.8591881413418183,peer,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,187708,86.23521995320202,spot_baseline,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,187708,1.6167920368149984,spot_peer,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,187708,-0.0313097740461311,relative_legacy,twsummerbot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,189869,-7.3813353688469885,peer,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,189869,-0.1533361090546167,relative_legacy,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,189869,-11.764798740376108,spot_peer,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,189869,44.041641858979446,baseline,VeritasAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,191026,6.238561509083422,spot_peer,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,191026,0.0189516592669342,relative_legacy,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,191026,5.7703955007259,peer,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,191026,76.30819077464352,baseline,manticAI,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,191935,59.55764667444303,baseline,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,191935,91.07326619029126,spot_baseline,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,191935,5.129959579217653,spot_peer,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,191935,-0.0022199568009074,relative_legacy,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,191935,3.8739939479705816,peer,pgodzinai,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,192418,90.4738654959708,baseline,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,192418,95.60566524124027,spot_baseline,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,192418,0.0437207151571803,relative_legacy,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,192418,8.42118013700019,spot_peer,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,192418,7.884547703030943,peer,InstitutPelFutur,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,192924,65.33417960729749,baseline,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,192924,-5.413647883416274,spot_peer,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,192924,-0.1188792515732108,relative_legacy,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,192924,-4.8685723050807415,peer,acm_bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,218666,5.350844937953285,peer,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,218666,97.67302206771528,spot_baseline,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,218666,9.92239995702948,spot_peer,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,218666,0.0280385187810569,relative_legacy,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,218666,51.941355329223775,baseline,GreeneiBot2,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,220077,92.29467292208456,baseline,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,220077,0.0437207151571803,relative_legacy,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,220077,7.884547703030943,peer,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,220077,95.60566524124027,spot_baseline,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,220077,8.42118013700019,spot_peer,mmBot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236037,0.0007062166790021,relative_legacy,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236037,43.20435854219953,baseline,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236037,6.238561509083422,spot_peer,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236037,2.9272488887040025,peer,metac-o1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236038,-5.413647883416274,spot_peer,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236038,37.031115892355714,baseline,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236038,-2.601315663188306,peer,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236038,-0.0763802572121767,relative_legacy,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236038,76.55347463629771,spot_baseline,metac-gpt-4o,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236040,-5.413647883416274,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236040,-2.5518363907365664,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236040,-0.07491355018107,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236040,36.3312649677679,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236041,-2.568689291388606,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236041,36.57647945508249,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236041,-5.413647883416274,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236041,-0.0754141845880814,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236043,44.20107974029478,baseline,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236043,0.0009838469532986,relative_legacy,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236043,6.238561509083422,spot_peer,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236043,2.9848861563635225,peer,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236045,37.43343372278045,baseline,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236045,0.0,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236045,6.238561509083422,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236045,2.52134525950297,peer,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236047,-11.764798740376108,spot_peer,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236047,-5.425514632171992,peer,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236047,-0.1138609484377749,relative_legacy,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,236047,31.340707786217664,baseline,metac-Llama-3.1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,237476,-0.4608194408113121,relative_legacy,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,237476,26.303440583379377,spot_baseline,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,237476,-41.902920616276994,spot_peer,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,237476,19.03513817827112,baseline,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,237476,-30.663615308992348,peer,NextWorldLab,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,239758,6.238561509083422,spot_peer,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,239758,2.8226665072913737,peer,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,239758,41.7981518886556,baseline,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,239758,9.38003865821042e-06,relative_legacy,metac-perplexity,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,239759,6.238561509083422,spot_peer,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,239759,3.083353943122188,peer,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,239759,0.0012411781556712,relative_legacy,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,239759,45.3683906433964,baseline,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,240416,2.812202669841193,peer,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,240416,6.238561509083422,spot_peer,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,240416,9.38003865821042e-06,relative_legacy,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,240416,41.64339700713161,baseline,metac-o1-preview,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,246118,54.964780825272655,baseline,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,246118,95.60566524124027,spot_baseline,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,246118,8.42118013700019,spot_peer,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,246118,0.0183407240728071,relative_legacy,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,246118,5.017459644910296,peer,laylaps,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,247214,0.0071772106132323,relative_legacy,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,247214,4.528516016309837,peer,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,247214,57.19497454994128,baseline,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,247214,93.50825233186616,spot_baseline,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,247214,6.8981349664640135,spot_peer,ajf-bot,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,250015,32.028509419656025,baseline,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,250015,-2.2603180596932586,peer,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,250015,-0.0671166330197839,relative_legacy,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34225,"Before April 1, 2025, will the United States accuse Russia of invading any country other than Ukraine?",2025-02-01 05:24:04.501845+00,250015,-5.413647883416274,spot_peer,metac-deepseek-r1,True,no,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,1.0,2025-02-09 07:00:00+00,34711 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,185699,-305.88936890535683,spot_baseline,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,185699,-23.790479726812844,baseline,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,185699,-8.296456857797821,peer,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,185699,-0.1601300128356113,relative_legacy,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,185699,-106.6728364254922,spot_peer,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,187708,-123.3901564963814,baseline,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,187708,-26.78146084773508,peer,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,187708,-226.53445665209944,spot_baseline,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,187708,-0.5799882422573057,relative_legacy,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,187708,-49.16799211120468,spot_peer,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,189869,-50.67968756616455,baseline,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,189869,42.13417268484626,peer,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,189869,0.3455574534357961,relative_legacy,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,189869,61.58658169261828,spot_peer,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,189869,-73.69655941662063,spot_baseline,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,191026,-143.16853084606495,baseline,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,191026,-18.037033387693352,peer,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,191026,-0.3421230565818107,relative_legacy,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,191026,-10.87880536592146,spot_peer,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,191026,-173.6965594166206,spot_baseline,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,191935,-39.68823936994153,peer,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,191935,-0.7385184512604877,relative_legacy,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,191935,-70.25895475199694,spot_peer,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,191935,-145.00575589450446,baseline,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,191935,-255.6393348524385,spot_baseline,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,192418,-60.33854338354488,baseline,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,192418,-0.1334469363129245,relative_legacy,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,192418,7.424975891020828,peer,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,192418,19.19704766312837,spot_peer,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,192418,-132.19280948873623,spot_baseline,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,192924,-147.39950700421429,baseline,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,192924,-0.3844328181633039,relative_legacy,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,192924,-10.87880536592146,spot_peer,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,192924,-173.6965594166206,spot_baseline,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,192924,-22.26224989969381,peer,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,218666,-1.434558640793701,baseline,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,218666,-2.914634565951651,spot_baseline,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,218666,112.87897750314028,spot_peer,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,218666,0.5203247552257436,relative_legacy,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,218666,54.92531341937735,peer,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,220077,73.38846681080663,baseline,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,220077,1.739197711484274,relative_legacy,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,220077,170.4658504246533,spot_peer,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,220077,149.99246970195264,peer,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236037,-59.62578338236008,peer,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236037,-332.1928094887362,spot_baseline,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236037,-125.73372645395108,spot_peer,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236037,-1.0528456482808717,relative_legacy,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236037,-153.684844250406,baseline,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236038,-100.0,spot_baseline,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236038,0.0283721806568464,relative_legacy,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236038,42.52569166415938,spot_peer,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236038,19.39906928656737,peer,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236038,-48.10909476790571,baseline,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236040,77.70233458364982,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236040,0.2495430528944928,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236040,35.363817515482715,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236040,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236040,-24.156387270941263,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236041,-15.295385425727847,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236041,42.48581132712689,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236041,0.3462549504709696,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236041,-32.19280948873623,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236041,91.6624347216681,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236043,-0.6017958180353108,relative_legacy,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236043,-53.26833939541137,spot_peer,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236043,-232.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236043,-26.53721629788873,peer,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236043,-109.93320511309618,baseline,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236045,-28.973810593265178,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236045,22.725921053090733,peer,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236045,0.1034777679244607,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236045,61.58658169261828,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236045,-73.69655941662063,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236047,-56.87576167499043,baseline,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236047,19.19704766312837,spot_peer,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236047,-0.1292203787955411,relative_legacy,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236047,-132.19280948873623,spot_baseline,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,236047,6.781927012025722,peer,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,237476,-1.51811643328727,relative_legacy,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,237476,-332.1928094887362,spot_baseline,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,237476,-101.0885570577507,peer,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,237476,-246.47683687796012,baseline,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,237476,-125.73372645395108,spot_peer,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,239758,0.1279777176593016,relative_legacy,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,239758,-32.97230584882828,baseline,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,239758,-73.69655941662063,spot_baseline,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,239758,26.147158453244785,peer,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,239758,61.58658169261828,spot_peer,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,239759,-1.1012540783962268,relative_legacy,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,239759,-63.23459053671876,peer,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,239759,-163.8778803607654,baseline,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,239759,-125.73372645395108,spot_peer,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,239759,-332.1928094887362,spot_baseline,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,240416,-44.34226585645733,baseline,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,240416,-100.0,spot_baseline,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,240416,42.52569166415938,spot_peer,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,240416,0.0091286809595685,relative_legacy,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,240416,17.423917344592265,peer,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,246118,-128.48727073278468,peer,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,246118,-266.75711444949457,baseline,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,246118,-464.38561897747246,spot_baseline,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,246118,-221.52775751352183,spot_peer,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,246118,-1.943521876457058,relative_legacy,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,247214,-47.70909552586934,baseline,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,247214,39.52519468286541,peer,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,247214,-74.1782610463982,spot_baseline,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,247214,61.23751474213265,spot_peer,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,247214,0.2979469499861645,relative_legacy,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,250015,-51.45731728297583,spot_baseline,metac-deepseek-r1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,250015,0.1949805670213639,relative_legacy,metac-deepseek-r1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,250015,-20.66352209414817,baseline,metac-deepseek-r1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,250015,29.70910999817192,peer,metac-deepseek-r1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34226,"Will the Florida DOT Official Transportation Map display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.546643+00,250015,77.70233458364982,spot_peer,metac-deepseek-r1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34712 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,185699,4.2420885572895255,peer,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,185699,7.244502094097782,spot_peer,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,185699,-5.083256251240811,baseline,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,185699,-0.296075147700617,relative_legacy,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,185699,-8.926733809708741,spot_baseline,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,187708,11.772498155247376,peer,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,187708,3.894957182710552,baseline,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,187708,-0.2091306522795874,relative_legacy,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,187708,6.488285158485438,spot_baseline,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,187708,18.43818269380261,spot_peer,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,189869,0.0433244631078371,relative_legacy,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,189869,48.97615965345307,spot_peer,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,189869,32.06091468822405,baseline,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,189869,35.66616074118794,peer,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,191026,68.24741067897594,baseline,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,191026,82.78190246173199,spot_baseline,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,191026,73.83911250457524,spot_peer,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,191026,0.5036708590500639,relative_legacy,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,191026,73.81790776751095,peer,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,191935,0.1904199305525884,relative_legacy,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,191935,72.2466024471091,spot_baseline,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,191935,44.832871015694046,baseline,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,191935,42.72695732888037,peer,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,191935,66.18886026492011,spot_peer,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,192418,38.41388365834632,peer,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,192418,44.09925851220919,baseline,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,192418,0.2098157321871434,relative_legacy,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,192418,80.96852293976737,spot_peer,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,192924,-96.25467817815452,spot_peer,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,192924,-151.45731728297585,spot_baseline,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,192924,-127.92902954501226,baseline,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,192924,-77.14534765728996,peer,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,192924,-1.4310579853680672,relative_legacy,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,218666,28.36488914915229,baseline,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,218666,59.77419809667167,spot_peer,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,218666,63.41285575250405,spot_baseline,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,218666,0.0665150314987106,relative_legacy,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,218666,26.737299288474485,peer,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,220077,80.96852293976737,spot_peer,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,220077,88.28728656468628,baseline,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,220077,87.97810941151607,peer,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,220077,92.5999418556223,spot_baseline,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,220077,0.6517598919244715,relative_legacy,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236037,13.001691636322894,baseline,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236037,15.89071288809557,peer,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236037,-0.1083009663667731,relative_legacy,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236037,32.82704081440696,spot_peer,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236037,26.303440583379377,spot_baseline,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236038,32.82704081440696,spot_peer,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236038,13.137034031521054,baseline,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236038,16.045423078779677,peer,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236038,-0.1090198372402414,relative_legacy,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236040,34.22905616517089,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236040,69.31631354726765,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236040,0.1416793173193343,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236040,38.178679643946616,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236041,62.96516269030782,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236041,33.95496099734606,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236041,31.19078420915772,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236041,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236041,0.0987621690756773,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236043,-65.83073177496487,baseline,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236043,-82.26567514129978,spot_peer,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236043,-132.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236043,-41.36277641899638,peer,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236043,-0.898079381355022,relative_legacy,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236045,19.982774271448235,peer,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236045,18.647987858990312,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236045,37.85116232537298,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236045,41.212467332586975,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236045,-0.0508784135946812,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236047,24.126316661879383,baseline,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236047,24.00005406905257,peer,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236047,0.0017123727347845,relative_legacy,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,236047,48.97615965345307,spot_peer,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,237476,-227.49651297290737,spot_peer,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,237476,-252.6176281381641,baseline,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,237476,-172.35600341796365,peer,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,237476,-2.652024402132272,relative_legacy,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,237476,-332.1928094887362,spot_baseline,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,239758,62.96516269030782,spot_peer,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,239758,0.0909031183768568,relative_legacy,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,239758,29.635902704227508,peer,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,239758,32.01203099261193,baseline,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,239758,67.80719051126377,spot_baseline,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,239759,-396.1042942755274,spot_peer,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,239759,-183.64605450447613,peer,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,239759,-261.71185076078297,baseline,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,239759,-2.84224083746698,relative_legacy,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,239759,-564.3856189774725,spot_baseline,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,240416,0.0017436861056857,relative_legacy,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,240416,48.54268271702416,spot_baseline,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,240416,24.02130640455866,baseline,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,240416,23.900248016441303,peer,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,240416,48.97615965345307,spot_peer,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,246118,48.54268271702416,spot_baseline,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,246118,27.738629450240445,baseline,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,246118,28.321706093965798,peer,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,246118,0.0311797890344221,relative_legacy,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,246118,48.97615965345307,spot_peer,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,247214,-70.04138440606621,peer,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,247214,-133.6427664582477,spot_baseline,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,247214,-83.31856746880945,spot_peer,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,247214,-1.3257493553246342,relative_legacy,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34227,"Will Google Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.581135+00,247214,-116.81251893983608,baseline,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34713 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,185699,-34.242060747910514,baseline,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,185699,-68.51758853079805,spot_peer,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,185699,-8.271399189820157,peer,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,185699,-0.1327352388547563,relative_legacy,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,185699,-283.65012677171205,spot_baseline,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,187708,29.05346187639605,spot_peer,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,187708,-149.00508536956892,spot_baseline,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,187708,-79.14286783010829,baseline,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,187708,14.896164064698738,peer,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,187708,0.1310815477827704,relative_legacy,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,189869,-132.19280948873623,spot_baseline,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,189869,0.3024883262262829,relative_legacy,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,189869,41.23654266679097,spot_peer,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,189869,28.51693467300965,peer,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,189869,-87.70117708370613,baseline,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,191026,-0.6167122640321057,relative_legacy,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,191026,-51.34045135034645,spot_peer,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,191026,-214.35299353703456,baseline,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,191026,-47.709228227926445,peer,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,191026,-259.94620704162713,spot_baseline,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,191935,-295.6398223334732,baseline,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,191935,-464.38561897747246,spot_baseline,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,191935,-199.48826250985925,spot_peer,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,191935,-1.812336491001132,relative_legacy,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,191935,-129.2128600024911,peer,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,192418,-232.19280948873623,spot_baseline,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,192418,-31.228844391748773,spot_peer,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,192418,-0.2747398901596319,relative_legacy,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,192418,-15.57052094563156,peer,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,192418,-109.0542161183779,baseline,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,192924,74.52943273827414,spot_peer,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,192924,-72.41378023517471,baseline,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,192924,0.8195541215077771,relative_legacy,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,192924,-86.24964762500649,spot_baseline,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,192924,63.5498332839037,peer,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,218666,-32.207243104888185,baseline,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,218666,31.794522990093483,peer,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,218666,79.35832272370877,spot_peer,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,218666,-79.58592832197745,spot_baseline,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,218666,0.3877031046773794,relative_legacy,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,220077,11.160689637741132,spot_peer,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,220077,2.3872434722027047,peer,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,220077,-164.39153804211082,baseline,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,220077,-173.6965594166206,spot_baseline,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,220077,0.0528007706832395,relative_legacy,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236037,-0.2868035747569096,relative_legacy,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236037,-16.25242566189877,peer,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236037,-113.8276840034701,baseline,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236037,-31.228844391748773,spot_peer,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236037,-232.19280948873623,spot_baseline,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236038,0.2062437209228947,relative_legacy,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236038,19.664354353470685,peer,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236038,-65.71108227319118,baseline,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236038,-132.19280948873623,spot_baseline,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236038,41.23654266679097,spot_peer,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236040,-86.06865820447905,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236040,11.160689637741132,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236040,0.0001656291977519,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236040,4.666243725462951,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236040,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236041,4.679768292684268,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236041,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236041,11.160689637741132,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236041,5.358856185055781e-05,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236041,-86.36253426688478,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236043,-16.392958606302486,peer,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236043,-0.2894866772380395,relative_legacy,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236043,-31.228844391748773,spot_peer,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236043,-114.95772232695025,baseline,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236043,-232.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236045,72.61111369568994,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236045,-88.8968687611256,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236045,0.4055142952198387,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236045,33.89138288271996,peer,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236045,-42.59385820448898,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236047,0.204245732223332,relative_legacy,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236047,-132.19280948873623,spot_baseline,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236047,-65.05392215305942,baseline,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236047,19.446476288420268,peer,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,236047,41.23654266679097,spot_peer,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,237476,-31.228844391748773,spot_peer,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,237476,-0.3609454673582228,relative_legacy,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,237476,-232.19280948873623,spot_baseline,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,237476,-26.877977430546384,peer,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,237476,-180.78551115212608,baseline,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,239758,-81.52406336603521,baseline,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,239758,-173.6965594166206,spot_baseline,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,239758,11.160689637741132,spot_peer,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,239758,9.298628388160164e-05,relative_legacy,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,239758,4.379796766830565,peer,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,239759,-74.6222320763822,peer,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,239759,-190.19460439000076,baseline,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,239759,-1.0880215484717313,relative_legacy,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,239759,-157.09872848036937,spot_peer,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,239759,-405.8893689053569,spot_baseline,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,240416,4.119445869988255e-05,relative_legacy,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,240416,-83.88435762160435,baseline,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,240416,-173.6965594166206,spot_baseline,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,240416,11.160689637741132,spot_peer,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,240416,4.496821067444989,peer,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,246118,-173.6965594166206,spot_baseline,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,246118,-99.19811676069318,baseline,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,246118,6.289689220977282,peer,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,246118,-6.525584407116142e-05,relative_legacy,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,246118,11.160689637741132,spot_peer,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,247214,55.39248199016672,spot_peer,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,247214,-105.46412359881552,baseline,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,247214,50.39820525292852,peer,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,247214,0.6242089352355651,relative_legacy,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,247214,-112.65804965651432,spot_baseline,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,250015,-24.06717354413244,baseline,metac-deepseek-r1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,250015,-51.45731728297583,spot_baseline,metac-deepseek-r1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,250015,45.852165806151184,peer,metac-deepseek-r1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,250015,0.571662706041288,relative_legacy,metac-deepseek-r1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34228,"Will Apple Maps display Gulf of America instead of Gulf of Mexico before April 1, 2025?",2025-02-01 05:24:04.616482+00,250015,99.7418295873124,spot_peer,metac-deepseek-r1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34714 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,185699,-76.00464592864475,spot_peer,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,185699,-44.17923521448715,peer,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,185699,-264.38561897747246,spot_baseline,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,185699,-161.9635826283384,baseline,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,185699,-0.679399481964197,relative_legacy,MWG,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,187708,4.105533938077096,peer,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,187708,-79.89219335985405,baseline,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,187708,4.627599871126352,spot_peer,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,187708,-153.11560570253624,spot_baseline,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,187708,-0.0769801695445343,relative_legacy,twsummerbot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,189869,0.5189028227979617,relative_legacy,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,189869,-50.49759794005894,baseline,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,189869,46.61228268530829,peer,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,189869,-73.69655941662063,spot_baseline,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,189869,62.17891916041592,spot_peer,VeritasAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,191026,30.55996768739455,peer,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,191026,-95.01554848546265,baseline,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,191026,0.2345150992117254,relative_legacy,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,191026,-115.20030934450504,spot_baseline,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,191026,32.103066131366084,spot_peer,manticAI,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,191935,-23.4465253637023,spot_baseline,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,191935,61.46833358285322,peer,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,191935,0.7304760111337492,relative_legacy,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,191935,-13.719932706966082,baseline,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,191935,98.5928008339112,spot_peer,pgodzinai,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,192418,35.46083964254627,baseline,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,192418,171.05818789245097,spot_peer,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,192418,0.9842598528010936,relative_legacy,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,192418,79.82175126803749,peer,InstitutPelFutur,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,192924,0.0,baseline,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,192924,0.0,spot_baseline,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,192924,105.31186779279388,peer,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,192924,1.191035254163405,relative_legacy,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,192924,115.58341619049676,spot_peer,acm_bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,218666,55.12039856572654,peer,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,218666,143.97301565414963,spot_peer,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,218666,39.17677199559965,spot_baseline,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,218666,14.659752925438784,baseline,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,218666,0.6553610472735008,relative_legacy,GreeneiBot2,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,220077,0.8258960795450895,relative_legacy,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,220077,-51.45731728297583,spot_baseline,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,220077,78.29467205144746,spot_peer,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,220077,87.81503753016578,peer,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,220077,-48.3728952043335,baseline,mmBot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236037,-24.73876327859953,peer,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236037,-232.19280948873623,spot_baseline,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236037,-0.4605377959623363,relative_legacy,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236037,-52.67600192761371,spot_peer,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236037,-112.7723798067205,baseline,metac-o1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236038,-65.30026966839756,baseline,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236038,-132.19280948873623,spot_baseline,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236038,19.789385130926014,spot_peer,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236038,0.0264356145156533,relative_legacy,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236038,10.801773029399014,peer,metac-gpt-4o,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236040,-4.077519614590429,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236040,-0.1778122772285416,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236040,-10.28646789812382,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236040,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236040,-85.52097470929671,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236041,-100.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236041,43.11802913195703,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236041,0.1853845329628332,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236041,22.323631105899025,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236041,-49.36216356101835,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236043,-52.67600192761371,spot_peer,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236043,-114.24095723385255,baseline,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236043,-232.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236043,-0.465475200562558,relative_legacy,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236043,-24.960833801432507,peer,metac-grok-2-1212,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236045,-4.181142824534831,peer,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236045,-80.9562599905177,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236045,-10.28646789812382,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236045,-173.6965594166206,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236045,-0.1749733968080028,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236047,0.3094343166875903,relative_legacy,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236047,-73.69655941662063,spot_baseline,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236047,62.17891916041592,spot_peer,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236047,-35.83582157907882,baseline,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,236047,31.13272370332075,peer,metac-Llama-3.1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,237476,-332.1928094887362,spot_baseline,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,237476,-1.4959483638797169,relative_legacy,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,237476,-101.9090700147856,peer,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,237476,-264.9158469255217,baseline,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,237476,-125.14138898615346,spot_peer,NextWorldLab,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,239758,-464.38561897747246,spot_baseline,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,239758,-102.33985549054036,peer,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,239758,-220.9354200457242,spot_peer,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,239758,-216.3051370856191,baseline,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,239758,-1.5289503870978012,relative_legacy,metac-perplexity,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,239759,-132.19280948873623,spot_baseline,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,239759,-62.36601450658993,baseline,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,239759,10.026254728002456,peer,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,239759,0.0196896034902784,relative_legacy,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,239759,19.789385130926014,spot_peer,metac-exa,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,240416,-10.28646789812382,spot_peer,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,240416,-0.1760677823035416,relative_legacy,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,240416,-4.126993920789405,peer,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,240416,-173.6965594166206,spot_baseline,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,240416,-83.07629651819084,baseline,metac-o1-preview,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,246118,-564.3856189774725,spot_baseline,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,246118,-2.3786803250415813,relative_legacy,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,246118,-293.40080710426395,spot_peer,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,246118,-167.10453027231506,peer,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,246118,-323.79158086003457,baseline,laylaps,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,247214,-125.14138898615346,spot_peer,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,247214,-305.1039563793784,baseline,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,247214,-125.59341567004763,peer,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,247214,-1.7525314758229913,relative_legacy,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,247214,-332.1928094887362,spot_baseline,ajf-bot,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,250015,125.54766226094893,spot_peer,metac-deepseek-r1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,250015,58.11180448514432,peer,metac-deepseek-r1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,250015,6.307650340306554,baseline,metac-deepseek-r1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,250015,0.6849716316285683,relative_legacy,metac-deepseek-r1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34229,"Will the National Weather Service refer the ""Gulf of America"" instead of the ""Gulf of Mexico"" before April 1, 2025?",2025-02-01 05:24:04.656411+00,250015,13.750352374993504,spot_baseline,metac-deepseek-r1,True,yes,2025-02-09 07:00:00+00,2025-02-09 07:00:00+00,0.6,2025-02-09 07:00:00+00,34715 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,185690,0.0,spot_baseline,annabot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,185690,0.0,baseline,annabot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,185690,0.1180375025746308,relative_legacy,annabot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,185690,24.50442424859755,peer,annabot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,185690,27.758900010761632,spot_peer,annabot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,185699,15.68533821236155,peer,MWG,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,185699,-3.288917708681777,baseline,MWG,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,185699,0.0311212438390829,relative_legacy,MWG,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,185699,20.074944298837863,spot_peer,MWG,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,185699,-4.509070668347821,spot_baseline,MWG,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,189869,-13.092833820284488,spot_baseline,VeritasAI,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,189869,-9.041095963929449,baseline,VeritasAI,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,189869,4.628692941075315,peer,VeritasAI,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,189869,-0.1049352472330448,relative_legacy,VeritasAI,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,189869,5.447261400869,spot_peer,VeritasAI,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,190710,-2.3234733798406983,baseline,Bot_Pepa,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,190710,17.348657172785394,peer,Bot_Pepa,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,190710,0.0535381669509406,relative_legacy,Bot_Pepa,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,190710,22.327845310903324,spot_peer,Bot_Pepa,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,190710,-3.187031571163564,spot_baseline,Bot_Pepa,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,191026,1.315629798070111,baseline,manticAI,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,191026,1.5342382827944403,spot_baseline,manticAI,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,191026,30.373411932095078,spot_peer,manticAI,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,191026,0.1294298456084902,relative_legacy,manticAI,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,191026,25.513431057302725,peer,manticAI,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,191935,-0.1116860182820946,relative_legacy,pgodzinai,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,191935,-9.164427597211134,baseline,pgodzinai,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,191935,3.3282915434219804,peer,pgodzinai,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,191935,-13.864688385321388,spot_baseline,pgodzinai,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,191935,4.131935753962935,spot_peer,pgodzinai,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,191975,-17.673455876183972,spot_peer,jkraybill_bot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,191975,-5.0377359148935055,peer,jkraybill_bot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,191975,-7.59943603602298,baseline,jkraybill_bot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,191975,-0.1345914422541403,relative_legacy,jkraybill_bot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,191975,-26.66044821235409,spot_baseline,jkraybill_bot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,192418,-17.874692166080074,spot_baseline,InstitutPelFutur,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,192418,-17.265078098760483,baseline,InstitutPelFutur,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,192418,-4.711889879993279,peer,InstitutPelFutur,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,192418,-0.2570183255669412,relative_legacy,InstitutPelFutur,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,192418,-2.7015547194269347,spot_peer,InstitutPelFutur,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,218666,14.223601850891455,spot_peer,GreeneiBot2,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,218666,-5.567834362431182,baseline,GreeneiBot2,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,218666,11.012187108867517,peer,GreeneiBot2,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,218666,-0.0229541160520133,relative_legacy,GreeneiBot2,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,218666,-7.942733952162881,spot_baseline,GreeneiBot2,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,220077,-17.767813433074643,baseline,mmBot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,220077,-0.2570183255669415,relative_legacy,mmBot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,220077,-4.711889879993299,peer,mmBot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,220077,-17.87469216608008,spot_baseline,mmBot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,220077,-2.7015547194269587,spot_peer,mmBot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,222631,3.228632901987778,peer,Grizeu_Bot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,222631,4.131935753962912,spot_peer,Grizeu_Bot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,222631,-0.1110228528302166,relative_legacy,Grizeu_Bot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,222631,-9.046186253158904,baseline,Grizeu_Bot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,222631,-13.864688385321406,spot_baseline,Grizeu_Bot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,237476,0.1844169895350836,relative_legacy,NextWorldLab,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,237476,3.656443489397305,baseline,NextWorldLab,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,237476,28.794318338403656,peer,NextWorldLab,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,237476,4.493535352988481,spot_baseline,NextWorldLab,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,237476,35.41638182507497,spot_peer,NextWorldLab,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,239758,-29.702034309607043,spot_baseline,metac-perplexity,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,239758,-15.38157201452391,baseline,metac-perplexity,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,239758,-11.861213965353343,peer,metac-perplexity,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,239758,-0.2913831752701043,relative_legacy,metac-perplexity,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,239758,-22.856655383203066,spot_peer,metac-perplexity,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,239759,16.60308070581531,spot_peer,metac-exa,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,239759,8.53143019652969,peer,metac-exa,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,239759,-3.3561822111061828,baseline,metac-exa,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,239759,-6.546416910142253,spot_baseline,metac-exa,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,239759,-0.0132847261640217,relative_legacy,metac-exa,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,240414,0.1789998211945313,relative_legacy,minefrac1,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,240414,8.683897731959343,spot_baseline,minefrac1,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,240414,23.53730515669052,peer,minefrac1,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,240414,4.782339739918228,baseline,minefrac1,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,240414,42.55722332107253,spot_peer,minefrac1,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,241715,0.0,baseline,CatrachoCaster,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,241715,0.0,spot_baseline,CatrachoCaster,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,241715,27.758900010761632,spot_peer,CatrachoCaster,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,241715,0.0509829107391811,relative_legacy,CatrachoCaster,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,241715,10.250427516997604,peer,CatrachoCaster,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,246118,27.758900010761632,spot_peer,laylaps,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,246118,0.0850033764467242,relative_legacy,laylaps,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,246118,0.0,spot_baseline,laylaps,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,246118,0.0,baseline,laylaps,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,246118,17.141717930588804,peer,laylaps,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,247214,-2.430299682915363,relative_legacy,ajf-bot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,247214,-109.30104818948804,baseline,ajf-bot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,247214,-152.80110428864512,spot_baseline,ajf-bot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,247214,-232.6311014875302,spot_peer,ajf-bot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34323,"Which of the five largest companies in the world will see the highest stock price growth in February and March, 2025?",2025-02-05 04:17:26.375436+00,247214,-167.1821246853772,peer,ajf-bot,True,AAPL,2025-02-07 17:00:00+00,2025-02-07 17:00:00+00,1.0,2025-02-07 17:00:00+00,34827 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,185690,31.159209155474343,peer,annabot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,185690,41.29289866369851,spot_peer,annabot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,185690,-16.87536938849466,baseline,annabot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,185690,0.195693789466426,relative_legacy,annabot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,185690,-19.39406565749242,spot_baseline,annabot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,187708,-69.14179219788303,peer,twsummerbot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,187708,-101.5904140229056,baseline,twsummerbot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,187708,-2.3590315820343286,relative_legacy,twsummerbot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,187708,-168.14735054669856,spot_baseline,twsummerbot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,187708,-113.6584397625579,spot_peer,twsummerbot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,189869,-128.3825295990141,peer,VeritasAI,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,189869,-169.26738083586253,baseline,VeritasAI,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,189869,-4.195971641745134,relative_legacy,VeritasAI,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,189869,-131.85661108367918,spot_peer,VeritasAI,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,189869,-185.617595014975,spot_baseline,VeritasAI,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,190710,-60.71686992176334,peer,Bot_Pepa,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,190710,-2.256758250909237,relative_legacy,Bot_Pepa,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,190710,-74.06170926831497,spot_peer,Bot_Pepa,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,190710,-100.37794725864968,baseline,Bot_Pepa,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,190710,-130.13448927222535,spot_baseline,Bot_Pepa,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,191026,57.05899577207686,peer,manticAI,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,191026,69.57587020814593,spot_peer,manticAI,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,191026,7.757587025177107,spot_baseline,manticAI,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,191026,6.8616035746259785,baseline,manticAI,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,191026,0.8830969482780647,relative_legacy,manticAI,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,191935,-94.81911801878148,peer,pgodzinai,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,191935,-163.374122189711,spot_peer,pgodzinai,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,191935,-215.8744056767655,spot_baseline,pgodzinai,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,191935,-3.0528929183263287,relative_legacy,pgodzinai,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,191935,-125.11547852597693,baseline,pgodzinai,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,192418,90.93759350437207,peer,InstitutPelFutur,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,192418,1.7431641958510262,relative_legacy,InstitutPelFutur,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,192418,38.67486898026614,baseline,InstitutPelFutur,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,192418,39.92538481088862,spot_baseline,InstitutPelFutur,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,192418,103.08399290159542,spot_peer,InstitutPelFutur,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,192924,-3.372530810325885,relative_legacy,acm_bot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,192924,-97.94683807271112,peer,acm_bot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,192924,-156.64668151809843,spot_baseline,acm_bot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,192924,-101.67857619109942,spot_peer,acm_bot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,192924,-140.83256324731286,baseline,acm_bot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,218666,81.96601878137841,spot_peer,GreeneiBot2,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,218666,14.831833981934505,baseline,GreeneiBot2,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,218666,19.652129655480284,spot_baseline,GreeneiBot2,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,218666,1.057113555054734,relative_legacy,GreeneiBot2,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,218666,58.748429304457765,peer,GreeneiBot2,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,220077,33.916707586367515,baseline,mmBot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,220077,84.68815674171057,peer,mmBot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,220077,1.5820993998135575,relative_legacy,mmBot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,220077,97.0813139115364,spot_peer,mmBot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,220077,34.162812980431966,spot_baseline,mmBot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,222631,0.487678484016193,relative_legacy,Grizeu_Bot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,222631,-5.889151782819132,spot_baseline,Grizeu_Bot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,222631,-4.09933154505177,baseline,Grizeu_Bot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,222631,36.36591125608299,peer,Grizeu_Bot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,222631,55.36051728314985,spot_peer,Grizeu_Bot,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236037,64.27047591945056,peer,metac-o1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236037,1.145323497691851,relative_legacy,metac-o1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236037,81.96601878137841,spot_peer,metac-o1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236037,19.652129655480284,spot_baseline,metac-o1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236037,16.414366803199297,baseline,metac-o1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236038,42.20808340892773,peer,metac-gpt-4o,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236038,0.5313103952271055,relative_legacy,metac-gpt-4o,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236038,55.36051728314985,spot_peer,metac-gpt-4o,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236038,-5.889151782819132,spot_baseline,metac-gpt-4o,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236038,-4.9981056598251214,baseline,metac-gpt-4o,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236040,0.4148475038183177,relative_legacy,metac-claude-3-5-sonnet-latest,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236040,-8.985573787331335,baseline,metac-claude-3-5-sonnet-latest,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236040,-10.654661273035837,spot_baseline,metac-claude-3-5-sonnet-latest,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236040,50.39644489750744,spot_peer,metac-claude-3-5-sonnet-latest,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236040,37.89850194467351,peer,metac-claude-3-5-sonnet-latest,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236041,27.72362751428808,spot_peer,metac-claude-3-5-sonnet-20240620,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236041,18.802426721509025,peer,metac-claude-3-5-sonnet-20240620,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236041,-27.36853725606935,baseline,metac-claude-3-5-sonnet-20240620,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236041,-32.420565960926425,spot_baseline,metac-claude-3-5-sonnet-20240620,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236041,-0.1141893825977801,relative_legacy,metac-claude-3-5-sonnet-20240620,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236043,-1.2692773344449713,relative_legacy,metac-grok-2-1212,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236043,-79.96937382902864,spot_baseline,metac-grok-2-1212,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236043,-21.80638068165172,spot_peer,metac-grok-2-1212,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236043,-67.37806686953255,baseline,metac-grok-2-1212,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236043,-23.11909340613901,peer,metac-grok-2-1212,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236045,60.84804361949521,spot_peer,metac-Gemini-Exp-1206,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236045,0.6488574974915993,relative_legacy,metac-Gemini-Exp-1206,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236045,-0.621126499927584,spot_baseline,metac-Gemini-Exp-1206,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236045,-0.5191293505731213,baseline,metac-Gemini-Exp-1206,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236045,45.980551938829386,peer,metac-Gemini-Exp-1206,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236047,34.242543553558725,spot_peer,metac-Llama-3.1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236047,-21.951635155702235,baseline,metac-Llama-3.1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236047,24.23577723031324,peer,metac-Llama-3.1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236047,0.0393924553606803,relative_legacy,metac-Llama-3.1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,236047,-26.16240656322661,spot_baseline,metac-Llama-3.1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,237476,55.36051728314985,spot_peer,NextWorldLab,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,237476,-4.836690819777933,baseline,NextWorldLab,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,237476,41.23780023796132,peer,NextWorldLab,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,237476,0.5215647670318257,relative_legacy,NextWorldLab,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,237476,-5.889151782819132,spot_baseline,NextWorldLab,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,239758,-66.63351041433131,peer,metac-perplexity,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,239758,-108.73900417180386,baseline,metac-perplexity,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,239758,-2.4664124179771933,relative_legacy,metac-perplexity,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,239758,-74.06170926831497,spot_peer,metac-perplexity,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,239758,-130.13448927222535,spot_baseline,metac-perplexity,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,239759,-109.23364137195952,peer,metac-exa,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,239759,-179.17594692283322,spot_baseline,metac-exa,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,239759,-125.14656098769817,spot_peer,metac-exa,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,239759,-3.641191461395523,relative_legacy,metac-exa,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,239759,-149.42208887924622,baseline,metac-exa,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,240414,-199.39495177006904,spot_baseline,minefrac1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,240414,-146.2080243702355,spot_peer,minefrac1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,240414,-2.6751796822076432,relative_legacy,minefrac1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,240414,-81.72801111541091,peer,minefrac1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,240414,-111.45867612132602,baseline,minefrac1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,240416,50.90030633541771,peer,metac-o1-preview,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,240416,4.329060303742838,baseline,metac-o1-preview,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,240416,66.9825772474316,spot_peer,metac-o1-preview,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,240416,5.268025782891358,spot_baseline,metac-o1-preview,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,240416,0.7869202916160134,relative_legacy,metac-o1-preview,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,246118,14.516124029266942,peer,laylaps,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,246118,-35.27848552792484,spot_baseline,laylaps,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,246118,24.74662796533139,spot_peer,laylaps,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,246118,-0.0448380173379662,relative_legacy,laylaps,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,246118,-21.439871074434816,baseline,laylaps,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,250015,0.3057923694500382,relative_legacy,metac-deepseek-r1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,250015,-15.005228622516512,spot_baseline,metac-deepseek-r1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,250015,32.713060617468045,peer,metac-deepseek-r1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,250015,-11.95221932464375,baseline,metac-deepseek-r1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34324,"What will the total number of tokens launched on the site pump.fun be, as of March 31, 2025?",2025-02-05 04:17:26.412092+00,250015,45.86460390846508,spot_peer,metac-deepseek-r1,True,9010996.0,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34828 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,185690,-107.7649896309218,spot_baseline,annabot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,185690,-0.187274414468837,relative_legacy,annabot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,185690,-24.65058896964876,spot_peer,annabot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,185690,-20.891163039482286,peer,annabot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,185690,-94.923470877988,baseline,annabot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,187708,0.4018768516951964,relative_legacy,twsummerbot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,187708,39.73961906809819,spot_peer,twsummerbot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,187708,-18.44245711374277,spot_baseline,twsummerbot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,187708,-11.700195358451325,baseline,twsummerbot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,187708,25.392705926888706,peer,twsummerbot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,189869,-87.7243634197447,baseline,VeritasAI,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,189869,-0.1188774546006025,relative_legacy,VeritasAI,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,189869,-15.797337951229716,peer,VeritasAI,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,189869,-19.05301707310808,spot_peer,VeritasAI,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,189869,-100.0,spot_baseline,VeritasAI,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,190710,-100.0,spot_baseline,Bot_Pepa,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,190710,-75.86014644304912,baseline,Bot_Pepa,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,190710,-13.81888254288691,peer,Bot_Pepa,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,190710,-0.1155374921957872,relative_legacy,Bot_Pepa,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,190710,-19.05301707310808,spot_peer,Bot_Pepa,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,191026,99.2816151163166,spot_peer,manticAI,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,191026,1.2381048359724711,relative_legacy,manticAI,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,191026,64.15460290875237,spot_baseline,manticAI,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,191026,53.01635654388179,baseline,manticAI,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,191026,83.26763624386888,peer,manticAI,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,191935,10.657166419804405,spot_baseline,pgodzinai,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,191935,38.49424548746869,peer,pgodzinai,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,191935,60.71675395603761,spot_peer,pgodzinai,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,191935,6.72444744036564,baseline,pgodzinai,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,191935,0.5831585604030363,relative_legacy,pgodzinai,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,192418,57.997973756740166,peer,InstitutPelFutur,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,192418,5.440217757979931,baseline,InstitutPelFutur,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,192418,5.658352836636751,spot_baseline,InstitutPelFutur,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,192418,57.11324387306749,spot_peer,InstitutPelFutur,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,192418,0.8534752543547726,relative_legacy,InstitutPelFutur,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,192924,-9.140758373458276,spot_peer,acm_bot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,192924,-77.16535871001342,baseline,acm_bot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,192924,-7.408806361950077,peer,acm_bot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,192924,0.0022408397267091,relative_legacy,acm_bot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,192924,-86.24964762500649,spot_baseline,acm_bot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,218666,-22.62817434881859,baseline,GreeneiBot2,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,218666,21.44713043029773,peer,GreeneiBot2,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,218666,0.3610760601346736,relative_legacy,GreeneiBot2,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,218666,29.82736036844843,spot_peer,GreeneiBot2,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,218666,-32.19280948873623,spot_baseline,GreeneiBot2,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,220077,-21.353019203725008,peer,mmBot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,220077,-98.39363622003133,baseline,mmBot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,220077,-0.1623759376370588,relative_legacy,mmBot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,220077,-19.05301707310808,spot_peer,mmBot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,220077,-100.0,spot_baseline,mmBot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,222631,-132.19280948873626,spot_baseline,Grizeu_Bot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,222631,-42.25994640978591,spot_peer,Grizeu_Bot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,222631,-0.3426792043488817,relative_legacy,Grizeu_Bot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,222631,-29.406287941386296,peer,Grizeu_Bot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,222631,-93.27083146348303,baseline,Grizeu_Bot,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236037,-132.19280948873626,spot_baseline,metac-o1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236037,-110.08860981130717,baseline,metac-o1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236037,-34.41979551453444,peer,metac-o1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236037,-0.3868020515119571,relative_legacy,metac-o1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236037,-42.25994640978591,spot_peer,metac-o1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236038,-84.17259301933056,baseline,metac-gpt-4o,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236038,-100.0,spot_baseline,metac-gpt-4o,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236038,-19.05301707310808,spot_peer,metac-gpt-4o,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236038,-0.1189412017210763,relative_legacy,metac-gpt-4o,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236038,-15.114267953801653,peer,metac-gpt-4o,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236040,15.94009553549806,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236040,0.2878069193347162,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236040,14.389351369106604,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236040,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236040,-43.12193782802612,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236041,-15.099675496660309,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236041,-0.1188820528605348,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236041,-19.05301707310808,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236041,-100.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236041,-84.09858980046442,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236043,-0.1188730735056875,relative_legacy,metac-grok-2-1212,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236043,-100.0,spot_baseline,metac-grok-2-1212,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236043,-83.98811280727385,baseline,metac-grok-2-1212,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236043,-19.05301707310808,spot_peer,metac-grok-2-1212,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236043,-15.087027823937447,peer,metac-grok-2-1212,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236045,-100.0,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236045,-0.1161404489228536,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236045,-81.0897077201531,baseline,metac-Gemini-Exp-1206,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236045,-14.660322763717346,peer,metac-Gemini-Exp-1206,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236045,-19.05301707310808,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236047,-0.0915751665367692,spot_peer,metac-Llama-3.1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236047,-61.55873749878881,baseline,metac-Llama-3.1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236047,0.8703606399411763,peer,metac-Llama-3.1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236047,0.1007889192600889,relative_legacy,metac-Llama-3.1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,236047,-73.69655941662059,spot_baseline,metac-Llama-3.1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,237476,-14.974062905166818,spot_peer,NextWorldLab,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,237476,-94.34164716336323,spot_baseline,NextWorldLab,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,237476,-79.0629405928394,baseline,NextWorldLab,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,237476,-11.634455672583588,peer,NextWorldLab,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,237476,-0.0714532936282309,relative_legacy,NextWorldLab,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,239758,14.231964375048657,peer,metac-perplexity,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,239758,-42.79510012396665,baseline,metac-perplexity,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,239758,-51.45731728297583,spot_baseline,metac-perplexity,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,239758,15.94009553549806,spot_peer,metac-perplexity,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,239758,0.2849319728275227,relative_legacy,metac-perplexity,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,239759,-84.0892866663111,baseline,metac-exa,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,239759,-100.0,spot_baseline,metac-exa,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,239759,-19.05301707310808,spot_peer,metac-exa,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,239759,-15.0981416499463,peer,metac-exa,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,239759,-0.1188770171144037,relative_legacy,metac-exa,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,240414,-100.0,spot_baseline,minefrac1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,240414,-10.611614644170608,peer,minefrac1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,240414,-56.46081258191003,baseline,minefrac1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,240414,-19.05301707310808,spot_peer,minefrac1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,240414,-0.1081540108234341,relative_legacy,minefrac1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,240416,-81.98915099758482,baseline,metac-o1-preview,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,240416,-14.822520752927083,peer,metac-o1-preview,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,240416,-0.1167756082256498,relative_legacy,metac-o1-preview,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,240416,-19.05301707310808,spot_peer,metac-o1-preview,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,240416,-100.0,spot_baseline,metac-o1-preview,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,241715,-39.592867633113926,spot_baseline,CatrachoCaster,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,241715,10.070928911467105,peer,CatrachoCaster,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,241715,-16.27972363899949,baseline,CatrachoCaster,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,241715,0.1402269425013205,relative_legacy,CatrachoCaster,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,241715,24.492857752143177,spot_peer,CatrachoCaster,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,246118,-0.1110446983471745,relative_legacy,laylaps,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,246118,-100.0,spot_baseline,laylaps,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,246118,-61.56952108277215,baseline,laylaps,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,246118,-11.5766150148239,peer,laylaps,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,246118,-19.05301707310808,spot_peer,laylaps,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,250015,0.6376371869351402,peer,metac-deepseek-r1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,250015,-56.74643791065367,baseline,metac-deepseek-r1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,250015,-73.69655941662059,spot_baseline,metac-deepseek-r1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,250015,0.0863540867064433,relative_legacy,metac-deepseek-r1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34325,"Will DeepSeek be ranked higher than ChatGPT on the AppStore on April 1, 2025?",2025-02-05 04:17:26.447168+00,250015,-0.0915751665367692,spot_peer,metac-deepseek-r1,True,no,2025-02-06 17:00:00+00,2025-02-06 17:00:00+00,1.0,2025-02-06 17:00:00+00,34829 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,185690,0.6893415529165487,relative_legacy,annabot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,185690,28.52445795906947,baseline,annabot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,185690,34.695414391360984,spot_peer,annabot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,185690,31.52965297838761,spot_baseline,annabot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,185690,24.352509900531047,peer,annabot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,187708,0.4866400502617941,peer,twsummerbot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,187708,-0.1650331711785027,spot_baseline,twsummerbot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,187708,1.6801163188962804,spot_peer,twsummerbot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,187708,0.0437475996909158,relative_legacy,twsummerbot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,187708,-0.0960680869006641,baseline,twsummerbot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,189869,22.32299348208245,spot_peer,VeritasAI,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,189869,14.610286919996335,baseline,VeritasAI,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,189869,13.12318033371755,peer,VeritasAI,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,189869,0.3798929957194655,relative_legacy,VeritasAI,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,189869,19.652128905480215,spot_baseline,VeritasAI,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,190710,0.3806705829686301,relative_legacy,Bot_Pepa,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,190710,22.32299348208245,spot_peer,Bot_Pepa,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,190710,13.095801145658204,peer,Bot_Pepa,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,190710,15.215755997181097,baseline,Bot_Pepa,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,190710,19.652128905480215,spot_baseline,Bot_Pepa,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,191026,8.203502993978432,peer,manticAI,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,191026,14.813551575709337,spot_baseline,manticAI,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,191026,17.282808763571108,spot_peer,manticAI,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,191026,0.2564967801672264,relative_legacy,manticAI,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,191026,13.16962114591832,baseline,manticAI,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,191935,33.75628207745501,spot_peer,pgodzinai,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,191935,0.6489017768700448,relative_legacy,pgodzinai,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,191935,22.87995342671776,peer,pgodzinai,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,191935,30.628085957037875,spot_baseline,pgodzinai,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,191935,25.89397688261805,baseline,pgodzinai,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,192418,26.06788874436761,baseline,InstitutPelFutur,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,192418,29.77616299461774,spot_peer,InstitutPelFutur,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,192418,0.5600971282055145,relative_legacy,InstitutPelFutur,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,192418,19.3324421664419,peer,InstitutPelFutur,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,192418,26.80717163751409,spot_baseline,InstitutPelFutur,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,192924,0.0040949168588552,relative_legacy,acm_bot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,192924,5.268025782891358,spot_baseline,acm_bot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,192924,-1.3144746620566543,peer,acm_bot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,192924,4.763869907565328,baseline,acm_bot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,192924,7.339552729385719,spot_peer,acm_bot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,218666,14.88661991526408,spot_baseline,GreeneiBot2,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,218666,11.34735276471696,baseline,GreeneiBot2,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,218666,17.358921617273968,spot_peer,GreeneiBot2,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,218666,0.2757545856808442,relative_legacy,GreeneiBot2,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,218666,9.272860540290438,peer,GreeneiBot2,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,220077,32.526707970532044,baseline,mmBot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,220077,32.740441766944514,spot_baseline,mmBot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,220077,35.95665271277442,spot_peer,mmBot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,220077,0.7265738516961453,relative_legacy,mmBot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,220077,25.938448665461745,peer,mmBot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,222631,28.51321949571012,baseline,Grizeu_Bot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,222631,39.92538481088862,spot_baseline,Grizeu_Bot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,222631,43.44096838354954,spot_peer,Grizeu_Bot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,222631,0.7968187697858069,relative_legacy,Grizeu_Bot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,222631,28.382651813699056,peer,Grizeu_Bot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236037,5.268025782891358,spot_baseline,metac-o1,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236037,7.339552729385719,spot_peer,metac-o1,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236037,0.1368117109202004,relative_legacy,metac-o1,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236037,3.801862868793803,peer,metac-o1,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236037,2.972126297758998,baseline,metac-o1,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236038,12.398900444789014,peer,metac-gpt-4o,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236038,22.32299348208245,spot_peer,metac-gpt-4o,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236038,0.3744969573444439,relative_legacy,metac-gpt-4o,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236038,19.652128905480215,spot_baseline,metac-gpt-4o,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236038,11.241801828886803,baseline,metac-gpt-4o,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236040,3.814545724282988,peer,metac-claude-3-5-sonnet-latest,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236040,0.1370971379397696,relative_legacy,metac-claude-3-5-sonnet-latest,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236040,7.339552729385719,spot_peer,metac-claude-3-5-sonnet-latest,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236040,5.268025782891358,spot_baseline,metac-claude-3-5-sonnet-latest,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236040,3.0011341295168776,baseline,metac-claude-3-5-sonnet-latest,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236041,-23.528853087013832,peer,metac-claude-3-5-sonnet-20240620,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236041,-40.38392288905986,spot_peer,metac-claude-3-5-sonnet-20240620,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236041,-40.54651081081639,spot_baseline,metac-claude-3-5-sonnet-20240620,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236041,-23.20540834977146,baseline,metac-claude-3-5-sonnet-20240620,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236041,-0.6195764833641537,relative_legacy,metac-claude-3-5-sonnet-20240620,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236043,-13.778422172081804,spot_peer,metac-grok-2-1212,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236043,-15.005230122517466,spot_baseline,metac-grok-2-1212,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236043,-0.1970698852697965,relative_legacy,metac-grok-2-1212,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236043,-8.260030639388436,peer,metac-grok-2-1212,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236043,-8.570611935044465,baseline,metac-grok-2-1212,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236045,0.1370435414969479,relative_legacy,metac-Gemini-Exp-1206,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236045,3.807659564239531,peer,metac-Gemini-Exp-1206,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236045,2.9594076378938032,baseline,metac-Gemini-Exp-1206,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236045,5.268025782891358,spot_baseline,metac-Gemini-Exp-1206,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236045,7.339552729385719,spot_peer,metac-Gemini-Exp-1206,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236047,-2.826402884431924,peer,metac-Llama-3.1,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236047,-5.889151782819132,spot_baseline,metac-Llama-3.1,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236047,-4.282507234896043,spot_peer,metac-Llama-3.1,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236047,-0.0466307718199689,relative_legacy,metac-Llama-3.1,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,236047,-3.370353757291837,baseline,metac-Llama-3.1,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,237476,7.339552729385719,spot_peer,NextWorldLab,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,237476,5.268025782891358,spot_baseline,NextWorldLab,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,237476,0.0317016902270282,relative_legacy,NextWorldLab,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,237476,0.0538323878926183,peer,NextWorldLab,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,237476,4.439247696703026,baseline,NextWorldLab,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,239758,0.137282827688419,relative_legacy,metac-perplexity,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,239758,5.268025782891358,spot_baseline,metac-perplexity,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,239758,7.339552729385719,spot_peer,metac-perplexity,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,239758,2.988373573450425,baseline,metac-perplexity,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,239758,3.818997256812537,peer,metac-perplexity,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,239759,-4.420809351647996,baseline,metac-exa,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,239759,-4.059306162625705,peer,metac-exa,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,239759,-15.005228622516512,spot_baseline,metac-exa,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,239759,-13.778420609580817,spot_peer,metac-exa,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,239759,-0.0923732034481667,relative_legacy,metac-exa,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,240414,12.749902869153864,peer,minefrac1,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,240414,0.3792782017392976,relative_legacy,minefrac1,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,240414,11.82310602350108,baseline,minefrac1,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,240414,22.32299348208245,spot_peer,minefrac1,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,240414,19.652128905480215,spot_baseline,minefrac1,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,240416,-13.778420609580817,spot_peer,metac-o1-preview,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,240416,-8.414475467601779,baseline,metac-o1-preview,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,240416,-15.005228622516512,spot_baseline,metac-o1-preview,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,240416,-0.1910248225032287,relative_legacy,metac-o1-preview,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,240416,-8.047605636471097,peer,metac-o1-preview,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,246118,-97.79707575921243,peer,laylaps,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,246118,-93.33551274625415,baseline,laylaps,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,246118,-148.6881698515571,spot_peer,laylaps,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,246118,-144.51858789481372,spot_baseline,laylaps,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,246118,-2.672611578310684,relative_legacy,laylaps,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,247214,-59.67994332152317,peer,ajf-bot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,247214,-1.6207872042496387,relative_legacy,ajf-bot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,247214,-109.86122886681092,spot_baseline,ajf-bot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,247214,-112.58675419738748,spot_peer,ajf-bot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34326,What will be the total number of forecasters in the Q1 2025 Quarterly Cup?,2025-02-05 04:17:26.48288+00,247214,-58.05928602923315,baseline,ajf-bot,True,615.0,2025-02-08 17:00:00+00,2025-02-08 17:00:00+00,1.0,2025-02-08 17:00:00+00,34830 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,185690,41.40831163286813,spot_baseline,annabot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,185690,36.38427166260083,baseline,annabot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,185690,14.34934557090415,spot_peer,annabot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,185690,0.1876575261478184,relative_legacy,annabot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,185690,12.151217895393575,peer,annabot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,185699,15.990471349693438,baseline,MWG,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,185699,22.62943855309168,spot_baseline,MWG,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,185699,-20.643767037701984,spot_peer,MWG,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,185699,-14.920352347292908,peer,MWG,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,185699,-0.183247069931395,relative_legacy,MWG,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,187708,-0.0147539619313679,relative_legacy,twsummerbot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,187708,-1.4621407464177765,peer,twsummerbot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,187708,4.154831111250475,baseline,twsummerbot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,187708,-9.977881851892407,spot_peer,twsummerbot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,187708,28.353230729799236,spot_baseline,twsummerbot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,189869,16.407022578653557,baseline,VeritasAI,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,189869,21.27363756605906,spot_baseline,VeritasAI,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,189869,-23.170207064882614,spot_peer,VeritasAI,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,189869,-0.2288893460447356,relative_legacy,VeritasAI,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,189869,-18.470652305855552,peer,VeritasAI,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,190710,21.773116863582644,baseline,Bot_Pepa,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,190710,-0.1126215835737994,relative_legacy,Bot_Pepa,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,190710,-11.87228760059189,spot_peer,Bot_Pepa,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,190710,27.33660767273293,spot_baseline,Bot_Pepa,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,190710,-10.13309301306862,peer,Bot_Pepa,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,191026,38.95425439267935,peer,manticAI,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,191026,58.7449581399551,spot_baseline,manticAI,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,191026,46.654970136386005,spot_peer,manticAI,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,191026,0.5561308250722151,relative_legacy,manticAI,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,191026,49.13442820147588,baseline,manticAI,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,191935,3.32071403959321,peer,pgodzinai,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,191935,36.28595281869417,spot_baseline,pgodzinai,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,191935,4.804189264420925,spot_peer,pgodzinai,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,191935,0.0699364671284721,relative_legacy,pgodzinai,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,191935,30.942303610531116,baseline,pgodzinai,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,192418,27.5244136266703,baseline,InstitutPelFutur,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,192418,-8.857583765773647,spot_peer,InstitutPelFutur,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,192418,-0.0988533426020026,relative_legacy,InstitutPelFutur,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,192418,28.95443290938375,spot_baseline,InstitutPelFutur,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,192418,-9.4780592640318,peer,InstitutPelFutur,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,218666,8.922340753763688,peer,GreeneiBot2,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,218666,40.11782494545491,spot_baseline,GreeneiBot2,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,218666,11.94461415913532,spot_peer,GreeneiBot2,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,218666,0.1469807598614989,relative_legacy,GreeneiBot2,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,218666,31.04588354864561,baseline,GreeneiBot2,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,220077,31.809161795846915,baseline,mmBot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,220077,32.804998382698955,spot_baseline,mmBot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,220077,-1.6823251311307088,spot_peer,mmBot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,220077,-0.0042335979156301,relative_legacy,mmBot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,220077,-1.951371401408261,peer,mmBot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,222631,-0.0927570951472526,peer,Grizeu_Bot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,222631,0.0226474798647587,relative_legacy,Grizeu_Bot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,222631,0.377148107671992,spot_peer,Grizeu_Bot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,222631,33.91020405546214,spot_baseline,Grizeu_Bot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,222631,25.824476143395387,baseline,Grizeu_Bot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236037,0.0065149499345155,relative_legacy,metac-o1,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236037,-0.1538965957105817,peer,metac-o1,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236037,10.117022942677629,baseline,metac-o1,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236037,-0.3048215491285436,spot_peer,metac-o1,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236037,33.544228562725706,spot_baseline,metac-o1,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236038,19.279255783770797,baseline,metac-gpt-4o,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236038,28.95443290938375,spot_baseline,metac-gpt-4o,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236038,-8.857583765773647,spot_peer,metac-gpt-4o,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236038,-0.0679312964750357,relative_legacy,metac-gpt-4o,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236038,-6.1361868904891805,peer,metac-gpt-4o,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236040,32.804998382698955,spot_baseline,metac-claude-3-5-sonnet-latest,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236040,-0.0018394136067285,relative_legacy,metac-claude-3-5-sonnet-latest,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236040,-1.340466787829858,peer,metac-claude-3-5-sonnet-latest,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236040,21.77183835683376,baseline,metac-claude-3-5-sonnet-latest,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236040,-1.6823251311307088,spot_peer,metac-claude-3-5-sonnet-latest,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236041,24.19235581014113,baseline,metac-claude-3-5-sonnet-20240620,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236041,3.1291319035744163,peer,metac-claude-3-5-sonnet-20240620,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236041,0.0601012899870673,relative_legacy,metac-claude-3-5-sonnet-20240620,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236041,5.029681067176684,spot_peer,metac-claude-3-5-sonnet-20240620,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236041,36.40696182957703,spot_baseline,metac-claude-3-5-sonnet-20240620,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236043,-0.0018409276870893,relative_legacy,metac-grok-2-1212,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236043,21.755128082573812,baseline,metac-grok-2-1212,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236043,-1.3392665455537818,peer,metac-grok-2-1212,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236043,32.804998382698976,spot_baseline,metac-grok-2-1212,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236043,-1.682325131130697,spot_peer,metac-grok-2-1212,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236045,26.094761970121407,baseline,metac-Gemini-Exp-1206,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236045,39.79048639621733,spot_baseline,metac-Gemini-Exp-1206,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236045,11.3346417360859,spot_peer,metac-Gemini-Exp-1206,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236045,0.116526449761092,relative_legacy,metac-Gemini-Exp-1206,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236045,7.230399183103407,peer,metac-Gemini-Exp-1206,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236047,-0.0018363965077134,relative_legacy,metac-Llama-3.1,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236047,21.65726211635792,baseline,metac-Llama-3.1,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236047,-1.3326917224727894,peer,metac-Llama-3.1,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236047,32.804998382698976,spot_baseline,metac-Llama-3.1,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,236047,-1.682325131130697,spot_peer,metac-Llama-3.1,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,237476,-10.271859073579718,peer,NextWorldLab,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,237476,23.88559568310717,baseline,NextWorldLab,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,237476,27.94880096982206,spot_baseline,NextWorldLab,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,237476,-10.731508338052205,spot_peer,NextWorldLab,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,237476,-0.1137936224205428,relative_legacy,NextWorldLab,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,239758,0.1862562988798963,relative_legacy,metac-perplexity,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,239758,43.903076119150725,spot_baseline,metac-perplexity,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,239758,28.79372396485433,baseline,metac-perplexity,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,239758,12.268955267736237,peer,metac-perplexity,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,239758,18.998164178366476,spot_peer,metac-perplexity,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,239759,-0.2136054915977694,relative_legacy,metac-exa,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,239759,-16.629719893464554,peer,metac-exa,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,239759,13.386371775304331,baseline,metac-exa,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,239759,20.351119659214564,spot_baseline,metac-exa,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,239759,-24.889254467808527,spot_peer,metac-exa,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,240414,-20.643767037701984,spot_peer,minefrac1,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,240414,15.528196776687684,baseline,minefrac1,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,240414,-0.1797683268251223,relative_legacy,minefrac1,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,240414,-14.467216619234584,peer,minefrac1,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,240414,22.62943855309168,spot_baseline,minefrac1,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,240416,0.0290731837887033,relative_legacy,metac-o1-preview,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,240416,0.913362542085306,peer,metac-o1-preview,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,240416,34.63503323872334,spot_baseline,metac-o1-preview,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,240416,22.68070364205936,baseline,metac-o1-preview,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,240416,1.7278164424603135,spot_peer,metac-o1-preview,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,241715,-1.6823251311307088,spot_peer,CatrachoCaster,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,241715,-0.0008997082838244,relative_legacy,CatrachoCaster,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,241715,-1.1724856888277468,peer,CatrachoCaster,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,241715,19.229560852182765,baseline,CatrachoCaster,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,241715,32.804998382698955,spot_baseline,CatrachoCaster,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,246118,32.804998382698955,spot_baseline,laylaps,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,246118,-1.6823251311307088,spot_peer,laylaps,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,246118,21.66110475748631,baseline,laylaps,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,246118,-1.332935255297665,peer,laylaps,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,246118,-0.0018384422582572,relative_legacy,laylaps,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,247214,34.822042603483325,spot_peer,ajf-bot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,247214,36.0410729850014,baseline,ajf-bot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,247214,23.794775267753245,peer,ajf-bot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,247214,0.3490048241214641,relative_legacy,ajf-bot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34422,Which team will win the 2025 Six Nations Championship?,2025-02-08 04:04:07.537084+00,247214,52.39487871752837,spot_baseline,ajf-bot,True,France,2025-02-08 17:58:33+00,2025-02-08 17:58:33+00,1.0,2025-02-08 17:58:33+00,34936 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,187708,-160.65011736505755,baseline,twsummerbot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,187708,-94.8557781208683,peer,twsummerbot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,187708,-1.1966699067458642,relative_legacy,twsummerbot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,187708,-121.31934405762328,spot_peer,twsummerbot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,187708,-219.7599959885161,spot_baseline,twsummerbot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,189869,-49.49992747461103,baseline,VeritasAI,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,189869,-73.69655941662063,spot_baseline,VeritasAI,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,189869,-8.82661156572802,spot_peer,VeritasAI,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,189869,-0.1509260636799287,relative_legacy,VeritasAI,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,189869,-8.969634830020663,peer,VeritasAI,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,191026,-10.694069156437031,spot_peer,manticAI,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,191026,-76.12131404128833,spot_baseline,manticAI,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,191026,-9.99072994330912,peer,manticAI,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,191026,-48.831804901511134,baseline,manticAI,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,191026,-0.1679450022821973,relative_legacy,manticAI,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,191935,-53.87829024441293,spot_peer,pgodzinai,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,191935,-0.2401529923690028,relative_legacy,pgodzinai,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,191935,-132.19280948873623,spot_baseline,pgodzinai,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,191935,-57.5170183096008,baseline,pgodzinai,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,191935,-15.71705713989325,peer,pgodzinai,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,192418,78.1178224036116,peer,InstitutPelFutur,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,192418,0.9694565358124728,relative_legacy,InstitutPelFutur,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,192418,106.890485637401,spot_peer,InstitutPelFutur,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,192418,57.98395056282672,baseline,InstitutPelFutur,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,192924,-109.7523571160732,baseline,acm_bot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,192924,-40.791286282592566,spot_peer,acm_bot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,192924,-0.5074230667984666,relative_legacy,acm_bot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,192924,-115.200309344505,spot_baseline,acm_bot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,192924,-40.53729036637648,peer,acm_bot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,218666,-2.914634565951651,spot_baseline,GreeneiBot2,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,218666,0.2966970006865265,relative_legacy,GreeneiBot2,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,218666,26.141053095325184,peer,GreeneiBot2,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,218666,-1.8499154071069468,baseline,GreeneiBot2,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,218666,45.68704581743545,spot_peer,GreeneiBot2,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,220077,106.890485637401,spot_peer,mmBot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,220077,59.47546262292176,baseline,mmBot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,220077,80.70741393331326,peer,mmBot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,220077,0.9823388370389524,relative_legacy,mmBot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,246118,-1.442650657115427,peer,laylaps,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,246118,-73.69655941662063,spot_baseline,laylaps,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,246118,-8.82661156572802,spot_peer,laylaps,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,246118,0.0,relative_legacy,laylaps,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,246118,-12.045209996817697,baseline,laylaps,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,247214,-55.64195780143682,baseline,ajf-bot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,247214,-13.453148374666862,peer,ajf-bot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,247214,-0.2059146758615939,relative_legacy,ajf-bot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,247214,-15.13180421971562,spot_peer,ajf-bot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34423,"Will the body of water currently called the ""Gulf of Mexico"" on the National Map be renamed the ""Gulf of America"" before March 1, 2025?",2025-02-08 04:04:07.573439+00,247214,-81.88338257300231,spot_baseline,ajf-bot,True,yes,2025-02-09 01:47:00+00,2025-02-09 01:47:00+00,0.7,2025-02-09 01:47:00+00,34937 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,185699,-23.45318794609515,baseline,MWG,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,185699,-7.572469257764816,spot_peer,MWG,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,185699,-0.0202255552881799,relative_legacy,MWG,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,185699,0.7634457768268016,peer,MWG,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,185699,-32.19280948873624,spot_baseline,MWG,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,187708,1.6467901155465503,peer,twsummerbot,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,187708,0.7673027402292106,baseline,twsummerbot,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,187708,120.36768950272908,spot_peer,twsummerbot,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,187708,0.0205502867280374,relative_legacy,twsummerbot,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,187708,56.08392782941263,spot_baseline,twsummerbot,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,189869,-13.21497415131319,spot_baseline,VeritasAI,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,189869,-9.64577086676286,baseline,VeritasAI,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,189869,21.323317677060608,peer,VeritasAI,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,189869,0.2561193577419047,relative_legacy,VeritasAI,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,189869,19.932254407427077,spot_peer,VeritasAI,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,190710,7.558923032350583,spot_baseline,Bot_Pepa,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,190710,46.07273889282239,peer,Bot_Pepa,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,190710,0.5884412585743988,relative_legacy,Bot_Pepa,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,190710,5.781248791995258,baseline,Bot_Pepa,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,190710,50.04002440999714,spot_peer,Bot_Pepa,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,191026,-33.3805683142425,spot_peer,manticAI,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,191026,-16.393956080528163,peer,manticAI,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,191026,-0.2600628064352362,relative_legacy,manticAI,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,191026,-50.0,spot_baseline,manticAI,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,191026,-33.73682037658162,baseline,manticAI,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,191935,-129.1745993738133,spot_peer,pgodzinai,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,191935,-1.098133679202904,relative_legacy,pgodzinai,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,191935,-116.09640474436812,spot_baseline,pgodzinai,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,191935,-77.58288789385557,peer,pgodzinai,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,191935,-74.69411049667356,baseline,pgodzinai,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,192418,-14.319678285783626,spot_peer,InstitutPelFutur,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,192418,-36.84827970831032,spot_baseline,InstitutPelFutur,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,192418,-35.93669747665397,baseline,InstitutPelFutur,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,192418,-5.134782839900749,peer,InstitutPelFutur,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,192418,-0.0908329875095695,relative_legacy,InstitutPelFutur,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,218666,-35.185691779084834,baseline,GreeneiBot2,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,218666,-0.2435830740661413,relative_legacy,GreeneiBot2,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,218666,-29.28022103003584,spot_peer,GreeneiBot2,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,218666,-47.17082358168162,spot_baseline,GreeneiBot2,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,218666,-16.05043232420963,peer,GreeneiBot2,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,220077,-5.134782839900749,peer,mmBot,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,220077,-36.84827970831032,spot_baseline,mmBot,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,220077,-14.319678285783626,spot_peer,mmBot,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,220077,-0.0908329875095695,relative_legacy,mmBot,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,220077,-36.61487119960868,baseline,mmBot,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,222631,0.2186814740319973,relative_legacy,Grizeu_Bot,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,222631,111.55020580283696,spot_peer,Grizeu_Bot,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,222631,50.0,spot_baseline,Grizeu_Bot,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,222631,16.306966928325416,peer,Grizeu_Bot,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,222631,6.986445708407296,baseline,Grizeu_Bot,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236037,-23.696559416620616,spot_baseline,metac-o1,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236037,4.741211742675258,spot_peer,metac-o1,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236037,0.0773577947672401,relative_legacy,metac-o1,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236037,8.0562367766699,peer,metac-o1,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236037,-13.281268732737658,baseline,metac-o1,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236038,-34.51352098696156,peer,metac-gpt-4o,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236038,-43.71941685842348,baseline,metac-gpt-4o,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236038,-67.72417531586458,spot_peer,metac-gpt-4o,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236038,-73.6965594166207,spot_baseline,metac-gpt-4o,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236038,-0.5083591328970927,relative_legacy,metac-gpt-4o,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236040,-0.0715000257330942,relative_legacy,metac-claude-3-5-sonnet-latest,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236040,-21.591179406962784,baseline,metac-claude-3-5-sonnet-latest,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236040,-2.6452590106244798,peer,metac-claude-3-5-sonnet-latest,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236040,-14.319678285783626,spot_peer,metac-claude-3-5-sonnet-latest,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236040,-36.84827970831032,spot_baseline,metac-claude-3-5-sonnet-latest,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236041,-19.02267743654828,baseline,metac-claude-3-5-sonnet-20240620,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236041,-32.19280948873624,spot_baseline,metac-claude-3-5-sonnet-20240620,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236041,-7.572469257764816,spot_peer,metac-claude-3-5-sonnet-20240620,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236041,-0.0165874580934453,relative_legacy,metac-claude-3-5-sonnet-20240620,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236041,1.3709434747679734,peer,metac-claude-3-5-sonnet-20240620,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236043,-69.39693827481064,spot_peer,metac-grok-2-1212,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236043,-74.8507400722727,spot_baseline,metac-grok-2-1212,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236043,-0.5178102782326875,relative_legacy,metac-grok-2-1212,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236043,-35.18686397799598,peer,metac-grok-2-1212,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236043,-43.981544948014296,baseline,metac-grok-2-1212,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236045,-7.572469257764865,spot_peer,metac-Gemini-Exp-1206,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236045,-32.19280948873627,spot_baseline,metac-Gemini-Exp-1206,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236045,-0.0186757720237432,relative_legacy,metac-Gemini-Exp-1206,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236045,-17.410240867775524,baseline,metac-Gemini-Exp-1206,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236045,1.008099977004778,peer,metac-Gemini-Exp-1206,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236047,47.96373444853756,spot_peer,metac-Llama-3.1,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236047,3.5165654749526056,baseline,metac-Llama-3.1,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236047,33.35919559528271,peer,metac-Llama-3.1,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236047,0.423571301812089,relative_legacy,metac-Llama-3.1,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,236047,6.1263149654245845,spot_baseline,metac-Llama-3.1,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,237476,0.0,baseline,NextWorldLab,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,237476,31.814760020336657,peer,NextWorldLab,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,237476,0.3957722188888698,relative_legacy,NextWorldLab,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,237476,39.08481874429723,spot_peer,NextWorldLab,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,237476,0.0,spot_baseline,NextWorldLab,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,239758,-19.796433816556963,spot_baseline,metac-perplexity,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,239758,0.1155499179423727,relative_legacy,metac-perplexity,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,239758,10.806062931984496,peer,metac-perplexity,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,239758,-10.74398690098557,baseline,metac-perplexity,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,239758,10.393693966385923,spot_peer,metac-perplexity,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,239759,15.7561747432662,spot_peer,metac-exa,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,239759,13.845424767656004,peer,metac-exa,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,239759,-8.802939050039312,baseline,metac-exa,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,239759,-16.096404744368115,spot_baseline,metac-exa,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,239759,0.1568121755274212,relative_legacy,metac-exa,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,240414,-15.145988691172658,baseline,minefrac1,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,240414,-2.206202956640986,peer,minefrac1,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,240414,-0.0492841320547184,relative_legacy,minefrac1,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,240414,-14.319678285783612,spot_peer,minefrac1,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,240414,-36.84827970831029,spot_baseline,minefrac1,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,240416,-52.944684452678416,spot_baseline,metac-o1-preview,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,240416,-0.2514876064066964,relative_legacy,metac-o1-preview,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,240416,-15.892197307331267,peer,metac-o1-preview,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,240416,-29.85257346725611,baseline,metac-o1-preview,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,240416,-37.64832228681462,spot_peer,metac-o1-preview,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,246118,-5.627894278319897,baseline,laylaps,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,246118,24.3669032836646,peer,laylaps,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,246118,0.2944253043964328,relative_legacy,laylaps,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,246118,26.77113774385713,spot_peer,laylaps,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34424,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:04:07.604559+00,246118,-8.496250072115624,spot_baseline,laylaps,True,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34938 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,185699,-12.67617964681067,spot_baseline,MWG,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,185699,-0.7766800377218879,baseline,MWG,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,185699,-0.2699563711246197,peer,MWG,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,185699,-0.0050158579718922,relative_legacy,MWG,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,185699,-4.4059526329710055,spot_peer,MWG,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,187708,22.646986993005545,spot_peer,twsummerbot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,187708,10.963481322595513,spot_baseline,twsummerbot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,187708,2.0597923030726237,peer,twsummerbot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,187708,0.9992421087061092,baseline,twsummerbot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,187708,0.023968588226919,relative_legacy,twsummerbot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,189869,-0.186290711777098,relative_legacy,VeritasAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,189869,-33.77567183784982,spot_baseline,VeritasAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,189869,-28.55195409727563,spot_peer,VeritasAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,189869,-14.255850498495413,baseline,VeritasAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,189869,-11.870575838840937,peer,VeritasAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,190710,-7.3043688577182655,baseline,Bot_Pepa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,190710,-9.59032742893847,spot_baseline,Bot_Pepa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,190710,-0.8745410000875347,spot_peer,Bot_Pepa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,190710,-0.0438207683635881,relative_legacy,Bot_Pepa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,190710,2.904348189397248,peer,Bot_Pepa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,191026,-0.1537780522938825,baseline,manticAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,191026,9.839769983215362,spot_peer,manticAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,191026,0.0486893181265299,relative_legacy,manticAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,191026,8.945657912319652,peer,manticAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,191026,-0.2278447313886429,spot_baseline,manticAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,191935,-76.97452986341271,baseline,pgodzinai,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,191935,-115.31332106968227,spot_peer,pgodzinai,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,191935,-1.1570736092519354,relative_legacy,pgodzinai,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,191935,-109.59032742893848,spot_baseline,pgodzinai,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,191935,-80.1462519216779,peer,pgodzinai,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,192418,-46.497352071792704,spot_baseline,InstitutPelFutur,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,192418,-0.610617446616862,relative_legacy,InstitutPelFutur,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,192418,-43.11048976135465,spot_peer,InstitutPelFutur,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,192418,-45.05339174626503,baseline,InstitutPelFutur,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,192418,-45.5915987449636,peer,InstitutPelFutur,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,192924,-0.8745410000875347,spot_peer,acm_bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,192924,-9.59032742893847,spot_baseline,acm_bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,192924,-3.398886001001216,baseline,acm_bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,192924,-0.1067685736049519,peer,acm_bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,192924,-0.0143986722643899,relative_legacy,acm_bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,218666,-26.185950714291486,spot_baseline,GreeneiBot2,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,218666,-0.2296137770097226,relative_legacy,GreeneiBot2,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,218666,-11.268867958672088,peer,GreeneiBot2,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,218666,-18.232290868972907,baseline,GreeneiBot2,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,218666,-19.86636983279114,spot_peer,GreeneiBot2,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,220077,16.37946000937665,baseline,mmBot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,220077,0.3583278747576073,relative_legacy,mmBot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,220077,29.092341546972985,spot_peer,mmBot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,220077,41.4869094610704,peer,mmBot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,220077,16.595623285353042,spot_baseline,mmBot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,222631,15.34781286219588,baseline,Grizeu_Bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,222631,0.2751595115852268,relative_legacy,Grizeu_Bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,222631,23.504991432414496,peer,Grizeu_Bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,222631,41.3614077611796,spot_peer,Grizeu_Bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,222631,27.3166972139158,spot_baseline,Grizeu_Bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236037,9.998835299785553,peer,metac-o1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236037,0.0932397338461275,relative_legacy,metac-o1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236037,7.005295856414573,spot_baseline,metac-o1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236037,3.819726255594494,baseline,metac-o1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236037,18.117287832616075,spot_peer,metac-o1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236038,0.0997898095837648,relative_legacy,metac-gpt-4o,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236038,18.117287832616075,spot_peer,metac-gpt-4o,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236038,4.140545213899035,baseline,metac-gpt-4o,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236038,7.005295856414573,spot_baseline,metac-gpt-4o,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236038,11.185426105139564,peer,metac-gpt-4o,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236040,1.6677654915046027,baseline,metac-claude-3-5-sonnet-latest,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236040,8.11845110341279,peer,metac-claude-3-5-sonnet-latest,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236040,0.0596784876294682,relative_legacy,metac-claude-3-5-sonnet-latest,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236040,13.381623866287182,spot_peer,metac-claude-3-5-sonnet-latest,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236040,2.867132234389812,spot_baseline,metac-claude-3-5-sonnet-latest,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236041,7.579122741538956,baseline,metac-claude-3-5-sonnet-20240620,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236041,15.082085794300133,peer,metac-claude-3-5-sonnet-20240620,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236041,12.87984521320482,spot_baseline,metac-claude-3-5-sonnet-20240620,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236041,24.84005045111305,spot_peer,metac-claude-3-5-sonnet-20240620,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236041,0.1539310515290893,relative_legacy,metac-claude-3-5-sonnet-20240620,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236043,-12.67617964681067,spot_baseline,metac-grok-2-1212,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236043,-0.0837981083665801,relative_legacy,metac-grok-2-1212,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236043,-2.295976262350496,peer,metac-grok-2-1212,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236043,-7.403988004249054,baseline,metac-grok-2-1212,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236043,-4.4059526329710055,spot_peer,metac-grok-2-1212,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236045,0.1914401718742738,relative_legacy,metac-Gemini-Exp-1206,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236045,31.664488691803346,spot_peer,metac-Gemini-Exp-1206,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236045,16.86275839177648,peer,metac-Gemini-Exp-1206,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236045,9.953775066499302,baseline,metac-Gemini-Exp-1206,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236045,18.84324174411861,spot_baseline,metac-Gemini-Exp-1206,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236047,-9.073448124029383,baseline,metac-Llama-3.1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236047,-0.1105855180812526,relative_legacy,metac-Llama-3.1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236047,-8.061298446644983,spot_peer,metac-Llama-3.1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236047,-15.870329227443229,spot_baseline,metac-Llama-3.1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,236047,-4.446990365615183,peer,metac-Llama-3.1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,237476,-9.59032742893847,spot_baseline,NextWorldLab,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,237476,-0.0542166782508548,relative_legacy,NextWorldLab,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,237476,1.2354651373345362,peer,NextWorldLab,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,237476,-6.352277927237512,baseline,NextWorldLab,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,237476,-0.8745410000875347,spot_peer,NextWorldLab,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,239758,2.541065543974,spot_peer,metac-perplexity,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,239758,-3.490513498926807,baseline,metac-perplexity,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,239758,1.400337405717463,peer,metac-perplexity,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,239758,-0.0216604819772387,relative_legacy,metac-perplexity,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,239758,-6.605669132175454,spot_baseline,metac-perplexity,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,239759,0.9917543195371952,baseline,metac-exa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,239759,1.8025128155254135,spot_baseline,metac-exa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,239759,12.163286390954749,spot_peer,metac-exa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,239759,0.0481146397456684,relative_legacy,metac-exa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,239759,6.816992937407341,peer,metac-exa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,240414,-15.088366160008654,peer,minefrac1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,240414,-16.90006192231776,baseline,minefrac1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,240414,-42.05627994173468,spot_baseline,minefrac1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,240414,-38.02818099370548,spot_peer,minefrac1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,240414,-0.2277196326448561,relative_legacy,minefrac1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,240416,0.9975586446899356,baseline,metac-o1-preview,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,240416,0.0480991159070871,relative_legacy,metac-o1-preview,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,240416,12.163286390954768,spot_peer,metac-o1-preview,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,240416,6.856622446545625,peer,metac-o1-preview,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,240416,1.8025128155254135,spot_baseline,metac-o1-preview,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,246118,-0.054153711872152,relative_legacy,laylaps,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,246118,-9.59032742893847,spot_baseline,laylaps,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,246118,-0.8745410000875347,spot_peer,laylaps,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,246118,0.8587620564910773,peer,laylaps,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,246118,-6.18500489026896,baseline,laylaps,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,250015,13.76791622067388,peer,metac-deepseek-r1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,250015,7.785911542568889,baseline,metac-deepseek-r1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,250015,0.1608034791278264,relative_legacy,metac-deepseek-r1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,250015,29.312800183054005,spot_peer,metac-deepseek-r1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34425,"In the Second Estimate for Q3 2024 US GDP, will BLS revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:07.635547+00,250015,16.788266579826246,spot_baseline,metac-deepseek-r1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34939 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,189869,0.0488787149093466,relative_legacy,VeritasAI,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,189869,7.630327786491925,spot_peer,VeritasAI,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,189869,9.189324243882766,peer,VeritasAI,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,189869,77.2586101478924,spot_baseline,VeritasAI,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,189869,55.64859565438744,baseline,VeritasAI,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,191026,-0.035602599864413,relative_legacy,manticAI,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,191026,1.6102590978720357,peer,manticAI,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,191026,72.27062322935723,spot_baseline,manticAI,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,191026,48.79051816342529,baseline,manticAI,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,191026,-1.5443639316976177,spot_peer,manticAI,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,191935,4.911093592669356,baseline,pgodzinai,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,191935,86.28168033597315,spot_baseline,pgodzinai,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,191935,24.226980640493103,spot_peer,pgodzinai,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,191935,0.0106194283208291,relative_legacy,pgodzinai,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,191935,1.378982988392773,peer,pgodzinai,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,192418,48.5574054929266,baseline,InstitutPelFutur,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,192418,-29.351644838731072,peer,InstitutPelFutur,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,192418,-0.4067751705387999,relative_legacy,InstitutPelFutur,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,192418,50.38592728251845,spot_baseline,InstitutPelFutur,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,192418,-41.798146056194994,spot_peer,InstitutPelFutur,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,220077,73.44141010196059,spot_baseline,mmBot,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,220077,54.461270785246754,baseline,mmBot,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,220077,4.616074656938083,peer,mmBot,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,220077,-0.0097941426665898,relative_legacy,mmBot,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,220077,0.6091318170429424,spot_peer,mmBot,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,236041,56.93234419266069,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,236041,32.98169182032757,baseline,metac-claude-3-5-sonnet-20240620,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,236041,-15.326215467020582,peer,metac-claude-3-5-sonnet-20240620,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,236041,-0.2276199203067269,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,236041,-29.756944266729125,spot_peer,metac-claude-3-5-sonnet-20240620,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,239758,77.83853970487746,spot_baseline,metac-perplexity,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,239758,0.0004066556895592,relative_legacy,metac-perplexity,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,239758,3.4160953435540997,peer,metac-perplexity,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,239758,22.75021549418256,baseline,metac-perplexity,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,239758,8.697025632838054,spot_peer,metac-perplexity,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,246118,31.93598837775576,spot_peer,laylaps,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,246118,90.47282167668082,spot_baseline,laylaps,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,246118,59.69071816055524,baseline,laylaps,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,246118,24.467123975111896,peer,laylaps,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34426,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:04:07.666456+00,246118,0.2423818595015633,relative_legacy,laylaps,True,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34940 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,189869,125.52103476417813,peer,VeritasAI,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,189869,163.30560162958625,spot_peer,VeritasAI,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,189869,25.192963641259222,spot_baseline,VeritasAI,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,189869,1.7090843356257608,relative_legacy,VeritasAI,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,189869,18.27470125665128,baseline,VeritasAI,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,190710,-80.07576683795243,baseline,Bot_Pepa,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,190710,-106.54641691014224,spot_baseline,Bot_Pepa,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,190710,-42.234038651286056,peer,Bot_Pepa,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,190710,-0.5306626171798462,relative_legacy,Bot_Pepa,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,190710,-58.81724501994712,spot_peer,Bot_Pepa,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,191026,-30.14534526540622,baseline,manticAI,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,191026,0.519278954682652,relative_legacy,manticAI,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,191026,34.84040727216784,peer,manticAI,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,191026,-44.64073966405045,spot_baseline,manticAI,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,191026,45.56054388504916,spot_peer,manticAI,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,191935,-193.01031454454437,spot_peer,pgodzinai,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,191935,-143.0245235008781,peer,pgodzinai,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,191935,-137.1957856837928,baseline,pgodzinai,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,191935,-1.871430416746269,relative_legacy,pgodzinai,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,191935,-186.1353116146786,spot_baseline,pgodzinai,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,192418,0.5770815341005472,relative_legacy,InstitutPelFutur,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,192418,-41.24308270154544,baseline,InstitutPelFutur,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,192418,41.554162870021365,peer,InstitutPelFutur,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,192418,48.212885673879526,spot_peer,InstitutPelFutur,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,192418,-43.06765580733931,spot_baseline,InstitutPelFutur,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,218666,60.880554339826894,spot_baseline,GreeneiBot2,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,218666,12.380449867281774,baseline,GreeneiBot2,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,218666,45.54119635014718,peer,GreeneiBot2,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,218666,0.6374059472105761,relative_legacy,GreeneiBot2,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,218666,223.47765650680145,spot_peer,GreeneiBot2,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,220077,48.21288567387931,spot_peer,mmBot,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,220077,41.55416287002111,peer,mmBot,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,220077,0.5770815341005444,relative_legacy,mmBot,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,220077,-43.06765580733944,spot_baseline,mmBot,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,220077,-40.11669601633068,baseline,mmBot,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,222631,-15.133433422778134,peer,Grizeu_Bot,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,222631,-19.33482059606732,baseline,Grizeu_Bot,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,222631,-133.75221588931046,spot_baseline,Grizeu_Bot,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,222631,-104.68833906437352,spot_peer,Grizeu_Bot,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,222631,-0.1792213125652017,relative_legacy,Grizeu_Bot,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236037,-12.580253331904387,peer,metac-o1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236037,-48.031109162589175,baseline,metac-o1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236037,-0.146478802105847,relative_legacy,metac-o1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236037,-28.67912314404624,spot_peer,metac-o1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236037,-88.67172474406217,spot_baseline,metac-o1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236038,-33.72986510929928,spot_peer,metac-gpt-4o,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236038,-53.86060953215006,baseline,metac-gpt-4o,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236038,-16.41999608520382,peer,metac-gpt-4o,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236038,-0.1894475412320592,relative_legacy,metac-gpt-4o,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236038,-91.66728160759024,spot_baseline,metac-gpt-4o,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236040,-58.81724501994712,spot_peer,metac-claude-3-5-sonnet-latest,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236040,-106.54641691014224,spot_baseline,metac-claude-3-5-sonnet-latest,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236040,-0.3878993484698317,relative_legacy,metac-claude-3-5-sonnet-latest,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236040,-30.781031128609,peer,metac-claude-3-5-sonnet-latest,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236040,-61.63296778971396,baseline,metac-claude-3-5-sonnet-latest,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236041,-100.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236041,-0.3026080650919573,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236041,-24.67651053187804,peer,metac-claude-3-5-sonnet-20240620,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236041,-58.60764360663331,baseline,metac-claude-3-5-sonnet-20240620,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236041,-47.779476712936734,spot_peer,metac-claude-3-5-sonnet-20240620,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236043,32.49636994685364,spot_peer,metac-grok-2-1212,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236043,-30.47566017005468,baseline,metac-grok-2-1212,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236043,22.529194807199925,peer,metac-grok-2-1212,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236043,0.341180564907023,relative_legacy,metac-grok-2-1212,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236043,-52.38900242942528,spot_baseline,metac-grok-2-1212,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236045,-7.033101866817977,peer,metac-Gemini-Exp-1206,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236045,-86.13531161467861,spot_baseline,metac-Gemini-Exp-1206,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236045,-0.0650817019546746,relative_legacy,metac-Gemini-Exp-1206,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236045,-25.668458929860137,baseline,metac-Gemini-Exp-1206,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236045,-24.40253324192427,spot_peer,metac-Gemini-Exp-1206,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236047,-0.256282014141218,relative_legacy,metac-Llama-3.1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236047,-96.96849665386334,spot_baseline,metac-Llama-3.1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236047,-54.96480165307759,baseline,metac-Llama-3.1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236047,-20.957408641338244,peer,metac-Llama-3.1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,236047,-42.668126180901,spot_peer,metac-Llama-3.1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,237476,-13.924862482504636,peer,NextWorldLab,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,237476,-86.13531161467861,spot_baseline,NextWorldLab,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,237476,-24.40253324192427,spot_peer,NextWorldLab,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,237476,-60.21264823574089,baseline,NextWorldLab,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,237476,-0.1330761437522638,relative_legacy,NextWorldLab,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,239758,43.286002530636885,spot_peer,metac-perplexity,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,239758,-24.150932177188658,baseline,metac-perplexity,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,239758,25.56449177556768,peer,metac-perplexity,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,239758,0.3746182840116292,relative_legacy,metac-perplexity,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,239758,-45.98975294021112,spot_baseline,metac-perplexity,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,239759,0.1580353643081083,relative_legacy,metac-exa,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,239759,10.846939166012262,spot_peer,metac-exa,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,239759,-65.2291161024619,spot_baseline,metac-exa,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,239759,-36.50382530125496,baseline,metac-exa,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,239759,9.429574865560395,peer,metac-exa,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,240414,135.47003188612854,spot_peer,minefrac1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,240414,8.683897731959355,spot_baseline,minefrac1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,240414,0.7452975317759813,relative_legacy,minefrac1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,240414,53.6864695641833,peer,minefrac1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,240414,3.3846822843638567,baseline,minefrac1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,240416,-86.60497563330236,baseline,metac-o1-preview,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,240416,-156.93234419266088,spot_baseline,metac-o1-preview,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,240416,-143.7718390997533,spot_peer,metac-o1-preview,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,240416,-1.020104110440757,relative_legacy,metac-o1-preview,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,240416,-76.6141403490498,peer,metac-o1-preview,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,246118,-86.13531161467861,spot_baseline,laylaps,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,246118,-57.17229805854705,baseline,laylaps,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,246118,-12.968680229297869,peer,laylaps,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,246118,-0.1201021683918115,relative_legacy,laylaps,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,246118,-24.40253324192427,spot_peer,laylaps,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,250015,16.127285082499245,peer,metac-deepseek-r1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,250015,-22.185068020480955,baseline,metac-deepseek-r1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,250015,-51.31913082450606,spot_baseline,metac-deepseek-r1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,250015,34.30025672269465,spot_peer,metac-deepseek-r1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34427,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on February 28, 2025?",2025-02-08 04:04:07.983901+00,250015,0.2339531834661422,relative_legacy,metac-deepseek-r1,True,Greater than 80,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34941 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,187708,-13.37392749635613,spot_peer,twsummerbot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,187708,-0.3291121854450615,baseline,twsummerbot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,187708,-0.6663250033021276,peer,twsummerbot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,187708,-6.605669132175445,spot_baseline,twsummerbot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,187708,-0.0114707726325633,relative_legacy,twsummerbot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,189869,-33.9304158325162,baseline,VeritasAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,189869,-46.456370578952566,peer,VeritasAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,189869,-0.6586324757942004,relative_legacy,VeritasAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,189869,-59.10487681091144,spot_peer,VeritasAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,189869,-46.497352071792704,spot_baseline,VeritasAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,190710,1.8025128155254135,spot_baseline,Bot_Pepa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,190710,1.3469132953320764,baseline,Bot_Pepa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,190710,-5.512415679670871,peer,Bot_Pepa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,190710,-0.1012967282409771,relative_legacy,Bot_Pepa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,190710,-3.734972352250207,spot_peer,Bot_Pepa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,191026,27.80094463829412,peer,manticAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,191026,42.468140242050666,spot_baseline,manticAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,191026,42.88320992654585,spot_peer,manticAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,191026,28.685944025871517,baseline,manticAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,191026,0.3376576583326998,relative_legacy,manticAI,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,191935,11.116116286191795,baseline,pgodzinai,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,191935,16.595623285353042,spot_baseline,pgodzinai,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,191935,13.223524638821967,spot_peer,pgodzinai,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,191935,0.0607211474176506,relative_legacy,pgodzinai,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,191935,7.415197077146545,peer,pgodzinai,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,192418,-15.506595515261852,peer,InstitutPelFutur,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,192418,4.224084301514076,baseline,InstitutPelFutur,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,192418,-0.7101858959108367,spot_peer,InstitutPelFutur,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,192418,-0.1559600965256808,relative_legacy,InstitutPelFutur,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,192418,4.441072130058007,spot_baseline,InstitutPelFutur,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,192924,-0.2179055908502188,relative_legacy,acm_bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,192924,-5.149255298880433,spot_baseline,acm_bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,192924,-4.385268963775196,baseline,acm_bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,192924,-18.14377731016638,peer,acm_bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,192924,-11.70432666020575,spot_peer,acm_bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,218666,2.995287033318806,peer,GreeneiBot2,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,218666,10.581666414374329,spot_peer,GreeneiBot2,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,218666,0.0165574162178011,relative_legacy,GreeneiBot2,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,218666,4.232442977083424,baseline,GreeneiBot2,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,218666,14.291097089402346,spot_baseline,GreeneiBot2,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,220077,98.17946086049,spot_baseline,mmBot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,220077,1.2176081161823058,relative_legacy,mmBot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,220077,98.643241325879,peer,mmBot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,220077,90.76834125068724,baseline,mmBot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,220077,106.74944448238566,spot_peer,mmBot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,222631,0.2823846069872661,relative_legacy,Grizeu_Bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,222631,49.5685709972445,spot_peer,Grizeu_Bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,222631,48.299864887318144,spot_baseline,Grizeu_Bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,222631,22.9631218204819,baseline,Grizeu_Bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,222631,23.201312910875387,peer,Grizeu_Bot,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236037,2.2374895231587018,peer,metac-o1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236037,5.007677207031813,baseline,metac-o1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236037,9.499257963950354,spot_baseline,metac-o1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236037,-0.0095044969161196,relative_legacy,metac-o1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236037,5.088407268069421,spot_peer,metac-o1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236038,-7.435038081447876,baseline,metac-gpt-4o,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236038,-12.676179646810644,spot_baseline,metac-gpt-4o,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236038,-20.33302744404364,spot_peer,metac-gpt-4o,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236038,-0.2113986457595461,relative_legacy,metac-gpt-4o,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236038,-12.57690832299532,peer,metac-gpt-4o,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236040,16.595623285353042,spot_baseline,metac-claude-3-5-sonnet-latest,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236040,9.545469800462769,baseline,metac-claude-3-5-sonnet-latest,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236040,7.148117316703643,peer,metac-claude-3-5-sonnet-latest,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236040,0.0589180135302118,relative_legacy,metac-claude-3-5-sonnet-latest,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236040,13.223524638821967,spot_peer,metac-claude-3-5-sonnet-latest,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236041,-32.20625498239038,spot_baseline,metac-claude-3-5-sonnet-20240620,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236041,-18.786415898897488,baseline,metac-claude-3-5-sonnet-20240620,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236041,-25.630959746244603,peer,metac-claude-3-5-sonnet-20240620,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236041,-0.3908172823671153,relative_legacy,metac-claude-3-5-sonnet-20240620,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236041,-42.72187693512036,spot_peer,metac-claude-3-5-sonnet-20240620,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236043,8.255378528219815,baseline,metac-grok-2-1212,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236043,14.291097089402346,spot_baseline,metac-grok-2-1212,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236043,10.581666414374329,spot_peer,metac-grok-2-1212,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236043,0.0383571747966169,relative_legacy,metac-grok-2-1212,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236043,5.635432586202229,peer,metac-grok-2-1212,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236045,9.499257963950354,spot_baseline,metac-Gemini-Exp-1206,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236045,4.833847454303089,baseline,metac-Gemini-Exp-1206,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236045,2.145278087199683,peer,metac-Gemini-Exp-1206,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236045,-0.0099917496865298,relative_legacy,metac-Gemini-Exp-1206,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236045,5.088407268069421,spot_peer,metac-Gemini-Exp-1206,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236047,-30.95458970608514,peer,metac-Llama-3.1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236047,-42.05627994173468,spot_baseline,metac-Llama-3.1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236047,-54.0137292454055,spot_peer,metac-Llama-3.1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236047,-23.621151357095076,baseline,metac-Llama-3.1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,236047,-0.4641753435428598,relative_legacy,metac-Llama-3.1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,237476,7.702360353469504,peer,NextWorldLab,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,237476,0.0675029567814038,relative_legacy,NextWorldLab,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,237476,13.223524638821967,spot_peer,NextWorldLab,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,237476,11.916798828000536,baseline,NextWorldLab,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,237476,16.595623285353042,spot_baseline,NextWorldLab,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,239758,-2.3802962188069983,peer,metac-perplexity,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,239758,0.9258027529128636,baseline,metac-perplexity,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,239758,-0.072199331414888,relative_legacy,metac-perplexity,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,239758,-3.734972352250184,spot_peer,metac-perplexity,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,239758,1.8025128155254135,spot_baseline,metac-perplexity,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,239759,-3.738774881887411,baseline,metac-exa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,239759,-0.1494252348012223,relative_legacy,metac-exa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,239759,-6.605669132175445,spot_baseline,metac-exa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,239759,-13.37392749635613,spot_peer,metac-exa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,239759,-8.075292643293869,peer,metac-exa,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,240414,-42.05627994173468,spot_baseline,minefrac1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,240414,-15.518207191477662,baseline,minefrac1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,240414,-20.12394642766616,peer,minefrac1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,240414,-0.3099603526334078,relative_legacy,minefrac1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,240414,-54.0137292454055,spot_peer,minefrac1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,240416,5.088407268069421,spot_peer,metac-o1-preview,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,240416,5.145794991021058,baseline,metac-o1-preview,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,240416,2.313926738924879,peer,metac-o1-preview,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,240416,-0.0085310417695061,relative_legacy,metac-o1-preview,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,240416,9.499257963950354,spot_baseline,metac-o1-preview,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,246118,-0.0656079301196222,relative_legacy,laylaps,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,246118,-1.866626839069584,peer,laylaps,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,246118,2.9122807157029045,baseline,laylaps,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,246118,-0.7101858959108134,spot_peer,laylaps,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,246118,4.441072130058027,spot_baseline,laylaps,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,250015,0.6555164003428359,peer,metac-deepseek-r1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,250015,2.8047361913507083,baseline,metac-deepseek-r1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,250015,7.005295856414573,spot_baseline,metac-deepseek-r1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,250015,2.229383874527042,spot_peer,metac-deepseek-r1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34428,"In the Second Estimate for Q3 2024 US GDP, will BEA revise the GDP estimate for the quarter upward, downward, or leave it the same?",2025-02-08 04:04:08.015293+00,250015,-0.0247489833765206,relative_legacy,metac-deepseek-r1,True,revised upward,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34942 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,189869,12.07920030840591,peer,VeritasAI,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,189869,3.267211583928816e-14,baseline,VeritasAI,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,189869,4.440892098500624e-14,spot_baseline,VeritasAI,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,189869,17.907165907378037,spot_peer,VeritasAI,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,189869,-0.0125453619922006,relative_legacy,VeritasAI,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,190710,3.2992449032740745e-14,baseline,Bot_Pepa,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,190710,4.440892098500624e-14,spot_baseline,Bot_Pepa,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,190710,17.907165907378037,spot_peer,Bot_Pepa,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,190710,-0.0099292371396536,relative_legacy,Bot_Pepa,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,190710,12.582477494822331,peer,Bot_Pepa,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,191026,-4.854942476045707,relative_legacy,manticAI,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,191026,-172.2496553345021,baseline,manticAI,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,191026,-170.6757834055022,peer,manticAI,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,191026,-187.0083248531439,spot_peer,manticAI,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,191026,-195.60115027140725,spot_baseline,manticAI,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,191935,-15.932140341669534,baseline,pgodzinai,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,191935,-15.228516578167548,peer,pgodzinai,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,191935,-0.4447969038733573,relative_legacy,pgodzinai,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,191935,-186.48711704655173,spot_peer,pgodzinai,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,191935,-195.1036337287511,spot_baseline,pgodzinai,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,192418,17.907165907378037,spot_peer,InstitutPelFutur,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,192418,4.440892098500624e-14,spot_baseline,InstitutPelFutur,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,192418,1.9881952664111283e-14,baseline,InstitutPelFutur,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,192418,5.1497874315855405,peer,InstitutPelFutur,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,192418,0.0107535314833597,relative_legacy,InstitutPelFutur,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,192924,24.056203993697977,peer,acm_bot,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,192924,4.440892098500624e-14,spot_baseline,acm_bot,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,192924,17.907165907378037,spot_peer,acm_bot,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,192924,0.0671563077651706,relative_legacy,acm_bot,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,192924,3.771903405645978e-14,baseline,acm_bot,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,218666,0.0141825868641758,relative_legacy,GreeneiBot2,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,218666,2.2012085154243097,peer,GreeneiBot2,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,218666,7.160394266634952e-15,baseline,GreeneiBot2,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,218666,4.440892098500624e-14,spot_baseline,GreeneiBot2,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,218666,17.907165907378037,spot_peer,GreeneiBot2,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,220077,-20.003059082778783,spot_baseline,mmBot,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,220077,-18.347991438654137,baseline,mmBot,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,220077,-3.048419798390255,spot_peer,mmBot,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,220077,10.192506642352248,peer,mmBot,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,220077,-0.3931303192785653,relative_legacy,mmBot,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,222631,1.8223435026563908,peer,Grizeu_Bot,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,222631,5.393716696245561e-15,baseline,Grizeu_Bot,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,222631,4.440892098500624e-14,spot_baseline,Grizeu_Bot,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,222631,17.907165907378037,spot_peer,Grizeu_Bot,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,222631,0.0145701145381426,relative_legacy,Grizeu_Bot,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236037,5.986153055692938,peer,metac-o1,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236037,0.0095637774741898,relative_legacy,metac-o1,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236037,17.907165907378037,spot_peer,metac-o1,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236037,4.440892098500624e-14,spot_baseline,metac-o1,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236037,2.3048468293938246e-14,baseline,metac-o1,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236038,0.0073208160723239,relative_legacy,metac-gpt-4o,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236038,2.588629268858625e-14,baseline,metac-gpt-4o,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236038,17.907165907378037,spot_peer,metac-gpt-4o,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236038,4.440892098500624e-14,spot_baseline,metac-gpt-4o,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236038,7.017035811029237,peer,metac-gpt-4o,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236040,4.440892098500624e-14,spot_baseline,metac-claude-3-5-sonnet-latest,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236040,17.907165907378037,spot_peer,metac-claude-3-5-sonnet-latest,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236040,0.0079586251086057,relative_legacy,metac-claude-3-5-sonnet-latest,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236040,6.787067612774505,peer,metac-claude-3-5-sonnet-latest,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236040,2.5389936166643173e-14,baseline,metac-claude-3-5-sonnet-latest,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236041,17.907165907378037,spot_peer,metac-claude-3-5-sonnet-20240620,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236041,0.0073904318417218,relative_legacy,metac-claude-3-5-sonnet-20240620,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236041,6.996191287317348,peer,metac-claude-3-5-sonnet-20240620,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236041,2.5850482285510664e-14,baseline,metac-claude-3-5-sonnet-20240620,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236041,4.440892098500624e-14,spot_baseline,metac-claude-3-5-sonnet-20240620,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236043,4.440892098500624e-14,spot_baseline,metac-grok-2-1212,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236043,6.84610858886858,peer,metac-grok-2-1212,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236043,0.0078151347347452,relative_legacy,metac-grok-2-1212,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236043,17.907165907378037,spot_peer,metac-grok-2-1212,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236043,2.5534837613532842e-14,baseline,metac-grok-2-1212,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236045,0.0100477543302126,relative_legacy,metac-Gemini-Exp-1206,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236045,17.907165907378037,spot_peer,metac-Gemini-Exp-1206,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236045,2.1945302230198382e-14,baseline,metac-Gemini-Exp-1206,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236045,4.440892098500624e-14,spot_baseline,metac-Gemini-Exp-1206,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236045,5.675240140219558,peer,metac-Gemini-Exp-1206,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236047,2.4673196980180383e-14,baseline,metac-Llama-3.1,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236047,4.440892098500624e-14,spot_baseline,metac-Llama-3.1,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236047,0.0085404520082384,relative_legacy,metac-Llama-3.1,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236047,6.521576938175418,peer,metac-Llama-3.1,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,236047,17.907165907378037,spot_peer,metac-Llama-3.1,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,237476,54.21487536527988,spot_peer,NextWorldLab,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,237476,39.79554614768548,peer,NextWorldLab,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,237476,34.65735902799725,spot_baseline,NextWorldLab,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,237476,25.517472563982608,baseline,NextWorldLab,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,237476,0.7236176449479971,relative_legacy,NextWorldLab,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,239758,4.440892098500624e-14,spot_baseline,metac-perplexity,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,239758,17.907165907378037,spot_peer,metac-perplexity,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,239758,0.0098379776595777,relative_legacy,metac-perplexity,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,239758,5.817376565284856,peer,metac-perplexity,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,239758,2.246856018620347e-14,baseline,metac-perplexity,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,239759,2.57235859268132e-14,baseline,metac-exa,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,239759,4.440892098500624e-14,spot_baseline,metac-exa,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,239759,0.007584456129241,relative_legacy,metac-exa,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,239759,6.931560420605001,peer,metac-exa,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,239759,17.907165907378037,spot_peer,metac-exa,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,240414,3.910130591915066,peer,minefrac1,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,240414,1.4709820719191902e-14,baseline,minefrac1,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,240414,17.907165907378037,spot_peer,minefrac1,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,240414,4.440892098500624e-14,spot_baseline,minefrac1,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,240414,0.0122715494954091,relative_legacy,minefrac1,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,240416,2.3670523246468807e-14,baseline,metac-o1-preview,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,240416,0.009214449199775,relative_legacy,metac-o1-preview,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,240416,17.907165907378037,spot_peer,metac-o1-preview,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,240416,4.440892098500624e-14,spot_baseline,metac-o1-preview,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,240416,6.181122344076396,peer,metac-o1-preview,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,246118,-0.0013578210890196,relative_legacy,laylaps,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,246118,9.35546259108055,peer,laylaps,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,246118,17.907165907378037,spot_peer,laylaps,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,246118,4.440892098500624e-14,spot_baseline,laylaps,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34429,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:04:08.046204+00,246118,2.93297461640345e-14,baseline,laylaps,True,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34943 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,189869,-150.77675304250684,spot_baseline,VeritasAI,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,189869,-122.97837377119852,spot_peer,VeritasAI,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,189869,-3.815731057623196,relative_legacy,VeritasAI,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,189869,-87.56917539049653,peer,VeritasAI,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,189869,-110.28086742376992,baseline,VeritasAI,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,190710,-3.5808688373480257,relative_legacy,Bot_Pepa,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,190710,-78.6435571122702,peer,Bot_Pepa,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,190710,-102.1929550119193,baseline,Bot_Pepa,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,190710,-139.25055811191643,spot_baseline,Bot_Pepa,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,190710,-110.92826088921768,spot_peer,Bot_Pepa,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,191026,102.73433737077256,spot_peer,manticAI,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,191026,0.964942701854572,relative_legacy,manticAI,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,191026,115.92128654979018,peer,manticAI,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,191026,65.12236196285683,spot_baseline,manticAI,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,191026,57.35984365681001,baseline,manticAI,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,191935,-191.03501061615677,spot_peer,pgodzinai,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,191935,-29.96338069359178,baseline,pgodzinai,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,191935,-215.87440567681463,spot_baseline,pgodzinai,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,191935,-26.48172483913021,peer,pgodzinai,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,191935,-0.9950620168454096,relative_legacy,pgodzinai,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,192418,33.82045983276348,peer,InstitutPelFutur,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,192418,39.92538481088862,spot_baseline,InstitutPelFutur,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,192418,76.39204307553307,spot_peer,InstitutPelFutur,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,192418,0.0385571225625637,relative_legacy,InstitutPelFutur,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,192418,18.864263155909526,baseline,InstitutPelFutur,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,192924,-4.153589742384392,relative_legacy,acm_bot,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,192924,-115.42185062725513,spot_peer,acm_bot,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,192924,-143.54877438308267,spot_baseline,acm_bot,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,192924,-121.1677518192201,baseline,acm_bot,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,192924,-91.77265579281544,peer,acm_bot,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,218666,-179.1759069228459,spot_baseline,GreeneiBot2,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,218666,-44.49920204482307,baseline,GreeneiBot2,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,218666,-38.43332953128494,peer,GreeneiBot2,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,218666,-1.5232102545323365,relative_legacy,GreeneiBot2,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,218666,-152.6683982824621,spot_peer,GreeneiBot2,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,220077,-177.40535039883278,spot_baseline,mmBot,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,220077,-132.93002772636865,peer,mmBot,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,220077,-161.586625539205,baseline,mmBot,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,220077,-5.198788911091462,relative_legacy,mmBot,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,220077,-150.8173619164484,spot_peer,mmBot,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,222631,7.850930792761468,baseline,Grizeu_Bot,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,222631,60.19864021629683,spot_baseline,Grizeu_Bot,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,222631,97.58681009027804,spot_peer,Grizeu_Bot,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,222631,0.1026864665802046,relative_legacy,Grizeu_Bot,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,222631,12.72698668196362,peer,Grizeu_Bot,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236037,-0.2353712267080756,relative_legacy,metac-o1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236037,15.126172648336176,baseline,metac-o1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236037,61.35411656100777,spot_peer,metac-o1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236037,25.5412811882992,spot_baseline,metac-o1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236037,33.240241047970194,peer,metac-o1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236038,0.9600834964174696,relative_legacy,metac-gpt-4o,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236038,57.080911842417,baseline,metac-gpt-4o,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236038,94.8559992442941,spot_baseline,metac-gpt-4o,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236038,133.8195036195479,spot_peer,metac-gpt-4o,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236038,78.02458526611886,peer,metac-gpt-4o,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236040,-124.24533248941292,spot_baseline,metac-claude-3-5-sonnet-latest,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236040,-61.05286236140516,peer,metac-claude-3-5-sonnet-latest,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236040,-2.8457213671279256,relative_legacy,metac-claude-3-5-sonnet-latest,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236040,-74.82298142145507,baseline,metac-claude-3-5-sonnet-latest,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236040,-95.24097955660037,spot_peer,metac-claude-3-5-sonnet-latest,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236041,-2.8884592125444186,relative_legacy,metac-claude-3-5-sonnet-20240620,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236041,-97.791382865446,spot_peer,metac-claude-3-5-sonnet-20240620,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236041,-76.30444185042968,baseline,metac-claude-3-5-sonnet-20240620,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236041,-62.60672420071507,peer,metac-claude-3-5-sonnet-20240620,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236041,-126.68484869787396,spot_baseline,metac-claude-3-5-sonnet-20240620,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236043,94.855999244294,spot_baseline,metac-grok-2-1212,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236043,133.8195036195478,spot_peer,metac-grok-2-1212,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236043,0.958934008503942,relative_legacy,metac-grok-2-1212,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236043,77.90276574690267,peer,metac-grok-2-1212,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236043,57.02214052475532,baseline,metac-grok-2-1212,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236045,0.3553618732880481,relative_legacy,metac-Gemini-Exp-1206,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236045,60.19864021629683,spot_baseline,metac-Gemini-Exp-1206,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236045,97.58681009027804,spot_peer,metac-Gemini-Exp-1206,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236045,54.456750663531615,peer,metac-Gemini-Exp-1206,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236045,35.384508415538896,baseline,metac-Gemini-Exp-1206,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236047,-0.2406087257341647,relative_legacy,metac-Llama-3.1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236047,61.35411656100777,spot_peer,metac-Llama-3.1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236047,15.255159889740302,baseline,metac-Llama-3.1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236047,33.63565925337091,peer,metac-Llama-3.1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,236047,25.5412811882992,spot_baseline,metac-Llama-3.1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,237476,-43.77343686769311,spot_baseline,NextWorldLab,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,237476,-1.586119356135013,relative_legacy,NextWorldLab,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,237476,-11.11127049752964,spot_peer,NextWorldLab,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,237476,-2.1439767597698185,peer,NextWorldLab,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,237476,-33.13628606014926,baseline,NextWorldLab,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,239758,40.15934954626321,spot_peer,metac-perplexity,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,239758,5.268025782891358,spot_baseline,metac-perplexity,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,239758,-0.5563888368500275,relative_legacy,metac-perplexity,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,239758,3.030531751792517,baseline,metac-perplexity,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,239758,19.994100644705583,peer,metac-perplexity,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,239759,25.54128118829957,spot_baseline,metac-exa,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,239759,-0.1801348774760091,relative_legacy,metac-exa,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,239759,29.289026712098725,peer,metac-exa,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,239759,13.219889239298244,baseline,metac-exa,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,239759,61.35411656100816,spot_peer,metac-exa,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,240414,-2.87382704946869,relative_legacy,minefrac1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,240414,-153.63464973450604,spot_baseline,minefrac1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,240414,-68.77170513833539,peer,minefrac1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,240414,-80.05188186197383,baseline,minefrac1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,240414,-125.9661748582886,spot_peer,minefrac1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,240416,133.8195036195479,spot_peer,metac-o1-preview,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,240416,0.95009256036419,relative_legacy,metac-o1-preview,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,240416,76.8887354959265,peer,metac-o1-preview,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,240416,56.40640095893768,baseline,metac-o1-preview,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,240416,94.8559992442941,spot_baseline,metac-o1-preview,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,246118,65.90301051475527,peer,laylaps,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,246118,39.97848162970194,baseline,laylaps,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,246118,0.4493669575482757,relative_legacy,laylaps,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,246118,97.58681009027794,spot_peer,laylaps,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,246118,60.19864021629675,spot_baseline,laylaps,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,250015,39.92538481088862,spot_baseline,metac-deepseek-r1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,250015,9.9381196176756,baseline,metac-deepseek-r1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,250015,18.602130442693397,peer,metac-deepseek-r1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,250015,0.0470195047308874,relative_legacy,metac-deepseek-r1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34430,"How many registered Syrian refugees will be in Turkey on March 1, 2025, according to UNHCR?",2025-02-08 04:04:08.076764+00,250015,76.39204307553307,spot_peer,metac-deepseek-r1,True,2814402.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34944 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,187708,-0.0161284244648033,relative_legacy,twsummerbot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,187708,-0.2324639780238162,peer,twsummerbot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,187708,-1.4064543548653274,baseline,twsummerbot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,187708,-25.730649806935823,spot_peer,twsummerbot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,187708,-155.67566546061596,spot_baseline,twsummerbot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,189869,-155.67564046067014,spot_baseline,VeritasAI,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,189869,-0.9023414020475262,relative_legacy,VeritasAI,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,189869,-25.730623720035844,spot_peer,VeritasAI,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,189869,-22.114348344816023,peer,VeritasAI,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,189869,-113.88465017680636,baseline,VeritasAI,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,190710,-21.90305734943256,peer,Bot_Pepa,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,190710,-0.8940365380827758,relative_legacy,Bot_Pepa,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,190710,-25.73067589384885,spot_peer,Bot_Pepa,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,190710,-155.6756904605743,spot_baseline,Bot_Pepa,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,190710,-113.3737819193644,baseline,Bot_Pepa,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,191026,-34.74090035201835,baseline,manticAI,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,191026,1.673485677780578,relative_legacy,manticAI,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,191026,95.5650215981518,spot_peer,manticAI,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,191026,-39.433980364073626,spot_baseline,manticAI,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,191026,86.17165682293681,peer,manticAI,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,191935,0.2924663040654093,relative_legacy,pgodzinai,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,191935,130.5690279390182,spot_peer,pgodzinai,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,191935,15.726924264630258,peer,pgodzinai,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,191935,-0.7136803848754598,baseline,pgodzinai,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,191935,-5.888474287409994,spot_baseline,pgodzinai,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,192418,-25.730701980774928,spot_peer,InstitutPelFutur,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,192418,-10.871021673685716,peer,InstitutPelFutur,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,192418,-0.4571293833486179,relative_legacy,InstitutPelFutur,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,192418,-72.47487529544037,baseline,InstitutPelFutur,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,192418,-155.6757154605451,spot_baseline,InstitutPelFutur,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,192924,34.409060093834704,spot_peer,acm_bot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,192924,-98.04177680571084,spot_baseline,acm_bot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,192924,-82.42064322308396,baseline,acm_bot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,192924,24.319968443517467,peer,acm_bot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,192924,0.2137735368495608,relative_legacy,acm_bot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,218666,-155.6757404605284,spot_baseline,GreeneiBot2,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,218666,-25.730728067714043,spot_peer,GreeneiBot2,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,218666,-0.3637592447129926,relative_legacy,GreeneiBot2,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,218666,-52.55383242305874,baseline,GreeneiBot2,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,218666,-7.8940321078410385,peer,GreeneiBot2,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,220077,-73.53716190467196,spot_peer,mmBot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,220077,-2.445979138638147,relative_legacy,mmBot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,220077,-182.1671693736215,baseline,mmBot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,220077,-201.49023955427973,spot_baseline,mmBot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,220077,-79.85500903048495,peer,mmBot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,222631,-25.730701980774928,spot_peer,Grizeu_Bot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,222631,-39.286728439673375,baseline,Grizeu_Bot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,222631,-6.010522570699382,peer,Grizeu_Bot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,222631,-0.3080947424437914,relative_legacy,Grizeu_Bot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,222631,-155.6757154605451,spot_baseline,Grizeu_Bot,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236037,-90.97727652247644,baseline,metac-o1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236037,-25.73067589384885,spot_peer,metac-o1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236037,-14.03534984459177,peer,metac-o1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236037,-155.6756904605743,spot_baseline,metac-o1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236037,-0.5695129147580652,relative_legacy,metac-o1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236038,-14.600723308707945,peer,metac-gpt-4o,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236038,-0.5923400347274423,relative_legacy,metac-gpt-4o,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236038,-25.73067589384885,spot_peer,metac-gpt-4o,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236038,-93.35348782311976,baseline,metac-gpt-4o,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236038,-155.6756904605743,spot_baseline,metac-gpt-4o,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236040,-155.6756904605743,spot_baseline,metac-claude-3-5-sonnet-latest,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236040,-0.5885452114313835,relative_legacy,metac-claude-3-5-sonnet-latest,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236040,-25.73067589384885,spot_peer,metac-claude-3-5-sonnet-latest,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236040,-14.51064115973266,peer,metac-claude-3-5-sonnet-latest,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236040,-93.05730367314932,baseline,metac-claude-3-5-sonnet-latest,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236041,-25.730623720035844,spot_peer,metac-claude-3-5-sonnet-20240620,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236041,-155.67564046067014,spot_baseline,metac-claude-3-5-sonnet-20240620,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236041,-93.31965263544942,baseline,metac-claude-3-5-sonnet-20240620,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236041,-14.589129886638982,peer,metac-claude-3-5-sonnet-20240620,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236041,-0.5918536150644764,relative_legacy,metac-claude-3-5-sonnet-20240620,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236043,-14.509354117967783,peer,metac-grok-2-1212,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236043,-0.5884913591096786,relative_legacy,metac-grok-2-1212,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236043,-155.6757154605451,spot_baseline,metac-grok-2-1212,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236043,-25.730701980774928,spot_peer,metac-grok-2-1212,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236043,-93.05242118584891,baseline,metac-grok-2-1212,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236045,-89.93609688833692,baseline,metac-Gemini-Exp-1206,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236045,-155.6756904605743,spot_baseline,metac-Gemini-Exp-1206,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236045,-25.73067589384885,spot_peer,metac-Gemini-Exp-1206,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236045,-0.5625899019769979,relative_legacy,metac-Gemini-Exp-1206,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236045,-13.843604317150644,peer,metac-Gemini-Exp-1206,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236047,-91.6926456440522,baseline,metac-Llama-3.1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236047,-14.178720093604753,peer,metac-Llama-3.1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236047,-0.5751238551920776,relative_legacy,metac-Llama-3.1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236047,-25.730597633148893,spot_peer,metac-Llama-3.1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,236047,-155.6756154607368,spot_baseline,metac-Llama-3.1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,237476,109.41361839033983,spot_peer,NextWorldLab,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,237476,-20.31027183568889,baseline,NextWorldLab,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,237476,83.78262878416345,peer,NextWorldLab,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,237476,1.8641899628075196,relative_legacy,NextWorldLab,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,237476,-26.16240843822678,spot_baseline,NextWorldLab,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,239758,-86.3610474045297,spot_baseline,metac-perplexity,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,239758,46.597647295067226,spot_peer,metac-perplexity,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,239758,0.5686705000674578,relative_legacy,metac-perplexity,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,239758,27.27213991554468,peer,metac-perplexity,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,239758,-49.2258262181191,baseline,metac-perplexity,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,239759,-12.443343587667735,peer,metac-exa,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,239759,-0.5116683048336376,relative_legacy,metac-exa,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,239759,-25.730649806935823,spot_peer,metac-exa,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,239759,-82.00513823024772,baseline,metac-exa,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,239759,-155.67566546061596,spot_baseline,metac-exa,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,240414,-74.56650788554785,baseline,minefrac1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,240414,-11.20092804015024,peer,minefrac1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,240414,-0.4680866313903635,relative_legacy,minefrac1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,240414,-25.730623720035844,spot_peer,minefrac1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,240414,-155.67564046067014,spot_baseline,minefrac1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,240416,-91.39945481921043,baseline,metac-o1-preview,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,240416,-14.119553044095976,peer,metac-o1-preview,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,240416,-0.5726991422673976,relative_legacy,metac-o1-preview,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,240416,-25.730623720035844,spot_peer,metac-o1-preview,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,240416,-155.67564046067014,spot_baseline,metac-o1-preview,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,246118,-26.904904595598104,baseline,laylaps,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,246118,-40.54651081081639,spot_baseline,laylaps,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,246118,94.40412026242022,spot_peer,laylaps,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,246118,1.449055578766776,relative_legacy,laylaps,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,246118,62.69871586024441,peer,laylaps,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,250015,-155.6757404605284,spot_baseline,metac-deepseek-r1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,250015,-25.730728067714043,spot_peer,metac-deepseek-r1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,250015,-0.5344517830319698,relative_legacy,metac-deepseek-r1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,250015,-13.06023163574601,peer,metac-deepseek-r1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34431,How much will Last Breath earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:08.10678+00,250015,-85.4811552740008,baseline,metac-deepseek-r1,True,7851190.0,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34945 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,185699,-2.197652440083428,peer,MWG,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,185699,-0.0335550231181341,relative_legacy,MWG,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,185699,-27.18246295957236,spot_peer,MWG,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,185699,-15.200309344504996,spot_baseline,MWG,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,185699,-1.2289172239710786,baseline,MWG,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,189869,2.784419587488137,spot_peer,VeritasAI,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,189869,-0.0775086835944505,relative_legacy,VeritasAI,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,189869,-0.9201386346204214,peer,VeritasAI,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,189869,19.097837141203364,baseline,VeritasAI,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,190710,2.784419587488137,spot_peer,Bot_Pepa,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,190710,-0.022396484517325,relative_legacy,Bot_Pepa,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,190710,0.5815664831378183,peer,Bot_Pepa,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,190710,7.510133841676102,baseline,Bot_Pepa,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,190710,26.303440583379377,spot_baseline,Bot_Pepa,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,191026,30.92339660315394,baseline,manticAI,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,191026,45.76818366873371,spot_baseline,manticAI,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,191026,16.83851520200591,spot_peer,manticAI,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,191026,0.0712636031227597,relative_legacy,manticAI,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,191026,9.909552964959204,peer,manticAI,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,191935,28.67786602285558,peer,pgodzinai,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,191935,81.55754288625727,spot_baseline,pgodzinai,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,191935,0.3215492302166977,relative_legacy,pgodzinai,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,191935,42.67944586416584,spot_peer,pgodzinai,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,191935,58.69203602069295,baseline,pgodzinai,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,192418,0.1914786058376454,relative_legacy,InstitutPelFutur,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,192418,35.197403806003535,baseline,InstitutPelFutur,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,192418,17.967442640812912,peer,InstitutPelFutur,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,192418,39.06636690709395,spot_peer,InstitutPelFutur,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,192924,10.497684314510604,peer,acm_bot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,192924,40.57686232928089,baseline,acm_bot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,192924,0.0741436900460391,relative_legacy,acm_bot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,192924,18.84178206949422,spot_peer,acm_bot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,192924,48.54268271702416,spot_baseline,acm_bot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,218666,21.30992082508404,baseline,GreeneiBot2,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,218666,9.10815733845181,peer,GreeneiBot2,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,218666,0.0800710854113178,relative_legacy,GreeneiBot2,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,218666,24.34839556502212,spot_peer,GreeneiBot2,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,218666,56.169272139830895,spot_baseline,GreeneiBot2,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,220077,0.3211015987974704,relative_legacy,mmBot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,220077,39.06636690709395,spot_peer,mmBot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,220077,68.75825453057891,baseline,mmBot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,220077,30.486352679609418,peer,mmBot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,222631,0.1156882901556927,relative_legacy,Grizeu_Bot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,222631,10.52838726247481,peer,Grizeu_Bot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,222631,39.06636690709395,spot_peer,Grizeu_Bot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,222631,21.036541556285453,baseline,Grizeu_Bot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236037,48.54268271702416,spot_baseline,metac-o1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236037,28.082411321861027,baseline,metac-o1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236037,11.206904024953651,peer,metac-o1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236037,0.0848261157341374,relative_legacy,metac-o1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236037,18.84178206949422,spot_peer,metac-o1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236038,-0.0447378032893167,relative_legacy,metac-gpt-4o,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236038,1.8124905102668365,peer,metac-gpt-4o,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236038,15.709583101830908,baseline,metac-gpt-4o,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236038,2.784419587488137,spot_peer,metac-gpt-4o,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236040,22.41907380680728,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236040,6.837274381682812,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236040,0.0240661492600051,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236040,11.122201636814864,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236041,-23.522705286406893,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236041,-19.18306421357408,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236041,-32.19280948873623,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236041,-39.45152917377898,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236041,-0.3931949564250043,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236043,-41.35761962606266,peer,metac-grok-2-1212,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236043,-73.69655941662063,spot_baseline,metac-grok-2-1212,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236043,-69.4184117208395,spot_peer,metac-grok-2-1212,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236043,-0.6385618159997689,relative_legacy,metac-grok-2-1212,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236043,-43.792528851795225,baseline,metac-grok-2-1212,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236045,-51.45731728297583,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236045,-0.4845120096016653,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236045,-53.36104923883342,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236045,-30.19041763491308,peer,metac-Gemini-Exp-1206,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236045,-29.159618371585385,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236047,-43.24839686178322,baseline,metac-Llama-3.1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236047,-40.77432579356093,peer,metac-Llama-3.1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236047,-0.6305543643207389,relative_legacy,metac-Llama-3.1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236047,-69.4184117208395,spot_peer,metac-Llama-3.1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,236047,-73.69655941662063,spot_baseline,metac-Llama-3.1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,237476,62.29303509201767,spot_baseline,NextWorldLab,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,237476,0.183796833653444,relative_legacy,NextWorldLab,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,237476,18.967845624771417,peer,NextWorldLab,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,237476,49.67601510422643,baseline,NextWorldLab,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,237476,28.7699257991114,spot_peer,NextWorldLab,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,239758,14.713094515790775,baseline,metac-perplexity,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,239758,1.7544096723086755,peer,metac-perplexity,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,239758,-0.0480749242345162,relative_legacy,metac-perplexity,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,239758,2.784419587488137,spot_peer,metac-perplexity,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,239758,26.303440583379377,spot_baseline,metac-perplexity,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,239759,48.54268271702416,spot_baseline,metac-exa,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,239759,25.914013928684916,baseline,metac-exa,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,239759,10.20238191089237,peer,metac-exa,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,239759,0.070610484157288,relative_legacy,metac-exa,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,239759,18.84178206949422,spot_peer,metac-exa,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,240414,-0.2874124980492225,relative_legacy,minefrac1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,240414,-39.45152917377898,spot_peer,minefrac1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,240414,-17.059818386026024,peer,minefrac1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,240414,-13.831800120831192,baseline,minefrac1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,240414,-32.19280948873623,spot_baseline,minefrac1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,240416,-39.45152917377898,spot_peer,metac-o1-preview,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,240416,-22.72915565135143,peer,metac-o1-preview,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,240416,-18.61993958303993,baseline,metac-o1-preview,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,240416,-32.19280948873623,spot_baseline,metac-o1-preview,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,240416,-0.3821520054717968,relative_legacy,metac-o1-preview,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,246118,11.122201636814864,spot_peer,laylaps,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,246118,25.149551905122717,baseline,laylaps,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,246118,6.116505306446556,peer,laylaps,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,246118,0.0189716176508876,relative_legacy,laylaps,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,246118,37.85116232537298,spot_baseline,laylaps,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,247214,-2.119936603056011,peer,ajf-bot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,247214,6.869910540954958,spot_peer,ajf-bot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,247214,31.96179342001613,spot_baseline,ajf-bot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,247214,28.927662083931224,baseline,ajf-bot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,247214,-0.0794087871232442,relative_legacy,ajf-bot,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,250015,0.014776819391167,relative_legacy,metac-deepseek-r1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,250015,11.122201636814864,spot_peer,metac-deepseek-r1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,250015,6.216948917946512,peer,metac-deepseek-r1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34432,"Will the USDA-posted recall by UP Products, LLC, DBA Meyer Wholesale of Ready-To-Eat and Raw Sausage Products issued January 13, 2025 be closed before April 1, 2025?",2025-02-08 04:04:08.468894+00,250015,20.610783720432025,baseline,metac-deepseek-r1,True,yes,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,0.85,2025-02-10 06:00:00+00,34946 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,185699,0.0,baseline,MWG,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,185699,15.771171935283489,peer,MWG,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,185699,0.1759330661100489,relative_legacy,MWG,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,185699,0.0,spot_baseline,MWG,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,185699,29.43671399406216,spot_peer,MWG,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,187708,-0.7286303212017128,baseline,twsummerbot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,187708,-22.43172982609403,spot_baseline,twsummerbot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,187708,13.266284098661057,spot_peer,twsummerbot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,187708,0.0031706063977255,relative_legacy,twsummerbot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,187708,0.4309171391996802,peer,twsummerbot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,189869,-37.429511332637006,baseline,VeritasAI,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,189869,-4.653529984112195,peer,VeritasAI,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,189869,-0.1120870918369275,relative_legacy,VeritasAI,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,189869,-7.657480175566018,spot_peer,VeritasAI,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,190710,-0.119897152756709,relative_legacy,Bot_Pepa,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,190710,-73.69655941662059,spot_baseline,Bot_Pepa,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,190710,-24.904450566621247,baseline,Bot_Pepa,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,190710,-23.689150877600863,spot_peer,Bot_Pepa,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,190710,-7.864846277328753,peer,Bot_Pepa,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,191026,-8.661227600878684,baseline,manticAI,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,191026,14.608099740900562,peer,manticAI,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,191026,0.1490661010790826,relative_legacy,manticAI,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,191026,20.19826776857412,spot_peer,manticAI,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,191026,-12.81563514906822,spot_baseline,manticAI,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,191935,-2.3083152805422587,baseline,pgodzinai,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,191935,0.1523133716606846,relative_legacy,pgodzinai,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,191935,14.046602356409704,peer,pgodzinai,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,191935,-4.3943347587597055,spot_baseline,pgodzinai,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,191935,26.268956415652458,spot_peer,pgodzinai,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,192418,-23.34842148514406,baseline,InstitutPelFutur,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,192418,-7.657480175566018,spot_peer,InstitutPelFutur,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,192418,-0.081121641559456,relative_legacy,InstitutPelFutur,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,192418,-3.358347120690416,peer,InstitutPelFutur,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,192924,-0.4822215409230631,spot_peer,acm_bot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,192924,-34.496996006207176,baseline,acm_bot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,192924,1.547875157456202,peer,acm_bot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,192924,-0.0301192227538593,relative_legacy,acm_bot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,192924,-41.50374992788438,spot_baseline,acm_bot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,218666,25.191226563955613,spot_peer,GreeneiBot2,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,218666,-5.889368905356857,spot_baseline,GreeneiBot2,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,218666,10.762967250409398,peer,GreeneiBot2,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,218666,0.1174922780753315,relative_legacy,GreeneiBot2,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,218666,-2.4898354732560186,baseline,GreeneiBot2,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,220077,8.36544705859295,peer,mmBot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,220077,-32.19280948873623,spot_baseline,mmBot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,220077,-28.731799716819356,baseline,mmBot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,220077,6.229784657384354,spot_peer,mmBot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,220077,0.0532163020761335,relative_legacy,mmBot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,222631,-0.0388964297914576,relative_legacy,Grizeu_Bot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,222631,-7.657480175566018,spot_peer,Grizeu_Bot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,222631,-15.827267323010572,baseline,Grizeu_Bot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,222631,-2.212452200685464,peer,Grizeu_Bot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236037,-18.361813370016066,baseline,metac-o1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236037,6.229784657384354,spot_peer,metac-o1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236037,-32.19280948873623,spot_baseline,metac-o1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236037,0.0127441800248268,relative_legacy,metac-o1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236037,3.973526996299292,peer,metac-o1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236038,-73.69655941662059,spot_baseline,metac-gpt-4o,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236038,-23.689150877600863,spot_peer,metac-gpt-4o,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236038,-0.230518094821717,relative_legacy,metac-gpt-4o,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236038,-13.742294542279271,peer,metac-gpt-4o,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236038,-43.89429454762509,baseline,metac-gpt-4o,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236040,-0.0979517249619938,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236040,-30.315588318796568,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236040,-4.0900780163686745,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236040,-7.657480175566018,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236040,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236041,-7.657480175566018,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236041,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236041,-0.0981018290796948,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236041,-4.110029496306816,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236041,-30.551710287991572,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236043,-8.982219331523279,baseline,metac-grok-2-1212,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236043,11.447707964875242,peer,metac-grok-2-1212,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236043,0.1159398864342746,relative_legacy,metac-grok-2-1212,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236043,18.479220365648217,spot_peer,metac-grok-2-1212,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236043,-15.200309344505014,spot_baseline,metac-grok-2-1212,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236045,-55.24680487728016,baseline,metac-Gemini-Exp-1206,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236045,-42.65059278417216,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236045,-100.0,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236045,-0.3634901917085864,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236045,-23.34240467040012,peer,metac-Gemini-Exp-1206,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236047,-0.0292629989884952,relative_legacy,metac-Llama-3.1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236047,-39.592867633113926,spot_baseline,metac-Llama-3.1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236047,0.946075514064566,peer,metac-Llama-3.1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236047,-22.922466528057743,baseline,metac-Llama-3.1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,236047,0.8952820410790817,spot_peer,metac-Llama-3.1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,237476,-0.3327714977721688,relative_legacy,NextWorldLab,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,237476,-21.63200406260547,peer,NextWorldLab,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,237476,-64.13773963949178,baseline,NextWorldLab,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,237476,-27.21491225187172,spot_peer,NextWorldLab,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,237476,-78.58751946471523,spot_baseline,NextWorldLab,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,239758,-7.657480175566018,spot_peer,metac-perplexity,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,239758,-0.0953374134264515,relative_legacy,metac-perplexity,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,239758,-28.419546999391923,baseline,metac-perplexity,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,239758,-3.9139942995266495,peer,metac-perplexity,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,239758,-51.45731728297583,spot_baseline,metac-perplexity,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,239759,-8.187027101136115,baseline,metac-exa,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,239759,0.0998697540101559,relative_legacy,metac-exa,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,239759,-15.200309344505014,spot_baseline,metac-exa,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,239759,10.242857603450858,peer,metac-exa,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,239759,18.479220365648217,spot_peer,metac-exa,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,240414,-6.39506894998051,baseline,minefrac1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,240414,0.0777805922812995,relative_legacy,minefrac1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,240414,7.880529200545252,peer,minefrac1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,240414,18.479220365648217,spot_peer,minefrac1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,240414,-15.200309344505014,spot_baseline,minefrac1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,240416,-0.2239073040771372,relative_legacy,metac-o1-preview,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,240416,-13.188469585237993,peer,metac-o1-preview,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,240416,-23.689150877600863,spot_peer,metac-o1-preview,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,240416,-42.024573109724045,baseline,metac-o1-preview,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,240416,-73.69655941662059,spot_baseline,metac-o1-preview,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,246118,4.794048686020255,peer,laylaps,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,246118,0.0166817525777626,relative_legacy,laylaps,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,246118,6.229784657384354,spot_peer,laylaps,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,246118,-32.19280948873623,spot_baseline,laylaps,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,246118,-21.263558803564308,baseline,laylaps,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,247214,-52.28407888133589,spot_baseline,ajf-bot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,247214,-47.430376476829615,baseline,ajf-bot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,247214,-6.210848195693139,peer,ajf-bot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,247214,-0.1260965126214497,relative_legacy,ajf-bot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,247214,-8.253470345300459,spot_peer,ajf-bot,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,250015,0.0063705229940734,relative_legacy,metac-deepseek-r1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,250015,-16.997519958597962,baseline,metac-deepseek-r1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,250015,3.501471847727688,peer,metac-deepseek-r1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,250015,6.229784657384354,spot_peer,metac-deepseek-r1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34433,Will the S&P 500 index go up in February 2025?,2025-02-08 04:04:08.502106+00,250015,-32.19280948873623,spot_baseline,metac-deepseek-r1,True,no,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,2025-02-10 06:00:00+00,34947 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,189869,62.08049197517623,spot_baseline,VeritasAI,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,189869,30.120804241853516,baseline,VeritasAI,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,189869,23.41316843730073,spot_peer,VeritasAI,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,189869,0.0585951448024941,relative_legacy,VeritasAI,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,189869,13.060221661809958,peer,VeritasAI,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,190710,-5.889662908926215,spot_peer,Bot_Pepa,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,190710,26.07174005644381,baseline,Bot_Pepa,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,190710,-0.5285627862753585,peer,Bot_Pepa,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,190710,-0.1659678860712767,relative_legacy,Bot_Pepa,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,190710,44.60189409013373,spot_baseline,Bot_Pepa,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,191026,0.3161253482632923,relative_legacy,manticAI,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,191026,66.79090193323843,spot_baseline,manticAI,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,191026,38.27961415577619,peer,manticAI,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,191026,54.93316925147956,baseline,manticAI,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,191026,31.31016048898036,spot_peer,manticAI,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,191935,35.9590575129849,spot_baseline,pgodzinai,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,191935,-20.379359636254875,spot_peer,pgodzinai,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,191935,-0.1986763184319241,relative_legacy,pgodzinai,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,191935,-7.691941305722365,peer,pgodzinai,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,191935,15.059826448862534,baseline,pgodzinai,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,192418,-57.4205214335207,spot_peer,InstitutPelFutur,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,192418,13.86468838532139,spot_baseline,InstitutPelFutur,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,192418,-0.7358646734373945,relative_legacy,InstitutPelFutur,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,192418,-49.112975464272616,peer,InstitutPelFutur,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,192418,13.512055095140784,baseline,InstitutPelFutur,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,192924,-31.48784211457299,spot_peer,acm_bot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,192924,29.33305280861141,spot_baseline,acm_bot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,192924,-19.89480298437489,peer,acm_bot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,192924,-0.3994032530121757,relative_legacy,acm_bot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,192924,24.446885042273777,baseline,acm_bot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,204737,-0.1434470993520825,relative_legacy,SynapseSeer,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,204737,28.224466987395896,spot_baseline,SynapseSeer,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,204737,-33.34638383316793,spot_peer,SynapseSeer,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,204737,-7.842015616728817,peer,SynapseSeer,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,204737,6.837260466273944,baseline,SynapseSeer,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,218666,40.18486914061189,spot_peer,GreeneiBot2,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,218666,72.08450179176364,spot_baseline,GreeneiBot2,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,218666,35.890871958560844,baseline,GreeneiBot2,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,218666,22.22356650194429,peer,GreeneiBot2,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,218666,0.1760296547793033,relative_legacy,GreeneiBot2,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,220077,34.537341555582266,baseline,mmBot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,220077,-6.543765492375442,peer,mmBot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,220077,-0.2627841503779762,relative_legacy,mmBot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,220077,-22.37133011881103,spot_peer,mmBot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,220077,34.77088389753815,spot_baseline,mmBot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,222631,7.595552428249484,spot_peer,Grizeu_Bot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,222631,5.033780931198828,peer,Grizeu_Bot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,222631,52.64557606361822,spot_baseline,Grizeu_Bot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,222631,25.349303929442613,baseline,Grizeu_Bot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,222631,-0.0463318676579603,relative_legacy,Grizeu_Bot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236037,54.39593106327713,spot_baseline,metac-o1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236037,10.530018778947028,spot_peer,metac-o1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236037,9.921619391219435,baseline,metac-o1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236037,0.0065167828555493,relative_legacy,metac-o1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236037,1.9329956652688527,peer,metac-o1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236038,-11.099081718786763,spot_peer,metac-gpt-4o,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236038,-0.0552309462425102,relative_legacy,metac-gpt-4o,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236038,8.44533603858511,baseline,metac-gpt-4o,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236038,-2.1942185984935927,peer,metac-gpt-4o,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236038,41.49457195062816,spot_baseline,metac-gpt-4o,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236040,-0.0157677238155856,relative_legacy,metac-claude-3-5-sonnet-latest,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236040,2.8718211804933413,spot_peer,metac-claude-3-5-sonnet-latest,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236040,49.827957587744535,spot_baseline,metac-claude-3-5-sonnet-latest,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236040,10.085954596130644,baseline,metac-claude-3-5-sonnet-latest,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236040,0.6494257446282521,peer,metac-claude-3-5-sonnet-latest,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236041,2.227898281330112,peer,metac-claude-3-5-sonnet-20240620,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236041,0.0057453476497542,relative_legacy,metac-claude-3-5-sonnet-20240620,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236041,10.530018778947028,spot_peer,metac-claude-3-5-sonnet-20240620,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236041,54.39593106327713,spot_baseline,metac-claude-3-5-sonnet-20240620,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236041,11.08803410594582,baseline,metac-claude-3-5-sonnet-20240620,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236043,2.17565346325209,peer,metac-grok-2-1212,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236043,0.0056603554262342,relative_legacy,metac-grok-2-1212,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236043,54.39593106327715,spot_baseline,metac-grok-2-1212,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236043,10.909480762532896,baseline,metac-grok-2-1212,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236043,10.530018778947047,spot_peer,metac-grok-2-1212,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236045,8.336955320839511,spot_peer,metac-Gemini-Exp-1206,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236045,53.08780920065796,spot_baseline,metac-Gemini-Exp-1206,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236045,1.257724363785505,peer,metac-Gemini-Exp-1206,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236045,8.01923215741886,baseline,metac-Gemini-Exp-1206,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236045,0.0008061658776486,relative_legacy,metac-Gemini-Exp-1206,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236047,33.77413870751053,spot_peer,metac-Llama-3.1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236047,13.026412028328988,baseline,metac-Llama-3.1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236047,6.480002057692015,peer,metac-Llama-3.1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236047,0.0671411330952281,relative_legacy,metac-Llama-3.1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,236047,68.26061944859853,spot_baseline,metac-Llama-3.1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,237476,3.807256160450025,spot_peer,NextWorldLab,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,237476,19.795910380649957,baseline,NextWorldLab,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,237476,-0.0497621661857077,relative_legacy,NextWorldLab,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,237476,2.5341050660612034,peer,NextWorldLab,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,237476,50.38592728251845,spot_baseline,NextWorldLab,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,239758,16.845083551492326,spot_peer,metac-perplexity,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,239758,10.124854072167308,baseline,metac-perplexity,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,239758,2.9391353735353367,peer,metac-perplexity,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,239758,0.0211668835858856,relative_legacy,metac-perplexity,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,239758,58.16275060617871,spot_baseline,metac-perplexity,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,239759,9.028209713078551,baseline,metac-exa,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,239759,48.9896102404978,spot_baseline,metac-exa,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,239759,1.4663336758605865,spot_peer,metac-exa,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,239759,-0.016592643175734,relative_legacy,metac-exa,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,239759,0.2823362255320551,peer,metac-exa,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,240414,3.160721378223746,peer,minefrac1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,240414,10.530018778947028,spot_peer,minefrac1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,240414,54.39593106327713,spot_baseline,minefrac1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,240414,14.197589212013318,baseline,minefrac1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,240414,0.0018239231147206,relative_legacy,minefrac1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,240416,-0.0387675941127565,relative_legacy,metac-o1-preview,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,240416,43.01039403942086,spot_baseline,metac-o1-preview,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,240416,-8.557809283153395,spot_peer,metac-o1-preview,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,240416,7.256505788435652,baseline,metac-o1-preview,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,240416,-1.4519917851233002,peer,metac-o1-preview,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,246118,-22.37133011881103,spot_peer,laylaps,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,246118,-7.338513062485745,peer,laylaps,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,246118,34.77088389753815,spot_baseline,laylaps,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,246118,-0.1732574098074891,relative_legacy,laylaps,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,246118,12.48198083366164,baseline,laylaps,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,247214,49.38327677464223,spot_baseline,ajf-bot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,247214,-0.0166684193566125,relative_legacy,ajf-bot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,247214,0.4384144605581508,peer,ajf-bot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,247214,9.512870704224824,baseline,ajf-bot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,247214,2.1263147643070197,spot_peer,ajf-bot,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,250015,47.56119116032779,spot_baseline,metac-deepseek-r1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,250015,3.927098863934478,baseline,metac-deepseek-r1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,250015,-0.0768082347443335,peer,metac-deepseek-r1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,250015,-0.0085027446041779,relative_legacy,metac-deepseek-r1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34434,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:04:08.531968+00,250015,-0.9284078058788556,spot_peer,metac-deepseek-r1,True,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34948 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,187708,7.318271475179144,spot_baseline,twsummerbot,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,187708,1.9775971213485548,baseline,twsummerbot,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,187708,0.1295886704910397,relative_legacy,twsummerbot,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,187708,33.701777184896294,spot_peer,twsummerbot,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,187708,10.784855694230307,peer,twsummerbot,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,189869,-37.76644352289451,spot_baseline,VeritasAI,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,189869,-18.76175897378481,baseline,VeritasAI,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,189869,-17.36631041558487,peer,VeritasAI,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,189869,-0.1610552448001962,relative_legacy,VeritasAI,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,189869,-42.014100647297816,spot_peer,VeritasAI,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,190710,20.90619551221676,spot_baseline,Bot_Pepa,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,190710,56.52151989426982,spot_peer,Bot_Pepa,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,190710,0.0234432993223534,relative_legacy,Bot_Pepa,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,190710,2.028373670314484,peer,Bot_Pepa,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,190710,0.7502554178081543,baseline,Bot_Pepa,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,191026,76.62695954577441,peer,manticAI,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,191026,79.80606437923082,spot_peer,manticAI,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,191026,34.77088389753815,spot_baseline,manticAI,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,191026,28.60444961549812,baseline,manticAI,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,191026,0.993928760582137,relative_legacy,manticAI,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,191935,5.240839282328028,peer,pgodzinai,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,191935,0.090013644165495,relative_legacy,pgodzinai,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,191935,2.9069544781868584,spot_peer,pgodzinai,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,191935,-11.018381878100346,spot_baseline,pgodzinai,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,191935,-4.275911795528359,baseline,pgodzinai,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,192418,-39.09653312388578,peer,InstitutPelFutur,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,192418,-30.766612716330428,baseline,InstitutPelFutur,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,192418,-0.3373990011595846,relative_legacy,InstitutPelFutur,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,192418,-31.892169885264472,spot_peer,InstitutPelFutur,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,192418,-31.739380551401474,spot_baseline,InstitutPelFutur,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,204737,-50.91702798550321,spot_peer,SynapseSeer,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,204737,-29.56873562350833,baseline,SynapseSeer,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,204737,-35.55543113927234,peer,SynapseSeer,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,204737,-0.338285306981734,relative_legacy,SynapseSeer,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,204737,-43.06765580733931,spot_baseline,SynapseSeer,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,218666,-37.1457013741808,spot_baseline,GreeneiBot2,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,218666,-40.971617918964974,spot_peer,GreeneiBot2,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,218666,-0.1496311528173469,relative_legacy,GreeneiBot2,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,218666,-9.993667141380064,peer,GreeneiBot2,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,218666,-10.559720954911368,baseline,GreeneiBot2,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,220077,0.3769796233460795,relative_legacy,mmBot,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,220077,1.3796407007040915e-14,spot_baseline,mmBot,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,220077,21.411373464230227,spot_peer,mmBot,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,220077,1.3622799712772812e-14,baseline,mmBot,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,220077,27.53910587663997,peer,mmBot,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236037,34.16451774849966,spot_peer,metac-o1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236037,6.288187389171621,peer,metac-o1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236037,0.0616732542994334,relative_legacy,metac-o1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236037,7.593808483075199,spot_baseline,metac-o1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236037,1.3398729715906557,baseline,metac-o1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236038,48.78851410431623,spot_peer,metac-gpt-4o,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236038,0.101076169678061,relative_legacy,metac-gpt-4o,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236038,9.2926773717965,peer,metac-gpt-4o,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236038,2.996652034396681,baseline,metac-gpt-4o,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236038,16.301608309368927,spot_baseline,metac-gpt-4o,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236040,0.0806306525488307,peer,metac-claude-3-5-sonnet-latest,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236040,-1.8731710207308108,spot_peer,metac-claude-3-5-sonnet-latest,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236040,-13.864688385321388,spot_baseline,metac-claude-3-5-sonnet-latest,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236040,-2.7798566062300925,baseline,metac-claude-3-5-sonnet-latest,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236040,-0.0294346673564097,relative_legacy,metac-claude-3-5-sonnet-latest,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236041,4.452876473158057,spot_peer,metac-claude-3-5-sonnet-20240620,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236041,-2.034634288301212,baseline,metac-claude-3-5-sonnet-20240620,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236041,1.3741362206120826,peer,metac-claude-3-5-sonnet-20240620,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236041,-0.011855984602935,relative_legacy,metac-claude-3-5-sonnet-20240620,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236041,-10.097868842419809,spot_baseline,metac-claude-3-5-sonnet-20240620,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236043,3.0315033461366783,spot_baseline,metac-grok-2-1212,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236043,0.5978612232966362,baseline,metac-grok-2-1212,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236043,5.684127074898684,peer,metac-grok-2-1212,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236043,26.50252102973616,spot_peer,metac-grok-2-1212,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236043,0.0482923131114324,relative_legacy,metac-grok-2-1212,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236045,-3.3925905312315825,baseline,metac-Gemini-Exp-1206,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236045,-24.883070263421743,spot_baseline,metac-Gemini-Exp-1206,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236045,-20.377590006774177,spot_peer,metac-Gemini-Exp-1206,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236045,-0.0535847644655915,relative_legacy,metac-Gemini-Exp-1206,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236045,-2.6078049766515483,peer,metac-Gemini-Exp-1206,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236047,-10.097868842419825,spot_baseline,metac-Llama-3.1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236047,4.4528764731580335,spot_peer,metac-Llama-3.1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236047,-0.0116396062010927,relative_legacy,metac-Llama-3.1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236047,1.121348439745703,peer,metac-Llama-3.1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,236047,-1.865936974540391,baseline,metac-Llama-3.1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,237476,-39.85888131825488,spot_baseline,NextWorldLab,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,237476,-45.52816887400703,spot_peer,NextWorldLab,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,237476,-0.1813166428173915,relative_legacy,NextWorldLab,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,237476,-15.333050925007017,peer,NextWorldLab,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,237476,-16.622379415142188,baseline,NextWorldLab,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,239758,4.931995460636066,baseline,metac-perplexity,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,239758,12.142569706473685,peer,metac-perplexity,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,239758,0.1439769064150729,relative_legacy,metac-perplexity,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,239758,70.4552304290026,spot_peer,metac-perplexity,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,239758,29.20296742201792,spot_baseline,metac-perplexity,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,239759,-34.92641212256504,spot_baseline,metac-exa,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,239759,-37.24451364744368,spot_peer,metac-exa,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,239759,-0.1214178213429345,relative_legacy,metac-exa,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,239759,-6.7679656996082285,peer,metac-exa,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,239759,-6.648980349804119,baseline,metac-exa,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,240414,2.212062688051683,baseline,minefrac1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,240414,8.683897731959343,spot_baseline,minefrac1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,240414,35.99522832076849,spot_peer,minefrac1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,240414,0.1225319722859403,relative_legacy,minefrac1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,240414,10.530543296128942,peer,minefrac1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,240416,-13.864688385321388,spot_baseline,metac-o1-preview,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,240416,-0.0241449368678837,relative_legacy,metac-o1-preview,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,240416,-2.3165331384117755,baseline,metac-o1-preview,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,240416,-0.1127829777954889,peer,metac-o1-preview,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,240416,-1.8731710207308108,spot_peer,metac-o1-preview,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,246118,-54.39593106327715,spot_baseline,laylaps,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,246118,-0.2873292272516958,relative_legacy,laylaps,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,246118,-22.200663314047254,peer,laylaps,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,246118,-19.42603550391626,baseline,laylaps,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,246118,-69.94188608574197,spot_peer,laylaps,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,247214,-46.18268315241741,spot_baseline,ajf-bot,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,247214,-18.120009161447346,baseline,ajf-bot,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,247214,-18.68952422264393,peer,ajf-bot,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,247214,-0.2274088717932766,relative_legacy,ajf-bot,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,247214,-56.14844688022071,spot_peer,ajf-bot,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,250015,-20.377590006774177,spot_peer,metac-deepseek-r1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,250015,-1.0106202847868184,peer,metac-deepseek-r1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,250015,-1.280183569362496,baseline,metac-deepseek-r1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,250015,-24.883070263421743,spot_baseline,metac-deepseek-r1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34435,How many of Sony's top video game downloads for the US/Canada in February 2025 will be sports games?,2025-02-08 04:04:08.562066+00,250015,-0.0187840790535234,relative_legacy,metac-deepseek-r1,True,5,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,0.85,2025-02-11 13:00:00+00,34949 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,189869,11.943537675374278,spot_baseline,VeritasAI,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,189869,-20.30285915284196,spot_peer,VeritasAI,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,189869,-0.1905376458603268,relative_legacy,VeritasAI,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,189869,-8.022036985870452,peer,VeritasAI,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,189869,6.109221425996751,baseline,VeritasAI,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,190710,31.114918074417723,spot_baseline,Bot_Pepa,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,190710,12.095044617470364,spot_peer,Bot_Pepa,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,190710,0.0020867935803716,relative_legacy,Bot_Pepa,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,190710,0.2538472419174988,peer,Bot_Pepa,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,190710,0.6530307564364985,baseline,Bot_Pepa,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,191026,21.29969583603132,spot_baseline,manticAI,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,191026,0.0492424180285046,relative_legacy,manticAI,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,191026,17.52540924658473,baseline,manticAI,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,191026,10.940697017807596,peer,manticAI,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,191026,-4.491795711426243,spot_peer,manticAI,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,191935,21.883948396095278,baseline,pgodzinai,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,191935,0.1632023884578771,relative_legacy,pgodzinai,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,191935,41.09499826837505,spot_baseline,pgodzinai,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,191935,28.960480022422335,spot_peer,pgodzinai,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,191935,20.40513558189143,peer,pgodzinai,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,192418,0.0,baseline,InstitutPelFutur,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,192418,-0.3576849830119338,relative_legacy,InstitutPelFutur,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,192418,-40.486360613340985,spot_peer,InstitutPelFutur,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,192418,-24.87664434284462,peer,InstitutPelFutur,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,192418,0.0,spot_baseline,InstitutPelFutur,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,218666,-63.916433501333,spot_peer,GreeneiBot2,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,218666,-13.864688385321388,spot_baseline,GreeneiBot2,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,218666,-15.480563249775756,peer,GreeneiBot2,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,218666,-0.2438580481792265,relative_legacy,GreeneiBot2,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,218666,-3.3508367643111363,baseline,GreeneiBot2,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,220077,-0.3576849830119338,relative_legacy,mmBot,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,220077,-40.486360613340985,spot_peer,mmBot,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,220077,0.0,spot_baseline,mmBot,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,220077,0.0,baseline,mmBot,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,220077,-24.87664434284462,peer,mmBot,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236037,3.8147166775994688,baseline,metac-o1,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236037,25.192963641259237,spot_baseline,metac-o1,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236037,-0.0080722246017697,relative_legacy,metac-o1,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236037,2.087475738016293,spot_peer,metac-o1,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236037,0.2284846201161996,peer,metac-o1,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236038,0.2257880285811668,peer,metac-gpt-4o,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236038,4.2207857760120495,baseline,metac-gpt-4o,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236038,2.087475738016293,spot_peer,metac-gpt-4o,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236038,25.192963641259237,spot_baseline,metac-gpt-4o,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236038,-0.0110489608617092,relative_legacy,metac-gpt-4o,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236040,4.436156992025337,peer,metac-claude-3-5-sonnet-latest,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236040,38.22363288061431,spot_baseline,metac-claude-3-5-sonnet-latest,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236040,24.108131491133506,spot_peer,metac-claude-3-5-sonnet-latest,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236040,0.0392036053608214,relative_legacy,metac-claude-3-5-sonnet-latest,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236040,7.226945904475823,baseline,metac-claude-3-5-sonnet-latest,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236041,29.20296742201792,spot_baseline,metac-claude-3-5-sonnet-20240620,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236041,8.864020457461255,spot_peer,metac-claude-3-5-sonnet-20240620,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236041,5.548223527009803,baseline,metac-claude-3-5-sonnet-20240620,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236041,1.542453918028153,peer,metac-claude-3-5-sonnet-20240620,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236041,-0.0005581716964981,relative_legacy,metac-claude-3-5-sonnet-20240620,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236043,44.661312089373546,spot_peer,metac-grok-2-1212,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236043,50.38592728251845,spot_baseline,metac-grok-2-1212,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236043,0.0909010513970056,relative_legacy,metac-grok-2-1212,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236043,8.162378461157154,peer,metac-grok-2-1212,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236043,9.32416358137672,baseline,metac-grok-2-1212,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236045,-0.0581667371041862,relative_legacy,metac-Gemini-Exp-1206,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236045,-1.0660957358241956,spot_baseline,metac-Gemini-Exp-1206,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236045,-0.1017098507848594,baseline,metac-Gemini-Exp-1206,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236045,-3.507906236065074,peer,metac-Gemini-Exp-1206,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236045,-42.28796625363677,spot_peer,metac-Gemini-Exp-1206,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236047,27.618281755272864,spot_baseline,metac-Llama-3.1,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236047,6.186044606543325,spot_peer,metac-Llama-3.1,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236047,-0.0009869474754949,relative_legacy,metac-Llama-3.1,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236047,0.8595017309140245,peer,metac-Llama-3.1,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,236047,4.387167515611764,baseline,metac-Llama-3.1,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,237476,28.38206629435349,spot_baseline,NextWorldLab,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,237476,-0.0166189156083433,relative_legacy,NextWorldLab,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,237476,5.841170887741295,peer,NextWorldLab,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,237476,12.9323859672338,baseline,NextWorldLab,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,237476,7.476771590377054,spot_peer,NextWorldLab,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,239758,-0.2899346434973275,peer,metac-perplexity,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,239758,-0.0148612950707854,relative_legacy,metac-perplexity,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,239758,3.362195971101561,baseline,metac-perplexity,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,239758,-1.4721871879302764,spot_peer,metac-perplexity,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,239758,23.08654180207135,spot_baseline,metac-perplexity,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,239759,4.766964563610826,baseline,metac-exa,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,239759,23.08654180207136,spot_baseline,metac-exa,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,239759,-1.4721871879302528,spot_peer,metac-exa,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,239759,-0.0293453685653667,relative_legacy,metac-exa,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,239759,-0.3316236106291297,peer,metac-exa,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,240414,39.88062423617576,spot_baseline,minefrac1,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,240414,10.279398494602814,baseline,minefrac1,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,240414,26.90829743476048,spot_peer,minefrac1,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,240414,0.0579740429341065,relative_legacy,minefrac1,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,240414,7.417485930583102,peer,minefrac1,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,240416,18.64654673111698,spot_baseline,metac-o1-preview,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,240416,-8.975378406055484,spot_peer,metac-o1-preview,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,240416,-1.136831732201307,peer,metac-o1-preview,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,240416,-0.0258757250104804,relative_legacy,metac-o1-preview,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,240416,2.279627452488549,baseline,metac-o1-preview,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,246118,32.29409334545327,spot_peer,laylaps,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,246118,0.0981718414829173,relative_legacy,laylaps,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,246118,15.355770344046949,baseline,laylaps,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,246118,12.966120242213744,peer,laylaps,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,246118,43.06765580733931,spot_baseline,laylaps,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,247214,0.0498529322679558,relative_legacy,ajf-bot,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,247214,28.1623814968078,spot_peer,ajf-bot,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,247214,40.62272541581806,spot_baseline,ajf-bot,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,247214,5.242964490751464,peer,ajf-bot,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34436,What will be the global land and ocean temperature increase reported by NOAA for February 2025?,2025-02-08 04:04:08.591655+00,247214,7.722954777826017,baseline,ajf-bot,True,≥1.20 and ≤1.30,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34950 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,187708,-12.155352910874663,spot_baseline,twsummerbot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,187708,-3.8089710163141217,baseline,twsummerbot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,187708,-1.2166285403911234,peer,twsummerbot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,187708,-0.1327935696641001,relative_legacy,twsummerbot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,187708,-9.454071161551369,spot_peer,twsummerbot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,189869,-37.00185757974997,spot_peer,VeritasAI,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,189869,-38.50540948480376,spot_baseline,VeritasAI,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,189869,-0.6191987095613165,relative_legacy,VeritasAI,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,189869,-17.984201673426597,peer,VeritasAI,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,189869,-20.558237914643005,baseline,VeritasAI,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,190710,29.887839790130798,baseline,Bot_Pepa,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,190710,51.08256237659889,spot_baseline,Bot_Pepa,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,190710,56.65829482080734,spot_peer,Bot_Pepa,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,190710,0.7871197241347619,relative_legacy,Bot_Pepa,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,190710,35.53244810954931,peer,Bot_Pepa,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,191026,27.17238531301387,peer,manticAI,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,191026,0.5653353354731792,relative_legacy,manticAI,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,191026,38.12076706753586,spot_peer,manticAI,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,191026,33.35101409086094,spot_baseline,manticAI,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,191026,28.80980575667904,baseline,manticAI,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,191935,-130.2588340815242,spot_peer,pgodzinai,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,191935,-127.70773483432694,spot_baseline,pgodzinai,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,191935,-64.9598511325415,baseline,pgodzinai,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,191935,-65.4655710008353,peer,pgodzinai,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,191935,-1.884948070057372,relative_legacy,pgodzinai,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,192418,35.46352759697146,spot_peer,InstitutPelFutur,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,192418,30.80930677119065,spot_baseline,InstitutPelFutur,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,192418,24.33096152396872,peer,InstitutPelFutur,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,192418,29.58578064840264,baseline,InstitutPelFutur,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,192418,0.4985092615541011,relative_legacy,InstitutPelFutur,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,192924,-2.005670469140988,baseline,acm_bot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,192924,-7.3063658757331424,peer,acm_bot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,192924,-0.2847181311020384,relative_legacy,acm_bot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,192924,0.7034030197490577,spot_peer,acm_bot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,192924,-2.439508041804693,spot_baseline,acm_bot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,218666,-20.78921510568536,spot_peer,GreeneiBot2,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,218666,-22.997664509611518,spot_baseline,GreeneiBot2,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,218666,-0.2995373711059814,relative_legacy,GreeneiBot2,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,218666,-6.401853215712011,peer,GreeneiBot2,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,218666,-10.458662785795305,baseline,GreeneiBot2,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,220077,27.33283289660632,peer,mmBot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,220077,33.27543951842176,spot_baseline,mmBot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,220077,38.04175728725852,spot_peer,mmBot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,220077,0.5668409404296669,relative_legacy,mmBot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,220077,32.467108197980735,baseline,mmBot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236037,0.0645976869346155,relative_legacy,metac-o1,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236037,27.40565104691011,spot_peer,metac-o1,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236037,23.10177267982761,spot_baseline,metac-o1,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236037,4.427617431284817,baseline,metac-o1,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236037,5.293669493048266,peer,metac-o1,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236038,56.65829482080734,spot_peer,metac-gpt-4o,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236038,0.2360185687444878,relative_legacy,metac-gpt-4o,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236038,11.818584982236224,peer,metac-gpt-4o,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236038,51.08256237659889,spot_baseline,metac-gpt-4o,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236038,10.531121061952144,baseline,metac-gpt-4o,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236040,4.308516196915785,peer,metac-claude-3-5-sonnet-latest,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236040,0.029535016566792,relative_legacy,metac-claude-3-5-sonnet-latest,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236040,20.425601291537934,spot_peer,metac-claude-3-5-sonnet-latest,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236040,3.373718322442443,baseline,metac-claude-3-5-sonnet-latest,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236040,16.425203348602064,spot_baseline,metac-claude-3-5-sonnet-latest,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236041,1.9379791600024177,peer,metac-claude-3-5-sonnet-20240620,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236041,1.0897647789590763,baseline,metac-claude-3-5-sonnet-20240620,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236041,-0.0362358535378498,relative_legacy,metac-claude-3-5-sonnet-20240620,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236041,5.268025782891358,spot_baseline,metac-claude-3-5-sonnet-20240620,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236041,8.761279291022197,spot_peer,metac-claude-3-5-sonnet-20240620,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236043,40.01184983733861,spot_peer,metac-grok-2-1212,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236043,8.290430393362673,peer,metac-grok-2-1212,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236043,7.186664073305548,baseline,metac-grok-2-1212,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236043,35.159875870672266,spot_baseline,metac-grok-2-1212,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236043,0.1397414950091166,relative_legacy,metac-grok-2-1212,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236045,-0.0281392635653554,relative_legacy,metac-Gemini-Exp-1206,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236045,1.4429823596898546,peer,metac-Gemini-Exp-1206,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236045,0.8664228311046748,baseline,metac-Gemini-Exp-1206,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236045,8.761279291021618,spot_peer,metac-Gemini-Exp-1206,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236045,5.268025782890798,spot_baseline,metac-Gemini-Exp-1206,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236047,20.425601291537472,spot_peer,metac-Llama-3.1,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236047,4.014410738427045,peer,metac-Llama-3.1,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236047,16.425203348601617,spot_baseline,metac-Llama-3.1,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236047,3.186458429146221,baseline,metac-Llama-3.1,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,236047,0.0278239954325321,relative_legacy,metac-Llama-3.1,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,237476,20.425601291537472,spot_peer,NextWorldLab,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,237476,7.872502595164019,baseline,NextWorldLab,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,237476,16.425203348601617,spot_baseline,NextWorldLab,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,237476,13.355841707859438,peer,NextWorldLab,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,237476,0.2226463365792124,relative_legacy,NextWorldLab,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,239758,1.5139331849582416,peer,metac-perplexity,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,239758,8.761279291022197,spot_peer,metac-perplexity,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,239758,-0.0296209555766083,relative_legacy,metac-perplexity,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,239758,5.268025782891358,spot_baseline,metac-perplexity,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,239758,0.9070208063239148,baseline,metac-perplexity,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,239759,0.0263349043600455,relative_legacy,metac-exa,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,239759,16.425203348601617,spot_baseline,metac-exa,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,239759,20.425601291537472,spot_peer,metac-exa,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,239759,3.6219656875224295,peer,metac-exa,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,239759,2.9044344593743645,baseline,metac-exa,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,240414,-16.798520391884544,peer,minefrac1,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,240414,-64.04669227309985,spot_baseline,minefrac1,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,240414,-63.704107767514046,spot_peer,minefrac1,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,240414,-0.5539235767042663,relative_legacy,minefrac1,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,240414,-18.086574436828645,baseline,minefrac1,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,240416,-0.1280656487330446,peer,metac-o1-preview,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,240416,-3.8480516568065695,spot_baseline,metac-o1-preview,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,240416,-0.0795369439034943,relative_legacy,metac-o1-preview,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,240416,-0.7691653050256335,spot_peer,metac-o1-preview,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,240416,-0.7057309367232416,baseline,metac-o1-preview,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,246118,-0.3128643135779701,relative_legacy,laylaps,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,246118,-10.47314662103127,baseline,laylaps,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,246118,-7.620093482709433,peer,laylaps,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,246118,-27.471414238246517,spot_peer,laylaps,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,246118,-29.3893332451048,spot_baseline,laylaps,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,247214,-48.27432930207279,baseline,ajf-bot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,247214,-109.86122886680538,spot_baseline,ajf-bot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,247214,-111.60112329729712,spot_peer,ajf-bot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,247214,-1.3888903100572416,relative_legacy,ajf-bot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34437,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:04:08.932+00,247214,-47.04564191773537,peer,ajf-bot,True,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34951 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,187708,-14.29086224039906,baseline,twsummerbot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,187708,-56.857767707158025,spot_baseline,twsummerbot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,187708,-45.846454547658425,spot_peer,twsummerbot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,187708,-0.4208544979213013,relative_legacy,twsummerbot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,187708,-13.256705582663605,peer,twsummerbot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,190710,-2.780091467933238,peer,Bot_Pepa,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,190710,-89.68541831274096,spot_peer,Bot_Pepa,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,190710,-0.0858710121727289,relative_legacy,Bot_Pepa,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,190710,-98.70405130110044,spot_baseline,Bot_Pepa,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,190710,-3.0596533531878616,baseline,Bot_Pepa,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,191026,10.446141275612856,spot_baseline,manticAI,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,191026,24.66240248191108,spot_peer,manticAI,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,191026,-0.1222148632499745,relative_legacy,manticAI,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,191026,-1.8716924328149367,peer,manticAI,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,191026,9.025268258443925,baseline,manticAI,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,191935,0.38076258189543,relative_legacy,pgodzinai,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,191935,18.086009464776755,baseline,pgodzinai,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,191935,40.30640485345294,spot_baseline,pgodzinai,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,191935,17.22664440576367,peer,pgodzinai,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,191935,55.94458337298164,spot_peer,pgodzinai,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,192418,30.762345360091867,peer,InstitutPelFutur,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,192418,0.6405575225359869,relative_legacy,InstitutPelFutur,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,192418,38.08496882249168,baseline,InstitutPelFutur,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,192418,55.54541951886664,spot_peer,InstitutPelFutur,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,192418,39.92538481088862,spot_baseline,InstitutPelFutur,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,192924,-3.149371843503734,baseline,acm_bot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,192924,-3.8480528568066745,spot_baseline,acm_bot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,192924,9.687532438423952,spot_peer,acm_bot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,192924,-0.4431555330866361,relative_legacy,acm_bot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,192924,-14.867048326856684,peer,acm_bot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,218666,19.237710060964744,spot_peer,GreeneiBot2,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,218666,5.268025782891358,spot_baseline,GreeneiBot2,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,218666,0.8358566978809661,peer,GreeneiBot2,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,218666,2.1526814110067622,baseline,GreeneiBot2,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,218666,-0.0463195259829723,relative_legacy,GreeneiBot2,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,220077,15.477231772318415,spot_baseline,mmBot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,220077,29.933068716555,spot_peer,mmBot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,220077,-0.032349535858834,relative_legacy,mmBot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,220077,15.010458290092185,baseline,mmBot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,220077,1.1241744938581355,peer,mmBot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236037,5.268025782891358,spot_baseline,metac-o1,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236037,19.237710060964744,spot_peer,metac-o1,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236037,0.0213723739828115,relative_legacy,metac-o1,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236037,2.701934977911942,peer,metac-o1,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236037,0.8709787113694586,baseline,metac-o1,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236038,-5.168600031527708,baseline,metac-gpt-4o,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236038,-29.38933324510591,spot_baseline,metac-gpt-4o,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236038,-17.069999396937153,spot_peer,metac-gpt-4o,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236038,-0.1502501076411576,relative_legacy,metac-gpt-4o,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236038,-3.518478694134705,peer,metac-gpt-4o,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236040,-18.21795932349058,peer,metac-claude-3-5-sonnet-latest,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236040,-98.70405130110044,spot_baseline,metac-claude-3-5-sonnet-latest,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236040,-89.68541831274096,spot_peer,metac-claude-3-5-sonnet-latest,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236040,-0.5547461392335834,relative_legacy,metac-claude-3-5-sonnet-latest,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236040,-19.18744680185217,baseline,metac-claude-3-5-sonnet-latest,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236041,0.1094415122205356,relative_legacy,metac-claude-3-5-sonnet-20240620,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236041,6.047795465048746,peer,metac-claude-3-5-sonnet-20240620,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236041,19.652129655480284,spot_baseline,metac-claude-3-5-sonnet-20240620,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236041,3.8424340621331385,baseline,metac-claude-3-5-sonnet-20240620,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236041,34.30677126081981,spot_peer,metac-claude-3-5-sonnet-20240620,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236043,-15.005230122515794,spot_baseline,metac-grok-2-1212,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236043,-2.0009389827951365,spot_peer,metac-grok-2-1212,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236043,-0.0838471922025971,relative_legacy,metac-grok-2-1212,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236043,-1.0373332921925635,peer,metac-grok-2-1212,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236043,-2.873648854165287,baseline,metac-grok-2-1212,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236045,0.5627395142104297,baseline,metac-Gemini-Exp-1206,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236045,0.0118071485458706,relative_legacy,metac-Gemini-Exp-1206,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236045,19.237710060964744,spot_peer,metac-Gemini-Exp-1206,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236045,5.268025782891358,spot_baseline,metac-Gemini-Exp-1206,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236045,1.7318558953126637,peer,metac-Gemini-Exp-1206,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236047,-25.34768740649495,baseline,metac-Llama-3.1,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236047,-149.2841028850242,spot_baseline,metac-Llama-3.1,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236047,-142.67404378161345,spot_peer,metac-Llama-3.1,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236047,-24.77064219513388,peer,metac-Llama-3.1,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,236047,-0.7331441432848661,relative_legacy,metac-Llama-3.1,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,237476,6.995044741839744,peer,NextWorldLab,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,237476,10.368710354868096,baseline,NextWorldLab,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,237476,19.652129655480284,spot_baseline,NextWorldLab,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,237476,0.1050767899835948,relative_legacy,NextWorldLab,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,237476,34.30677126081981,spot_peer,NextWorldLab,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,239758,0.8144237471297474,baseline,metac-perplexity,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,239758,19.237710060964744,spot_peer,metac-perplexity,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,239758,0.017696639003202,relative_legacy,metac-perplexity,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,239758,5.268025782891358,spot_baseline,metac-perplexity,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,239758,2.5246689177303137,peer,metac-perplexity,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,239759,19.65212965547986,spot_baseline,metac-exa,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,239759,34.306771260819374,spot_peer,metac-exa,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,239759,3.869838271657644,baseline,metac-exa,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,239759,6.074420964181878,peer,metac-exa,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,239759,0.1099509783020866,relative_legacy,metac-exa,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,240414,-122.97944009018424,spot_baseline,minefrac1,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,240414,-33.227715103855346,peer,minefrac1,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,240414,-115.11677799654304,spot_peer,minefrac1,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,240414,-0.9623052613777112,relative_legacy,minefrac1,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,240414,-32.86395476199319,baseline,minefrac1,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,240416,39.92538481088862,spot_baseline,metac-o1-preview,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,240416,0.1601729280967894,relative_legacy,metac-o1-preview,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,240416,7.652599404789413,peer,metac-o1-preview,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,240416,5.812765247688336,baseline,metac-o1-preview,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,240416,55.54541951886664,spot_peer,metac-o1-preview,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,246118,34.30677126081981,spot_peer,laylaps,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,246118,19.652129655480284,spot_baseline,laylaps,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,246118,0.1288753405252083,relative_legacy,laylaps,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,246118,7.312401052660572,peer,laylaps,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,246118,7.0884837152832,baseline,laylaps,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,247214,40.91551617569763,spot_baseline,ajf-bot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,247214,22.55792404200543,peer,ajf-bot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,247214,0.485860394572993,relative_legacy,ajf-bot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,247214,56.582699996285605,spot_peer,ajf-bot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34438,What will be the reported US imports from Colombia for February 2025?,2025-02-08 04:04:08.96387+00,247214,26.56522058515511,baseline,ajf-bot,True,1364.50821,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34952 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,187708,-0.2108378043344648,relative_legacy,twsummerbot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,187708,-36.89916428338985,spot_baseline,twsummerbot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,187708,-0.8796453044006274,spot_peer,twsummerbot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,187708,0.3848220139792063,peer,twsummerbot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,187708,-8.38744490554883,baseline,twsummerbot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,189869,2.687587588478551,baseline,VeritasAI,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,189869,26.90619670743536,peer,VeritasAI,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,189869,0.2271570084255005,relative_legacy,VeritasAI,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,189869,43.20423521943881,spot_peer,VeritasAI,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,189869,5.268025782891358,spot_baseline,VeritasAI,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,190710,-0.5221680595524271,peer,Bot_Pepa,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,190710,-54.930614433405445,spot_baseline,Bot_Pepa,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,190710,-19.730706824871483,spot_peer,Bot_Pepa,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,190710,-0.0397490642710259,relative_legacy,Bot_Pepa,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,190710,-1.4537245220509576,baseline,Bot_Pepa,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,191026,13.889916957671533,spot_peer,manticAI,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,191026,0.0837537933719719,relative_legacy,manticAI,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,191026,34.71296177010424,peer,manticAI,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,191026,-19.678694008947847,baseline,manticAI,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,191026,-22.77175690227735,spot_baseline,manticAI,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,191935,0.4104195617229878,relative_legacy,pgodzinai,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,191935,97.11858081731012,spot_peer,pgodzinai,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,191935,13.17632524274872,baseline,pgodzinai,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,191935,56.83826939824653,spot_baseline,pgodzinai,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,191935,23.36419303926856,peer,pgodzinai,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,192418,-18.798349157432583,peer,InstitutPelFutur,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,192418,-1.2613077565626158,relative_legacy,InstitutPelFutur,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,192418,-44.29907835362622,spot_peer,InstitutPelFutur,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,192418,-78.4307958956926,spot_baseline,InstitutPelFutur,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,192418,-74.30082312538977,baseline,InstitutPelFutur,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,192924,-81.2107905499042,baseline,acm_bot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,192924,-99.67495308415204,spot_baseline,acm_bot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,192924,-42.66614517823877,peer,acm_bot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,192924,-1.761814788635966,relative_legacy,acm_bot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,192924,-66.50887905065201,spot_peer,acm_bot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,218666,-80.87030650416442,spot_baseline,GreeneiBot2,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,218666,-29.368986488228483,baseline,GreeneiBot2,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,218666,-0.7467107118772857,relative_legacy,GreeneiBot2,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,218666,-46.84947580793767,spot_peer,GreeneiBot2,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,218666,-15.684190048345371,peer,GreeneiBot2,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,220077,-124.2198456529589,spot_baseline,mmBot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,220077,-119.79544399064936,baseline,mmBot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,220077,-73.57020958536962,peer,mmBot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,220077,-2.512929699369156,relative_legacy,mmBot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,220077,-92.16944855440464,spot_peer,mmBot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236037,-1.447907593500438,baseline,metac-o1,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236037,28.16630870491429,spot_peer,metac-o1,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236037,4.629270040152403,peer,metac-o1,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236037,-0.0319262569539222,relative_legacy,metac-o1,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236037,-9.116077839697322,spot_baseline,metac-o1,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236038,3.1939537667904245,peer,metac-gpt-4o,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236038,-20.27325540540818,spot_baseline,metac-gpt-4o,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236038,16.501986704398387,spot_peer,metac-gpt-4o,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236038,-0.0824142497645085,relative_legacy,metac-gpt-4o,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236038,-3.5210932123804537,baseline,metac-gpt-4o,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236040,-0.8470739038657218,relative_legacy,metac-claude-3-5-sonnet-latest,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236040,-128.4287037763755,spot_peer,metac-claude-3-5-sonnet-latest,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236040,-30.439302828734565,baseline,metac-claude-3-5-sonnet-latest,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236040,-158.90261151745278,spot_baseline,metac-claude-3-5-sonnet-latest,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236040,-24.09460562014273,peer,metac-claude-3-5-sonnet-latest,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236041,-30.74507866597059,baseline,metac-claude-3-5-sonnet-20240620,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236041,-0.8553273216040742,relative_legacy,metac-claude-3-5-sonnet-20240620,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236041,-128.42828559692643,spot_peer,metac-claude-3-5-sonnet-20240620,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236041,-158.90221151971886,spot_baseline,metac-claude-3-5-sonnet-20240620,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236041,-24.3364375513792,peer,metac-claude-3-5-sonnet-20240620,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236043,-19.730706824871483,spot_peer,metac-grok-2-1212,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236043,-10.350743411865784,baseline,metac-grok-2-1212,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236043,-3.1333106282321963,peer,metac-grok-2-1212,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236043,-0.2690942052872966,relative_legacy,metac-grok-2-1212,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236043,-54.930614433405445,spot_baseline,metac-grok-2-1212,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236045,25.5412811882992,spot_baseline,metac-Gemini-Exp-1206,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236045,64.39900223418338,spot_peer,metac-Gemini-Exp-1206,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236045,0.0686291990387539,relative_legacy,metac-Gemini-Exp-1206,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236045,2.4017461601055428,baseline,metac-Gemini-Exp-1206,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236045,6.013103775076492,peer,metac-Gemini-Exp-1206,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236047,-3.3273578076605377,baseline,metac-Llama-3.1,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236047,-20.27325540540818,spot_baseline,metac-Llama-3.1,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236047,16.501986704398387,spot_peer,metac-Llama-3.1,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236047,-0.0820642222228198,relative_legacy,metac-Llama-3.1,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,236047,2.9799043547216817,peer,metac-Llama-3.1,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,237476,14.384103622589084,spot_baseline,NextWorldLab,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,237476,8.111931644121606,baseline,NextWorldLab,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,237476,36.48892965010568,peer,NextWorldLab,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,237476,0.4130766906126913,relative_legacy,NextWorldLab,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,237476,52.73468023366825,spot_peer,NextWorldLab,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,239758,79.43692874870868,spot_peer,metac-perplexity,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,239758,12.329663384206263,peer,metac-perplexity,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,239758,6.094503466067757,baseline,metac-perplexity,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,239758,0.1831533441766482,relative_legacy,metac-perplexity,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,239758,39.92538481088862,spot_baseline,metac-perplexity,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,239759,16.501986704398387,spot_peer,metac-exa,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,239759,-4.125871561223877,baseline,metac-exa,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,239759,4.016042131187596,peer,metac-exa,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,239759,-0.0867963125095397,relative_legacy,metac-exa,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,239759,-20.27325540540818,spot_baseline,metac-exa,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,240414,-0.1072608170825293,relative_legacy,minefrac1,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,240414,-20.27325540540818,spot_baseline,minefrac1,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,240414,-5.556414387627615,baseline,minefrac1,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,240414,5.523142408312014,peer,minefrac1,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,240414,16.501986704398387,spot_peer,minefrac1,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,240416,6.805389554234029,peer,metac-o1-preview,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,240416,14.384103622589084,spot_baseline,metac-o1-preview,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,240416,52.73468023366825,spot_peer,metac-o1-preview,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,240416,1.82905665964638,baseline,metac-o1-preview,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,240416,0.0553944120093133,relative_legacy,metac-o1-preview,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,246118,-3.256350412535003,baseline,laylaps,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,246118,-9.116077839697695,spot_baseline,laylaps,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,246118,28.16630870491389,spot_peer,laylaps,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,246118,0.0030908837065897,relative_legacy,laylaps,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,246118,12.2047138907967,peer,laylaps,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,247214,21.16634142199537,spot_peer,ajf-bot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,247214,23.253129342322147,peer,ajf-bot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,247214,-10.304879632644576,baseline,ajf-bot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,247214,-0.0106977158959192,relative_legacy,ajf-bot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34439,"How many daily likers will Bluesky have on March 15, 2025?",2025-02-08 04:04:08.995679+00,247214,-15.811698719011066,spot_baseline,ajf-bot,True,1620083.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34953 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,187708,14.778264072377675,peer,twsummerbot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,187708,0.0579986914491118,relative_legacy,twsummerbot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,187708,43.02958808293064,spot_peer,twsummerbot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,187708,144.97941987757736,spot_baseline,twsummerbot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,187708,36.69078045227764,baseline,twsummerbot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,189869,43.02958793358879,spot_peer,VeritasAI,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,189869,0.3172666111105168,relative_legacy,VeritasAI,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,189869,42.71461088205786,peer,VeritasAI,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,189869,144.9794197344581,spot_baseline,VeritasAI,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,189869,69.91349947720518,baseline,VeritasAI,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,190710,5.355529644652052,baseline,Bot_Pepa,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,190710,0.0030061145593437,relative_legacy,Bot_Pepa,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,190710,43.02958769234428,spot_peer,Bot_Pepa,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,190710,144.97941950326543,spot_baseline,Bot_Pepa,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,190710,1.5997632179572951,peer,Bot_Pepa,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,191026,-97.6642317684962,spot_peer,manticAI,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,191026,8.771439930642556,baseline,manticAI,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,191026,-37.864520861206586,peer,manticAI,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,191026,-2.333042370385624,relative_legacy,manticAI,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,191026,10.147842519959967,spot_baseline,manticAI,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,191935,-35.92488338306884,spot_peer,pgodzinai,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,191935,69.31471805599453,spot_baseline,pgodzinai,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,191935,-0.73645940088977,relative_legacy,pgodzinai,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,191935,3.526031857752283,peer,pgodzinai,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,191935,34.14992207382216,baseline,pgodzinai,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,192418,-49.12241444107771,peer,InstitutPelFutur,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,192418,0.0,spot_baseline,InstitutPelFutur,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,192418,-108.25328483280224,spot_peer,InstitutPelFutur,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,192418,-2.598257705178746,relative_legacy,InstitutPelFutur,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,192418,0.0,baseline,InstitutPelFutur,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,192924,117.5109495381718,baseline,acm_bot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,192924,144.9794191234489,spot_baseline,acm_bot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,192924,43.02958729601399,spot_peer,acm_bot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,192924,0.815474162228466,relative_legacy,acm_bot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,192924,89.93704953390869,peer,acm_bot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,218666,76.11249986949089,spot_baseline,GreeneiBot2,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,218666,-28.831545838550888,spot_peer,GreeneiBot2,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,218666,-0.5136150614013298,relative_legacy,GreeneiBot2,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,218666,-1.4414492189710866,peer,GreeneiBot2,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,218666,24.60582733603619,baseline,GreeneiBot2,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,220077,9.847022459153816,baseline,mmBot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,220077,10.270899279569658,spot_baseline,mmBot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,220077,-97.53582471499044,spot_peer,mmBot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,220077,-2.319030768942276,relative_legacy,mmBot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,220077,-36.938235486729226,peer,mmBot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236037,43.02958761192944,spot_peer,metac-o1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236037,24.938204400024244,baseline,metac-o1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236037,8.136393990332088,peer,metac-o1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236037,0.0182104644122054,relative_legacy,metac-o1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236037,144.97941942620122,spot_baseline,metac-o1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236038,43.02958769234428,spot_peer,metac-gpt-4o,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236038,144.97941950326543,spot_baseline,metac-gpt-4o,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236038,0.0201841816886556,relative_legacy,metac-gpt-4o,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236038,8.727162049712046,peer,metac-gpt-4o,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236038,26.3837818031064,baseline,metac-gpt-4o,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236040,9.806570252668998,peer,metac-claude-3-5-sonnet-latest,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236040,144.97941942620122,spot_baseline,metac-claude-3-5-sonnet-latest,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236040,43.02958761192944,spot_peer,metac-claude-3-5-sonnet-latest,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236040,0.0248555231844032,relative_legacy,metac-claude-3-5-sonnet-latest,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236040,28.65830904992981,baseline,metac-claude-3-5-sonnet-latest,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236041,144.97941873812778,spot_baseline,metac-claude-3-5-sonnet-20240620,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236041,43.029586893939786,spot_peer,metac-claude-3-5-sonnet-20240620,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236041,0.0256889026475904,relative_legacy,metac-claude-3-5-sonnet-20240620,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236041,9.950413779704082,peer,metac-claude-3-5-sonnet-20240620,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236041,28.911170780816438,baseline,metac-claude-3-5-sonnet-20240620,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236043,9.582952984389426,peer,metac-grok-2-1212,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236043,28.232455873503103,baseline,metac-grok-2-1212,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236043,43.029586893939786,spot_peer,metac-grok-2-1212,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236043,144.97941873812778,spot_baseline,metac-grok-2-1212,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236043,0.0237195717133998,relative_legacy,metac-grok-2-1212,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236045,5.739761515570312,peer,metac-Gemini-Exp-1206,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236045,43.02958745109975,spot_peer,metac-Gemini-Exp-1206,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236045,18.09146351139695,baseline,metac-Gemini-Exp-1206,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236045,0.0121242010088983,relative_legacy,metac-Gemini-Exp-1206,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236045,144.97941927207276,spot_baseline,metac-Gemini-Exp-1206,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236047,8.552125024745393,peer,metac-Llama-3.1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236047,0.0195554225874649,relative_legacy,metac-Llama-3.1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236047,43.02958769234428,spot_peer,metac-Llama-3.1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236047,144.97941950326543,spot_baseline,metac-Llama-3.1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,236047,25.973519850639317,baseline,metac-Llama-3.1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,237476,54.93061443340548,spot_baseline,NextWorldLab,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,237476,-50.93438281533567,spot_peer,NextWorldLab,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,237476,33.31554401087297,baseline,NextWorldLab,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,237476,0.7084641287728475,peer,NextWorldLab,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,237476,-1.021652488494682,relative_legacy,NextWorldLab,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,239758,43.029585699204986,spot_peer,metac-perplexity,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,239758,7.7000346650373395,peer,metac-perplexity,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,239758,144.97941759317362,spot_baseline,metac-perplexity,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,239758,0.0169340637454319,relative_legacy,metac-perplexity,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,239758,23.787595036250444,baseline,metac-perplexity,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,239759,27.787075831569776,baseline,metac-exa,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,239759,9.365787319433638,peer,metac-exa,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,239759,0.0227432703796422,relative_legacy,metac-exa,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,239759,43.02958793358879,spot_peer,metac-exa,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,239759,144.9794197344581,spot_baseline,metac-exa,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,240414,15.851475348319337,peer,minefrac1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,240414,144.97941835831125,spot_baseline,minefrac1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,240414,43.029586497609486,spot_peer,minefrac1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,240414,38.26294002716597,baseline,minefrac1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,240414,0.0664505227295178,relative_legacy,minefrac1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,240416,0.0160804770239395,relative_legacy,metac-o1-preview,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,240416,43.02958745109975,spot_peer,metac-o1-preview,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,240416,22.89228244192441,baseline,metac-o1-preview,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,240416,7.378365449726102,peer,metac-o1-preview,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,240416,144.97941927207276,spot_baseline,metac-o1-preview,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,246118,51.92533961645826,baseline,laylaps,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,246118,26.39333659295349,peer,laylaps,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,246118,144.9794200372104,spot_baseline,laylaps,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,246118,0.1595578572444395,relative_legacy,laylaps,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,246118,43.02958824950423,spot_peer,laylaps,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,247214,-5.057733205516453,relative_legacy,ajf-bot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,247214,-110.36613364314591,baseline,ajf-bot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,247214,-156.44555856903236,peer,ajf-bot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,247214,-312.3588329420968,spot_peer,ajf-bot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,247214,-195.6011502714073,spot_baseline,ajf-bot,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,250015,4.612003161093951,baseline,metac-deepseek-r1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,250015,144.97941942620122,spot_baseline,metac-deepseek-r1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,250015,43.02958761192944,spot_peer,metac-deepseek-r1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,250015,0.0023321105748866,relative_legacy,metac-deepseek-r1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34440,How much will Opus earn in domestic gross earnings during its opening weekend?,2025-02-08 04:04:09.025794+00,250015,1.363615911598113,peer,metac-deepseek-r1,True,1013273.0,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34954 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,185690,-23.95661253298887,spot_baseline,annabot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,185690,-19.160883593047384,baseline,annabot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,185690,37.9956003120834,peer,annabot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,185690,0.5229609941172738,relative_legacy,annabot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,185690,59.49143479755587,spot_peer,annabot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,187708,-22.7482385265693,baseline,twsummerbot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,187708,30.06533823872457,spot_peer,twsummerbot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,187708,0.1562647409015615,relative_legacy,twsummerbot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,187708,-64.83716708972176,spot_baseline,twsummerbot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,187708,10.423304090333492,peer,twsummerbot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,189869,-132.19280948873623,spot_baseline,VeritasAI,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,189869,-10.151083672791122,peer,VeritasAI,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,189869,-0.0800537609976337,relative_legacy,VeritasAI,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,189869,-18.41770360125163,spot_peer,VeritasAI,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,189869,-60.609245983530265,baseline,VeritasAI,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,190710,-60.40843280818727,baseline,Bot_Pepa,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,190710,-1.1602832720157072,peer,Bot_Pepa,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,190710,0.0550181738595917,relative_legacy,Bot_Pepa,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,190710,4.754895958300911,spot_peer,Bot_Pepa,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,190710,-100.0,spot_baseline,Bot_Pepa,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,191026,-179.77699076888456,baseline,manticAI,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,191026,-83.88957659186684,peer,manticAI,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,191026,-1.0727086881798626,relative_legacy,manticAI,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,191026,-80.50077675664299,spot_peer,manticAI,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,191026,-218.44245711374276,spot_baseline,manticAI,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,191935,-364.38561897747246,spot_baseline,pgodzinai,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,191935,-94.75134038953742,baseline,pgodzinai,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,191935,-48.196348599188816,peer,pgodzinai,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,191935,-0.6838256658715859,relative_legacy,pgodzinai,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,191935,-185.5516406617159,spot_peer,pgodzinai,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,192418,1.0462343772412468,relative_legacy,InstitutPelFutur,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,192418,35.43496048424216,baseline,InstitutPelFutur,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,192418,103.98108448038086,spot_peer,InstitutPelFutur,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,192418,79.16631171732567,peer,InstitutPelFutur,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,192924,-132.19280948873623,spot_baseline,acm_bot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,192924,-0.342729498462764,relative_legacy,acm_bot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,192924,-28.150447485485603,peer,acm_bot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,192924,-106.42843095930336,baseline,acm_bot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,192924,-18.41770360125163,spot_peer,acm_bot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,204737,61.91502563397573,spot_peer,SynapseSeer,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,204737,-15.271290846122456,baseline,SynapseSeer,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,204737,38.37948434271173,peer,SynapseSeer,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,204737,-20.589610144025208,spot_baseline,SynapseSeer,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,204737,0.5479340132282616,relative_legacy,SynapseSeer,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,218666,3.738073864982944,peer,GreeneiBot2,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,218666,0.1220904495999946,relative_legacy,GreeneiBot2,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,218666,12.747004076283488,spot_peer,GreeneiBot2,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,218666,-88.8968687611256,spot_baseline,GreeneiBot2,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,218666,-54.8752626736841,baseline,GreeneiBot2,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,220077,25.02268156410668,baseline,mmBot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,220077,70.30960297728322,peer,mmBot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,220077,26.303440583379377,spot_baseline,mmBot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,220077,95.66895714505203,spot_peer,mmBot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,220077,0.938128565299966,relative_legacy,mmBot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,222631,-132.19280948873623,spot_baseline,Grizeu_Bot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,222631,-18.41770360125163,spot_peer,Grizeu_Bot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,222631,-11.283245531485294,peer,Grizeu_Bot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,222631,-0.0905964330554616,relative_legacy,Grizeu_Bot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,222631,-64.93836624664456,baseline,Grizeu_Bot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236037,-27.550346857408904,baseline,metac-o1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236037,-0.0762558238034553,relative_legacy,metac-o1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236037,-18.41770360125163,spot_peer,metac-o1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236037,-132.19280948873623,spot_baseline,metac-o1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236037,-3.970900463842277,peer,metac-o1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236038,-73.69655941662063,spot_baseline,metac-gpt-4o,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236038,-15.980208928992562,baseline,metac-gpt-4o,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236038,5.032083809832398,peer,metac-gpt-4o,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236038,0.0468673559991028,relative_legacy,metac-gpt-4o,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236038,23.688288394596192,spot_peer,metac-gpt-4o,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236040,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236040,-11.06251306226448,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236040,8.429962306929383,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236040,0.0937906945166456,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236040,39.69624360742687,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236041,0.0937139613515991,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236041,-11.071642599713858,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236041,8.424486025485146,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236041,39.69624360742687,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236041,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236043,0.0457013983395508,relative_legacy,metac-grok-2-1212,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236043,23.688288394596192,spot_peer,metac-grok-2-1212,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236043,-73.69655941662063,spot_baseline,metac-grok-2-1212,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236043,-15.843825550919664,baseline,metac-grok-2-1212,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236043,4.955161268201469,peer,metac-grok-2-1212,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236045,0.091923986681849,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236045,-10.697302680613902,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236045,8.13584560668698,peer,metac-Gemini-Exp-1206,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236045,-51.45731728297583,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236045,39.69624360742687,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236047,0.3048314154868567,relative_legacy,metac-Llama-3.1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236047,10.288060016931096,baseline,metac-Llama-3.1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236047,111.67691235788274,spot_peer,metac-Llama-3.1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,236047,23.55420745910572,peer,metac-Llama-3.1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,237476,-1.1137980214610277,relative_legacy,NextWorldLab,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,237476,-283.65012677171205,spot_baseline,NextWorldLab,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,237476,-127.43769345303738,spot_peer,NextWorldLab,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,237476,-87.83072834850569,peer,NextWorldLab,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,237476,-178.77493152822856,baseline,NextWorldLab,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,239758,-17.49586052403068,peer,metac-perplexity,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,239758,-0.2598792640870434,relative_legacy,metac-perplexity,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,239758,-90.3983723517075,spot_peer,metac-perplexity,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,239758,-232.19280948873623,spot_baseline,metac-perplexity,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,239758,-44.767632051000525,baseline,metac-perplexity,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,239759,-90.3983723517075,spot_peer,metac-exa,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,239759,-0.2185237803442996,relative_legacy,metac-exa,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,239759,-14.943397224658874,peer,metac-exa,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,239759,-38.389053116742645,baseline,metac-exa,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,239759,-232.19280948873623,spot_baseline,metac-exa,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,240414,-0.3728439729665854,relative_legacy,minefrac1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,240414,-232.19280948873623,spot_baseline,minefrac1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,240414,-90.3983723517075,spot_peer,minefrac1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,240414,-67.98378190787352,baseline,minefrac1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,240414,-26.439541648604703,peer,minefrac1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,240416,-0.0761564715980033,relative_legacy,metac-o1-preview,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,240416,-132.19280948873623,spot_baseline,metac-o1-preview,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,240416,-3.960875605431157,peer,metac-o1-preview,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,240416,-27.54945545435225,baseline,metac-o1-preview,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,240416,-18.41770360125163,spot_peer,metac-o1-preview,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,246118,-48.29238035585968,spot_peer,laylaps,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,246118,-0.2292071367856296,relative_legacy,laylaps,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,246118,-17.92102781844967,peer,laylaps,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,246118,-62.42189740629484,baseline,laylaps,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,246118,-173.6965594166206,spot_baseline,laylaps,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,247214,62.63120884395508,spot_peer,ajf-bot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,247214,0.5384194010831632,relative_legacy,ajf-bot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,247214,39.25320544938831,peer,ajf-bot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,247214,-17.20975691373512,baseline,ajf-bot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,247214,-19.5946441032647,spot_baseline,ajf-bot,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,250015,17.59598755600651,peer,metac-deepseek-r1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,250015,4.856128131988649,baseline,metac-deepseek-r1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,250015,0.2280982765980195,relative_legacy,metac-deepseek-r1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,250015,95.66895714505203,spot_peer,metac-deepseek-r1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34441,"Before March 15, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:04:09.056092+00,250015,26.303440583379377,spot_baseline,metac-deepseek-r1,True,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34955 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,185690,0.4922147577677117,peer,annabot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,185690,-4.816916096066422,baseline,annabot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,185690,-5.679129141155405,spot_baseline,annabot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,185690,2.794152651097692,spot_peer,annabot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,185690,0.0166994892245315,relative_legacy,annabot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,187708,-11.6349617689198,baseline,twsummerbot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,187708,-6.035039670474156,peer,twsummerbot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,187708,-0.0779247659934286,relative_legacy,twsummerbot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,187708,-19.72163354310844,spot_peer,twsummerbot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,187708,-36.95945285176767,spot_baseline,twsummerbot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,189869,-25.82793861566616,baseline,VeritasAI,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,189869,-16.22032023118861,peer,VeritasAI,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,189869,-0.2040977059477882,relative_legacy,VeritasAI,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,189869,-30.15729331522655,spot_peer,VeritasAI,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,190710,34.12754755772743,spot_peer,Bot_Pepa,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,190710,37.85116232537298,spot_baseline,Bot_Pepa,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,190710,22.69687600163834,baseline,Bot_Pepa,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,190710,19.32524076429365,peer,Bot_Pepa,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,190710,0.2749253038908543,relative_legacy,Bot_Pepa,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,191026,-0.6582827371237936,peer,manticAI,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,191026,1.5554164458577409,spot_peer,manticAI,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,191026,-7.400058144377692,spot_baseline,manticAI,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,191026,-6.091571959569979,baseline,manticAI,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,191026,0.0025331642363902,relative_legacy,manticAI,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,191935,-11.624087551579766,baseline,pgodzinai,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,191935,-0.0788084713157517,relative_legacy,pgodzinai,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,191935,-6.052334595552418,peer,pgodzinai,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,191935,-37.70696490798233,spot_baseline,pgodzinai,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,191935,-20.259697720162023,spot_peer,pgodzinai,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,192418,-14.13487147746057,baseline,InstitutPelFutur,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,192418,-4.059256532209374,spot_peer,InstitutPelFutur,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,192418,-15.200309344505014,spot_baseline,InstitutPelFutur,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,192418,-0.0640571286215155,relative_legacy,InstitutPelFutur,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,192418,-6.179194901019901,peer,InstitutPelFutur,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,192924,-41.50374992788438,spot_baseline,acm_bot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,192924,-22.99264896850465,spot_peer,acm_bot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,192924,-33.327482126948915,baseline,acm_bot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,192924,-21.506711011899533,peer,acm_bot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,192924,-0.2713192419564713,relative_legacy,acm_bot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,204737,8.758103565833178,peer,SynapseSeer,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,204737,0.1329045512541968,relative_legacy,SynapseSeer,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,204737,14.392250334756838,spot_peer,SynapseSeer,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,204737,10.433665981473554,spot_baseline,SynapseSeer,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,204737,7.627411392516889,baseline,SynapseSeer,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,218666,2.9409182631645163,baseline,GreeneiBot2,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,218666,0.0797921256736913,relative_legacy,GreeneiBot2,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,218666,5.102400302446689,spot_baseline,GreeneiBot2,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,218666,10.55476964612977,spot_peer,GreeneiBot2,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,218666,4.726738225715887,peer,GreeneiBot2,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,220077,-0.4042313601736719,relative_legacy,mmBot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,220077,-30.15729331522655,spot_peer,mmBot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,220077,-33.240731830745474,peer,mmBot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,220077,-48.59285302122539,baseline,mmBot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,222631,-32.19280948873623,spot_baseline,Grizeu_Bot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,222631,-16.290571773449177,spot_peer,Grizeu_Bot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,222631,-8.77044513849059,peer,Grizeu_Bot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,222631,-15.73958001908488,baseline,Grizeu_Bot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,222631,-0.1025501265743664,relative_legacy,Grizeu_Bot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236037,-0.105750912788674,relative_legacy,metac-o1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236037,-51.45731728297583,spot_baseline,metac-o1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236037,-30.15729331522655,spot_peer,metac-o1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236037,-6.129801548960604,peer,metac-o1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236037,-10.5953931358137,baseline,metac-o1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236038,8.037188581214949,baseline,metac-gpt-4o,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236038,37.85116232537298,spot_baseline,metac-gpt-4o,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236038,34.12754755772743,spot_peer,metac-gpt-4o,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236038,0.0828911356646563,relative_legacy,metac-gpt-4o,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236038,7.345415026452938,peer,metac-gpt-4o,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236040,-30.15729331522655,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236040,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236040,-10.8978423222572,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236040,-6.3036720072047405,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236040,-0.1066001649224428,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236041,-30.15729331522655,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236041,-6.297310457594101,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236041,-0.1065466838880258,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236041,-10.887282656822416,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236041,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236043,10.262464186235684,baseline,metac-grok-2-1212,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236043,8.943203880196533,peer,metac-grok-2-1212,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236043,0.1049122821595139,relative_legacy,metac-grok-2-1212,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236043,41.82337543522931,spot_peer,metac-grok-2-1212,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236045,41.82337543522931,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236045,48.54268271702416,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236045,8.169097569732923,peer,metac-Gemini-Exp-1206,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236045,9.423902759964069,baseline,metac-Gemini-Exp-1206,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236045,0.0900400464532898,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236047,0.0530687675570432,relative_legacy,metac-Llama-3.1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236047,5.364161722552693,baseline,metac-Llama-3.1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236047,5.347997346375313,peer,metac-Llama-3.1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,236047,25.815420222398647,spot_peer,metac-Llama-3.1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,237476,52.79181772402883,baseline,NextWorldLab,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,237476,0.5793399319643147,relative_legacy,NextWorldLab,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,237476,41.89164134071984,peer,NextWorldLab,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,237476,64.40086646731037,spot_peer,NextWorldLab,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,237476,79.90873060740036,spot_baseline,NextWorldLab,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,239758,-4.059256532209374,spot_peer,metac-perplexity,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,239758,-2.881754055867512,baseline,metac-perplexity,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,239758,-0.732963254187679,peer,metac-perplexity,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,239758,-0.0345150621185718,relative_legacy,metac-perplexity,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,239758,-15.200309344505014,spot_baseline,metac-perplexity,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,239759,25.815420222398647,spot_peer,metac-exa,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,239759,4.393739391105755,peer,metac-exa,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,239759,4.477662387200993,baseline,metac-exa,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,239759,26.303440583379377,spot_baseline,metac-exa,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,239759,0.0360964516448302,relative_legacy,metac-exa,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,240414,-73.69655941662059,spot_baseline,minefrac1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,240414,-46.1652485280572,spot_peer,minefrac1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,240414,-0.1849369986637503,relative_legacy,minefrac1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,240414,-13.549885091199304,peer,minefrac1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,240414,-21.86321655463609,baseline,minefrac1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,240416,-13.160012303169117,peer,metac-o1-preview,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,240416,-100.0,spot_baseline,metac-o1-preview,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,240416,-20.32341801352622,baseline,metac-o1-preview,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,240416,-0.2040378811114219,relative_legacy,metac-o1-preview,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,240416,-65.0986409643525,spot_peer,metac-o1-preview,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,246118,-4.059256532209374,spot_peer,laylaps,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,246118,-0.0094262403667614,relative_legacy,laylaps,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,246118,-5.474243338185145,baseline,laylaps,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,246118,-15.200309344505014,spot_baseline,laylaps,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,246118,-1.443618414123492,peer,laylaps,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,247214,35.212805094577,baseline,ajf-bot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,247214,33.08562341477499,peer,ajf-bot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,247214,0.4294281261774583,relative_legacy,ajf-bot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,247214,33.96766122306973,spot_peer,ajf-bot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,247214,37.629038333705154,spot_baseline,ajf-bot,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,250015,22.294874471462524,spot_peer,metac-deepseek-r1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,250015,3.649307819306669,baseline,metac-deepseek-r1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,250015,3.801307909964965,peer,metac-deepseek-r1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,250015,0.0278965095075205,relative_legacy,metac-deepseek-r1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34442,Will 50% or more of respondents to to Gallup's 2025 survey express sympathies for the the Israelis?,2025-02-08 04:04:09.397111+00,250015,21.412480535284764,spot_baseline,metac-deepseek-r1,True,no,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34956 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,185690,40.94607562112997,spot_peer,annabot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,185690,77.47952255251258,spot_baseline,annabot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,185690,69.67670753986461,baseline,annabot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,185690,47.98319834671198,peer,annabot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,185690,0.8188289782112956,relative_legacy,annabot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,187708,-12.632732744191934,spot_peer,twsummerbot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,187708,8.365909690224429,baseline,twsummerbot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,187708,25.96143758585691,spot_baseline,twsummerbot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,187708,-3.55445043811771,peer,twsummerbot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,187708,-0.1878195662422775,relative_legacy,twsummerbot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,189869,-14.238283429231164,spot_peer,VeritasAI,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,189869,-5.532242812631703,peer,VeritasAI,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,189869,11.60074600918766,baseline,VeritasAI,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,189869,24.41763885024226,spot_baseline,VeritasAI,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,189869,-0.3074460673742838,relative_legacy,VeritasAI,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,190710,-29.197751669451737,spot_peer,Bot_Pepa,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,190710,-15.04446859244934,peer,Bot_Pepa,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,190710,5.987460007916464,baseline,Bot_Pepa,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,190710,10.033534773107087,spot_baseline,Bot_Pepa,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,190710,-0.6186759649612067,relative_legacy,Bot_Pepa,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,191026,-10.959205601372869,peer,manticAI,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,191026,-0.6616888089494405,relative_legacy,manticAI,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,191026,16.504983245903166,baseline,manticAI,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,191026,19.09061266503946,spot_baseline,manticAI,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,191026,-19.778390661842074,spot_peer,manticAI,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,191935,19.003380583268218,spot_peer,pgodzinai,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,191935,10.5145153485163,peer,pgodzinai,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,191935,26.55254889558189,baseline,pgodzinai,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,191935,0.1293374692689314,relative_legacy,pgodzinai,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,191935,56.38077732379936,spot_baseline,pgodzinai,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,192418,57.87276613868718,baseline,InstitutPelFutur,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,192418,62.524640952586886,spot_baseline,InstitutPelFutur,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,192418,25.39299875720724,spot_peer,InstitutPelFutur,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,192418,0.451445598580896,relative_legacy,InstitutPelFutur,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,192418,34.89073718609448,peer,InstitutPelFutur,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,192924,21.58312172355472,peer,acm_bot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,192924,18.44936638800495,spot_peer,acm_bot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,192924,55.848071366815454,spot_baseline,acm_bot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,192924,44.53650336393348,baseline,acm_bot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,192924,0.2340444266483167,relative_legacy,acm_bot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,218666,43.654056750853705,baseline,GreeneiBot2,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,218666,45.0122988994725,spot_peer,GreeneiBot2,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,218666,0.5299128141322842,relative_legacy,GreeneiBot2,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,218666,26.8388570538442,peer,GreeneiBot2,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,218666,81.38935262784194,spot_baseline,GreeneiBot2,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,220077,27.42670519348048,peer,mmBot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,220077,52.07922167737984,baseline,mmBot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,220077,0.2620927677915617,relative_legacy,mmBot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,220077,18.019432747565325,spot_peer,mmBot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,220077,55.43467363562351,spot_baseline,mmBot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,222631,4.887922226198245,peer,Grizeu_Bot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,222631,-0.0307925342943592,relative_legacy,Grizeu_Bot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,222631,6.845901719665944,spot_peer,Grizeu_Bot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,222631,44.69089380110486,spot_baseline,Grizeu_Bot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,222631,21.71987681755981,baseline,Grizeu_Bot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236037,79.34825282910212,spot_baseline,metac-o1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236037,8.576609717446983,peer,metac-o1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236037,42.8895551087831,spot_peer,metac-o1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236037,15.860909109604783,baseline,metac-o1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236037,0.1888505099681224,relative_legacy,metac-o1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236038,-0.0115889849489235,relative_legacy,metac-gpt-4o,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236038,1.4422645420830895,peer,metac-gpt-4o,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236038,9.350399850467008,baseline,metac-gpt-4o,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236038,44.69089380110486,spot_baseline,metac-gpt-4o,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236038,6.845901719665944,spot_peer,metac-gpt-4o,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236040,18.44936638800495,spot_peer,metac-claude-3-5-sonnet-latest,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236040,11.660805127188135,baseline,metac-claude-3-5-sonnet-latest,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236040,3.878049334234037,peer,metac-claude-3-5-sonnet-latest,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236040,0.0561130556361032,relative_legacy,metac-claude-3-5-sonnet-latest,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236040,55.848071366815454,spot_baseline,metac-claude-3-5-sonnet-latest,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236041,0.4144001718988881,peer,metac-claude-3-5-sonnet-20240620,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236041,1.889772369841051,spot_peer,metac-claude-3-5-sonnet-20240620,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236041,8.349175543923266,baseline,metac-claude-3-5-sonnet-20240620,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236041,39.92538481088862,spot_baseline,metac-claude-3-5-sonnet-20240620,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236041,-0.0399272626304117,relative_legacy,metac-claude-3-5-sonnet-20240620,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236043,1.4364264713924668,peer,metac-grok-2-1212,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236043,44.69089380110486,spot_baseline,metac-grok-2-1212,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236043,6.845901719665944,spot_peer,metac-grok-2-1212,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236043,-0.0112156135118843,relative_legacy,metac-grok-2-1212,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236043,9.282786494293628,baseline,metac-grok-2-1212,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236045,1.241377158469994,peer,metac-Gemini-Exp-1206,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236045,8.098250904835412,baseline,metac-Gemini-Exp-1206,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236045,6.845901719665944,spot_peer,metac-Gemini-Exp-1206,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236045,-0.00778362549821,relative_legacy,metac-Gemini-Exp-1206,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236045,44.69089380110486,spot_baseline,metac-Gemini-Exp-1206,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236047,27.867281606407413,spot_baseline,metac-Llama-3.1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236047,-10.6506549628194,spot_peer,metac-Llama-3.1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236047,-2.1071397782928525,peer,metac-Llama-3.1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236047,-0.1064879014110241,relative_legacy,metac-Llama-3.1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,236047,5.521875460223075,baseline,metac-Llama-3.1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,237476,-26.53050111766292,spot_peer,NextWorldLab,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,237476,8.75507025760481,baseline,NextWorldLab,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,237476,-14.78400395550084,peer,NextWorldLab,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,237476,-0.655667227515579,relative_legacy,NextWorldLab,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,237476,12.598198765211729,spot_baseline,NextWorldLab,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,239758,4.516307404670982,baseline,metac-perplexity,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,239758,24.4176381684244,spot_baseline,metac-perplexity,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,239758,-14.238284138321738,spot_peer,metac-perplexity,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,239758,-0.1161162228797225,relative_legacy,metac-perplexity,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,239758,-2.6242703786156185,peer,metac-perplexity,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,239759,-3.594328947759837,peer,metac-exa,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,239759,-0.1397343612755505,relative_legacy,metac-exa,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,239759,-20.746767619203204,spot_peer,metac-exa,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,239759,18.159480975269148,spot_baseline,metac-exa,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,239759,3.166005916634792,baseline,metac-exa,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,240414,-0.2959344783650677,relative_legacy,minefrac1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,240414,2.871997828557809,baseline,minefrac1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,240414,-8.00049085932649,peer,minefrac1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,240414,10.0335347731076,spot_baseline,minefrac1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,240414,-29.19775166945121,spot_peer,minefrac1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,240416,0.1316492178623386,relative_legacy,metac-o1-preview,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,240416,70.2321748984955,spot_baseline,metac-o1-preview,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,240416,33.40883406095221,spot_peer,metac-o1-preview,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,240416,13.486745770053432,baseline,metac-o1-preview,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,240416,6.412223592895136,peer,metac-o1-preview,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,246118,33.4088343445886,spot_peer,laylaps,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,246118,12.878753952946136,peer,laylaps,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,246118,25.264286516092657,baseline,laylaps,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,246118,70.23217517122279,spot_baseline,laylaps,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,246118,0.2435161602573366,relative_legacy,laylaps,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,247214,-109.86122886681648,spot_baseline,ajf-bot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,247214,-101.249799744464,baseline,ajf-bot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,247214,-145.24485801167097,peer,ajf-bot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,247214,-4.133066856644795,relative_legacy,ajf-bot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,247214,-153.88830585497226,spot_peer,ajf-bot,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,250015,1.0402973559709492,peer,metac-deepseek-r1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,250015,6.787070620466922,baseline,metac-deepseek-r1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,250015,6.845901719665944,spot_peer,metac-deepseek-r1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,250015,-0.0058437485419047,relative_legacy,metac-deepseek-r1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34443,What will China's youth unemployment rate be for January 2025?,2025-02-08 04:04:09.427538+00,250015,44.69089380110486,spot_baseline,metac-deepseek-r1,True,16.1,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,2025-02-11 13:00:00+00,34957 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,187708,0.041842207032513,relative_legacy,twsummerbot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,187708,32.813376739714464,spot_baseline,twsummerbot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,187708,7.583101669852637,spot_peer,twsummerbot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,187708,1.826391008803716,peer,twsummerbot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,187708,9.771002283013711,baseline,twsummerbot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,189869,-3.041869405432515,spot_peer,VeritasAI,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,189869,22.414422674852105,baseline,VeritasAI,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,189869,-6.440432742057466,peer,VeritasAI,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,189869,-0.0639660757494761,relative_legacy,VeritasAI,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,189869,25.497457315215517,spot_baseline,VeritasAI,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,191026,21.5056103187169,spot_peer,manticAI,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,191026,35.55120247947287,baseline,manticAI,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,191026,16.19121568911263,peer,manticAI,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,191026,0.2237709646916374,relative_legacy,manticAI,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,191026,42.39984532774751,spot_baseline,manticAI,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,191935,3.101351701305988,spot_peer,pgodzinai,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,191935,29.72742747751771,spot_baseline,pgodzinai,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,191935,27.41054032566208,baseline,pgodzinai,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,191935,-0.74380490211553,peer,pgodzinai,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,191935,0.0083841161117859,relative_legacy,pgodzinai,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,191975,-7.416839321484219,spot_peer,jkraybill_bot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,191975,-1.1955019623125307,peer,jkraybill_bot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,191975,-0.0072405126167728,relative_legacy,jkraybill_bot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,191975,3.62812328500218,baseline,jkraybill_bot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,191975,22.485032418841644,spot_baseline,jkraybill_bot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,192418,5.522978362559945,peer,InstitutPelFutur,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,192418,9.166435154714833,spot_peer,InstitutPelFutur,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,192418,32.298419715689825,baseline,InstitutPelFutur,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,192418,33.903595255631885,spot_baseline,InstitutPelFutur,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,192418,0.0859530249010169,relative_legacy,InstitutPelFutur,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,220077,2.6613953782708224,peer,mmBot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,220077,6.514093365884461,spot_peer,mmBot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,220077,32.07730145437618,spot_baseline,mmBot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,220077,0.0511564770586044,relative_legacy,mmBot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,220077,31.188597082108775,baseline,mmBot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,222631,-7.291242045170724,peer,Grizeu_Bot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,222631,24.27134135851207,spot_baseline,Grizeu_Bot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,222631,-4.822567882139958,spot_peer,Grizeu_Bot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,222631,-0.0754039287665967,relative_legacy,Grizeu_Bot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,222631,19.680979204488136,baseline,Grizeu_Bot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236037,-6.634058055574878,spot_peer,metac-o1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236037,3.6859554769862193,baseline,metac-o1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236037,-1.0601921737152202,peer,metac-o1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236037,-0.0054520446795521,relative_legacy,metac-o1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236037,23.024023502000546,spot_baseline,metac-o1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236038,24.27134135851208,spot_baseline,metac-gpt-4o,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236038,-4.822567882139933,spot_peer,metac-gpt-4o,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236038,-0.0015337646211773,relative_legacy,metac-gpt-4o,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236038,-0.8052694175381567,peer,metac-gpt-4o,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236038,4.017064872818809,baseline,metac-gpt-4o,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236040,25.49745731521553,spot_baseline,metac-claude-3-5-sonnet-latest,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236040,0.0024892982416928,relative_legacy,metac-claude-3-5-sonnet-latest,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236040,-0.5183159132990286,peer,metac-claude-3-5-sonnet-latest,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236040,4.253026601656064,baseline,metac-claude-3-5-sonnet-latest,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236040,-3.041869405432491,spot_peer,metac-claude-3-5-sonnet-latest,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236041,5.975470561078687,spot_peer,metac-claude-3-5-sonnet-20240620,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236041,0.0231784223454377,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236041,5.282786414700512,baseline,metac-claude-3-5-sonnet-20240620,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236041,0.9869977190206312,peer,metac-claude-3-5-sonnet-20240620,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236041,31.706427876252032,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236043,28.279858792711256,spot_baseline,metac-grok-2-1212,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236043,0.161587585406307,peer,metac-grok-2-1212,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236043,4.612258830121867,baseline,metac-grok-2-1212,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236043,0.0115930081426748,relative_legacy,metac-grok-2-1212,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236043,0.9990355721735812,spot_peer,metac-grok-2-1212,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236045,4.314842815493358,baseline,metac-Gemini-Exp-1206,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236045,-0.2076034155596987,peer,metac-Gemini-Exp-1206,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236045,0.006378421144249,relative_legacy,metac-Gemini-Exp-1206,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236045,-1.2909333034215644,spot_peer,metac-Gemini-Exp-1206,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236045,26.70308012105592,spot_baseline,metac-Gemini-Exp-1206,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236047,-4.822567882139933,spot_peer,metac-Llama-3.1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236047,24.27134135851208,spot_baseline,metac-Llama-3.1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236047,4.021554531736101,baseline,metac-Llama-3.1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236047,-0.806658512753212,peer,metac-Llama-3.1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,236047,-0.0015347987465492,relative_legacy,metac-Llama-3.1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,239758,5.105597054845323,baseline,metac-perplexity,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,239758,0.964169219007841,peer,metac-perplexity,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,239758,0.0224697670694537,relative_legacy,metac-perplexity,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,239758,31.706427876252032,spot_baseline,metac-perplexity,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,239758,5.975470561078687,spot_peer,metac-perplexity,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,239759,15.517006030607524,spot_baseline,metac-exa,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,239759,2.5018023889553445,baseline,metac-exa,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,239759,-2.828798577707637,peer,metac-exa,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,239759,-0.0297331262720798,relative_legacy,metac-exa,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,239759,-17.53656242544414,spot_peer,metac-exa,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,240414,-1.797917975124428,peer,minefrac1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,240414,6.795430095065409,baseline,minefrac1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,240414,-0.0068472836181216,relative_legacy,minefrac1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,240414,-4.822567882139933,spot_peer,minefrac1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,240414,24.27134135851208,spot_baseline,minefrac1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,240416,3.921667344567029,baseline,metac-o1-preview,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,240416,24.682366698760504,spot_baseline,metac-o1-preview,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,240416,-4.225632336796935,spot_peer,metac-o1-preview,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,240416,-0.0001670877481258,relative_legacy,metac-o1-preview,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,240416,-0.6693762483045802,peer,metac-o1-preview,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,246118,13.391826588168056,baseline,laylaps,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,246118,-4.375982478322418,peer,laylaps,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,246118,24.271341358512093,spot_baseline,laylaps,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,246118,-4.822567882139921,spot_peer,laylaps,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,246118,-0.0383994412512724,relative_legacy,laylaps,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,247214,3.2400173797401752,spot_peer,ajf-bot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,247214,21.800406771226232,baseline,ajf-bot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,247214,-0.0438972099369878,peer,ajf-bot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,247214,0.0196490070775179,relative_legacy,ajf-bot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,247214,29.82290697794928,spot_baseline,ajf-bot,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,250015,4.329368530139568,baseline,metac-deepseek-r1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,250015,3.2400173797401752,spot_peer,metac-deepseek-r1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,250015,0.0145006683944409,relative_legacy,metac-deepseek-r1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,250015,29.82290697794927,spot_baseline,metac-deepseek-r1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34444,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:04:09.461438+00,250015,0.4702586117356098,peer,metac-deepseek-r1,True,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,2025-02-12 01:58:46+00,34958 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,185699,62.17815436368262,spot_baseline,MWG,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,185699,3.94811535142988,baseline,MWG,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,185699,4.137495955528236,peer,MWG,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,185699,0.0359968031809399,relative_legacy,MWG,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,185699,65.16067523426722,spot_peer,MWG,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,187708,17.453704627753694,baseline,twsummerbot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,187708,0.1545355847717315,relative_legacy,twsummerbot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,187708,25.388402884594708,spot_peer,twsummerbot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,187708,19.307402666016387,peer,twsummerbot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,187708,27.3166972139158,spot_baseline,twsummerbot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,189869,34.49551014618923,spot_baseline,VeritasAI,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,189869,0.2745346214753362,relative_legacy,VeritasAI,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,189869,26.927853529252843,baseline,VeritasAI,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,189869,33.57847084024926,spot_peer,VeritasAI,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,189869,30.4783427883714,peer,VeritasAI,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,190710,20.652039104806107,baseline,Bot_Pepa,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,190710,23.026038467278696,peer,Bot_Pepa,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,190710,0.163494752318595,relative_legacy,Bot_Pepa,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,190710,23.0546832384194,spot_peer,Bot_Pepa,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,190710,25.271129720828394,spot_baseline,Bot_Pepa,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,191026,0.0558152799631074,relative_legacy,manticAI,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,191026,16.595623285353042,spot_baseline,manticAI,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,191026,11.378654846515014,baseline,manticAI,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,191026,12.265433941850404,peer,manticAI,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,191026,13.157087643354886,spot_peer,manticAI,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,191935,-6.822189407061736,baseline,pgodzinai,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,191935,-8.704257210564355,peer,pgodzinai,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,191935,-0.2361454039183913,relative_legacy,pgodzinai,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,191935,-16.71758911125315,spot_peer,pgodzinai,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,191935,-9.59032742893847,spot_baseline,pgodzinai,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,191975,40.96816170255065,spot_baseline,jkraybill_bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,191975,3.21902161115717,peer,jkraybill_bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,191975,3.182937896464326,baseline,jkraybill_bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,191975,40.96290286264568,spot_peer,jkraybill_bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,191975,0.0198044330167327,relative_legacy,jkraybill_bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,192418,16.069368649321525,baseline,InstitutPelFutur,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,192418,16.595623285353042,spot_baseline,InstitutPelFutur,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,192418,13.157087643354886,spot_peer,InstitutPelFutur,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,192418,0.0963791402807076,relative_legacy,InstitutPelFutur,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,192418,21.740087810313497,peer,InstitutPelFutur,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,192924,55.26307963920272,spot_peer,acm_bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,192924,22.609993858424808,baseline,acm_bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,192924,24.91200465893154,peer,acm_bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,192924,53.50264792820728,spot_baseline,acm_bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,192924,0.2392011572183083,relative_legacy,acm_bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,218666,23.178533591891043,spot_baseline,GreeneiBot2,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,218666,18.77086153616074,baseline,GreeneiBot2,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,218666,20.667310192008365,spot_peer,GreeneiBot2,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,218666,0.1356201160955297,relative_legacy,GreeneiBot2,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,218666,20.784856830717214,peer,GreeneiBot2,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,220077,-26.02701930452342,baseline,mmBot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,220077,-33.81627473722016,peer,mmBot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,220077,-26.185950714291486,spot_baseline,mmBot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,220077,-0.5601908014833653,relative_legacy,mmBot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,220077,-35.650981547548426,spot_peer,mmBot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,222631,-77.75697354339627,spot_peer,Grizeu_Bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,222631,-63.09297535714576,spot_baseline,Grizeu_Bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,222631,-49.42242916096222,baseline,Grizeu_Bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,222631,-58.73437824241492,peer,Grizeu_Bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,222631,-0.936236391663257,relative_legacy,Grizeu_Bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236037,-29.90172878643969,spot_baseline,metac-o1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236037,-39.89018867080569,spot_peer,metac-o1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236037,-0.4270159314367436,relative_legacy,metac-o1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236037,-19.44141323384899,baseline,metac-o1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236037,-22.997965640368378,peer,metac-o1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236038,0.0783121156248768,relative_legacy,metac-gpt-4o,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236038,15.721320489278073,spot_peer,metac-gpt-4o,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236038,18.84324174411861,spot_baseline,metac-gpt-4o,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236038,12.4283837199353,baseline,metac-gpt-4o,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236038,13.578285108192285,peer,metac-gpt-4o,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236040,-37.82184563631739,spot_baseline,metac-claude-3-5-sonnet-latest,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236040,-48.92598551203648,spot_peer,metac-claude-3-5-sonnet-latest,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236040,-25.116295792363086,baseline,metac-claude-3-5-sonnet-latest,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236040,-29.55274350935275,peer,metac-claude-3-5-sonnet-latest,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236040,-0.5166335724836769,relative_legacy,metac-claude-3-5-sonnet-latest,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236041,-51.009242548824666,peer,metac-claude-3-5-sonnet-20240620,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236041,-43.844398410984255,baseline,metac-claude-3-5-sonnet-20240620,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236041,-0.8130517493067521,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236041,-81.99618066665354,spot_peer,metac-claude-3-5-sonnet-20240620,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236041,-66.80875342929394,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236043,-25.04719060222677,baseline,metac-grok-2-1212,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236043,-29.458219402387343,peer,metac-grok-2-1212,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236043,-48.92598551203646,spot_peer,metac-grok-2-1212,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236043,-37.82184563631736,spot_baseline,metac-grok-2-1212,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236043,-0.5153702702217079,relative_legacy,metac-grok-2-1212,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236045,-2.489993697417276,peer,metac-Gemini-Exp-1206,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236045,-6.605669132175454,spot_baseline,metac-Gemini-Exp-1206,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236045,-1.5961155626105856,baseline,metac-Gemini-Exp-1206,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236045,-0.0895246801258291,relative_legacy,metac-Gemini-Exp-1206,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236045,-13.312492125788722,spot_peer,metac-Gemini-Exp-1206,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236047,-3.7157780721482063,spot_baseline,metac-Llama-3.1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236047,-0.1591579723964171,relative_legacy,metac-Llama-3.1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236047,-10.015511916197672,spot_peer,metac-Llama-3.1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236047,-2.395745789719285,baseline,metac-Llama-3.1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,236047,-3.4518507794605595,peer,metac-Llama-3.1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,237476,50.83232959549497,peer,NextWorldLab,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,237476,71.27103485203338,spot_peer,NextWorldLab,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,237476,44.88706262427494,baseline,NextWorldLab,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,237476,0.5927000499997173,relative_legacy,NextWorldLab,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,237476,67.53404748720375,spot_baseline,NextWorldLab,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,239758,0.2099085810894777,relative_legacy,metac-perplexity,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,239758,33.191246570706056,spot_baseline,metac-perplexity,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,239758,32.09048007965017,spot_peer,metac-perplexity,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,239758,20.965509149905408,baseline,metac-perplexity,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,239758,23.324443475867195,peer,metac-perplexity,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,239759,-29.90172878643969,spot_baseline,metac-exa,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,239759,-39.89018867080569,spot_peer,metac-exa,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,239759,-23.942070423081823,peer,metac-exa,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,239759,-0.4409223927319154,relative_legacy,metac-exa,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,239759,-20.170020123440967,baseline,metac-exa,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,240414,41.070818840997504,peer,minefrac1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,240414,36.42399032633986,baseline,minefrac1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,240414,55.26307963920272,spot_peer,minefrac1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,240414,0.4540510550621155,relative_legacy,minefrac1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,240414,53.50264792820728,spot_baseline,minefrac1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,240416,4.130291247465654,peer,metac-o1-preview,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,240416,2.2158033250421454,spot_peer,metac-o1-preview,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,240416,-0.0545435259173419,relative_legacy,metac-o1-preview,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,240416,4.220032477257432,baseline,metac-o1-preview,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,240416,7.005295856414573,spot_baseline,metac-o1-preview,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,246118,0.0,baseline,laylaps,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,246118,-0.8553729657187388,peer,laylaps,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,246118,-0.1325266830947459,relative_legacy,laylaps,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,246118,-5.776304792940414,spot_peer,laylaps,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,246118,0.0,spot_baseline,laylaps,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,247214,14.871535239277838,peer,ajf-bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,247214,34.78009497884109,spot_baseline,ajf-bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,247214,13.836338139469234,baseline,ajf-bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,247214,33.903144172812226,spot_peer,ajf-bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,247214,0.1057187027438258,relative_legacy,ajf-bot,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,250015,-81.99618066665354,spot_peer,metac-deepseek-r1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,250015,-0.6913229155219694,relative_legacy,metac-deepseek-r1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,250015,-42.66601908064911,peer,metac-deepseek-r1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,250015,-36.65354851550817,baseline,metac-deepseek-r1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34445,In which month will Donald Trump and Vladimir Putin meet in person?,2025-02-08 04:04:09.491525+00,250015,-66.80875342929396,spot_baseline,metac-deepseek-r1,True,Not before April 2025,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34959 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,187708,2.3723849919881417,spot_peer,twsummerbot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,187708,0.4036525239340806,peer,twsummerbot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,187708,25.394049907275075,baseline,twsummerbot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,187708,54.59683691052925,spot_baseline,twsummerbot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,187708,0.0040568542294946,relative_legacy,twsummerbot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,189869,5.179208663041308,spot_peer,VeritasAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,189869,-0.0036737750660416,relative_legacy,VeritasAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,189869,3.3462493541655327,peer,VeritasAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,189869,46.01712627873479,baseline,VeritasAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,190710,39.2253114571175,baseline,Bot_Pepa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,190710,-2.2677106621014187,peer,Bot_Pepa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,190710,-0.0856536685821385,relative_legacy,Bot_Pepa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,190710,-1.9854356836805904,spot_peer,Bot_Pepa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,190710,48.54268271702416,spot_baseline,Bot_Pepa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,191026,63.50368919632266,baseline,manticAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,191026,0.2326396295514178,relative_legacy,manticAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,191026,29.72727407740367,spot_peer,manticAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,191026,19.42406295150553,peer,manticAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,191935,0.1413992789874829,relative_legacy,pgodzinai,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,191935,12.541254112275364,peer,pgodzinai,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,191935,22.36724650494316,spot_peer,pgodzinai,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,191935,49.833997912454734,baseline,pgodzinai,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,191935,82.37493603082727,spot_baseline,pgodzinai,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,191975,-44.83584774076894,spot_peer,jkraybill_bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,191975,-5.52897413836442,peer,jkraybill_bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,191975,-1.354966032004203,baseline,jkraybill_bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,191975,-10.987761777237331,spot_baseline,jkraybill_bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,191975,-0.0734105196264246,relative_legacy,jkraybill_bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,192418,73.58147347526302,baseline,InstitutPelFutur,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,192418,24.748970498148093,peer,InstitutPelFutur,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,192418,18.17691966211115,spot_peer,InstitutPelFutur,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,192418,0.183113652777458,relative_legacy,InstitutPelFutur,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,192924,15.076804258105792,spot_peer,acm_bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,192924,14.932518477618194,peer,acm_bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,192924,63.807590561365885,baseline,acm_bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,192924,0.1058877918656193,relative_legacy,acm_bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,192924,72.2466024471091,spot_baseline,acm_bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,204737,19.45186653332371,spot_peer,SynapseSeer,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,204737,0.1532535649086818,relative_legacy,SynapseSeer,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,204737,15.209606097566944,peer,SynapseSeer,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,204737,62.83098092809843,baseline,SynapseSeer,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,204737,78.32470973781165,spot_baseline,SynapseSeer,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,218666,49.33263688255947,baseline,GreeneiBot2,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,218666,64.15460290875237,spot_baseline,GreeneiBot2,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,218666,9.252128875112817,spot_peer,GreeneiBot2,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,218666,0.0398369713476219,relative_legacy,GreeneiBot2,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,218666,6.3461625534343735,peer,GreeneiBot2,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,220077,-1.0472972116419257,relative_legacy,mmBot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,220077,-73.96610443413645,spot_peer,mmBot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,220077,-50.86543456641193,baseline,mmBot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,220077,-75.18867456612394,peer,mmBot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,222631,-8.47044976661961,peer,Grizeu_Bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,222631,-9.68126356118247,spot_peer,Grizeu_Bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,222631,-0.1643003187957775,relative_legacy,Grizeu_Bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,222631,29.449627219129336,baseline,Grizeu_Bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236037,15.244468855836724,peer,metac-o1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236037,0.1756756969002807,relative_legacy,metac-o1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236037,24.1126010993366,spot_peer,metac-o1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236037,57.197934560160526,baseline,metac-o1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236038,-2.427930926235766,peer,metac-gpt-4o,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236038,33.13471398073599,baseline,metac-gpt-4o,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236038,-0.0689996459445158,relative_legacy,metac-gpt-4o,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236038,-1.9854356836805904,spot_peer,metac-gpt-4o,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236040,-0.0011997424323612,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236040,5.179208663041308,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236040,39.84451854365591,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236040,2.472634700415921,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236041,25.61656558391409,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236041,-7.658775329720528,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236041,-0.1412195726499438,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236041,-9.68126356118247,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236043,-0.0689639335849541,relative_legacy,metac-grok-2-1212,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236043,-1.9854356836805904,spot_peer,metac-grok-2-1212,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236043,-2.4350963088577333,peer,metac-grok-2-1212,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236043,32.99897134799666,baseline,metac-grok-2-1212,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236045,37.85116232537298,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236045,9.645621132372998,baseline,metac-Gemini-Exp-1206,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236045,-0.0354027942914807,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236045,-2.7093953926399936,peer,metac-Gemini-Exp-1206,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236045,-9.68126356118247,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236047,-0.0688784185923295,relative_legacy,metac-Llama-3.1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236047,32.82765575241643,baseline,metac-Llama-3.1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236047,-2.430103065905412,peer,metac-Llama-3.1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,236047,-1.9854356836805904,spot_peer,metac-Llama-3.1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,237476,-43.1953717201775,peer,NextWorldLab,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,237476,-32.19280948873623,spot_baseline,NextWorldLab,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,237476,-60.09938289235909,spot_peer,NextWorldLab,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,237476,-0.6333993581820685,relative_legacy,NextWorldLab,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,237476,-22.48521479262913,baseline,NextWorldLab,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,239758,0.1681039438931076,relative_legacy,metac-perplexity,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,239758,14.674983203617442,peer,metac-perplexity,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,239758,55.29069388229992,baseline,metac-perplexity,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,239758,24.1126010993366,spot_peer,metac-perplexity,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,239759,18.17691966211115,spot_peer,metac-exa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,239759,50.0379936113007,baseline,metac-exa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,239759,10.819774128911591,peer,metac-exa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,239759,76.55347463629771,spot_baseline,metac-exa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,239759,0.1146376421853698,relative_legacy,metac-exa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,240414,-1.9854356836805904,spot_peer,minefrac1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,240414,-0.0700147932845769,relative_legacy,minefrac1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,240414,-2.3857042654635383,peer,minefrac1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,240414,34.15658862560298,baseline,minefrac1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,240414,48.54268271702416,spot_baseline,minefrac1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,240416,0.1154186504619302,relative_legacy,metac-o1-preview,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,240416,50.371428950561885,baseline,metac-o1-preview,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,240416,10.899729161381162,peer,metac-o1-preview,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,240416,18.17691966211115,spot_peer,metac-o1-preview,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,246118,12.296512714650344,peer,laylaps,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,246118,76.55347463629771,spot_baseline,laylaps,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,246118,55.45013294297343,baseline,laylaps,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,246118,0.1296459694240172,relative_legacy,laylaps,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,246118,18.17691966211115,spot_peer,laylaps,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,247214,18.33777831499732,baseline,ajf-bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,247214,48.54268271702416,spot_baseline,ajf-bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,247214,-1.9854356836805904,spot_peer,ajf-bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,247214,-0.0154074172153738,relative_legacy,ajf-bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,247214,-1.2466741412671691,peer,ajf-bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,250015,24.612278658286755,baseline,metac-deepseek-r1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,250015,-7.415719049984393,peer,metac-deepseek-r1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,250015,-0.1372779366717832,relative_legacy,metac-deepseek-r1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,250015,-9.68126356118247,spot_peer,metac-deepseek-r1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34446,"Will Beyond Meat file for bankruptcy before April 1, 2025?",2025-02-08 04:04:09.521171+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34960 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,187708,29.8885479025848,spot_peer,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,187708,0.1222932856397184,relative_legacy,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,187708,16.21746132336761,peer,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,187708,40.19139296202401,baseline,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,187708,69.77738195551859,spot_baseline,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,189869,-35.08290900184136,peer,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,189869,-0.5945471183533797,relative_legacy,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,189869,-25.02535232419556,baseline,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,189869,-43.510277825109945,spot_peer,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,190710,-0.9510808173741596,relative_legacy,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,190710,-73.69655941662063,spot_baseline,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,190710,-73.38495457971797,spot_peer,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,190710,-59.299025707537766,baseline,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,190710,-61.1707916614527,peer,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,191026,-60.387243580648125,spot_peer,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,191026,-38.16444812920356,baseline,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,191026,-42.66564071273949,peer,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,191026,-0.7136969144896437,relative_legacy,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,191026,-55.63933485243855,spot_baseline,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,191935,25.61624175360049,peer,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,191935,36.28205390001846,spot_peer,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,191935,78.65963618908069,spot_baseline,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,191935,57.52297489039012,baseline,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,191935,0.2242358219143718,relative_legacy,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,191975,30.271980290863414,spot_peer,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,191975,70.31006996041602,spot_baseline,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,191975,10.867490883001723,baseline,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,191975,4.627470193944184,peer,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,191975,0.0336448082824421,relative_legacy,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,192418,0.1082704350573353,relative_legacy,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,192418,21.768313730290437,spot_peer,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,192418,55.3744929777648,baseline,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,192418,16.748147542744988,peer,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,192924,37.85116232537298,spot_baseline,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,192924,3.4677384438153567,peer,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,192924,33.34511905118862,baseline,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,192924,-0.0692813647520446,relative_legacy,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,192924,6.907841506066677,spot_peer,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,204737,60.79673704160464,baseline,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,204737,34.76602472936029,spot_peer,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,204737,0.2538376280786942,relative_legacy,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,204737,27.31114813957652,peer,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,218666,40.49031221451307,spot_baseline,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,218666,29.41207460348556,baseline,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,218666,5.296650361349515,peer,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,218666,-0.0550215812730979,relative_legacy,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,218666,8.807519245596627,spot_peer,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,220077,26.566779253704173,peer,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,220077,0.2301336654366514,relative_legacy,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,220077,71.36958148433588,spot_baseline,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,220077,31.034623771269093,spot_peer,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,220077,70.12841087481037,baseline,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,222631,-11.807428104827425,baseline,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,222631,-31.278962583870133,spot_peer,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,222631,-25.411804304629843,peer,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,222631,-0.4621522103368275,relative_legacy,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,222631,-15.200309344504996,spot_baseline,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236037,32.4827051299721,baseline,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236037,7.521840175402853e-06,relative_legacy,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236037,14.603669383568548,spot_peer,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236037,48.54268271702416,spot_baseline,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236037,8.754033395486044,peer,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236038,0.0669046018301008,relative_legacy,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236038,13.674110198668696,peer,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236038,39.47954378272779,baseline,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236038,21.768313730290437,spot_peer,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236038,58.496250072115615,spot_baseline,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236040,25.532547253515887,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236040,3.6074453100853447,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236040,-0.0721926990837137,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236040,6.907841506066677,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236041,-98.59592301257469,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236041,-116.09562901983593,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236041,-1.4854242030741396,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236041,-145.36562333017383,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236041,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236043,4.6410542097259874e-06,relative_legacy,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236043,32.70922217279219,baseline,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236043,8.816326615857056,peer,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236043,14.603669383568548,spot_peer,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236045,37.85116232537298,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236045,-0.0326734639810243,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236045,1.6732542026732993,peer,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236045,11.51102925762342,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236045,6.907841506066677,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236047,14.603669383568548,spot_peer,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236047,-1.5028676880957106e-06,relative_legacy,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236047,32.3503244319048,baseline,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,236047,8.703069752065463,peer,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,237476,6.907841506066677,spot_peer,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,237476,-0.0741430541466194,relative_legacy,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,237476,3.890104093465479,peer,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,237476,27.4243602689692,baseline,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,239758,21.46722763278506,peer,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,239758,0.1813501678104271,relative_legacy,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,239758,34.76602472936029,spot_peer,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,239758,49.570914914607066,baseline,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,239759,0.2393782081924655,relative_legacy,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,239759,40.70170616658573,spot_peer,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,239759,55.99116762305092,baseline,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,239759,84.79969065549501,spot_baseline,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,239759,25.87754693143268,peer,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,240414,48.54268271702416,spot_baseline,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,240414,14.603669383568548,spot_peer,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,240414,0.0009142892694303,relative_legacy,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,240414,9.124620989402072,peer,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,240414,33.73959283536808,baseline,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,240416,21.584193675425063,peer,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,240416,0.1822599108167306,relative_legacy,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,240416,34.76602472936029,spot_peer,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,240416,49.82004315057685,baseline,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,246118,28.47039092534592,spot_peer,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,246118,19.593915038436403,peer,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,246118,0.1425330869941221,relative_legacy,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,246118,49.04588916262181,baseline,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,246118,67.80719051126377,spot_baseline,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,247214,-100.0,spot_baseline,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,247214,-13.98904405699836,baseline,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,247214,-12.914454236762726,peer,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,247214,-0.2077970132873179,relative_legacy,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,247214,-92.31834701601326,spot_peer,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,250015,3.2240380821152588,peer,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,250015,-0.0679993653823076,relative_legacy,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,250015,6.907841506066677,spot_peer,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34447,"Will Apple stock continuously remain above $200 through March 31, 2025?",2025-02-08 04:04:09.881926+00,250015,23.82791486755761,baseline,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34961 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,187708,3.885401298502341,peer,twsummerbot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,187708,0.0320380759026855,relative_legacy,twsummerbot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,187708,90.61209529971,spot_baseline,twsummerbot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,187708,6.998670289513592,spot_peer,twsummerbot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,187708,49.95338938963782,baseline,twsummerbot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,189869,-9.440771385817886,spot_peer,VeritasAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,189869,-0.1305118561485621,relative_legacy,VeritasAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,189869,-7.566071758413853,peer,VeritasAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,189869,52.93871674932908,baseline,VeritasAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,190710,-0.0630983318543638,relative_legacy,Bot_Pepa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,190710,-2.729273043674466,peer,Bot_Pepa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,190710,61.30081938655101,baseline,Bot_Pepa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,190710,76.55347463629771,spot_baseline,Bot_Pepa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,190710,-3.1358107169086624,spot_peer,Bot_Pepa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,191026,84.79969065549501,spot_baseline,manticAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,191026,2.808664322445993,spot_peer,manticAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,191026,58.17888835707344,baseline,manticAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,191026,-0.0002199084000942,relative_legacy,manticAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,191026,2.0883729220107017,peer,manticAI,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,191935,95.60566524124027,spot_baseline,pgodzinai,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,191935,10.598400372450232,spot_peer,pgodzinai,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,191935,0.0726012490920565,relative_legacy,pgodzinai,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,191935,7.26242759703992,peer,pgodzinai,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,191935,64.43426210555744,baseline,pgodzinai,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,192418,8.431655334554675,spot_peer,InstitutPelFutur,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,192418,0.0661246459664286,relative_legacy,InstitutPelFutur,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,192418,6.877856267283997,peer,InstitutPelFutur,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,192418,86.87254431843823,baseline,InstitutPelFutur,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,192924,77.86400659364924,baseline,acm_bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,192924,88.75252707415875,spot_baseline,acm_bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,192924,5.658157638009897,spot_peer,acm_bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,192924,0.0323706628643963,relative_legacy,acm_bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,192924,4.3113078883687725,peer,acm_bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,204737,-0.3029929843436066,peer,SynapseSeer,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,204737,66.31566315559986,baseline,SynapseSeer,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,204737,80.90027749390863,spot_baseline,SynapseSeer,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,204737,-0.0023176058976202,spot_peer,SynapseSeer,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,204737,-0.0297799695527703,relative_legacy,SynapseSeer,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,218666,0.0302417709986845,relative_legacy,GreeneiBot2,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,218666,5.994909146482532,spot_peer,GreeneiBot2,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,218666,89.2196710465485,spot_baseline,GreeneiBot2,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,218666,61.35860000625234,baseline,GreeneiBot2,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,218666,4.298623983091714,peer,GreeneiBot2,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,220077,90.5489521978672,baseline,mmBot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,220077,6.877856267283997,peer,mmBot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,220077,0.0661246459664286,relative_legacy,mmBot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,220077,8.431655334554675,spot_peer,mmBot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,222631,2.808664322445993,spot_peer,Grizeu_Bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,222631,53.91181915978704,baseline,Grizeu_Bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,222631,1.847489035289771,peer,Grizeu_Bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,222631,-5.031755541131256e-06,relative_legacy,Grizeu_Bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,222631,84.79969065549501,spot_baseline,Grizeu_Bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236037,8.431655334554675,spot_peer,metac-o1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236037,61.68384769427781,baseline,metac-o1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236037,5.714896536937168,peer,metac-o1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236037,0.0517306566501029,relative_legacy,metac-o1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236038,2.0052319445071327,peer,metac-gpt-4o,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236038,84.79969065549501,spot_baseline,metac-gpt-4o,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236038,-0.0002488417674133,relative_legacy,metac-gpt-4o,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236038,2.808664322445993,spot_peer,metac-gpt-4o,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236038,57.20652201625311,baseline,metac-gpt-4o,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236040,51.4401090914219,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236040,-2.009419664293644,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236040,-0.0556369984755718,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236040,-3.1358107169086624,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236041,-2.004279980152742,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236041,51.03883556988468,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236041,-3.1358107169086624,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236041,-0.0552261714489613,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236043,0.0521149027645712,relative_legacy,metac-grok-2-1212,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236043,5.766452222846142,peer,metac-grok-2-1212,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236043,62.136656522062665,baseline,metac-grok-2-1212,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236043,8.431655334554675,spot_peer,metac-grok-2-1212,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236045,0.9328470495931692,peer,metac-Gemini-Exp-1206,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236045,2.808664322445993,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236045,-1.5000163961538476e-05,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236045,28.18454800235533,baseline,metac-Gemini-Exp-1206,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236047,-6.150482471757349,peer,metac-Llama-3.1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236047,44.7273369146266,baseline,metac-Llama-3.1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236047,-9.440771385817886,spot_peer,metac-Llama-3.1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,236047,-0.1120876342233953,relative_legacy,metac-Llama-3.1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,237476,5.094470621198632,spot_peer,NextWorldLab,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,237476,66.26929395466105,baseline,NextWorldLab,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,237476,3.865070159763078,peer,NextWorldLab,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,237476,0.0237789065972615,relative_legacy,NextWorldLab,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,237476,87.97057662822883,spot_baseline,NextWorldLab,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,239758,-2.0523943350806436e-05,relative_legacy,metac-perplexity,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,239758,1.8775488354564536,peer,metac-perplexity,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,239758,54.65495651244255,baseline,metac-perplexity,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,239758,2.808664322445993,spot_peer,metac-perplexity,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,239759,5.69489044160234,peer,metac-exa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,239759,8.431655334554675,spot_peer,metac-exa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,239759,0.0515752149057084,relative_legacy,metac-exa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,239759,61.494074851524935,baseline,metac-exa,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,240414,52.844421233501954,baseline,minefrac1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,240414,-2.008686150610324,peer,minefrac1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,240414,-0.0569545393564056,relative_legacy,minefrac1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,240414,76.55347463629771,spot_baseline,minefrac1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,240414,-3.1358107169086624,spot_peer,minefrac1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,240416,8.431655334554675,spot_peer,metac-o1-preview,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,240416,0.0502589559053428,relative_legacy,metac-o1-preview,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,240416,5.5077949724637,peer,metac-o1-preview,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,240416,59.70819099118529,baseline,metac-o1-preview,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,246118,92.5999418556223,spot_baseline,laylaps,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,246118,8.431655334554675,spot_peer,laylaps,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,246118,0.0554722661015114,relative_legacy,laylaps,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,246118,6.2173839881663024,peer,laylaps,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,246118,67.23959645009359,baseline,laylaps,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,247214,-25.153876699596427,spot_baseline,ajf-bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,247214,-76.45390109043126,spot_peer,ajf-bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,247214,-0.7568945767851517,relative_legacy,ajf-bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,247214,-52.60386472588242,peer,ajf-bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,247214,-17.31282093117081,baseline,ajf-bot,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,250015,81.55754288625727,spot_baseline,metac-deepseek-r1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,250015,-0.020026996952634,relative_legacy,metac-deepseek-r1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,250015,0.343619368921743,peer,metac-deepseek-r1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,250015,50.375593740881214,baseline,metac-deepseek-r1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34448,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:04:09.914919+00,250015,0.4714873138319086,spot_peer,metac-deepseek-r1,True,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.8,2025-02-12 20:00:00+00,34962 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,187708,-115.493374071127,baseline,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,187708,-0.2177080851391101,relative_legacy,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,187708,-208.31412353002452,spot_baseline,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,187708,-41.41084353425602,spot_peer,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,187708,-23.93958324299716,peer,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,189869,42.54773569399222,peer,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,189869,-57.47794611649117,baseline,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,189869,-73.69655941662063,spot_baseline,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,189869,55.631332885559736,spot_peer,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,189869,0.707158262993794,relative_legacy,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,190710,-0.5298076140113984,relative_legacy,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,190710,-48.917610114043896,peer,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,190710,-184.41989117098143,baseline,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,190710,-58.62434513592367,spot_peer,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,190710,-232.19280948873623,spot_baseline,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,191026,95.17987835506096,peer,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,191026,1.436889862317126,relative_legacy,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,191026,139.19483760935606,spot_peer,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,191026,42.22330006830478,spot_baseline,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,191026,28.976682728701157,baseline,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,191935,44.87992995135841,baseline,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,191935,94.15657248364712,peer,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,191935,1.4154893105284798,relative_legacy,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,191935,164.8561581414847,spot_peer,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,191935,77.82085763980878,spot_baseline,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,192418,-130.71165191415795,spot_peer,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,192418,-332.1928094887362,spot_baseline,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,192418,-139.3806553303899,peer,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,192418,-1.6372813405559552,relative_legacy,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,192418,-309.9740912028238,baseline,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,192924,-2.456712184654793,peer,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,192924,0.1295394134401558,relative_legacy,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,192924,-132.3956533334248,baseline,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,192924,-151.45731728297585,spot_baseline,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,192924,-0.4243031906397075,spot_peer,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,204737,-226.53445665209944,spot_baseline,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,204737,-54.54539096798241,spot_peer,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,204737,-0.4848659632928741,relative_legacy,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,204737,-47.12636211247887,peer,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,204737,-185.38797475758176,baseline,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,218666,-0.0934979869351564,relative_legacy,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,218666,-183.65012677171205,spot_baseline,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,218666,-15.970093549844812,peer,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,218666,-119.25023831369128,baseline,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,218666,-23.63123252731751,spot_peer,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,220077,165.91246644971204,peer,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,220077,2.1767915212012974,relative_legacy,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,220077,74.40358155695492,baseline,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,220077,163.9425358676885,spot_peer,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,222631,-232.19280948873623,spot_baseline,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,222631,-58.62434513592367,spot_peer,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,222631,-0.4002893752169271,relative_legacy,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,222631,-37.882022718412045,peer,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,222631,-147.19908661348737,baseline,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236037,-58.62434513592367,spot_peer,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236037,-0.4149851402174774,relative_legacy,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236037,-232.19280948873623,spot_baseline,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236037,-153.22743363094722,baseline,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236037,-39.38654634914128,peer,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236038,13.462961642310647,spot_peer,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236038,0.2482544722559378,relative_legacy,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236038,8.432621675394676,peer,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236038,-88.82935423295345,baseline,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236038,-132.19280948873623,spot_baseline,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236040,-16.45597389267457,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236040,-0.0293984900527669,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236040,-11.654152036141246,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236040,-116.17375048623876,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236040,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236041,-115.07662132326584,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236041,-0.0288661078272538,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236041,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236041,-16.45597389267457,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236041,-11.519693171028932,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236043,0.6385316106596349,relative_legacy,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236043,36.67011547649012,peer,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236043,-49.24999600306501,baseline,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236043,-73.69655941662063,spot_baseline,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236043,55.631332885559736,spot_peer,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236045,-332.1928094887362,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236045,-0.4654218670527018,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236045,-97.569547695495,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236045,-38.38587701869256,peer,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236045,-130.71165191415795,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236047,-73.69655941662063,spot_baseline,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236047,-48.33119137653832,baseline,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236047,35.99857716481508,peer,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236047,0.627047221406527,relative_legacy,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,236047,55.631332885559736,spot_peer,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,237476,105.93197012141444,peer,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,237476,29.410611734614893,baseline,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,237476,136.04308126184185,spot_peer,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,237476,1.5694283595924017,relative_legacy,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,239758,-212.5471555289597,baseline,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,239758,-1.0429737631579783,relative_legacy,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,239758,-130.71165191415795,spot_peer,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,239758,-332.1928094887362,spot_baseline,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,239758,-84.41964746259899,peer,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,239759,-232.19280948873623,spot_baseline,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,239759,-154.83409406073358,baseline,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,239759,-39.81595096954394,peer,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,239759,-0.418971566677393,relative_legacy,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,239759,-58.62434513592367,spot_peer,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,240414,-73.69655941662063,spot_baseline,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,240414,-26.22800032506257,baseline,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,240414,55.631332885559736,spot_peer,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,240414,0.3301101656877758,relative_legacy,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,240414,19.47841905808652,peer,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,240416,-83.46800413958294,baseline,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,240416,7.869922569745572,peer,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,240416,0.2314652911007301,relative_legacy,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,240416,-132.19280948873623,spot_baseline,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,240416,13.462961642310647,spot_peer,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,246118,-1.175023046478021,relative_legacy,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,246118,-241.3050144189638,baseline,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,246118,-96.68106627087091,peer,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,246118,-130.71165191415795,spot_peer,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,246118,-332.1928094887362,spot_baseline,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,247214,-260.82322800440033,spot_baseline,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,247214,-79.26324276320284,spot_peer,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,247214,-0.6131337238658541,relative_legacy,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,247214,-53.87070310294341,peer,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,247214,-174.6639202873464,baseline,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,250015,79.22839658542325,peer,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,250015,136.04308126184185,spot_peer,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,250015,1.2110246072023425,relative_legacy,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34449,"Will the state of Delaware's Division of Corporations list OpenAI as an ""Exempt"" entity on March 31, 2025?",2025-02-08 04:04:09.945171+00,250015,22.284697745296484,baseline,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34963 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,185699,-0.6559282144851204,peer,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,185699,64.15460290875237,spot_baseline,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,185699,-0.012617055899628,relative_legacy,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,185699,-16.35059662374733,spot_peer,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,185699,2.573656185476584,baseline,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,187708,60.27558317968713,baseline,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,187708,91.9912088677308,spot_baseline,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,187708,2.4196891649382213,peer,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,187708,-0.0185198127814815,relative_legacy,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,187708,3.658892940366527,spot_peer,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,189869,-0.0698060693375044,relative_legacy,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,189869,-1.5105091350849111,spot_peer,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,189869,0.1586733537520556,peer,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,189869,66.76254582441635,baseline,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,190710,37.97283797266438,baseline,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,190710,1.5726267860039722,peer,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,190710,-0.0085239392563047,relative_legacy,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,190710,4.096461959610344,spot_peer,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,190710,92.5999418556223,spot_baseline,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,191026,63.56575209271836,baseline,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,191026,-0.0143306533373391,relative_legacy,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,191026,4.096461959610344,spot_peer,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,191026,92.5999418556223,spot_baseline,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,191026,3.0340515243730515,peer,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,191935,61.13701731303903,baseline,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,191935,6.523967682367454,spot_peer,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,191935,0.0069682113996368,relative_legacy,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,191935,4.134424351938087,peer,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,191935,95.97701552114673,spot_baseline,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,191975,0.8180637961894601,peer,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,191975,11.30515662987257,baseline,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,191975,97.23250415571516,spot_baseline,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,191975,7.426437141764951,spot_peer,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,191975,0.0018915144579899,relative_legacy,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,192418,8.373509511289525,spot_peer,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,192418,98.5500430304885,spot_baseline,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,192418,91.40392660434088,baseline,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,192418,10.740464717848816,peer,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,192418,0.0455964993200618,relative_legacy,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,192924,-4.3943347587597055,spot_baseline,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,192924,-65.6248959011263,spot_peer,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,192924,-3.82706680608842,baseline,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,192924,-57.38442064343828,peer,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,192924,-0.8509556132046032,relative_legacy,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,204737,-0.0034466457412383,relative_legacy,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,204737,76.32462453372288,baseline,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,204737,92.5999418556223,spot_baseline,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,204737,4.096461959610344,spot_peer,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,204737,5.426577560835827,peer,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,218666,58.352755225669455,baseline,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,218666,6.257033934719881,spot_peer,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,218666,95.60566524124027,spot_baseline,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,218666,0.0038017539164486,relative_legacy,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,218666,3.765029252918044,peer,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,220077,10.740464717848816,peer,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,220077,8.373509511289525,spot_peer,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,220077,98.5500430304885,spot_baseline,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,220077,0.0455964993200618,relative_legacy,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,220077,95.19358947613726,baseline,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,222631,2.5547954391514134,peer,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,222631,58.568198259987575,baseline,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,222631,92.5999418556223,spot_baseline,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,222631,4.096461959610344,spot_peer,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,222631,-0.0145436276626107,relative_legacy,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236037,0.0048549265332196,relative_legacy,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236037,95.60566524124027,spot_baseline,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236037,61.70562405546991,baseline,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236037,4.0362708080941685,peer,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236037,6.257033934719881,spot_peer,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236038,-1.5105091350849111,spot_peer,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236038,84.79969065549501,spot_baseline,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236038,-0.9557665851974672,peer,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236038,56.30694827713931,baseline,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236038,-0.066124125497044,relative_legacy,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236040,-0.0145258504484644,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236040,4.096461959610344,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236040,2.762836996793354,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236040,61.24832836655463,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236041,0.0147492060613035,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236041,4.807972851339547,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236041,63.41467157025545,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236041,97.08536543404836,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236041,7.320670989095055,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236043,2.743984787960694,peer,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236043,4.096461959610344,spot_peer,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236043,-0.0145311994892451,relative_legacy,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236043,61.06376579100616,baseline,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236045,1.976629265843321,peer,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236045,7.320670989095055,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236045,97.08536543404836,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236045,27.532562678649384,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236045,0.0041972564998913,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236047,59.48190549548525,baseline,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236047,2.6146382230154592,peer,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236047,92.5999418556223,spot_baseline,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236047,4.096461959610344,spot_peer,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,236047,-0.0145436276626107,relative_legacy,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,237476,56.55971758542251,spot_baseline,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,237476,45.305856138324735,baseline,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,237476,-16.357982382289322,peer,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,237476,-0.2921385426752272,relative_legacy,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,237476,-21.80994676297628,spot_peer,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,239758,95.60566524124027,spot_baseline,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,239758,6.257033934719881,spot_peer,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,239758,0.0044136709102558,relative_legacy,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,239758,3.913496419339984,peer,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,239758,60.29375072104773,baseline,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,239759,65.17587431872661,baseline,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,239759,95.60566524124027,spot_baseline,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,239759,6.257033934719881,spot_peer,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,239759,0.0061601716447838,relative_legacy,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,239759,4.460027628089277,peer,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,240414,76.55347463629771,spot_baseline,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,240414,-7.43804834811662,spot_peer,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,240414,-0.1231538226925152,relative_legacy,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,240414,-4.937102469916054,peer,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,240414,51.91667188301926,baseline,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,240416,7.320670989095055,spot_peer,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,240416,97.08536543404836,spot_baseline,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,240416,0.0125508686389975,relative_legacy,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,240416,4.263299277088936,peer,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,240416,57.39830625456968,baseline,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,246118,6.0066063711012525,peer,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,246118,70.69920115425928,baseline,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,246118,97.08536543404836,spot_baseline,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,246118,7.320670989095055,spot_peer,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,246118,0.0196602872654171,relative_legacy,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,247214,-7.194326253084396,spot_peer,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,247214,54.09175449190112,baseline,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,247214,-4.752183628317533,peer,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,247214,-0.1235005640188736,relative_legacy,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,247214,76.89253355637511,spot_baseline,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,250015,2.092760629180062,peer,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,250015,92.5999418556223,spot_baseline,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,250015,4.096461959610344,spot_peer,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,250015,49.380906959798885,baseline,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34450,"Will the United Nations have exactly 193 member states on March 31, 2025?",2025-02-08 04:04:09.976124+00,250015,-0.0122356903247876,relative_legacy,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,2025-02-12 20:00:00+00,34964 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,185699,-0.5029204472986102,relative_legacy,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,185699,-145.73601180096009,baseline,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,185699,-32.79320191397135,peer,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,185699,-63.53836311886712,spot_peer,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,185699,-283.65012677171205,spot_baseline,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,189869,34.48953218184309,peer,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,189869,0.3610769241536532,relative_legacy,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,189869,45.64313782899534,spot_peer,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,189869,-104.10266202418572,baseline,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,189869,-132.19280948873623,spot_baseline,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,190710,18.817930856962672,peer,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,190710,-55.044739486686574,baseline,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,190710,-132.19280948873623,spot_baseline,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,190710,45.64313782899534,spot_peer,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,190710,0.1778584182915014,relative_legacy,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,191026,-208.92673380970876,spot_baseline,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,191026,-143.45711833620695,baseline,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,191026,-9.672281599242265,spot_peer,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,191026,-0.1808625955589592,relative_legacy,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,191026,-7.853174393267078,peer,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,191935,-201.65887174171613,baseline,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,191935,-37.79478269295574,peer,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,191935,-0.6242452736745724,relative_legacy,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,191935,-45.405610855810245,spot_peer,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,191935,-258.49625007211563,spot_baseline,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,191975,0.0,relative_legacy,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,191975,-13.42720208202235,spot_peer,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,191975,-214.1355849245541,spot_baseline,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,191975,-2.6676996954906325,baseline,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,191975,-0.1672759944038375,peer,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,192418,-1.2815379124800266,relative_legacy,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,192418,-87.79062117447928,peer,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,192418,-305.3262602771393,baseline,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,192418,-332.1928094887362,spot_baseline,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,192418,-98.53147572747328,spot_peer,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,192924,-131.26650819646127,baseline,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,192924,-151.45731728297585,spot_baseline,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,192924,31.755872996044975,spot_peer,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,192924,0.2848781177665095,relative_legacy,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,192924,30.04254577245727,peer,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,204737,34.68564420058139,spot_peer,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,204737,0.2413735399473505,relative_legacy,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,204737,26.257139065544507,peer,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,204737,-118.7254934810164,baseline,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,204737,-147.39311883324126,spot_baseline,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,218666,-73.6332865431075,peer,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,218666,-212.19424734066752,baseline,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,218666,-1.0773825647308852,relative_legacy,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,218666,-379.5859283219775,spot_baseline,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,218666,-132.695898692565,spot_peer,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,220077,-98.53147572747328,spot_peer,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,220077,-332.1928094887362,spot_baseline,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,220077,-319.1317840968371,baseline,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,220077,-87.79062117447928,peer,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,220077,-1.2815379124800266,relative_legacy,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,222631,68.85006716567315,spot_peer,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,222631,-63.9465630584293,baseline,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,222631,-100.0,spot_baseline,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,222631,43.35924211039409,peer,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,222631,0.5332718800195391,relative_legacy,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236037,-0.335255961809581,relative_legacy,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236037,-157.71399493579557,baseline,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236037,-19.127803803899248,peer,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236037,-232.19280948873623,spot_baseline,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236037,-26.444168949238964,spot_peer,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236038,45.64313782899534,spot_peer,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236038,30.21524612327153,peer,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236038,-90.5586936834978,baseline,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236038,-132.19280948873623,spot_baseline,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236038,0.3457525787960196,relative_legacy,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236040,-118.81362914179576,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236040,9.62801561764616,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236040,0.0615889349748704,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236040,15.724202294010112,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236040,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236041,-118.24428947870504,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236041,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236041,15.724202294010112,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236041,0.0620437142211835,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236041,9.618022288520486,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236043,-232.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236043,-158.60737766210562,baseline,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236043,-19.271677573574458,peer,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236043,-0.3378350729559902,relative_legacy,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236043,-26.444168949238964,spot_peer,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236045,-117.1924729662056,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236045,9.577477902182594,peer,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236045,0.0619839354439848,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236045,15.724202294010112,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236045,-173.6965594166206,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236047,-90.19156509959583,baseline,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236047,-132.19280948873623,spot_baseline,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236047,0.3448743183774823,relative_legacy,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236047,30.11077359727618,peer,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,236047,45.64313782899534,spot_peer,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,237476,36.246901987909645,peer,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,237476,0.3643652324623631,relative_legacy,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,237476,-108.78828043814056,baseline,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,237476,-132.19280948873623,spot_baseline,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,237476,45.64313782899534,spot_peer,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,239758,-65.99148292524411,peer,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,239758,-218.8364585961766,baseline,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,239758,-0.98204072702669,relative_legacy,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,239758,-98.53147572747328,spot_peer,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,239758,-332.1928094887362,spot_baseline,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,239759,-151.22663862737775,baseline,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,239759,-0.3189231192788122,relative_legacy,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,239759,-26.444168949238964,spot_peer,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,239759,-232.19280948873623,spot_baseline,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,239759,-18.114332987711528,peer,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,240414,68.85006716567315,spot_peer,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,240414,-70.5744513074557,baseline,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,240414,47.47531289716603,peer,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,240414,-100.0,spot_baseline,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,240414,0.5761251698594226,relative_legacy,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,246118,-20.823945389773108,peer,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,246118,-232.19280948873623,spot_baseline,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,246118,-168.69627797794843,baseline,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,246118,-0.3736038929923515,relative_legacy,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,246118,-26.444168949238964,spot_peer,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,247214,115.79180513566608,peer,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,247214,0.0,baseline,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,247214,0.0,spot_baseline,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,247214,140.93737394390746,spot_peer,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,247214,1.447901505928355,relative_legacy,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,250015,-132.19280948873623,spot_baseline,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,250015,-88.08017213618905,baseline,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,250015,29.522261030026144,peer,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,250015,0.3384698867653944,relative_legacy,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34451,"Will Warren Buffett be ranked in the top 5 of the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.006317+00,250015,45.64313782899534,spot_peer,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34965 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,185699,-35.38516410742544,spot_peer,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,185699,-5.919979556417506,baseline,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,185699,-1.6737751449701004,peer,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,185699,-125.15387669959644,spot_baseline,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,185699,-0.0243401382663113,relative_legacy,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,187708,-0.0380811739187803,relative_legacy,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,187708,-79.08586021614083,spot_baseline,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,187708,-2.2705848220218328,spot_peer,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,187708,-1.2428954933916248,peer,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,187708,-43.802765098563874,baseline,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,189869,17.589345023862474,spot_peer,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,189869,10.267783908441272,peer,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,189869,-29.77386610603422,baseline,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,189869,0.1204473093419944,relative_legacy,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,190710,-9.731254827330738e-06,relative_legacy,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,190710,1.6033485973319914,spot_peer,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,190710,-29.73062612014791,baseline,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,190710,0.5570446234667973,peer,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,190710,-73.69655941662063,spot_baseline,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,191026,-145.6189386272231,baseline,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,191026,-67.15837944623142,peer,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,191026,-0.9520849103685184,relative_legacy,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,191026,-212.0294233717712,spot_baseline,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,191026,-97.83298361082588,spot_peer,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,191935,13.100939164172969,peer,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,191935,-51.45731728297583,spot_baseline,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,191935,-40.13650230909719,baseline,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,191935,0.1507025844024216,relative_legacy,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,191935,17.589345023862474,spot_peer,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,191975,-2.3313181655273585,baseline,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,191975,-23.786383009888816,spot_baseline,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,191975,37.479746582966,spot_peer,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,191975,0.0489172737415837,relative_legacy,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,191975,3.60947531615432,peer,jkraybill_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,192418,-158.56860647245853,baseline,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,192418,-69.80048093137883,peer,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,192418,-0.9267870061152512,relative_legacy,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,192418,-70.27858123851419,spot_peer,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,192924,-0.1722290664112977,relative_legacy,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,192924,-7.420053460851831,spot_peer,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,192924,-86.24964762500649,spot_baseline,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,192924,-8.837946830795008,peer,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,192924,-74.42270410555298,baseline,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,204737,36.01820823513341,baseline,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,204737,43.616183931445,spot_baseline,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,204737,85.93001245929482,spot_peer,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,204737,0.9002018851320743,relative_legacy,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,204737,70.94453022034423,peer,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,218666,-34.03076301705704,baseline,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,218666,0.0358692958136547,relative_legacy,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,218666,12.73682457130968,spot_peer,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,218666,4.0051804736470284,peer,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,218666,-58.20799921880349,spot_baseline,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,220077,-173.6965594166206,spot_baseline,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,220077,-0.9283613298141888,relative_legacy,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,220077,-70.27858123851419,spot_peer,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,220077,-165.84452668719035,baseline,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,220077,-69.95534826122481,peer,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,222631,48.815844865538246,peer,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,222631,81.78600367339676,spot_peer,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,222631,22.45425500229068,baseline,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,222631,0.6534971415275134,relative_legacy,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236037,17.589345023862474,spot_peer,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236037,11.939099404250593,peer,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236037,-33.67651579273715,baseline,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236037,-51.45731728297583,spot_baseline,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236037,0.1363622486293466,relative_legacy,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236038,0.2721514048254713,relative_legacy,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236038,21.694418803241653,peer,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236038,-21.546498812993068,baseline,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236038,-32.19280948873623,spot_baseline,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236038,31.437044999738905,spot_peer,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236040,-66.66843100819361,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236040,-100.0,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236040,-17.30407210722627,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236040,-0.1813359491433274,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236040,-11.13742544327926,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236041,24.89080576824317,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236041,81.78600367339676,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236041,0.7256238170385652,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236041,54.52584700661933,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236043,-26.588439857997315,peer,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236043,-132.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236043,-40.44488483610727,spot_peer,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236043,-0.3951306342023375,relative_legacy,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236043,-87.81231214469199,baseline,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236045,-23.91103105343062,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236045,-2.569259183771725,peer,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236045,-88.8968687611256,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236045,-9.322927100516662,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236045,-0.0409466431971616,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236047,1.6033485973319914,spot_peer,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236047,1.3922210571085885,peer,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236047,-73.69655941662063,spot_baseline,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236047,-47.905202671815125,baseline,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,236047,-0.0081930572820811,relative_legacy,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,237476,61.93194465760014,peer,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,237476,22.25531704687516,baseline,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,237476,0.7800815846391711,relative_legacy,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,237476,73.48527843317815,spot_peer,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,237476,26.303440583379377,spot_baseline,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,239758,-73.69655941662063,spot_baseline,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,239758,-46.9770399241433,baseline,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,239758,1.3155879604978749,peer,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,239758,-0.0083489598381221,relative_legacy,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,239758,1.6033485973319914,spot_peer,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,239759,-46.96723098482836,peer,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,239759,-173.6965594166206,spot_baseline,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,239759,-116.53792249170094,baseline,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,239759,-70.27858123851419,spot_peer,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,239759,-0.6749537914601641,relative_legacy,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,240414,-73.69655941662063,spot_baseline,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,240414,1.3487253763623883,peer,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,240414,-47.338606182735845,baseline,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,240414,1.6033485973319914,spot_peer,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,240414,-0.0082318081381313,relative_legacy,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,240416,-70.27858123851419,spot_peer,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,240416,-43.45412706470204,peer,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,240416,-0.6268132467755682,relative_legacy,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,240416,-107.4474389292104,baseline,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,240416,-173.6965594166206,spot_baseline,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,246118,-1.1578022266526964,relative_legacy,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,246118,-168.10500505485788,baseline,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,246118,-232.19280948873623,spot_baseline,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,246118,-112.32681467195344,spot_peer,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,246118,-82.00624247608323,peer,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,247214,122.0101207929263,spot_peer,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,247214,1.5159537563575245,relative_legacy,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,247214,116.56911693391434,peer,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,247214,85.71782749661163,baseline,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,247214,93.80975610740931,spot_baseline,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,250015,0.1096814538196307,relative_legacy,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,250015,9.373791347293883,peer,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,250015,-27.83240334069253,baseline,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,250015,-51.45731728297583,spot_baseline,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34452,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:04:10.320977+00,250015,17.589345023862474,spot_peer,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34966 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,185699,20.18137889094028,baseline,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,185699,35.61438102252753,spot_baseline,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,185699,-20.238590683979368,spot_peer,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,185699,-0.1296632584265657,relative_legacy,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,185699,-11.399420053490012,peer,MWG,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,187708,-0.0431882282044865,relative_legacy,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,187708,25.339995092804354,baseline,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,187708,-4.964384709889003,peer,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,187708,-9.899409077605933,spot_peer,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,187708,49.978212014731184,spot_baseline,twsummerbot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,189869,10.726421211314891,baseline,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,189869,-35.976464720265625,spot_peer,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,189869,13.750352374993504,spot_baseline,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,189869,-28.479039381440224,peer,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,189869,-0.3751632124820883,relative_legacy,VeritasAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,190710,24.191027439126483,baseline,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,190710,-1.5256562726308327,peer,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,190710,0.0,relative_legacy,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,190710,-3.768068319482292,spot_peer,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,190710,58.496250072115615,spot_baseline,Bot_Pepa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,191026,49.5695162624069,spot_baseline,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,191026,34.05306493462511,baseline,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,191026,-6.987178231742682,peer,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,191026,-0.0720606064802417,relative_legacy,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,191026,-10.193591013283667,spot_peer,manticAI,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,191935,69.01306988815828,baseline,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,191935,14.09490369912552,peer,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,191935,88.49234755533075,spot_baseline,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,191935,0.2078565971135163,relative_legacy,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,191935,17.823323247974628,spot_peer,pgodzinai,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,192418,18.57042110227745,spot_peer,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,192418,81.00986614076183,baseline,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,192418,17.088294848788347,peer,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,192418,0.2332245000065873,relative_legacy,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,192418,89.53026213333067,spot_baseline,InstitutPelFutur,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,192924,73.98481026993274,spot_baseline,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,192924,7.380700890723419,spot_peer,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,192924,63.57355397516268,baseline,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,192924,0.0947157762130179,relative_legacy,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,192924,6.258184863852755,peer,acm_bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,204737,75.18921384043092,spot_baseline,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,204737,8.247638635222355,spot_peer,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,204737,0.1047244588855616,relative_legacy,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,204737,6.818484184162882,peer,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,204737,62.48279232646551,baseline,SynapseSeer,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,218666,84.15706373955169,spot_baseline,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,218666,0.1281554988465032,relative_legacy,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,218666,7.383878997935076,peer,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,218666,42.37975825354204,baseline,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,218666,14.70275696514657,spot_peer,GreeneiBot2,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,220077,0.2231606728552466,relative_legacy,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,220077,87.97057662822883,spot_baseline,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,220077,83.50097157617428,baseline,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,220077,16.64261106331906,peer,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,220077,17.447749045301197,spot_peer,mmBot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,222631,-3.768068319482292,spot_peer,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,222631,37.39825972568249,baseline,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,222631,-0.0067656754605367,relative_legacy,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,222631,-2.3619395679709894,peer,Grizeu_Bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236037,2.93400887557318,spot_peer,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236037,45.704519587529525,baseline,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236037,2.016019088490035,peer,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236037,0.0515377781587034,relative_legacy,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236037,67.80719051126377,spot_baseline,metac-o1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236038,-10.932712666204178,spot_peer,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236038,-7.407426779908871,peer,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236038,32.93330934206822,baseline,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236038,-0.0790150661800004,relative_legacy,metac-gpt-4o,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236040,51.920678501572056,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236040,9.229642679587563,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236040,6.314697026959254,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236040,0.1109625760399247,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236041,9.229642679587563,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236041,51.49093266270241,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236041,0.1103612809306674,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236041,6.2578904972237215,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236043,0.1105017360743405,relative_legacy,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236043,76.55347463629771,spot_baseline,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236043,51.79165615288875,baseline,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236043,6.295962947783544,peer,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236043,9.229642679587563,spot_peer,metac-grok-2-1212,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236045,24.53955891645907,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236045,2.9565083124794995,peer,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236045,9.229642679587563,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236045,0.0578552838975071,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236047,45.4240975279751,baseline,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236047,2.0023476695447604,peer,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236047,2.93400887557318,spot_peer,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236047,0.0517557460709223,relative_legacy,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,237476,-0.1239029461066815,relative_legacy,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,237476,-10.09881393619484,peer,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,237476,-10.932712666204178,spot_peer,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,237476,42.23117759271769,baseline,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,237476,48.54268271702416,spot_baseline,NextWorldLab,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,239758,49.75461990501531,baseline,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,239758,6.0571144897725535,peer,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,239758,0.1087667319260028,relative_legacy,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,239758,9.229642679587563,spot_peer,metac-perplexity,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,239759,31.899655238245703,baseline,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,239759,48.54268271702416,spot_baseline,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,239759,-10.932712666204178,spot_peer,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,239759,-7.161221933286389,peer,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,239759,-0.0746482838952615,relative_legacy,metac-exa,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,240414,-13.080100526384978,peer,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,240414,37.85116232537298,spot_baseline,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,240414,26.531070849810053,baseline,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,240414,-0.1576055211378864,relative_legacy,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,240414,-18.62854054370606,spot_peer,minefrac1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,240416,9.229642679587563,spot_peer,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,240416,50.439235646466976,baseline,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,240416,6.1364457512199655,peer,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,240416,0.1094037951220133,relative_legacy,metac-o1-preview,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,246118,11.08623913328011,peer,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,246118,15.16532411681301,spot_peer,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,246118,84.79969065549501,spot_baseline,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,246118,61.49278449513346,baseline,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,246118,0.1737993321590671,relative_legacy,laylaps,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,247214,-0.2759262530936094,relative_legacy,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,247214,-21.54484883623023,spot_peer,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,247214,-21.575495860254428,peer,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,247214,31.14024719449316,baseline,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,247214,33.799646351501586,spot_baseline,ajf-bot,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,250015,37.45326685878408,baseline,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,250015,-2.3689053207438007,peer,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,250015,-0.0068948163382888,relative_legacy,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34453,"Will Elon Musk be the richest person in the world on March 31, 2025, according to Forbes?",2025-02-08 04:04:10.353107+00,250015,-3.768068319482292,spot_peer,metac-deepseek-r1,True,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,0.9,2025-02-12 20:00:00+00,34967 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,187708,-8.610875693915327,baseline,twsummerbot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,187708,-76.15580032041463,spot_baseline,twsummerbot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,187708,-0.5007428787307795,relative_legacy,twsummerbot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,187708,-11.809106622720687,peer,twsummerbot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,187708,-104.44140618101066,spot_peer,twsummerbot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,189869,-1.0865725558147208,relative_legacy,VeritasAI,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,189869,-9.428047486930993,peer,VeritasAI,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,189869,4.040698132427855,baseline,VeritasAI,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,189869,5.889151782819173,spot_baseline,VeritasAI,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,189869,-19.11465599364752,spot_peer,VeritasAI,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,190710,-40.19884161527207,spot_peer,Bot_Pepa,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,190710,-10.554073255280512,baseline,Bot_Pepa,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,190710,-25.487050663684222,peer,Bot_Pepa,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,190710,-1.5640010720191395,relative_legacy,Bot_Pepa,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,190710,-14.384103622589045,spot_baseline,Bot_Pepa,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,191026,-71.83999198000566,spot_baseline,manticAI,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,191026,-61.902063063486274,baseline,manticAI,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,191026,-84.11907760368543,peer,manticAI,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,191026,-3.24019630908993,relative_legacy,manticAI,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,191026,-99.95296550698536,spot_peer,manticAI,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,191935,-91.46211474914156,spot_baseline,pgodzinai,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,191935,-120.35997318688668,spot_peer,pgodzinai,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,191935,-35.32818347649929,peer,pgodzinai,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,191935,-26.549110558687826,baseline,pgodzinai,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,191935,-1.41337074393208,relative_legacy,pgodzinai,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,191975,134.41539066708916,spot_peer,jkraybill_bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,191975,153.51419664891213,spot_baseline,jkraybill_bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,191975,35.62786685828169,baseline,jkraybill_bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,191975,30.723025133979256,peer,jkraybill_bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,191975,0.4847235598996854,relative_legacy,jkraybill_bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,192418,79.5355832204183,spot_peer,InstitutPelFutur,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,192418,100.6802367546196,peer,InstitutPelFutur,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,192418,98.1294003469481,baseline,InstitutPelFutur,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,192418,100.74515102711324,spot_baseline,InstitutPelFutur,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,192418,1.1546332666296903,relative_legacy,InstitutPelFutur,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,192924,-25.23937384777945,spot_peer,acm_bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,192924,0.0,baseline,acm_bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,192924,-9.177353368185074,peer,acm_bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,192924,-0.7595567317010482,relative_legacy,acm_bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,192924,0.0,spot_baseline,acm_bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,218666,-42.73592973608253,spot_peer,GreeneiBot2,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,218666,-1.5846024393635554,relative_legacy,GreeneiBot2,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,218666,-26.863743212354645,peer,GreeneiBot2,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,218666,-12.067291188157848,baseline,GreeneiBot2,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,218666,-16.823611431060645,spot_baseline,GreeneiBot2,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,220077,-45.806872181169965,spot_baseline,mmBot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,220077,-2.964172818860999,relative_legacy,mmBot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,220077,-45.54943843784399,baseline,mmBot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,220077,-75.1957034419613,peer,mmBot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,220077,-72.87852091619622,spot_peer,mmBot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,222631,-23.744969907625418,peer,Grizeu_Bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,222631,-1.459609866459518,relative_legacy,Grizeu_Bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,222631,-40.19884161527207,spot_peer,Grizeu_Bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,222631,-14.384103622589045,spot_baseline,Grizeu_Bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,222631,-9.555864666865746,baseline,Grizeu_Bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236037,-25.23937384777945,spot_peer,metac-o1,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236037,-0.0042269369731353,baseline,metac-o1,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236037,-12.63235223610869,peer,metac-o1,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236037,0.0,spot_baseline,metac-o1,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236037,-1.0338745214039489,relative_legacy,metac-o1,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236038,-40.19884161527207,spot_peer,metac-gpt-4o,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236038,-20.11996807056738,peer,metac-gpt-4o,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236038,-1.255337767469519,relative_legacy,metac-gpt-4o,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236038,-7.025761096409458,baseline,metac-gpt-4o,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236038,-14.384103622589045,spot_baseline,metac-gpt-4o,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236040,-1.0469181671108383,relative_legacy,metac-claude-3-5-sonnet-latest,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236040,0.0089760113279983,baseline,metac-claude-3-5-sonnet-latest,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236040,0.0,spot_baseline,metac-claude-3-5-sonnet-latest,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236040,-12.724268469315572,peer,metac-claude-3-5-sonnet-latest,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236040,-25.23937384777945,spot_peer,metac-claude-3-5-sonnet-latest,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236041,-29.31628365391419,baseline,metac-claude-3-5-sonnet-20240620,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236041,-87.84595967272813,spot_peer,metac-claude-3-5-sonnet-20240620,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236041,-60.1986402162968,spot_baseline,metac-claude-3-5-sonnet-20240620,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236041,-1.8964758602721992,relative_legacy,metac-claude-3-5-sonnet-20240620,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236041,-43.38158529665285,peer,metac-claude-3-5-sonnet-20240620,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236043,56.18407783216567,peer,metac-grok-2-1212,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236043,0.852992326046692,relative_legacy,metac-grok-2-1212,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236043,115.57923660953546,spot_peer,metac-grok-2-1212,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236043,135.4025100551105,spot_baseline,metac-grok-2-1212,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236043,66.01316008343997,baseline,metac-grok-2-1212,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236045,-0.2759840386100062,relative_legacy,metac-Gemini-Exp-1206,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236045,14.04890889579279,peer,metac-Gemini-Exp-1206,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236045,25.322502497079046,baseline,metac-Gemini-Exp-1206,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236045,54.93061443340548,spot_baseline,metac-Gemini-Exp-1206,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236045,31.888465162962245,spot_peer,metac-Gemini-Exp-1206,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236047,37.16778121758773,peer,metac-Llama-3.1,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236047,79.5355832204183,spot_peer,metac-Llama-3.1,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236047,0.3465646191075602,relative_legacy,metac-Llama-3.1,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236047,100.74515102711324,spot_baseline,metac-Llama-3.1,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,236047,47.662670187054246,baseline,metac-Llama-3.1,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,237476,0.4609807858142699,relative_legacy,NextWorldLab,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,237476,61.74203388608035,baseline,NextWorldLab,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,237476,52.24393755430329,peer,NextWorldLab,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,237476,58.45139759879377,spot_peer,NextWorldLab,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,237476,80.47189562170502,spot_baseline,NextWorldLab,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,239758,54.93061443340548,spot_baseline,metac-perplexity,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,239758,31.888465162962245,spot_peer,metac-perplexity,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,239758,-0.272582103874318,relative_legacy,metac-perplexity,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,239758,13.77655107881092,peer,metac-perplexity,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,239758,24.886594548293875,baseline,metac-perplexity,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,239759,13.916543082991309,peer,metac-exa,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,239759,54.93061443340548,spot_baseline,metac-exa,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,239759,31.888465162962245,spot_peer,metac-exa,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,239759,-0.2754485382882771,relative_legacy,metac-exa,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,239759,25.13450550368789,baseline,metac-exa,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,240414,31.888465162962245,spot_peer,minefrac1,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,240414,28.64633857286492,baseline,minefrac1,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,240414,54.93061443340548,spot_baseline,minefrac1,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,240414,16.844376479271368,peer,minefrac1,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,240414,-0.2596075740006172,relative_legacy,minefrac1,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,240416,62.16323266852485,baseline,metac-o1-preview,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,240416,135.4025100551105,spot_baseline,metac-o1-preview,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,240416,115.57923660953546,spot_peer,metac-o1-preview,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,240416,0.789625068096245,relative_legacy,metac-o1-preview,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,240416,52.517695109655946,peer,metac-o1-preview,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,246118,23.12866746210332,baseline,laylaps,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,246118,-0.4607208456345048,relative_legacy,laylaps,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,246118,10.808835956163229,peer,laylaps,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,246118,16.928997395469633,spot_peer,laylaps,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,246118,40.54651081081644,spot_baseline,laylaps,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,247214,-0.141039283049039,relative_legacy,ajf-bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,247214,35.11772986497044,baseline,ajf-bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,247214,58.09500139520141,spot_baseline,ajf-bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,247214,35.17942760323002,spot_peer,ajf-bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,247214,23.41433948531456,peer,ajf-bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,261570,-17.48594703432668,baseline,RPM_bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,261570,5.889151782819173,spot_baseline,RPM_bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,261570,-19.11465599364752,spot_peer,RPM_bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,261570,-32.314898724364326,peer,RPM_bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34454,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:04:10.387471+00,261570,-1.674751631298431,relative_legacy,RPM_bot,True,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34968 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,185699,30.054232321145168,spot_peer,MWG,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,185699,-0.01128915582463,relative_legacy,MWG,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,185699,6.034603865029196,peer,MWG,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,185699,16.099090646418638,baseline,MWG,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,185699,62.29303509201767,spot_baseline,MWG,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,187708,21.213390822632515,spot_peer,twsummerbot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,187708,24.996779703842115,baseline,twsummerbot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,187708,10.412988442529402,peer,twsummerbot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,187708,0.01433536095569,relative_legacy,twsummerbot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,187708,49.978212014731184,spot_baseline,twsummerbot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,189869,33.17937229129757,baseline,VeritasAI,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,189869,14.562704031967966,peer,VeritasAI,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,189869,0.0201892130623761,relative_legacy,VeritasAI,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,189869,20.18282084141151,spot_peer,VeritasAI,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,190710,35.32086078750163,baseline,Bot_Pepa,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,190710,48.54268271702416,spot_baseline,Bot_Pepa,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,190710,20.18282084141151,spot_peer,Bot_Pepa,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,190710,15.824271936305909,peer,Bot_Pepa,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,190710,0.0249058390591553,relative_legacy,Bot_Pepa,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,191026,78.65963618908069,spot_baseline,manticAI,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,191026,66.92662372512784,baseline,manticAI,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,191026,38.55745950362409,peer,manticAI,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,191026,0.3108405191290551,relative_legacy,manticAI,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,191026,41.80385513427293,spot_peer,manticAI,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,191935,12.507352296918894,spot_peer,pgodzinai,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,191935,-0.0540319590222749,relative_legacy,pgodzinai,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,191935,8.801114138823234,peer,pgodzinai,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,191935,24.984317408359345,baseline,pgodzinai,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,191935,37.85116232537298,spot_baseline,pgodzinai,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,191975,-0.1366945869803006,relative_legacy,jkraybill_bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,191975,-29.689930039583988,spot_baseline,jkraybill_bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,191975,-35.98056251010091,spot_peer,jkraybill_bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,191975,-6.427328276605812,peer,jkraybill_bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,191975,-5.333224424657481,baseline,jkraybill_bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,192418,-25.5784285017747,spot_peer,InstitutPelFutur,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,192418,-14.70747209132258,baseline,InstitutPelFutur,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,192418,-0.4919510879681646,relative_legacy,InstitutPelFutur,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,192418,-15.200309344505014,spot_baseline,InstitutPelFutur,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,192418,-20.00744101829907,peer,InstitutPelFutur,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,192924,12.507352296918894,spot_peer,acm_bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,192924,37.85116232537298,spot_baseline,acm_bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,192924,33.39455060688892,baseline,acm_bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,192924,13.551885791000004,peer,acm_bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,192924,-0.036373567713138,relative_legacy,acm_bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,204737,-25.5784285017747,spot_peer,SynapseSeer,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,204737,-15.200309344505014,spot_baseline,SynapseSeer,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,204737,-11.713267419943808,baseline,SynapseSeer,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,204737,-18.909736849075333,peer,SynapseSeer,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,204737,-0.4389039923646231,relative_legacy,SynapseSeer,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,218666,0.0,spot_baseline,GreeneiBot2,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,218666,-14.666089380071258,spot_peer,GreeneiBot2,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,218666,-0.3066139132480872,relative_legacy,GreeneiBot2,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,218666,-9.46518425176656,peer,GreeneiBot2,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,218666,0.0,baseline,GreeneiBot2,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,220077,-0.8427656143598216,relative_legacy,mmBot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,220077,-51.60742285943998,spot_peer,mmBot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,220077,-48.26493175682575,peer,mmBot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,220077,-50.89321389779909,baseline,mmBot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,222631,-0.7946888711313012,relative_legacy,Grizeu_Bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,222631,-73.69655941662059,spot_baseline,Grizeu_Bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,222631,-45.060097778836,peer,Grizeu_Bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,222631,-49.08137380254325,baseline,Grizeu_Bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,222631,-67.573028984406,spot_peer,Grizeu_Bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236037,0.0058700308333645,relative_legacy,metac-o1,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236037,23.52735870253445,baseline,metac-o1,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236037,48.54268271702416,spot_baseline,metac-o1,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236037,20.18282084141151,spot_peer,metac-o1,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236037,9.56561086945712,peer,metac-o1,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236038,1.8496036721377516,peer,metac-gpt-4o,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236038,-0.1021691544765265,relative_legacy,metac-gpt-4o,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236038,12.91451947661117,baseline,metac-gpt-4o,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236038,4.217214716445466,spot_peer,metac-gpt-4o,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236040,26.303440583379377,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236040,4.217214716445466,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236040,-0.1019389458756959,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236040,1.8357393149378167,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236040,12.842212373544925,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236041,26.303440583379377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236041,4.217214716445466,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236041,12.893324510780518,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236041,1.8458843887544387,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236041,-0.1020046669544708,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236043,-0.3889564074046479,relative_legacy,metac-grok-2-1212,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236043,-18.784429171781287,peer,metac-grok-2-1212,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236043,-15.790203537182702,baseline,metac-grok-2-1212,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236043,-32.19280948873623,spot_baseline,metac-grok-2-1212,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236043,-37.77738576618583,spot_peer,metac-grok-2-1212,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236045,-24.935580430596016,peer,metac-Gemini-Exp-1206,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236045,-0.4734757635766164,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236045,-51.45731728297583,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236045,-51.60742285943998,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236045,-24.591109401390007,baseline,metac-Gemini-Exp-1206,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236047,-37.77738576618583,spot_peer,metac-Llama-3.1,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236047,-15.517584739183938,baseline,metac-Llama-3.1,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236047,-18.469421707474037,peer,metac-Llama-3.1,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236047,-0.383796689007673,relative_legacy,metac-Llama-3.1,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,237476,-29.32413089993036,peer,NextWorldLab,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,237476,-32.19280948873623,spot_baseline,NextWorldLab,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,237476,-37.77738576618583,spot_peer,NextWorldLab,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,237476,-0.5849040523068855,relative_legacy,NextWorldLab,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,237476,-25.49961302092735,baseline,NextWorldLab,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,239758,12.98936169159476,peer,metac-perplexity,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,239758,28.253616089399063,baseline,metac-perplexity,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,239758,27.32851110256006,spot_peer,metac-perplexity,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,239758,58.496250072115615,spot_baseline,metac-perplexity,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,239758,0.0536145153728794,relative_legacy,metac-perplexity,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,239759,40.33649197484648,baseline,metac-exa,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,239759,21.77264172279735,peer,metac-exa,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,239759,0.1765565888302144,relative_legacy,metac-exa,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,239759,46.2118151990768,spot_peer,metac-exa,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,240414,25.685380470192527,baseline,minefrac1,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,240414,10.543430021200605,peer,minefrac1,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,240414,48.54268271702416,spot_baseline,minefrac1,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,240414,20.18282084141151,spot_peer,minefrac1,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,240414,0.0071555103434638,relative_legacy,minefrac1,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,240416,48.54268271702416,spot_baseline,metac-o1-preview,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,240416,0.0037518089068673,relative_legacy,metac-o1-preview,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,240416,9.346462995267972,peer,metac-o1-preview,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,240416,23.03585585224569,baseline,metac-o1-preview,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,240416,20.18282084141151,spot_peer,metac-o1-preview,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,241715,19.87523077898952,baseline,CatrachoCaster,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,241715,8.030563545501831,peer,CatrachoCaster,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,241715,48.54268271702416,spot_baseline,CatrachoCaster,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,241715,20.18282084141151,spot_peer,CatrachoCaster,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,241715,0.0038352426966436,relative_legacy,CatrachoCaster,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,246118,0.0071555103434638,relative_legacy,laylaps,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,246118,27.780931082524777,baseline,laylaps,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,246118,11.581526761436889,peer,laylaps,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,246118,20.18282084141151,spot_peer,laylaps,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,247214,21.339827631306363,peer,ajf-bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,247214,43.40527914758369,baseline,ajf-bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,247214,0.0655437266161421,relative_legacy,ajf-bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,247214,48.54268271702416,spot_baseline,ajf-bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,247214,20.18282084141151,spot_peer,ajf-bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,261570,48.54268271702416,spot_baseline,RPM_bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,261570,20.18282084141151,spot_peer,RPM_bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,261570,0.1216819158638357,relative_legacy,RPM_bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,261570,21.202601817517685,peer,RPM_bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34455,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:04:10.422013+00,261570,41.91404513985727,baseline,RPM_bot,True,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,2025-02-13 17:00:00+00,34969 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,189869,25.700453011775668,peer,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,189869,57.61993062409035,spot_peer,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,189869,23.24486520510549,baseline,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,189869,-0.005443628994275,relative_legacy,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,190710,44.22021596306877,peer,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,190710,67.80719051126377,spot_baseline,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,190710,52.38853258055294,baseline,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,190710,71.50719545704072,spot_peer,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,190710,0.0912961301799458,relative_legacy,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,191026,89.37962217741327,spot_peer,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,191026,66.7265118455928,baseline,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,191026,57.67452740666501,peer,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,191026,0.2744424865626537,relative_legacy,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,191935,0.2352063364961362,relative_legacy,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,191935,54.866347063444266,peer,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,191935,64.06025425623147,baseline,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,191935,87.02660703959828,spot_baseline,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,191935,85.36195521080789,spot_peer,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,192418,0.2265304070071498,relative_legacy,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,192418,83.7566311653046,spot_peer,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,192418,84.79969065549501,spot_baseline,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,192418,82.25754949024456,baseline,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,192418,54.7160119514018,peer,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,192924,83.7566311653046,spot_peer,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,192924,74.73543825087319,baseline,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,192924,54.20899129620055,peer,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,192924,0.2229252814929562,relative_legacy,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,204737,81.06430298628331,spot_peer,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,204737,51.76550617900752,peer,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,204737,63.376799069801365,baseline,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,204737,81.0648747782646,spot_baseline,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,204737,0.1937263619780148,relative_legacy,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,218666,39.0299321973408,peer,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,218666,64.5174854889219,spot_peer,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,218666,0.0206003596567555,relative_legacy,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,218666,43.829357490659184,baseline,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,218666,58.11101752255496,spot_baseline,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,220077,77.81215612594994,spot_peer,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,220077,75.96045774026375,baseline,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,220077,48.08165730033477,peer,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,220077,0.1465403130500777,relative_legacy,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,222631,-14.467376154143958,spot_peer,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,222631,-36.79607812984376,baseline,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,222631,-17.537188653258248,peer,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,222631,-0.7561113504452307,relative_legacy,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236037,43.988378504215085,baseline,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236037,76.55347463629771,spot_baseline,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236037,77.81215612594994,spot_peer,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236037,0.1442199582863418,relative_legacy,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236037,41.78124042337376,peer,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236038,28.164676751433603,baseline,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236038,57.61993062409035,spot_peer,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236038,-0.0172994109882455,relative_legacy,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236038,30.34100723488301,peer,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236040,77.81215612594994,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236040,42.034851258405446,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236040,0.1451133362093804,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236040,44.36852831352432,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236041,-0.0173035977454656,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236041,48.54268271702416,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236041,28.16627483438921,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236041,30.34224440336953,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236041,57.61993062409035,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236043,48.80782612321122,peer,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236043,0.2383789231436046,relative_legacy,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236043,89.37962217741327,spot_peer,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236043,53.75048133087211,baseline,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236045,0.0937913304153578,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236045,67.80719051126377,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236045,71.50719545704072,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236045,38.053715632492,peer,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236045,38.79292455694713,baseline,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236047,28.043374266944483,baseline,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236047,30.25980262327728,peer,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236047,-0.0170229114992305,relative_legacy,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,236047,57.61993062409035,spot_peer,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,237476,53.9851682995155,baseline,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,237476,84.79969065549501,spot_baseline,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,237476,83.7566311653046,spot_peer,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,237476,0.2053067042130581,relative_legacy,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,237476,49.81334690112578,peer,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,239758,-564.3856189774723,spot_baseline,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,239758,-312.9545894811068,baseline,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,239758,-215.4539725075988,peer,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,239758,-3.4116910243494054,relative_legacy,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,239758,-384.2235745490429,spot_peer,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,239759,-384.2235745490429,spot_peer,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,239759,-564.3856189774723,spot_baseline,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,239759,-303.9243833733469,baseline,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,239759,-208.9862775111492,peer,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,239759,-3.3120295257361865,relative_legacy,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,240414,0.0404314354496352,relative_legacy,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,240414,58.496250072115615,spot_baseline,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,240414,35.620452206915914,baseline,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,240414,36.05459662540757,peer,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,240414,64.7951892587333,spot_peer,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,240416,71.50719545704072,spot_peer,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,240416,67.80719051126377,spot_baseline,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,240416,38.88838347853393,baseline,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,240416,0.0938621208628333,relative_legacy,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,240416,38.10984195501941,peer,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,246118,-254.25951178974609,peer,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,246118,-564.3856189774723,spot_baseline,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,246118,-384.2235745490429,spot_peer,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,246118,-365.71550040341526,baseline,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,246118,-3.998306520609653,relative_legacy,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,247214,34.53595852934076,baseline,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,247214,82.36063705076197,spot_peer,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,247214,0.1375982901292126,relative_legacy,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,247214,82.8631581688019,spot_baseline,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,247214,32.6411265777116,peer,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,250015,33.351918165123124,baseline,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,250015,64.7951892587333,spot_peer,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,250015,0.0407766503354724,relative_legacy,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,250015,34.15248986449636,peer,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,261570,-3.076495788679591,relative_legacy,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,261570,-186.4187815302601,peer,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,261570,-384.2235745490429,spot_peer,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,261570,-564.3856189774723,spot_baseline,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34456,"Will Donald Trump or Donald Trump Jr. visit Greenland after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.452713+00,261570,-269.75573562379986,baseline,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34970 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,185699,81.55754288625727,spot_baseline,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,185699,4.379651469917972,baseline,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,185699,2.61955644246186,peer,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,185699,0.0296715302847327,relative_legacy,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,185699,48.78118461400218,spot_peer,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,187708,79.57669477823923,spot_baseline,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,187708,38.0908271941525,baseline,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,187708,23.28485873437036,peer,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,187708,0.2550020863849035,relative_legacy,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,187708,47.35731276684197,spot_peer,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,189869,-0.0248200538557675,relative_legacy,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,189869,19.25027143070542,baseline,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,189869,9.06346956522084,spot_peer,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,189869,6.679273281610476,peer,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,190710,-62.81846027062531,spot_peer,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,190710,-73.69655941662059,spot_baseline,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,190710,-56.75161981149369,baseline,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,190710,-0.8107533516986785,relative_legacy,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,190710,-49.49276790652521,peer,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,191026,53.39099702875532,spot_peer,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,191026,63.40840258384169,baseline,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,191026,38.92452098442301,peer,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,191026,0.4196711315378725,relative_legacy,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,191026,87.97057662822883,spot_baseline,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,191935,55.34509502298286,spot_peer,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,191935,64.20920291551163,baseline,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,191935,39.63568696424824,peer,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,191935,0.4350864615403096,relative_legacy,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,191935,90.68905956085185,spot_baseline,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,192418,52.717231325307736,peer,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,192418,0.4074834816505762,relative_legacy,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,192418,45.18416378562839,spot_peer,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,192418,73.7418392459952,baseline,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,192924,38.89716596762776,spot_peer,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,192924,0.2774582570203611,relative_legacy,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,192924,36.4227480175609,peer,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,192924,67.80719051126377,spot_baseline,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,192924,59.5749531086154,baseline,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,204737,45.18416378562839,spot_peer,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,204737,60.23692485170002,baseline,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,204737,0.3462793343227728,relative_legacy,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,204737,36.463371238856766,peer,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,218666,-7.09665213541436,spot_baseline,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,218666,-14.945161648010046,spot_peer,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,218666,-10.700638895031432,peer,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,218666,-0.2572509201623062,relative_legacy,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,218666,-5.027189671058808,baseline,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,220077,-81.72588097518359,spot_peer,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,220077,-1.2932071802437748,relative_legacy,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,220077,-87.74624049211924,peer,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,220077,-98.64875994126002,baseline,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,220077,-100.0,spot_baseline,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,222631,-46.83246384409484,spot_peer,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,222631,-0.5733249307780327,relative_legacy,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,222631,-33.66772809491179,peer,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,222631,-36.57275733516811,baseline,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236037,6.130846941636756,peer,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236037,14.816357312920804,baseline,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236037,0.0166451255907418,relative_legacy,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236037,9.06346956522084,spot_peer,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236037,26.303440583379377,spot_baseline,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236038,-0.3183348031255707,relative_legacy,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236038,-18.598334806177807,baseline,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236038,-18.098865561176115,peer,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236038,-32.984763868218415,spot_peer,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236038,-32.19280948873623,spot_baseline,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236040,-0.5519073350575665,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236040,-62.81846027062531,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236040,-42.193943481870704,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236040,-73.69655941662059,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236040,-35.015498936619544,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236041,-25.90753979095242,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236041,-0.4258594372344628,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236041,-46.83246384409484,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236041,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236041,-29.523943050234397,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236043,27.87672556229724,baseline,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236043,25.049465991751333,spot_peer,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236043,0.1479500842789908,relative_legacy,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236043,15.44205837460348,peer,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236045,-51.45731728297583,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236045,-28.42512790244036,baseline,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236045,-24.960509500212243,peer,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236045,-0.4182977404805735,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236045,-46.83246384409484,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236047,-74.96563955524249,baseline,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236047,-104.86669370406464,spot_peer,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236047,-0.8799791870345749,relative_legacy,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236047,-58.56044636301797,peer,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,236047,-132.19280948873626,spot_baseline,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,237476,-25.48484340810904,spot_peer,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,237476,-21.75914350726266,spot_baseline,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,237476,-0.3230547328148083,relative_legacy,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,237476,-16.670599486239364,peer,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,237476,-14.406300780962304,baseline,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,239758,14.389792516093312,baseline,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,239758,9.06346956522084,spot_peer,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,239758,26.303440583379377,spot_baseline,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,239758,0.0080831177882933,relative_legacy,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,239758,5.887004317497876,peer,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,239759,0.2371813935206722,relative_legacy,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,239759,37.231582017962815,baseline,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,239759,22.326138795583148,peer,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,239759,67.80719051126377,spot_baseline,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,239759,38.89716596762776,spot_peer,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,240414,15.993150140305524,peer,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,240414,29.435871927780568,baseline,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,240414,48.54268271702416,spot_baseline,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,240414,25.049465991751333,spot_peer,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,240414,0.1480231622045579,relative_legacy,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,240416,-32.984763868218415,spot_peer,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,240416,-32.19280948873623,spot_baseline,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,240416,-18.014971772935745,baseline,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,240416,-17.494481440604446,peer,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,240416,-0.3119671452465929,relative_legacy,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,246118,29.956340021495105,peer,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,246118,0.321673166886133,relative_legacy,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,246118,45.18416378562839,spot_peer,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,246118,76.55347463629771,spot_baseline,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,246118,49.74296489211232,baseline,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,247214,24.869950502955792,peer,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,247214,0.2823682548902079,relative_legacy,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,247214,54.51212906919249,spot_peer,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,247214,89.53026213333065,spot_baseline,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,247214,39.98382847456439,baseline,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,250015,0.0400675070370302,spot_peer,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,250015,0.9159822140029042,peer,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,250015,7.456541063312003,baseline,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,250015,-0.0600830763181878,relative_legacy,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,250015,13.750352374993504,spot_baseline,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,261570,0.1653044121768488,relative_legacy,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,261570,37.03243546145855,baseline,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,261570,9.06346956522084,spot_peer,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,261570,20.046598170489528,peer,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34457,"Will Donald Trump visit Israel after the launch of this question and before April 1, 2025?",2025-02-08 04:04:10.630724+00,261570,26.303440583379377,spot_baseline,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.8,2025-02-13 21:00:00+00,34971 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,185699,6.085125034267968,spot_peer,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,185699,8.424977490346189,baseline,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,185699,0.5934108085418675,peer,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,185699,0.0015545916285119,relative_legacy,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,185699,86.39384504239716,spot_baseline,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,187708,3.380434374725033,peer,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,187708,44.96447084896478,baseline,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,187708,86.71057295026547,spot_baseline,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,187708,6.312795166772421,spot_peer,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,187708,0.0143954283487635,relative_legacy,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,189869,-7.275320934632448,spot_peer,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,189869,49.6700351582726,baseline,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,189869,-5.111409578504579,peer,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,189869,-0.1049179284131537,relative_legacy,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,190710,76.55347463629771,spot_baseline,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,190710,-0.988323116631811,spot_peer,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,190710,-0.040849761494704,relative_legacy,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,190710,58.59156195491609,baseline,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,190710,-0.5685082088451145,peer,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,191026,6.653365928377303,spot_peer,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,191026,62.85680447438621,baseline,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,191026,5.186007378064751,peer,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,191026,0.0357951494078931,relative_legacy,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,191026,87.18436485093177,spot_baseline,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,191935,0.025544135805487,relative_legacy,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,191935,51.02127444226782,baseline,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,191935,7.218510126495114,spot_peer,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,191935,87.97057662822883,spot_baseline,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,191935,4.360661334680478,peer,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,192418,97.08536543404836,spot_baseline,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,192418,0.145877278356908,relative_legacy,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,192418,13.77039622057986,spot_peer,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,192418,92.703106767105,baseline,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,192418,13.688276310706891,peer,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,192924,-0.988323116631811,spot_peer,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,192924,-1.3154511753929348,peer,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,192924,-0.0415806563187015,relative_legacy,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,192924,66.90995607708514,baseline,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,204737,1.6608414063532475,peer,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,204737,80.57051848385113,spot_baseline,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,204737,1.8992055233417109,spot_peer,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,204737,-0.0101046026906459,relative_legacy,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,204737,63.13204577496749,baseline,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,218666,-0.0474472859625709,relative_legacy,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,218666,50.0672467241324,baseline,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,218666,75.53149040450981,spot_baseline,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,218666,-1.7229451050589997,spot_peer,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,218666,-0.8662352373646469,peer,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,220077,-0.988323116631811,spot_peer,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,220077,-0.0501739036358514,relative_legacy,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,220077,-2.46583319396925,peer,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,220077,75.04078367783691,baseline,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,222631,-14.81565434029534,peer,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,222631,-0.2393629147672591,relative_legacy,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,222631,-21.123020910508885,spot_peer,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,222631,48.54268271702416,spot_baseline,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,222631,34.40231551552487,baseline,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236037,10.546187191095152,spot_peer,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236037,0.0490906015983171,relative_legacy,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236037,6.047581439890289,peer,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236037,51.86091489589836,baseline,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236038,-7.275320934632448,spot_peer,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236038,-0.0910044416826333,relative_legacy,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236038,-4.040810533439561,peer,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236038,39.02046052558432,baseline,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236040,-0.418402828898079,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236040,43.53915303784438,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236040,-0.988323116631811,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236040,-0.0407475750556718,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236041,33.3938687166983,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236041,-0.1438041662244307,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236041,-13.968204608158365,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236041,-7.843924434438577,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236043,4.939216096399907,spot_peer,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236043,0.0064212264962574,relative_legacy,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236043,2.980902568035132,peer,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236043,48.46988001871706,baseline,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236045,1.553618314374124,peer,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236045,4.340277415395159e-06,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236045,25.84905486789997,baseline,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236045,4.939216096399907,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236047,38.16552825213637,baseline,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236047,-3.9697293579995967,peer,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236047,-0.0899833018264893,relative_legacy,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236047,-7.275320934632448,spot_peer,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,237476,40.12752995682964,baseline,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,237476,-9.351286739118953,peer,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,237476,58.496250072115615,spot_baseline,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,237476,-13.968204608158365,spot_peer,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,237476,-0.1647195512236392,relative_legacy,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,239758,46.03118081880997,baseline,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,239758,2.7967224580324457,peer,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,239758,0.0046636520195517,relative_legacy,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,239758,4.939216096399907,spot_peer,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,239759,10.546187191095152,spot_peer,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,239759,0.0480811215638618,relative_legacy,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,239759,51.272487508963465,baseline,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,239759,5.970975717239607,peer,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,240414,-4.211872396539389,peer,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,240414,67.80719051126377,spot_baseline,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,240414,-7.275320934632448,spot_peer,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,240414,-0.093556510253545,relative_legacy,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,240414,40.99899903761725,baseline,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,240416,2.855567868065617,peer,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,240416,4.939216096399907,spot_peer,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,240416,0.0048269339444108,relative_legacy,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,240416,46.8847582565726,baseline,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,246118,-0.3799401500597112,peer,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,246118,-0.0406729013440406,relative_legacy,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,246118,49.72916997570937,baseline,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,246118,-0.988323116631811,spot_peer,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,246118,76.55347463629771,spot_baseline,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,247214,55.72464348429276,baseline,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,247214,2.991252062563974,peer,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,247214,0.0055793680973191,relative_legacy,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,247214,4.013284019213082,spot_peer,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,247214,83.51156152582178,spot_baseline,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,250015,-0.988323116631811,spot_peer,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,250015,40.828150383762704,baseline,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,250015,-0.4204930058406568,peer,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,250015,-0.0393096786016618,relative_legacy,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,261570,-0.0125562427368404,relative_legacy,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,261570,56.58959514565976,baseline,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,261570,1.7132991394329755,peer,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,261570,76.55347463629771,spot_baseline,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34458,"Before April 1, 2025, will the United States accuse Venezuela of invading Guyana?",2025-02-08 04:04:10.661936+00,261570,-0.988323116631811,spot_peer,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34972 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,185699,10.516424426488998,baseline,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,185699,76.55347463629771,spot_baseline,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,185699,9.83452610476587,spot_peer,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,185699,0.0120150831102717,relative_legacy,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,185699,1.351004001352868,peer,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,187708,1.6815175224843857,peer,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,187708,3.399484118084765,spot_peer,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,187708,-0.0009562399169055,relative_legacy,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,187708,67.62674082658896,spot_baseline,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,187708,35.923700940164004,baseline,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,189869,-10.357699397093713,spot_peer,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,189869,-7.825796900730856,peer,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,189869,35.29114148625513,baseline,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,189869,-0.1287166882846755,relative_legacy,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,191026,77.82085763980875,spot_baseline,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,191026,0.0827218290967244,relative_legacy,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,191026,7.778576229947461,peer,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,191026,56.121205324046365,baseline,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,191026,10.74814837856207,spot_peer,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,191935,82.37493603082727,spot_baseline,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,191935,14.03106083921688,spot_peer,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,191935,0.0941473851908841,relative_legacy,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,191935,8.405173815482177,peer,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,191935,50.04626095930195,baseline,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,192418,0.0072604540741389,relative_legacy,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,192418,2.228465781641513,peer,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,192418,64.324463201228,baseline,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,192418,3.529565435856651,spot_peer,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,192418,67.80719051126377,spot_baseline,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,192924,53.60529002402098,spot_baseline,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,192924,-6.900080763806791,peer,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,192924,-0.1127401872842591,relative_legacy,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,192924,-6.708202136721623,spot_peer,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,192924,46.617957521134414,baseline,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,204737,4.177542609922778,spot_peer,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,204737,68.70606883398922,spot_baseline,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,204737,54.32043143940331,baseline,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,204737,3.09209969955078,peer,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,204737,0.0178736673501703,relative_legacy,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,218666,84.478735007906,spot_baseline,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,218666,0.1078595510441675,relative_legacy,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,218666,51.79601421917627,baseline,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,218666,9.419203539746745,peer,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,218666,15.547632861820976,spot_peer,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,220077,74.55349084772332,baseline,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,220077,9.102903288998888,peer,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,220077,0.0902310103095833,relative_legacy,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,220077,9.83452610476587,spot_peer,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,222631,1.2239164671740967,peer,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,222631,3.529565435856651,spot_peer,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,222631,67.80719051126377,spot_baseline,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,222631,25.121577415451224,baseline,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,222631,0.0,relative_legacy,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236037,1.758780309224087,peer,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236037,36.18656591197552,baseline,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236037,2.1290705046833732e-05,relative_legacy,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236037,3.529565435856651,spot_peer,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236037,67.80719051126377,spot_baseline,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236038,-0.1065769759919204,relative_legacy,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236038,27.707086982307807,baseline,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236038,-6.066413848756936,peer,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236038,-10.357699397093713,spot_peer,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236040,32.65391826480516,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236040,-1.9126334215351743,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236040,-0.049661700800111,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236040,-3.1824407624507547,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236041,32.84211820876225,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236041,-1.9239671351460856,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236041,-3.1824407624507547,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236041,-0.0496719537389671,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236043,1.8514966013083267,peer,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236043,38.163480781993975,baseline,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236043,3.529565435856651,spot_peer,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236043,0.0024991272581907,relative_legacy,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236047,0.0013886503399136,relative_legacy,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236047,3.529565435856651,spot_peer,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236047,1.8072409090888484,peer,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,236047,37.192217668562776,baseline,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,237476,26.940554890308675,baseline,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,237476,-13.207216996099888,peer,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,237476,-0.2026199994514275,relative_legacy,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,237476,-18.06492850108078,spot_peer,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,239758,35.94035023123386,baseline,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,239758,67.80719051126377,spot_baseline,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,239758,3.529565435856651,spot_peer,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,239758,9.085057434155312e-06,relative_legacy,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,239758,1.7478425246587332,peer,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,239759,5.485566751808347,peer,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,239759,76.55347463629771,spot_baseline,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,239759,9.83452610476587,spot_peer,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,239759,0.0530753875331533,relative_legacy,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,239759,43.626831890950925,baseline,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,240414,-0.1094067273108868,relative_legacy,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,240414,48.54268271702416,spot_baseline,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,240414,-10.357699397093713,spot_peer,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,240414,-6.36744518184862,peer,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,240414,29.012372238652,baseline,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,240416,67.80719051126377,spot_baseline,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,240416,3.529565435856651,spot_peer,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,240416,35.48748076950833,baseline,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,240416,1.7288713928735178,peer,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,240416,1.0975077374172911e-05,relative_legacy,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,246118,-3.1824407624507547,spot_peer,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,246118,-2.236128096570884,peer,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,246118,58.496250072115615,spot_baseline,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,246118,-0.0514455284007111,relative_legacy,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,246118,38.0328739254138,baseline,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,247214,-8.298226158291019,spot_peer,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,247214,51.39959793670126,spot_baseline,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,247214,-5.114354895531175,peer,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,247214,30.635233693130825,baseline,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,247214,-0.0920617491287219,relative_legacy,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,250015,18.18237259787898,baseline,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,250015,-18.06492850108078,spot_peer,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,250015,-0.1438635804467191,relative_legacy,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,250015,-8.776333790125038,peer,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,261570,46.533600833043714,baseline,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,261570,-10.357699397093713,spot_peer,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,261570,1.6677121948107,peer,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,261570,-0.0010279346747247,relative_legacy,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34459,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:04:10.692951+00,261570,48.54268271702416,spot_baseline,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,2025-02-13 21:00:00+00,34973 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,185699,-64.38561897747249,spot_baseline,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,185699,5.519339350171938,peer,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,185699,0.3042054974742835,relative_legacy,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,185699,17.155582744561407,spot_peer,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,185699,-29.559814114873408,baseline,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,187708,24.36690809668629,spot_baseline,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,187708,80.95261198354862,spot_peer,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,187708,0.7791527338086739,relative_legacy,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,187708,39.22273630298325,peer,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,187708,12.718876234805233,baseline,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,189869,-8.444721633522725,spot_peer,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,189869,0.0132486270929918,relative_legacy,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,189869,-12.9409131925015,peer,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,189869,-71.81856871975792,baseline,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,189869,-100.0,spot_baseline,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,190710,-91.00593715481284,baseline,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,190710,-42.05029314028571,peer,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,190710,-0.3535000821007201,relative_legacy,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,190710,-103.46746419824991,spot_peer,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,190710,-232.1928094887363,spot_baseline,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,191026,113.7861668759813,spot_peer,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,191026,50.53982761818509,baseline,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,191026,76.89471215465215,peer,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,191026,1.2365047549859285,relative_legacy,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,191026,70.04397181410921,spot_baseline,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,191935,47.56219285889616,peer,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,191935,54.59683691052925,spot_baseline,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,191935,102.68246820294144,spot_peer,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,191935,26.71598517809772,baseline,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,191935,0.8892392034492014,relative_legacy,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,192418,-216.8913339133275,baseline,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,192418,-232.1928094887363,spot_baseline,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,192418,-103.46746419824991,spot_peer,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,192418,-1.266102752667545,relative_legacy,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,192418,-107.31894131336897,peer,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,192924,50.51990210136626,baseline,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,192924,58.496250072115615,spot_baseline,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,192924,105.48544163576273,spot_peer,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,192924,1.2444142142914856,relative_legacy,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,192924,90.23299693296032,peer,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,204737,0.8015369913436213,relative_legacy,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,204737,9.761079662642205,spot_baseline,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,204737,7.221354144078608,baseline,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,204737,46.45769708487361,peer,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,204737,70.45366063664497,spot_peer,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,218666,-7.903142379148232,baseline,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,218666,24.25619352406482,peer,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,218666,0.5708922107423612,relative_legacy,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,218666,52.51093250447477,spot_peer,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,218666,-15.200309344505014,spot_baseline,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,220077,-110.31077484515797,peer,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,220077,-1.296615888959238,relative_legacy,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,220077,-103.46746419824991,spot_peer,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,220077,-232.1928094887363,spot_baseline,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,220077,-223.45116931293427,baseline,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,222631,-24.25268215505412,peer,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,222631,-173.6965594166206,spot_baseline,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,222631,-61.41923076481064,spot_peer,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,222631,-0.105868295496117,relative_legacy,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,222631,-64.88962628319807,baseline,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236037,-61.41923076481064,spot_peer,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236037,-94.33596465986903,baseline,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236037,-36.70806491400854,peer,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236037,-0.2632496272717836,relative_legacy,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236037,-173.6965594166206,spot_baseline,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236038,-39.19573529704007,peer,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236038,-99.86012231401529,baseline,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236038,-173.6965594166206,spot_baseline,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236038,-61.41923076481064,spot_peer,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236038,-0.2907575764398376,relative_legacy,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236040,-98.2302307127635,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236040,-38.3754918962938,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236040,-0.2758378302379285,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236040,-61.41923076481064,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236040,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236041,-8.444721633522725,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236041,-100.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236041,0.1403017952880237,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236041,-8.366802670337492,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236041,-56.77918497292651,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236043,2.409578433192285,peer,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236043,-73.69655941662059,spot_baseline,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236043,10.462699071035532,spot_peer,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236043,0.2895905480955841,relative_legacy,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236043,-41.887661546589406,baseline,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236045,-30.021326375405,baseline,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236045,-0.1807074336761873,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236045,-15.845267075223006,peer,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236045,-332.1928094887361,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236045,-175.349394034096,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236047,-21.113316436140565,peer,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236047,-132.19280948873626,spot_baseline,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236047,-0.0389232902468801,relative_legacy,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236047,-31.585534362403763,spot_peer,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,236047,-73.84550987818103,baseline,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,237476,-48.43934927328408,spot_peer,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,237476,-44.86406417236967,peer,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,237476,-119.80971364895385,baseline,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,237476,-0.4221134756862567,relative_legacy,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,237476,-155.6393348524385,spot_baseline,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,239758,1.1211506758662175,relative_legacy,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,239758,124.39286234032096,spot_peer,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,239758,63.403443404290215,peer,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,239758,45.30023243767216,baseline,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,239759,-132.19280948873626,spot_baseline,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,239759,-0.0384057767077258,relative_legacy,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,239759,-31.585534362403763,spot_peer,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,239759,-21.02844015241389,peer,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,239759,-73.55834564917731,baseline,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,240414,1.1058995132264196,relative_legacy,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,240414,40.847570249958885,baseline,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,240414,67.80719051126377,spot_baseline,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,240414,63.465662548307,peer,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,240414,112.1783253092886,spot_peer,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,240416,-36.16839366713449,peer,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,240416,-92.9150718801096,baseline,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,240416,-0.2601027239737655,relative_legacy,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,240416,-173.6965594166206,spot_baseline,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,240416,-61.41923076481064,spot_peer,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,246118,90.6453541471003,spot_peer,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,246118,37.85116232537298,spot_baseline,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,246118,24.523570476513896,baseline,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,246118,53.753009165918414,peer,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,246118,0.9382194804686684,relative_legacy,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,247214,93.78857372628084,peer,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,247214,1.2814107629588216,relative_legacy,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,247214,37.21815900969095,baseline,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,247214,91.59822796014984,spot_peer,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,247214,39.17677199559967,spot_baseline,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,250015,-0.2427239433906693,relative_legacy,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,250015,-61.41923076481064,spot_peer,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,250015,-173.6965594166206,spot_baseline,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,250015,-88.50730349293123,baseline,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,250015,-34.332677566775715,peer,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,261570,-73.69655941662059,spot_baseline,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,261570,-14.094276992485728,peer,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,261570,0.0061709466952347,relative_legacy,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,261570,-72.68249321040537,baseline,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34461,"Will the United States impose any new tariffs on Canada before April 1, 2025?",2025-02-08 04:04:10.755102+00,261570,10.462699071035532,spot_peer,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34975 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,185699,51.953554797888025,spot_peer,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,185699,22.72939048676292,baseline,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,185699,0.4762221344438675,relative_legacy,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,185699,37.85116232537298,spot_baseline,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,185699,30.854885514270283,peer,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,187708,39.73372043399716,baseline,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,187708,42.62309915271554,peer,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,187708,67.62674082658896,spot_baseline,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,187708,73.38621532738024,spot_peer,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,187708,0.651166911830314,relative_legacy,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,189869,51.953554797888025,spot_peer,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,189869,0.5736857472250235,relative_legacy,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,189869,41.30597852013915,peer,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,189869,27.66487437700886,baseline,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,191026,63.775923090653045,baseline,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,191026,0.9369066675613292,relative_legacy,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,191026,88.3116523043303,spot_peer,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,191026,67.17353423751291,peer,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,191026,88.36208162856714,spot_baseline,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,191935,0.0574143627934602,relative_legacy,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,191935,-3.0976730045792764,peer,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,191935,-21.607378111052512,baseline,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,191935,-41.50374992788438,spot_baseline,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,191935,-5.166641728344066,spot_peer,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,192418,-100.31991003835246,spot_peer,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,192418,-1.1160682947488658,relative_legacy,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,192418,-78.69744442497185,peer,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,192418,-161.1117064781247,baseline,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,192924,32.19280948873624,spot_baseline,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,192924,47.88063458581652,spot_peer,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,192924,0.6350091622754481,relative_legacy,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,192924,52.68630527950476,peer,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,192924,27.660804886923888,baseline,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,204737,73.64583084721212,spot_peer,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,204737,67.98741477466231,spot_baseline,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,204737,49.10074308922017,baseline,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,204737,56.470062428556034,peer,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,204737,0.7900110526972954,relative_legacy,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,218666,-93.617832843297,spot_peer,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,218666,-0.4404097119247948,relative_legacy,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,218666,-164.38561897747243,spot_baseline,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,218666,-71.369564831708,baseline,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,218666,-39.899723356685215,peer,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,220077,-232.1928094887363,spot_baseline,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,220077,-1.6586484531206085,relative_legacy,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,220077,-222.24935443196875,baseline,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,220077,-142.42590203420033,spot_peer,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,220077,-122.35320071410446,peer,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,222631,-122.69589351362606,baseline,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,222631,-69.25725611375071,peer,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,222631,-0.9219915014534246,relative_legacy,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,222631,-100.31991003835246,spot_peer,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,222631,-173.6965594166206,spot_baseline,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236037,-15.200309344505014,spot_baseline,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236037,6.85506377128668,peer,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236037,0.1898671698676706,relative_legacy,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236037,-8.124267817017646,baseline,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236037,13.766750707951209,spot_peer,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236038,0.4099513259293422,relative_legacy,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236038,43.64142746255924,spot_peer,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236038,24.32751355265583,peer,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236038,15.055640250587588,baseline,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236040,-47.27263372419191,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236040,-56.191687838728846,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236040,-27.31789698060036,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236040,-0.298071829241162,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236040,-100.0,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236041,0.4112953912019535,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236041,43.64142746255924,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236041,26.303440583379377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236041,14.846620257838977,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236041,23.951107032135443,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236043,38.38732301250264,baseline,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236043,73.51610421716728,spot_peer,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236043,40.96018640189032,peer,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236043,0.645829289747869,relative_legacy,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236045,-0.7053122330991516,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236045,-332.1928094887361,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236045,-57.9865828364382,peer,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236045,-90.6416512313874,baseline,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236045,-214.40657078465603,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236047,14.555127977563597,baseline,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236047,0.4115697416592621,relative_legacy,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236047,23.535240156031936,peer,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,236047,43.64142746255924,spot_peer,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,237476,-17.74437773953813,peer,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,237476,-73.69655941662059,spot_baseline,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,237476,-28.3392412878966,spot_peer,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,237476,-0.2416006322278915,relative_legacy,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,237476,-58.54838948072224,baseline,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,239758,34.60563062132847,spot_peer,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,239758,7.332223713144432,baseline,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,239758,17.97835979589552,peer,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,239758,0.3446596962876684,relative_legacy,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,239758,13.750352374993504,spot_baseline,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,239759,79.81173802118167,spot_peer,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,239759,76.55347463629771,spot_baseline,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,239759,43.294201168229854,baseline,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,239759,44.485177893465085,peer,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,239759,0.6951109941805178,relative_legacy,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,240414,40.78891294209141,baseline,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,240414,43.95496855561433,peer,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,240414,0.6565798124030964,relative_legacy,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,240414,73.51610421716728,spot_peer,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,240414,67.80719051126377,spot_baseline,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,240416,-53.04256708657525,baseline,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,240416,-100.0,spot_baseline,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,240416,-47.27263372419191,spot_peer,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,240416,-0.2582973577774348,relative_legacy,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,240416,-25.572924681356547,peer,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,246118,1.5354354667114112,spot_peer,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,246118,-32.19280948873623,spot_baseline,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,246118,-20.853433999743867,baseline,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,246118,1.8068068002094464,peer,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,246118,0.0550372232684561,relative_legacy,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,247214,41.01227047957529,spot_peer,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,247214,19.125407893331,baseline,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,247214,22.65085298086797,spot_baseline,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,247214,44.19347789604861,peer,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,247214,0.523833449249151,relative_legacy,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,250015,-73.69655941662059,spot_baseline,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,250015,-0.0878146182258636,relative_legacy,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,250015,-14.289698627753262,peer,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,250015,-36.48500451107203,baseline,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,250015,-28.3392412878966,spot_peer,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,261570,-173.55518953597027,baseline,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,261570,-106.9449885081541,peer,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,261570,-1.4300370612265725,relative_legacy,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,261570,-28.3392412878966,spot_peer,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34462,"Will the United States impose any new tariffs on Mexico before April 1, 2025?",2025-02-08 04:04:11.076917+00,261570,-73.69655941662059,spot_baseline,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34976 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,185699,43.25182968067298,baseline,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,185699,5.950985538797188,peer,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,185699,0.0515685637081274,relative_legacy,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,185699,73.11832415721999,spot_baseline,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,185699,9.53579407045365,spot_peer,MWG,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,187708,8.53139199428705,spot_peer,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,187708,39.857397653433445,baseline,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,187708,4.981824723235089,peer,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,187708,0.0416400593294969,relative_legacy,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,187708,71.72102990195957,spot_baseline,twsummerbot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,189869,5.718048709579388,spot_peer,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,189869,0.0135915379449863,relative_legacy,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,189869,5.469152727750648,peer,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,189869,49.51691258458286,baseline,VeritasAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,190710,58.496250072115615,spot_baseline,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,190710,-0.9748349639465216,spot_peer,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,190710,-0.0170994660505946,relative_legacy,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,190710,23.18695298737839,baseline,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,190710,-0.2412373786714944,peer,Bot_Pepa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,191026,17.932585740611742,spot_peer,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,191026,14.246225716378168,peer,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,191026,84.79969065549501,spot_baseline,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,191026,61.2209936608928,baseline,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,191026,0.1355584508937224,relative_legacy,manticAI,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,191935,0.1588822691020221,relative_legacy,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,191935,14.751717852480049,peer,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,191935,22.22127166318057,spot_peer,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,191935,90.76598278532894,spot_baseline,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,191935,58.136496742340526,baseline,pgodzinai,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,192418,23.539556835306986,spot_peer,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,192418,0.2510758463591037,relative_legacy,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,192418,30.59302052661093,peer,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,192418,85.1883850370856,baseline,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,192924,0.2241179413553858,relative_legacy,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,192924,92.5999418556223,spot_baseline,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,192924,23.539556835306986,spot_peer,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,192924,24.66156601472449,peer,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,192924,79.35084655726564,baseline,acm_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,204737,-15.49821916889823,peer,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,204737,29.395897902869443,spot_baseline,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,204737,-21.8927296922282,spot_peer,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,204737,-0.2852843342507707,relative_legacy,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,204737,23.32266077135793,baseline,SynapseSeer,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,218666,5.718048709579388,spot_peer,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,218666,0.0182486778082175,relative_legacy,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,218666,30.58170299295374,baseline,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,218666,2.6474383574882383,peer,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,218666,67.80719051126377,spot_baseline,GreeneiBot2,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,220077,-100.0,spot_baseline,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,220077,-114.90499823323198,spot_peer,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,220077,-1.5207695431875274,relative_legacy,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,220077,-107.06767996280836,peer,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,220077,-95.16032397084766,baseline,mmBot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,222631,26.93415816057548,baseline,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,222631,-0.2002799448728939,relative_legacy,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,222631,-15.814922452608938,spot_peer,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,222631,-10.382517186340856,peer,Grizeu_Bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236037,3.5266810957375267,peer,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236037,38.62323813766048,baseline,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236037,67.80719051126377,spot_baseline,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236037,5.718048709579388,spot_peer,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236037,0.0208949119539001,relative_legacy,metac-o1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236038,-0.0905838267473504,relative_legacy,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236038,-8.129651266297053,spot_peer,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236038,-4.427376789028235,peer,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236038,28.08191270646369,baseline,metac-gpt-4o,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236040,21.800127182851423,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236040,-8.842634087528827,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236040,-15.814922452608938,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236040,-0.1515680428473529,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236041,21.83364209658171,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236041,-15.814922452608938,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236041,-0.1519174735989932,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236041,-8.860639548156747,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236043,5.718048709579388,spot_peer,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236043,39.14614881799361,baseline,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236043,0.0209040937320005,relative_legacy,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236043,3.5906108626276745,peer,metac-grok-2-1212,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236045,-3.777808396767795,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236045,-0.0255150600662169,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236045,-1.0077749089495067,peer,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236045,54.59683691052925,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236045,15.901958109840846,baseline,metac-Gemini-Exp-1206,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236047,-0.0885613020635677,relative_legacy,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236047,-8.129651266297053,spot_peer,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236047,-4.366731585749271,peer,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236047,27.553095409567437,baseline,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,237476,-0.0545854127065019,relative_legacy,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,237476,47.80450515045448,baseline,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,237476,-0.9748349639465216,spot_peer,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,237476,1.9132754228184947,peer,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,237476,58.496250072115615,spot_baseline,NextWorldLab,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,239758,17.932585740611742,spot_peer,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,239758,0.1129943387359359,relative_legacy,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,239758,10.06708983473118,peer,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,239758,46.50092958097039,baseline,metac-perplexity,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,239759,50.44874814142208,baseline,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,239759,13.05573711311387,peer,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,239759,0.1548792850010391,relative_legacy,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,239759,23.539556835306986,spot_peer,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,240414,17.932585740611742,spot_peer,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,240414,84.79969065549501,spot_baseline,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,240414,51.53030502217566,baseline,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,240414,11.259879312121472,peer,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,240414,0.120667586428415,relative_legacy,minefrac1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,240416,33.143097204219586,baseline,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,240416,58.496250072115615,spot_baseline,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,240416,-0.9748349639465216,spot_peer,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,240416,-0.0318272334049511,relative_legacy,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,240416,-0.2917175225479717,peer,metac-o1-preview,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,246118,0.1220536934991457,relative_legacy,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,246118,84.79969065549501,spot_baseline,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,246118,55.00675394101292,baseline,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,246118,17.932585740611742,spot_peer,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,246118,12.189111246758726,peer,laylaps,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,247214,-0.4232182181213442,spot_peer,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,247214,5.192191905247868,peer,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,247214,59.26364286065772,spot_baseline,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,247214,-0.0615478477723156,relative_legacy,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,247214,53.45177733306984,baseline,ajf-bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,250015,-0.1446929003571265,relative_legacy,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,250015,20.783834137496967,baseline,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,250015,-15.814922452608938,spot_peer,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,250015,-8.479580134667604,peer,metac-deepseek-r1,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,261570,5.36960002272534,peer,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,261570,48.013819411052296,baseline,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,261570,0.0178169147766555,relative_legacy,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,261570,17.932585740611742,spot_peer,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34463,"Will the United States impose any new tariffs on Denmark before April 1, 2025?",2025-02-08 04:04:11.108258+00,261570,84.79969065549501,spot_baseline,RPM_bot,True,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,0.7,2025-02-13 21:00:00+00,34977 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,187708,35.320405061915714,peer,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,187708,36.25648799659142,baseline,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,187708,63.41285575250407,spot_baseline,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,187708,-0.0175315122631467,relative_legacy,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,187708,65.05417297618703,spot_peer,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,189869,43.20883486597226,peer,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,189869,-0.142397964566353,relative_legacy,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,189869,43.97301412551562,baseline,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,189869,54.33466572164635,spot_peer,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,190710,-158.2752853088301,peer,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,190710,-237.75375037306603,baseline,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,190710,-332.1928094887361,spot_baseline,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,190710,-220.12729655834045,spot_peer,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,190710,-2.829194719652476,relative_legacy,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,191026,85.9969548221026,spot_baseline,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,191026,81.33444175558887,spot_peer,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,191026,69.88548231158454,baseline,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,191026,0.1791691111459806,relative_legacy,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,191026,65.64338328351482,peer,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,191935,0.1348449583367884,relative_legacy,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,191935,82.75717256161322,spot_peer,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,191935,50.44438140380994,peer,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,191935,87.97057662822883,spot_baseline,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,191935,55.29472076605047,baseline,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,192418,67.80719051126377,spot_baseline,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,192418,68.22193055459671,spot_peer,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,192418,65.539115309615,baseline,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,192418,55.90528804309674,peer,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,192418,0.0294178588052936,relative_legacy,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,192924,74.52689122350593,spot_peer,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,192924,0.1077572461206488,relative_legacy,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,192924,61.68253275535539,peer,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,192924,66.20985307167628,baseline,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,204737,59.07217700098411,spot_baseline,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,204737,61.92509456832121,spot_peer,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,204737,-0.0288716762136849,relative_legacy,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,204737,45.09575203132576,peer,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,204737,43.25640180791336,baseline,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,218666,-2.9280847200673823,relative_legacy,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,218666,-248.1200560156073,baseline,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,218666,-165.9284501850829,peer,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,218666,-350.6352666024788,spot_baseline,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,218666,-233.42196719536847,spot_peer,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,220077,76.04988733514061,baseline,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,220077,62.57248779049692,peer,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,220077,0.1139551651704693,relative_legacy,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,220077,74.52689122350593,spot_peer,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,222631,-32.19280948873623,spot_baseline,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,222631,-20.84423001250688,baseline,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,222631,-3.8460578506539416,peer,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,222631,-3.865376223637594,spot_peer,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,222631,-0.626128453707538,relative_legacy,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236037,0.1020948256944193,relative_legacy,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236037,76.55347463629771,spot_baseline,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236037,62.1803257508049,baseline,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236037,74.52689122350593,spot_peer,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236037,60.08404219810416,peer,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236038,-220.12729655834045,spot_peer,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236038,-185.2279405047612,peer,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236038,-275.7316706294372,baseline,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236038,-332.1928094887361,spot_baseline,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236038,-3.2849801210375564,relative_legacy,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236040,-124.6335968919156,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236040,-2.4509698991766777,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236040,-148.03998978010625,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236040,-192.4162661140504,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236040,-232.1928094887363,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236041,44.37742206361626,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236041,48.54268271702416,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236041,54.33466572164635,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236041,-0.1247369127247723,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236041,40.17992423989016,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236043,0.1759835332441604,relative_legacy,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236043,70.33650774552956,baseline,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236043,80.47136626286061,spot_peer,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236043,66.31209695028426,peer,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236045,-17.75264105658796,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236045,-51.45731728297583,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236045,-0.6454838566907767,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236045,-11.628647435333724,peer,metac-Gemini-Exp-1206,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236045,-28.137175444361212,baseline,metac-Gemini-Exp-1206,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236047,40.17265320016015,baseline,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236047,54.33466572164635,spot_peer,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236047,-0.1247208070059495,relative_legacy,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,236047,44.35890524604324,peer,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,237476,67.80719051126377,spot_baseline,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,237476,43.09748973786499,baseline,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,237476,41.87122652257544,peer,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,237476,0.0094603299142499,relative_legacy,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,237476,68.22193055459671,spot_peer,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,239758,80.47136626286061,spot_peer,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,239758,68.69045393621299,baseline,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,239758,64.7229787375911,peer,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,239758,0.1684843079040663,relative_legacy,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,239759,65.59256463496578,baseline,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,239759,61.90689812870735,peer,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,239759,0.1629138893455487,relative_legacy,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,239759,80.47136626286061,spot_peer,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,240414,39.039515132282745,peer,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,240414,43.09299338149591,baseline,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,240414,84.79969065549501,spot_baseline,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,240414,80.47136626286061,spot_peer,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,240414,0.0911720871519853,relative_legacy,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,240416,-3.233687159887649,relative_legacy,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,240416,-220.12729655834045,spot_peer,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,240416,-332.1928094887361,spot_baseline,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,240416,-181.83850099273505,peer,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,240416,-271.2579936951354,baseline,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,246118,86.09435727496927,spot_peer,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,246118,50.65809404892263,baseline,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,246118,45.18747044509614,peer,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,246118,0.1421405267464536,relative_legacy,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,246118,92.5999418556223,spot_baseline,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,250015,-105.8716185368571,spot_peer,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,250015,-173.6965594166206,spot_baseline,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,250015,-1.8567024631747155,relative_legacy,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,250015,-83.93402270403567,peer,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,250015,-135.92561560057172,baseline,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,261570,23.81407411578279,baseline,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,261570,-100.0,spot_baseline,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,261570,-52.74575366519409,spot_peer,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,261570,-0.1764929220126866,relative_legacy,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34464,"Will the United States impose any new tariffs on Colombia before April 1, 2025?",2025-02-08 04:04:11.138891+00,261570,27.578881213559665,peer,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.7,2025-02-14 07:00:00+00,34978 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,185699,3.51026840145561,baseline,MWG,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,185699,62.29303509201767,spot_baseline,MWG,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,185699,-15.415081877521786,spot_peer,MWG,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,185699,-0.0155230666216278,relative_legacy,MWG,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,185699,-0.8686536904259722,peer,MWG,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,187708,54.52772617673969,baseline,twsummerbot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,187708,0.0061907805045513,relative_legacy,twsummerbot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,187708,6.945157707443669,spot_peer,twsummerbot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,187708,3.461643237698708,peer,twsummerbot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,187708,93.35726382610238,spot_baseline,twsummerbot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,189869,69.6603843015475,baseline,VeritasAI,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,189869,-5.150322126794558,spot_peer,VeritasAI,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,189869,-0.1380852996377183,relative_legacy,VeritasAI,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,189869,-5.219667468490909,peer,VeritasAI,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,190710,3.877916537722724,peer,Bot_Pepa,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,190710,65.95039091744383,baseline,Bot_Pepa,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,190710,0.0019415416030783,relative_legacy,Bot_Pepa,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,190710,6.400032288497971,spot_peer,Bot_Pepa,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,190710,92.5999418556223,spot_baseline,Bot_Pepa,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,191026,4.343998293210449,peer,manticAI,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,191026,6.126392726089757,spot_peer,manticAI,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,191026,92.2197848396367,spot_baseline,manticAI,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,191026,-0.0008580921666598,relative_legacy,manticAI,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,191026,74.958959809347,baseline,manticAI,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,191935,0.0157474889945922,relative_legacy,pgodzinai,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,191935,44.46754355578751,baseline,pgodzinai,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,191935,8.56357208225465,spot_peer,pgodzinai,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,191935,95.60566524124027,spot_baseline,pgodzinai,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,191935,3.5004010271495485,peer,pgodzinai,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,191975,-0.0304932665255842,relative_legacy,jkraybill_bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,191975,-1.6395296969294872,peer,jkraybill_bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,191975,7.163254149474737,baseline,jkraybill_bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,191975,63.846004921378096,spot_baseline,jkraybill_bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,191975,-14.297243808855333,spot_peer,jkraybill_bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,192418,94.11063109464314,spot_baseline,InstitutPelFutur,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,192418,7.487436505486346,spot_peer,InstitutPelFutur,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,192418,6.739796995059359,peer,InstitutPelFutur,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,192418,0.0212917011680477,relative_legacy,InstitutPelFutur,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,192418,90.47878773176608,baseline,InstitutPelFutur,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,192924,-0.7886185694028904,relative_legacy,acm_bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,192924,0.0,spot_baseline,acm_bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,192924,0.0,baseline,acm_bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,192924,-53.08078051177849,peer,acm_bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,192924,-60.254025121712246,spot_peer,acm_bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,204737,6.400032288497971,spot_peer,SynapseSeer,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,204737,3.982219582049465,peer,SynapseSeer,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,204737,67.5528396719398,baseline,SynapseSeer,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,204737,92.5999418556223,spot_baseline,SynapseSeer,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,204737,0.0019415416030783,relative_legacy,SynapseSeer,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,218666,89.84018599921933,spot_baseline,GreeneiBot2,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,218666,2.230320828838232,peer,GreeneiBot2,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,218666,-0.0160342277644218,relative_legacy,GreeneiBot2,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,218666,4.413541567179247,spot_peer,GreeneiBot2,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,218666,58.51772937480699,baseline,GreeneiBot2,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,220077,7.869350762588227,peer,mmBot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,220077,0.035665090829591,relative_legacy,mmBot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,220077,8.56357208225465,spot_peer,mmBot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,220077,95.60566524124027,spot_baseline,mmBot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,220077,94.40271596386182,baseline,mmBot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,222631,3.481796938353722,peer,Grizeu_Bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,222631,92.5999418556223,spot_baseline,Grizeu_Bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,222631,6.400032288497971,spot_peer,Grizeu_Bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,222631,0.0019104623245718,relative_legacy,Grizeu_Bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,222631,59.55826665120785,baseline,Grizeu_Bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236037,77.07879059608874,baseline,metac-o1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236037,0.0262388996904591,relative_legacy,metac-o1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236037,8.56357208225465,spot_peer,metac-o1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236037,95.60566524124027,spot_baseline,metac-o1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236037,6.261950069610417,peer,metac-o1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236038,84.79969065549501,spot_baseline,metac-gpt-4o,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236038,70.20235613090293,baseline,metac-gpt-4o,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236038,0.0653657008013935,peer,metac-gpt-4o,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236038,-0.0612239226346661,relative_legacy,metac-gpt-4o,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236038,0.7853593104308841,spot_peer,metac-gpt-4o,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236040,-0.0351137575376616,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236040,87.97057662822883,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236040,3.067784238919072,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236040,1.926640377726399,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236040,72.51665148542672,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236041,9.628670176539655,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236041,97.08536543404836,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236041,80.067908309369,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236041,7.400542640687906,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236041,0.0400876316363479,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236043,70.0518333669329,baseline,metac-grok-2-1212,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236043,0.0426378321499079,peer,metac-grok-2-1212,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236043,-0.0612288652947782,relative_legacy,metac-grok-2-1212,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236043,0.7853593104308841,spot_peer,metac-grok-2-1212,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236047,-0.128962530653669,relative_legacy,metac-Llama-3.1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236047,-4.915358913217742,peer,metac-Llama-3.1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236047,62.95535696215765,baseline,metac-Llama-3.1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236047,76.55347463629771,spot_baseline,metac-Llama-3.1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,236047,-5.150322126794558,spot_peer,metac-Llama-3.1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,237476,48.28946731189605,baseline,NextWorldLab,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,237476,73.11832415721999,spot_baseline,NextWorldLab,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,237476,-7.622966414219176,spot_peer,NextWorldLab,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,237476,-0.1267207262857515,relative_legacy,NextWorldLab,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,237476,-5.718120952443499,peer,NextWorldLab,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,239758,74.24855176842016,baseline,metac-perplexity,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,239758,4.466185168363205,peer,metac-perplexity,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,239758,0.0019913407884265,relative_legacy,metac-perplexity,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,239758,6.400032288497971,spot_peer,metac-perplexity,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,239759,6.013388236875812,peer,metac-exa,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,239759,95.60566524124027,spot_baseline,metac-exa,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,239759,8.56357208225465,spot_peer,metac-exa,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,239759,0.0253978904299101,relative_legacy,metac-exa,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,239759,74.61788239934864,baseline,metac-exa,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,240414,76.55347463629771,spot_baseline,minefrac1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,240414,-3.132268423489899,peer,minefrac1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,240414,38.61323064766042,baseline,minefrac1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,240414,-0.0791702183414603,relative_legacy,minefrac1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,240414,-5.150322126794558,spot_peer,minefrac1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,240416,7.151985228814883,peer,metac-o1-preview,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,240416,9.628670176539655,spot_peer,metac-o1-preview,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,240416,0.0382588419448614,relative_legacy,metac-o1-preview,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,240416,78.45383125201633,baseline,metac-o1-preview,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,240416,97.08536543404836,spot_baseline,metac-o1-preview,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,246118,2.8982155828160887,peer,laylaps,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,246118,92.5999418556223,spot_baseline,laylaps,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,246118,0.0017674455286154,relative_legacy,laylaps,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,246118,6.400032288497971,spot_peer,laylaps,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,246118,50.01078498934324,baseline,laylaps,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,250015,1.7359265018797143,peer,metac-deepseek-r1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,250015,87.97057662822883,spot_baseline,metac-deepseek-r1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,250015,3.067784238919072,spot_peer,metac-deepseek-r1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,250015,-0.0347484540544779,relative_legacy,metac-deepseek-r1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,250015,69.79069200410203,baseline,metac-deepseek-r1,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,261570,48.93731582023172,baseline,RPM_bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,261570,-0.0844068249478041,relative_legacy,RPM_bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,261570,-2.875901885620118,peer,RPM_bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,261570,76.55347463629771,spot_baseline,RPM_bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34465,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:04:11.172777+00,261570,-5.150322126794558,spot_peer,RPM_bot,True,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34979 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,185699,20.8254989252992,spot_peer,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,185699,10.737932691898996,baseline,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,185699,0.0143193732866688,relative_legacy,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,185699,2.8581334070114046,peer,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,185699,78.24085649273731,spot_baseline,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,187708,0.0,baseline,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,187708,-20.55479153193729,peer,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,187708,-0.3970852249099597,relative_legacy,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,187708,-35.57622732053841,spot_peer,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,187708,0.0,spot_baseline,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,189869,4.924724468027572,peer,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,189869,-0.5831147119322766,spot_peer,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,189869,-0.1367213520706681,relative_legacy,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,189869,43.80719992728418,baseline,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,190710,48.54268271702416,spot_baseline,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,190710,0.7850665988949883,peer,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,190710,-0.1160271479076383,relative_legacy,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,190710,34.51325651376816,baseline,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,190710,-0.5831147119322766,spot_peer,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,191026,47.94815700232313,baseline,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,191026,58.97634869849772,spot_baseline,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,191026,6.93823409234883,spot_peer,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,191026,-0.0466193644119839,relative_legacy,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,191026,7.512406074504176,peer,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,191935,18.06834186827268,spot_peer,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,191935,39.70616200539025,baseline,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,191935,10.14709237489856,peer,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,191935,0.037383399054032,relative_legacy,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,191935,74.416109557041,spot_baseline,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,192418,-126.19782540306925,baseline,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,192418,-1.8404461158365173,relative_legacy,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,192418,-130.87046343545055,spot_peer,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,192418,-132.19280948873626,spot_baseline,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,192418,-125.02905097267944,peer,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,192924,63.22682154995129,spot_baseline,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,192924,54.24985728059463,baseline,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,192924,-0.0107285508438368,relative_legacy,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,192924,10.002285496301733,spot_peer,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,192924,11.839497650531492,peer,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,204737,18.269229751619037,spot_baseline,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,204737,-22.40643162346836,spot_peer,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,204737,13.525461147695037,baseline,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,204737,-0.3432165738306249,relative_legacy,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,204737,-15.315393595318644,peer,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,218666,-0.033695683257598,relative_legacy,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,218666,60.7862902831235,spot_baseline,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,218666,8.242972234964864,spot_peer,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,218666,36.80139927652742,baseline,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,218666,5.7643264026283285,peer,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,220077,19.6091107899273,spot_peer,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,220077,75.16992919662307,baseline,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,220077,31.447926866214104,peer,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,220077,0.1523496511522427,relative_legacy,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,222631,9.454319609642416,peer,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,222631,67.80719051126377,spot_baseline,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,222631,13.304150121018088,spot_peer,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,222631,0.0122426777769742,relative_legacy,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,222631,43.55154881789701,baseline,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236037,17.492256506100695,peer,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236037,61.34469141231367,baseline,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236037,0.0941805561211668,relative_legacy,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236037,19.6091107899273,spot_peer,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236037,76.55347463629771,spot_baseline,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236038,40.101038618184646,baseline,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236038,-0.5831147119322766,spot_peer,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236038,-0.1320134976065706,relative_legacy,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236038,1.5554011907761849,peer,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236040,-0.0500599928180179,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236040,7.399294269193566,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236040,48.03317512261293,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236040,6.592143922710675,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236041,31.08791834821897,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236041,-8.29034381591934,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236041,-0.219580838002773,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236041,-4.930255612653001,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236043,25.553585829281968,spot_peer,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236043,0.166401344280829,relative_legacy,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236043,23.198616034215924,peer,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236043,69.79826395414928,baseline,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236047,-46.5777610381241,peer,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236047,-58.78315665721622,spot_peer,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236047,-26.31367130042065,baseline,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,236047,-0.7915444197246012,relative_legacy,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,237476,5.636365442692872,peer,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,237476,-0.0475601062668111,relative_legacy,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,237476,58.496250072115615,spot_baseline,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,237476,6.592143922710675,spot_peer,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,237476,40.23748518134161,baseline,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,239758,60.86281837693021,baseline,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,239758,17.296609832761796,peer,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,239758,0.0930649265916274,relative_legacy,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,239758,19.6091107899273,spot_peer,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,239759,21.80806584963082,peer,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,239759,0.1573391808162881,relative_legacy,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,239759,25.553585829281968,spot_peer,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,239759,66.78005042640379,baseline,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,240414,67.80719051126377,spot_baseline,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,240414,13.304150121018088,spot_peer,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,240414,0.0,relative_legacy,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,240414,7.138054888806368,peer,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,240414,34.13214994044788,baseline,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,240416,0.0236263863791798,relative_legacy,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,240416,13.304150121018088,spot_peer,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,240416,67.80719051126377,spot_baseline,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,240416,12.271813887087482,peer,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,240416,53.97784810703296,baseline,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,246118,14.575219149095584,peer,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,246118,84.79969065549501,spot_baseline,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,246118,25.553585829281968,spot_peer,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,246118,0.0967366007608108,relative_legacy,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,246118,46.519831045528,baseline,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,250015,-8.29034381591934,spot_peer,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,250015,-0.2083447947612055,relative_legacy,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,250015,-4.960009913129556,peer,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,250015,29.294662177419752,baseline,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,261570,4.262072161127655,peer,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,261570,13.304150121018088,spot_peer,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,261570,67.80719051126377,spot_baseline,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,261570,35.56101620496558,baseline,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34466,"Will Turkey and Syria announce the signing of a maritime demarcation agreement before April 1, 2025?",2025-02-08 04:04:11.202985+00,261570,-0.0569655364214728,relative_legacy,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34980 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,185699,2.7797133511792373,peer,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,185699,94.11063109464314,spot_baseline,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,185699,53.95942369569335,baseline,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,185699,10.020617811786574,spot_peer,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,185699,0.0090628116112092,relative_legacy,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,187708,87.02660703959828,spot_baseline,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,187708,4.928484610984758,spot_peer,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,187708,49.82812482166116,baseline,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,187708,-0.1443979924617748,peer,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,187708,-0.0315096957881341,relative_legacy,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,189869,-0.0613921962632233,relative_legacy,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,189869,-2.0166280403618444,peer,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,189869,3.3277341382606886,spot_peer,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,189869,76.37167190632611,baseline,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,190710,60.04634964565128,baseline,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,190710,-1.4805504152424582,peer,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,190710,-0.0529455738986599,relative_legacy,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,190710,3.3277341382606886,spot_peer,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,190710,84.79969065549501,spot_baseline,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,191026,-1.83575044873864,peer,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,191026,68.95444181914255,baseline,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,191026,-0.0597557559794733,relative_legacy,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,191026,3.3277341382606886,spot_peer,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,191026,84.79969065549501,spot_baseline,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,191935,53.07182955162526,baseline,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,191935,2.8564199952748157,peer,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,191935,0.0101799491630108,relative_legacy,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,191935,94.41087991079549,spot_baseline,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,191935,10.236442455146172,spot_peer,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,191975,1.857832341793344,spot_peer,jkraybill_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,191975,18.301362148598244,baseline,jkraybill_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,191975,-0.0217726780888911,relative_legacy,jkraybill_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,191975,-0.3322937827751979,peer,jkraybill_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,191975,82.75480705286485,spot_baseline,jkraybill_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,192418,93.59011799741954,baseline,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,192418,98.5500430304885,spot_baseline,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,192418,13.211752784635118,spot_peer,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,192418,0.0676353275620713,relative_legacy,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,192418,8.014544202558382,peer,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,192924,75.87180961111166,baseline,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,192924,0.5512861110777107,peer,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,192924,-0.0276006117227481,relative_legacy,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,192924,6.169109239250332,spot_peer,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,192924,88.75252707415875,spot_baseline,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,204737,64.3929054976087,baseline,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,204737,86.8686765322135,spot_baseline,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,204737,4.814961114477035,spot_peer,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,204737,-0.0401962747099682,relative_legacy,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,204737,-0.484673879795465,peer,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,218666,9.587616332181186,spot_peer,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,218666,0.0050740382835542,relative_legacy,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,218666,2.4792387439148103,peer,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,218666,52.23593303935084,baseline,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,218666,93.50825233186616,spot_baseline,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,220077,74.61728122215287,baseline,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,220077,-8.331828463342962,peer,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,220077,-2.599805074771024,spot_peer,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,220077,-0.1412597036571171,relative_legacy,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,222631,2.3443145394213767,peer,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,222631,59.20398140522102,baseline,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,222631,92.5999418556223,spot_baseline,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,222631,8.934705232955949,spot_peer,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,222631,0.002287718495008,relative_legacy,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236037,77.22242557640429,baseline,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236037,5.29089102364977,peer,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236037,0.0379684961594575,relative_legacy,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236037,12.158914262440646,spot_peer,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236037,97.08536543404836,spot_baseline,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236038,84.79969065549501,spot_baseline,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236038,-0.0602192175594589,relative_legacy,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236038,-1.86517521736973,peer,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236038,69.93004452695156,baseline,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236038,3.3277341382606886,spot_peer,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236040,8.934705232955949,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236040,75.7580005692141,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236040,2.7820949635631065,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236040,0.0036824762630008,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236041,0.003665065567091,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236041,8.934705232955949,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236041,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236041,75.75900686018056,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236041,2.7808170070134075,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236043,8.934705232955949,spot_peer,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236043,0.0037354857846696,relative_legacy,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236043,2.7879625901453307,peer,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236043,75.89877587111602,baseline,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236045,31.482852403346936,baseline,metac-Gemini-Exp-1206,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236045,12.158914262440646,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236045,97.08536543404836,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236045,2.520448331359371,peer,metac-Gemini-Exp-1206,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236045,0.0145400926407716,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236047,-0.0597568581970397,relative_legacy,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236047,3.3277341382606886,spot_peer,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236047,84.79969065549501,spot_baseline,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236047,68.95564008450943,baseline,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,236047,-1.8357906770425088,peer,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,237476,65.85535078361568,baseline,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,237476,8.934705232955949,spot_peer,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,237476,0.002287718495008,relative_legacy,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,237476,2.516487131419403,peer,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,239758,0.0259570947143428,relative_legacy,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,239758,95.60566524124027,spot_baseline,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,239758,11.09527720806549,spot_peer,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,239758,75.30265661807779,baseline,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,239758,4.401375072416788,peer,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,239759,0.002287718495008,relative_legacy,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,239759,8.934705232955949,spot_peer,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,239759,2.6998493323711497,peer,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,239759,73.45351423769382,baseline,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,240414,76.55347463629771,spot_baseline,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,240414,-0.0805821278192769,relative_legacy,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,240414,38.44361374896801,baseline,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,240414,-2.599805074771024,spot_peer,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,240414,-3.826085190013466,peer,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,240416,2.7052734371670795,peer,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,240416,73.65944720807245,baseline,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,240416,8.934705232955949,spot_peer,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,240416,0.002287718495008,relative_legacy,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,246118,92.5999418556223,spot_baseline,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,246118,0.0,relative_legacy,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,246118,2.081947148527078,peer,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,246118,50.574976317646055,baseline,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,246118,8.934705232955949,spot_peer,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,250015,3.3277341382606886,spot_peer,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,250015,-0.0574382750518412,relative_legacy,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,250015,64.92756858510704,baseline,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,250015,84.79969065549501,spot_baseline,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,250015,-1.6803697955232506,peer,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,261570,-0.3877076381154368,relative_legacy,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,261570,-173.6965594166206,spot_baseline,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,261570,-182.48435896687093,spot_peer,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,261570,-25.759119078391503,peer,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34467,"Will the US formally recognize Nicolás Maduro as the President of Venezuela before April 1, 2025?",2025-02-08 04:04:11.538846+00,261570,18.63444956035164,baseline,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34981 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,185699,-11.053089256524128,spot_peer,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,185699,0.7547451540031681,baseline,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,185699,-0.0264360507368826,relative_legacy,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,185699,8.406426478847456,spot_baseline,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,185699,-0.9923676337522448,peer,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,187708,40.89110676637178,spot_peer,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,187708,0.258774046417291,relative_legacy,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,187708,80.57051848385113,spot_baseline,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,187708,25.90541553541431,peer,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,187708,48.86420480968652,baseline,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,189869,-40.27669081356647,spot_peer,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,189869,-0.5658707724000149,relative_legacy,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,189869,-29.02713732153569,baseline,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,189869,-28.852358410680083,peer,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,190710,3.0874165103080795,peer,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,190710,10.141428517610162,spot_peer,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,190710,37.85116232537298,spot_baseline,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,190710,11.143824680084418,baseline,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,190710,-0.0003092272101723,relative_legacy,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,191026,28.924077785002478,peer,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,191026,67.80719051126377,spot_baseline,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,191026,0.243326175592101,relative_legacy,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,191026,31.703977936889395,spot_peer,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,191026,55.14968593945977,baseline,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,191935,12.758309123705002,peer,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,191935,51.60151470036649,spot_baseline,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,191935,20.039024112674657,spot_peer,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,191935,0.0808812001303676,relative_legacy,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,191935,30.468666661670856,baseline,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,191975,39.542845534031535,spot_baseline,jkraybill_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,191975,2.374849753967334,peer,jkraybill_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,191975,0.0032078261638931,relative_legacy,jkraybill_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,191975,11.359113404341754,spot_peer,jkraybill_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,191975,8.221060396757018,baseline,jkraybill_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,192418,-1.1884755467977914,relative_legacy,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,192418,-76.3843153914806,peer,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,192418,-89.08476000446977,spot_peer,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,192418,-94.42866869767506,baseline,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,192924,37.85116232537298,spot_baseline,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,192924,0.0203782459769869,relative_legacy,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,192924,10.141428517610162,spot_peer,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,192924,13.540014422659056,peer,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,192924,32.208593919249715,baseline,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,204737,-1.7707708248866751,peer,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,204737,16.992500144231236,spot_baseline,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,204737,-4.872776012774104,spot_peer,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,204737,-0.1541668451850725,relative_legacy,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,204737,12.534004208540564,baseline,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,218666,20.53574535100385,baseline,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,218666,6.548623049452912,peer,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,218666,0.010983751167335,relative_legacy,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,218666,11.72689677734587,spot_peer,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,218666,40.05379295837285,spot_baseline,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,220077,-54.14341235534381,spot_peer,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,220077,-40.51499784411428,peer,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,220077,-0.730093456399568,relative_legacy,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,220077,-49.861360169345126,baseline,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,222631,-11.132492208183695,peer,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,222631,-0.1949364553753275,relative_legacy,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,222631,-40.27669081356647,spot_peer,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,222631,-32.19280948873623,spot_baseline,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,222631,-8.94523413702182,baseline,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236037,3.812711853469336,peer,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236037,26.303440583379377,spot_baseline,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236037,1.8293011822813643,spot_peer,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236037,-0.0910781558533036,relative_legacy,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236037,20.689694758120137,baseline,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236038,17.837256395112043,spot_peer,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236038,18.09971100849381,peer,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236038,39.97920801562023,baseline,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236038,0.0893067471076129,relative_legacy,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236040,30.81722546457095,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236040,-0.0003154697834067,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236040,10.141428517610162,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236040,11.18919080107704,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236041,-0.0002829151804537,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236041,11.249483332808158,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236041,30.86770559364535,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236041,10.141428517610162,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236043,-55.19058641820512,peer,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236043,-60.26037119578346,baseline,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236043,-73.69655941662059,spot_baseline,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236043,-70.15136756817446,spot_peer,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236043,-0.9108500885030276,relative_legacy,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236047,0.0860900612812395,relative_legacy,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236047,17.837256395112043,spot_peer,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236047,39.254316353404974,baseline,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,236047,17.309637866455557,peer,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,237476,56.07664634531995,baseline,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,237476,37.99961174090378,spot_peer,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,237476,0.283191409503815,relative_legacy,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,237476,29.90342639854669,peer,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,239758,37.85116232537298,spot_baseline,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,239758,10.141428517610162,spot_peer,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,239758,-0.0003008217156265,relative_legacy,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,239758,10.21545651978786,peer,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,239758,29.42496118143906,baseline,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,239759,37.85116232537298,spot_baseline,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,239759,30.11847558087384,baseline,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,239759,10.650230982323524,peer,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,239759,-0.0003161050876444,relative_legacy,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,239759,10.141428517610162,spot_peer,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,240414,24.1681100033312,baseline,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,240414,9.385808742085796,peer,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,240414,0.0529210078047673,relative_legacy,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,240414,17.837256395112043,spot_peer,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,240414,48.54268271702416,spot_baseline,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,240416,20.555073283770984,baseline,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,240416,-0.0906966505119433,relative_legacy,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,240416,26.303440583379377,spot_baseline,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,240416,1.8293011822813643,spot_peer,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,240416,3.735739344748535,peer,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,246118,-0.0003092272101723,relative_legacy,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,246118,37.85116232537298,spot_baseline,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,246118,10.141428517610162,spot_peer,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,246118,20.57478934208173,baseline,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,246118,6.169018543890147,peer,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,250015,-0.0003038765481396,relative_legacy,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,250015,19.876282791722726,baseline,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,250015,5.902939841304876,peer,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,250015,10.141428517610162,spot_peer,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,261570,17.837256395112043,spot_peer,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,261570,-15.92417268419784,peer,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,261570,-8.621154559945225,baseline,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,261570,48.54268271702416,spot_baseline,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34468,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:04:11.57048+00,261570,-0.3220580388979495,relative_legacy,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34982 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,185699,0.1114010788118863,relative_legacy,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,185699,22.527656139068107,baseline,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,185699,14.186311664188628,peer,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,185699,25.2897488294125,spot_peer,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,185699,42.22330006830476,spot_baseline,MWG,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,187708,-20.387033432014576,peer,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,187708,-38.553725302656886,spot_peer,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,187708,-25.32111007760484,baseline,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,187708,-46.59383975788817,spot_baseline,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,187708,-0.3696925100001029,relative_legacy,twsummerbot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,189869,23.713598847709896,baseline,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,189869,13.846246604493135,spot_peer,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,189869,0.061287050696458,relative_legacy,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,189869,18.970879529917475,peer,VeritasAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,190710,7.666671659309863,baseline,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,190710,26.303440583379377,spot_baseline,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,190710,13.846246604493135,spot_peer,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,190710,0.0302080062469309,relative_legacy,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,190710,4.576222692399654,peer,Bot_Pepa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,191026,2.1663603397737905,peer,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,191026,9.085343045111347,spot_baseline,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,191026,1.4695458129677637,spot_peer,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,191026,-0.1481235141581907,relative_legacy,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,191026,7.391070191184593,baseline,manticAI,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,191935,-31.494444431939645,spot_peer,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,191935,-18.342605438176825,baseline,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,191935,-15.095023271057656,peer,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,191935,-0.2844206399757437,relative_legacy,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,191935,-36.773178450048725,spot_baseline,pgodzinai,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,191975,2.2522815747967484,baseline,jkraybill_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,191975,0.7691738529859913,peer,jkraybill_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,191975,-0.0198081454643253,relative_legacy,jkraybill_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,191975,0.9815274831620068,spot_peer,jkraybill_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,191975,8.406426478847456,spot_baseline,jkraybill_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,192418,-76.94310393591128,spot_peer,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,192418,-93.79276611407596,baseline,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,192418,-66.85653984106618,peer,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,192418,-1.0773887486103335,relative_legacy,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,192924,-0.0080632979557142,relative_legacy,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,192924,13.846246604493135,spot_peer,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,192924,26.303440583379377,spot_baseline,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,192924,22.26933670664428,baseline,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,192924,14.163879666007237,peer,acm_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,204737,-38.21897299740764,baseline,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,204737,-30.723954592217176,peer,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,204737,-0.5741040576780908,relative_legacy,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,204737,-42.04968680482254,spot_peer,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,204737,-51.45731728297583,spot_baseline,SynapseSeer,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,218666,-0.1340391714765131,relative_legacy,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,218666,-4.708752042243642,peer,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,218666,-4.161747308354976,baseline,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,218666,-8.926733809708741,spot_baseline,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,218666,-11.477882633792714,spot_peer,GreeneiBot2,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,220077,-100.0,spot_baseline,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,220077,-1.0773887486103335,relative_legacy,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,220077,-96.34705285893548,baseline,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,220077,-66.85653984106618,peer,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,220077,-76.94310393591128,spot_peer,mmBot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,222631,-11.151608195630676,peer,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,222631,-14.292532978944656,baseline,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,222631,-0.1857764746697039,relative_legacy,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,222631,-42.04968680482254,spot_peer,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236037,22.14697184471174,spot_peer,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236037,29.524760107493467,baseline,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236037,18.170231057805864,peer,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236037,0.0859684084632242,relative_legacy,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236037,37.85116232537298,spot_baseline,metac-o1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236038,39.86145894117373,baseline,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236038,29.83224303102363,spot_peer,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236038,0.1745378199031835,relative_legacy,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236038,25.999325863967822,peer,metac-gpt-4o,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236040,36.98705933337415,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236040,47.41825045648429,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236040,31.251573406300228,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236040,0.2524676338401608,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236041,4.882039075715925,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236041,11.16440022546412,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236041,-0.11024588070314,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236041,4.822844546309315,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236041,13.750352374993504,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236043,-73.69655941662059,spot_baseline,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236043,-60.05406842905023,baseline,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236043,-46.918031425066566,peer,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236043,-0.822972866830886,relative_legacy,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236043,-58.03568323135301,spot_peer,metac-grok-2-1212,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236045,10.488905220835589,baseline,metac-Gemini-Exp-1206,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236045,67.80719051126377,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236045,43.67994300690005,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236045,0.0720710228857127,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236045,6.84448452538573,peer,metac-Gemini-Exp-1206,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236047,54.54367895217451,baseline,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236047,36.36471702051781,peer,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236047,0.324595749190699,relative_legacy,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,236047,43.67994300690005,spot_peer,metac-Llama-3.1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,237476,-0.5848941724676513,relative_legacy,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,237476,-42.04968680482254,spot_peer,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,237476,-51.45731728297583,spot_baseline,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,237476,-38.80579452992357,baseline,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,237476,-31.22802922038173,peer,NextWorldLab,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,239758,0.1692414214367381,relative_legacy,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,239758,24.037385565354967,peer,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,239758,37.56110267970397,baseline,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,239758,48.54268271702416,spot_baseline,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,239758,29.83224303102363,spot_peer,metac-perplexity,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,239759,38.9910518466238,baseline,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,239759,0.1693715289500016,relative_legacy,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,239759,25.046368054963736,peer,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,239759,29.83224303102363,spot_peer,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,239759,48.54268271702416,spot_baseline,metac-exa,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,240414,0.0302080062469309,relative_legacy,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,240414,7.622770789794901,peer,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,240414,26.303440583379377,spot_baseline,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,240414,13.180768963782103,baseline,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,240414,13.846246604493135,spot_peer,minefrac1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,240416,24.194132423550084,peer,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,240416,37.8146925816668,baseline,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,240416,48.54268271702416,spot_baseline,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,240416,29.83224303102363,spot_peer,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,240416,0.1692452027896675,relative_legacy,metac-o1-preview,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,246118,29.83224303102363,spot_peer,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,246118,16.950989017642424,peer,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,246118,26.42301085957266,baseline,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,246118,0.1474148483362436,relative_legacy,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,250015,22.14697184471174,spot_peer,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,250015,0.0892034050251044,relative_legacy,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,250015,17.513078743957404,peer,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,250015,28.329122626464887,baseline,metac-deepseek-r1,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,261570,-0.1095450563327551,relative_legacy,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,261570,3.700410383336161,baseline,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,261570,0.2155885705149289,peer,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,261570,13.846246604493135,spot_peer,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34469,"Will the USDA-posted recall by Nail Factory of Ineligible Frozen Siluriformes Fish Products Imported From Vietnam issued December 19, 2024, be closed before April 1, 2025?",2025-02-08 04:04:11.602631+00,261570,26.303440583379377,spot_baseline,RPM_bot,True,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,0.85,2025-02-14 07:00:00+00,34983 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,187708,-0.0321643317430151,relative_legacy,twsummerbot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,187708,11.247036101615356,peer,twsummerbot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,187708,-1.1285347601101012,baseline,twsummerbot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,187708,60.867321358103794,spot_peer,twsummerbot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,187708,-5.693323272019018,spot_baseline,twsummerbot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,189869,-212.84301772345896,spot_baseline,VeritasAI,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,189869,-154.91361036214616,spot_peer,VeritasAI,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,189869,-5.570458000944683,relative_legacy,VeritasAI,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,189869,-151.11589399824814,peer,VeritasAI,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,189869,-192.91890019491757,baseline,VeritasAI,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,190710,40.9155161756975,spot_baseline,Bot_Pepa,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,190710,109.41819578280852,spot_peer,Bot_Pepa,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,190710,11.845494991725865,baseline,Bot_Pepa,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,190710,0.331849309834522,relative_legacy,Bot_Pepa,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,190710,30.41835452368663,peer,Bot_Pepa,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,191026,-0.3625651336058587,relative_legacy,manticAI,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,191026,42.66867793014246,peer,manticAI,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,191026,-12.475576760645124,baseline,manticAI,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,191026,-14.33428252632546,spot_baseline,manticAI,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,191026,51.86632213486792,spot_peer,manticAI,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,191935,77.85321614351496,peer,pgodzinai,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,191935,52.84369201908704,spot_baseline,pgodzinai,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,191935,121.84337895300597,spot_peer,pgodzinai,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,191935,0.9341709984706285,relative_legacy,pgodzinai,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,191935,35.116920936418005,baseline,pgodzinai,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,191975,4.049049617372526,baseline,jkraybill_bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,191975,21.79411129091115,spot_baseline,jkraybill_bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,191975,89.50006569448938,spot_peer,jkraybill_bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,191975,0.117935216405999,relative_legacy,jkraybill_bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,191975,15.888227132946028,peer,jkraybill_bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,192418,94.81294053767358,peer,InstitutPelFutur,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,192418,36.15000733254017,spot_baseline,InstitutPelFutur,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,192418,104.4541240711863,spot_peer,InstitutPelFutur,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,192418,0.9461158438025372,relative_legacy,InstitutPelFutur,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,192418,33.69227501661797,baseline,InstitutPelFutur,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,192924,-11.43971062501763,baseline,acm_bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,192924,-0.3356209281136811,relative_legacy,acm_bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,192924,52.68481390256686,spot_peer,acm_bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,192924,-13.548530429334477,spot_baseline,acm_bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,192924,42.411522699567136,peer,acm_bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,218666,86.92952807682167,spot_peer,GreeneiBot2,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,218666,8.068204416099125,baseline,GreeneiBot2,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,218666,19.326395177950143,spot_baseline,GreeneiBot2,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,218666,34.132111549638864,peer,GreeneiBot2,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,218666,0.2117410874921441,relative_legacy,GreeneiBot2,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,220077,90.29749489957442,spot_peer,mmBot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,220077,0.5806409311734533,relative_legacy,mmBot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,220077,80.71239474803282,peer,mmBot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,220077,21.5833605499704,baseline,mmBot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,220077,22.559643327792777,spot_baseline,mmBot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,222631,-1.7027544204939318,relative_legacy,Grizeu_Bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,222631,-58.79739318944779,baseline,Grizeu_Bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,222631,-212.84309615465347,spot_baseline,Grizeu_Bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,222631,-154.91369206130707,spot_peer,Grizeu_Bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,222631,-43.979939401087634,peer,Grizeu_Bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236037,-0.3753701515562677,relative_legacy,metac-o1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236037,37.14321136394069,peer,metac-o1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236037,-10.741056068248472,baseline,metac-o1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236037,52.19880574801055,spot_peer,metac-o1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236037,-14.01509825770853,spot_baseline,metac-o1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236038,-5.039596164289162,relative_legacy,metac-gpt-4o,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236038,-212.84309615465347,spot_baseline,metac-gpt-4o,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236038,-174.29415306633763,baseline,metac-gpt-4o,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236038,-130.84940245704794,peer,metac-gpt-4o,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236038,-154.91369206130707,spot_peer,metac-gpt-4o,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236040,-128.9680702639584,peer,metac-claude-3-5-sonnet-latest,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236040,-171.94488795736495,baseline,metac-claude-3-5-sonnet-latest,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236040,-4.979820973330338,relative_legacy,metac-claude-3-5-sonnet-latest,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236040,-154.91377376059617,spot_peer,metac-claude-3-5-sonnet-latest,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236040,-212.84317458597096,spot_baseline,metac-claude-3-5-sonnet-latest,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236041,-154.9136920613978,spot_peer,metac-claude-3-5-sonnet-20240620,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236041,-212.84309615474052,spot_baseline,metac-claude-3-5-sonnet-20240620,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236041,-172.6455648059921,baseline,metac-claude-3-5-sonnet-20240620,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236041,-129.4841238668423,peer,metac-claude-3-5-sonnet-20240620,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236041,-4.997204748842008,relative_legacy,metac-claude-3-5-sonnet-20240620,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236043,-14.015098257706898,spot_baseline,metac-grok-2-1212,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236043,40.827481125644375,peer,metac-grok-2-1212,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236043,-11.377585643612342,baseline,metac-grok-2-1212,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236043,52.19880574801226,spot_peer,metac-grok-2-1212,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236043,-0.3436824155227075,relative_legacy,metac-grok-2-1212,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236047,-170.09637958060256,baseline,metac-Llama-3.1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236047,-154.91369206130707,spot_peer,metac-Llama-3.1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236047,-212.84309615465347,spot_baseline,metac-Llama-3.1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236047,-127.71344543287356,peer,metac-Llama-3.1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,236047,-4.934765346235647,relative_legacy,metac-Llama-3.1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,237476,-0.372319817916062,relative_legacy,NextWorldLab,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,237476,-10.831582150803222,baseline,NextWorldLab,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,237476,-14.01509825770853,spot_baseline,NextWorldLab,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,237476,52.19880574801055,spot_peer,NextWorldLab,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,237476,37.57827078869767,peer,NextWorldLab,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,239758,46.18354225270643,spot_baseline,metac-perplexity,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,239758,0.9503843214560198,relative_legacy,metac-perplexity,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,239758,35.28038206294072,baseline,metac-perplexity,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,239758,85.34090480272619,peer,metac-perplexity,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,239758,114.90572294635946,spot_peer,metac-perplexity,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,239759,57.94698920228837,peer,metac-exa,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,239759,5.05054761889507,baseline,metac-exa,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,239759,0.1279241105326675,relative_legacy,metac-exa,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,239759,73.31678012864468,spot_peer,metac-exa,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,239759,6.258157147700231,spot_baseline,metac-exa,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,240414,-0.7219102049494044,relative_legacy,minefrac1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,240414,-24.286428282544005,baseline,minefrac1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,240414,-48.67245728570416,spot_baseline,minefrac1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,240414,16.09739009384844,spot_peer,minefrac1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,240414,5.4894105890619045,peer,minefrac1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,240416,6.258157147700231,spot_baseline,metac-o1-preview,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,240416,73.31678012864468,spot_peer,metac-o1-preview,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,240416,4.778580700789936,baseline,metac-o1-preview,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,240416,53.60081400974101,peer,metac-o1-preview,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,240416,0.0734775660479692,relative_legacy,metac-o1-preview,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,246118,-0.4624002663623121,relative_legacy,laylaps,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,246118,37.21536447448086,spot_peer,laylaps,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,246118,-28.39920188029703,spot_baseline,laylaps,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,246118,17.25318049243888,peer,laylaps,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,246118,-15.135088099184529,baseline,laylaps,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,250015,-3.3106437808740243,relative_legacy,metac-deepseek-r1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,250015,-113.8319976339943,baseline,metac-deepseek-r1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,250015,-85.95938331600209,peer,metac-deepseek-r1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,250015,-154.9137737606869,spot_peer,metac-deepseek-r1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,250015,-212.84317458605807,spot_baseline,metac-deepseek-r1,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,261570,-5.613849975972407,baseline,RPM_bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,261570,-212.84317458605807,spot_baseline,RPM_bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,261570,-154.9137737606869,spot_peer,RPM_bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,261570,-0.2295187325103959,relative_legacy,RPM_bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34470,"How many users will Bluesky have on March 31, 2025?",2025-02-08 04:04:11.633099+00,261570,32.745514994703754,peer,RPM_bot,True,33856896.0,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,2025-02-14 07:00:00+00,34984 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,185699,14.891505237561196,spot_peer,MWG,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,185699,28.688114778816157,spot_baseline,MWG,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,185699,0.0215234989252023,relative_legacy,MWG,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,185699,9.514354876373336,peer,MWG,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,185699,19.577946327073324,baseline,MWG,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,187708,4.07674376363046,peer,twsummerbot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,187708,-0.026509430050588,relative_legacy,twsummerbot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,187708,8.77158175638194,spot_peer,twsummerbot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,187708,20.163386116965043,spot_baseline,twsummerbot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,187708,10.429348039417038,baseline,twsummerbot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,189869,13.93085283943421,peer,VeritasAI,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,189869,13.179541821185806,spot_peer,VeritasAI,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,189869,0.028885936429862,relative_legacy,VeritasAI,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,189869,24.147036901184958,baseline,VeritasAI,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,190710,-28.815058661445505,spot_peer,Bot_Pepa,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,190710,-22.426769712697386,peer,Bot_Pepa,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,190710,-0.4309456288463344,relative_legacy,Bot_Pepa,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,190710,-32.19280948873623,spot_baseline,Bot_Pepa,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,190710,-24.31960019199217,baseline,Bot_Pepa,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,191026,22.491976904054347,baseline,manticAI,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,191026,10.99171736126304,peer,manticAI,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,191026,0.0109559749830524,relative_legacy,manticAI,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,191026,13.179541821185806,spot_peer,manticAI,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,191026,26.303440583379377,spot_baseline,manticAI,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,191935,21.375485681875524,baseline,pgodzinai,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,191935,30.25627700204313,spot_baseline,pgodzinai,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,191935,0.0343513305412485,relative_legacy,pgodzinai,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,191935,10.71957657271122,peer,pgodzinai,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,191935,16.017292719240533,spot_peer,pgodzinai,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,191975,-14.640357594307202,spot_peer,jkraybill_bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,191975,-12.448203068114529,spot_baseline,jkraybill_bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,191975,-0.0900314389045114,relative_legacy,jkraybill_bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,191975,-3.4570973418678266,peer,jkraybill_bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,191975,-3.060712821832623,baseline,jkraybill_bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,192418,-73.69655941662059,spot_baseline,InstitutPelFutur,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,192418,-72.07896613880898,baseline,InstitutPelFutur,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,192418,-55.08611036349113,peer,InstitutPelFutur,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,192418,-0.8960646318710497,relative_legacy,InstitutPelFutur,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,192418,-58.610701879665655,spot_peer,InstitutPelFutur,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,192924,33.876783319871244,baseline,acm_bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,192924,37.85116232537298,spot_baseline,acm_bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,192924,21.469679401659228,spot_peer,acm_bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,192924,0.1143387631914405,relative_legacy,acm_bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,192924,20.099411508243325,peer,acm_bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,204737,-0.2252336948155689,relative_legacy,SynapseSeer,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,204737,-3.800632257974492,spot_baseline,SynapseSeer,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,204737,-2.9818891376181416,baseline,SynapseSeer,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,204737,-7.128768523250196,peer,SynapseSeer,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,204737,-8.432245435503976,spot_peer,SynapseSeer,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,218666,6.719865835926514,peer,GreeneiBot2,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,218666,15.994324375502064,baseline,GreeneiBot2,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,218666,21.412480535284764,spot_baseline,GreeneiBot2,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,218666,9.668309683347404,spot_peer,GreeneiBot2,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,218666,-0.0281284136572361,relative_legacy,GreeneiBot2,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,220077,-0.6785535847620797,relative_legacy,mmBot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,220077,-51.18552290726069,baseline,mmBot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,220077,-38.09225545426045,peer,mmBot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,220077,-42.645095754699646,spot_peer,mmBot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,222631,-100.0,spot_baseline,Grizeu_Bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,222631,-22.48299723548869,peer,Grizeu_Bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,222631,-29.22199738687939,baseline,Grizeu_Bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,222631,-0.3638343770588703,relative_legacy,Grizeu_Bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,222631,-77.4940059761824,spot_peer,Grizeu_Bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,224797,6.725352137823624,baseline,cookics_bot_TEST,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,224797,0.0308113862389874,relative_legacy,cookics_bot_TEST,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,224797,29.14514794615184,spot_peer,cookics_bot_TEST,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,224797,48.54268271702416,spot_baseline,cookics_bot_TEST,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,224797,4.041215904299672,peer,cookics_bot_TEST,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236037,22.34143698181212,baseline,metac-o1,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236037,10.866999368483816,peer,metac-o1,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236037,0.010975435091353,relative_legacy,metac-o1,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236037,26.303440583379377,spot_baseline,metac-o1,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236037,13.179541821185806,spot_peer,metac-o1,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236038,0.0110024192909498,relative_legacy,metac-gpt-4o,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236038,22.52182959395872,baseline,metac-gpt-4o,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236038,13.179541821185806,spot_peer,metac-gpt-4o,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236038,11.022980295941146,peer,metac-gpt-4o,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236040,-0.6463567800532503,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236040,-36.82903409757068,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236040,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236040,-42.645095754699646,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236040,-43.49694102542236,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236041,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236041,-37.25993054239447,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236041,-42.645095754699646,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236041,-44.0365803432193,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236041,-0.654472772761862,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236043,22.511292530367346,baseline,metac-grok-2-1212,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236043,11.012347649942171,peer,metac-grok-2-1212,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236043,0.0109866396830577,relative_legacy,metac-grok-2-1212,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236043,13.179541821185806,spot_peer,metac-grok-2-1212,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236043,26.303440583379377,spot_baseline,metac-grok-2-1212,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236045,17.30408682983567,peer,metac-Gemini-Exp-1206,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236045,52.60688116675877,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236045,32.062845917702546,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236045,0.1515592625420331,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236045,29.26998864734416,baseline,metac-Gemini-Exp-1206,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236047,22.418246475425786,baseline,metac-Llama-3.1,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236047,10.926759265892978,peer,metac-Llama-3.1,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236047,0.0107569330455676,relative_legacy,metac-Llama-3.1,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,236047,13.179541821185806,spot_peer,metac-Llama-3.1,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,237476,-23.19544598217669,baseline,NextWorldLab,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,237476,-28.63041851566409,spot_baseline,NextWorldLab,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,237476,-26.25760950029987,spot_peer,NextWorldLab,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,237476,-0.4341005164640522,relative_legacy,NextWorldLab,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,237476,-21.87658293835727,peer,NextWorldLab,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,239758,0.1091770969484907,relative_legacy,metac-perplexity,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,239758,37.85116232537298,spot_baseline,metac-perplexity,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,239758,21.469679401659228,spot_peer,metac-perplexity,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,239758,32.196542605282566,baseline,metac-perplexity,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,239758,18.010276172329572,peer,metac-perplexity,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,239759,64.86120826952579,baseline,metac-exa,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,239759,41.69261684145149,peer,metac-exa,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,239759,0.4366967451355398,relative_legacy,metac-exa,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,239759,49.254163727536735,spot_peer,metac-exa,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,239759,76.55347463629771,spot_baseline,metac-exa,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,240414,14.986349478644485,baseline,minefrac1,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,240414,13.179541821185806,spot_peer,minefrac1,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,240414,0.0052495040092685,relative_legacy,minefrac1,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,240414,26.303440583379377,spot_baseline,minefrac1,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,240414,6.921411478219189,peer,minefrac1,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,240416,21.469679401659228,spot_peer,metac-o1-preview,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,240416,0.1079876776917732,relative_legacy,metac-o1-preview,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,240416,31.80708989407426,baseline,metac-o1-preview,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,240416,37.85116232537298,spot_baseline,metac-o1-preview,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,240416,17.766842393412784,peer,metac-o1-preview,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,241715,-16.616101397034363,spot_peer,CatrachoCaster,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,241715,-5.734706119610292,baseline,CatrachoCaster,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,241715,-6.303484088524786,peer,CatrachoCaster,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,241715,-0.1513340255122909,relative_legacy,CatrachoCaster,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,241715,-15.200309344505014,spot_baseline,CatrachoCaster,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,246118,26.303440583379377,spot_baseline,laylaps,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,246118,7.379582765185362,peer,laylaps,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,246118,15.977880466641388,baseline,laylaps,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,246118,13.179541821185806,spot_peer,laylaps,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,246118,0.0052495040092685,relative_legacy,laylaps,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,261570,17.94538857532685,peer,RPM_bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,261570,31.243854011754408,baseline,RPM_bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,261570,0.1388347435667434,relative_legacy,RPM_bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,261570,29.14514794615184,spot_peer,RPM_bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34471,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:04:11.667238+00,261570,48.54268271702416,spot_baseline,RPM_bot,True,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,2025-02-14 17:00:00+00,34985 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,187708,4.440892098500624e-14,spot_baseline,twsummerbot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,187708,-11.077280630364363,peer,twsummerbot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,187708,2.62744765445418e-14,baseline,twsummerbot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,187708,-1.0235058139910884,relative_legacy,twsummerbot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,187708,-17.592192523832015,spot_peer,twsummerbot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,189869,-1.5356009409190872,relative_legacy,VeritasAI,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,189869,4.440892098500624e-14,spot_baseline,VeritasAI,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,189869,-23.937744956094104,peer,VeritasAI,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,189869,4.036984549069594e-14,baseline,VeritasAI,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,189869,-17.592192523832015,spot_peer,VeritasAI,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,190710,3.304346712417307e-14,baseline,Bot_Pepa,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,190710,-1.35513220179089,relative_legacy,Bot_Pepa,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,190710,4.440892098500624e-14,spot_baseline,Bot_Pepa,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,190710,-15.56601984693291,peer,Bot_Pepa,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,190710,-17.592192523832015,spot_peer,Bot_Pepa,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,191935,72.5777841693718,peer,pgodzinai,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,191935,131.95466827686926,spot_baseline,pgodzinai,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,191935,120.09963524333584,spot_peer,pgodzinai,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,191935,1.2516996705938803,relative_legacy,pgodzinai,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,191935,80.46992305477255,baseline,pgodzinai,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,192418,67.21192657853074,baseline,InstitutPelFutur,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,192418,41.22868652743656,peer,InstitutPelFutur,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,192418,0.2197283310179654,relative_legacy,InstitutPelFutur,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,192418,54.73620892590135,spot_peer,InstitutPelFutur,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,192418,69.31471805599452,spot_baseline,InstitutPelFutur,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,192924,136.50145539322318,spot_baseline,acm_bot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,192924,1.5616979105509374,relative_legacy,acm_bot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,192924,90.65099588728,peer,acm_bot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,192924,101.05471226319987,baseline,acm_bot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,192924,124.84410875605298,spot_peer,acm_bot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,218666,86.91764125869716,peer,GreeneiBot2,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,218666,96.87933737274588,baseline,GreeneiBot2,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,218666,136.5715324883641,spot_baseline,GreeneiBot2,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,218666,1.4936825013772046,relative_legacy,GreeneiBot2,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,218666,124.91723268141742,spot_peer,GreeneiBot2,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,220077,125.06174976098669,baseline,mmBot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,220077,125.8792041050933,spot_baseline,mmBot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,220077,113.76002045539572,spot_peer,mmBot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,220077,1.8023214142748536,relative_legacy,mmBot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,220077,104.0632329259129,peer,mmBot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,222631,4.440892098500624e-14,spot_baseline,Grizeu_Bot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,222631,-5.728422287032833,peer,Grizeu_Bot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,222631,-0.5156787287918416,relative_legacy,Grizeu_Bot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,222631,1.4130592375984896e-14,baseline,Grizeu_Bot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,222631,-17.592192523832015,spot_peer,Grizeu_Bot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,224797,6.871183104778602e-15,baseline,cookics_bot_TEST,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,224797,-2.7219570609828447,peer,cookics_bot_TEST,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,224797,-0.2408492975421922,relative_legacy,cookics_bot_TEST,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,224797,-17.592192523832015,spot_peer,cookics_bot_TEST,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,224797,4.440892098500624e-14,spot_baseline,cookics_bot_TEST,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236037,-17.592192523832015,spot_peer,metac-o1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236037,4.440892098500624e-14,spot_baseline,metac-o1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236037,3.6654371784102574e-14,baseline,metac-o1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236037,-17.018097147538487,peer,metac-o1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236037,-1.3813985951600043,relative_legacy,metac-o1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236038,3.745373925809259e-14,baseline,metac-gpt-4o,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236038,-17.592192523832015,spot_peer,metac-gpt-4o,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236038,4.440892098500624e-14,spot_baseline,metac-gpt-4o,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236038,-1.393737074473698,relative_legacy,metac-gpt-4o,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236038,-17.52905273440714,peer,metac-gpt-4o,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236040,-17.466402731541244,peer,metac-claude-3-5-sonnet-latest,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236040,-17.592192523832015,spot_peer,metac-claude-3-5-sonnet-latest,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236040,3.740458790963256e-14,baseline,metac-claude-3-5-sonnet-latest,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236040,-1.3921146781390168,relative_legacy,metac-claude-3-5-sonnet-latest,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236040,4.440892098500624e-14,spot_baseline,metac-claude-3-5-sonnet-latest,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236041,3.742059165014102e-14,baseline,metac-claude-3-5-sonnet-20240620,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236041,-1.3924912555584703,relative_legacy,metac-claude-3-5-sonnet-20240620,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236041,-17.592192523832015,spot_peer,metac-claude-3-5-sonnet-20240620,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236041,4.440892098500624e-14,spot_baseline,metac-claude-3-5-sonnet-20240620,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236041,-17.480487330108392,peer,metac-claude-3-5-sonnet-20240620,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236043,3.7420518364144575e-14,baseline,metac-grok-2-1212,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236043,-1.3924890910298076,relative_legacy,metac-grok-2-1212,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236043,4.440892098500624e-14,spot_baseline,metac-grok-2-1212,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236043,-17.48040680022402,peer,metac-grok-2-1212,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236043,-17.592192523832015,spot_peer,metac-grok-2-1212,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236045,-1.3834934047522616,relative_legacy,metac-Gemini-Exp-1206,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236045,-17.116185711628876,peer,metac-Gemini-Exp-1206,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236045,0.0063558124597788,baseline,metac-Gemini-Exp-1206,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236045,4.440892098500624e-14,spot_baseline,metac-Gemini-Exp-1206,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236045,-17.592192523832015,spot_peer,metac-Gemini-Exp-1206,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236047,3.7321585057077435e-14,baseline,metac-Llama-3.1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236047,-17.405597935337262,peer,metac-Llama-3.1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236047,-17.592192523832015,spot_peer,metac-Llama-3.1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236047,-1.3905461492134317,relative_legacy,metac-Llama-3.1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,236047,4.440892098500624e-14,spot_baseline,metac-Llama-3.1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,237476,-15.314556426583133,peer,NextWorldLab,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,237476,4.440892098500624e-14,spot_baseline,NextWorldLab,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,237476,-17.592192523832015,spot_peer,NextWorldLab,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,237476,-1.3404841737721704,relative_legacy,NextWorldLab,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,237476,3.2545379390411436e-14,baseline,NextWorldLab,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,239758,-1.3794132077679533,relative_legacy,metac-perplexity,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,239758,-16.916531877488506,peer,metac-perplexity,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,239758,-17.592192523832015,spot_peer,metac-perplexity,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,239758,3.6423298807929255e-14,baseline,metac-perplexity,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,239758,4.440892098500624e-14,spot_baseline,metac-perplexity,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,240414,2.4736771285087832e-14,baseline,minefrac1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,240414,4.440892098500624e-14,spot_baseline,minefrac1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,240414,-17.592192523832015,spot_peer,minefrac1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,240414,-0.950487273659314,relative_legacy,minefrac1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,240414,-10.339890903383724,peer,minefrac1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,240416,-17.13945032495825,peer,metac-o1-preview,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,240416,4.440892098500624e-14,spot_baseline,metac-o1-preview,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,240416,-17.592192523832015,spot_peer,metac-o1-preview,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,240416,-1.3840467883426877,relative_legacy,metac-o1-preview,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,240416,3.6897722999889975e-14,baseline,metac-o1-preview,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,246118,-11.080760554021554,peer,laylaps,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,246118,-1.0238573347323157,relative_legacy,laylaps,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,246118,4.440892098500624e-14,spot_baseline,laylaps,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,246118,-17.592192523832015,spot_peer,laylaps,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,246118,2.6281351416872112e-14,baseline,laylaps,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,247214,-195.60115027140725,spot_baseline,ajf-bot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,247214,-117.27385031879012,baseline,ajf-bot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,247214,-133.98498233748893,peer,ajf-bot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,247214,-4.4266061315001215,relative_legacy,ajf-bot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,247214,-221.69774063312656,spot_peer,ajf-bot,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,250015,-17.592192523832015,spot_peer,metac-deepseek-r1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,250015,2.428594859858792e-14,baseline,metac-deepseek-r1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,250015,-10.134513172581624,peer,metac-deepseek-r1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,250015,-0.9306217099178598,relative_legacy,metac-deepseek-r1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34649,What will be the global price of coffee arabica for February 2025?,2025-02-15 04:48:00.840061+00,250015,4.440892098500624e-14,spot_baseline,metac-deepseek-r1,True,409.5165,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35161 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,187708,-0.4892113299713845,relative_legacy,twsummerbot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,187708,-107.29810847002514,baseline,twsummerbot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,187708,-168.9659879387849,spot_baseline,twsummerbot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,187708,-69.94578949033748,spot_peer,twsummerbot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,187708,-44.6526170182366,peer,twsummerbot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,189869,-73.69655941662063,spot_baseline,VeritasAI,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,189869,0.0106162265276166,relative_legacy,VeritasAI,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,189869,2.708350915022803,peer,VeritasAI,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,189869,-67.16056343728435,baseline,VeritasAI,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,189869,-1.4642857250237011,spot_peer,VeritasAI,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,190710,-38.16917010326528,baseline,Bot_Pepa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,190710,-51.45731728297583,spot_baseline,Bot_Pepa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,190710,9.320868545300964,peer,Bot_Pepa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,190710,0.2226788119068779,relative_legacy,Bot_Pepa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,190710,14.521710701506793,spot_peer,Bot_Pepa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,191935,-60.3663340693433,spot_peer,pgodzinai,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,191935,-0.4000808670512564,relative_legacy,pgodzinai,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,191935,-98.16267564436474,baseline,pgodzinai,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,191935,-38.26174626865952,peer,pgodzinai,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,191935,-155.6393348524385,spot_baseline,pgodzinai,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,192418,-182.5916847976656,peer,InstitutPelFutur,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,192418,-2.4551162410781706,relative_legacy,InstitutPelFutur,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,192418,-187.27637883015527,spot_peer,InstitutPelFutur,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,192418,-332.1928094887362,spot_baseline,InstitutPelFutur,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,192418,-319.5831160959639,baseline,InstitutPelFutur,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,192924,-3.041210875314025,peer,acm_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,192924,-58.50148823494898,baseline,acm_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,192924,-73.69655941662063,spot_baseline,acm_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,192924,-1.4642857250237011,spot_peer,acm_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,192924,0.0272677002960342,relative_legacy,acm_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,204737,58.17061510415927,peer,SynapseSeer,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,204737,0.891956265431888,relative_legacy,SynapseSeer,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,204737,28.490658270389165,baseline,SynapseSeer,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,204737,37.51784795896126,spot_baseline,SynapseSeer,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,204737,78.47877655204421,spot_peer,SynapseSeer,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,218666,-26.348058871899777,spot_peer,GreeneiBot2,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,218666,-0.110918276172119,relative_legacy,GreeneiBot2,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,218666,-17.3671407232338,peer,GreeneiBot2,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,218666,-70.0899437505271,baseline,GreeneiBot2,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,218666,-108.31412353002456,spot_baseline,GreeneiBot2,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,220077,0.0,spot_baseline,mmBot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,220077,51.510223406264224,spot_peer,mmBot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,220077,0.7407149198814684,relative_legacy,mmBot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,220077,63.769179784493446,peer,mmBot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,220077,0.0,baseline,mmBot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,222631,40.09694324246311,baseline,Grizeu_Bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,222631,93.5584568397035,spot_peer,Grizeu_Bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,222631,63.47461335424887,peer,Grizeu_Bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,222631,0.996781878046062,relative_legacy,Grizeu_Bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,224797,-0.2227697876513833,peer,cookics_bot_TEST,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,224797,-73.69655941662063,spot_baseline,cookics_bot_TEST,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,224797,-1.4642857250237011,spot_peer,cookics_bot_TEST,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,224797,0.0,relative_legacy,cookics_bot_TEST,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,224797,-11.2118602341851,baseline,cookics_bot_TEST,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236037,55.61594927858719,peer,metac-o1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236037,21.38652992458525,baseline,metac-o1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236037,70.41764411082248,spot_peer,metac-o1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236037,26.303440583379377,spot_baseline,metac-o1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236037,0.8290758048269707,relative_legacy,metac-o1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236038,0.8518752732736565,relative_legacy,metac-gpt-4o,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236038,22.118363239589,baseline,metac-gpt-4o,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236038,70.41764411082248,spot_peer,metac-gpt-4o,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236038,58.16823532703211,peer,metac-gpt-4o,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236040,14.521710701506793,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236040,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236040,-43.1680846575844,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236040,10.594253495926734,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236040,0.1973036227167619,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236041,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236041,14.521710701506793,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236041,0.1969993337267366,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236041,10.54116485385844,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236041,-43.13051519902054,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236043,-110.91703300779731,baseline,metac-grok-2-1212,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236043,-38.51152769787798,peer,metac-grok-2-1212,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236043,-0.4801880774772455,relative_legacy,metac-grok-2-1212,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236043,-43.512519158462965,spot_peer,metac-grok-2-1212,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236043,-132.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236045,-0.8017318430370709,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236045,-62.26062306711302,peer,metac-Gemini-Exp-1206,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236045,-141.91873985651392,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236045,-73.34621556086987,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236045,-173.6965594166206,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236047,100.25134051322938,spot_peer,metac-Llama-3.1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236047,56.6360917431042,baseline,metac-Llama-3.1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236047,82.5885712498228,peer,metac-Llama-3.1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,236047,1.1931427869794349,relative_legacy,metac-Llama-3.1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,237476,29.0604654298782,peer,NextWorldLab,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,237476,-15.200309344504996,spot_baseline,NextWorldLab,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,237476,40.58394770841557,spot_peer,NextWorldLab,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,237476,-11.443591055097746,baseline,NextWorldLab,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,237476,0.4916201358061677,relative_legacy,NextWorldLab,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,239758,31.253110240061453,peer,metac-perplexity,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,239758,-12.371207520299974,baseline,metac-perplexity,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,239758,-15.200309344504996,spot_baseline,metac-perplexity,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,239758,40.58394770841557,spot_peer,metac-perplexity,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,239758,0.4916201358061677,relative_legacy,metac-perplexity,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,239759,-18.729232269708184,peer,metac-exa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,239759,-81.79969223073661,baseline,metac-exa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,239759,-100.0,spot_baseline,metac-exa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,239759,-20.37170642958195,spot_peer,metac-exa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,239759,-0.2001084891064441,relative_legacy,metac-exa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,240414,-64.70960989973042,peer,minefrac1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,240414,-130.35881562802325,baseline,minefrac1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,240414,-0.7821801572682516,relative_legacy,minefrac1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,240414,-115.39444899430912,spot_peer,minefrac1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,240414,-232.19280948873623,spot_baseline,minefrac1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,240416,37.85116232537298,spot_baseline,metac-o1-preview,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,240416,31.138637751076143,baseline,metac-o1-preview,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,240416,63.27342854164701,peer,metac-o1-preview,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,240416,0.931944403043378,relative_legacy,metac-o1-preview,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,240416,78.71836935104108,spot_peer,metac-o1-preview,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,241715,25.743860219753167,spot_peer,CatrachoCaster,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,241715,-13.004278525513556,baseline,CatrachoCaster,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,241715,9.33557177894314,peer,CatrachoCaster,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,241715,0.192728314563717,relative_legacy,CatrachoCaster,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,241715,-35.845397091247634,spot_baseline,CatrachoCaster,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,246118,-59.59451011154386,baseline,laylaps,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,246118,-20.37170642958195,spot_peer,laylaps,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,246118,-12.112805337335022,peer,laylaps,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,246118,-0.0400168612800302,relative_legacy,laylaps,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,246118,-100.0,spot_baseline,laylaps,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,247214,-213.9451331326456,baseline,ajf-bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,247214,-232.19280948873623,spot_baseline,ajf-bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,247214,-115.39444899430912,spot_peer,ajf-bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,247214,-104.706830914859,peer,ajf-bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,247214,-1.433779216326576,relative_legacy,ajf-bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,250015,48.54268271702416,spot_baseline,metac-deepseek-r1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,250015,39.53913493533471,baseline,metac-deepseek-r1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,250015,68.82191559931057,peer,metac-deepseek-r1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,250015,1.0109638724449728,relative_legacy,metac-deepseek-r1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,250015,86.40364053735296,spot_peer,metac-deepseek-r1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,261570,-29.52849484090841,peer,RPM_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,261570,-0.2865930945562218,relative_legacy,RPM_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,261570,-43.512519158462965,spot_peer,RPM_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,261570,-132.19280948873623,spot_baseline,RPM_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34650,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 04:48:00.891065+00,261570,-87.93229751999789,baseline,RPM_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,2025-02-17 05:00:00+00,35162 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,187708,-159.07448533151623,spot_baseline,twsummerbot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,187708,-66.7296504932714,spot_peer,twsummerbot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,187708,-88.2521613247881,baseline,twsummerbot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,187708,-0.4736640496252081,relative_legacy,twsummerbot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,187708,-37.84017076828543,peer,twsummerbot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,189869,-67.39083453935592,baseline,VeritasAI,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,189869,-73.69655941662063,spot_baseline,VeritasAI,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,189869,-5.358349691825418,spot_peer,VeritasAI,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,189869,-0.0084672375708717,relative_legacy,VeritasAI,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,189869,-1.8363104587241093,peer,VeritasAI,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,190710,-128.384979143411,baseline,Bot_Pepa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,190710,-77.24027952767159,spot_peer,Bot_Pepa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,190710,-173.6965594166206,spot_baseline,Bot_Pepa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,190710,-0.7483782498612572,relative_legacy,Bot_Pepa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,190710,-58.30021843788565,peer,Bot_Pepa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,191935,58.496250072115615,spot_baseline,pgodzinai,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,191935,0.909849820590804,relative_legacy,pgodzinai,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,191935,61.48110492019477,peer,pgodzinai,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,191935,40.67057417525451,baseline,pgodzinai,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,191935,89.66439287290177,spot_peer,pgodzinai,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,192418,-205.8893689053569,spot_baseline,InstitutPelFutur,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,192418,-100.3810922565526,spot_peer,InstitutPelFutur,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,192418,-1.2499859998214458,relative_legacy,InstitutPelFutur,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,192418,-195.61413201645703,baseline,InstitutPelFutur,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,192418,-95.13760214456929,peer,InstitutPelFutur,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,192924,10.627646734705063,spot_peer,acm_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,192924,0.1571336555526126,relative_legacy,acm_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,192924,7.167327734108152,peer,acm_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,192924,-39.33496725613163,baseline,acm_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,192924,-51.45731728297583,spot_baseline,acm_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,204737,67.01384203107656,peer,SynapseSeer,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,204737,89.66439287290177,spot_peer,SynapseSeer,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,204737,44.189473133584826,baseline,SynapseSeer,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,204737,0.985748845578124,relative_legacy,SynapseSeer,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,218666,40.52321870013213,baseline,GreeneiBot2,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,218666,56.436456186578845,peer,GreeneiBot2,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,218666,0.8340470526592272,relative_legacy,GreeneiBot2,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,218666,96.8745030734984,spot_peer,GreeneiBot2,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,218666,68.52674065168416,spot_baseline,GreeneiBot2,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,220077,0.2172627412983182,relative_legacy,mmBot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,220077,16.900028534061388,peer,mmBot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,220077,-50.4881421378237,baseline,mmBot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,220077,10.627646734705063,spot_peer,mmBot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,220077,-51.45731728297583,spot_baseline,mmBot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,222631,-50.49141259058467,baseline,Grizeu_Bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,222631,-73.69655941662063,spot_baseline,Grizeu_Bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,222631,-5.358349691825418,spot_peer,Grizeu_Bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,222631,-0.0069889922647608,relative_legacy,Grizeu_Bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,222631,-4.710339974239194,peer,Grizeu_Bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,224797,-47.40658312526468,spot_peer,cookics_bot_TEST,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,224797,-0.088207604641704,relative_legacy,cookics_bot_TEST,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,224797,-7.148528557936997,peer,cookics_bot_TEST,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,224797,-19.93360439597976,baseline,cookics_bot_TEST,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,224797,-132.19280948873623,spot_baseline,cookics_bot_TEST,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236037,46.944835097044695,baseline,metac-o1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236037,58.496250072115615,spot_baseline,metac-o1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236037,1.0480017493277731,relative_legacy,metac-o1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236037,89.66439287290177,spot_peer,metac-o1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236037,71.42423124850994,peer,metac-o1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236038,24.475346710581498,spot_peer,metac-gpt-4o,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236038,0.3398664477206673,relative_legacy,metac-gpt-4o,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236038,20.4497066143204,peer,metac-gpt-4o,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236038,-27.01602686372073,baseline,metac-gpt-4o,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236038,-32.19280948873623,spot_baseline,metac-gpt-4o,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236040,-20.842511165189727,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236040,-83.59354558423219,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236040,-100.0,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236040,-0.2284315923018469,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236040,-24.265770396383665,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236041,102.64427436442833,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236041,63.84046409088882,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236041,85.89270682496308,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236041,1.2441640415635593,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236043,-40.34498032394241,peer,metac-grok-2-1212,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236043,-110.46320103946069,baseline,metac-grok-2-1212,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236043,-0.4973929302894037,relative_legacy,metac-grok-2-1212,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236043,-47.40658312526468,spot_peer,metac-grok-2-1212,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236043,-132.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236045,-39.33466116128828,peer,metac-Gemini-Exp-1206,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236045,-0.4838498482450716,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236045,-47.40658312526468,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236045,-132.19280948873623,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236045,-106.4246207376026,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236047,-73.69655941662063,spot_baseline,metac-Llama-3.1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236047,-5.358349691825418,spot_peer,metac-Llama-3.1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236047,-0.0090649909219771,relative_legacy,metac-Llama-3.1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236047,-4.978695527046999,peer,metac-Llama-3.1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,236047,-61.13472848303351,baseline,metac-Llama-3.1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,237476,-134.11509382647213,baseline,NextWorldLab,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,237476,-173.6965594166206,spot_baseline,NextWorldLab,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,237476,-77.24027952767159,spot_peer,NextWorldLab,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,237476,-0.7849903221977236,relative_legacy,NextWorldLab,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,237476,-60.89652792624242,peer,NextWorldLab,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,239758,-0.0128552014862939,relative_legacy,metac-perplexity,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,239758,-5.255581531576367,peer,metac-perplexity,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,239758,-59.59162772891517,baseline,metac-perplexity,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,239758,-73.69655941662063,spot_baseline,metac-perplexity,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,239758,-5.358349691825418,spot_peer,metac-perplexity,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,239759,-192.46002680378592,baseline,metac-exa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,239759,-100.1595144496912,peer,metac-exa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,239759,-1.3228556405297711,relative_legacy,metac-exa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,239759,-119.28851296111084,spot_peer,metac-exa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,239759,-232.19280948873623,spot_baseline,metac-exa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,240414,-41.26436854398541,baseline,minefrac1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,240414,-3.7930579176148864,peer,minefrac1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,240414,-73.69655941662063,spot_baseline,minefrac1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,240414,-5.358349691825418,spot_peer,minefrac1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,240414,0.0,relative_legacy,minefrac1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,240416,1.2776404521291889,relative_legacy,metac-o1-preview,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,240416,108.57181357746003,spot_peer,metac-o1-preview,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,240416,88.15423658045809,peer,metac-o1-preview,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,240416,69.04574448432987,baseline,metac-o1-preview,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,241715,-26.731422668206505,baseline,CatrachoCaster,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,241715,-73.69655941662063,spot_baseline,CatrachoCaster,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,241715,-5.358349691825418,spot_peer,CatrachoCaster,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,241715,0.0,relative_legacy,CatrachoCaster,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,241715,-2.317774807379461,peer,CatrachoCaster,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,246118,-19.29605698625289,baseline,laylaps,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,246118,-32.19280948873623,spot_baseline,laylaps,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,246118,0.2417804492565996,relative_legacy,laylaps,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,246118,13.735240141416918,peer,laylaps,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,246118,24.475346710581498,spot_peer,laylaps,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,247214,-44.03669533000539,peer,ajf-bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,247214,-0.5767789836955504,relative_legacy,ajf-bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,247214,-125.16796095198757,baseline,ajf-bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,247214,-50.03213358289473,spot_peer,ajf-bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,247214,-135.84539709124763,spot_baseline,ajf-bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,250015,70.74190253189539,peer,metac-deepseek-r1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,250015,46.53747243995189,baseline,metac-deepseek-r1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,250015,89.66439287290177,spot_peer,metac-deepseek-r1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,250015,1.0388177896079958,relative_legacy,metac-deepseek-r1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,261570,-0.3945301085610986,relative_legacy,RPM_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,261570,-132.19280948873623,spot_baseline,RPM_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,261570,-87.578518097239,baseline,RPM_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,261570,-32.46361286596621,peer,RPM_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34651,"In its March update, will Similarweb report chatgpt.com having a higher rank than wikipedia.org?",2025-02-15 04:48:00.92186+00,261570,-47.40658312526468,spot_peer,RPM_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35163 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,187708,9.081081986509208,peer,twsummerbot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,187708,-0.052568409626587,relative_legacy,twsummerbot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,187708,26.255381494912942,baseline,twsummerbot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,187708,45.20682302238109,spot_baseline,twsummerbot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,187708,18.50071273837165,spot_peer,twsummerbot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,189869,0.0,spot_baseline,VeritasAI,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,189869,-13.994824067591471,spot_peer,VeritasAI,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,189869,-0.5072358137424379,relative_legacy,VeritasAI,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,189869,0.0,baseline,VeritasAI,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,189869,-20.3800938065885,peer,VeritasAI,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,190710,41.03329085737433,spot_peer,Bot_Pepa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,190710,56.33850637468429,baseline,Bot_Pepa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,190710,26.73187632488481,peer,Bot_Pepa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,190710,0.1493790965394862,relative_legacy,Bot_Pepa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,190710,76.55347463629771,spot_baseline,Bot_Pepa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,191935,25.49608110618684,peer,pgodzinai,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,191935,41.03329085737433,spot_peer,pgodzinai,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,191935,0.1421656601623531,relative_legacy,pgodzinai,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,191935,53.22109354448405,baseline,pgodzinai,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,191935,76.55347463629771,spot_baseline,pgodzinai,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,192418,-0.1684545993567557,relative_legacy,InstitutPelFutur,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,192418,13.213321877185372,spot_peer,InstitutPelFutur,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,192418,35.66447161541244,baseline,InstitutPelFutur,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,192418,4.392618871251144,peer,InstitutPelFutur,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,192924,-138.85126303472558,spot_peer,acm_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,192924,-173.6965594166206,spot_baseline,acm_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,192924,-127.56880328516604,baseline,acm_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,192924,-106.02859575777396,peer,acm_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,192924,-1.688675670355693,relative_legacy,acm_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,204737,0.0046895159698892,relative_legacy,SynapseSeer,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,204737,26.94129464672438,spot_peer,SynapseSeer,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,204737,56.94910919587163,spot_baseline,SynapseSeer,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,204737,43.4343737681027,baseline,SynapseSeer,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,204737,16.545354376073114,peer,SynapseSeer,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,218666,0.1095160588357508,relative_legacy,GreeneiBot2,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,218666,40.01553835702387,baseline,GreeneiBot2,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,218666,74.50221490372644,spot_baseline,GreeneiBot2,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,218666,39.5588057756565,spot_peer,GreeneiBot2,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,218666,19.7817431621608,peer,GreeneiBot2,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,220077,74.73502837328103,baseline,mmBot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,220077,32.077062758289955,peer,mmBot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,220077,0.1962099007710354,relative_legacy,mmBot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,220077,41.03329085737433,spot_peer,mmBot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,222631,0.3836664484617259,peer,Grizeu_Bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,222631,17.97329638909433,baseline,Grizeu_Bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,222631,-0.2022373602655723,relative_legacy,Grizeu_Bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,222631,4.912596636966777,spot_peer,Grizeu_Bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,222631,26.303440583379377,spot_baseline,Grizeu_Bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,224797,-13.121409202607229,peer,cookics_bot_TEST,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,224797,-15.279349307219189,baseline,cookics_bot_TEST,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,224797,-85.87675390343765,spot_peer,cookics_bot_TEST,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,224797,-0.2218665770750517,relative_legacy,cookics_bot_TEST,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,224797,-100.0,spot_baseline,cookics_bot_TEST,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236037,34.7462930393737,spot_peer,metac-o1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236037,23.120801485758875,peer,metac-o1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236037,0.0875067173722951,relative_legacy,metac-o1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236037,54.04198136931615,baseline,metac-o1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236037,67.80719051126377,spot_baseline,metac-o1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236038,41.03329085737433,spot_peer,metac-gpt-4o,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236038,0.1612729835876208,relative_legacy,metac-gpt-4o,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236038,28.87797494109112,peer,metac-gpt-4o,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236038,64.18612620391477,baseline,metac-gpt-4o,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236038,76.55347463629771,spot_baseline,metac-gpt-4o,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236040,56.50153762990983,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236040,0.0875280396938081,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236040,23.472066973400675,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236040,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236040,34.7462930393737,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236041,23.42349535222619,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236041,0.0874288786783116,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236041,34.7462930393737,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236041,56.2443714944033,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236041,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236043,58.496250072115615,spot_baseline,metac-grok-2-1212,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236043,0.0098341857933477,relative_legacy,metac-grok-2-1212,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236043,17.830410461765563,peer,metac-grok-2-1212,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236043,48.71419653476824,baseline,metac-grok-2-1212,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236043,28.05340936584779,spot_peer,metac-grok-2-1212,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236045,14.058067649804103,peer,metac-Gemini-Exp-1206,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236045,32.51663476618296,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236045,0.0238311865488977,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236045,28.05340936584779,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236045,58.496250072115615,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236047,0.0873795919466732,relative_legacy,metac-Llama-3.1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236047,34.7462930393737,spot_peer,metac-Llama-3.1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236047,55.966225243562526,baseline,metac-Llama-3.1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,236047,23.38124747575286,peer,metac-Llama-3.1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,237476,-4.974251251546006,peer,NextWorldLab,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,237476,-0.406707966186616,spot_peer,NextWorldLab,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,237476,18.903382439001685,spot_baseline,NextWorldLab,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,237476,14.963061672511122,baseline,NextWorldLab,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,237476,-0.2995976581040432,relative_legacy,NextWorldLab,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,239758,-105.92317595058392,baseline,metac-perplexity,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,239758,-92.79895209156156,peer,metac-perplexity,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,239758,-109.01756663231863,spot_peer,metac-perplexity,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,239758,-1.5150196897037227,relative_legacy,metac-perplexity,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,239758,-132.19280948873623,spot_baseline,metac-perplexity,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,239759,23.51489211202204,peer,metac-exa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,239759,67.80719051126377,spot_baseline,metac-exa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,239759,34.7462930393737,spot_peer,metac-exa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,239759,0.0875237258538832,relative_legacy,metac-exa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,239759,56.70760579532935,baseline,metac-exa,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,240414,-41.19794921392605,baseline,minefrac1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,240414,-39.06376226056693,peer,minefrac1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,240414,-0.7147083011280362,relative_legacy,minefrac1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,240414,-73.69655941662063,spot_baseline,minefrac1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,240414,-66.9693331988794,spot_peer,minefrac1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,240416,33.18575264767962,peer,metac-o1-preview,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,240416,46.96083007040604,spot_peer,metac-o1-preview,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,240416,68.52690613561514,baseline,metac-o1-preview,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,240416,0.2248193820953906,relative_legacy,metac-o1-preview,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,241715,-0.3050441799955967,relative_legacy,CatrachoCaster,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,241715,-11.664338149862214,baseline,CatrachoCaster,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,241715,-14.13331193959678,peer,CatrachoCaster,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,241715,-37.13563679647248,spot_peer,CatrachoCaster,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,241715,-32.19280948873623,spot_baseline,CatrachoCaster,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,246118,-136.91218001253688,baseline,laylaps,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,246118,-108.60239163621526,peer,laylaps,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,246118,-232.19280948873623,spot_baseline,laylaps,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,246118,-1.689429754001585,relative_legacy,laylaps,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,246118,-180.89949646816484,spot_peer,laylaps,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,247214,47.300756791617374,spot_baseline,ajf-bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,247214,11.40813431165802,peer,ajf-bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,247214,-0.0773293443425028,relative_legacy,ajf-bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,247214,20.00587274118316,spot_peer,ajf-bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,247214,43.68580476938154,baseline,ajf-bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,250015,46.72208598697628,baseline,metac-deepseek-r1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,250015,28.05340936584779,spot_peer,metac-deepseek-r1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,250015,17.769256090973315,peer,metac-deepseek-r1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,250015,0.0131520500812983,relative_legacy,metac-deepseek-r1,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,261570,24.57118341050661,peer,RPM_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,261570,41.03329085737433,spot_peer,RPM_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,261570,76.55347463629771,spot_baseline,RPM_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,261570,0.1375479662346432,relative_legacy,RPM_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34652,"In its March update, will Similarweb report chatgpt.com having a higher rank than reddit.com?",2025-02-15 04:48:00.952106+00,261570,50.7933456790872,baseline,RPM_bot,True,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,0.75,2025-02-17 05:00:00+00,35164 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,187708,-9.671983133745588,peer,twsummerbot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,187708,-0.6513397036458126,relative_legacy,twsummerbot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,187708,-20.999434034018037,spot_peer,twsummerbot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,187708,-64.52660003681596,spot_baseline,twsummerbot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,187708,-31.991408871585342,baseline,twsummerbot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,190710,-34.89450387701832,peer,Bot_Pepa,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,190710,-51.4661724828489,baseline,Bot_Pepa,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,190710,-130.1344892722191,spot_baseline,Bot_Pepa,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,190710,-89.23163883883731,spot_peer,Bot_Pepa,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,190710,-1.304974459104162,relative_legacy,Bot_Pepa,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,191026,-18.262638379197565,baseline,manticAI,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,191026,23.689157793062204,spot_peer,manticAI,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,191026,-21.556800203084965,spot_baseline,manticAI,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,191026,0.0850670998408823,relative_legacy,manticAI,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,191026,22.304497687836268,peer,manticAI,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,191935,50.79907736045951,spot_peer,pgodzinai,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,191935,2.2454806383983463,baseline,pgodzinai,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,191935,26.10459830973936,peer,pgodzinai,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,191935,0.3382074042457825,relative_legacy,pgodzinai,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,191935,4.510430150181672,spot_baseline,pgodzinai,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,191975,69.53139888388776,spot_peer,jkraybill_bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,191975,22.522277768862683,spot_baseline,jkraybill_bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,191975,0.2833322818387104,relative_legacy,jkraybill_bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,191975,19.45462846852532,peer,jkraybill_bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,191975,6.301650093216874,baseline,jkraybill_bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,192418,-0.1571473832717557,relative_legacy,InstitutPelFutur,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,192418,12.232773918771969,peer,InstitutPelFutur,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,192418,-28.57461752869459,baseline,InstitutPelFutur,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,192418,-29.3893332451048,spot_baseline,InstitutPelFutur,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,192418,15.543323429361578,spot_peer,InstitutPelFutur,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,192924,-5.773159728050847e-13,spot_baseline,acm_bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,192924,46.10823000426997,spot_peer,acm_bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,192924,42.830259994632165,peer,acm_bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,192924,-5.04336200375272e-13,baseline,acm_bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,192924,0.6413827454987006,relative_legacy,acm_bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,218666,45.09944370882684,peer,GreeneiBot2,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,218666,10.536051965782478,spot_baseline,GreeneiBot2,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,218666,57.065724048684345,spot_peer,GreeneiBot2,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,218666,0.733993691039751,relative_legacy,GreeneiBot2,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,218666,7.958560704768647,baseline,GreeneiBot2,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,220077,51.12210793955926,peer,mmBot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,220077,5.268025782891358,spot_baseline,mmBot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,220077,5.231249750515904,baseline,mmBot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,220077,51.58697681847757,spot_peer,mmBot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,220077,0.8151311400408878,relative_legacy,mmBot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,222631,0.5802983964234016,relative_legacy,Grizeu_Bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,222631,14.805316970093552,baseline,Grizeu_Bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,222631,32.761960352716926,peer,Grizeu_Bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,222631,39.92538481088862,spot_baseline,Grizeu_Bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,222631,87.63063020759473,spot_peer,Grizeu_Bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,224797,39.98351215013868,spot_peer,cookics_bot_TEST,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,224797,27.57628421846499,peer,cookics_bot_TEST,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,224797,-5.889151782819132,spot_baseline,cookics_bot_TEST,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,224797,-3.824698207004081,baseline,cookics_bot_TEST,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,224797,0.3042456055303209,relative_legacy,cookics_bot_TEST,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236037,-54.05857701733355,baseline,metac-o1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236037,-15.541480344921178,peer,metac-o1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236037,-0.9511680619272352,relative_legacy,metac-o1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236037,-20.50032995975673,spot_peer,metac-o1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236037,-64.04669227310316,spot_baseline,metac-o1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236038,-130.1344892722191,spot_baseline,metac-gpt-4o,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236038,-89.23163883883731,spot_peer,metac-gpt-4o,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236038,-2.615121840662787,relative_legacy,metac-gpt-4o,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236038,-112.81079641649345,baseline,metac-gpt-4o,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236038,-76.30358769107214,peer,metac-gpt-4o,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236040,-0.3742245912608126,relative_legacy,metac-claude-3-5-sonnet-latest,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236040,-40.54651081081639,spot_baseline,metac-claude-3-5-sonnet-latest,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236040,3.9398587610215214,spot_peer,metac-claude-3-5-sonnet-latest,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236040,5.648850756986535,peer,metac-claude-3-5-sonnet-latest,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236040,-35.138393467245216,baseline,metac-claude-3-5-sonnet-latest,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236041,-75.20386983881366,spot_baseline,metac-claude-3-5-sonnet-20240620,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236041,-32.103794628095635,spot_peer,metac-claude-3-5-sonnet-20240620,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236041,-26.09563522878464,peer,metac-claude-3-5-sonnet-20240620,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236041,-1.242095426080883,relative_legacy,metac-claude-3-5-sonnet-20240620,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236041,-65.23646046446841,baseline,metac-claude-3-5-sonnet-20240620,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236043,-2.106217675362576,relative_legacy,metac-grok-2-1212,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236043,-109.86122886681092,spot_baseline,metac-grok-2-1212,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236043,-95.14020086886867,baseline,metac-grok-2-1212,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236043,-57.68900342484563,peer,metac-grok-2-1212,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236043,-68.14744801721278,spot_peer,metac-grok-2-1212,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236045,15.543323429360424,spot_peer,metac-Gemini-Exp-1206,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236045,-0.1034044129892255,relative_legacy,metac-Gemini-Exp-1206,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236045,15.472197375382123,peer,metac-Gemini-Exp-1206,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236045,-25.09301284734889,baseline,metac-Gemini-Exp-1206,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236045,-29.38933324510591,spot_baseline,metac-Gemini-Exp-1206,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236047,-17.144324260604325,spot_peer,metac-Llama-3.1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236047,-52.24068377149452,baseline,metac-Llama-3.1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236047,-12.821726916888812,peer,metac-Llama-3.1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236047,-0.8785753448472892,relative_legacy,metac-Llama-3.1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,236047,-60.81976371622586,spot_baseline,metac-Llama-3.1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,237476,-15.00522862251735,spot_baseline,NextWorldLab,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,237476,30.502792236852525,spot_peer,NextWorldLab,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,237476,0.167832710354932,relative_legacy,NextWorldLab,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,237476,24.046697694873696,peer,NextWorldLab,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,237476,-10.94595843481616,baseline,NextWorldLab,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,239758,-29.3893332451048,spot_baseline,metac-perplexity,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,239758,-24.793157725438483,baseline,metac-perplexity,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,239758,15.246779851837651,peer,metac-perplexity,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,239758,-0.1073577964237461,relative_legacy,metac-perplexity,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,239758,15.543323429361578,spot_peer,metac-perplexity,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,240414,-1.589477198772351,relative_legacy,minefrac1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,240414,-114.6267328570259,spot_baseline,minefrac1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,240414,-67.84196684253757,baseline,minefrac1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,240414,-42.12240918291218,peer,minefrac1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,240414,-73.10357216703636,spot_peer,minefrac1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,240416,3.9398587610215214,spot_peer,metac-o1-preview,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,240416,-0.3788959057280761,relative_legacy,metac-o1-preview,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,240416,-40.54651081081639,spot_baseline,metac-o1-preview,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,240416,5.396763731991461,peer,metac-o1-preview,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,240416,-34.53046812520022,baseline,metac-o1-preview,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,246118,3.2676061202984514,peer,laylaps,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,246118,-0.317445174779783,relative_legacy,laylaps,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,246118,3.9398587610215214,spot_peer,laylaps,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,246118,-22.442567809103505,baseline,laylaps,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,246118,-40.54651081081639,spot_baseline,laylaps,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,247214,-0.2494560286681128,relative_legacy,ajf-bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,247214,3.1763133832330257,peer,ajf-bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,247214,-14.893311913602853,baseline,ajf-bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,247214,6.969841983468479,spot_peer,ajf-bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,247214,-37.633065404617405,spot_baseline,ajf-bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,250015,-40.54651081081639,spot_baseline,metac-deepseek-r1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,250015,2.875086010769773,peer,metac-deepseek-r1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,250015,-20.848776570495104,baseline,metac-deepseek-r1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,250015,-0.3113942493694818,relative_legacy,metac-deepseek-r1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,250015,3.9398587610215214,spot_peer,metac-deepseek-r1,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,261570,-2.667697650265291,relative_legacy,RPM_bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,261570,-108.36897312037532,baseline,RPM_bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,261570,-115.79456607466742,spot_peer,RPM_bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,261570,-155.67576546051728,spot_baseline,RPM_bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34653,"What will be the total number of aircraft violating Taiwan's air defense identification zone (ADIZ) between February 15 and March 15, 2025?",2025-02-15 04:48:00.986696+00,261570,-79.4765197242578,peer,RPM_bot,True,295.0,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35165 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,185699,-31.4205375967892,peer,MWG,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,185699,-32.559188853980295,baseline,MWG,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,185699,-55.63933485243855,spot_baseline,MWG,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,185699,-53.90545649767966,spot_peer,MWG,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,185699,-0.457314323435498,relative_legacy,MWG,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,187708,12.697285625776551,spot_baseline,twsummerbot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,187708,-4.846430119443063,spot_peer,twsummerbot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,187708,7.495185883064226,baseline,twsummerbot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,187708,-0.0581160901288905,relative_legacy,twsummerbot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,187708,-2.706841663558499,peer,twsummerbot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,190710,3.445597962177003,peer,Bot_Pepa,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,190710,0.0222008087474958,relative_legacy,Bot_Pepa,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,190710,26.303440583379377,spot_baseline,Bot_Pepa,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,190710,4.921461682935497,spot_peer,Bot_Pepa,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,190710,20.25530173370308,baseline,Bot_Pepa,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,191026,-0.1636706232858281,relative_legacy,manticAI,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,191026,4.264433740849372,spot_baseline,manticAI,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,191026,-10.900395038564136,spot_peer,manticAI,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,191026,-9.930079580035152,peer,manticAI,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,191026,3.5976868507703585,baseline,manticAI,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,191935,-9.91773992773548,peer,pgodzinai,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,191935,-6.894735371749141,spot_baseline,pgodzinai,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,191935,-18.911589739488747,spot_peer,pgodzinai,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,191935,-0.1556647746770343,relative_legacy,pgodzinai,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,191935,-3.669212461144098,baseline,pgodzinai,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,191975,0.5371404266985057,peer,jkraybill_bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,191975,3.185198844623193,baseline,jkraybill_bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,191975,25.41908866686651,spot_baseline,jkraybill_bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,191975,4.286583286897757,spot_peer,jkraybill_bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,191975,0.0,relative_legacy,jkraybill_bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,192418,26.303440583379377,spot_baseline,InstitutPelFutur,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,192418,25.381703107276085,baseline,InstitutPelFutur,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,192418,2.817957324022617,peer,InstitutPelFutur,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,192418,0.0166114597802369,relative_legacy,InstitutPelFutur,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,192418,4.921461682935497,spot_peer,InstitutPelFutur,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,192924,11.81887585248901,baseline,acm_bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,192924,13.750352374993504,spot_baseline,acm_bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,192924,-4.090430933847573,spot_peer,acm_bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,192924,-0.0850378441935326,relative_legacy,acm_bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,192924,-4.2582228225829,peer,acm_bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,204737,-10.239914131580884,baseline,SynapseSeer,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,204737,-16.814214857174,peer,SynapseSeer,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,204737,-0.2573953664144132,relative_legacy,SynapseSeer,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,204737,-24.874181535284684,spot_peer,SynapseSeer,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,204737,-15.200309344505014,spot_baseline,SynapseSeer,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,218666,63.04054714823233,spot_baseline,GreeneiBot2,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,218666,0.2769076506523509,relative_legacy,GreeneiBot2,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,218666,21.70550114674817,peer,GreeneiBot2,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,218666,31.29512001448493,spot_peer,GreeneiBot2,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,218666,43.70746685707213,baseline,GreeneiBot2,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,220077,11.679113211723518,peer,mmBot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,220077,37.35647366624495,baseline,mmBot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,220077,13.211599263408912,spot_peer,mmBot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,220077,0.1280420704988679,relative_legacy,mmBot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,222631,-0.523746506658851,relative_legacy,Grizeu_Bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,222631,-36.12745682974919,baseline,Grizeu_Bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,222631,-35.94448660625879,peer,Grizeu_Bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,222631,-50.90317589294995,spot_peer,Grizeu_Bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,224797,21.412480535284764,spot_baseline,cookics_bot_TEST,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,224797,15.0014363110012,baseline,cookics_bot_TEST,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,224797,2.202346986113596,peer,cookics_bot_TEST,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,224797,0.0091083698881401,relative_legacy,cookics_bot_TEST,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,224797,1.4102295450970903,spot_peer,cookics_bot_TEST,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236037,7.744996278551263,peer,metac-o1,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236037,0.0805606837483293,relative_legacy,metac-o1,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236037,9.974728686198096,spot_peer,metac-o1,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236037,33.34237337251918,spot_baseline,metac-o1,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236037,27.65736660029838,baseline,metac-o1,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236038,-44.51852796989802,baseline,metac-gpt-4o,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236038,-45.29695028073963,peer,metac-gpt-4o,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236038,-0.6502752013177171,relative_legacy,metac-gpt-4o,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236038,-50.90317589294995,spot_peer,metac-gpt-4o,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236038,-51.45731728297583,spot_baseline,metac-gpt-4o,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236040,4.921461682935497,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236040,3.581720038043994,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236040,22.71651369981008,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236040,0.0224337619179711,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236040,26.303440583379377,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236041,17.544779918545547,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236041,0.2145921392947815,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236041,41.93341146846517,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236041,48.54268271702416,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236041,20.88706780790153,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236043,29.58360365528415,peer,metac-grok-2-1212,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236043,0.3805062425254078,relative_legacy,metac-grok-2-1212,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236043,34.71710490115568,spot_peer,metac-grok-2-1212,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236043,58.49701539799204,baseline,metac-grok-2-1212,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236045,40.80001786097508,baseline,metac-Gemini-Exp-1206,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236045,0.2091082180853812,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236045,20.88706780790153,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236045,48.54268271702416,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236045,17.07525379462483,peer,metac-Gemini-Exp-1206,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236047,1.4102295450970903,spot_peer,metac-Llama-3.1,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236047,21.412480535284764,spot_baseline,metac-Llama-3.1,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236047,-0.0190567917253813,relative_legacy,metac-Llama-3.1,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236047,0.5266044021604457,peer,metac-Llama-3.1,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,236047,18.31729644539177,baseline,metac-Llama-3.1,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,237476,13.211599263408912,spot_peer,NextWorldLab,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,237476,9.70843708472598,peer,NextWorldLab,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,237476,28.531978508031084,baseline,NextWorldLab,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,237476,0.1092468407100132,relative_legacy,NextWorldLab,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,239758,0.0222011913163135,relative_legacy,metac-perplexity,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,239758,26.303440583379377,spot_baseline,metac-perplexity,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,239758,21.989142991396303,baseline,metac-perplexity,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,239758,3.5274127067938994,peer,metac-perplexity,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,239758,4.921461682935497,spot_peer,metac-perplexity,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,239759,-3.9251153663692895,peer,metac-exa,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,239759,-4.090430933847573,spot_peer,metac-exa,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,239759,11.253781905241029,baseline,metac-exa,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,239759,13.750352374993504,spot_baseline,metac-exa,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,239759,-0.0805541917732532,relative_legacy,metac-exa,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,240414,26.303440583379377,spot_baseline,minefrac1,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,240414,16.10413616248879,baseline,minefrac1,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,240414,3.119368885718573,peer,minefrac1,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,240414,0.0222008087474958,relative_legacy,minefrac1,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,240414,4.921461682935497,spot_peer,minefrac1,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,240416,22.157604347046263,baseline,metac-o1-preview,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,240416,26.303440583379377,spot_baseline,metac-o1-preview,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,240416,4.921461682935497,spot_peer,metac-o1-preview,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,240416,0.0221506004090834,relative_legacy,metac-o1-preview,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,240416,3.5358304028398404,peer,metac-o1-preview,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,241715,27.931819612640517,baseline,CatrachoCaster,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,241715,30.758479287635183,spot_peer,CatrachoCaster,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,241715,0.1782853556105584,relative_legacy,CatrachoCaster,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,241715,62.29303509201767,spot_baseline,CatrachoCaster,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,241715,13.854132792180302,peer,CatrachoCaster,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,246118,0.1624695815947508,relative_legacy,laylaps,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,246118,30.617151854871693,baseline,laylaps,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,246118,13.256219103090636,peer,laylaps,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,246118,20.88706780790153,spot_peer,laylaps,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,247214,0.0,baseline,ajf-bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,247214,0.0,spot_baseline,ajf-bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,247214,-13.96184241358123,spot_peer,ajf-bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,247214,-0.1409476726977604,relative_legacy,ajf-bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,247214,-8.594491176975028,peer,ajf-bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,261570,3.362663758175014,peer,RPM_bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,261570,4.921461682935497,spot_peer,RPM_bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,261570,0.0222008087474958,relative_legacy,RPM_bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,261570,18.268569679501088,baseline,RPM_bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34654,Will the winner of the rugby Men’s 2025 Six Nations Championship have at least 5 more total competition points than the second place?,2025-02-15 04:48:01.188701+00,261570,26.303440583379377,spot_baseline,RPM_bot,True,no,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35166 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,185699,31.9830942648221,baseline,MWG,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,185699,13.880697636242529,peer,MWG,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,185699,0.0984495823097837,relative_legacy,MWG,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,185699,22.677880245861747,spot_peer,MWG,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,185699,44.29806222085733,spot_baseline,MWG,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,187708,-0.0187507058411194,relative_legacy,twsummerbot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,187708,-0.5871587915563281,peer,twsummerbot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,187708,1.843726100909408,baseline,twsummerbot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,187708,25.811212458209187,spot_baseline,twsummerbot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,187708,-8.219919600905191,spot_peer,twsummerbot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,190710,38.223632880614325,spot_baseline,Bot_Pepa,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,190710,12.525447335557612,spot_peer,Bot_Pepa,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,190710,-0.005128059461518,relative_legacy,Bot_Pepa,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,190710,6.651014541334107,peer,Bot_Pepa,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,190710,29.28486517358803,baseline,Bot_Pepa,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,191026,-47.79308188623852,baseline,manticAI,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,191026,-218.49315224581557,spot_peer,manticAI,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,191026,-100.0,spot_baseline,manticAI,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,191026,-1.5286622501216105,relative_legacy,manticAI,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,191026,-104.70227200610891,peer,manticAI,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,191935,40.288058440098624,spot_baseline,pgodzinai,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,191935,29.23442254344887,baseline,pgodzinai,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,191935,15.975803050806253,spot_peer,pgodzinai,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,191935,0.0310494028870421,relative_legacy,pgodzinai,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,191935,9.044243194365372,peer,pgodzinai,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,192418,-9.253223189503403,spot_peer,InstitutPelFutur,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,192418,-11.913472286405462,peer,InstitutPelFutur,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,192418,24.146743095199074,baseline,InstitutPelFutur,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,192418,25.192963641259222,spot_baseline,InstitutPelFutur,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,192418,-0.2671686821214213,relative_legacy,InstitutPelFutur,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,218666,22.378337299079774,baseline,GreeneiBot2,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,218666,10.827652235398782,spot_peer,GreeneiBot2,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,218666,37.20780382158568,spot_baseline,GreeneiBot2,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,218666,-0.0089731352084958,relative_legacy,GreeneiBot2,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,218666,5.1871791788787,peer,GreeneiBot2,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,220077,24.720393196638177,baseline,mmBot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,220077,-11.913472286405462,peer,mmBot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,220077,25.192963641259222,spot_baseline,mmBot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,220077,-9.253223189503403,spot_peer,mmBot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,220077,-0.2671686821214213,relative_legacy,mmBot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,222631,16.201801298537333,spot_peer,Grizeu_Bot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,222631,28.608713449345263,baseline,Grizeu_Bot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,222631,40.423278283360816,spot_baseline,Grizeu_Bot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,222631,9.109480887698233,peer,Grizeu_Bot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,222631,0.0343123286650033,relative_legacy,Grizeu_Bot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,224797,2.6934351515562684,peer,cookics_bot_TEST,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,224797,21.379976860512173,baseline,cookics_bot_TEST,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,224797,-0.0443042108114389,relative_legacy,cookics_bot_TEST,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,224797,6.754732023327259,spot_peer,cookics_bot_TEST,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,224797,34.77088389753815,spot_baseline,cookics_bot_TEST,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236037,9.813973697137818,peer,metac-o1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236037,16.200013144461998,spot_peer,metac-o1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236037,40.42220839049119,spot_baseline,metac-o1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236037,32.769017560869415,baseline,metac-o1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236037,0.0367487752998477,relative_legacy,metac-o1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236038,34.4219115543338,baseline,metac-gpt-4o,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236038,39.88062423617574,spot_baseline,metac-gpt-4o,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236038,15.294842224858984,spot_peer,metac-gpt-4o,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236038,0.0271882595247994,relative_legacy,metac-gpt-4o,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236038,9.577498547343115,peer,metac-gpt-4o,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236040,23.44533779100308,baseline,metac-claude-3-5-sonnet-latest,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236040,27.230309883053657,spot_baseline,metac-claude-3-5-sonnet-latest,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236040,-5.848126204038977,spot_peer,metac-claude-3-5-sonnet-latest,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236040,-8.917940143967392,peer,metac-claude-3-5-sonnet-latest,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236040,-0.2262825912299313,relative_legacy,metac-claude-3-5-sonnet-latest,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236041,39.88062423617576,spot_baseline,metac-claude-3-5-sonnet-20240620,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236041,34.316183171892405,baseline,metac-claude-3-5-sonnet-20240620,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236041,9.51525796836446,peer,metac-claude-3-5-sonnet-20240620,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236041,0.0264636887630981,relative_legacy,metac-claude-3-5-sonnet-20240620,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236041,15.294842224859003,spot_peer,metac-claude-3-5-sonnet-20240620,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236043,0.1234354899813892,relative_legacy,metac-grok-2-1212,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236043,44.74234409119223,spot_baseline,metac-grok-2-1212,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236043,23.42042602739833,spot_peer,metac-grok-2-1212,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236043,16.570031450551426,peer,metac-grok-2-1212,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236043,38.45577046289223,baseline,metac-grok-2-1212,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236045,-3.01950613238052,peer,metac-Gemini-Exp-1206,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236045,25.681499895182466,baseline,metac-Gemini-Exp-1206,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236045,0.6443724055611092,spot_peer,metac-Gemini-Exp-1206,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236045,31.114918074417727,spot_baseline,metac-Gemini-Exp-1206,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236045,-0.1408693917304631,relative_legacy,metac-Gemini-Exp-1206,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236047,9.337020418471395,peer,metac-Llama-3.1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236047,0.0267397369195397,relative_legacy,metac-Llama-3.1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236047,33.74262273371086,baseline,metac-Llama-3.1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236047,39.88062423617574,spot_baseline,metac-Llama-3.1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,236047,15.294842224858984,spot_peer,metac-Llama-3.1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,237476,2.1893545839856907,peer,NextWorldLab,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,237476,34.77088389753815,spot_baseline,NextWorldLab,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,237476,6.754732023327259,spot_peer,NextWorldLab,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,237476,-0.0676427702977352,relative_legacy,NextWorldLab,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,237476,26.903174504853705,baseline,NextWorldLab,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,239758,-0.1326653231247157,relative_legacy,metac-perplexity,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,239758,-2.4803753108662114,peer,metac-perplexity,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,239758,25.58013752212935,baseline,metac-perplexity,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,239758,1.1788941285990044,spot_peer,metac-perplexity,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,239758,31.434734463859048,spot_baseline,metac-perplexity,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,239759,4.837005159071429,peer,metac-exa,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,239759,10.084939154718295,spot_peer,metac-exa,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,239759,30.445766158996665,baseline,metac-exa,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,239759,36.76342185240381,spot_baseline,metac-exa,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,239759,-0.0327915944202688,relative_legacy,metac-exa,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,240414,-0.2146045302453852,relative_legacy,minefrac1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,240414,-13.057792786131092,spot_peer,minefrac1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,240414,14.148836458950852,baseline,minefrac1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,240414,22.91660393625731,spot_baseline,minefrac1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,240414,-9.573517813969644,peer,minefrac1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,240416,-3.2858180873867804,peer,metac-o1-preview,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,240416,-0.1453715084628118,relative_legacy,metac-o1-preview,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,240416,0.4260443248634011,spot_peer,metac-o1-preview,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,240416,30.98428746489723,spot_baseline,metac-o1-preview,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,240416,25.828039859597435,baseline,metac-o1-preview,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,241715,12.223739915829636,baseline,CatrachoCaster,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,241715,27.230309883053657,spot_baseline,CatrachoCaster,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,241715,-5.848126204038977,spot_peer,CatrachoCaster,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,241715,-0.1081920829951913,relative_legacy,CatrachoCaster,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,241715,-2.748020239089384,peer,CatrachoCaster,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,246118,0.2818260467890891,relative_legacy,laylaps,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,246118,36.51839013041273,baseline,laylaps,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,246118,43.79405312465716,spot_peer,laylaps,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,246118,56.93234419266069,spot_baseline,laylaps,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,246118,26.40454661586402,peer,laylaps,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,247214,57.30626805011856,spot_baseline,ajf-bot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,247214,44.419006789234864,spot_peer,ajf-bot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,247214,0.3645315973158115,relative_legacy,ajf-bot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,247214,33.75577334558165,peer,ajf-bot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,247214,47.8352128178693,baseline,ajf-bot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,250015,0.0772287602570372,relative_legacy,metac-deepseek-r1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,250015,20.38985505884764,spot_peer,metac-deepseek-r1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,250015,32.35590816292082,baseline,metac-deepseek-r1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,250015,12.56423077670934,peer,metac-deepseek-r1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,250015,42.92908520322963,spot_baseline,metac-deepseek-r1,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,261570,9.663475285936922,baseline,RPM_bot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,261570,-21.9891900550197,peer,RPM_bot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,261570,13.86468838532139,spot_baseline,RPM_bot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,261570,-28.1866156257987,spot_peer,RPM_bot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34655,How many parties will be in the next German parliament?,2025-02-15 04:48:01.224441+00,261570,-0.3952952001515206,relative_legacy,RPM_bot,True,7,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35167 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,187708,-10.556645346096914,peer,twsummerbot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,187708,0.4446954725080196,spot_baseline,twsummerbot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,187708,-20.92326932738503,spot_peer,twsummerbot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,187708,-0.4655564941350023,relative_legacy,twsummerbot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,187708,0.2265748220525088,baseline,twsummerbot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,190710,9.431464573540868,peer,Bot_Pepa,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,190710,33.24881517966265,spot_baseline,Bot_Pepa,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,190710,13.14254729158324,spot_peer,Bot_Pepa,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,190710,25.39325173083404,baseline,Bot_Pepa,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,190710,0.0450579023183081,relative_legacy,Bot_Pepa,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,191026,25.337991022734244,baseline,manticAI,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,191026,29.901761999691058,spot_baseline,manticAI,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,191026,9.666761296997356,spot_peer,manticAI,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,191026,-0.016087182231819,relative_legacy,manticAI,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,191026,6.984197175911267,peer,manticAI,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,191935,67.89904141320213,spot_baseline,pgodzinai,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,191935,32.05935464337994,baseline,pgodzinai,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,191935,23.243847573483656,peer,pgodzinai,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,191935,0.4810551087880793,relative_legacy,pgodzinai,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,191935,49.12547453410501,spot_peer,pgodzinai,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,191975,-0.0576046624578537,relative_legacy,jkraybill_bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,191975,24.497801373038325,spot_baseline,jkraybill_bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,191975,6.360735447787767,baseline,jkraybill_bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,191975,1.052849689322968,peer,jkraybill_bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,191975,4.054956030857987,spot_peer,jkraybill_bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,192418,0.4541024927860111,relative_legacy,InstitutPelFutur,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,192418,47.63291851653738,spot_baseline,InstitutPelFutur,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,192418,45.23659295858821,baseline,InstitutPelFutur,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,192418,25.668903481214983,peer,InstitutPelFutur,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,192418,28.07988537218393,spot_peer,InstitutPelFutur,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,192924,5.268025782891358,spot_baseline,acm_bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,192924,4.3583015259792335,baseline,acm_bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,192924,-14.30270034554722,peer,acm_bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,192924,-0.6039263330259179,relative_legacy,acm_bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,192924,-15.914426312756175,spot_peer,acm_bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,218666,-130.49325878197726,spot_peer,GreeneiBot2,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,218666,-105.06714622450671,spot_baseline,GreeneiBot2,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,218666,-55.85922277686256,baseline,GreeneiBot2,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,218666,-69.30438177057675,peer,GreeneiBot2,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,218666,-2.102184174110409,relative_legacy,GreeneiBot2,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,220077,-7.824692032544293,peer,mmBot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,220077,16.307305222667264,baseline,mmBot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,220077,16.73150879947126,spot_baseline,mmBot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,220077,-4.010040103230886,spot_peer,mmBot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,220077,-0.3926676241657212,relative_legacy,mmBot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,222631,-133.9666053311138,spot_peer,Grizeu_Bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,222631,-108.41185030886042,spot_baseline,Grizeu_Bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,222631,-2.815455251622363,relative_legacy,Grizeu_Bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,222631,-93.92854136189692,peer,Grizeu_Bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,222631,-75.54642091317506,baseline,Grizeu_Bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,224797,35.41167141232102,baseline,cookics_bot_TEST,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,224797,23.261190992086505,peer,cookics_bot_TEST,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,224797,37.54658188703473,spot_peer,cookics_bot_TEST,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,224797,56.748996641949255,spot_baseline,cookics_bot_TEST,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,224797,0.4409238328393335,relative_legacy,cookics_bot_TEST,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236037,0.0575024761070434,relative_legacy,metac-o1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236037,9.77351907876189,peer,metac-o1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236037,26.71632217162893,baseline,metac-o1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236037,33.24881517966265,spot_baseline,metac-o1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236037,13.14254729158324,spot_peer,metac-o1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236038,22.920653958507906,peer,metac-gpt-4o,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236038,41.00460785668102,baseline,metac-gpt-4o,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236038,0.4204501626201467,relative_legacy,metac-gpt-4o,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236038,47.63291851653691,spot_baseline,metac-gpt-4o,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236038,28.079885372183437,spot_peer,metac-gpt-4o,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236040,34.255746311462865,baseline,metac-claude-3-5-sonnet-latest,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236040,39.92538481088862,spot_baseline,metac-claude-3-5-sonnet-latest,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236040,20.07590806247176,spot_peer,metac-claude-3-5-sonnet-latest,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236040,0.2292216007433325,relative_legacy,metac-claude-3-5-sonnet-latest,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236040,15.925981420148254,peer,metac-claude-3-5-sonnet-latest,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236041,0.2292402643758701,relative_legacy,metac-claude-3-5-sonnet-20240620,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236041,20.07590806247176,spot_peer,metac-claude-3-5-sonnet-20240620,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236041,34.2426288162621,baseline,metac-claude-3-5-sonnet-20240620,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236041,39.92538481088862,spot_baseline,metac-claude-3-5-sonnet-20240620,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236041,15.925410502629015,peer,metac-claude-3-5-sonnet-20240620,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236043,28.479707885626866,baseline,metac-grok-2-1212,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236043,13.14254729158324,spot_peer,metac-grok-2-1212,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236043,33.24881517966265,spot_baseline,metac-grok-2-1212,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236043,9.90944984672186,peer,metac-grok-2-1212,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236043,0.0641579978231142,relative_legacy,metac-grok-2-1212,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236045,5.254418668391413,peer,metac-Gemini-Exp-1206,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236045,27.867281606408124,spot_baseline,metac-Gemini-Exp-1206,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236045,7.554031657818926,spot_peer,metac-Gemini-Exp-1206,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236045,-0.0670977614380623,relative_legacy,metac-Gemini-Exp-1206,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236045,22.43232927059248,baseline,metac-Gemini-Exp-1206,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236047,-15.914426312756175,spot_peer,metac-Llama-3.1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236047,5.268025782891358,spot_baseline,metac-Llama-3.1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236047,4.423466463672282,baseline,metac-Llama-3.1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236047,-14.62201738275139,peer,metac-Llama-3.1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,236047,-0.6110368809275477,relative_legacy,metac-Llama-3.1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,237476,1.8183814942584,spot_baseline,NextWorldLab,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,237476,-19.49674922787501,spot_peer,NextWorldLab,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,237476,1.4520499467856256,baseline,NextWorldLab,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,237476,-0.6678625819126525,relative_legacy,NextWorldLab,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,237476,-16.496723733765922,peer,NextWorldLab,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,239758,6.781719363980223,baseline,metac-perplexity,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,239758,-0.5211462798597777,relative_legacy,metac-perplexity,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,239758,8.394043207715727,spot_baseline,metac-perplexity,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,239758,-12.668177448515486,spot_peer,metac-perplexity,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,239758,-11.216237388190716,peer,metac-perplexity,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,239759,4.433126976647795,baseline,metac-exa,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,239759,-0.6120882119650248,relative_legacy,metac-exa,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,239759,-15.914426312756175,spot_peer,metac-exa,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,239759,5.268025782891358,spot_baseline,metac-exa,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,239759,-14.666113348372628,peer,metac-exa,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,240414,0.7881515672598611,peer,minefrac1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,240414,13.325769661719582,baseline,minefrac1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,240414,22.091637613952,spot_baseline,minefrac1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,240414,1.5562475118068066,spot_peer,minefrac1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,240414,-0.1766592586704839,relative_legacy,minefrac1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,240416,0.0617052038152235,relative_legacy,metac-o1-preview,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,240416,33.24881517966265,spot_baseline,metac-o1-preview,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,240416,13.14254729158324,spot_peer,metac-o1-preview,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,240416,9.876428267708963,peer,metac-o1-preview,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,240416,27.290021373476325,baseline,metac-o1-preview,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,246118,20.07590806247176,spot_peer,laylaps,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,246118,39.92538481088862,spot_baseline,laylaps,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,246118,25.24017117170789,baseline,laylaps,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,246118,12.492894803977444,peer,laylaps,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,246118,0.1408360081515146,relative_legacy,laylaps,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,247214,31.21083393374027,baseline,ajf-bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,247214,19.62548300998038,peer,ajf-bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,247214,0.3481503126701941,relative_legacy,ajf-bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,247214,52.57991619499668,spot_baseline,ajf-bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,247214,33.217152192122434,spot_peer,ajf-bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,250015,37.54658188703473,spot_peer,metac-deepseek-r1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,250015,26.991593826909888,peer,metac-deepseek-r1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,250015,56.748996641949255,spot_baseline,metac-deepseek-r1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,250015,0.5293750140367731,relative_legacy,metac-deepseek-r1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,250015,41.331314347869146,baseline,metac-deepseek-r1,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,261570,27.820644856595305,baseline,RPM_bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,261570,0.1671082445608023,relative_legacy,RPM_bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,261570,20.07590806247176,spot_peer,RPM_bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,261570,39.92538481088862,spot_baseline,RPM_bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34656,"What will Nvidia's earnings per share be for Q4 FY2025 (the quarter ending January 26, 2025)?",2025-02-15 04:48:01.26346+00,261570,13.791614273185123,peer,RPM_bot,True,0.89,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35168 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,187708,-31.52768715544796,peer,twsummerbot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,187708,-69.92387782039785,spot_peer,twsummerbot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,187708,0.0,spot_baseline,twsummerbot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,187708,-1.459735313357486,relative_legacy,twsummerbot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,187708,0.0,baseline,twsummerbot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,190710,26.715876697498537,peer,Bot_Pepa,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,190710,131.9528664807629,spot_baseline,Bot_Pepa,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,190710,67.5270247637302,spot_peer,Bot_Pepa,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,190710,0.2033131508955676,relative_legacy,Bot_Pepa,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,190710,52.68522004307795,baseline,Bot_Pepa,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,191026,-6.773938398767403,relative_legacy,manticAI,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,191026,-135.48514380915827,baseline,manticAI,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,191026,-210.1572627401544,peer,manticAI,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,191026,-236.43759172619377,spot_peer,manticAI,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,191026,-159.85316534956405,spot_baseline,manticAI,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,191935,-273.6750760197805,spot_peer,pgodzinai,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,191935,-121.09118776389808,peer,pgodzinai,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,191935,-86.13251071669283,baseline,pgodzinai,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,191935,-3.9362866204784943,relative_legacy,pgodzinai,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,191935,-195.6011502714073,spot_baseline,pgodzinai,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,192418,-68.40127613592921,peer,InstitutPelFutur,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,192418,-69.92387782039785,spot_peer,InstitutPelFutur,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,192418,0.0,spot_baseline,InstitutPelFutur,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,192418,0.0,baseline,InstitutPelFutur,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,192418,-2.9033849664954987,relative_legacy,InstitutPelFutur,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,192924,-64.00358035022616,peer,acm_bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,192924,0.0,baseline,acm_bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,192924,-2.733910808484754,relative_legacy,acm_bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,192924,-69.92387782039785,spot_peer,acm_bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,192924,0.0,spot_baseline,acm_bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,218666,0.4041513647304247,relative_legacy,GreeneiBot2,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,218666,144.900269136231,spot_baseline,GreeneiBot2,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,218666,81.01390252984277,spot_peer,GreeneiBot2,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,218666,36.70119236018008,peer,GreeneiBot2,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,218666,67.48210016635558,baseline,GreeneiBot2,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,222631,54.08448876426985,baseline,Grizeu_Bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,222631,144.51858789480823,spot_baseline,Grizeu_Bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,222631,80.61631790336072,spot_peer,Grizeu_Bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,222631,0.3274300147779374,relative_legacy,Grizeu_Bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,222631,30.1287577302728,peer,Grizeu_Bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,224797,93.01351804102616,baseline,cookics_bot_TEST,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,224797,144.77047759379354,spot_baseline,cookics_bot_TEST,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,224797,80.87870300647039,spot_peer,cookics_bot_TEST,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,224797,0.5056096980964443,relative_legacy,cookics_bot_TEST,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,224797,47.24256811691215,peer,cookics_bot_TEST,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236037,107.82000957938465,baseline,metac-o1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236037,136.50145539322318,spot_baseline,metac-o1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236037,72.26513821420961,spot_peer,metac-o1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236037,0.4273699995607198,relative_legacy,metac-o1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236037,50.56128477766461,peer,metac-o1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236038,0.6771671395884143,relative_legacy,metac-gpt-4o,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236038,63.43994434365425,peer,metac-gpt-4o,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236038,144.51858789480823,spot_baseline,metac-gpt-4o,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236038,80.61631790336072,spot_peer,metac-gpt-4o,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236038,124.09247985900193,baseline,metac-gpt-4o,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236040,0.5475277499525059,relative_legacy,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236040,119.15416214953406,baseline,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236040,139.40464543878733,spot_baseline,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236040,75.28929451167228,spot_peer,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236040,58.26537723909391,peer,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236041,62.31434462781279,spot_peer,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236041,0.2403558836222832,relative_legacy,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236041,126.9486935502822,spot_baseline,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236041,108.54432730350392,baseline,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236041,47.01379949886737,peer,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236043,144.77047759379354,spot_baseline,metac-grok-2-1212,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236043,80.87870300647039,spot_peer,metac-grok-2-1212,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236043,0.679498163478648,relative_legacy,metac-grok-2-1212,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236043,63.07209516763928,peer,metac-grok-2-1212,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236043,123.62025853237203,baseline,metac-grok-2-1212,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236045,97.29550745276563,spot_baseline,metac-Gemini-Exp-1206,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236045,76.63219942091821,baseline,metac-Gemini-Exp-1206,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236045,17.942092044569577,peer,metac-Gemini-Exp-1206,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236045,-0.4648549708798514,relative_legacy,metac-Gemini-Exp-1206,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236045,31.42560910956637,spot_peer,metac-Gemini-Exp-1206,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236047,116.9039835076768,baseline,metac-Llama-3.1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236047,57.418840123824815,peer,metac-Llama-3.1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236047,0.5585664350586085,relative_legacy,metac-Llama-3.1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236047,76.60793034210404,spot_peer,metac-Llama-3.1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,236047,140.67053583600182,spot_baseline,metac-Llama-3.1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,237476,-33.82246216623403,spot_peer,NextWorldLab,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,237476,-35.326994494935576,peer,NextWorldLab,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,237476,-1.9724720714729715,relative_legacy,NextWorldLab,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,237476,34.657359027997266,spot_baseline,NextWorldLab,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,237476,28.63900127299471,baseline,NextWorldLab,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,239758,0.272955559510407,relative_legacy,metac-perplexity,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,239758,129.5133582747913,spot_baseline,metac-perplexity,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,239758,45.37903262752784,peer,metac-perplexity,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,239758,64.98587038250977,spot_peer,metac-perplexity,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,239758,103.54866770317848,baseline,metac-perplexity,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,239759,0.0,baseline,metac-exa,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,239759,0.0,spot_baseline,metac-exa,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,239759,-69.92387782039785,spot_peer,metac-exa,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,239759,-2.88036903306162,relative_legacy,metac-exa,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,239759,-67.4716264021544,peer,metac-exa,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,240414,0.0,baseline,minefrac1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,240414,-45.59266145599635,peer,minefrac1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,240414,-2.003648380181505,relative_legacy,minefrac1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,240414,-69.92387782039785,spot_peer,minefrac1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,240414,0.0,spot_baseline,minefrac1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,240416,80.75392256398295,spot_peer,metac-o1-preview,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,240416,117.21944963552052,baseline,metac-o1-preview,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,240416,59.03053835974117,peer,metac-o1-preview,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,240416,0.6324930979508617,relative_legacy,metac-o1-preview,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,240416,144.65068836900556,spot_baseline,metac-o1-preview,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,246118,134.27886726023485,spot_baseline,laylaps,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,246118,85.94655404949066,baseline,laylaps,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,246118,40.07025657819866,peer,laylaps,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,246118,0.3107238961441651,relative_legacy,laylaps,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,246118,69.94994224234676,spot_peer,laylaps,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,247214,-195.6011502714073,spot_baseline,ajf-bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,247214,-273.6750760197805,spot_peer,ajf-bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,247214,-101.42512205026448,peer,ajf-bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,247214,-3.31213094841346,relative_legacy,ajf-bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,247214,-72.49060026940748,baseline,ajf-bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,250015,80.87870300647039,spot_peer,metac-deepseek-r1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,250015,101.93926627363275,baseline,metac-deepseek-r1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,250015,51.17537398351823,peer,metac-deepseek-r1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,250015,144.77047759379354,spot_baseline,metac-deepseek-r1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,250015,0.5412982636974704,relative_legacy,metac-deepseek-r1,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,261570,81.2278709200681,spot_peer,RPM_bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,261570,0.5420964630008027,relative_legacy,RPM_bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,261570,50.8403688998435,peer,RPM_bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,261570,100.93329033471672,baseline,RPM_bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34657,How many southwest land border encounters will be reported by US Customs and Border Protection for February 2025?,2025-02-15 04:48:01.301026+00,261570,145.10567879084732,spot_baseline,RPM_bot,True,below_lower_bound,2025-02-17 16:00:00+00,2025-02-17 16:00:00+00,1.0,2025-02-17 16:00:00+00,35169 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,187708,-133.14514272095806,spot_baseline,twsummerbot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,187708,-90.9888592802688,spot_peer,twsummerbot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,187708,-47.0179522775994,peer,twsummerbot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,187708,-68.99099783564701,baseline,twsummerbot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,187708,-1.5285350976982277,relative_legacy,twsummerbot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,190710,-60.81976746622508,spot_baseline,Bot_Pepa,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,190710,-0.6575039199819277,relative_legacy,Bot_Pepa,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,190710,-15.770469015346498,spot_peer,Bot_Pepa,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,190710,-45.37703965143403,baseline,Bot_Pepa,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,190710,-14.000825659466688,peer,Bot_Pepa,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,191026,64.2494081189171,peer,manticAI,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,191026,26.81059535536384,baseline,manticAI,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,191026,31.072747143477297,spot_baseline,manticAI,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,191026,79.79774617874398,spot_peer,manticAI,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,191026,1.4508475579317532,relative_legacy,manticAI,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,191935,-5.889151782819132,spot_baseline,pgodzinai,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,191935,41.35737129539569,spot_peer,pgodzinai,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,191935,28.06686239809032,peer,pgodzinai,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,191935,0.5145485992792379,relative_legacy,pgodzinai,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,191935,-4.129711999422059,baseline,pgodzinai,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,192418,-59.82996295548119,spot_peer,InstitutPelFutur,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,192418,-103.18466548558536,spot_baseline,InstitutPelFutur,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,192418,-2.202909716023496,relative_legacy,InstitutPelFutur,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,192418,-71.94811523875381,peer,InstitutPelFutur,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,192418,-100.081678680367,baseline,InstitutPelFutur,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,192924,8.494952464769609,spot_baseline,acm_bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,192924,7.305856927073931,baseline,acm_bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,192924,43.62482909596592,peer,acm_bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,192924,0.8890341589223968,relative_legacy,acm_bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,192924,56.316839712888,spot_peer,acm_bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,218666,-100.07404093344772,baseline,GreeneiBot2,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,218666,-2.259185646527837,relative_legacy,GreeneiBot2,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,218666,-145.75320602431617,spot_baseline,GreeneiBot2,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,218666,-72.44464702329597,peer,GreeneiBot2,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,218666,-104.10124511576126,spot_peer,GreeneiBot2,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,220077,28.75382142585852,spot_baseline,mmBot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,220077,28.58940903251633,baseline,mmBot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,220077,76.27094159019556,peer,mmBot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,220077,1.4895473519212168,relative_legacy,mmBot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,220077,77.38606343242044,spot_peer,mmBot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,222631,-144.51858789481372,spot_baseline,Grizeu_Bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,222631,-70.87407018993525,peer,Grizeu_Bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,222631,-2.2146623365615508,relative_legacy,Grizeu_Bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,222631,-102.8172422610787,spot_peer,Grizeu_Bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,222631,-98.42047883091686,baseline,Grizeu_Bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,224797,4.356257309743266,baseline,cookics_bot_TEST,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,224797,25.883835473269656,peer,cookics_bot_TEST,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,224797,0.504490988355186,relative_legacy,cookics_bot_TEST,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,224797,63.06339007569407,spot_peer,cookics_bot_TEST,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,224797,14.982020121313925,spot_baseline,cookics_bot_TEST,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236037,8.494951527270574,spot_baseline,metac-o1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236037,6.932887271423074,baseline,metac-o1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236037,42.284583309144175,peer,metac-o1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236037,0.8703995036242415,relative_legacy,metac-o1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236037,56.316838737888986,spot_peer,metac-o1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236038,28.768207245178136,spot_baseline,metac-gpt-4o,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236038,77.40102468451285,spot_peer,metac-gpt-4o,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236038,1.3883940018696683,relative_legacy,metac-gpt-4o,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236038,61.67275367205918,peer,metac-gpt-4o,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236038,24.558273594089183,baseline,metac-gpt-4o,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236040,-5.889151782819132,spot_baseline,metac-claude-3-5-sonnet-latest,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236040,0.5345537536473793,relative_legacy,metac-claude-3-5-sonnet-latest,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236040,30.58927464428969,peer,metac-claude-3-5-sonnet-latest,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236040,41.35737129539569,spot_peer,metac-claude-3-5-sonnet-latest,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236040,-5.033066306302808,baseline,metac-claude-3-5-sonnet-latest,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236041,-5.889151782819132,spot_baseline,metac-claude-3-5-sonnet-20240620,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236041,-5.037632448984578,baseline,metac-claude-3-5-sonnet-20240620,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236041,41.35737129539569,spot_peer,metac-claude-3-5-sonnet-20240620,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236041,0.5343452909817471,relative_legacy,metac-claude-3-5-sonnet-20240620,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236041,30.588539499154,peer,metac-claude-3-5-sonnet-20240620,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236043,-90.82992665811312,peer,metac-grok-2-1212,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236043,-120.612366081094,baseline,metac-grok-2-1212,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236043,-141.2916743379378,spot_baseline,metac-grok-2-1212,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236043,-99.4612521619277,spot_peer,metac-grok-2-1212,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236043,-2.8002038142061143,relative_legacy,metac-grok-2-1212,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236045,-38.82444090881275,peer,metac-Gemini-Exp-1206,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236045,-84.31994967851132,spot_baseline,metac-Gemini-Exp-1206,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236045,-40.21065851612419,spot_peer,metac-Gemini-Exp-1206,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236045,-1.3676439995039753,relative_legacy,metac-Gemini-Exp-1206,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236045,-70.93736521265018,baseline,metac-Gemini-Exp-1206,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236047,-4.991657833943927,baseline,metac-Llama-3.1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236047,-5.889151782819132,spot_baseline,metac-Llama-3.1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236047,41.35737129539569,spot_peer,metac-Llama-3.1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236047,0.5356230345110677,relative_legacy,metac-Llama-3.1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,236047,30.4969589958492,peer,metac-Llama-3.1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,237476,41.35737129539569,spot_peer,NextWorldLab,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,237476,-4.764398983842218,baseline,NextWorldLab,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,237476,29.80849409907968,peer,NextWorldLab,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,237476,0.5302486287900048,relative_legacy,NextWorldLab,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,237476,-5.889151782819132,spot_baseline,NextWorldLab,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,239758,-5.889151782819132,spot_baseline,metac-perplexity,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,239758,-4.952466602950134,baseline,metac-perplexity,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,239758,30.292436433686653,peer,metac-perplexity,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,239758,0.5348427079633766,relative_legacy,metac-perplexity,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,239758,41.35737129539569,spot_peer,metac-perplexity,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,239759,-0.1195049606614306,peer,metac-exa,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,239759,-40.54651081081639,spot_baseline,metac-exa,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,239759,5.31371790627853,spot_peer,metac-exa,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,239759,-0.3015471650422914,relative_legacy,metac-exa,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,239759,-33.933253686689866,baseline,metac-exa,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,240414,-8.70934513290863,baseline,minefrac1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,240414,15.406288693784871,peer,minefrac1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,240414,0.2015835245711374,relative_legacy,minefrac1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,240414,29.753906627058225,spot_peer,minefrac1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,240414,-17.046329348528236,spot_baseline,minefrac1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,240416,41.35737129539569,spot_peer,metac-o1-preview,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,240416,30.31101063411222,peer,metac-o1-preview,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,240416,-4.974528754760919,baseline,metac-o1-preview,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,240416,-5.889151782819132,spot_baseline,metac-o1-preview,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,240416,0.5347781546733139,relative_legacy,metac-o1-preview,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,246118,-141.2916743379378,spot_baseline,laylaps,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,246118,-52.01719299600923,baseline,laylaps,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,246118,-1.2000660245176529,relative_legacy,laylaps,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,246118,-36.43160293181028,peer,laylaps,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,246118,-99.4612521619277,spot_peer,laylaps,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,247214,-65.53984650424108,baseline,ajf-bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,247214,-66.77358887195578,spot_peer,ajf-bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,247214,-109.86122886681092,spot_baseline,ajf-bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,247214,-39.89327928431398,peer,ajf-bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,247214,-1.341754622768812,relative_legacy,ajf-bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,250015,2.4908642224207287,baseline,metac-deepseek-r1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,250015,8.49495152727006,spot_baseline,metac-deepseek-r1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,250015,0.2947316202399521,relative_legacy,metac-deepseek-r1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,250015,56.316838737888446,spot_peer,metac-deepseek-r1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,250015,16.53088328115917,peer,metac-deepseek-r1,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,261570,-111.75343482127175,spot_peer,RPM_bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,261570,-153.11108074115322,spot_baseline,RPM_bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,261570,-73.69273480599519,peer,RPM_bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,261570,-100.24703744125608,baseline,RPM_bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34658,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 04:48:01.337452+00,261570,-2.2875335881828898,relative_legacy,RPM_bot,True,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,2025-02-17 17:00:00+00,35170 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,187708,-9.21545306552629,peer,twsummerbot,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,187708,-20.40894633871303,spot_peer,twsummerbot,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,187708,-0.1601126713188065,relative_legacy,twsummerbot,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,187708,-4.184472328453048,baseline,twsummerbot,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,187708,-9.879997994258034,spot_baseline,twsummerbot,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,191026,13.200254910456657,spot_peer,manticAI,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,191026,13.151720291689688,spot_baseline,manticAI,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,191026,10.725080292131832,baseline,manticAI,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,191026,9.853054123266595,peer,manticAI,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,191026,0.00769021558871,relative_legacy,manticAI,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,191935,-0.1542413519389475,relative_legacy,pgodzinai,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,191935,-11.393766899468158,peer,pgodzinai,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,191935,-6.836292613159755,baseline,pgodzinai,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,191935,-48.14702123597278,spot_peer,pgodzinai,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,191935,-28.88834996584761,spot_baseline,pgodzinai,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,191975,-0.0609915060548274,relative_legacy,jkraybill_bot,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,191975,-1.110572145438447,baseline,jkraybill_bot,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,191975,-3.750636661177336,peer,jkraybill_bot,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,191975,-11.058895839215923,spot_peer,jkraybill_bot,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,191975,-3.4725940376072604,spot_baseline,jkraybill_bot,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,192418,-60.99915582263606,peer,InstitutPelFutur,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,192418,-35.75199901480496,baseline,InstitutPelFutur,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,192418,-36.84827970831032,spot_baseline,InstitutPelFutur,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,192418,-59.762606201116526,spot_peer,InstitutPelFutur,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,192418,-0.9018674472033624,relative_legacy,InstitutPelFutur,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,218666,8.204078017513023,peer,GreeneiBot2,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,218666,9.07968116584612,baseline,GreeneiBot2,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,218666,13.151720291689688,spot_baseline,GreeneiBot2,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,218666,13.200254910456657,spot_peer,GreeneiBot2,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,218666,0.0115112069255828,relative_legacy,GreeneiBot2,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,220077,13.05158195007546,baseline,mmBot,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,220077,19.955476468233627,peer,mmBot,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,220077,0.0683813486106221,relative_legacy,mmBot,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,220077,13.200254910456676,spot_peer,mmBot,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,220077,13.151720291689704,spot_baseline,mmBot,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236037,19.71229522126041,baseline,metac-o1,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236037,0.188606315235568,relative_legacy,metac-o1,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236037,29.42664226069438,spot_peer,metac-o1,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236037,24.27134135851208,spot_baseline,metac-o1,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236037,23.144648441323508,peer,metac-o1,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236038,-6.019846959341847,peer,metac-gpt-4o,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236038,-0.0016109274155731,baseline,metac-gpt-4o,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236038,0.0,spot_baseline,metac-gpt-4o,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236038,-0.2083272166192895,relative_legacy,metac-gpt-4o,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236038,-5.991487909959613,spot_peer,metac-gpt-4o,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236040,16.58720895107544,baseline,metac-claude-3-5-sonnet-latest,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236040,18.53790100201897,peer,metac-claude-3-5-sonnet-latest,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236040,0.1233370217607922,relative_legacy,metac-claude-3-5-sonnet-latest,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236040,23.23290541617505,spot_peer,metac-claude-3-5-sonnet-latest,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236040,20.026896479186423,spot_baseline,metac-claude-3-5-sonnet-latest,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236041,-2.759009312725201,spot_baseline,metac-claude-3-5-sonnet-20240620,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236041,-2.29274628936928,baseline,metac-claude-3-5-sonnet-20240620,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236041,-9.39770324809144,peer,metac-claude-3-5-sonnet-20240620,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236041,-0.2542655378628152,relative_legacy,metac-claude-3-5-sonnet-20240620,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236041,-10.01759217575773,spot_peer,metac-claude-3-5-sonnet-20240620,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236043,26.303440583379384,spot_baseline,metac-grok-2-1212,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236043,32.39199773087293,spot_peer,metac-grok-2-1212,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236043,0.2264986295067582,relative_legacy,metac-grok-2-1212,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236043,26.132453129804446,peer,metac-grok-2-1212,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236043,21.73954201290456,baseline,metac-grok-2-1212,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236045,2.109674314896,spot_peer,metac-Gemini-Exp-1206,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236045,4.550749229666125,baseline,metac-Gemini-Exp-1206,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236045,0.7170778643590795,peer,metac-Gemini-Exp-1206,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236045,5.551565619437198,spot_baseline,metac-Gemini-Exp-1206,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236045,-0.1161841129774285,relative_legacy,metac-Gemini-Exp-1206,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236047,-10.823292454658342,baseline,metac-Llama-3.1,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236047,-0.4247371387240977,relative_legacy,metac-Llama-3.1,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236047,-25.062998669451986,spot_peer,metac-Llama-3.1,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236047,-22.019859007563447,peer,metac-Llama-3.1,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,236047,-13.069327647615578,spot_baseline,metac-Llama-3.1,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,237476,0.1469706930200083,relative_legacy,NextWorldLab,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,237476,30.86044183458544,spot_peer,NextWorldLab,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,237476,25.253895737580724,spot_baseline,NextWorldLab,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,237476,13.400285165135427,baseline,NextWorldLab,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,237476,15.391026666152,peer,NextWorldLab,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,239758,-14.768499377228144,spot_peer,metac-perplexity,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,239758,-0.2984619701914103,relative_legacy,metac-perplexity,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,239758,-12.93108945412066,peer,metac-perplexity,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,239758,-4.799457480464253,baseline,metac-perplexity,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,239758,-6.014711685885597,spot_baseline,metac-perplexity,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,239759,-16.096404744368105,spot_baseline,metac-exa,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,239759,-0.4079548278265237,relative_legacy,metac-exa,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,239759,-22.40304079309376,peer,metac-exa,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,239759,-11.615985640435792,baseline,metac-exa,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,239759,-29.48028278513956,spot_peer,metac-exa,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,240416,13.200254910456657,spot_peer,metac-o1-preview,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,240416,10.767126688807153,baseline,metac-o1-preview,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,240416,13.151720291689688,spot_baseline,metac-o1-preview,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,240416,0.0083524275970645,relative_legacy,metac-o1-preview,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,240416,9.904054039987589,peer,metac-o1-preview,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,246118,0.0576891334942617,relative_legacy,laylaps,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,246118,18.599549056514636,spot_peer,laylaps,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,246118,16.851749363878543,spot_baseline,laylaps,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,246118,8.902365740836613,baseline,laylaps,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,246118,8.82163614284523,peer,laylaps,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,250015,0.1770235269391198,relative_legacy,metac-deepseek-r1,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,250015,17.469146015515033,peer,metac-deepseek-r1,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,250015,14.77381597785627,baseline,metac-deepseek-r1,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,250015,35.27610027699024,spot_peer,metac-deepseek-r1,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34659,How many Oscars will The Brutalist win in 2025?,2025-02-15 04:48:01.658692+00,250015,28.279858792711256,spot_baseline,metac-deepseek-r1,True,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35171 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,187708,-0.0771710976058265,relative_legacy,twsummerbot,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,187708,29.11921002944121,spot_baseline,twsummerbot,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,187708,-2.4140566337373555,peer,twsummerbot,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,187708,12.225461181167413,baseline,twsummerbot,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,187708,-6.881643776380907,spot_peer,twsummerbot,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,191026,0.4467558656315606,relative_legacy,manticAI,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,191026,53.230535607129326,spot_peer,manticAI,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,191026,81.0998505186963,spot_baseline,manticAI,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,191026,66.15159403508358,baseline,manticAI,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,191026,39.32151445173248,peer,manticAI,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,191935,2.501785101714773,peer,pgodzinai,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,191935,0.0223660247285805,relative_legacy,pgodzinai,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,191935,27.697731694359703,spot_peer,pgodzinai,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,191935,59.020938815880896,spot_baseline,pgodzinai,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,191935,4.764386216485411,baseline,pgodzinai,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,192418,0.184012178990487,relative_legacy,InstitutPelFutur,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,192418,60.78844916119508,spot_baseline,InstitutPelFutur,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,192418,29.74174073194936,spot_peer,InstitutPelFutur,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,192418,20.13849690050192,peer,InstitutPelFutur,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,192418,58.4972141960551,baseline,InstitutPelFutur,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,192924,0.1388410821398795,relative_legacy,acm_bot,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,192924,57.21842600035549,spot_baseline,acm_bot,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,192924,25.613244610551323,spot_peer,acm_bot,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,192924,16.51533603952075,peer,acm_bot,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,192924,46.17255716747327,baseline,acm_bot,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,218666,0.1292524155547762,relative_legacy,GreeneiBot2,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,218666,35.75538980907514,baseline,GreeneiBot2,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,218666,56.48730622497033,spot_baseline,GreeneiBot2,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,218666,24.76775285294457,spot_peer,GreeneiBot2,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,218666,14.628134687527282,peer,GreeneiBot2,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,220077,60.78844916119508,spot_baseline,mmBot,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,220077,59.98033189235872,baseline,mmBot,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,220077,20.13849690050192,peer,mmBot,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,220077,0.184012178990487,relative_legacy,mmBot,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,220077,29.74174073194936,spot_peer,mmBot,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236037,-0.0078160532963202,relative_legacy,metac-o1,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236037,36.42625120899112,baseline,metac-o1,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236037,5.639348721394279,peer,metac-o1,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236037,45.58253107832961,spot_baseline,metac-o1,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236037,12.157100241089775,spot_peer,metac-o1,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236038,51.25992045343936,baseline,metac-gpt-4o,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236038,21.4798222333418,peer,metac-gpt-4o,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236038,0.2021893807280297,relative_legacy,metac-gpt-4o,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236038,31.34884306150603,spot_peer,metac-gpt-4o,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236038,62.17815436368264,spot_baseline,metac-gpt-4o,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236040,0.2021918162036578,relative_legacy,metac-claude-3-5-sonnet-latest,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236040,62.17815436368262,spot_baseline,metac-claude-3-5-sonnet-latest,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236040,51.32106445132069,baseline,metac-claude-3-5-sonnet-latest,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236040,21.47929620090252,peer,metac-claude-3-5-sonnet-latest,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236040,31.348843061506017,spot_peer,metac-claude-3-5-sonnet-latest,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236041,54.67430949901008,baseline,metac-claude-3-5-sonnet-20240620,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236041,66.22432816215019,spot_baseline,metac-claude-3-5-sonnet-20240620,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236041,36.02797596369906,spot_peer,metac-claude-3-5-sonnet-20240620,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236041,0.2551420932156426,relative_legacy,metac-claude-3-5-sonnet-20240620,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236041,25.38335144637531,peer,metac-claude-3-5-sonnet-20240620,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236043,0.1279423123747455,relative_legacy,metac-grok-2-1212,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236043,56.4873062249703,spot_baseline,metac-grok-2-1212,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236043,24.767752852944557,spot_peer,metac-grok-2-1212,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236043,16.00782223551614,peer,metac-grok-2-1212,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236043,46.49569520138243,baseline,metac-grok-2-1212,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236045,0.3197474778973915,relative_legacy,metac-Gemini-Exp-1206,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236045,41.95986402171293,spot_peer,metac-Gemini-Exp-1206,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236045,71.35379350059553,spot_baseline,metac-Gemini-Exp-1206,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236045,57.65375417739615,baseline,metac-Gemini-Exp-1206,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236045,29.839239313230287,peer,metac-Gemini-Exp-1206,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236047,-45.62442800144746,baseline,metac-Llama-3.1,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236047,-91.58336942581784,peer,metac-Llama-3.1,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236047,-1.3321611816935317,relative_legacy,metac-Llama-3.1,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236047,-104.64311636936624,spot_peer,metac-Llama-3.1,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,236047,-55.41780081715155,spot_baseline,metac-Llama-3.1,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,237476,-50.927046922583045,spot_baseline,NextWorldLab,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,237476,-28.281827283220647,baseline,NextWorldLab,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,237476,-55.13946032913872,peer,NextWorldLab,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,237476,-0.8184224380463854,relative_legacy,NextWorldLab,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,237476,-99.4498559336219,spot_peer,NextWorldLab,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,239758,-14.747934544368269,peer,metac-perplexity,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,239758,-13.751643920900603,spot_peer,metac-perplexity,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,239758,23.178533591891043,spot_baseline,metac-perplexity,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,239758,18.20691306844079,baseline,metac-perplexity,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,239758,-0.283617115703011,relative_legacy,metac-perplexity,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,239759,-0.0962056572245398,relative_legacy,metac-exa,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,239759,-1.3334942556830756,peer,metac-exa,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,239759,27.097599153192903,baseline,metac-exa,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,239759,2.124449735371354,spot_peer,metac-exa,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,239759,36.90702464285426,spot_baseline,metac-exa,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,240416,63.5469609499235,spot_baseline,metac-o1-preview,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,240416,32.931777520931355,spot_peer,metac-o1-preview,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,240416,0.2197923958230148,relative_legacy,metac-o1-preview,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,240416,22.52925734070937,peer,metac-o1-preview,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,240416,51.53116553021332,baseline,metac-o1-preview,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,246118,-107.48401931137954,peer,laylaps,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,246118,-142.35918844976797,spot_baseline,laylaps,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,246118,-205.18509199783995,spot_peer,laylaps,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,246118,-1.5290826943307467,relative_legacy,laylaps,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,246118,-74.7674642684096,baseline,laylaps,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,250015,45.81475770432913,baseline,metac-deepseek-r1,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,250015,26.45199931046469,spot_peer,metac-deepseek-r1,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,250015,0.1492581620136036,relative_legacy,metac-deepseek-r1,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,250015,57.94372005826531,spot_baseline,metac-deepseek-r1,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34660,How many Oscars will A Complete Unknown win in 2025?,2025-02-15 04:48:01.690688+00,250015,17.1004329271559,peer,metac-deepseek-r1,True,0-1,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35172 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,187708,-0.1506944186634486,relative_legacy,twsummerbot,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,187708,23.661791823551702,spot_peer,twsummerbot,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,187708,36.175090406073856,spot_baseline,twsummerbot,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,187708,17.267227437124113,baseline,twsummerbot,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,187708,11.29433365337356,peer,twsummerbot,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,191026,68.61313177612591,spot_peer,manticAI,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,191026,0.1322930107824486,relative_legacy,manticAI,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,191026,55.72047827237235,peer,manticAI,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,191026,51.03579793294777,baseline,manticAI,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,191026,62.55327061455122,spot_baseline,manticAI,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,192418,-111.37662233778336,spot_peer,InstitutPelFutur,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,192418,-43.06765580733931,spot_baseline,InstitutPelFutur,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,192418,-41.162319745918,baseline,InstitutPelFutur,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,192418,-1.7874256782670646,relative_legacy,InstitutPelFutur,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,192418,-71.86890166894332,peer,InstitutPelFutur,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,218666,60.80757998994223,peer,GreeneiBot2,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,218666,0.4348642037619938,relative_legacy,GreeneiBot2,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,218666,85.35374793274471,spot_baseline,GreeneiBot2,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,218666,107.46766984170822,spot_peer,GreeneiBot2,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,218666,48.29825041980928,baseline,GreeneiBot2,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,220077,-281.7876954190422,spot_peer,mmBot,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,220077,-143.06765580734,spot_baseline,mmBot,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,220077,-4.006630435924134,relative_legacy,mmBot,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,220077,-256.5292666675905,peer,mmBot,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,220077,-140.28162609888125,baseline,mmBot,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236037,76.31045758699537,spot_peer,metac-o1,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236037,67.0701870752551,spot_baseline,metac-o1,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236037,52.77226479928023,baseline,metac-o1,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236037,59.458744954178016,peer,metac-o1,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236037,0.215044352114449,relative_legacy,metac-o1,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236038,77.01907482581763,baseline,metac-gpt-4o,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236038,0.7260406867905598,relative_legacy,metac-gpt-4o,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236038,100.50677288470492,peer,metac-gpt-4o,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236038,121.66970461132284,spot_peer,metac-gpt-4o,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236038,93.68773381337036,spot_baseline,metac-gpt-4o,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236040,63.405423401990895,peer,metac-claude-3-5-sonnet-latest,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236040,76.95525119802815,spot_peer,metac-claude-3-5-sonnet-latest,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236040,0.2252325848791088,relative_legacy,metac-claude-3-5-sonnet-latest,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236040,67.44856249380865,spot_baseline,metac-claude-3-5-sonnet-latest,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236040,55.47821772726501,baseline,metac-claude-3-5-sonnet-latest,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236041,63.97385131955605,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236041,0.1591101090754416,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236041,58.50982435674875,peer,metac-claude-3-5-sonnet-20240620,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236041,52.626744210701744,baseline,metac-claude-3-5-sonnet-20240620,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236041,71.03395859950996,spot_peer,metac-claude-3-5-sonnet-20240620,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236043,-22.161460295122534,spot_baseline,metac-grok-2-1212,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236043,-18.15776885838435,baseline,metac-grok-2-1212,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236043,-63.47584320268667,peer,metac-grok-2-1212,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236043,-1.4794585715464763,relative_legacy,metac-grok-2-1212,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236043,-75.75015022494902,spot_peer,metac-grok-2-1212,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236045,43.39855201053411,peer,metac-Gemini-Exp-1206,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236045,0.2212864332788676,relative_legacy,metac-Gemini-Exp-1206,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236045,69.2876427232157,spot_baseline,metac-Gemini-Exp-1206,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236045,80.08924755178595,spot_peer,metac-Gemini-Exp-1206,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236045,37.598741033711306,baseline,metac-Gemini-Exp-1206,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236047,67.44836045738842,spot_baseline,metac-Llama-3.1,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236047,0.2250985780614693,relative_legacy,metac-Llama-3.1,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236047,62.74885739198657,peer,metac-Llama-3.1,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236047,55.12804870347208,baseline,metac-Llama-3.1,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,236047,76.95490690559645,spot_peer,metac-Llama-3.1,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,237476,-184.76867675001287,spot_peer,NextWorldLab,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,237476,-86.13531161467861,spot_baseline,NextWorldLab,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,237476,-49.73368501409608,baseline,NextWorldLab,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,237476,-106.80783175687463,peer,NextWorldLab,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,237476,-1.856956298605687,relative_legacy,NextWorldLab,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,239758,62.62401309945896,spot_peer,metac-perplexity,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,239758,59.03875799023886,spot_baseline,metac-perplexity,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,239758,45.75650260918438,baseline,metac-perplexity,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,239758,47.83094240155472,peer,metac-perplexity,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,239758,0.0688527433227455,relative_legacy,metac-perplexity,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,239759,-68.56121130011446,peer,metac-exa,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,239759,-1.480382705346937,relative_legacy,metac-exa,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,239759,-90.32182552947177,spot_peer,metac-exa,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,239759,-22.88411821449919,baseline,metac-exa,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,239759,-30.712357276784324,spot_baseline,metac-exa,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,240416,11.464383729765538,spot_baseline,metac-o1-preview,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,240416,9.165337995477438,baseline,metac-o1-preview,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,240416,-15.88981375717173,peer,metac-o1-preview,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,240416,-0.8185294318925391,relative_legacy,metac-o1-preview,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,240416,-18.447988589507297,spot_peer,metac-o1-preview,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,246118,-92.07198691254112,spot_peer,laylaps,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,246118,-0.9777321316829088,relative_legacy,laylaps,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,246118,-47.00363672240197,peer,laylaps,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,246118,-31.739380551401474,spot_baseline,laylaps,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,246118,-16.215726465992955,baseline,laylaps,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,250015,74.60159624378299,spot_baseline,metac-deepseek-r1,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,250015,0.3427246142487376,relative_legacy,metac-deepseek-r1,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,250015,89.14481276922396,spot_peer,metac-deepseek-r1,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,250015,56.01617390140118,baseline,metac-deepseek-r1,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34661,"How many lawsuits will have been filed against the Trump Administration according to the JustSecurity tracker on March 31, 2025?",2025-02-15 04:48:01.721977+00,250015,66.45499575839715,peer,metac-deepseek-r1,True,Greater than 70,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35173 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,187708,-11.73984165652928,spot_peer,twsummerbot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,187708,6.6623601123126,spot_baseline,twsummerbot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,187708,-5.676635837535626,peer,twsummerbot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,187708,-0.2815673428379652,relative_legacy,twsummerbot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,187708,3.142827881370025,baseline,twsummerbot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,191026,14.189279101778064,baseline,manticAI,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,191026,-1.656587470894648,peer,manticAI,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,191026,-0.3148732517368278,relative_legacy,manticAI,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,191026,-1.6022800464692464,spot_peer,manticAI,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,191026,16.203594568839687,spot_baseline,manticAI,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,191975,10.296388096628174,spot_baseline,jkraybill_bot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,191975,-2.2103146967158467,peer,jkraybill_bot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,191975,-0.1250708006657243,relative_legacy,jkraybill_bot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,191975,2.887599272636269,baseline,jkraybill_bot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,191975,-7.878686923193981,spot_peer,jkraybill_bot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,192418,-0.1485267963575932,relative_legacy,InstitutPelFutur,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,192418,23.101772679828397,spot_baseline,InstitutPelFutur,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,192418,21.964961487591623,baseline,InstitutPelFutur,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,192418,4.52617280731293,peer,InstitutPelFutur,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,192418,5.727034196456248,spot_peer,InstitutPelFutur,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,192924,-0.3744832773427796,peer,acm_bot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,192924,4.5001980875234775,baseline,acm_bot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,192924,-1.3668207179721938,spot_peer,acm_bot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,192924,16.425203348601617,spot_baseline,acm_bot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,192924,-0.0734722504400708,relative_legacy,acm_bot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,218666,30.80930677119065,spot_baseline,GreeneiBot2,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,218666,0.0448753563868854,relative_legacy,GreeneiBot2,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,218666,15.58735714571316,baseline,GreeneiBot2,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,218666,6.898446449902145,peer,GreeneiBot2,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,218666,13.91628916852865,spot_peer,GreeneiBot2,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,220077,0.0458731250052554,relative_legacy,mmBot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,220077,12.48843097276442,peer,mmBot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,220077,29.396625467760703,baseline,mmBot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,220077,30.187858540222997,spot_baseline,mmBot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,220077,13.256000423125512,spot_peer,mmBot,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236037,-0.5586557043152528,relative_legacy,metac-o1,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236037,4.064209962273844,baseline,metac-o1,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236037,5.268025782891358,spot_baseline,metac-o1,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236037,-13.221321881539357,spot_peer,metac-o1,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236037,-10.430535186332945,peer,metac-o1,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236038,-29.389333245107014,spot_baseline,metac-gpt-4o,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236038,-50.04476584878763,spot_peer,metac-gpt-4o,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236038,-41.55834661905487,peer,metac-gpt-4o,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236038,-1.3827846511911777,relative_legacy,metac-gpt-4o,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236038,-24.060498928975083,baseline,metac-gpt-4o,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236040,5.72703494020631,spot_peer,metac-claude-3-5-sonnet-latest,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236040,18.922884605536385,baseline,metac-claude-3-5-sonnet-latest,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236040,23.10177337982845,spot_baseline,metac-claude-3-5-sonnet-latest,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236040,-0.1427872021788615,relative_legacy,metac-claude-3-5-sonnet-latest,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236040,5.057437220605865,peer,metac-claude-3-5-sonnet-latest,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236043,-0.5637920164087148,relative_legacy,metac-grok-2-1212,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236043,5.268025782891358,spot_baseline,metac-grok-2-1212,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236043,-13.221321881539357,spot_peer,metac-grok-2-1212,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236043,4.295159928234759,baseline,metac-grok-2-1212,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,236043,-10.76227487133503,peer,metac-grok-2-1212,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,237476,-13.221321881539357,spot_peer,NextWorldLab,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,237476,-8.245508405407428,peer,NextWorldLab,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,237476,3.212521163191256,baseline,NextWorldLab,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,237476,5.268025782891358,spot_baseline,NextWorldLab,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,237476,-0.4141345613401511,relative_legacy,NextWorldLab,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,239758,55.55204653197419,peer,metac-perplexity,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,239758,72.28006721652223,spot_peer,metac-perplexity,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,239758,65.22011906079629,baseline,metac-perplexity,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,239758,85.73992140459636,spot_baseline,metac-perplexity,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,239758,1.2081003750049648,relative_legacy,metac-perplexity,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,239759,-21.95777493024604,baseline,metac-exa,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,239759,-38.057363576126605,peer,metac-exa,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,239759,-1.2927400542122414,relative_legacy,metac-exa,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,239759,-50.04476584878527,spot_peer,metac-exa,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,239759,-29.3893332451048,spot_baseline,metac-exa,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,240416,5.268025782891358,spot_baseline,metac-o1-preview,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,240416,4.1357674165150895,baseline,metac-o1-preview,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,240416,-10.525425673528908,peer,metac-o1-preview,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,240416,-0.5600535829457417,relative_legacy,metac-o1-preview,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,240416,-13.221321881539357,spot_peer,metac-o1-preview,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,246118,30.809306771190982,spot_baseline,laylaps,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,246118,15.821605396098704,baseline,laylaps,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,246118,7.002113490463284,peer,laylaps,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,246118,13.916289168529005,spot_peer,laylaps,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,246118,0.0442844316107416,relative_legacy,laylaps,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,250015,50.73973345452577,spot_peer,metac-deepseek-r1,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,250015,65.46666609918793,spot_baseline,metac-deepseek-r1,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,250015,48.62814359629227,baseline,metac-deepseek-r1,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,250015,0.7477465218483289,relative_legacy,metac-deepseek-r1,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34662,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 04:48:01.753044+00,250015,37.97282814125107,peer,metac-deepseek-r1,True,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35174 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,187708,-32.9836097514955,peer,twsummerbot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,187708,-92.25410246469052,spot_baseline,twsummerbot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,187708,-71.329056066127,spot_peer,twsummerbot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,187708,-0.9470730434752428,relative_legacy,twsummerbot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,187708,-41.45721514062045,baseline,twsummerbot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,191026,0.5533988063510245,relative_legacy,manticAI,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,191026,38.1510088835358,spot_peer,manticAI,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,191026,11.463853803411064,spot_baseline,manticAI,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,191026,10.040909602661085,baseline,manticAI,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,191026,23.19055763304172,peer,manticAI,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,191935,39.90091682504169,spot_baseline,pgodzinai,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,191935,8.396508992442998,peer,pgodzinai,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,191935,4.914752603127162,baseline,pgodzinai,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,191935,0.1862139020559361,relative_legacy,pgodzinai,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,191935,68.16790873970147,spot_peer,pgodzinai,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,191975,-8.75873706929015,baseline,jkraybill_bot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,191975,-1.7976056590750464,spot_peer,jkraybill_bot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,191975,-0.0633018269496941,relative_legacy,jkraybill_bot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,191975,-0.7509630740554756,peer,jkraybill_bot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,191975,-26.38220207906237,spot_baseline,jkraybill_bot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,192418,41.233494803778775,spot_peer,InstitutPelFutur,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,192418,14.38410362258862,spot_baseline,InstitutPelFutur,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,192418,26.05444215320484,peer,InstitutPelFutur,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,192418,13.58536619525824,baseline,InstitutPelFutur,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,192418,0.62721678375096,relative_legacy,InstitutPelFutur,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,192924,-0.911388199311312,relative_legacy,acm_bot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,192924,-54.9306144334073,spot_baseline,acm_bot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,192924,-41.82328332470996,baseline,acm_bot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,192924,-31.41097618426891,peer,acm_bot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,192924,-31.932040921994684,spot_peer,acm_bot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,218666,-1.4695833090570536,relative_legacy,GreeneiBot2,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,218666,-52.24494100870102,peer,GreeneiBot2,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,218666,-59.45921367137648,baseline,GreeneiBot2,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,218666,-135.402510055116,spot_baseline,GreeneiBot2,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,218666,-116.87459741157612,spot_peer,GreeneiBot2,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,220077,14.367755950416688,spot_baseline,mmBot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,220077,13.912623412678162,baseline,mmBot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,220077,26.03617354855839,peer,mmBot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,220077,0.6267712824250286,relative_legacy,mmBot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,220077,41.2162389275973,spot_peer,mmBot,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236037,4.650726940893271,spot_peer,metac-o1,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236037,-2.917835877747912,peer,metac-o1,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236037,-15.368951103151884,baseline,metac-o1,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236037,-20.27325540540818,spot_baseline,metac-o1,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236037,-0.1496186607856541,relative_legacy,metac-o1,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236038,4.650726940893271,spot_peer,metac-gpt-4o,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236038,-20.27325540540818,spot_baseline,metac-gpt-4o,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236038,-0.0609988406652301,relative_legacy,metac-gpt-4o,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236038,-0.0466614676193403,peer,metac-gpt-4o,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236038,-11.20180089541685,baseline,metac-gpt-4o,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236041,-66.08779199911685,spot_baseline,metac-claude-3-5-sonnet-20240620,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236041,-43.709061685799234,spot_peer,metac-claude-3-5-sonnet-20240620,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236041,-0.4215184937877539,relative_legacy,metac-claude-3-5-sonnet-20240620,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236041,-13.939197469545103,peer,metac-claude-3-5-sonnet-20240620,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236041,-20.853704859509747,baseline,metac-claude-3-5-sonnet-20240620,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236043,11.672392901185928,baseline,metac-grok-2-1212,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236043,25.936655449763585,peer,metac-grok-2-1212,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236043,0.6243050660175254,relative_legacy,metac-grok-2-1212,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236043,41.23349480377927,spot_peer,metac-grok-2-1212,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236043,14.384103622589084,spot_baseline,metac-grok-2-1212,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236045,-13.401354359463982,baseline,metac-Gemini-Exp-1206,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236045,-10.64564168031275,peer,metac-Gemini-Exp-1206,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236045,-0.3337283792569335,relative_legacy,metac-Gemini-Exp-1206,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236045,-100.7451510271095,spot_baseline,metac-Gemini-Exp-1206,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236045,-80.29182954868034,spot_peer,metac-Gemini-Exp-1206,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236047,-20.27325540540818,spot_baseline,metac-Llama-3.1,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236047,4.650726940893271,spot_peer,metac-Llama-3.1,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236047,-0.1783924937549554,relative_legacy,metac-Llama-3.1,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236047,-4.290251165003202,peer,metac-Llama-3.1,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,236047,-16.278982838447583,baseline,metac-Llama-3.1,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,237476,0.166430001344951,relative_legacy,NextWorldLab,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,237476,-3.750620321854465,baseline,NextWorldLab,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,237476,8.581897061277747,peer,NextWorldLab,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,237476,-5.889151782819132,spot_baseline,NextWorldLab,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,237476,19.833947431403924,spot_peer,NextWorldLab,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,239758,19.21975743767793,baseline,metac-perplexity,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,239758,25.5412811882992,spot_baseline,metac-perplexity,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,239758,53.01051556758439,spot_peer,metac-perplexity,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,239758,0.8455624506140037,relative_legacy,metac-perplexity,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,239758,34.29136671333595,peer,metac-perplexity,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,239759,-30.97327895996216,baseline,metac-exa,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,239759,-40.54651081081639,spot_baseline,metac-exa,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,239759,-16.748820431482077,spot_peer,metac-exa,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,239759,-0.5977088199866348,relative_legacy,metac-exa,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,239759,-19.70864443257481,peer,metac-exa,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,240416,-3.145517688455473,peer,metac-o1-preview,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,240416,-15.592217092440285,baseline,metac-o1-preview,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,240416,-0.1537584234038426,relative_legacy,metac-o1-preview,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,240416,4.650726940893271,spot_peer,metac-o1-preview,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,240416,-20.27325540540818,spot_baseline,metac-o1-preview,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,246118,19.59663824815385,peer,laylaps,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,246118,14.384103622589084,spot_baseline,laylaps,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,246118,41.23349480377927,spot_peer,laylaps,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,246118,7.489838325189022,baseline,laylaps,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34663,"How many Instagram followers will the Dallas Mavericks have on March 30, 2025?",2025-02-15 04:48:01.784135+00,246118,0.4713865947868539,relative_legacy,laylaps,True,4653833.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35175 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,187708,78.5759774427011,spot_baseline,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,187708,5.623556481421483,peer,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,187708,28.49235935274427,baseline,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,187708,15.23190769670578,spot_peer,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,187708,0.0414202500710037,relative_legacy,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,191026,45.75891218339288,baseline,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,191026,0.0142243634161776,peer,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,191026,56.07149544744788,spot_baseline,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,191026,-1.146956460514629,spot_peer,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,191026,-0.0713154889909309,relative_legacy,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,191935,6.670099239544346,baseline,pgodzinai,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,191935,0.0,relative_legacy,pgodzinai,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,191935,8.698700281998876,spot_peer,pgodzinai,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,191935,69.59938131099001,spot_baseline,pgodzinai,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,191935,0.833645257229077,peer,pgodzinai,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,192418,0.6177909627054011,spot_peer,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,192418,54.90966929831157,baseline,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,192418,-0.0574875310039197,peer,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,192418,-0.0629432355159237,relative_legacy,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,192924,47.51093172795969,baseline,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,192924,-0.0160138613978394,relative_legacy,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,192924,4.060722359119443,spot_peer,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,192924,63.22682154995129,spot_baseline,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,192924,3.801254948508394,peer,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,204737,48.54268271702416,spot_baseline,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,204737,-6.626460543424502,spot_peer,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,204737,-0.1173855610717361,relative_legacy,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,204737,-4.046021695761749,peer,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,204737,33.62168128276135,baseline,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,218666,70.31006996041602,spot_baseline,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,218666,9.215942707284745,spot_peer,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,218666,0.0129552094776008,relative_legacy,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,218666,3.6879568548819424,peer,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,218666,27.217431836850576,baseline,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,220077,13.90558869283342,peer,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,220077,0.1065575834326791,relative_legacy,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,220077,13.759920972876037,spot_peer,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,220077,73.57896375540018,baseline,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236037,57.30301257534644,baseline,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236037,76.55347463629771,spot_baseline,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236037,13.759920972876037,spot_peer,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236037,0.0835822788660298,relative_legacy,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236037,11.103427402209142,peer,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236038,55.3068571611669,baseline,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236038,7.394335682150377,spot_peer,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236038,0.0244126684674705,relative_legacy,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236038,7.090383725972992,peer,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236040,1.4778560564515777,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236040,47.5921764208589,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236040,-0.0515407326027093,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236040,0.6177909627054011,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236041,-0.2200156971042,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236041,-14.407797619565288,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236041,-10.977004725593956,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236041,30.87596384903061,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236043,76.55347463629771,spot_baseline,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236043,12.26797346334249,peer,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236043,0.0945775026923637,relative_legacy,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236043,13.759920972876037,spot_peer,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236043,62.00387249188123,baseline,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236045,-0.0515477382009933,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236045,0.6177909627054011,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236045,45.24486872334084,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236045,1.342153877269885,peer,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236045,58.496250072115615,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236047,-51.8502373676665,peer,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236047,-25.687017149205648,baseline,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236047,-65.38611827664387,spot_peer,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236047,-0.7752017618890171,relative_legacy,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,237476,0.1056533520570933,relative_legacy,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,237476,53.98402319091086,baseline,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,237476,12.106662293893192,peer,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,237476,17.40190456160449,spot_peer,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,237476,81.55754288625727,spot_baseline,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,239758,47.7344970778977,baseline,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,239758,4.735965843799938,spot_peer,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,239758,4.252552675198356,peer,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,239758,64.15460290875237,spot_baseline,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,239758,-0.0092460907001278,relative_legacy,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,239759,26.303440583379377,spot_baseline,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,239759,-16.989219241515393,peer,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,239759,20.35914321345412,baseline,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,239759,-22.81228192528663,spot_peer,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,239759,-0.3007973781647503,relative_legacy,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,240416,11.331512396135668,peer,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,240416,58.20715443175392,baseline,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,240416,13.759920972876037,spot_peer,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,240416,0.08572313792288,relative_legacy,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,246118,-0.0924199588587064,relative_legacy,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,246118,-6.626460543424502,spot_peer,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,246118,48.54268271702416,spot_baseline,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,246118,25.770455350751984,baseline,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,246118,-3.199744733996591,peer,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,250015,48.54268271702416,spot_baseline,metac-deepseek-r1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,250015,-6.626460543424502,spot_peer,metac-deepseek-r1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,250015,-0.0474618987438432,relative_legacy,metac-deepseek-r1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,250015,-1.7190331932257754,peer,metac-deepseek-r1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34664,Will Dune: Part Two win an Oscar in 2025?,2025-02-15 04:48:02.129538+00,250015,13.144880880987502,baseline,metac-deepseek-r1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35176 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,185699,-1.034822726611937,peer,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,185699,-0.0190366987530581,relative_legacy,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,185699,-17.659903421738736,spot_peer,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,185699,3.1146493631331857,baseline,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,185699,52.60688116675877,spot_baseline,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,187708,0.0436551741137351,relative_legacy,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,187708,12.327736004141023,spot_peer,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,187708,9.378087158666611,peer,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,187708,45.42791291707747,baseline,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,187708,93.80975610740931,spot_baseline,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,191026,-0.0243220013401808,relative_legacy,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,191026,6.181876452100903,peer,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,191026,80.32270364349274,spot_baseline,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,191026,2.511797995241793,spot_peer,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,191026,65.56566661509457,baseline,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,192418,79.13420115544247,baseline,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,192418,5.770169466253307,spot_peer,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,192418,0.0268986815840553,relative_legacy,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,192418,11.02217695538798,peer,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,192418,84.79969065549501,spot_baseline,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,192924,-0.2314639869413061,spot_peer,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,192924,3.4725680411028166,peer,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,192924,-0.0593996520570061,relative_legacy,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,192924,76.55347463629771,spot_baseline,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,192924,57.32301433624774,baseline,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,204737,9.438664859187748,spot_peer,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,204737,64.73974703805949,baseline,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,204737,10.412604275063108,peer,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,204737,89.84018599921933,spot_baseline,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,204737,0.0363457343796081,relative_legacy,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,218666,-0.949956608904245,relative_legacy,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,218666,-64.1522389975893,peer,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,218666,3.8867108941532287,spot_peer,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,218666,82.21182747293444,spot_baseline,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,218666,-67.20837660124614,baseline,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,220077,-13.373593997111945,spot_peer,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,220077,55.88801641216465,baseline,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,220077,-9.155520878149842,peer,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,220077,-0.2185623268365564,relative_legacy,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,224797,0.0066774223180372,peer,cookics_bot_TEST,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,224797,83.18772411916731,spot_baseline,cookics_bot_TEST,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,224797,4.5969729034501485,spot_peer,cookics_bot_TEST,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,224797,0.0,relative_legacy,cookics_bot_TEST,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,224797,0.1208359451505899,baseline,cookics_bot_TEST,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236037,5.770169466253307,spot_peer,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236037,84.79969065549501,spot_baseline,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236037,0.001879486347043,relative_legacy,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236037,7.954421045675419,peer,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236037,63.01712579049765,baseline,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236038,76.55347463629771,spot_baseline,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236038,-0.2314639869413061,spot_peer,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236038,62.20257022088575,baseline,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236038,3.8911074177029743,peer,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236038,-0.0549901001617372,relative_legacy,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236040,-28.399182579382632,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236040,30.67179198431886,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236040,-19.30184391842268,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236040,-0.3685186391813508,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236041,47.53626000242515,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236041,-13.373593997111945,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236041,-0.2016919986683394,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236041,-6.963246397301003,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236043,-0.0554658105078283,relative_legacy,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236043,-0.2314639869413061,spot_peer,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236043,76.55347463629771,spot_baseline,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236043,61.82101245545947,baseline,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236043,3.859098184871837,peer,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236045,14.189738273921517,peer,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236045,95.60566524124027,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236045,72.69669520777732,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236045,13.634806824430662,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236045,0.086476169619484,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236047,-0.1248915676976967,relative_legacy,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236047,53.83143585032629,baseline,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236047,-6.597049277666961,spot_peer,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,236047,-1.3624673691872091,peer,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,237476,84.79969065549501,spot_baseline,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,237476,59.0087780813761,baseline,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,237476,7.550127750459016,peer,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,237476,2.3414933156393475e-05,relative_legacy,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,237476,5.770169466253307,spot_peer,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,239758,5.770169466253307,spot_peer,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,239758,0.0005593817050769,relative_legacy,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,239758,7.8005035080884895,peer,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,239758,61.64531766354044,baseline,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,239759,-1.3641630769474742,peer,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,239759,53.36355106086884,baseline,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,239759,-6.597049277666961,spot_peer,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,239759,-0.1248915676976967,relative_legacy,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,239759,67.80719051126377,spot_baseline,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,240416,0.0521501298357132,relative_legacy,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,240416,11.17630330083273,peer,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,240416,61.89424148606332,baseline,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,240416,11.447227699632238,spot_peer,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,246118,2.3414933156393475e-05,relative_legacy,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,246118,6.439013578018037,peer,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,246118,44.65793443158496,baseline,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,246118,84.79969065549501,spot_baseline,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34665,"Will Trump Media & Technology Group (the owner of Truth Social) stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.162074+00,246118,5.770169466253307,spot_peer,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35177 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,185699,21.412480535284736,spot_baseline,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,185699,2.5947184615283643,baseline,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,185699,1.7120381216381064,peer,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,185699,-0.0315474423012001,relative_legacy,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,185699,14.064976967755234,spot_peer,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,187708,84.95990111514514,spot_baseline,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,187708,60.31507814488187,spot_peer,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,187708,36.86298956080385,baseline,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,187708,27.14006669560525,peer,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,187708,0.1618843654133862,relative_legacy,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,191026,-1.609712669323054,relative_legacy,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,191026,-151.45731728297585,spot_baseline,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,191026,-123.6625875273047,baseline,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,191026,-94.20767250176796,peer,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,191026,-111.75044664202464,spot_peer,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,191975,14.213076453647618,peer,jkraybill_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,191975,53.538943964406606,spot_baseline,jkraybill_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,191975,19.568143527562054,baseline,jkraybill_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,191975,37.44676289237614,spot_peer,jkraybill_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,191975,0.0175926514426732,relative_legacy,jkraybill_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,192924,22.549422528963664,peer,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,192924,-0.0179556833975372,relative_legacy,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,192924,43.29594072761063,spot_baseline,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,192924,31.557313824968748,baseline,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,192924,29.991858637622048,spot_peer,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,204737,28.975847732916204,spot_peer,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,204737,41.8999465431266,spot_baseline,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,204737,-0.0258830441261995,relative_legacy,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,204737,21.641042133086472,peer,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,204737,29.58330539318614,baseline,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,218666,17.297197651315564,baseline,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,218666,49.910533367237626,spot_peer,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,218666,70.66410573094085,spot_baseline,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,218666,0.0380393557253097,relative_legacy,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,218666,12.356753168701472,peer,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,220077,55.54641908169136,baseline,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,220077,41.05471278169381,spot_peer,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,220077,0.1045261581883327,relative_legacy,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,220077,33.599801033775094,peer,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236037,58.496250072115615,spot_baseline,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236037,30.69461381962033,peer,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236037,42.68076987647665,baseline,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236037,0.0928104725877368,relative_legacy,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236037,41.05471278169381,spot_peer,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236038,58.496250072115615,spot_baseline,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236038,41.05471278169381,spot_peer,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236038,47.41495003176338,baseline,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236038,32.740948096090555,peer,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236038,0.1004004758965487,relative_legacy,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236040,26.02912419942311,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236040,30.52258910443855,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236040,-0.0667541004296826,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236040,20.18308765318009,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236041,-0.0667135730096227,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236041,30.647469052382345,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236041,26.02912419942311,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236041,20.29514524605587,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236043,47.06389546542779,baseline,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236043,0.0993944577662402,relative_legacy,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236043,58.496250072115615,spot_baseline,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236043,41.05471278169381,spot_peer,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236043,32.42022897543448,peer,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236045,47.9575719852047,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236045,64.15460290875237,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236045,45.17288766278834,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236045,0.1351668478777299,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236045,34.09807898945732,peer,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236047,33.81046127556389,spot_peer,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236047,38.336878633963146,baseline,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236047,0.0184836475274703,relative_legacy,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,236047,26.13914892103015,peer,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,237476,-100.0,spot_baseline,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,237476,-72.15278938743803,baseline,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,237476,-53.37911787143836,peer,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,237476,-1.0507591362446278,relative_legacy,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,237476,-74.29957752845772,spot_peer,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,239758,-262.9120617055316,peer,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,239758,-564.3856189774725,spot_baseline,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,239758,-412.2815391396188,spot_peer,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,239758,-3.8991394011255753,relative_legacy,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,239758,-360.6449698730858,baseline,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,239759,0.367618812546939,relative_legacy,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,239759,65.87553447843798,spot_peer,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,239759,73.46177918432232,baseline,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,239759,92.5999418556223,spot_baseline,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,239759,52.00141672055864,peer,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,240416,57.20779952410396,baseline,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,240416,40.90425437486636,peer,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,240416,0.2278118134651128,relative_legacy,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,240416,54.19684279186443,spot_peer,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,246118,-25.328795538337783,peer,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,246118,-55.15581406509247,spot_peer,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,246118,-35.48395305420303,baseline,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,246118,-0.5815295710005246,relative_legacy,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,246118,-73.69655941662063,spot_baseline,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,247214,17.449493898128594,spot_peer,ajf-bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,247214,26.062790812669856,spot_baseline,ajf-bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,247214,19.767593572164092,baseline,ajf-bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,247214,13.138524685364333,peer,ajf-bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34666,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2025-02-15 04:48:02.215475+00,247214,-0.1520222708947431,relative_legacy,ajf-bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35178 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,185699,-11.584671556184984,peer,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,185699,-20.35505507925467,spot_peer,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,185699,-0.1672594852165315,relative_legacy,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,185699,50.58909297299573,spot_baseline,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,185699,30.13892364211606,baseline,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,187708,4.609806282382267,peer,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,187708,0.05580695901899,relative_legacy,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,187708,41.43157317110453,baseline,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,187708,9.369591471368606,spot_peer,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,187708,91.68587646997544,spot_baseline,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,191026,75.27485914071337,spot_baseline,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,191026,61.47481218127249,baseline,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,191026,-1.10918180027656,peer,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,191026,-0.0253957378292389,relative_legacy,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,191026,-2.500235024525366,spot_peer,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,191935,11.665445578514884,spot_peer,pgodzinai,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,191935,94.86008474933556,spot_baseline,pgodzinai,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,191935,0.0153406151297475,relative_legacy,pgodzinai,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,191935,1.8174054212577884,peer,pgodzinai,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,191935,14.464761894424615,baseline,pgodzinai,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,191975,9.29587347036057,spot_peer,jkraybill_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,191975,5.687303377338872,baseline,jkraybill_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,191975,91.58395523360014,spot_baseline,jkraybill_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,191975,0.5772676278115166,peer,jkraybill_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,191975,0.0042129836770428,relative_legacy,jkraybill_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,192418,36.34738846502519,baseline,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,192418,-0.3513824973069907,peer,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,192418,-0.0125742615097668,relative_legacy,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,192418,-1.5754328758806408,spot_peer,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,192924,55.32227743398698,baseline,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,192924,-0.3994348793786319,peer,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,192924,-0.0151002848657548,relative_legacy,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,192924,-1.5754328758806408,spot_peer,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,192924,76.55347463629771,spot_baseline,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,204737,0.0518390503253721,relative_legacy,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,204737,85.83789250820709,spot_baseline,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,204737,5.139838154784783,spot_peer,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,204737,4.483582700576387,peer,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,204737,61.88790226785788,baseline,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,218666,4.388923350896605,spot_peer,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,218666,24.51918998618112,baseline,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,218666,1.5540471270519345,peer,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,218666,0.0129110159526852,relative_legacy,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,218666,84.79969065549501,spot_baseline,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,220077,0.0782865349721702,relative_legacy,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,220077,87.97057662822883,spot_baseline,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,220077,83.06686556628941,baseline,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,220077,6.598085277966501,peer,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,220077,6.6823744867688175,spot_peer,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,224797,48.54268271702416,spot_baseline,cookics_bot_TEST,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,224797,-21.83519090450229,spot_peer,cookics_bot_TEST,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,224797,-0.2256597272375866,relative_legacy,cookics_bot_TEST,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,224797,-15.752466788851994,peer,cookics_bot_TEST,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,224797,36.54629615112989,baseline,cookics_bot_TEST,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236037,8.079686697355843,peer,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236037,0.1011228170833047,relative_legacy,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236037,92.5999418556223,spot_baseline,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236037,10.030720353012327,spot_peer,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236037,67.07245494069106,baseline,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236038,-7.90148036976948,spot_peer,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236038,-0.0851414960274354,relative_legacy,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236038,-5.472975047571897,peer,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236038,54.7840673626278,baseline,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236040,-1.5754328758806408,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236040,61.53547155073089,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236040,-0.2745290113009213,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236040,-0.0147339455211813,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236041,-7.90148036976948,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236041,-0.0850351465672146,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236041,-5.458791114869441,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236041,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236041,54.67677551314491,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236043,76.55347463629771,spot_baseline,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236043,-0.2772228954163434,peer,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236043,-1.5754328758806408,spot_peer,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236043,-0.0147623930781666,relative_legacy,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236043,61.30861878388816,baseline,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236045,56.27615489101348,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236045,-1.5754328758806408,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236045,-0.015093237631512,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236045,-0.3883943504194299,peer,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236047,-7.90148036976948,spot_peer,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236047,53.240847793423406,baseline,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236047,-0.0834491418096694,relative_legacy,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,236047,-5.326892752395357,peer,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,237476,-1.5754328758806408,spot_peer,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,237476,-0.0151002848657548,relative_legacy,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,237476,-0.3627769148076645,peer,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,237476,57.20110214119755,baseline,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,239758,5.615601954293022,peer,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,239758,7.810470080252195,spot_peer,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,239758,89.53026213333067,spot_baseline,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,239758,56.67378448385448,baseline,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,239758,0.067035640372696,relative_legacy,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,239759,-1.5754328758806408,spot_peer,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,239759,61.29460576615979,baseline,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,239759,-0.2795144895218782,peer,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,239759,-0.0147888589848567,relative_legacy,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,239759,76.55347463629771,spot_baseline,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,240416,10.682671997951928,peer,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,240416,0.1365199640926641,relative_legacy,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,240416,97.08536543404836,spot_baseline,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,240416,71.69620996885578,baseline,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,240416,13.27495552553733,spot_peer,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,246118,40.62101145069744,baseline,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,246118,-0.0125742615097668,relative_legacy,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,246118,-1.5754328758806408,spot_peer,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,246118,76.55347463629771,spot_baseline,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,246118,-0.341838296999693,peer,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,247214,3.3401926531399493,spot_peer,ajf-bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,247214,62.44153638886425,baseline,ajf-bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,247214,3.361917308654687,peer,ajf-bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,247214,0.0358139578069205,relative_legacy,ajf-bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34667,"Will Lockheed Martin's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.25311+00,247214,83.34973368598351,spot_baseline,ajf-bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35179 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,185699,29.71525479917137,baseline,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,185699,-6.392905670579901,peer,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,185699,-0.1339560408374437,relative_legacy,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,185699,-9.094101423988832,spot_peer,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,185699,50.58909297299573,spot_baseline,MWG,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,187708,16.184020832736703,spot_peer,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,187708,37.99758117950994,baseline,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,187708,6.971197573270856,peer,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,187708,0.0590000307213823,relative_legacy,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,187708,85.59896973084807,spot_baseline,twsummerbot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,191026,37.531349463125935,baseline,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,191026,45.94316186372972,spot_baseline,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,191026,-12.448595225513271,spot_peer,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,191026,-0.2300184953343455,relative_legacy,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,191026,-12.919397802759208,peer,manticAI,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,191935,0.3811004628787618,peer,pgodzinai,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,191935,13.561504698103963,spot_peer,pgodzinai,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,191935,81.96681834964555,spot_baseline,pgodzinai,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,191935,2.303401658528101,baseline,pgodzinai,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,191935,0.0039790870139599,relative_legacy,pgodzinai,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,191975,-3.78138418890025,peer,jkraybill_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,191975,-0.0536486606038245,relative_legacy,jkraybill_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,191975,26.943217703194456,spot_baseline,jkraybill_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,191975,3.9372156814569386,baseline,jkraybill_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,191975,-26.167092856421004,spot_peer,jkraybill_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,192418,-117.8236901920216,spot_peer,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,192418,-46.72739385896259,baseline,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,192418,-55.579543470822784,peer,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,192418,-0.8061415064308773,relative_legacy,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,192924,51.68745728879619,baseline,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,192924,6.083409248090999,peer,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,192924,11.475121169398491,spot_peer,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,192924,0.0338161997867431,relative_legacy,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,192924,79.07720378619997,spot_baseline,acm_bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,204737,77.06176466562032,spot_baseline,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,204737,56.32467264478922,baseline,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,204737,5.440902988608328,peer,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,204737,0.0210353841897555,relative_legacy,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,204737,10.019917061044303,spot_peer,SynapseSeer,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,218666,-3.107502057897288,spot_peer,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,218666,1.1727438238924317,peer,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,218666,16.144680438832875,baseline,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,218666,58.88045670155503,spot_baseline,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,218666,0.0053339773029381,relative_legacy,GreeneiBot2,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,220077,9.65291726861544,spot_peer,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,220077,71.86610472579332,baseline,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,220077,5.581091927774391,peer,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,220077,0.0200396850865811,relative_legacy,mmBot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,224797,36.75904951906351,baseline,cookics_bot_TEST,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,224797,-0.1924874672980397,relative_legacy,cookics_bot_TEST,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,224797,-10.571667568984289,spot_peer,cookics_bot_TEST,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,224797,48.54268271702416,spot_baseline,cookics_bot_TEST,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,224797,-10.1807361431169,peer,cookics_bot_TEST,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236037,81.55754288625727,spot_baseline,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236037,13.265996225687324,spot_peer,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236037,0.0530750915548733,relative_legacy,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236037,7.706085313513211,peer,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236037,58.27702873638271,baseline,metac-o1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236038,47.09899113266064,baseline,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236038,58.496250072115615,spot_baseline,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236038,-3.3849101224268368,spot_peer,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236038,-0.1253817636153525,relative_legacy,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236038,-5.173728059103421,peer,metac-gpt-4o,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236040,0.0196248490382916,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236040,61.33284200154453,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236040,5.488746924486298,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236040,9.65291726861544,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236041,5.498453921500369,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236041,61.482467097709225,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236041,9.65291726861544,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236041,0.0196248490382916,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236043,76.55347463629771,spot_baseline,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236043,9.65291726861544,spot_peer,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236043,5.472923990407875,peer,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236043,0.019603705987114,relative_legacy,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236043,61.09181712406933,baseline,metac-grok-2-1212,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236045,3.337852496070168,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236045,48.94466926204333,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236045,0.5225109376064517,peer,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236045,-0.0458081403672659,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236045,67.80719051126377,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236047,-0.0484596358999518,relative_legacy,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236047,52.77856044901525,baseline,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236047,0.4147178605035928,peer,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236047,3.337852496070168,spot_peer,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,237476,12.734449559219044,peer,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,237476,0.1200733882278878,relative_legacy,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,237476,19.022525254338326,spot_peer,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,237476,89.53026213333067,spot_baseline,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,237476,69.3020830202459,baseline,NextWorldLab,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,239758,0.0695450114588163,relative_legacy,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,239758,15.606918710276773,spot_peer,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,239758,53.61651796458228,baseline,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,239758,8.606914070943517,peer,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,239759,0.1509871623691874,relative_legacy,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,239759,92.5999418556223,spot_baseline,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,239759,75.60869783761414,baseline,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,239759,21.238920925930493,spot_peer,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,239759,15.260705335097068,peer,metac-exa,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,240416,0.1338708318735789,relative_legacy,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,240416,13.650189586392647,peer,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,240416,67.26286149026741,baseline,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,240416,21.238920925930493,spot_peer,metac-o1-preview,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,246118,76.55347463629771,spot_baseline,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,246118,40.566623861232415,baseline,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,246118,4.4923574104904285,peer,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,246118,0.0188468682189869,relative_legacy,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,246118,9.65291726861544,spot_peer,laylaps,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,247214,-0.1950473426784701,relative_legacy,ajf-bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,247214,-10.338190654457756,peer,ajf-bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,247214,37.20267574264718,baseline,ajf-bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,247214,48.54268271702416,spot_baseline,ajf-bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,247214,-10.571667568984289,spot_peer,ajf-bot,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,250015,-3.3849101224268368,spot_peer,metac-deepseek-r1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,250015,-0.0344124535326927,relative_legacy,metac-deepseek-r1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,250015,-1.1126149449360705,peer,metac-deepseek-r1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34668,"Will Northrop Grumman's stock continuously remain below its all-time high until March 31, 2025?",2025-02-15 04:48:02.4818+00,250015,17.242281968114945,baseline,metac-deepseek-r1,True,yes,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,2025-02-18 19:00:00+00,35180 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,187708,24.88658928565171,baseline,twsummerbot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,187708,73.9012542446003,spot_baseline,twsummerbot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,187708,52.52303876071164,spot_peer,twsummerbot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,187708,17.75275998505058,peer,twsummerbot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,187708,0.2030867620993299,relative_legacy,twsummerbot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,191026,24.30056513584574,peer,manticAI,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,191026,59.80142808499901,spot_baseline,manticAI,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,191026,37.75179230779602,spot_peer,manticAI,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,191026,37.957963524555886,baseline,manticAI,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,191026,0.1269634607629822,relative_legacy,manticAI,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,191935,-55.16329922716617,spot_baseline,pgodzinai,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,191935,-22.00042311388713,peer,pgodzinai,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,191935,-1.337231280990249,relative_legacy,pgodzinai,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,191935,-2.3048607262627847,baseline,pgodzinai,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,191935,-82.68744582875799,spot_peer,pgodzinai,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,192418,57.32833408950734,spot_baseline,InstitutPelFutur,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,192418,0.1398856772319077,relative_legacy,InstitutPelFutur,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,192418,51.91901317984892,baseline,InstitutPelFutur,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,192418,32.34440853772361,peer,InstitutPelFutur,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,192418,35.16093193156665,spot_peer,InstitutPelFutur,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,192924,0.4611311782863487,relative_legacy,acm_bot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,192924,43.36776306058536,peer,acm_bot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,192924,71.71243787932033,spot_baseline,acm_bot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,192924,50.22999304470408,spot_peer,acm_bot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,192924,59.52532770199512,baseline,acm_bot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,218666,-50.83781732729877,spot_baseline,GreeneiBot2,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,218666,-78.15598860032547,spot_peer,GreeneiBot2,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,218666,-66.80967723295969,peer,GreeneiBot2,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,218666,-2.539135569861804,relative_legacy,GreeneiBot2,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,218666,-43.58688167578091,baseline,GreeneiBot2,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,220077,48.86502014744928,baseline,mmBot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,220077,27.65869624727059,peer,mmBot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,220077,0.0187930127082241,relative_legacy,mmBot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,220077,52.694332340474205,spot_baseline,mmBot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,220077,30.306263432579552,spot_peer,mmBot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,222631,29.09842376410015,peer,Grizeu_Bot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,222631,57.32833408950734,spot_baseline,Grizeu_Bot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,222631,35.16093193156665,spot_peer,Grizeu_Bot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,222631,45.64655747842112,baseline,Grizeu_Bot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,222631,0.0984630425492843,relative_legacy,Grizeu_Bot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236037,0.1058638770749214,relative_legacy,metac-o1,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236037,35.16093193156665,spot_peer,metac-o1,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236037,57.32833408950734,spot_baseline,metac-o1,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236037,29.82374682775692,peer,metac-o1,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236037,46.461381574742994,baseline,metac-o1,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236038,-173.78586127036945,spot_peer,metac-gpt-4o,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236038,-142.53604734460058,peer,metac-gpt-4o,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236038,-4.623127967356278,relative_legacy,metac-gpt-4o,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236038,-117.0398598866294,baseline,metac-gpt-4o,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236038,-142.12087760324982,spot_baseline,metac-gpt-4o,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236040,-38.30647299686076,peer,metac-claude-3-5-sonnet-latest,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236040,-48.08472180992796,spot_peer,metac-claude-3-5-sonnet-latest,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236040,-1.7691885513744574,relative_legacy,metac-claude-3-5-sonnet-latest,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236040,-22.133426300101146,spot_baseline,metac-claude-3-5-sonnet-latest,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236040,-18.187991773006967,baseline,metac-claude-3-5-sonnet-latest,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236041,16.552985120224804,spot_peer,metac-claude-3-5-sonnet-20240620,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236041,10.12386290445863,peer,metac-claude-3-5-sonnet-20240620,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236041,39.5662030423174,spot_baseline,metac-claude-3-5-sonnet-20240620,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236041,-0.2232242573104927,relative_legacy,metac-claude-3-5-sonnet-20240620,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236041,23.527720404940155,baseline,metac-claude-3-5-sonnet-20240620,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236043,-0.706576492000311,relative_legacy,metac-grok-2-1212,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236043,22.67097506151008,spot_baseline,metac-grok-2-1212,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236043,0.5160078791009945,peer,metac-grok-2-1212,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236043,18.65228174444155,baseline,metac-grok-2-1212,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236043,-1.146777526335248,spot_peer,metac-grok-2-1212,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236045,-0.3679970095302199,relative_legacy,metac-Gemini-Exp-1206,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236045,13.922283061240892,spot_peer,metac-Gemini-Exp-1206,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236045,30.0685140654858,baseline,metac-Gemini-Exp-1206,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236045,12.561225197574304,peer,metac-Gemini-Exp-1206,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236045,37.05507834965094,spot_baseline,metac-Gemini-Exp-1206,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236047,-142.12087760324982,spot_baseline,metac-Llama-3.1,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236047,-4.597998846698239,relative_legacy,metac-Llama-3.1,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236047,-116.34678948748476,baseline,metac-Llama-3.1,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236047,-141.67715348575638,peer,metac-Llama-3.1,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,236047,-173.78586127036945,spot_peer,metac-Llama-3.1,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,237476,0.0270626161473082,relative_legacy,NextWorldLab,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,237476,7.374326866291717,peer,NextWorldLab,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,237476,12.023511637826054,baseline,NextWorldLab,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,237476,35.16093193156665,spot_peer,NextWorldLab,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,237476,57.32833408950734,spot_baseline,NextWorldLab,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,239758,0.1024754277237784,relative_legacy,metac-perplexity,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,239758,46.161938402471655,baseline,metac-perplexity,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,239758,29.53845418604429,peer,metac-perplexity,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,239758,35.16093193156665,spot_peer,metac-perplexity,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,239758,57.32833408950734,spot_baseline,metac-perplexity,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,239759,57.93018068836575,baseline,metac-exa,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,239759,0.4391317963450584,relative_legacy,metac-exa,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,239759,71.71243787932049,spot_baseline,metac-exa,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,239759,50.22999304470423,spot_peer,metac-exa,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,239759,41.91000687922849,peer,metac-exa,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,240414,69.50309609158138,baseline,minefrac1,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,240414,0.8391578818382825,relative_legacy,minefrac1,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,240414,71.46864138946854,spot_peer,minefrac1,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,240414,54.79290660111256,peer,minefrac1,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,240414,91.9856931175046,spot_baseline,minefrac1,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,240416,-22.133426300101146,spot_baseline,metac-o1-preview,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,240416,-1.749124204905789,relative_legacy,metac-o1-preview,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,240416,-17.87877680159956,baseline,metac-o1-preview,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,240416,-37.92038344115626,peer,metac-o1-preview,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,240416,-48.08472180992796,spot_peer,metac-o1-preview,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,246118,0.1811327272123663,relative_legacy,laylaps,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,246118,46.77214441013068,baseline,laylaps,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,246118,39.8178494817894,spot_peer,laylaps,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,246118,61.77357356926541,spot_baseline,laylaps,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,246118,30.8534719851598,peer,laylaps,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,247214,57.23353155791713,peer,ajf-bot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,247214,0.8429969049054356,relative_legacy,ajf-bot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,247214,72.56911796598943,baseline,ajf-bot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,247214,67.12387881496166,spot_peer,ajf-bot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34669,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 04:48:02.696512+00,247214,87.83841975092983,spot_baseline,ajf-bot,True,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,2025-02-19 16:26:00+00,35181 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,190710,13.166338876388933,peer,Bot_Pepa,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,190710,6.439922606602427,spot_baseline,Bot_Pepa,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,190710,16.52224839084185,spot_peer,Bot_Pepa,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,190710,0.0535362010682861,relative_legacy,Bot_Pepa,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,190710,5.113968090468792,baseline,Bot_Pepa,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,191935,-17.68505324960384,baseline,pgodzinai,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,191935,-40.3337451508887,peer,pgodzinai,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,191935,-0.6626975105187708,relative_legacy,pgodzinai,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,191935,-53.39516780899507,spot_peer,pgodzinai,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,191935,-23.70608653262791,spot_baseline,pgodzinai,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,191975,-29.0108770544453,spot_baseline,jkraybill_bot,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,191975,-65.69852926071675,spot_peer,jkraybill_bot,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,191975,-0.0232147174152079,relative_legacy,jkraybill_bot,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,191975,-1.671964608023843,peer,jkraybill_bot,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,191975,-0.7382990186930458,baseline,jkraybill_bot,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,192418,21.95616024963441,spot_baseline,InstitutPelFutur,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,192418,21.19929806329209,baseline,InstitutPelFutur,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,192418,48.80289162514204,peer,InstitutPelFutur,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,192418,0.5070546072120212,relative_legacy,InstitutPelFutur,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,192418,52.508943682182206,spot_peer,InstitutPelFutur,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,218666,-5.927922745291703,peer,GreeneiBot2,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,218666,-0.1990124657484848,relative_legacy,GreeneiBot2,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,218666,-3.011091821981352,baseline,GreeneiBot2,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,218666,-7.444926954000267,spot_peer,GreeneiBot2,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,218666,-3.893907306706528,spot_baseline,GreeneiBot2,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,220077,0.2530873967903183,relative_legacy,mmBot,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,220077,13.658348606957892,spot_baseline,mmBot,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,220077,13.576232364896864,baseline,mmBot,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,220077,28.461087447642093,peer,mmBot,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,220077,33.26389046504255,spot_peer,mmBot,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,222631,11.554598650435093,baseline,Grizeu_Bot,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,222631,15.59796789125288,spot_baseline,Grizeu_Bot,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,222631,37.76243513617791,spot_peer,Grizeu_Bot,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,222631,0.2639268895829814,relative_legacy,Grizeu_Bot,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,222631,27.92616584895428,peer,Grizeu_Bot,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236037,59.08156789338597,spot_peer,metac-o1,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236037,24.790052008067804,spot_baseline,metac-o1,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236037,0.5669149656819226,relative_legacy,metac-o1,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236037,52.0392840360523,peer,metac-o1,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236037,21.43421829278456,baseline,metac-o1,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236038,3.5026479282072964,spot_baseline,metac-gpt-4o,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236038,3.0685597319860936,baseline,metac-gpt-4o,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236038,9.13280336811259,peer,metac-gpt-4o,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236038,-0.0170678120358839,relative_legacy,metac-gpt-4o,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236038,9.709848937431556,spot_peer,metac-gpt-4o,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236040,-9.67340478367111,spot_peer,metac-claude-3-5-sonnet-latest,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236040,-4.854751065975565,spot_baseline,metac-claude-3-5-sonnet-latest,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236040,-0.2485700620396692,relative_legacy,metac-claude-3-5-sonnet-latest,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236040,-8.027907491739656,peer,metac-claude-3-5-sonnet-latest,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236040,-4.255629536738207,baseline,metac-claude-3-5-sonnet-latest,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236041,0.2469836467207246,relative_legacy,metac-claude-3-5-sonnet-20240620,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236041,13.047440624651692,spot_baseline,metac-claude-3-5-sonnet-20240620,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236041,31.84701609664992,spot_peer,metac-claude-3-5-sonnet-20240620,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236041,28.590228113676435,peer,metac-claude-3-5-sonnet-20240620,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236041,11.370197790570003,baseline,metac-claude-3-5-sonnet-20240620,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236043,-131.84933202507403,peer,metac-grok-2-1212,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236043,-56.95467481347046,baseline,metac-grok-2-1212,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236043,-1.9191132672350315,relative_legacy,metac-grok-2-1212,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236043,-149.30921478008446,spot_peer,metac-grok-2-1212,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236043,-65.06095766097167,spot_baseline,metac-grok-2-1212,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236045,-61.4369529042398,peer,metac-Gemini-Exp-1206,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236045,-26.92675064447972,baseline,metac-Gemini-Exp-1206,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236045,-31.183840649617963,spot_baseline,metac-Gemini-Exp-1206,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236045,-70.73826766751868,spot_peer,metac-Gemini-Exp-1206,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236045,-0.9655371215882416,relative_legacy,metac-Gemini-Exp-1206,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236047,-35.0181724689576,baseline,metac-Llama-3.1,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236047,-40.13651195482127,spot_baseline,metac-Llama-3.1,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236047,-91.50213206015772,spot_peer,metac-Llama-3.1,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236047,-1.22346162213947,relative_legacy,metac-Llama-3.1,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,236047,-80.310794076486,peer,metac-Llama-3.1,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,237476,-3.1855356317464216,spot_baseline,NextWorldLab,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,237476,-1.58914849879807,baseline,NextWorldLab,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,237476,-3.837020533554812,peer,NextWorldLab,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,237476,-0.1296680361209627,relative_legacy,NextWorldLab,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,237476,-5.802005763549602,spot_peer,NextWorldLab,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,239758,-2.5634579581315644,baseline,metac-perplexity,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,239758,-3.010152134049438,spot_baseline,metac-perplexity,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,239758,-5.395240113528426,spot_peer,metac-perplexity,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,239758,-0.1898134640216922,relative_legacy,metac-perplexity,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,239758,-4.445642143265085,peer,metac-perplexity,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,239759,0.2047032146575599,relative_legacy,metac-exa,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,239759,9.646773314569318,baseline,metac-exa,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,239759,16.595623285353028,spot_baseline,metac-exa,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,239759,22.563054871952552,peer,metac-exa,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,239759,40.07628991845286,spot_peer,metac-exa,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,240416,91.0022756983822,spot_peer,metac-o1-preview,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,240416,78.90136887868545,peer,metac-o1-preview,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,240416,0.9342391148236344,relative_legacy,metac-o1-preview,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,240416,32.969992101522955,baseline,metac-o1-preview,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,240416,38.553174296078815,spot_baseline,metac-o1-preview,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,246118,87.18437297367493,spot_peer,laylaps,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,246118,12.408371348949233,baseline,laylaps,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,246118,28.25805861195678,peer,laylaps,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,246118,0.3132754177649721,relative_legacy,laylaps,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34670,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Birmingham, Alabama?",2025-02-15 04:48:02.767574+00,246118,36.90702464285426,spot_baseline,laylaps,True,9.1-10.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35182 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,190710,49.076353318395306,baseline,Bot_Pepa,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,190710,22.66236216885769,peer,Bot_Pepa,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,190710,62.88389585611216,spot_baseline,Bot_Pepa,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,190710,31.319406969801445,spot_peer,Bot_Pepa,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,190710,0.2242040023677591,relative_legacy,Bot_Pepa,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,191026,76.27937862540327,spot_baseline,manticAI,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,191026,0.450935657269589,relative_legacy,manticAI,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,191026,36.78563855253541,peer,manticAI,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,191026,50.29437269833125,baseline,manticAI,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,191026,56.584126019021056,spot_peer,manticAI,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,192418,55.43443693579066,spot_baseline,InstitutPelFutur,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,192418,53.13704982778588,baseline,InstitutPelFutur,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,192418,14.399046443877111,peer,InstitutPelFutur,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,192418,0.0697094869499904,relative_legacy,InstitutPelFutur,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,192418,17.269261115999925,spot_peer,InstitutPelFutur,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,192924,4.8710468363806205,spot_peer,acm_bot,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,192924,41.86344021573613,baseline,acm_bot,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,192924,1.335316918729625,peer,acm_bot,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,192924,-0.0884178882235341,relative_legacy,acm_bot,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,192924,48.86084055306145,spot_baseline,acm_bot,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,218666,-0.6421243194254699,relative_legacy,GreeneiBot2,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,218666,15.49492224633766,spot_baseline,GreeneiBot2,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,218666,-58.05916376947417,spot_peer,GreeneiBot2,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,218666,11.015318919244091,baseline,GreeneiBot2,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,218666,-42.16219677072749,peer,GreeneiBot2,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,220077,-9.18488922935862,spot_peer,mmBot,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,220077,40.952975220877626,baseline,mmBot,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,220077,-13.233431423238848,peer,mmBot,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,220077,-0.277834484618533,relative_legacy,mmBot,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,220077,41.40831163286813,spot_baseline,mmBot,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,222631,-65.81211864433692,peer,Grizeu_Bot,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,222631,-0.9734272065398012,relative_legacy,Grizeu_Bot,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,222631,-87.28355709560886,spot_peer,Grizeu_Bot,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,222631,0.0,spot_baseline,Grizeu_Bot,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,222631,0.0,baseline,Grizeu_Bot,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236037,25.02140475765129,peer,metac-o1,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236037,63.50366895572232,spot_baseline,metac-o1,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236037,0.2357109963862679,relative_legacy,metac-o1,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236037,32.48833783295863,spot_peer,metac-o1,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236037,53.94000704163564,baseline,metac-o1,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236038,40.28917700703461,spot_peer,metac-gpt-4o,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236038,67.63971363283791,spot_baseline,metac-gpt-4o,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236038,59.08439428722918,baseline,metac-gpt-4o,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236038,32.58502449051772,peer,metac-gpt-4o,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236038,0.3308255986562008,relative_legacy,metac-gpt-4o,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236040,8.031472934398536,peer,metac-claude-3-5-sonnet-latest,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236040,-0.00202772124506,relative_legacy,metac-claude-3-5-sonnet-latest,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236040,52.89713352774203,spot_baseline,metac-claude-3-5-sonnet-latest,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236040,12.483748055288634,spot_peer,metac-claude-3-5-sonnet-latest,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236040,46.12769150020642,baseline,metac-claude-3-5-sonnet-latest,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236041,62.10938872302946,baseline,metac-claude-3-5-sonnet-20240620,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236041,0.4155279473673234,relative_legacy,metac-claude-3-5-sonnet-20240620,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236041,47.55158453197685,spot_peer,metac-claude-3-5-sonnet-20240620,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236041,71.49027910615312,spot_baseline,metac-claude-3-5-sonnet-20240620,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236041,38.72599517187613,peer,metac-claude-3-5-sonnet-20240620,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236043,-79.18239487075326,spot_peer,metac-grok-2-1212,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236043,4.2952774888520935,spot_baseline,metac-grok-2-1212,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236043,-1.0979535752616725,relative_legacy,metac-grok-2-1212,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236043,-72.75085167251919,peer,metac-grok-2-1212,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236043,3.745852929357629,baseline,metac-grok-2-1212,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236045,-0.2156994098155535,relative_legacy,metac-Gemini-Exp-1206,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236045,-6.219533759180064,spot_peer,metac-Gemini-Exp-1206,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236045,-8.140720359628114,peer,metac-Gemini-Exp-1206,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236045,36.58543253381077,baseline,metac-Gemini-Exp-1206,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236045,42.980558212306256,spot_baseline,metac-Gemini-Exp-1206,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236047,40.28917700703461,spot_peer,metac-Llama-3.1,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236047,67.63971363283791,spot_baseline,metac-Llama-3.1,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236047,0.327839041706473,relative_legacy,metac-Llama-3.1,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236047,32.178083097270786,peer,metac-Llama-3.1,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,236047,58.465691721352414,baseline,metac-Llama-3.1,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,237476,20.762963493227826,baseline,NextWorldLab,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,237476,-14.331222826176022,spot_peer,NextWorldLab,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,237476,38.67969933811472,spot_baseline,NextWorldLab,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,237476,-0.1129191795426936,relative_legacy,NextWorldLab,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,237476,-7.932318922086131,peer,NextWorldLab,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,239758,47.55158453197685,spot_peer,metac-perplexity,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,239758,34.97827483635162,peer,metac-perplexity,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,239758,0.3955618764292578,relative_legacy,metac-perplexity,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,239758,71.49027910615312,spot_baseline,metac-perplexity,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,239758,54.931719663458736,baseline,metac-perplexity,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,239759,47.55158453197685,spot_peer,metac-exa,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,239759,55.27459050069944,baseline,metac-exa,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,239759,0.3963037450444463,relative_legacy,metac-exa,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,239759,35.13081379283684,peer,metac-exa,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,239759,71.49027910615312,spot_baseline,metac-exa,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,240416,56.18671545335419,baseline,metac-o1-preview,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,240416,28.604112848082085,peer,metac-o1-preview,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,240416,65.60999676539794,spot_baseline,metac-o1-preview,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,240416,36.4610039364162,spot_peer,metac-o1-preview,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,240416,0.2824183110917412,relative_legacy,metac-o1-preview,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,241715,11.174445884391377,baseline,CatrachoCaster,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,241715,26.92471604194377,spot_baseline,CatrachoCaster,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,241715,-36.501857175156985,spot_peer,CatrachoCaster,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,241715,-0.1914134814892888,relative_legacy,CatrachoCaster,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,241715,-15.14920443536563,peer,CatrachoCaster,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,246118,-123.94741965015788,spot_peer,laylaps,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,246118,-1.2223860903035306,relative_legacy,laylaps,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,246118,-85.25670378508224,peer,laylaps,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,246118,-13.256399281722071,baseline,laylaps,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34671,For how many days will the US federal government be shut down in March 2025?,2025-02-15 04:48:02.833677+00,246118,-19.439366737002768,spot_baseline,laylaps,True,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35183 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,190710,36.38584203887462,spot_baseline,Bot_Pepa,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,190710,-0.0403874544978041,relative_legacy,Bot_Pepa,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,190710,28.133506814977064,baseline,Bot_Pepa,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,190710,15.753468281242895,peer,Bot_Pepa,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,190710,23.81929292866396,spot_peer,Bot_Pepa,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,191935,23.48872965008812,baseline,pgodzinai,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,191935,46.04981504370394,spot_baseline,pgodzinai,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,191935,43.61426466581547,spot_peer,pgodzinai,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,191935,0.1069100915460203,relative_legacy,pgodzinai,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,191935,21.29198773748988,peer,pgodzinai,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,191975,9.537199103179692,peer,jkraybill_bot,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,191975,38.29490794853557,spot_baseline,jkraybill_bot,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,191975,-0.004819882203351,relative_legacy,jkraybill_bot,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,191975,13.660327741172615,baseline,jkraybill_bot,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,191975,27.729683169532127,spot_peer,jkraybill_bot,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,192418,43.6142646658155,spot_peer,InstitutPelFutur,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,192418,43.76610463265677,baseline,InstitutPelFutur,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,192418,46.04981504370395,spot_baseline,InstitutPelFutur,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,192418,44.95082045970987,peer,InstitutPelFutur,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,192418,0.2369926758909239,relative_legacy,InstitutPelFutur,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,218666,26.814428068406286,baseline,GreeneiBot2,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,218666,20.53572844500333,peer,GreeneiBot2,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,218666,0.0562388702772364,relative_legacy,GreeneiBot2,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,218666,34.181405856374724,spot_peer,GreeneiBot2,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,218666,41.44466106302343,spot_baseline,GreeneiBot2,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,220077,-18.04219388255378,baseline,mmBot,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,220077,-91.8215714865858,peer,mmBot,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,220077,-1.4807315875409484,relative_legacy,mmBot,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,220077,-88.25552149159165,spot_peer,mmBot,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,220077,-18.329466245493823,spot_baseline,mmBot,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,222631,-27.489132633663345,baseline,Grizeu_Bot,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,222631,-37.33802661100672,spot_baseline,Grizeu_Bot,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,222631,-127.19125889599384,spot_peer,Grizeu_Bot,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,222631,-1.5619997645787052,relative_legacy,Grizeu_Bot,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,222631,-96.57835653190224,peer,Grizeu_Bot,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236037,39.22614862550802,baseline,metac-o1,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236037,35.310982637054444,peer,metac-o1,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236037,0.209255910584708,relative_legacy,metac-o1,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236037,46.57962013599403,spot_peer,metac-o1,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236037,47.49751174133269,spot_baseline,metac-o1,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236038,24.99771490258164,baseline,metac-gpt-4o,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236038,3.5009758765079053,peer,metac-gpt-4o,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236038,-0.2376409411836319,relative_legacy,metac-gpt-4o,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236038,8.113542762485924,spot_peer,metac-gpt-4o,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236038,28.71824101160592,spot_baseline,metac-gpt-4o,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236040,38.7088717905234,baseline,metac-claude-3-5-sonnet-latest,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236040,44.56015032884932,spot_baseline,metac-claude-3-5-sonnet-latest,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236040,40.56294499494683,spot_peer,metac-claude-3-5-sonnet-latest,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236040,0.1489647919525649,relative_legacy,metac-claude-3-5-sonnet-latest,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236040,32.10349356380763,peer,metac-claude-3-5-sonnet-latest,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236041,2.171243478730424,baseline,metac-claude-3-5-sonnet-20240620,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236041,-45.57498379599543,spot_peer,metac-claude-3-5-sonnet-20240620,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236041,2.5073184490619136,spot_baseline,metac-claude-3-5-sonnet-20240620,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236041,-0.8736976251407065,relative_legacy,metac-claude-3-5-sonnet-20240620,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236041,-43.77376979095274,peer,metac-claude-3-5-sonnet-20240620,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236043,0.0331832691746063,relative_legacy,metac-grok-2-1212,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236043,39.8131007193974,spot_baseline,metac-grok-2-1212,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236043,30.839437612734677,spot_peer,metac-grok-2-1212,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236043,34.57973601408936,baseline,metac-grok-2-1212,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236043,23.512429770151577,peer,metac-grok-2-1212,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236045,-0.0243669326330343,relative_legacy,metac-Gemini-Exp-1206,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236045,37.43823037003588,spot_baseline,metac-Gemini-Exp-1206,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236045,25.97492780693137,spot_peer,metac-Gemini-Exp-1206,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236045,18.281039165255457,peer,metac-Gemini-Exp-1206,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236045,31.268232285406523,baseline,metac-Gemini-Exp-1206,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236047,13.59512358363354,peer,metac-Llama-3.1,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236047,19.90190193761403,spot_peer,metac-Llama-3.1,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236047,34.473358338995624,spot_baseline,metac-Llama-3.1,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236047,29.53980256928936,baseline,metac-Llama-3.1,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,236047,-0.0949107196269374,relative_legacy,metac-Llama-3.1,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,237476,-75.9509160735391,spot_peer,NextWorldLab,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,237476,-0.8256465081138378,relative_legacy,NextWorldLab,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,237476,-12.322315734035326,spot_baseline,NextWorldLab,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,237476,-45.39748034243428,peer,NextWorldLab,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,237476,-7.143892360138464,baseline,NextWorldLab,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,239758,37.42052782129618,spot_peer,metac-perplexity,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,239758,34.51461850422555,baseline,metac-perplexity,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,239758,27.042200930523855,peer,metac-perplexity,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,239758,0.1039307202159213,relative_legacy,metac-perplexity,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,239758,43.02601150110467,spot_baseline,metac-perplexity,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,239759,33.84307009807401,spot_baseline,metac-exa,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,239759,26.11880886014501,baseline,metac-exa,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,239759,11.686414471784008,peer,metac-exa,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,239759,-0.0953364875610158,relative_legacy,metac-exa,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,239759,18.610865848309214,spot_peer,metac-exa,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,240416,46.70557545122098,spot_baseline,metac-o1-preview,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,240416,34.24830957300235,peer,metac-o1-preview,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,240416,38.93118105844419,baseline,metac-o1-preview,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,240416,0.1924554490376579,relative_legacy,metac-o1-preview,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,240416,44.95747606827447,spot_peer,metac-o1-preview,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,241715,-9.124215328824883,peer,CatrachoCaster,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,241715,14.6552985692638,spot_baseline,CatrachoCaster,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,241715,-20.691954526076437,spot_peer,CatrachoCaster,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,241715,-0.2784696775873292,relative_legacy,CatrachoCaster,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,241715,6.062595155161123,baseline,CatrachoCaster,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,246118,-24.65478011764645,peer,laylaps,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,246118,-18.329466245493823,spot_baseline,laylaps,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,246118,-88.25552149159165,spot_peer,laylaps,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,246118,-0.4487346663602202,relative_legacy,laylaps,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34672,How many GWh of energy storage deployments will Tesla report for Q1 2025?,2025-02-15 04:48:02.880175+00,246118,-5.12046104672927,baseline,laylaps,True,"10.0-12.0, inclusive",2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35184 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,190710,-15.852603933311364,peer,Bot_Pepa,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,190710,0.0,spot_baseline,Bot_Pepa,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,190710,-19.865956177042307,spot_peer,Bot_Pepa,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,190710,0.0,baseline,Bot_Pepa,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,190710,-0.6352071189740425,relative_legacy,Bot_Pepa,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,191026,25.25207872186773,peer,manticAI,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,191026,40.15562994349938,baseline,manticAI,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,191026,0.4389359403044283,relative_legacy,manticAI,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,191026,46.57835384373351,spot_baseline,manticAI,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,191026,29.300083991343072,spot_peer,manticAI,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,192418,0.0,baseline,InstitutPelFutur,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,192418,0.0,spot_baseline,InstitutPelFutur,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,192418,-19.865956177042307,spot_peer,InstitutPelFutur,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,192418,-0.6864349391526486,relative_legacy,InstitutPelFutur,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,192418,-14.46543106518595,peer,InstitutPelFutur,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,192924,-17.106009779244097,peer,acm_bot,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,192924,0.0,spot_baseline,acm_bot,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,192924,-19.865956177042307,spot_peer,acm_bot,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,192924,-0.6961104013759635,relative_legacy,acm_bot,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,192924,0.0,baseline,acm_bot,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,218666,0.0,spot_baseline,GreeneiBot2,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,218666,-19.865956177042307,spot_peer,GreeneiBot2,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,218666,-0.446208144557479,relative_legacy,GreeneiBot2,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,218666,-11.542061449957346,peer,GreeneiBot2,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,218666,0.0,baseline,GreeneiBot2,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,220077,-1.7661388335028856,relative_legacy,mmBot,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,220077,-38.80800796904312,baseline,mmBot,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,220077,-39.635502532331145,spot_baseline,mmBot,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,220077,-61.70343107228074,spot_peer,mmBot,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,220077,-57.19316177428692,peer,mmBot,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236037,0.1330639548559525,relative_legacy,metac-o1,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236037,26.95008386835296,baseline,metac-o1,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236037,34.657359027997266,spot_baseline,metac-o1,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236037,16.716811685843695,spot_peer,metac-o1,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236037,12.486006153663697,peer,metac-o1,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236038,-17.474275187754163,peer,metac-gpt-4o,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236038,0.0,baseline,metac-gpt-4o,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236038,-0.7214570390761368,relative_legacy,metac-gpt-4o,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236038,-19.865956177042307,spot_peer,metac-gpt-4o,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236038,0.0,spot_baseline,metac-gpt-4o,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236040,-0.7215376602505524,relative_legacy,metac-claude-3-5-sonnet-latest,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236040,-19.865956177042307,spot_peer,metac-claude-3-5-sonnet-latest,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236040,0.0,spot_baseline,metac-claude-3-5-sonnet-latest,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236040,0.0037799712636093,baseline,metac-claude-3-5-sonnet-latest,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236040,-17.5194200444559,peer,metac-claude-3-5-sonnet-latest,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236041,-17.51169569649475,peer,metac-claude-3-5-sonnet-20240620,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236041,0.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236041,-19.865956177042307,spot_peer,metac-claude-3-5-sonnet-20240620,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236041,-0.7203244035182454,relative_legacy,metac-claude-3-5-sonnet-20240620,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236041,0.0,baseline,metac-claude-3-5-sonnet-20240620,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236043,47.73888566678885,spot_peer,metac-grok-2-1212,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236043,55.431992747682266,baseline,metac-grok-2-1212,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236043,41.537357856847024,peer,metac-grok-2-1212,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236043,0.8775025117405832,relative_legacy,metac-grok-2-1212,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236043,64.04669227310322,spot_baseline,metac-grok-2-1212,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236045,0.0,spot_baseline,metac-Gemini-Exp-1206,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236045,0.0021068500865001,baseline,metac-Gemini-Exp-1206,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236045,-19.865956177042307,spot_peer,metac-Gemini-Exp-1206,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236045,-0.6828281355359842,relative_legacy,metac-Gemini-Exp-1206,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236045,-16.85754168293311,peer,metac-Gemini-Exp-1206,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236047,46.84272046898084,baseline,metac-Llama-3.1,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236047,32.429610132260095,peer,metac-Llama-3.1,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236047,0.6390892831362164,relative_legacy,metac-Llama-3.1,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236047,38.11635905821904,spot_peer,metac-Llama-3.1,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,236047,54.93061443340548,spot_baseline,metac-Llama-3.1,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,237476,-12.24619375300644,peer,NextWorldLab,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,237476,0.0,spot_baseline,NextWorldLab,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,237476,-19.865956177042307,spot_peer,NextWorldLab,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,237476,-0.4763764065551753,relative_legacy,NextWorldLab,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,237476,0.0,baseline,NextWorldLab,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,239758,29.66031900720034,peer,metac-perplexity,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,239758,43.40908248453087,baseline,metac-perplexity,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,239758,54.93061443340548,spot_baseline,metac-perplexity,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,239758,38.11635905821904,spot_peer,metac-perplexity,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,239758,0.5948472569289808,relative_legacy,metac-perplexity,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,239759,0.4252372888109472,relative_legacy,metac-exa,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,239759,37.9401515901022,baseline,metac-exa,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,239759,47.22308045315368,spot_baseline,metac-exa,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,239759,29.980628745731018,spot_peer,metac-exa,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,239759,23.63662046068989,peer,metac-exa,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,240414,-0.3858020308962455,relative_legacy,minefrac1,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,240414,-10.05446087708875,peer,minefrac1,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,240414,0.0,baseline,minefrac1,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,240414,0.0,spot_baseline,minefrac1,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,240414,-19.865956177042307,spot_peer,minefrac1,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,240416,28.350256181915043,baseline,metac-o1-preview,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,240416,34.657359027997266,spot_baseline,metac-o1-preview,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,240416,16.716811685843695,spot_peer,metac-o1-preview,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,240416,0.1372573899287236,relative_legacy,metac-o1-preview,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,240416,13.255909346060482,peer,metac-o1-preview,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,246118,43.67705295071541,spot_peer,laylaps,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,246118,60.1986402262968,spot_baseline,laylaps,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,246118,0.6316715998158663,relative_legacy,laylaps,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,246118,29.564953565129528,peer,laylaps,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34673,How many vehicle deliveries will Tesla report for Q1 2025?,2025-02-15 04:48:02.917519+00,246118,41.28567561382751,baseline,laylaps,True,336681.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35185 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,191026,-36.76613219780991,peer,manticAI,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,191026,-33.95100867452702,spot_peer,manticAI,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,191026,-1.2742755151923746,relative_legacy,manticAI,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,191026,-13.417138669529264,spot_baseline,manticAI,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,191026,-11.569603627584426,baseline,manticAI,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,191975,-195.6011502714073,spot_baseline,jkraybill_bot,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,191975,-66.38718834743128,baseline,jkraybill_bot,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,191975,-76.99365926964924,peer,jkraybill_bot,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,191975,-2.225950147723278,relative_legacy,jkraybill_bot,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,191975,-226.85172684122145,spot_peer,jkraybill_bot,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,192418,-22.53338279888942,peer,InstitutPelFutur,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,192418,0.0,baseline,InstitutPelFutur,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,192418,0.0,spot_baseline,InstitutPelFutur,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,192418,-19.74462655384898,spot_peer,InstitutPelFutur,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,192418,-0.919732138359677,relative_legacy,InstitutPelFutur,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,192924,0.0,baseline,acm_bot,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,192924,-22.2675351200228,peer,acm_bot,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,192924,-0.8592086474754514,relative_legacy,acm_bot,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,192924,-19.74462655384898,spot_peer,acm_bot,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,192924,0.0,spot_baseline,acm_bot,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,218666,0.0,spot_baseline,GreeneiBot2,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,218666,0.0,baseline,GreeneiBot2,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,218666,-19.74462655384898,spot_peer,GreeneiBot2,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,218666,-0.5163331891955232,relative_legacy,GreeneiBot2,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,218666,-12.728496000581291,peer,GreeneiBot2,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,220077,-26.16631663153325,baseline,mmBot,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,220077,-26.875944846353377,spot_baseline,mmBot,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,220077,-48.2015093323408,spot_peer,mmBot,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,220077,-1.6460880466789054,relative_legacy,mmBot,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,220077,-51.28352182934118,peer,mmBot,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236037,24.151342131041883,peer,metac-o1,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236037,0.4013041805903597,relative_legacy,metac-o1,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236037,38.41720049328624,spot_peer,metac-o1,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236037,43.37627231180196,baseline,metac-o1,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236037,54.93061443340548,spot_baseline,metac-o1,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236038,46.578118837082265,spot_peer,metac-gpt-4o,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236038,62.63814842476839,spot_baseline,metac-gpt-4o,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236038,0.6200191333034769,relative_legacy,metac-gpt-4o,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236038,33.608358171349195,peer,metac-gpt-4o,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236038,54.194971858520056,baseline,metac-gpt-4o,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236040,42.32668929148307,baseline,metac-claude-3-5-sonnet-latest,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236040,0.2797861216870431,relative_legacy,metac-claude-3-5-sonnet-latest,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236040,32.181628004124754,spot_peer,metac-claude-3-5-sonnet-latest,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236040,49.04146263808631,spot_baseline,metac-claude-3-5-sonnet-latest,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236040,20.88599110976809,peer,metac-claude-3-5-sonnet-latest,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236041,39.4562332952893,baseline,metac-claude-3-5-sonnet-20240620,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236041,17.855295952316915,peer,metac-claude-3-5-sonnet-20240620,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236041,0.1991197264987903,relative_legacy,metac-claude-3-5-sonnet-20240620,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236041,28.76488278066511,spot_peer,metac-claude-3-5-sonnet-20240620,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236041,45.81453659370775,spot_baseline,metac-claude-3-5-sonnet-20240620,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236043,54.0553189606838,baseline,metac-grok-2-1212,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236043,33.43908723251921,peer,metac-grok-2-1212,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236043,0.6183060362733047,relative_legacy,metac-grok-2-1212,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236043,46.578118837082265,spot_peer,metac-grok-2-1212,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236043,62.63814842476839,spot_baseline,metac-grok-2-1212,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236045,0.2734797116334317,relative_legacy,metac-Gemini-Exp-1206,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236045,49.04146263808631,spot_baseline,metac-Gemini-Exp-1206,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236045,32.181628004124754,spot_peer,metac-Gemini-Exp-1206,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236045,19.631044686132896,peer,metac-Gemini-Exp-1206,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236045,39.64357971453689,baseline,metac-Gemini-Exp-1206,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236047,66.08779199911598,spot_baseline,metac-Llama-3.1,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236047,56.03172151109791,baseline,metac-Llama-3.1,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236047,35.90770821579541,peer,metac-Llama-3.1,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236047,50.23068262168557,spot_peer,metac-Llama-3.1,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,236047,0.6929162983707441,relative_legacy,metac-Llama-3.1,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,237476,47.22308045315368,spot_baseline,NextWorldLab,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,237476,30.092304980483547,baseline,NextWorldLab,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,237476,15.08893604146428,peer,NextWorldLab,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,237476,0.2048857072111178,relative_legacy,NextWorldLab,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,237476,30.25628216125492,spot_peer,NextWorldLab,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,239758,45.036192080763634,baseline,metac-perplexity,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,239758,41.83394572998117,spot_peer,metac-perplexity,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,239758,58.15754049028404,spot_baseline,metac-perplexity,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,239758,0.4664007003936151,relative_legacy,metac-perplexity,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,239758,26.386048350429963,peer,metac-perplexity,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,239759,0.0027901457118796,baseline,metac-exa,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,239759,0.0,spot_baseline,metac-exa,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,239759,-19.74462655384898,spot_peer,metac-exa,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,239759,-0.8738571147234967,relative_legacy,metac-exa,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,239759,-22.671922544946916,peer,metac-exa,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,240416,3.388780052473992,peer,metac-o1-preview,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,240416,24.394770987172144,baseline,metac-o1-preview,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,240416,30.165562513638083,spot_baseline,metac-o1-preview,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,240416,12.19538081353252,spot_peer,metac-o1-preview,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,240416,-0.1667379409465666,relative_legacy,metac-o1-preview,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,246118,45.81453659370775,spot_baseline,laylaps,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,246118,14.90205781794854,peer,laylaps,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,246118,31.61196215059277,baseline,laylaps,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,246118,0.1830019078517812,relative_legacy,laylaps,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34674,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 04:48:03.085807+00,246118,28.76488278066511,spot_peer,laylaps,True,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35186 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,185699,97.08536543404836,spot_baseline,MWG,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,185699,5.143477404342213,baseline,MWG,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,185699,0.1609869945862099,peer,MWG,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,185699,0.00157598200205,relative_legacy,MWG,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,185699,3.038699302214621,spot_peer,MWG,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,191026,-0.0008003467805006,relative_legacy,manticAI,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,191026,61.244361115373785,baseline,manticAI,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,191026,-0.2538808328433101,peer,manticAI,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,191026,-0.2184098194076907,spot_peer,manticAI,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,191935,16.393581594656403,baseline,pgodzinai,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,191935,94.11063109464314,spot_baseline,pgodzinai,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,191935,0.8785835000232515,spot_peer,pgodzinai,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,191935,0.0018311951628481,relative_legacy,pgodzinai,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,191935,0.1708665059680707,peer,pgodzinai,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,191975,-0.0269789157551507,relative_legacy,jkraybill_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,191975,14.396843076308375,baseline,jkraybill_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,191975,78.35264999239473,spot_baseline,jkraybill_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,191975,-10.564140490047611,spot_peer,jkraybill_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,191975,-1.925033163168283,peer,jkraybill_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,192418,91.75905247367383,baseline,InstitutPelFutur,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,192418,3.72537712569797,peer,InstitutPelFutur,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,192418,0.0507705959106383,relative_legacy,InstitutPelFutur,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,192418,4.10228107463555,spot_peer,InstitutPelFutur,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,192418,98.5500430304885,spot_baseline,InstitutPelFutur,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,192924,3.038699302214621,spot_peer,acm_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,192924,97.08536543404836,spot_baseline,acm_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,192924,0.0339784608251305,relative_legacy,acm_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,192924,2.330621570007257,peer,acm_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,192924,76.85729409016393,baseline,acm_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,204737,0.029898644055857,relative_legacy,SynapseSeer,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,204737,96.49530529007993,spot_baseline,SynapseSeer,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,204737,77.85511693885074,baseline,SynapseSeer,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,204737,2.610224656816736,spot_peer,SynapseSeer,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,204737,2.040522039972318,peer,SynapseSeer,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,218666,98.5500430304885,spot_baseline,GreeneiBot2,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,218666,46.15348350113414,baseline,GreeneiBot2,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,218666,1.8505125498350048,peer,GreeneiBot2,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,218666,0.0270654854362653,relative_legacy,GreeneiBot2,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,218666,4.10228107463555,spot_peer,GreeneiBot2,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,220077,95.60566524124027,spot_baseline,mmBot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,220077,1.964208808509079,spot_peer,mmBot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,220077,92.5871496131978,baseline,mmBot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,220077,0.023355760994497,relative_legacy,mmBot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,220077,1.567940373726717,peer,mmBot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,222631,92.5999418556223,spot_baseline,Grizeu_Bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,222631,67.79569127974568,baseline,Grizeu_Bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,222631,-0.2696859837924552,peer,Grizeu_Bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,222631,-0.0011641467987462,relative_legacy,Grizeu_Bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,222631,-0.2184098194076907,spot_peer,Grizeu_Bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236037,-0.2184098194076907,spot_peer,metac-o1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236037,72.1859002434759,baseline,metac-o1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236037,-0.2734339230725031,peer,metac-o1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236037,-0.0011641467987462,relative_legacy,metac-o1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236038,-5.88259490486515,spot_peer,metac-gpt-4o,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236038,84.79969065549501,spot_baseline,metac-gpt-4o,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236038,-0.0690119009951351,relative_legacy,metac-gpt-4o,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236038,-5.207521563828887,peer,metac-gpt-4o,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236038,73.2647145808249,baseline,metac-gpt-4o,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236040,1.691156462939824,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236040,82.1081349031627,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236040,0.0243313360088804,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236040,1.964208808509079,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236040,95.60566524124027,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236041,-5.181372118877073,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236041,72.74756753291932,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236041,84.79969065549501,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236041,-5.88259490486515,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236041,-0.06866804824933,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236043,-0.2184098194076907,spot_peer,metac-grok-2-1212,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236043,79.58586420524534,baseline,metac-grok-2-1212,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236043,-0.2159949595565745,peer,metac-grok-2-1212,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236043,-0.0014840707952983,relative_legacy,metac-grok-2-1212,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236045,77.4658288446475,baseline,metac-Gemini-Exp-1206,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236045,97.08536543404836,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236045,3.038699302214621,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236045,0.0342535221499183,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236045,2.3529683579074288,peer,metac-Gemini-Exp-1206,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236047,84.79969065549501,spot_baseline,metac-Llama-3.1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236047,-5.88259490486515,spot_peer,metac-Llama-3.1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236047,-0.067210747499276,relative_legacy,metac-Llama-3.1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236047,-5.071523126894605,peer,metac-Llama-3.1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,236047,71.47485478464843,baseline,metac-Llama-3.1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,237476,63.082477572810014,baseline,NextWorldLab,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,237476,-0.2615499019847531,peer,NextWorldLab,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,237476,-0.0008003467805006,relative_legacy,NextWorldLab,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,237476,-0.2184098194076907,spot_peer,NextWorldLab,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,239758,0.0299759523843812,relative_legacy,metac-perplexity,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,239758,97.08536543404836,spot_baseline,metac-perplexity,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,239758,67.41809126343412,baseline,metac-perplexity,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,239758,3.038699302214621,spot_peer,metac-perplexity,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,239758,2.010930432731795,peer,metac-perplexity,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,239759,-0.2184098194076907,spot_peer,metac-exa,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,239759,-0.0015286758806058,relative_legacy,metac-exa,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,239759,-0.2276847319956869,peer,metac-exa,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,239759,77.9721476165966,baseline,metac-exa,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,240416,-0.2719706443911943,peer,metac-o1-preview,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,240416,74.1026589655454,baseline,metac-o1-preview,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,240416,-0.2184098194076907,spot_peer,metac-o1-preview,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,240416,-0.001530239950192,relative_legacy,metac-o1-preview,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,246118,0.0196757436212565,relative_legacy,laylaps,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,246118,66.2872570607246,baseline,laylaps,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,246118,1.2577685370327372,peer,laylaps,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,246118,95.60566524124027,spot_baseline,laylaps,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34675,"Will the US, EU, or Brazil formally recognize Alexander Lukashenko as the President of Belarus before April 1, 2025?",2025-02-15 04:48:03.12383+00,246118,1.964208808509079,spot_peer,laylaps,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35187 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,191026,13.676724747220009,spot_peer,manticAI,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,191026,48.54268271702416,spot_baseline,manticAI,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,191026,32.11430611017682,baseline,manticAI,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,191026,7.815564985139076,peer,manticAI,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,191026,0.0,relative_legacy,manticAI,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,191975,-3.699312850235203,peer,jkraybill_bot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,191975,-8.62010350493041,spot_baseline,jkraybill_bot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,191975,-27.92661056061364,spot_peer,jkraybill_bot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,191975,-0.0757209791596985,relative_legacy,jkraybill_bot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,191975,-1.141866450170668,baseline,jkraybill_bot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,192418,70.68384442139774,baseline,InstitutPelFutur,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,192418,34.06310626352054,spot_peer,InstitutPelFutur,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,192418,0.2482492092371469,relative_legacy,InstitutPelFutur,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,192418,29.38360255420696,peer,InstitutPelFutur,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,192924,48.54268271702416,spot_baseline,acm_bot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,192924,-0.0047892338158607,relative_legacy,acm_bot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,192924,37.65217164177571,baseline,acm_bot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,192924,9.015167625118892,peer,acm_bot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,192924,13.676724747220009,spot_peer,acm_bot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,204737,0.2587508688973377,relative_legacy,SynapseSeer,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,204737,81.55754288625727,spot_baseline,SynapseSeer,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,204737,65.650601861787,baseline,SynapseSeer,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,204737,29.017800149696026,peer,SynapseSeer,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,204737,37.705089852249,spot_peer,SynapseSeer,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,218666,52.20557491609642,spot_baseline,GreeneiBot2,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,218666,23.16224168739392,baseline,GreeneiBot2,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,218666,6.493788716357631,peer,GreeneiBot2,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,218666,0.0142710779626944,relative_legacy,GreeneiBot2,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,218666,16.34259431772605,spot_peer,GreeneiBot2,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,220077,18.08296565261838,spot_peer,mmBot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,220077,52.53650153027536,baseline,mmBot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,220077,13.494281738333065,peer,mmBot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,220077,0.0455177757654987,relative_legacy,mmBot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,220077,54.59683691052925,spot_baseline,mmBot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236037,14.226899827964091,peer,metac-o1,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236037,58.496250072115615,spot_baseline,metac-o1,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236037,20.920976253349917,spot_peer,metac-o1,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236037,0.0701598312082111,relative_legacy,metac-o1,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236037,44.04989904807112,baseline,metac-o1,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236038,79.80087230753863,baseline,metac-gpt-4o,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236038,45.741797950094096,spot_peer,metac-gpt-4o,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236038,92.5999418556223,spot_baseline,metac-gpt-4o,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236038,0.3800216486454995,relative_legacy,metac-gpt-4o,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236038,38.68899363716654,peer,metac-gpt-4o,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236040,-0.6882533244624868,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236040,-40.319911367545885,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236040,-27.500965715889784,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236040,-32.19280948873623,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236040,-45.08293298599936,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236041,32.3580006931087,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236041,5.895387671079224,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236041,-0.089812295507072,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236041,3.878731870705865,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236043,-1.547532000638813,relative_legacy,metac-grok-2-1212,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236043,-117.8633869447936,spot_peer,metac-grok-2-1212,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236043,-132.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236043,-113.30740998873952,baseline,metac-grok-2-1212,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236043,-103.81434178116032,peer,metac-grok-2-1212,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236045,-35.86055193745354,peer,metac-Gemini-Exp-1206,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236045,-51.45731728297583,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236045,-0.5886115613845048,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236045,-59.103729211574255,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236045,-30.283000191815454,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236047,-0.18613138932783,relative_legacy,metac-Llama-3.1,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236047,-2.509096634642108,spot_peer,metac-Llama-3.1,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236047,-3.498572799643022,peer,metac-Llama-3.1,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,236047,21.969323927568382,baseline,metac-Llama-3.1,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,237476,42.96734393158759,baseline,NextWorldLab,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,237476,13.881891327987468,peer,NextWorldLab,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,237476,0.068436608631136,relative_legacy,NextWorldLab,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,237476,20.920976253349917,spot_peer,NextWorldLab,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,237476,58.496250072115615,spot_baseline,NextWorldLab,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,239758,19.7790659513858,baseline,metac-perplexity,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,239758,26.303440583379377,spot_baseline,metac-perplexity,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,239758,-2.509096634642108,spot_peer,metac-perplexity,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,239758,-0.171881661555986,relative_legacy,metac-perplexity,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,239758,-3.5380159656832784,peer,metac-perplexity,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,239759,82.94784626565225,baseline,metac-exa,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,239759,98.5500430304885,spot_baseline,metac-exa,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,239759,50.07230859616926,spot_peer,metac-exa,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,239759,41.31315866160749,peer,metac-exa,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,239759,0.4210915865882526,relative_legacy,metac-exa,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,240416,66.9623498453065,baseline,metac-o1-preview,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,240416,0.2776059884744035,relative_legacy,metac-o1-preview,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,240416,40.06473971671515,spot_peer,metac-o1-preview,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,240416,30.228800733145377,peer,metac-o1-preview,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,241715,1.3272158688382294,baseline,CatrachoCaster,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,241715,-2.4891906903090213,peer,CatrachoCaster,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,241715,-0.0633675632911368,relative_legacy,CatrachoCaster,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,241715,-15.53462474498988,spot_peer,CatrachoCaster,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,241715,8.406426478847456,spot_baseline,CatrachoCaster,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,246118,13.676724747220009,spot_peer,laylaps,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,246118,48.54268271702416,spot_baseline,laylaps,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,246118,33.375939102989825,baseline,laylaps,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,246118,0.0,relative_legacy,laylaps,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,246118,8.056955081478776,peer,laylaps,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,247214,-44.28773070101055,baseline,ajf-bot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,247214,-53.11560570253625,spot_baseline,ajf-bot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,247214,-60.31063905127643,spot_peer,ajf-bot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,247214,-0.848217929355676,relative_legacy,ajf-bot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34676,"Will the New York Times use the phrase ""constitutional crisis"" in its U.S. section before April 1, 2025?",2025-02-15 04:48:03.15689+00,247214,-52.27573951687693,peer,ajf-bot,True,yes,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35188 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,185699,86.39384504239716,spot_baseline,MWG,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,185699,17.981084911615046,spot_peer,MWG,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,185699,0.0444855213856662,relative_legacy,MWG,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,185699,8.100972646756963,peer,MWG,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,185699,38.011245577716366,baseline,MWG,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,191026,-0.0931726148485596,relative_legacy,manticAI,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,191026,41.21996034715591,baseline,manticAI,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,191026,0.8399191789460452,peer,manticAI,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,191026,62.29303509201767,spot_baseline,manticAI,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,191026,0.5163396968294939,spot_peer,manticAI,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,191935,1.0749259170150145,peer,pgodzinai,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,191935,7.496811680901461,baseline,pgodzinai,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,191935,80.73549220576041,spot_baseline,pgodzinai,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,191935,13.880737627408378,spot_peer,pgodzinai,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,191935,0.0011805857093443,relative_legacy,pgodzinai,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,191975,-9.629913932244676,peer,jkraybill_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,191975,7.366812547857676,baseline,jkraybill_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,191975,-0.1845058352043369,relative_legacy,jkraybill_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,191975,-28.867853839893385,spot_peer,jkraybill_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,191975,21.743753939368293,spot_baseline,jkraybill_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,192418,0.1538485102242137,relative_legacy,InstitutPelFutur,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,192418,22.478356988546345,spot_peer,InstitutPelFutur,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,192418,84.90013787853864,baseline,InstitutPelFutur,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,192418,20.5686994738392,peer,InstitutPelFutur,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,192924,11.173680295266276,peer,acm_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,192924,80.73549220576041,spot_baseline,acm_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,192924,60.290211537135846,baseline,acm_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,192924,0.0323982020769816,relative_legacy,acm_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,192924,13.880737627408378,spot_peer,acm_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,204737,0.0803910419252553,relative_legacy,SynapseSeer,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,204737,69.53989300127647,baseline,SynapseSeer,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,204737,85.67865462880808,spot_baseline,SynapseSeer,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,204737,17.46281941020216,spot_peer,SynapseSeer,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,204737,15.042207378147594,peer,SynapseSeer,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,218666,7.232851554592852,peer,GreeneiBot2,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,218666,18.89614943670904,spot_peer,GreeneiBot2,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,218666,87.65660587517209,spot_baseline,GreeneiBot2,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,218666,32.46610302505272,baseline,GreeneiBot2,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,218666,0.0437463639934395,relative_legacy,GreeneiBot2,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,220077,73.22603556323926,baseline,mmBot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,220077,10.850222408841086,spot_peer,mmBot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,220077,0.0067266814105174,relative_legacy,mmBot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,220077,9.07884531709206,peer,mmBot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,222631,-0.7920564398115478,relative_legacy,Grizeu_Bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,222631,-32.19280948873623,spot_baseline,Grizeu_Bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,222631,-23.482952890019742,baseline,Grizeu_Bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,222631,-49.2277360816617,peer,Grizeu_Bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,222631,-67.9531932941441,spot_peer,Grizeu_Bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236037,51.4061249372696,baseline,metac-o1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236037,10.850222408841086,spot_peer,metac-o1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236037,76.55347463629771,spot_baseline,metac-o1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236037,7.843830549192793,peer,metac-o1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236037,0.0011822107187541,relative_legacy,metac-o1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236038,4.512193764395632,spot_peer,metac-gpt-4o,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236038,-0.0635431172678381,relative_legacy,metac-gpt-4o,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236038,4.17638541788346,peer,metac-gpt-4o,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236038,58.16491099516871,baseline,metac-gpt-4o,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236040,-2.235015263623187,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236040,49.8929016520711,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236040,-1.6189687040721557,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236040,-0.1422893356119577,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236041,-2.235015263623187,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236041,49.86465111818999,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236041,-1.6337132454559329,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236041,-0.1424744693586082,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236043,0.0819135682733828,relative_legacy,metac-grok-2-1212,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236043,72.44418232747088,baseline,metac-grok-2-1212,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236043,14.928890101861969,peer,metac-grok-2-1212,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236043,16.825874764835707,spot_peer,metac-grok-2-1212,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236045,1.870181231921289,peer,metac-Gemini-Exp-1206,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236045,4.512193764395632,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236045,67.80719051126377,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236045,25.94862087492821,baseline,metac-Gemini-Exp-1206,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236045,-0.0322960765529995,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236047,4.301343335088206,peer,metac-Llama-3.1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236047,4.512193764395632,spot_peer,metac-Llama-3.1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236047,-0.0648993256587671,relative_legacy,metac-Llama-3.1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,236047,56.503692143132994,baseline,metac-Llama-3.1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,237476,13.750352374993504,spot_baseline,NextWorldLab,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,237476,-34.660303222660936,spot_peer,NextWorldLab,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,237476,-0.4840683367868669,relative_legacy,NextWorldLab,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,237476,-26.419484806785675,peer,NextWorldLab,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,237476,10.681511652276534,baseline,NextWorldLab,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,239758,56.44389429475014,baseline,metac-perplexity,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,239758,10.850222408841086,spot_peer,metac-perplexity,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,239758,0.0012105000736927,relative_legacy,metac-perplexity,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,239758,8.785650268760635,peer,metac-perplexity,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,239759,59.91058423383517,baseline,metac-exa,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,239759,9.333355355352452,peer,metac-exa,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,239759,0.0037971839931308,relative_legacy,metac-exa,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,239759,10.850222408841086,spot_peer,metac-exa,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,239759,76.55347463629771,spot_baseline,metac-exa,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,240416,16.825874764835707,spot_peer,metac-o1-preview,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,240416,66.7455748488276,baseline,metac-o1-preview,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,240416,14.133295462030592,peer,metac-o1-preview,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,240416,0.069087982304385,relative_legacy,metac-o1-preview,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,246118,0.1114280852915873,relative_legacy,laylaps,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,246118,63.61537131115751,baseline,laylaps,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,246118,22.478356988546345,spot_peer,laylaps,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,246118,92.5999418556223,spot_baseline,laylaps,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,246118,16.094783450915354,peer,laylaps,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,247214,-82.21242226154303,spot_peer,ajf-bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,247214,-1.0262059662244647,relative_legacy,ajf-bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,247214,-41.67497187785308,baseline,ajf-bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,247214,-66.0500001644426,peer,ajf-bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34677,"Will the Oscars modify its DEI requirements before April 1, 2025?",2025-02-15 04:48:03.188704+00,247214,-51.8701058452435,spot_baseline,ajf-bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35189 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,185699,27.36975270463081,baseline,MWG,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,185699,-16.017004564414894,peer,MWG,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,185699,44.36066514756145,spot_baseline,MWG,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,185699,-25.475866531513475,spot_peer,MWG,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,185699,-0.2495016979765104,relative_legacy,MWG,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,191026,61.29198472598123,baseline,manticAI,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,191026,6.036342359431117,peer,manticAI,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,191026,0.0516299327879105,relative_legacy,manticAI,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,191026,9.55328633199868,spot_peer,manticAI,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,191935,0.0029177499368004,relative_legacy,pgodzinai,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,191935,31.247707618524217,baseline,pgodzinai,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,191935,85.59896973084807,spot_baseline,pgodzinai,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,191935,4.469501095415222,spot_peer,pgodzinai,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,191935,1.6189136083083315,peer,pgodzinai,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,191975,5.963662201379109,spot_peer,jkraybill_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,191975,16.08443876375072,baseline,jkraybill_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,191975,1.0942947029271886,peer,jkraybill_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,191975,0.0052422606882089,relative_legacy,jkraybill_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,191975,87.65660587517209,spot_baseline,jkraybill_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,192418,10.277247724586994,peer,InstitutPelFutur,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,192418,95.60566524124027,spot_baseline,InstitutPelFutur,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,192418,11.735904959915464,spot_peer,InstitutPelFutur,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,192418,87.00831649896051,baseline,InstitutPelFutur,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,192418,0.1053807819071138,relative_legacy,InstitutPelFutur,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,192924,0.0,relative_legacy,acm_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,192924,62.325761699844406,baseline,acm_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,192924,3.889101246541229,spot_peer,acm_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,192924,2.402517380101701,peer,acm_bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,204737,0.0338574170586227,relative_legacy,SynapseSeer,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,204737,6.419149461351843,spot_peer,SynapseSeer,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,204737,88.2838655767251,spot_baseline,SynapseSeer,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,204737,71.84854836940741,baseline,SynapseSeer,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,204737,4.752757539794809,peer,SynapseSeer,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,218666,48.12989415475651,spot_baseline,GreeneiBot2,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,218666,-0.1124762521832764,relative_legacy,GreeneiBot2,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,218666,-6.925365574127755,peer,GreeneiBot2,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,218666,15.361071850264608,baseline,GreeneiBot2,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,218666,-22.738825098042792,spot_peer,GreeneiBot2,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,220077,-3.120966273101588,peer,mmBot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,220077,-2.0989230605010167,spot_peer,mmBot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,220077,-0.0680084232169257,relative_legacy,mmBot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,220077,72.70018851413836,baseline,mmBot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236037,-7.886956005348156e-06,relative_legacy,metac-o1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236037,62.25255479973414,baseline,metac-o1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236037,2.400168520613761,peer,metac-o1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236037,3.889101246541229,spot_peer,metac-o1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236038,-0.1366245377940122,relative_legacy,metac-gpt-4o,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236038,-7.9377103412766274,peer,metac-gpt-4o,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236038,58.06803783447265,baseline,metac-gpt-4o,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236038,-8.450073917460845,spot_peer,metac-gpt-4o,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236040,65.04275176018264,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236040,-2.3589631050393027,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236040,-0.0616086746637533,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236040,-2.0989230605010167,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236041,-8.450073917460845,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236041,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236041,57.62012229640763,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236041,-7.839877375989262,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236041,-0.1359407912932433,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236043,0.0084657206718548,relative_legacy,metac-grok-2-1212,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236043,72.18593502978581,baseline,metac-grok-2-1212,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236043,2.807268352987873,peer,metac-grok-2-1212,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236043,3.889101246541229,spot_peer,metac-grok-2-1212,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236045,-0.816836207748145,peer,metac-Gemini-Exp-1206,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236045,-0.0308790350960837,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236045,28.42631442484648,baseline,metac-Gemini-Exp-1206,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236045,-2.0989230605010167,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236047,-7.628704601276732,peer,metac-Llama-3.1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236047,-8.450073917460845,spot_peer,metac-Llama-3.1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236047,-0.1341730884034143,relative_legacy,metac-Llama-3.1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,236047,56.24275019284883,baseline,metac-Llama-3.1,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,237476,-0.0616086746637533,relative_legacy,NextWorldLab,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,237476,-2.0989230605010167,spot_peer,NextWorldLab,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,237476,-2.3047605418820662,peer,NextWorldLab,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,237476,63.85569569658061,baseline,NextWorldLab,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,239758,3.889101246541229,spot_peer,metac-perplexity,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,239758,61.51525144837898,baseline,metac-perplexity,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,239758,2.384143171608832,peer,metac-perplexity,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,239758,-1.756151448273127e-07,relative_legacy,metac-perplexity,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,239759,10.662601947359455,peer,metac-exa,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,239759,84.18605465384131,baseline,metac-exa,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,239759,97.08536543404836,spot_baseline,metac-exa,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,239759,12.810395453620991,spot_peer,metac-exa,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,239759,0.1142554517925773,relative_legacy,metac-exa,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,240416,2.546784498770749,peer,metac-o1-preview,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,240416,0.0028287482483155,relative_legacy,metac-o1-preview,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,240416,66.2596307498643,baseline,metac-o1-preview,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,240416,3.889101246541229,spot_peer,metac-o1-preview,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,246118,76.55347463629771,spot_baseline,laylaps,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,246118,-0.0566354760670902,relative_legacy,laylaps,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,246118,-2.0989230605010167,spot_peer,laylaps,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,246118,52.57735754827681,baseline,laylaps,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,246118,-1.8224535331573464,peer,laylaps,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,247214,13.662122948056728,spot_peer,ajf-bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,247214,73.41019561721178,baseline,ajf-bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,247214,0.1005511807596312,relative_legacy,ajf-bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,247214,98.25829469225908,spot_baseline,ajf-bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34678,"Will any US federal judges be impeached before April 1, 2025?",2025-02-15 04:48:03.220568+00,247214,9.789602311523003,peer,ajf-bot,True,no,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,2025-02-19 23:00:00+00,35190 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,187708,-7.740262370827302,peer,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,187708,-0.1178231007655586,relative_legacy,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,187708,-12.417685807899062,spot_peer,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,187708,63.41285575250407,spot_baseline,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,187708,40.91527333378665,baseline,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,191026,0.0160227779306485,relative_legacy,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,191026,2.416417538028575,peer,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,191026,2.717881854386373,spot_peer,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,191026,55.79951714312576,baseline,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,191026,84.1570637395517,spot_baseline,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,191935,97.08536543404836,spot_baseline,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,191935,14.874900743711976,baseline,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,191935,1.8616715354467483,peer,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,191935,0.0188234541924498,relative_legacy,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,191935,12.150740663827126,spot_peer,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,191975,76.66658283816261,spot_baseline,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,191975,24.389237198751545,baseline,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,191975,-0.7695071136983637,peer,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,191975,-0.0248133788525721,relative_legacy,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,191975,-2.74738732228306,spot_peer,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,192418,10.63519541861517,peer,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,192418,90.00699128473848,baseline,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,192418,0.1068212531675436,relative_legacy,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,192418,8.878047288034367,spot_peer,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,192924,3.186760838531672,spot_peer,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,192924,39.694086924636565,baseline,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,192924,1.6837846382381545,peer,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,192924,0.0010663610286228,relative_legacy,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,204737,68.34718928552276,spot_baseline,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,204737,49.57155059100353,baseline,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,204737,-6.217980756092681,peer,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,204737,-0.0917730805320648,relative_legacy,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,204737,-8.817454885420867,spot_peer,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,218666,87.02660703959828,spot_baseline,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,218666,0.0437069168001417,relative_legacy,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,218666,4.287423300129898,peer,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,218666,4.811582746935794,spot_peer,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,218666,64.31928341861186,baseline,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,220077,-6.849666874301339,peer,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,220077,-0.0825397506575617,relative_legacy,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,220077,-5.336298375538566,spot_peer,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,220077,72.69575849630547,baseline,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,220077,73.11832415721999,spot_baseline,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236037,4.435993725366731,peer,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236037,43.99943320653122,baseline,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236037,0.0387035121960939,relative_legacy,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236037,8.878047288034367,spot_peer,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236038,-4.404311532645857,peer,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236038,34.25707992239987,baseline,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236038,-0.0816007394063278,relative_legacy,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236038,-9.211453441087643,spot_peer,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236040,38.25814349917896,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236040,-1.1569998394455232,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236040,-0.0375335457558411,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236040,-2.829914302515564,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236041,-1.1572989851060371,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236041,-2.829914302515564,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236041,38.40891772389461,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236041,-0.0375243277723143,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236043,42.48657734346531,baseline,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236043,3.186760838531672,spot_peer,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236043,0.003787145434623,relative_legacy,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236043,1.875694213628087,peer,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236047,-4.2892821074516405,peer,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236047,33.17640331311211,baseline,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236047,-9.211453441087643,spot_peer,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,236047,-0.0803269792302738,relative_legacy,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,237476,39.64129247490556,baseline,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,237476,-2.829914302515564,spot_peer,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,237476,-0.0374133675308432,relative_legacy,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,237476,-1.17183361339581,peer,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,239758,39.20981525475328,baseline,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,239758,3.186760838531672,spot_peer,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,239758,0.0010649410833537,relative_legacy,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,239758,1.657940728534453,peer,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,239759,8.878047288034367,spot_peer,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,239759,41.003358560101184,baseline,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,239759,0.0356096996282414,relative_legacy,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,239759,4.104922012104882,peer,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,240416,0.0011209449747363,relative_legacy,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,240416,39.74117220861402,baseline,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,240416,1.687100127991333,peer,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,240416,3.186760838531672,spot_peer,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,246118,76.55347463629771,spot_baseline,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,246118,-0.8890000451194382,peer,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,246118,27.427214883272647,baseline,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,246118,-2.829914302515564,spot_peer,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34679,"Will Edward Snowden receive a pardon before April 1, 2025?",2025-02-15 04:48:03.403321+00,246118,-0.0284844191606329,relative_legacy,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35191 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,187708,74.67427157777361,spot_baseline,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,187708,-0.0494258544476779,relative_legacy,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,187708,-1.2278967229526132,peer,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,187708,-3.14583284704777,spot_peer,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,187708,45.15781645635489,baseline,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,191026,91.07326619029126,spot_baseline,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,191026,8.819342815777855,spot_peer,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,191026,0.0582363025608394,relative_legacy,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,191026,7.245683302831051,peer,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,191026,60.40153613623834,baseline,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,191935,81.55754288625727,spot_baseline,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,191935,26.00116335423942,baseline,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,191935,0.566951137798699,peer,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,191935,-0.0025057083847377,relative_legacy,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,191935,1.876398837693924,spot_peer,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,191975,16.50735936306925,baseline,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,191975,-0.0319059286095223,relative_legacy,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,191975,-1.8747559765406876,peer,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,191975,68.34718928552276,spot_baseline,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,191975,-7.762253112357707,spot_peer,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,192418,14.408738938604694,peer,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,192418,0.1274708167913042,relative_legacy,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,192418,12.126310840344054,spot_peer,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,192418,95.60566524124027,spot_baseline,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,192418,92.1475310220853,baseline,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,192924,9.93324906109753,spot_peer,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,192924,3.989060117409488,peer,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,192924,92.5999418556223,spot_baseline,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,192924,37.7277191112143,baseline,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,192924,0.0332958252532825,relative_legacy,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,204737,-21.06801909983413,peer,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,204737,28.46182326060697,baseline,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,204737,38.95668117627256,spot_baseline,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,204737,-0.3078921912040374,relative_legacy,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,204737,-29.20640872409557,spot_peer,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,218666,-0.2102624955849206,relative_legacy,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,218666,50.58909297299573,spot_baseline,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,218666,-20.7190682609262,spot_peer,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,218666,-13.414037001665909,peer,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,218666,34.49710262999964,baseline,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,220077,-1.7747125294524009,spot_peer,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,220077,75.69986617853984,baseline,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,220077,-0.0561597578590283,relative_legacy,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,220077,-2.6469308817837813,peer,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236037,44.85286167970275,baseline,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236037,0.0555301612988373,relative_legacy,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236037,6.076507939781331,peer,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236037,13.205942436890272,spot_peer,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236037,97.08536543404836,spot_baseline,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236038,-0.0832835505397531,relative_legacy,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236038,34.13039299378236,baseline,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236038,-8.156251668024481,spot_peer,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236038,-4.031267834032835,peer,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236040,46.02026950064797,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236040,9.93324906109753,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236040,0.0404243153278024,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236040,5.035851525560972,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236041,38.21966927364645,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236041,-0.8125287964661887,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236041,-0.03933150437259,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236041,-1.7747125294524009,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236043,2.1996806804796627,peer,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236043,42.24307208650576,baseline,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236043,4.2419626115948255,spot_peer,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236043,0.0017471239864483,relative_legacy,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236047,-0.0818988423778316,relative_legacy,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236047,33.03409254245154,baseline,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236047,-3.9529416441254366,peer,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,236047,-8.156251668024481,spot_peer,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,237476,-1.7747125294524009,spot_peer,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,237476,41.43518495534531,baseline,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,237476,-0.6564514714931164,peer,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,237476,-0.0392545164818272,relative_legacy,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,239758,4.4840296004441536,peer,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,239758,9.93324906109753,spot_peer,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,239758,0.0343078571856196,relative_legacy,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,239758,42.196518672878895,baseline,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,239759,9.93324906109753,spot_peer,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,239759,0.0339661125500719,relative_legacy,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,239759,4.435281310652752,peer,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,239759,41.7730916359451,baseline,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,240416,39.216117343333785,baseline,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,240416,1.9236223922357625,peer,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,240416,-0.0011827554791608,relative_legacy,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,240416,4.2419626115948255,spot_peer,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,246118,-1.7747125294524009,spot_peer,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,246118,-0.6805775169038253,peer,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,246118,27.402067299617425,baseline,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,246118,76.55347463629771,spot_baseline,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34680,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 04:48:03.443591+00,246118,-0.0241419823386084,relative_legacy,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35192 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,187708,43.72277389129098,spot_baseline,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,187708,-0.0301717854799442,relative_legacy,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,187708,29.74573152750848,baseline,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,187708,24.1175567327069,peer,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,187708,21.44554100107818,spot_peer,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,191026,38.80368070282955,baseline,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,191026,29.6092450477032,peer,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,191026,0.045768979558083,relative_legacy,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,191026,32.1977440309767,spot_peer,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,191026,58.496250072115615,spot_baseline,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,191935,-179.36707312596113,spot_peer,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,191935,-0.8508121485262838,relative_legacy,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,191935,-51.48350639175385,peer,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,191935,-66.89231026697244,baseline,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,191935,-232.1928094887363,spot_baseline,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,191975,-0.516510928417097,relative_legacy,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,191975,-23.508170115874567,peer,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,191975,-25.806042335739782,baseline,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,191975,-65.13898624601322,spot_baseline,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,191975,-57.78454221438552,spot_peer,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,192418,-102.8227990320516,peer,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,192418,-166.18126202873964,baseline,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,192418,-136.7932367746038,spot_peer,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,192418,-1.640716573977005,relative_legacy,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,192924,0.0034256983889693,relative_legacy,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,192924,29.558556428139845,baseline,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,192924,67.80719051126377,spot_baseline,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,192924,38.97428875042168,spot_peer,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,192924,16.071541532661744,peer,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,204737,-73.1489773997207,spot_peer,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,204737,-0.907289452245547,relative_legacy,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,204737,-41.36315491977109,peer,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,204737,-63.14282003530599,baseline,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,204737,-86.24964762500649,spot_baseline,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,218666,-81.60371651574049,spot_baseline,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,218666,-39.863992411344974,peer,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,218666,-51.40835077502344,baseline,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,218666,-0.8417576802581315,relative_legacy,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,218666,-69.76764764778405,spot_peer,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,220077,-0.9356371358947032,relative_legacy,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,220077,-37.74766660233677,peer,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,220077,-98.39471416340932,baseline,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,220077,-83.15654627917483,spot_peer,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,220077,-100.0,spot_baseline,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236037,51.34150749434193,spot_peer,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236037,0.0775220642769662,relative_legacy,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236037,22.111136824420697,peer,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236037,38.16682142614975,baseline,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236038,-0.0441849213663281,relative_legacy,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236038,15.65093851553574,peer,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236038,29.34506199642159,baseline,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236038,58.496250072115615,spot_baseline,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236038,32.1977440309767,spot_peer,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236040,0.0449805016288914,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236040,21.743093580151896,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236040,37.83892807111949,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236040,45.33987404114733,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236041,7.794515679320784,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236041,18.789576529006656,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236041,17.172155448705993,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236041,-0.146680993522044,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236043,0.0861945760559528,relative_legacy,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236043,42.05664052223235,baseline,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236043,24.84882715450136,peer,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236043,51.34150749434193,spot_peer,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236045,54.59683691052925,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236045,29.35973343024517,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236045,2.992849756430674,peer,metac-Gemini-Exp-1206,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236045,-1.3985145143520576e-06,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236045,5.565262399315649,baseline,metac-Gemini-Exp-1206,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236047,18.03945713223794,peer,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236047,32.80492857180473,baseline,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236047,38.97428875042168,spot_peer,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,236047,0.0007849418503479,relative_legacy,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,237476,53.454348871771934,baseline,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,237476,36.023725027599326,peer,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,237476,0.1638523603875276,relative_legacy,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,237476,57.01856572772088,spot_peer,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,239758,51.34150749434193,spot_peer,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,239758,37.64497546915,baseline,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,239758,21.82707903686675,peer,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,239758,0.0774995201446426,relative_legacy,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,239759,41.93710943761511,baseline,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,239759,0.1130481418446416,relative_legacy,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,239759,24.831996650181534,peer,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,239759,57.01856572772088,spot_peer,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,240416,22.4417621027752,peer,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,240416,38.70423466911292,baseline,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,240416,0.078336821852285,relative_legacy,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,240416,51.34150749434193,spot_peer,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,246118,-0.0556483106673531,relative_legacy,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,246118,17.412983750985987,baseline,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,246118,8.685564700039011,peer,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,246118,24.953492524846784,spot_peer,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34681,"Will Peter Navarro receive a pardon before April 1, 2025?",2025-02-15 04:48:03.479355+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35193 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,191026,-5.923170213216833,baseline,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,191026,-8.926733809708741,spot_baseline,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,191026,50.07674280985127,spot_peer,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,191026,0.3754423363096789,relative_legacy,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,191026,36.56165679814157,peer,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,191935,-73.69655941662059,spot_baseline,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,191935,-15.932322757347434,baseline,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,191935,0.616344817848988,peer,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,191935,0.0,relative_legacy,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,191935,2.687552915905969,spot_peer,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,191975,-1.2557853330824462,spot_baseline,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,191975,-0.2572289421936566,baseline,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,191975,11.40711092165578,peer,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,191975,0.1483841481366847,relative_legacy,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,191975,55.68923335802285,spot_peer,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,192418,-220.75837016790544,baseline,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,192418,-1.1984638176862457,relative_legacy,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,192418,-113.27707755461678,spot_peer,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,192418,-232.1928094887363,spot_baseline,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,192418,-89.7873431496541,peer,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,192924,32.546949670475826,baseline,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,192924,112.61879525887852,spot_peer,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,192924,0.6564270850977928,relative_legacy,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,192924,48.98175251924323,peer,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,204737,0.7677760692660813,relative_legacy,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,204737,99.40713016928898,spot_peer,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,204737,66.35079479799872,peer,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,204737,58.496250072115615,spot_baseline,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,204737,37.42751423825807,baseline,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,218666,-27.08404944404537,baseline,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,218666,-46.59383975788817,spot_baseline,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,218666,22.51740295047165,spot_peer,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,218666,0.1405281036631136,relative_legacy,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,218666,13.61177388850789,peer,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,220077,-36.44307643708588,peer,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,220077,-173.6965594166206,spot_baseline,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,220077,-70.47798280986603,spot_peer,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,220077,-0.6423080583718769,relative_legacy,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,220077,-170.10354152619672,baseline,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236037,-0.2362104726852827,relative_legacy,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236037,-40.11154182884477,spot_peer,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236037,-16.647721687322942,peer,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236037,-58.36816345117319,baseline,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236037,-132.19280948873626,spot_baseline,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236038,-173.6965594166206,spot_baseline,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236038,-86.33164752431247,baseline,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236038,-0.4594664640954465,relative_legacy,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236038,-33.77763329219115,peer,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236038,-70.47798280986603,spot_peer,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236040,-85.25169974904219,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236040,-0.45223583768422,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236040,-70.47798280986603,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236040,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236040,-33.300050545805504,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236041,2.9118403986990584,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236041,-36.37146970034736,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236041,-73.69655941662059,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236041,2.687552915905969,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236041,0.0385100674277273,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236043,-173.6965594166206,spot_baseline,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236043,-70.47798280986603,spot_peer,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236043,-33.47113797575163,peer,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236043,-0.4546944453523445,relative_legacy,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236043,-85.67294235911761,baseline,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236047,-73.69655941662059,spot_baseline,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236047,2.687552915905969,spot_peer,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236047,-34.97674031726652,baseline,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236047,2.624170249043896,peer,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,236047,0.0220612071283405,relative_legacy,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,237476,58.496250072115615,spot_baseline,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,237476,63.03715865842419,peer,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,237476,0.7513953779261517,relative_legacy,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,237476,36.00632377499681,baseline,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,237476,99.40713016928898,spot_peer,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,239758,-100.0,spot_baseline,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,239758,-16.55750030123372,spot_peer,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,239758,-0.0942207508503236,relative_legacy,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,239758,-6.203144686724484,peer,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,239758,-44.112184873722406,baseline,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,239759,0.5447659759117269,relative_legacy,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,239759,37.85116232537298,spot_baseline,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,239759,84.30204111832902,spot_peer,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,239759,41.02258790132894,peer,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,239759,17.733078318467857,baseline,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,240416,-104.28338341505474,baseline,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,240416,-49.88990329011746,peer,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,240416,-0.6898013538900061,relative_legacy,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,240416,-232.1928094887363,spot_baseline,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,240416,-113.27707755461678,spot_peer,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,246118,12.394820113761003,peer,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,246118,0.148629543818206,relative_legacy,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,246118,-32.19280948873623,spot_baseline,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,246118,33.05399389692725,spot_peer,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34682,"Will semaglutide injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.509924+00,246118,-11.528603070448344,baseline,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35194 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,191026,19.7167746464442,peer,manticAI,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,191026,35.16283291027824,spot_baseline,manticAI,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,191026,36.92652238584155,spot_peer,manticAI,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,191026,0.102845192296839,relative_legacy,manticAI,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,191026,23.33785220522897,baseline,manticAI,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,191935,70.97655317580815,spot_peer,pgodzinai,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,191935,81.55754288625727,spot_baseline,pgodzinai,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,191935,15.013335736573726,baseline,pgodzinai,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,191935,13.065558188030485,peer,pgodzinai,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,191935,0.06077465829347,relative_legacy,pgodzinai,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,192418,87.30164825395916,baseline,InstitutPelFutur,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,192418,52.53271484110536,peer,InstitutPelFutur,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,192418,0.5093872706552592,relative_legacy,InstitutPelFutur,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,192418,79.08079663582001,spot_peer,InstitutPelFutur,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,192924,46.74626903628311,spot_peer,acm_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,192924,18.79086005869553,peer,acm_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,192924,18.52480410298689,baseline,acm_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,192924,0.021119616747555,relative_legacy,acm_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,192924,48.54268271702416,spot_baseline,acm_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,204737,0.2244475994339498,relative_legacy,SynapseSeer,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,204737,54.89297694763999,spot_baseline,SynapseSeer,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,204737,51.406880433353344,spot_peer,SynapseSeer,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,204737,38.80194973596334,baseline,SynapseSeer,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,204737,28.92380865174609,peer,SynapseSeer,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,218666,61.93845152215624,spot_peer,GreeneiBot2,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,218666,36.605319006702544,baseline,GreeneiBot2,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,218666,33.60666427885771,peer,GreeneiBot2,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,218666,0.2847852376232698,relative_legacy,GreeneiBot2,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,218666,69.24271980897076,spot_baseline,GreeneiBot2,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,220077,74.63862717998936,baseline,mmBot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,220077,67.30396468297273,spot_peer,mmBot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,220077,0.3581039103390772,relative_legacy,mmBot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,220077,38.35442700236287,peer,mmBot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236037,-75.15865413133372,baseline,metac-o1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236037,-173.6965594166206,spot_baseline,metac-o1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236037,-116.35967647576794,spot_peer,metac-o1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236037,-0.8645978436872516,relative_legacy,metac-o1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236037,-49.002793742967015,peer,metac-o1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236038,-0.7202019756779551,relative_legacy,metac-gpt-4o,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236038,-132.19280948873623,spot_baseline,metac-gpt-4o,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236038,-85.89922174557938,spot_peer,metac-gpt-4o,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236038,-65.65111528696583,baseline,metac-gpt-4o,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236038,-41.1308537810724,peer,metac-gpt-4o,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236040,48.54268271702416,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236040,46.74626903628311,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236040,0.1739871550113562,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236040,25.03723156729828,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236040,23.723150959444023,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236041,-49.05389385480626,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236041,-28.72085523112013,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236041,-100.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236041,-62.2722574887807,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236041,-0.5520712211210458,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236043,-113.82640747978756,baseline,metac-grok-2-1212,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236043,-159.29127615780888,spot_peer,metac-grok-2-1212,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236043,-232.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236043,-1.199994721279581,relative_legacy,metac-grok-2-1212,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236043,-76.58994874423529,peer,metac-grok-2-1212,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236047,-62.11799301992073,baseline,metac-Llama-3.1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236047,-132.19280948873623,spot_baseline,metac-Llama-3.1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236047,-85.89922174557938,spot_peer,metac-Llama-3.1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236047,-0.7000693515437744,relative_legacy,metac-Llama-3.1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,236047,-38.59574821865398,peer,metac-Llama-3.1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,237476,-48.24963222101254,baseline,NextWorldLab,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,237476,-0.6080885982041009,relative_legacy,NextWorldLab,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,237476,-73.69655941662063,spot_baseline,NextWorldLab,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,237476,-34.829412816205185,peer,NextWorldLab,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,237476,-42.96762206353844,spot_peer,NextWorldLab,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,239758,29.49249373709021,baseline,metac-perplexity,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,239758,67.80719051126377,spot_baseline,metac-perplexity,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,239758,0.1811337612418776,relative_legacy,metac-perplexity,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,239758,28.0847168067859,peer,metac-perplexity,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,239758,60.88488707887964,spot_peer,metac-perplexity,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,239759,-0.5488062199868723,relative_legacy,metac-exa,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,239759,-62.2722574887807,spot_peer,metac-exa,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,239759,-100.0,spot_baseline,metac-exa,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,239759,-47.67228376470235,baseline,metac-exa,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,239759,-27.83079287338342,peer,metac-exa,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,240416,37.85116232537298,spot_baseline,metac-o1-preview,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,240416,16.442819805128153,baseline,metac-o1-preview,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,240416,18.48535366021657,peer,metac-o1-preview,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,240416,0.0510138321550552,relative_legacy,metac-o1-preview,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,240416,38.899542572947865,spot_peer,metac-o1-preview,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,246118,54.05139660548973,spot_peer,laylaps,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,246118,0.0541950045829401,relative_legacy,laylaps,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,246118,20.932260151960925,baseline,laylaps,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,246118,20.10229570609444,peer,laylaps,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34683,"Will sterile water injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.539762+00,246118,58.496250072115615,spot_baseline,laylaps,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35195 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,185699,6.192447066065435,peer,MWG,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,185699,-73.69655941662063,spot_baseline,MWG,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,185699,33.591013554549015,spot_peer,MWG,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,185699,0.0155148375135915,relative_legacy,MWG,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,185699,-13.585837247735183,baseline,MWG,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,187708,123.60207363478804,spot_peer,twsummerbot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,187708,32.11341940189246,baseline,twsummerbot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,187708,77.48781939977044,peer,twsummerbot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,187708,1.1386081186734982,relative_legacy,twsummerbot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,187708,49.978212014731184,spot_baseline,twsummerbot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,191026,-54.51382261946878,baseline,manticAI,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,191026,13.400013066140897,peer,manticAI,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,191026,0.2898607128146447,relative_legacy,manticAI,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,191026,27.46577796818787,spot_peer,manticAI,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,191026,-82.11260418302045,spot_baseline,manticAI,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,191935,-87.47898681154585,baseline,pgodzinai,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,191935,-25.05749035287363,peer,pgodzinai,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,191935,-0.2505057633831819,relative_legacy,pgodzinai,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,191935,-62.61951329223727,spot_peer,pgodzinai,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,191935,-205.8893689053569,spot_baseline,pgodzinai,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,191975,30.51140412564607,peer,jkraybill_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,191975,0.3943420671922124,relative_legacy,jkraybill_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,191975,9.121763550774656,baseline,jkraybill_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,191975,111.66096928247528,spot_peer,jkraybill_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,191975,33.57119103204617,spot_baseline,jkraybill_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,192418,-47.53810978772278,peer,InstitutPelFutur,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,192418,-0.45652448614096,relative_legacy,InstitutPelFutur,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,192418,-39.18944040424524,spot_peer,InstitutPelFutur,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,192418,-162.422484355634,baseline,InstitutPelFutur,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,192924,-0.3506247601375494,relative_legacy,acm_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,192924,-88.37973521334501,baseline,acm_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,192924,-30.04672660708736,peer,acm_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,192924,-232.19280948873623,spot_baseline,acm_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,192924,-81.76327675560249,spot_peer,acm_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,204737,30.4284385843934,peer,SynapseSeer,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,204737,49.77683493641113,spot_peer,SynapseSeer,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,204737,0.4975554233334193,relative_legacy,SynapseSeer,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,204737,-51.45731728297583,spot_baseline,SynapseSeer,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,204737,-36.073194174832615,baseline,SynapseSeer,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,218666,40.92551466848378,spot_baseline,GreeneiBot2,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,218666,58.296454320068776,peer,GreeneiBot2,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,218666,19.67116943700192,baseline,GreeneiBot2,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,218666,0.920488003498249,relative_legacy,GreeneiBot2,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,218666,117.01347941067344,spot_peer,GreeneiBot2,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,220077,14.447250091183786,spot_peer,mmBot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,220077,-100.0,spot_baseline,mmBot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,220077,-96.89345596896275,baseline,mmBot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,220077,16.171523150766575,peer,mmBot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,220077,0.232607083828683,relative_legacy,mmBot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236037,-0.3622647310329127,relative_legacy,metac-o1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236037,-33.287103630022145,peer,metac-o1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236037,-232.19280948873623,spot_baseline,metac-o1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236037,-81.76327675560249,spot_peer,metac-o1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236037,-98.87674397151385,baseline,metac-o1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236038,-114.85406069822452,baseline,metac-gpt-4o,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236038,-81.76327675560249,spot_peer,metac-gpt-4o,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236038,-0.4071472058446986,relative_legacy,metac-gpt-4o,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236038,-39.273522426710606,peer,metac-gpt-4o,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236038,-232.19280948873623,spot_baseline,metac-gpt-4o,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236040,-39.18944040424524,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236040,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236040,-0.111025529159844,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236040,-17.4900282549086,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236040,-84.46204863044571,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236041,-64.56479058470241,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236041,-132.19280948873623,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236041,-8.98282279680824,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236041,0.0906700896607088,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236041,-2.737218576967097,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236043,-81.76327675560249,spot_peer,metac-grok-2-1212,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236043,-0.3977022568239576,relative_legacy,metac-grok-2-1212,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236043,-38.54878662037126,peer,metac-grok-2-1212,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236043,-113.3833898615366,baseline,metac-grok-2-1212,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236043,-232.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236047,-232.19280948873623,spot_baseline,metac-Llama-3.1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236047,-0.3827815597914357,relative_legacy,metac-Llama-3.1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236047,-36.4234366351617,peer,metac-Llama-3.1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236047,-81.76327675560249,spot_peer,metac-Llama-3.1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,236047,-107.817827747964,baseline,metac-Llama-3.1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,237476,58.41183525129321,spot_peer,NextWorldLab,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,237476,-27.41515353133016,baseline,NextWorldLab,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,237476,36.219874094450574,peer,NextWorldLab,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,237476,0.5755310191994224,relative_legacy,NextWorldLab,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,237476,-39.592867633113926,spot_baseline,NextWorldLab,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,239758,136.5780851207803,spot_peer,metac-perplexity,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,239758,0.9179917323867388,relative_legacy,metac-perplexity,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,239758,60.15952072931884,peer,metac-perplexity,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,239758,28.951862148942165,baseline,metac-perplexity,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,239758,67.80719051126377,spot_baseline,metac-perplexity,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,239759,-38.21603982287131,peer,metac-exa,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,239759,-0.3946678768441478,relative_legacy,metac-exa,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,239759,-81.76327675560249,spot_peer,metac-exa,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,239759,-232.19280948873623,spot_baseline,metac-exa,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,239759,-112.55446610015386,baseline,metac-exa,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,240416,-154.54373071439673,spot_peer,metac-o1-preview,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,240416,-332.1928094887362,spot_baseline,metac-o1-preview,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,240416,-143.06023362941994,baseline,metac-o1-preview,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,240416,-0.7935791573155151,relative_legacy,metac-o1-preview,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,240416,-65.09348943079732,peer,metac-o1-preview,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,246118,17.406438203647813,baseline,laylaps,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,246118,0.6560367433348294,relative_legacy,laylaps,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,246118,122.5572888952054,spot_peer,laylaps,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,246118,48.54268271702416,spot_baseline,laylaps,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34684,"Will nitroglycerin injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.712363+00,246118,44.84445760887275,peer,laylaps,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35196 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,185699,53.95973084170394,spot_peer,MWG,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,185699,28.76058235688421,peer,MWG,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,185699,0.1017638352465877,relative_legacy,MWG,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,185699,22.968830871693697,baseline,MWG,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,185699,40.05379295837288,spot_baseline,MWG,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,191026,-31.47277049947168,baseline,manticAI,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,191026,-47.39311883324123,spot_baseline,manticAI,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,191026,-9.844037955171387,spot_peer,manticAI,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,191026,-0.4841950290825669,relative_legacy,manticAI,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,191026,-14.592514110564746,peer,manticAI,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,191935,83.03903364466794,spot_peer,pgodzinai,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,191935,79.90873060740036,spot_baseline,pgodzinai,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,191935,31.31003147231053,baseline,pgodzinai,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,191935,32.97471106463098,peer,pgodzinai,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,191935,0.1096551293043455,relative_legacy,pgodzinai,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,191975,-2.7466479879863845,baseline,jkraybill_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,191975,-0.1565361991688023,relative_legacy,jkraybill_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,191975,15.652772400094252,spot_peer,jkraybill_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,191975,-12.448203068114546,spot_baseline,jkraybill_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,191975,3.4537238494487004,peer,jkraybill_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,192418,0.4385393868210648,relative_legacy,InstitutPelFutur,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,192418,63.90738269489788,peer,InstitutPelFutur,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,192418,71.10046288716606,baseline,InstitutPelFutur,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,192418,80.59094289053455,spot_peer,InstitutPelFutur,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,192924,27.460085516023028,peer,acm_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,192924,24.919053853141843,baseline,acm_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,192924,0.0342175843707883,relative_legacy,acm_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,192924,74.20940375196248,spot_peer,acm_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,192924,67.80719051126377,spot_baseline,acm_bot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,204737,45.838200415601314,spot_baseline,SynapseSeer,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,204737,58.18020002084902,spot_peer,SynapseSeer,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,204737,0.1349344956921848,relative_legacy,SynapseSeer,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,204737,32.895647415206,peer,SynapseSeer,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,204737,33.24964163215506,baseline,SynapseSeer,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,218666,66.72109124808708,spot_baseline,GreeneiBot2,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,218666,28.487002818673588,baseline,GreeneiBot2,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,218666,32.2612809262163,peer,GreeneiBot2,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,218666,0.1214153372259921,relative_legacy,GreeneiBot2,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,218666,73.41695465503705,spot_peer,GreeneiBot2,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,220077,8.85924385929729,spot_peer,mmBot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,220077,-0.4745573329380159,relative_legacy,mmBot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,220077,-19.16198734356664,peer,mmBot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,220077,-20.9734865353074,baseline,mmBot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,220077,-21.75914350726268,spot_baseline,mmBot,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236037,-71.68435794836562,baseline,metac-o1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236037,-173.6965594166206,spot_baseline,metac-o1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236037,-101.99864188716084,spot_peer,metac-o1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236037,-0.8927335596550492,relative_legacy,metac-o1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236037,-41.49110872559033,peer,metac-o1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236038,-64.98293820813969,baseline,metac-gpt-4o,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236038,-0.7449607609453274,relative_legacy,metac-gpt-4o,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236038,-34.35774358630935,peer,metac-gpt-4o,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236038,-71.71631847118388,spot_peer,metac-gpt-4o,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236038,-132.19280948873623,spot_baseline,metac-gpt-4o,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236040,0.2314722221475967,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236040,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236040,74.20940375196248,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236040,37.46100737027908,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236040,32.74253229321465,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236041,-100.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236041,-48.55380351862116,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236041,-48.22752359600393,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236041,-0.5787074871076813,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236041,-22.20844556173242,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236043,-69.32275950650775,peer,metac-grok-2-1212,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236043,-232.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236043,-144.67917958275706,spot_peer,metac-grok-2-1212,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236043,-1.2199696077975963,relative_legacy,metac-grok-2-1212,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236043,-112.63231286843654,baseline,metac-grok-2-1212,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236047,-71.71631847118388,spot_peer,metac-Llama-3.1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236047,-61.01611096221469,baseline,metac-Llama-3.1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236047,-32.06298248175064,peer,metac-Llama-3.1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236047,-0.7279457043142015,relative_legacy,metac-Llama-3.1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,236047,-132.19280948873623,spot_baseline,metac-Llama-3.1,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,237476,55.99033506545833,baseline,NextWorldLab,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,237476,0.357733787813594,relative_legacy,NextWorldLab,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,237476,50.45689740914536,peer,NextWorldLab,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,237476,80.59094289053455,spot_peer,NextWorldLab,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,239758,67.4158752111655,spot_peer,metac-perplexity,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,239758,28.988927932047694,peer,metac-perplexity,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,239758,24.441803001926147,baseline,metac-perplexity,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,239758,0.0709955222789595,relative_legacy,metac-perplexity,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,239758,58.496250072115615,spot_baseline,metac-perplexity,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,239759,-144.67917958275706,spot_peer,metac-exa,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,239759,-232.19280948873623,spot_baseline,metac-exa,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,239759,-112.89597194572886,baseline,metac-exa,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,239759,-1.2219113140493605,relative_legacy,metac-exa,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,239759,-69.50659708757146,peer,metac-exa,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,240416,-144.67917958275706,spot_peer,metac-o1-preview,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,240416,-97.66143761281208,baseline,metac-o1-preview,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,240416,-60.22058503653263,peer,metac-o1-preview,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,240416,-1.146403474882015,relative_legacy,metac-o1-preview,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,240416,-232.19280948873623,spot_baseline,metac-o1-preview,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,246118,0.0,relative_legacy,laylaps,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,246118,58.496250072115615,spot_baseline,laylaps,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,246118,24.304476905346508,peer,laylaps,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,246118,20.967645819185563,baseline,laylaps,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34685,"Will Fentanyl Citrate injections be in shortage according to the FDA on April 1, 2025?",2025-02-15 04:48:03.743516+00,246118,67.4158752111655,spot_peer,laylaps,True,yes,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35197 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,185699,7.0256666683320805,spot_peer,MWG,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,185699,0.0026886801307403,relative_legacy,MWG,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,185699,89.53026213333065,spot_baseline,MWG,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,185699,1.2387403239376795,peer,MWG,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,185699,15.824997979930128,baseline,MWG,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,187708,71.72102990195957,spot_baseline,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,187708,-5.906581922166383,spot_peer,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,187708,-0.0800843286326363,relative_legacy,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,187708,-3.327139461620452,peer,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,187708,44.39558604659021,baseline,twsummerbot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,191026,80.24000401148393,spot_baseline,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,191026,0.279506814793602,spot_peer,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,191026,-0.0273515599279681,relative_legacy,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,191026,0.7944409649940921,peer,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,191026,53.3002544189113,baseline,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,191935,24.200439644546723,baseline,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,191935,97.08536543404836,spot_baseline,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,191935,12.51183657966996,spot_peer,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,191935,0.0226522511468348,relative_legacy,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,191935,3.090576369177402,peer,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,191975,-2.6095773480721824,peer,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,191975,10.172207109162231,baseline,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,191975,-15.137985057037849,spot_peer,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,191975,59.008298538975765,spot_baseline,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,191975,-0.0499269252582227,relative_legacy,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,192418,97.08536543404836,spot_baseline,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,192418,89.78198295461978,baseline,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,192418,11.600770886406304,peer,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,192418,0.115437784567579,relative_legacy,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,192418,12.51183657966996,spot_peer,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,192924,29.85935321929162,baseline,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,192924,1.2596516967564022,peer,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,192924,-0.0079722131729583,relative_legacy,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,192924,3.590542372590196,spot_peer,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,204737,52.00450240398177,spot_baseline,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,204737,-0.2192698504291252,relative_legacy,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,204737,-14.86400323481654,peer,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,204737,38.0381026581946,baseline,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,204737,-20.22382096047261,spot_peer,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,218666,87.97057662822883,spot_baseline,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,218666,32.071780433781484,baseline,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,218666,2.146611471268271,peer,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,218666,5.893094505033306,spot_peer,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,218666,0.0031929931557536,relative_legacy,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,220077,88.78547391535865,baseline,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,220077,9.25472745804765,spot_peer,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,220077,0.0739577714407742,relative_legacy,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,220077,7.905750854307501,peer,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236037,46.1451119721407,baseline,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236037,9.25472745804765,spot_peer,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236037,0.0245264919692261,relative_legacy,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236037,4.662877585703971,peer,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236038,-8.748632791411886,spot_peer,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236038,34.46037896779263,baseline,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236038,-0.0999885264453061,relative_legacy,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236038,-4.451186040123246,peer,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236040,9.25472745804765,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236040,46.86319856562898,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236040,0.0255806606712687,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236040,4.7543493368568495,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236041,38.80944147885896,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236041,-1.1934737701801288,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236041,-2.397481934452054,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236041,-0.0555768248005616,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236043,-0.0138628943088055,relative_legacy,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236043,1.864435587424985,peer,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236043,42.93679032775612,baseline,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236043,3.590542372590196,spot_peer,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236045,46.30351627379533,baseline,metac-Gemini-Exp-1206,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236045,9.25472745804765,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236045,0.02474057512006,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236045,4.682192160614151,peer,metac-Gemini-Exp-1206,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236047,-4.414883524154959,peer,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236047,-8.748632791411886,spot_peer,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236047,-0.0994723305768512,relative_legacy,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236047,34.08351192434963,baseline,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,237476,44.51152568175483,baseline,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,237476,-11.932744298951413,peer,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,237476,-0.18184419003612,relative_legacy,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,237476,-15.5098111963003,spot_peer,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,237476,58.496250072115615,spot_baseline,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,239758,-0.094330201661896,relative_legacy,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,239758,67.80719051126377,spot_baseline,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,239758,32.44093064880602,baseline,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,239758,-4.203651779442,peer,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,239758,-8.748632791411886,spot_peer,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,239759,9.25472745804765,spot_peer,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,239759,0.0200736768415915,relative_legacy,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,239759,39.33162629787365,baseline,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,239759,3.936999146034657,peer,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,240416,45.84121097237721,baseline,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,240416,4.628668250318165,peer,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,240416,0.024256395704713,relative_legacy,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,240416,9.25472745804765,spot_peer,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,246118,-0.1021745232047456,relative_legacy,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,246118,58.496250072115615,spot_baseline,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,246118,-15.5098111963003,spot_peer,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,246118,20.911774098611676,baseline,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34686,"Before April 1, 2025, will OpenAI announce that it is planning an IPO?",2025-02-15 04:48:03.773732+00,246118,-5.569405176439446,peer,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35198 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,185699,20.483871459768164,spot_peer,MWG,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,185699,56.086989520360646,baseline,MWG,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,185699,14.673412987831146,peer,MWG,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,185699,0.0798030446027083,relative_legacy,MWG,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,185699,87.97057662822883,spot_baseline,MWG,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,191026,61.52808036536569,baseline,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,191026,18.008233920803683,peer,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,191026,23.861588780978757,spot_peer,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,191026,0.1136323972171885,relative_legacy,manticAI,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,191935,94.11063109464314,spot_baseline,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,191935,0.0775732297996141,relative_legacy,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,191935,8.705901435165,peer,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,191935,32.89596360191204,baseline,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,191935,24.963830872273,spot_peer,pgodzinai,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,191975,-6.100163821824588,peer,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,191975,32.500256603681244,spot_baseline,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,191975,-0.1183268395570507,relative_legacy,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,191975,-19.988861097887643,spot_peer,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,191975,9.924933669743211,baseline,jkraybill_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,192418,84.72856207211495,baseline,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,192418,26.51962669487873,peer,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,192418,0.1712336556017241,relative_legacy,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,192418,23.861588780978757,spot_peer,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,192924,-0.0607069357594953,relative_legacy,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,192924,-4.59002487585406,spot_peer,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,192924,53.60529002402098,spot_baseline,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,192924,17.965589789303042,baseline,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,192924,-1.5539708025957344,peer,acm_bot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,204737,37.85116232537298,spot_baseline,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,204737,27.891327282533272,baseline,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,204737,-9.340110479265512,peer,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,204737,-0.2501461580755372,relative_legacy,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,204737,-16.08468718795847,spot_peer,SynapseSeer,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,218666,21.04884520690934,baseline,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,218666,8.371310429790578,spot_peer,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,218666,0.0,relative_legacy,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,218666,2.468928831456313,peer,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,218666,71.36958148433591,spot_baseline,GreeneiBot2,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,220077,13.6525865216391,peer,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,220077,0.0244091472288655,relative_legacy,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,220077,12.153627190428807,spot_peer,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,220077,72.9971475451383,baseline,mmBot,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236037,0.017005238801008,relative_legacy,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236037,37.05893136256,baseline,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236037,76.55347463629771,spot_baseline,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236037,12.153627190428807,spot_peer,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236037,6.09779011324506,peer,metac-o1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236038,-0.2326775799626951,relative_legacy,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236038,-24.51023536412021,spot_peer,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236038,13.325584361781996,baseline,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236038,-12.205623244964158,peer,metac-gpt-4o,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236040,6.450633685259284,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236040,38.50447441319537,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236040,12.153627190428807,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236040,0.0216893003028683,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236041,-1.021440488940237,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236041,29.487302907595488,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236041,-0.0690754137576475,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236041,-0.2205512925549062,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236043,24.44235179625057,baseline,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236043,-3.914471155811482,peer,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236043,-0.1192533570560401,relative_legacy,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236043,-8.283848013882503,spot_peer,metac-grok-2-1212,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236047,-3.901098182929341,peer,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236047,-8.283848013882503,spot_peer,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236047,-0.1186986154794136,relative_legacy,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,236047,24.114501994760715,baseline,metac-Llama-3.1,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,237476,-57.93215631497676,baseline,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,237476,-78.54351402993363,peer,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,237476,-1.1460620915260022,relative_legacy,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,237476,-97.47309647569338,spot_peer,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,237476,-73.69655941662059,spot_baseline,NextWorldLab,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,239758,12.153627190428807,spot_peer,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,239758,0.0162029496209614,relative_legacy,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,239758,5.877733032140639,peer,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,239758,36.01022040360879,baseline,metac-perplexity,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,239759,76.55347463629771,spot_baseline,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,239759,32.71626563437349,baseline,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,239759,5.257855768789736,peer,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,239759,0.0161759373694347,relative_legacy,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,239759,12.153627190428807,spot_peer,metac-exa,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,240416,0.0162190894161134,relative_legacy,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,240416,36.72776741082527,baseline,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,240416,6.023887775659058,peer,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,240416,12.153627190428807,spot_peer,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,246118,67.80719051126377,spot_baseline,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,246118,2.0429122430115454,peer,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,246118,-0.0150783110099469,relative_legacy,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,246118,5.772088051856747,spot_peer,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34687,"Before April 1, 2025, will Stripe announce that it is planning an IPO?",2025-02-15 04:48:03.80375+00,246118,24.251377713210037,baseline,laylaps,True,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,2025-02-20 03:00:00+00,35199 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,187708,-0.0098430058605465,relative_legacy,twsummerbot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,187708,17.21639801571092,baseline,twsummerbot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,187708,-2.52564319429546,peer,twsummerbot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,187708,-5.857257920050486,spot_peer,twsummerbot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,187708,41.359408240917496,spot_baseline,twsummerbot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,189869,53.009744176946526,baseline,VeritasAI,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,189869,6.4779554327537845,spot_peer,VeritasAI,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,189869,0.0833151782663674,relative_legacy,VeritasAI,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,189869,2.8097193013669184,peer,VeritasAI,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,190710,-8.382516791469985,spot_peer,Bot_Pepa,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,190710,27.46747198550437,baseline,Bot_Pepa,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,190710,-7.630655770422591,peer,Bot_Pepa,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,190710,-0.0775035116289823,relative_legacy,Bot_Pepa,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,190710,37.85116232537298,spot_baseline,Bot_Pepa,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,191026,40.05379295837285,spot_baseline,manticAI,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,191026,-7.953793936046641,peer,manticAI,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,191026,-0.0720692058959689,relative_legacy,manticAI,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,191026,33.77969764756746,baseline,manticAI,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,191026,-6.797048531734275,spot_peer,manticAI,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,191935,80.73549220576041,spot_baseline,pgodzinai,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,191935,53.30702301287464,baseline,pgodzinai,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,191935,13.783486731658448,peer,pgodzinai,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,191935,0.2180116246109592,relative_legacy,pgodzinai,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,191935,22.48591064558445,spot_peer,pgodzinai,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,192418,84.79969065549501,spot_baseline,InstitutPelFutur,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,192418,82.68197193932453,baseline,InstitutPelFutur,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,192418,21.733553907985343,peer,InstitutPelFutur,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,192418,0.3303178869397405,relative_legacy,InstitutPelFutur,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,192418,25.41134786904907,spot_peer,InstitutPelFutur,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,192924,51.36459465011935,baseline,acm_bot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,192924,58.496250072115615,spot_baseline,acm_bot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,192924,6.4779554327537845,spot_peer,acm_bot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,192924,0.0833151782663674,relative_legacy,acm_bot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,192924,3.066100028781228,peer,acm_bot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,204737,0.2120492503226117,relative_legacy,SynapseSeer,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,204737,57.93071712407863,baseline,SynapseSeer,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,204737,19.475666431823637,spot_peer,SynapseSeer,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,204737,13.101711711348257,peer,SynapseSeer,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,218666,87.97057662822883,spot_baseline,GreeneiBot2,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,218666,18.40214026030013,peer,GreeneiBot2,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,218666,62.83128718317265,baseline,GreeneiBot2,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,218666,0.2816878237528279,relative_legacy,GreeneiBot2,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,218666,27.693772797537267,spot_peer,GreeneiBot2,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,220077,0.0738522890806596,relative_legacy,mmBot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,220077,6.4779554327537845,spot_peer,mmBot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,220077,58.07780340455886,baseline,mmBot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,220077,1.5549960469690522,peer,mmBot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,222631,50.47543793496898,baseline,Grizeu_Bot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,222631,19.475666431823637,spot_peer,Grizeu_Bot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,222631,0.1902332174085733,relative_legacy,Grizeu_Bot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,222631,11.777637229939486,peer,Grizeu_Bot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,224797,44.36066514756148,spot_baseline,cookics_bot_TEST,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,224797,5.215937914816972,baseline,cookics_bot_TEST,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,224797,-0.4346863061074752,peer,cookics_bot_TEST,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,224797,0.0,relative_legacy,cookics_bot_TEST,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,224797,-3.6969331277289097,spot_peer,cookics_bot_TEST,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236037,40.75462358585465,baseline,metac-o1,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236037,-2.722688817674478,peer,metac-o1,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236037,-2.5041367432761584e-06,relative_legacy,metac-o1,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236037,-0.686688913968104,spot_peer,metac-o1,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236037,48.54268271702416,spot_baseline,metac-o1,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236038,-0.1884998373285808,relative_legacy,metac-gpt-4o,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236038,-16.403064318602294,peer,metac-gpt-4o,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236038,-16.694644126798778,spot_peer,metac-gpt-4o,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236038,22.199645704770088,baseline,metac-gpt-4o,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236040,19.475666431823637,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236040,0.235954691691723,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236040,14.387509553433985,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236040,64.70829785231494,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236041,6.4779554327537845,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236041,0.0834970639906472,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236041,3.3265058775336724,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236041,49.40252850232384,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236043,58.496250072115615,spot_baseline,metac-grok-2-1212,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236043,49.46831311225244,baseline,metac-grok-2-1212,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236043,6.4779554327537845,spot_peer,metac-grok-2-1212,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236043,3.3146185325067297,peer,metac-grok-2-1212,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236043,0.0833230395084177,relative_legacy,metac-grok-2-1212,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236045,37.85116232537298,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236045,-8.382516791469985,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236045,31.490482010088325,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236045,-9.124302748993568,peer,metac-Gemini-Exp-1206,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236045,-0.0888513813395488,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236047,40.926955543317526,baseline,metac-Llama-3.1,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236047,-0.686688913968104,spot_peer,metac-Llama-3.1,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236047,-0.000497813120093,relative_legacy,metac-Llama-3.1,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,236047,-2.762861865752852,peer,metac-Llama-3.1,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,237476,44.38727564898748,baseline,NextWorldLab,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,237476,0.0756099135797691,relative_legacy,NextWorldLab,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,237476,6.4779554327537845,spot_peer,NextWorldLab,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,237476,3.2193993916450747,peer,NextWorldLab,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,237476,58.496250072115615,spot_baseline,NextWorldLab,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,239758,48.54268271702416,spot_baseline,metac-perplexity,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,239758,-0.686688913968104,spot_peer,metac-perplexity,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,239758,-1.006558394617583e-06,relative_legacy,metac-perplexity,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,239758,-2.700989341433784,peer,metac-perplexity,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,239758,40.57535550889634,baseline,metac-perplexity,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,239759,13.18003262780926,spot_peer,metac-exa,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,239759,56.690500269666494,baseline,metac-exa,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,239759,8.972387091119971,peer,metac-exa,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,239759,0.1610268797972544,relative_legacy,metac-exa,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,239759,67.80719051126377,spot_baseline,metac-exa,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,240414,-30.42831626887577,peer,minefrac1,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,240414,-32.19280948873623,spot_baseline,minefrac1,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,240414,-58.800636122646594,spot_peer,minefrac1,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,240414,-0.3945447517980849,relative_legacy,minefrac1,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,240414,-16.532057121986636,baseline,minefrac1,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,240416,48.54268271702416,spot_baseline,metac-o1-preview,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,240416,-0.0011439936531489,relative_legacy,metac-o1-preview,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,240416,-0.686688913968104,spot_peer,metac-o1-preview,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,240416,40.28602705312122,baseline,metac-o1-preview,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,240416,-2.765944333097858,peer,metac-o1-preview,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,241715,-0.0298538494306245,relative_legacy,CatrachoCaster,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,241715,-11.627973232280834,spot_peer,CatrachoCaster,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,241715,33.34237337251918,spot_baseline,CatrachoCaster,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,241715,-3.851841028209378,peer,CatrachoCaster,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,241715,10.948396746931923,baseline,CatrachoCaster,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,246118,-49.9810337571089,peer,laylaps,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,246118,-0.6672355217680495,relative_legacy,laylaps,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,246118,-88.67531287725464,spot_peer,laylaps,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,246118,-73.69655941662063,spot_baseline,laylaps,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,246118,-41.165761954512384,baseline,laylaps,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,247214,19.8360560220328,peer,ajf-bot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,247214,0.3122941207609812,relative_legacy,ajf-bot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,247214,85.05594206227717,spot_baseline,ajf-bot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,247214,25.595799345333315,spot_peer,ajf-bot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34688,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 04:48:03.838232+00,247214,73.32923767910344,baseline,ajf-bot,True,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,2025-02-20 17:00:00+00,35200 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,187708,-1.2674775332346593,peer,twsummerbot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,187708,45.43538307082201,baseline,twsummerbot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,187708,71.72102990195957,spot_baseline,twsummerbot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,187708,-1.0966279498483549,spot_peer,twsummerbot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,187708,-0.0079380116611042,relative_legacy,twsummerbot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,189869,61.82686546718283,baseline,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,189869,-0.0528068431152923,relative_legacy,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,189869,-3.909971234556016,spot_peer,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,189869,-4.616011041443981,peer,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,190710,-10.602854908081932,spot_peer,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,190710,58.496250072115615,spot_baseline,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,190710,-9.078101152337998,peer,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,190710,45.27159176963829,baseline,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,190710,-0.1170734089320152,relative_legacy,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,191026,45.29197966539386,baseline,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,191026,13.911536891171586,spot_peer,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,191026,6.414026645258587,peer,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,191026,0.1000474451199345,relative_legacy,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,191935,48.74191845836809,baseline,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,191935,2.886063232252666,peer,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,191935,81.1471030529836,spot_baseline,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,191935,0.0491539826419604,relative_legacy,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,191935,5.679015338846258,spot_peer,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,191975,66.23574342586635,spot_baseline,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,191975,-0.0095029744626863,relative_legacy,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,191975,-1.6478617628679828,peer,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,191975,-5.039557725888848,spot_peer,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,191975,19.94237779355079,baseline,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,192418,-4.987124495384921,peer,InstitutPelFutur,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,192418,67.80719051126377,spot_baseline,InstitutPelFutur,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,192418,-3.909971234556016,spot_peer,InstitutPelFutur,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,192418,-0.0555244278978691,relative_legacy,InstitutPelFutur,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,192418,65.97768074960403,baseline,InstitutPelFutur,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,192924,3.777006643178405,peer,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,192924,0.0614048932955386,relative_legacy,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,192924,5.383141518448558,spot_peer,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,192924,80.73549220576041,spot_baseline,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,192924,71.3236817387098,baseline,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,204737,0.0226756002702032,relative_legacy,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,204737,60.22804626265847,baseline,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,204737,1.021640181915552,peer,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,204737,2.3770265834446254,spot_peer,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,218666,0.0657124620568538,relative_legacy,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,218666,62.529487968156914,baseline,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,218666,82.21182747293444,spot_baseline,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,218666,6.444359799340454,spot_peer,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,218666,4.131438630997617,peer,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,220077,1.6330450330905475,peer,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,220077,0.0295785733319133,relative_legacy,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,220077,2.3770265834446254,spot_peer,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,220077,76.0032354139091,baseline,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,222631,41.62055785921408,baseline,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,222631,-0.1058030216626267,relative_legacy,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,222631,-8.264711136692435,peer,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,222631,-10.602854908081932,spot_peer,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236037,80.4680341510577,baseline,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236037,0.1630965299009819,relative_legacy,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236037,13.911536891171586,spot_peer,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236037,11.167709736497242,peer,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236038,-3.909971234556016,spot_peer,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236038,59.526961398185925,baseline,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236038,-4.502010285949076,peer,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236038,-0.0523421511884862,relative_legacy,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236040,2.3770265834446254,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236040,0.0244501983566822,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236040,1.0759764421301097,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236040,67.30313714191105,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236041,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236041,-0.0523579538031111,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236041,-4.503277402032001,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236041,59.55515628429811,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236041,-3.909971234556016,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236043,8.304565796476338,spot_peer,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236043,74.4883286753699,baseline,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236043,6.334075259436497,peer,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236043,0.0968719642005706,relative_legacy,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236045,11.011039431896004,peer,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236045,13.911536891171586,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236045,0.1602986560398967,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236045,79.41976107458858,baseline,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236047,59.532876897973566,baseline,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236047,-0.0523421511884862,relative_legacy,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236047,-3.909971234556016,spot_peer,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,236047,-4.502392714488822,peer,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,237476,0.0220105957934382,relative_legacy,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,237476,47.44327327475941,baseline,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,237476,0.9223956694305988,peer,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,237476,2.3770265834446254,spot_peer,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,239758,2.3770265834446254,spot_peer,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,239758,65.63736135775241,baseline,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,239758,1.0305263104461488,peer,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,239758,0.0226756002702032,relative_legacy,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,239759,13.911536891171586,spot_peer,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,239759,75.31799534015164,baseline,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,239759,10.45994526875984,peer,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,239759,0.1531958075679084,relative_legacy,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,240414,-3.909971234556016,spot_peer,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,240414,-2.933927582937093,peer,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,240414,41.35883183302478,baseline,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,240414,67.80719051126377,spot_baseline,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,240414,-0.0313371526626849,relative_legacy,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,240416,-4.472657953713067,peer,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,240416,67.80719051126377,spot_baseline,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,240416,-3.909971234556016,spot_peer,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,240416,-0.0523230557664146,relative_legacy,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,240416,59.06865858737202,baseline,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,241715,5.973782259642814,baseline,CatrachoCaster,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,241715,-5.139155850208739,peer,CatrachoCaster,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,241715,-0.0617488476015198,relative_legacy,CatrachoCaster,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,241715,-28.683946908281104,spot_peer,CatrachoCaster,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,241715,33.34237337251918,spot_baseline,CatrachoCaster,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,246118,-3.157086555429533,peer,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,246118,44.275875303241016,baseline,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,246118,-3.909971234556016,spot_peer,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,246118,67.80719051126377,spot_baseline,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,246118,-0.0344347714126333,relative_legacy,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,247214,-3.815533104880404,peer,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,247214,25.803854495923005,baseline,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,247214,-0.0413814841769739,relative_legacy,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,247214,-8.413777241835318,spot_peer,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,247214,61.541629726287006,spot_baseline,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,250015,1.0224400863109853,peer,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,250015,64.38509302896756,baseline,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,250015,2.3770265834446254,spot_peer,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34689,"Before April 1, 2025, will Perplexity announce that it is planning an IPO?",2025-02-15 04:48:04.004893+00,250015,0.0226717843782431,relative_legacy,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35201 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,189869,-5.0340546913793,spot_peer,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,189869,-1.3372669786420988,peer,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,189869,44.35816175048559,baseline,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,189869,-0.1698995163587223,relative_legacy,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,190710,-5.0340546913793,spot_peer,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,190710,37.50215987928428,baseline,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,190710,-3.6195639494322993,peer,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,190710,-0.1521967120539082,relative_legacy,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,190710,48.54268271702416,spot_baseline,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,191026,21.753992297038074,spot_peer,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,191026,0.0832277060318543,relative_legacy,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,191026,10.587288768614986,peer,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,191026,85.75829553841481,spot_baseline,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,191026,41.961635512273496,baseline,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,191935,22.780486525032828,spot_peer,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,191935,0.102112424062201,relative_legacy,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,191935,12.550704542859956,peer,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,191935,48.016743824829405,baseline,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,191935,87.18436485093177,spot_baseline,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,191975,4.012399485803407,baseline,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,191975,18.65005576444948,spot_baseline,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,191975,-5.6926330126437,peer,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,191975,-26.55096747892158,spot_peer,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,191975,-0.10562723323587,relative_legacy,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,192418,13.28842976689529,baseline,InstitutPelFutur,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,192418,-20.707756224039315,peer,InstitutPelFutur,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,192418,-30.07780674544074,spot_peer,InstitutPelFutur,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,192418,13.750352374993504,spot_baseline,InstitutPelFutur,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,192418,-0.463660389437172,relative_legacy,InstitutPelFutur,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,192924,74.88810678570145,baseline,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,192924,0.1396184585299985,relative_legacy,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,192924,20.065459388431293,peer,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,192924,21.06398209163788,spot_peer,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,204737,0.0642036057912274,relative_legacy,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,204737,12.227238246514624,peer,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,204737,59.93809021804893,baseline,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,204737,15.128300654412437,spot_peer,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,218666,51.94921880032601,baseline,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,218666,13.403651105216948,spot_peer,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,218666,0.047419082462026,relative_legacy,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,218666,74.15748474187959,spot_baseline,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,218666,9.639885041575097,peer,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,220077,-98.72361641459996,baseline,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,220077,-1.5629511765181148,relative_legacy,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,220077,-105.89545809312963,peer,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,220077,-111.95607109096112,spot_peer,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,220077,-100.0,spot_baseline,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,222631,-8.799622451244458,peer,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,222631,-12.729882568881177,spot_peer,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,222631,-0.2085569602612612,relative_legacy,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,222631,26.67619541352073,baseline,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236037,18.979924175115865,peer,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236037,21.06398209163788,spot_peer,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236037,72.98787103233899,baseline,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236037,0.1346093820923174,relative_legacy,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236038,-0.0116857878046322,relative_legacy,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236038,8.83266685039806,spot_peer,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236038,8.743186939263639,peer,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236038,59.370530952452285,baseline,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236040,67.10144272394207,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236040,14.359932600985072,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236040,0.0649494962372661,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236040,15.128300654412437,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236041,-0.0931709213807257,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236041,51.21869835765226,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236041,2.812350699421036,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236041,2.1305896553425807,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236043,59.32957056300538,baseline,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236043,8.83266685039806,spot_peer,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236043,-0.0116555372879064,relative_legacy,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236043,8.728738985082897,peer,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236045,0.0642036057912274,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236045,13.059840976267193,peer,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236045,63.5122659030903,baseline,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236045,15.128300654412437,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236047,-54.79957675305919,peer,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236047,-63.1480019000578,spot_peer,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236047,-0.8842224502787496,relative_legacy,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,236047,-28.0846906898186,baseline,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,237476,48.54268271702416,spot_baseline,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,237476,-3.1100053683005995,peer,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,237476,-0.1175990487602121,relative_legacy,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,237476,-5.0340546913793,spot_peer,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,237476,31.27263204573834,baseline,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,239758,74.81867423788883,baseline,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,239758,20.600053284786007,peer,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,239758,0.159828065332149,relative_legacy,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,239758,23.346407020126087,spot_peer,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,239758,87.97057662822883,spot_baseline,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,239759,78.98281830990742,baseline,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,239759,24.408639221510533,peer,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,239759,95.60566524124027,spot_baseline,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,239759,28.84219486346164,spot_peer,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,239759,0.2216004015022289,relative_legacy,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,240414,-5.0340546913793,spot_peer,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,240414,-0.1107064403244103,relative_legacy,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,240414,-2.991028868968318,peer,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,240414,29.53583343159541,baseline,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,240414,48.54268271702416,spot_baseline,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,240416,0.1349164937299299,relative_legacy,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,240416,21.06398209163788,spot_peer,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,240416,73.14682510581956,baseline,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,240416,19.048430199686223,peer,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,241715,2.7096046200339368,peer,CatrachoCaster,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,241715,13.711364765457814,baseline,CatrachoCaster,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,241715,0.0156653231679456,relative_legacy,CatrachoCaster,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,241715,15.128300654412437,spot_peer,CatrachoCaster,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,241715,76.55347463629771,spot_baseline,CatrachoCaster,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,246118,-8.17923763470788,peer,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,246118,37.85116232537298,spot_baseline,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,246118,-12.729882568881177,spot_peer,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,246118,24.697222147891967,baseline,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,246118,-0.1894733284989938,relative_legacy,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,247214,3.49038438513631,peer,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,247214,27.96989031934099,baseline,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,247214,-0.0013674625919765,relative_legacy,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,247214,8.572726404670373,spot_peer,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,247214,67.44606515602588,spot_baseline,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,250015,15.128300654412437,spot_peer,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,250015,0.0641910916325176,relative_legacy,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,250015,13.120487258882658,peer,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,250015,63.72979668671771,baseline,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34690,"Will Noodles & Co. file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.037447+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35202 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,189869,62.02427941146842,baseline,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,189869,-0.0499523262153218,relative_legacy,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,189869,-0.9873165571055746,spot_peer,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,189869,-1.420418201077804,peer,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,190710,-1.0544439633910634,peer,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,190710,52.07842473683303,baseline,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,190710,67.80719051126377,spot_baseline,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,190710,-0.0408371150949525,relative_legacy,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,190710,-0.9873165571055746,spot_peer,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,191026,8.030945158517152,peer,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,191026,16.88511016326697,spot_peer,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,191026,0.0804684449503001,relative_legacy,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,191026,45.34416595669218,baseline,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,191935,0.0874199644459465,relative_legacy,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,191935,87.97057662822883,spot_baseline,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,191935,13.54792544991092,spot_peer,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,191935,8.328121081192378,peer,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,191935,56.00036037332191,baseline,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,191975,-10.79578134758626,peer,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,191975,-0.164915390909297,relative_legacy,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,191975,14.708957257913315,spot_baseline,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,191975,-39.26440285627076,spot_peer,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,191975,4.053247359638176,baseline,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,192924,75.9431625575444,baseline,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,192924,86.39384504239716,spot_baseline,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,192924,12.411302114563126,spot_peer,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,192924,0.1150147875369277,relative_legacy,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,192924,10.769024331536553,peer,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,204737,6.534032247175537,spot_peer,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,204737,0.0388878643458864,relative_legacy,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,204737,78.24085649273731,spot_baseline,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,204737,4.890459940088174,peer,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,204737,61.81325102133509,baseline,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,218666,9.86612503661566,spot_peer,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,218666,82.8631581688019,spot_baseline,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,218666,47.50231186378794,baseline,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,218666,5.363263228463333,peer,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,218666,0.0453739281596415,relative_legacy,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,220077,5.317644111803637,spot_peer,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,220077,74.9037625048063,baseline,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,220077,4.646381211851584,peer,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,220077,0.0300512790502702,relative_legacy,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,222631,34.0058798697219,baseline,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,222631,48.54268271702416,spot_baseline,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,222631,-14.874581390055951,spot_peer,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,222631,-10.762614614618537,peer,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,222631,-0.1757795656670986,relative_legacy,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236037,0.1562705232772668,relative_legacy,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236037,13.949933824176048,peer,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236037,77.83691441639397,baseline,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236037,16.88511016326697,spot_peer,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236038,-0.0477924443327452,relative_legacy,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236038,-1.1417341335584166,peer,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236038,59.158409823947245,baseline,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236038,-0.9873165571055746,spot_peer,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236040,-7.699322755412987,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236040,50.97045998475482,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236040,-7.059843565509734,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236040,-0.1289272625021125,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236041,-0.2153152991078065,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236041,-14.874581390055951,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236041,48.54268271702416,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236041,42.21266174002986,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236041,-13.3592551960126,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236043,42.21460155892548,baseline,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236043,-13.35722950234931,peer,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236043,-0.2152910496352767,relative_legacy,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236043,-14.874581390055951,spot_peer,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236045,39.81304376296728,baseline,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236045,-7.985574015714203,peer,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236045,-10.510304683756598,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236045,-0.1371466684299405,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236045,54.59683691052925,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236047,42.09759891105738,baseline,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236047,-0.2150443621766564,relative_legacy,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236047,-14.874581390055951,spot_peer,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,236047,-13.325184731718933,peer,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,237476,64.75875557479499,baseline,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,237476,11.557855750959206,peer,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,237476,16.88511016326697,spot_peer,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,237476,0.1324491571633675,relative_legacy,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,239758,76.96229431043865,baseline,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,239758,0.1555365906273685,relative_legacy,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,239758,16.88511016326697,spot_peer,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,239758,13.784050320381857,peer,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,239759,11.262119151158302,spot_peer,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,239759,71.30473497600103,baseline,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,239759,9.18111667355585,peer,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,239759,0.0907550012848682,relative_legacy,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,240414,41.13249919239485,baseline,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,240414,-0.0409362351125026,relative_legacy,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,240414,-0.9873165571055746,spot_peer,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,240414,-0.9132865026721358,peer,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,240414,67.80719051126377,spot_baseline,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,240416,72.09609640552915,baseline,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,240416,0.0932130068466293,relative_legacy,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,240416,11.262119151158302,spot_peer,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,240416,9.323437503558235,peer,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,241715,7.736357776887424,spot_peer,CatrachoCaster,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,241715,79.90873060740036,spot_baseline,CatrachoCaster,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,241715,14.242344657792884,baseline,CatrachoCaster,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,241715,1.3788715327712,peer,CatrachoCaster,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,241715,0.0029726962005628,relative_legacy,CatrachoCaster,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,246118,-0.0409362351125026,relative_legacy,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,246118,-0.9873165571055746,spot_peer,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,246118,67.80719051126377,spot_baseline,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,246118,44.26504500515453,baseline,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,246118,-0.9619518700022424,peer,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,247214,-0.0409362351125026,relative_legacy,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,247214,-0.949280447014073,peer,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,247214,43.04833873264043,baseline,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,247214,-0.9873165571055746,spot_peer,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,247214,67.80719051126377,spot_baseline,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,250015,-22.58181049404301,spot_peer,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,250015,29.66877088381646,baseline,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,250015,-18.11686246582613,peer,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34692,"Will ChargePoint file for bankruptcy before April 1, 2025?",2025-02-15 04:48:04.099859+00,250015,-0.2772634376353798,relative_legacy,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35204 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,189869,-1.3238035155325014,relative_legacy,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,189869,-159.15967221942702,baseline,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,189869,-107.60096159517528,spot_peer,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,189869,-102.63431617468292,peer,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,189869,-173.6965594166206,spot_baseline,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,190710,-0.0650867780771995,relative_legacy,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,190710,-6.485580564162524,peer,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,190710,-17.385292301350955,baseline,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,190710,-51.45731728297583,spot_baseline,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,190710,-19.187271815641,spot_peer,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,191026,30.10022560328143,spot_baseline,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,191026,19.35062643414737,peer,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,191026,0.3051564184020927,relative_legacy,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,191026,14.745271320660615,baseline,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,191026,39.80199521566965,spot_peer,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,191935,52.015266614586224,peer,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,191935,53.683197515819614,baseline,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,191935,73.69655941662059,spot_baseline,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,191935,0.759962869765858,relative_legacy,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,191935,71.33452655354748,spot_peer,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,192924,-0.2811766625775186,relative_legacy,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,192924,-26.9202776055946,spot_peer,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,192924,-62.14883767462704,spot_baseline,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,192924,-53.74931752485589,baseline,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,192924,-24.39362035408587,peer,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,204737,-86.24964762500649,spot_baseline,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,204737,-68.3014648160103,baseline,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,204737,-44.35200817914235,spot_peer,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,204737,-0.4260178564132311,relative_legacy,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,204737,-35.51135691509116,peer,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,218666,18.302696839022843,baseline,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,218666,22.509290470808693,peer,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,218666,35.16283291027821,spot_baseline,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,218666,43.46369815249782,spot_peer,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,218666,0.3505945912755073,relative_legacy,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,220077,45.8166776338999,peer,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,220077,36.8329827874887,baseline,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,220077,45.40812384413883,spot_peer,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,220077,0.6146267080888691,relative_legacy,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,222631,-5.253561280908201,spot_peer,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,222631,-10.512718466250986,baseline,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,222631,-1.7155759801178172,peer,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,222631,0.0,relative_legacy,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,222631,-32.19280948873623,spot_baseline,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236037,0.0020605566235258,relative_legacy,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236037,-32.19280948873623,spot_baseline,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236037,-26.55238494715812,baseline,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236037,-4.542301155816378,peer,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236037,-5.253561280908201,spot_peer,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236038,0.6763217239932963,relative_legacy,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236038,42.2982803874787,baseline,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236038,46.06774933464986,peer,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236038,53.14112963409242,spot_peer,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236040,73.40088766271406,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236040,66.48530889685316,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236040,0.9192483650976178,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236040,63.66458894385575,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236041,60.34038578925257,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236041,52.06794070190747,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236041,50.69727964743879,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236041,0.7622166647816506,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236043,58.76547014449811,baseline,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236043,57.97752726377201,peer,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236043,0.8429190698510962,relative_legacy,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236043,67.07484016882522,spot_peer,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236045,28.44313281437714,baseline,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236045,37.85116232537298,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236045,45.40812384413883,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236045,0.5163327494965801,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236045,34.097613692346,peer,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236047,-5.393633486409151,peer,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236047,-27.81013855766708,baseline,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236047,-0.0214011115229028,relative_legacy,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,236047,-5.253561280908201,spot_peer,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,237476,-37.83152727077316,baseline,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,237476,-0.151702523560459,relative_legacy,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,237476,-14.391854611388355,peer,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,237476,-19.187271815641,spot_peer,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,237476,-51.45731728297583,spot_baseline,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,239758,-143.08261995180158,baseline,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,239758,-107.60096159517528,spot_peer,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,239758,-89.59333201287193,peer,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,239758,-1.1635772280676138,relative_legacy,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,239758,-173.6965594166206,spot_baseline,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,239759,-92.50070002914585,peer,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,239759,-107.60096159517528,spot_peer,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,239759,-173.6965594166206,spot_baseline,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,239759,-147.07775549446532,baseline,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,239759,-1.207490297672134,relative_legacy,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,240414,-3.0822159481527214,peer,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,240414,-5.253561280908201,spot_peer,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,240414,-32.19280948873623,spot_baseline,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,240414,0.0,relative_legacy,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,240414,-19.43144382801068,baseline,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,240416,64.3920952101599,baseline,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,240416,61.97755827521797,peer,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,240416,0.9053777154204952,relative_legacy,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,240416,73.40088766271406,spot_peer,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,246118,-35.38236598418371,peer,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,246118,-100.0,spot_baseline,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,246118,-65.26441991991467,baseline,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,246118,-0.4351815822432499,relative_legacy,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,246118,-54.29741824568062,spot_peer,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,247214,-0.9258262361095406,relative_legacy,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,247214,-177.59597257820695,spot_baseline,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,247214,-113.97948889224864,baseline,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,247214,-70.88096176257372,peer,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,247214,-110.42134480087118,spot_peer,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,250015,45.40812384413883,spot_peer,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,250015,30.962975613490947,peer,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,250015,25.716121139323203,baseline,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,250015,0.4645081477739805,relative_legacy,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34693,"Will the state of Delaware have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.1302+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35205 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,185699,94.11063109464314,spot_baseline,MWG,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,185699,5.244647096427966,spot_peer,MWG,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,185699,0.0024989047536438,relative_legacy,MWG,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,185699,15.567298510926928,baseline,MWG,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,185699,0.8675426568168833,peer,MWG,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,189869,61.95575977883429,baseline,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,189869,-12.3978059168631,peer,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,189869,-0.2209083489178061,relative_legacy,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,189869,-13.747181736275634,spot_peer,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,191026,-0.3313831323058618,peer,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,191026,85.43946777531006,spot_baseline,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,191026,41.88717132055727,baseline,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,191026,-1.0161783274996865,spot_peer,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,191026,-0.0351046199547045,relative_legacy,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,191935,0.0264785434125104,relative_legacy,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,191935,4.929179225194817,peer,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,191935,64.07368889218178,baseline,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,191935,96.59381639263673,spot_baseline,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,191935,7.03757718821144,spot_peer,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,191975,7.392489513379592,spot_peer,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,191975,0.0113864071745722,relative_legacy,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,191975,1.89358350263829,peer,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,191975,24.64546507583395,baseline,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,191975,97.08536543404836,spot_baseline,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,192924,6.03538648757629,peer,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,192924,6.324104079297387,spot_peer,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,192924,0.0264939555436604,relative_legacy,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,192924,95.60566524124027,spot_baseline,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,192924,82.81067609473283,baseline,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,204737,4.442753040967377,peer,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,204737,0.0107394376048055,relative_legacy,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,204737,5.136083598673399,spot_peer,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,204737,93.9602720356044,spot_baseline,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,204737,74.27627657015198,baseline,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,218666,3.5926350854757905,peer,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,218666,0.0245514158919475,relative_legacy,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,218666,98.5500430304885,spot_baseline,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,218666,40.66389833556502,baseline,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,218666,8.450028207548144,spot_peer,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,220077,8.744874937660114,peer,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,220077,94.70807981192252,baseline,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,220077,0.0599905898578418,relative_legacy,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,220077,8.450028207548144,spot_peer,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,220077,98.5500430304885,spot_baseline,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,222631,-0.2463952502561102,peer,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,222631,-0.0130197972628368,relative_legacy,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,222631,-1.4781155220690356,spot_peer,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,222631,84.79969065549501,spot_baseline,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,222631,14.154349032602994,baseline,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236037,6.324104079297387,spot_peer,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236037,76.95143201447246,baseline,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236037,95.60566524124027,spot_baseline,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236037,5.494591147704022,peer,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236037,0.0241768273390998,relative_legacy,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236038,-13.747181736275634,spot_peer,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236038,58.81632139844746,baseline,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236038,-11.625077656133325,peer,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236038,-0.2143271338172768,relative_legacy,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236040,6.940157235748014,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236040,83.83439568873736,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236040,97.08536543404836,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236040,7.392489513379592,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236040,0.0388942729185562,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236041,-6.03770514840557,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236041,66.01624530192686,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236041,-0.1381953979823468,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236041,-7.432116963730343,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236043,4.081625415578883,peer,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236043,79.68008040606452,baseline,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236043,-8.520091270161006e-06,relative_legacy,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236043,4.153886693584686,spot_peer,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236045,-7.374813874082147e-06,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236045,4.153886693584686,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236045,61.33313998184188,baseline,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236045,2.998860226385374,peer,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236047,-13.747181736275634,spot_peer,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236047,-0.2123591314501253,relative_legacy,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236047,-11.481429319156971,peer,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,236047,58.07108883499409,baseline,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,237476,53.88939002547597,baseline,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,237476,-10.689489858266228,peer,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,237476,-13.747181736275634,spot_peer,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,237476,67.80719051126377,spot_baseline,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,237476,-0.1970530926521671,relative_legacy,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,239758,78.45171570069806,baseline,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,239758,0.0362269406361956,relative_legacy,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,239758,7.392489513379592,spot_peer,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,239758,6.391023729012047,peer,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,239758,97.08536543404836,spot_baseline,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,239759,4.153886693584686,spot_peer,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,239759,79.55237348551225,baseline,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,239759,4.073170532449859,peer,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,239759,-1.4071137355752328e-05,relative_legacy,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,240414,-13.747181736275634,spot_peer,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,240414,67.80719051126377,spot_baseline,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,240414,-0.1450333812109404,relative_legacy,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,240414,-7.843788655118637,peer,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,240414,39.66605389482408,baseline,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,240416,-1.080225022030283e-05,relative_legacy,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,240416,4.153886693584686,spot_peer,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,240416,76.91606662540433,baseline,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,240416,3.8841130980248586,peer,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,246118,2.959976800186442,peer,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,246118,0.0,relative_legacy,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,246118,60.492641628603344,baseline,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,246118,4.153886693584686,spot_peer,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,246118,92.5999418556223,spot_baseline,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,247214,-3.8190380066584657,spot_peer,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,247214,73.64281293153724,baseline,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,247214,-2.9171638871224435,peer,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,247214,-0.0950085905906402,relative_legacy,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,247214,81.55754288625727,spot_baseline,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,250015,-0.085288352684112,relative_legacy,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,250015,40.69939895265291,baseline,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,250015,-3.7592342977907496,peer,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34695,"Will the state of New Hampshire have any recreational marijuana dispensaries on April 1, 2025?",2025-02-15 04:48:04.334746+00,250015,-7.432116963730343,spot_peer,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,0.9,2025-02-21 11:00:00+00,35207 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,187708,-29.335894269059175,spot_baseline,twsummerbot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,187708,-33.72100513587974,spot_peer,twsummerbot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,187708,-18.71893837921348,baseline,twsummerbot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,187708,-21.88155736075087,peer,twsummerbot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,187708,-0.4777535745008686,relative_legacy,twsummerbot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,189869,3.767903867787271,peer,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,189869,6.387892868566687,spot_peer,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,189869,24.008586286792017,baseline,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,189869,-0.1755861555094858,relative_legacy,VeritasAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,190710,-73.69655941662059,spot_baseline,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,190710,-24.67304961453746,baseline,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,190710,-21.984701035765305,peer,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,190710,-0.4084746626700586,relative_legacy,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,190710,-65.6994139096676,spot_peer,Bot_Pepa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,191026,16.928552271636587,spot_peer,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,191026,20.0714989314813,baseline,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,191026,8.005052040314396,peer,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,191026,-0.0365845628564923,relative_legacy,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,191026,40.92551466848378,spot_baseline,manticAI,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,191935,18.280490349267676,peer,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,191935,37.87993048033614,baseline,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,191935,0.0602160513285283,relative_legacy,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,191935,26.783840276900893,spot_peer,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,191935,54.59683691052925,spot_baseline,pgodzinai,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,191975,-23.994295102754087,spot_peer,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,191975,-0.2159978649230105,relative_legacy,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,191975,-8.069654138432531,peer,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,191975,-5.333936285017408,baseline,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,191975,-15.842936260448308,spot_baseline,jkraybill_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,192924,13.750352374993504,spot_baseline,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,192924,11.8710398085409,baseline,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,192924,-3.952323626793469,peer,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,192924,-0.28270909496863,relative_legacy,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,192924,-2.6612903383547994,spot_peer,acm_bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,204737,-100.0,spot_baseline,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,204737,-1.1570367738867082,relative_legacy,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,204737,-68.05290118337015,peer,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,204737,-79.11856489049065,baseline,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,204737,-84.66085581623891,spot_peer,SynapseSeer,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,218666,0.0198796949418849,relative_legacy,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,218666,51.39959793670126,spot_baseline,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,218666,24.47903680940424,spot_peer,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,218666,9.87283998743113,peer,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,218666,20.593350598808264,baseline,GreeneiBot2,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,220077,29.66433922301333,baseline,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,220077,31.034012061215048,spot_baseline,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,220077,9.798034442157736,spot_peer,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,220077,-0.1324076469218221,relative_legacy,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,220077,7.072601340913192,peer,mmBot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,222631,18.99043029973895,baseline,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,222631,29.594822205244505,spot_peer,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,222631,9.607768149735962,peer,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,222631,0.0323136144381202,relative_legacy,Grizeu_Bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236037,67.80719051126377,spot_baseline,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236037,36.306828403551904,spot_peer,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236037,0.1708609820833442,relative_legacy,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236037,28.540461439027663,peer,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236037,53.72974262349587,baseline,metac-o1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236038,58.75199115322922,baseline,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236038,30.250394038884245,peer,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236038,0.1851418742229087,relative_legacy,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236038,36.306828403551904,spot_peer,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236040,35.61824185579223,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236040,42.61178907246112,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236040,65.9605486202127,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236040,0.2586256371121592,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236041,-49.667743207632775,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236041,-0.8417540105209835,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236041,-44.7926946219078,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236041,-44.22097679614515,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236041,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236043,72.71518490467858,baseline,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236043,40.63754700715342,peer,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236043,0.328158064637551,relative_legacy,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236043,48.556264111815786,spot_peer,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236045,0.2604868171461876,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236045,56.66694971242464,baseline,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236045,48.556264111815786,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236045,32.261358693051015,peer,metac-Gemini-Exp-1206,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236047,22.41956357060153,spot_peer,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236047,0.0174086985645725,relative_legacy,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236047,41.44742724802928,baseline,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236047,17.90626203512148,peer,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,237476,-0.8029768001592335,relative_legacy,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,237476,-42.25615279032386,baseline,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,237476,-51.45731728297583,spot_baseline,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,237476,-49.667743207632775,spot_peer,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,237476,-42.06654966819249,peer,NextWorldLab,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,239758,-107.86778515291677,spot_peer,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,239758,-1.4215744762443234,relative_legacy,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,239758,-87.21517350341809,peer,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,239758,-105.30744531282164,baseline,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,239758,-132.19280948873626,spot_baseline,metac-perplexity,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,239759,0.0171593603049205,relative_legacy,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,239759,17.931418644636615,peer,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,239759,41.61887552266902,baseline,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,239759,22.41956357060153,spot_peer,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,239759,48.54268271702416,spot_baseline,metac-exa,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,240414,22.41956357060153,spot_peer,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,240414,48.54268271702416,spot_baseline,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,240414,28.40618982467768,baseline,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,240414,0.0007730566103995,relative_legacy,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,240414,12.801044430663143,peer,minefrac1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,240416,42.61178907246112,spot_peer,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,240416,0.2485441446010501,relative_legacy,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,240416,63.15763561302328,baseline,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,240416,34.58410944532116,peer,metac-o1-preview,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,246118,-55.74922765868336,peer,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,246118,-100.0,spot_baseline,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,246118,-84.66085581623891,spot_peer,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,246118,-0.9496751168790768,relative_legacy,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,246118,-65.2241411672698,baseline,laylaps,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,247214,30.38018681206038,peer,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,247214,36.825532720699975,spot_peer,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,247214,68.52674065168416,spot_baseline,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,247214,58.56932756637937,baseline,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,247214,0.1880801922886349,relative_legacy,ajf-bot,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,250015,32.75920450798058,baseline,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,250015,16.247102660153576,peer,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,250015,0.0565223475715261,relative_legacy,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34696,"Will Vladimir Putin travel outside of Russia before April 1, 2025?",2025-02-15 04:48:04.366008+00,250015,29.594822205244505,spot_peer,metac-deepseek-r1,True,no,2025-02-21 11:00:00+00,2025-02-21 11:00:00+00,1.0,2025-02-21 11:00:00+00,35208 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,185699,0.0329437846448921,relative_legacy,MWG,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,185699,35.01200304739528,spot_peer,MWG,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,185699,22.473199277245097,baseline,MWG,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,185699,30.77410852599864,spot_baseline,MWG,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,185699,26.152184071787666,peer,MWG,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,189869,-24.274338844257908,spot_baseline,VeritasAI,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,189869,-22.14163525748541,baseline,VeritasAI,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,189869,-66.99456554236892,peer,VeritasAI,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,189869,-1.2985061962349354,relative_legacy,VeritasAI,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,189869,-76.39210267722498,spot_peer,VeritasAI,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,190710,10.892176809114403,baseline,Bot_Pepa,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,190710,2.3916169264709506,spot_peer,Bot_Pepa,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,190710,14.6552985692638,spot_baseline,Bot_Pepa,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,190710,2.459377233618452,peer,Bot_Pepa,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,190710,-0.2983131822053586,relative_legacy,Bot_Pepa,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,191026,-0.1981838614628122,relative_legacy,manticAI,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,191026,16.433655278102556,baseline,manticAI,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,191026,12.084359389401838,spot_peer,manticAI,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,191026,19.444802689184066,spot_baseline,manticAI,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,191026,12.094362888692132,peer,manticAI,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,191935,22.341818447301733,baseline,pgodzinai,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,191935,26.587447987154437,peer,pgodzinai,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,191935,37.64505507776143,spot_peer,pgodzinai,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,191935,0.0504833212061451,relative_legacy,pgodzinai,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,191935,32.07518648155486,spot_baseline,pgodzinai,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,192418,16.773304582953152,baseline,InstitutPelFutur,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,192418,17.29125246530839,spot_baseline,InstitutPelFutur,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,192418,7.726119542776215,spot_peer,InstitutPelFutur,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,192418,-0.2229789602302399,relative_legacy,InstitutPelFutur,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,192418,13.006007459826112,peer,InstitutPelFutur,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,192924,-0.7987743789311368,relative_legacy,acm_bot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,192924,-4.940817056716489,spot_baseline,acm_bot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,192924,-37.26595456333176,spot_peer,acm_bot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,192924,-4.404075752052246,baseline,acm_bot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,192924,-30.349340739451755,peer,acm_bot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,218666,-0.1432362829158034,relative_legacy,GreeneiBot2,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,218666,16.067738759405177,baseline,GreeneiBot2,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,218666,13.298884110614797,peer,GreeneiBot2,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,218666,22.18922680654893,spot_baseline,GreeneiBot2,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,218666,17.638378242425993,spot_peer,GreeneiBot2,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,220077,-0.625584289295805,relative_legacy,mmBot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,220077,2.4910656431837603,baseline,mmBot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,220077,2.5073184490619136,spot_baseline,mmBot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,220077,-18.18747890183228,peer,mmBot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,220077,-22.19281599220901,spot_peer,mmBot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,222631,23.941895972103712,peer,Grizeu_Bot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,222631,0.0196573735164442,relative_legacy,Grizeu_Bot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,222631,20.859585376736263,baseline,Grizeu_Bot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,222631,30.627489783926112,spot_baseline,Grizeu_Bot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,222631,34.71528387322501,spot_peer,Grizeu_Bot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,224797,19.56623402616893,baseline,cookics_bot_TEST,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,224797,24.47359551660545,spot_baseline,cookics_bot_TEST,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,224797,22.2613615497927,spot_peer,cookics_bot_TEST,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,224797,-0.0888015171563194,relative_legacy,cookics_bot_TEST,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,224797,19.09163718046818,peer,cookics_bot_TEST,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236037,30.933048879454024,spot_peer,metac-o1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236037,28.547730118849103,peer,metac-o1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236037,28.75856257839557,spot_baseline,metac-o1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236037,24.599863795771817,baseline,metac-o1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236037,0.0249853932983625,relative_legacy,metac-o1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236038,-13.43149190425328,spot_baseline,metac-gpt-4o,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236038,-11.626105640483631,baseline,metac-gpt-4o,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236038,-45.08114215967975,peer,metac-gpt-4o,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236038,-0.9951343498502124,relative_legacy,metac-gpt-4o,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236038,-54.44892853580829,spot_peer,metac-gpt-4o,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236040,12.800296616397151,spot_peer,metac-claude-3-5-sonnet-latest,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236040,19.798570914370305,spot_baseline,metac-claude-3-5-sonnet-latest,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236040,13.403329955092993,peer,metac-claude-3-5-sonnet-latest,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236040,17.141386110805094,baseline,metac-claude-3-5-sonnet-latest,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236040,-0.1875780330070681,relative_legacy,metac-claude-3-5-sonnet-latest,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236041,4.368971828790586,peer,metac-claude-3-5-sonnet-20240620,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236041,14.6552985692638,spot_baseline,metac-claude-3-5-sonnet-20240620,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236041,2.3916169264709506,spot_peer,metac-claude-3-5-sonnet-20240620,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236041,-0.3124963326275841,relative_legacy,metac-claude-3-5-sonnet-20240620,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236041,12.696362176383534,baseline,metac-claude-3-5-sonnet-20240620,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236043,-14.103264009131768,spot_baseline,metac-grok-2-1212,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236043,-12.216546592589529,baseline,metac-grok-2-1212,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236043,-46.28315178411002,peer,metac-grok-2-1212,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236043,-1.0118441664888838,relative_legacy,metac-grok-2-1212,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236043,-55.80842501881301,spot_peer,metac-grok-2-1212,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236045,-5.941187806350166,peer,metac-Gemini-Exp-1206,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236045,7.539314560640464,baseline,metac-Gemini-Exp-1206,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236045,8.9394316180471,spot_baseline,metac-Gemini-Exp-1206,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236045,-9.175849124992377,spot_peer,metac-Gemini-Exp-1206,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236045,-0.4469289466800261,relative_legacy,metac-Gemini-Exp-1206,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236047,11.876793030530484,spot_baseline,metac-Llama-3.1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236047,-3.2313740856377136,spot_peer,metac-Llama-3.1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236047,-0.3807710729140845,relative_legacy,metac-Llama-3.1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236047,-0.659252883734417,peer,metac-Llama-3.1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,236047,10.227917445850174,baseline,metac-Llama-3.1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,237476,7.726119542776215,spot_peer,NextWorldLab,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,237476,13.589278824061518,baseline,NextWorldLab,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,237476,17.29125246530839,spot_baseline,NextWorldLab,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,237476,-0.2499563567023043,relative_legacy,NextWorldLab,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,237476,7.189160727383647,peer,NextWorldLab,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,239758,0.0254315288089028,relative_legacy,metac-perplexity,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,239758,28.75856257839557,spot_baseline,metac-perplexity,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,239758,30.933048879454024,spot_peer,metac-perplexity,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,239758,28.602371672427005,peer,metac-perplexity,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,239758,24.62906084258052,baseline,metac-perplexity,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,239759,-0.0259782001079221,relative_legacy,metac-exa,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,239759,26.660727046776948,spot_baseline,metac-exa,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,239759,26.687561449347484,spot_peer,metac-exa,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,239759,22.729775697000832,baseline,metac-exa,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,239759,24.777259499469075,peer,metac-exa,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,240414,-0.023751943994896,relative_legacy,minefrac1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,240414,28.75856257839557,spot_baseline,minefrac1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,240414,30.933048879454024,spot_peer,minefrac1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,240414,16.854505181622898,peer,minefrac1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,240414,15.669691787657683,baseline,minefrac1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,240416,-0.7741860388579518,relative_legacy,metac-o1-preview,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,240416,-29.587736316976592,peer,metac-o1-preview,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,240416,-4.1013855878102925,baseline,metac-o1-preview,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,240416,-4.846610184803565,spot_baseline,metac-o1-preview,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,240416,-37.07530373083901,spot_peer,metac-o1-preview,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,246118,16.715060423546127,peer,laylaps,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,246118,27.48961331049853,spot_baseline,laylaps,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,246118,16.14629467023839,baseline,laylaps,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,246118,28.365017170055403,spot_peer,laylaps,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,246118,-0.0420269702165732,relative_legacy,laylaps,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,247214,2.672925952908354,baseline,ajf-bot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,247214,-0.5977685375518815,relative_legacy,ajf-bot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,247214,-21.12847921749161,spot_peer,ajf-bot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,247214,3.03324239545656,spot_baseline,ajf-bot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,247214,-15.946883648781965,peer,ajf-bot,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,250015,1.8491890747094544,spot_baseline,metac-deepseek-r1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,250015,-0.6137235491499008,relative_legacy,metac-deepseek-r1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,250015,-18.059446528160784,peer,metac-deepseek-r1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,250015,1.5515441706279385,baseline,metac-deepseek-r1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34697,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 04:48:04.400734+00,250015,-23.524703046310627,spot_peer,metac-deepseek-r1,True,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,2025-02-21 17:00:00+00,35209 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,185690,-0.1745147742303246,relative_legacy,annabot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,185690,20.046079173752325,baseline,annabot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,185690,-11.69163150673785,spot_peer,annabot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,185690,22.11391417302665,spot_baseline,annabot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,185690,-10.348527951531368,peer,annabot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,185699,22.124180812032765,baseline,MWG,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,185699,-0.0425001106204466,relative_legacy,MWG,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,185699,-2.1408869673511344,spot_peer,MWG,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,185699,30.49689569900987,spot_baseline,MWG,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,185699,-1.3836911697565977,peer,MWG,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,189869,-0.3042372863299373,relative_legacy,VeritasAI,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,189869,12.241642235848335,baseline,VeritasAI,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,189869,-19.82642814485573,peer,VeritasAI,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,189869,13.352697822873155,spot_baseline,VeritasAI,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,189869,-21.67329959884305,spot_peer,VeritasAI,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,190710,13.14332841085212,spot_peer,Bot_Pepa,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,190710,34.38397993419717,baseline,Bot_Pepa,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,190710,10.502122650178665,peer,Bot_Pepa,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,190710,0.1145124958389284,relative_legacy,Bot_Pepa,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,190710,43.91232049926883,spot_baseline,Bot_Pepa,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,191026,-20.299598489334414,peer,manticAI,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,191026,-24.39533785846611,spot_peer,manticAI,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,191026,9.195675336926698,baseline,manticAI,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,191026,10.963481322595491,spot_baseline,manticAI,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,191026,-0.3155225147664067,relative_legacy,manticAI,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,191935,36.22692454955645,baseline,pgodzinai,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,191935,11.77121512742914,peer,pgodzinai,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,191935,44.91811993375187,spot_baseline,pgodzinai,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,191935,0.1299768721765909,relative_legacy,pgodzinai,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,191935,14.289237348720192,spot_peer,pgodzinai,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,191975,4.782788743257371,baseline,jkraybill_bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,191975,-0.0019690715723468,relative_legacy,jkraybill_bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,191975,3.077616396526078,spot_peer,jkraybill_bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,191975,0.4406963099455272,peer,jkraybill_bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,191975,35.077336219877694,spot_baseline,jkraybill_bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,192418,35.811197843427856,baseline,InstitutPelFutur,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,192418,36.90702464285426,spot_baseline,InstitutPelFutur,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,192418,5.162183404142502,spot_peer,InstitutPelFutur,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,192418,0.0335271789920018,relative_legacy,InstitutPelFutur,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,192418,4.574507768270409,peer,InstitutPelFutur,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,192924,-5.85957394271291,peer,acm_bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,192924,26.299659564385124,spot_baseline,acm_bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,192924,-6.922804948326539,spot_peer,acm_bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,192924,-0.114394016152327,relative_legacy,acm_bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,192924,23.265389248728876,baseline,acm_bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,218666,21.62117359797577,spot_peer,GreeneiBot2,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,218666,51.35358534419442,spot_baseline,GreeneiBot2,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,218666,38.67242957854598,baseline,GreeneiBot2,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,218666,16.49342147685714,peer,GreeneiBot2,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,218666,0.2016987186006977,relative_legacy,GreeneiBot2,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,220077,0.1921713803490862,relative_legacy,mmBot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,220077,46.93863088831697,baseline,mmBot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,220077,16.739515066990197,peer,mmBot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,220077,47.22264612970255,spot_baseline,mmBot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,220077,16.914787806350247,spot_peer,mmBot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,222631,45.5825310783296,spot_baseline,Grizeu_Bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,222631,33.04123158008469,baseline,Grizeu_Bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,222631,0.1309020459772701,relative_legacy,Grizeu_Bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,222631,11.112434232855597,peer,Grizeu_Bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,222631,15.046202050516913,spot_peer,Grizeu_Bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,224797,27.663522116826343,baseline,cookics_bot_TEST,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,224797,33.191246570706056,spot_baseline,cookics_bot_TEST,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,224797,0.9287913798197518,spot_peer,cookics_bot_TEST,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,224797,1.0224383848063006,peer,cookics_bot_TEST,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,224797,-0.0203100692530041,relative_legacy,cookics_bot_TEST,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236037,8.540940487794664,peer,metac-o1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236037,9.229516620038336,spot_peer,metac-o1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236037,40.47704780369384,spot_baseline,metac-o1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236037,35.89152304136357,baseline,metac-o1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236037,0.0846987722148718,relative_legacy,metac-o1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236038,0.1572022323022636,relative_legacy,metac-gpt-4o,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236038,15.046202050516932,spot_peer,metac-gpt-4o,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236038,45.58253107832961,spot_baseline,metac-gpt-4o,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236038,13.78550628029007,peer,metac-gpt-4o,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236038,40.54989952219234,baseline,metac-gpt-4o,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236040,7.215789197820407,spot_peer,metac-claude-3-5-sonnet-latest,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236040,6.786785805495271,peer,metac-claude-3-5-sonnet-latest,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236040,34.48288315695351,baseline,metac-claude-3-5-sonnet-latest,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236040,38.70953745837968,spot_baseline,metac-claude-3-5-sonnet-latest,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236040,0.0604648013587813,relative_legacy,metac-claude-3-5-sonnet-latest,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236041,-0.0665612756422114,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236041,-3.034889949682242,spot_peer,metac-claude-3-5-sonnet-20240620,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236041,29.71220185088641,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236041,26.465961002378403,baseline,metac-claude-3-5-sonnet-20240620,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236041,-2.406093064904994,peer,metac-claude-3-5-sonnet-20240620,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236043,22.45273541551468,baseline,metac-grok-2-1212,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236043,-6.927483051453254,peer,metac-grok-2-1212,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236043,-0.1291202930555127,relative_legacy,metac-grok-2-1212,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236043,25.271129720828394,spot_baseline,metac-grok-2-1212,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236043,-8.094610678364067,spot_peer,metac-grok-2-1212,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236045,14.289237348720192,spot_peer,metac-Gemini-Exp-1206,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236045,38.888488572207656,baseline,metac-Gemini-Exp-1206,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236045,0.1419040552252292,relative_legacy,metac-Gemini-Exp-1206,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236045,12.707804937186356,peer,metac-Gemini-Exp-1206,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236045,44.91811993375187,spot_baseline,metac-Gemini-Exp-1206,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236047,11.926706423906367,spot_baseline,metac-Llama-3.1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236047,-23.297933927891897,spot_peer,metac-Llama-3.1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236047,10.612514432034434,baseline,metac-Llama-3.1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236047,-0.3173985474438076,relative_legacy,metac-Llama-3.1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,236047,-20.55336699041641,peer,metac-Llama-3.1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,237476,-16.46017099647051,spot_peer,NextWorldLab,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,237476,-0.2177436540820808,relative_legacy,NextWorldLab,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,237476,17.9284207506555,spot_baseline,NextWorldLab,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,237476,-13.312374954471654,peer,NextWorldLab,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,237476,14.687924103856052,baseline,NextWorldLab,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,239758,25.276507531563663,baseline,metac-perplexity,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,239758,-3.6101330949533073,peer,metac-perplexity,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,239758,-0.083289690770868,relative_legacy,metac-perplexity,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,239758,-4.390513223333653,spot_peer,metac-perplexity,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,239758,28.52232970925937,spot_baseline,metac-perplexity,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,239759,21.899487872068843,spot_baseline,metac-exa,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,239759,-11.935927741511378,spot_peer,metac-exa,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,239759,19.359517332653024,baseline,metac-exa,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,239759,-10.315298577903958,peer,metac-exa,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,239759,-0.1760204021169213,relative_legacy,metac-exa,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,240414,-11.9993646067672,peer,minefrac1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,240414,8.49252835061199,baseline,minefrac1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,240414,14.291097089402346,spot_baseline,minefrac1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,240414,-20.604179782368583,spot_peer,minefrac1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,240414,-0.1738274745673642,relative_legacy,minefrac1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,240416,15.046202050516932,spot_peer,metac-o1-preview,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,240416,45.58253107832961,spot_baseline,metac-o1-preview,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,240416,40.27831355776139,baseline,metac-o1-preview,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,240416,13.675839851663378,peer,metac-o1-preview,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,240416,0.155700266199407,relative_legacy,metac-o1-preview,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,246118,-11.253397740688236,peer,laylaps,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,246118,-17.9786293247385,spot_peer,laylaps,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,246118,10.603194172960578,baseline,laylaps,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,246118,16.595623285353042,spot_baseline,laylaps,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,246118,-0.1684240466858224,relative_legacy,laylaps,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,247214,41.5093883186297,spot_baseline,ajf-bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,247214,34.66877708971704,baseline,ajf-bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,247214,8.976543460599554,peer,ajf-bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,247214,0.0898531034958842,relative_legacy,ajf-bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,247214,10.405663854199757,spot_peer,ajf-bot,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,250015,42.21088922957006,spot_baseline,metac-deepseek-r1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,250015,0.0084986600967342,relative_legacy,metac-deepseek-r1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,250015,3.637432154054324,baseline,metac-deepseek-r1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,250015,0.9655599393877348,peer,metac-deepseek-r1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34698,Who will win the UFC light heavyweight championship at UFC 313?,2025-02-15 04:48:04.436231+00,250015,11.204884987369626,spot_peer,metac-deepseek-r1,True,Magomed Ankalaev,2025-02-22 17:00:00+00,2025-02-22 17:00:00+00,1.0,2025-02-22 17:00:00+00,35210 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,185699,-6.016949069740362,spot_peer,MWG,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,185699,2.472312428082829,baseline,MWG,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,185699,-4.397875559549243,peer,MWG,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,185699,-0.0491349842335671,relative_legacy,MWG,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,185699,3.3948086261543504,spot_baseline,MWG,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,187708,-0.0330898547740788,relative_legacy,twsummerbot,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,187708,3.1313528050044392,spot_baseline,twsummerbot,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,187708,-6.318969037708826,spot_peer,twsummerbot,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,187708,1.4417362051405542,baseline,twsummerbot,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,187708,-2.9093771951430005,peer,twsummerbot,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,189869,-0.1133563866068266,relative_legacy,VeritasAI,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,189869,-0.1793528762077796,baseline,VeritasAI,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,189869,-10.135773156657866,spot_peer,VeritasAI,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,189869,-0.1980934898547649,spot_baseline,VeritasAI,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,189869,-9.273752481031606,peer,VeritasAI,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,190710,1.8025128155254135,spot_baseline,Bot_Pepa,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,190710,-5.960797193984309,peer,Bot_Pepa,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,190710,-0.0702172701043556,relative_legacy,Bot_Pepa,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,190710,-7.842322020785637,spot_peer,Bot_Pepa,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,190710,1.3662253350294356,baseline,Bot_Pepa,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,191026,14.274342108951144,baseline,manticAI,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,191026,0.127050512633994,relative_legacy,manticAI,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,191026,10.154470363660607,spot_peer,manticAI,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,191026,8.36203802073999,peer,manticAI,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,191026,17.50134143139993,spot_baseline,manticAI,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,191935,5.742530532656128,peer,pgodzinai,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,191935,0.0874175572807052,relative_legacy,pgodzinai,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,191935,9.116174970286549,spot_peer,pgodzinai,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,191935,16.595623285353042,spot_baseline,pgodzinai,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,191935,10.46334030160146,baseline,pgodzinai,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,192418,0.5730845394101215,peer,InstitutPelFutur,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,192418,9.499257963950354,spot_baseline,InstitutPelFutur,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,192418,0.9810575995340084,spot_peer,InstitutPelFutur,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,192418,9.159585854171205,baseline,InstitutPelFutur,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,192418,0.0224283900197799,relative_legacy,InstitutPelFutur,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,192924,14.45404661551632,baseline,acm_bot,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,192924,8.122823007343024,peer,acm_bot,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,192924,0.1236181834356052,relative_legacy,acm_bot,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,192924,9.116174970286549,spot_peer,acm_bot,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,192924,16.595623285353042,spot_baseline,acm_bot,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,218666,18.833156779035004,baseline,GreeneiBot2,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,218666,14.249558758614493,peer,GreeneiBot2,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,218666,0.2079138804881033,relative_legacy,GreeneiBot2,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,218666,19.061585036824784,spot_peer,GreeneiBot2,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,218666,25.271129720828377,spot_baseline,GreeneiBot2,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,220077,16.595623285353042,spot_baseline,mmBot,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,220077,16.487817817125336,baseline,mmBot,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,220077,9.032132590839286,peer,mmBot,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,220077,0.1308812758111523,relative_legacy,mmBot,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,220077,9.116174970286549,spot_peer,mmBot,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236037,4.441072130058007,spot_baseline,metac-o1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236037,-0.0438422610934135,relative_legacy,metac-o1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236037,-4.0891251647954,peer,metac-o1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236037,3.844869447357171,baseline,metac-o1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236037,-4.817535564446263,spot_peer,metac-o1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236038,-4.817535564446263,spot_peer,metac-gpt-4o,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236038,3.830872366058762,baseline,metac-gpt-4o,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236038,-4.079879652626061,peer,metac-gpt-4o,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236038,-0.0437947116944103,relative_legacy,metac-gpt-4o,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236038,4.441072130058007,spot_baseline,metac-gpt-4o,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236040,-1.8779657940083827,spot_peer,metac-claude-3-5-sonnet-latest,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236040,7.005295856414573,spot_baseline,metac-claude-3-5-sonnet-latest,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236040,6.115042729267587,baseline,metac-claude-3-5-sonnet-latest,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236040,-1.531582636996519,peer,metac-claude-3-5-sonnet-latest,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236040,-0.0087042092635167,relative_legacy,metac-claude-3-5-sonnet-latest,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236041,14.291097089402346,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236041,6.474316745838895,spot_peer,metac-claude-3-5-sonnet-20240620,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236041,0.0918758394252886,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236041,5.808529512690034,peer,metac-claude-3-5-sonnet-20240620,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236041,12.455963050939284,baseline,metac-claude-3-5-sonnet-20240620,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236043,-6.778940326391485,peer,metac-grok-2-1212,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236043,1.8025128155254135,spot_baseline,metac-grok-2-1212,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236043,-7.842322020785612,spot_peer,metac-grok-2-1212,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236043,-0.0806550651802456,relative_legacy,metac-grok-2-1212,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236043,1.57298049108405,baseline,metac-grok-2-1212,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236045,6.633814617526059,baseline,metac-Gemini-Exp-1206,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236045,2.083034420751417,peer,metac-Gemini-Exp-1206,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236045,0.0350057247944553,relative_legacy,metac-Gemini-Exp-1206,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236045,3.763831208107355,spot_peer,metac-Gemini-Exp-1206,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236045,11.926706423906367,spot_baseline,metac-Gemini-Exp-1206,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236047,-0.1963359381539525,relative_legacy,metac-Llama-3.1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236047,-6.605669132175454,spot_baseline,metac-Llama-3.1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236047,-17.481277164891576,spot_peer,metac-Llama-3.1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236047,-5.746627590873191,baseline,metac-Llama-3.1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,236047,-15.209219118751037,peer,metac-Llama-3.1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,237476,0.0872616674945949,relative_legacy,NextWorldLab,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,237476,18.442744738214635,spot_baseline,NextWorldLab,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,237476,5.891291736192468,peer,NextWorldLab,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,237476,9.699263203952995,baseline,NextWorldLab,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,237476,11.233674441705224,spot_peer,NextWorldLab,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,239758,12.18878520413462,baseline,metac-perplexity,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,239758,5.643527551205924,peer,metac-perplexity,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,239758,0.0895114710152139,relative_legacy,metac-perplexity,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,239758,6.474316745838895,spot_peer,metac-perplexity,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,239758,14.291097089402346,spot_baseline,metac-perplexity,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,239759,-0.7249394093212307,spot_peer,metac-exa,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,239759,6.60372601096247,baseline,metac-exa,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,239759,-0.5553907838759603,peer,metac-exa,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,239759,0.0044077048290816,relative_legacy,metac-exa,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,239759,8.01109529089761,spot_baseline,metac-exa,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,240414,-0.0799128998838733,relative_legacy,minefrac1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,240414,-0.5250673805535236,baseline,minefrac1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,240414,-10.95741382770889,spot_peer,minefrac1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,240414,-0.9148209934631238,spot_baseline,minefrac1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,240414,-6.296815292984647,peer,minefrac1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,240416,-0.9148209934631238,spot_baseline,metac-o1-preview,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,240416,-0.1171129180289607,relative_legacy,metac-o1-preview,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,240416,-10.95741382770889,spot_peer,metac-o1-preview,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,240416,-0.7903620284553462,baseline,metac-o1-preview,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,240416,-9.422614563041355,peer,metac-o1-preview,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,246118,-4.817535564446263,spot_peer,laylaps,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,246118,2.752848665069937,baseline,laylaps,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,246118,-2.998976955668464,peer,laylaps,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,246118,-0.0328668911541358,relative_legacy,laylaps,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,246118,4.441072130058007,spot_baseline,laylaps,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,250015,7.995796254395911,peer,metac-deepseek-r1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,250015,14.274666694083813,baseline,metac-deepseek-r1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,250015,16.595623285353042,spot_baseline,metac-deepseek-r1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,250015,9.116174970286549,spot_peer,metac-deepseek-r1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34898,Which country will the winner of the 2025 Tokyo Marathon be from?,2025-02-22 03:56:07.917487+00,250015,0.1219415435642713,relative_legacy,metac-deepseek-r1,True,Ethiopia,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35431 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,187708,0.1030276168787927,relative_legacy,twsummerbot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,187708,5.98321886190894,baseline,twsummerbot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,187708,12.98999768951957,spot_baseline,twsummerbot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,187708,20.514629063076484,spot_peer,twsummerbot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,187708,9.831223593502026,peer,twsummerbot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,189869,-2.146189283827601,relative_legacy,VeritasAI,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,189869,-68.89844296330092,peer,VeritasAI,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,189869,-82.4329321682585,spot_baseline,VeritasAI,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,189869,-78.88425620544236,spot_peer,VeritasAI,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,189869,-73.5430999268123,baseline,VeritasAI,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,190710,-1.989705326400582,relative_legacy,Bot_Pepa,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,190710,-67.55845988255203,baseline,Bot_Pepa,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,190710,-86.33742421913423,spot_peer,Bot_Pepa,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,190710,-89.5879734614027,spot_baseline,Bot_Pepa,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,190710,-63.37964600377107,peer,Bot_Pepa,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,191026,-6.179907293202193,baseline,manticAI,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,191026,-7.510763537740998,spot_baseline,manticAI,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,191026,-0.840330548653281,spot_peer,manticAI,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,191026,-0.2166837143073918,relative_legacy,manticAI,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,191026,1.6629256675483697,peer,manticAI,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,191935,7.136579012100959,baseline,pgodzinai,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,191935,11.000751797139374,spot_baseline,pgodzinai,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,191935,18.44249792518044,spot_peer,pgodzinai,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,191935,0.1327995375714911,relative_legacy,pgodzinai,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,191935,13.163963588722876,peer,pgodzinai,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,191975,0.9961160009371514,baseline,jkraybill_bot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,191975,18.775995211903275,spot_peer,jkraybill_bot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,191975,1.6520819084621834,peer,jkraybill_bot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,191975,0.0132779291221412,relative_legacy,jkraybill_bot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,191975,11.320909192393296,spot_baseline,jkraybill_bot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,192418,18.605441434108595,spot_peer,InstitutPelFutur,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,192418,0.2577333657190793,relative_legacy,InstitutPelFutur,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,192418,10.68620274076112,baseline,InstitutPelFutur,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,192418,11.157177565710398,spot_baseline,InstitutPelFutur,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,192418,19.67688970699676,peer,InstitutPelFutur,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,192924,2.4515389182835747,spot_peer,acm_bot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,192924,-0.1412063129674134,relative_legacy,acm_bot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,192924,4.74514736043524,peer,acm_bot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,192924,-4.3505688494816175,spot_baseline,acm_bot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,192924,-3.7380221829090914,baseline,acm_bot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,218666,9.704308545522064,peer,GreeneiBot2,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,218666,6.4445298449987405,baseline,GreeneiBot2,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,218666,24.09296829128717,spot_peer,GreeneiBot2,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,218666,16.425203348601837,spot_baseline,GreeneiBot2,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,218666,0.1234831303030894,relative_legacy,GreeneiBot2,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,220077,16.375443612999895,baseline,mmBot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,220077,24.27430973128744,spot_peer,mmBot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,220077,0.4081310673703701,relative_legacy,mmBot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,220077,25.5625080475726,peer,mmBot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,220077,16.59929113100209,spot_baseline,mmBot,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,227188,-0.759895143953326,peer,ProfessorSP,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,227188,-9.116077839697695,spot_baseline,ProfessorSP,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,227188,-2.512532946524834,spot_peer,ProfessorSP,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,227188,-0.2198558819491795,relative_legacy,ProfessorSP,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,227188,-5.014008134724224,baseline,ProfessorSP,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236037,11.157177565710647,spot_baseline,metac-o1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236037,0.2425607201663065,relative_legacy,metac-o1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236037,18.73551921653418,peer,metac-o1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236037,9.576314316187233,baseline,metac-o1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236037,18.60544143410885,spot_peer,metac-o1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236038,-89.5879734614027,spot_baseline,metac-gpt-4o,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236038,-86.33742421913423,spot_peer,metac-gpt-4o,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236038,-76.99516338875763,baseline,metac-gpt-4o,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236038,-72.33046002737515,peer,metac-gpt-4o,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236038,-2.2548314085771746,relative_legacy,metac-gpt-4o,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236040,18.60544143410885,spot_peer,metac-claude-3-5-sonnet-latest,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236040,0.2485774872700182,relative_legacy,metac-claude-3-5-sonnet-latest,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236040,19.03989057479467,peer,metac-claude-3-5-sonnet-latest,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236040,9.700650444928812,baseline,metac-claude-3-5-sonnet-latest,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236040,11.157177565710647,spot_baseline,metac-claude-3-5-sonnet-latest,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236041,-14.609319643590895,baseline,metac-claude-3-5-sonnet-20240620,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236041,-6.595755275600784,peer,metac-claude-3-5-sonnet-20240620,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236041,-0.4530518216059864,relative_legacy,metac-claude-3-5-sonnet-20240620,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236041,-10.54121441900941,spot_peer,metac-claude-3-5-sonnet-20240620,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236041,-16.82361205328288,spot_baseline,metac-claude-3-5-sonnet-20240620,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236043,6.983381469826967,spot_peer,metac-grok-2-1212,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236043,3.3306690738754684e-14,spot_baseline,metac-grok-2-1212,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236043,-0.0224153589215255,baseline,metac-grok-2-1212,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236043,8.782560151048921,peer,metac-grok-2-1212,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236043,-0.032020934151172,relative_legacy,metac-grok-2-1212,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236045,-29.118034184336853,spot_peer,metac-Gemini-Exp-1206,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236045,-20.216448745084985,peer,metac-Gemini-Exp-1206,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236045,-26.48708835502908,baseline,metac-Gemini-Exp-1206,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236045,-0.8033596002522353,relative_legacy,metac-Gemini-Exp-1206,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236045,-34.65735902799723,spot_baseline,metac-Gemini-Exp-1206,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236047,-16.82361205328288,spot_baseline,metac-Llama-3.1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236047,-10.54121441900941,spot_peer,metac-Llama-3.1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236047,-0.4517570693673675,relative_legacy,metac-Llama-3.1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236047,-14.546148493918317,baseline,metac-Llama-3.1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,236047,-6.563664019345401,peer,metac-Llama-3.1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,237476,25.560202045339437,spot_peer,NextWorldLab,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,237476,0.2153945810734845,relative_legacy,NextWorldLab,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,237476,15.244324891022597,peer,NextWorldLab,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,237476,10.136842163117104,baseline,NextWorldLab,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,237476,17.83374775249201,spot_baseline,NextWorldLab,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,239758,11.157177565710398,spot_baseline,metac-perplexity,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,239758,9.454605591581096,baseline,metac-perplexity,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,239758,18.40269503927425,peer,metac-perplexity,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,239758,0.236110918144837,relative_legacy,metac-perplexity,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,239758,18.605441434108595,spot_peer,metac-perplexity,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,239759,14.782741257396513,baseline,metac-exa,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,239759,25.56020123515441,spot_peer,metac-exa,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,239759,17.833746974714384,spot_baseline,metac-exa,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,239759,23.75183227422589,peer,metac-exa,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,239759,0.3880417192472382,relative_legacy,metac-exa,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,240414,4.749464972007614,peer,minefrac1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,240414,1.9197151582108387e-14,baseline,minefrac1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,240414,6.983381469826967,spot_peer,minefrac1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,240414,-0.0773401880668008,relative_legacy,minefrac1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,240414,3.3306690738754684e-14,spot_baseline,minefrac1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,240416,0.0087685526460957,baseline,metac-o1-preview,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,240416,8.518327698169442,peer,metac-o1-preview,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,240416,-0.0358647008199176,relative_legacy,metac-o1-preview,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,240416,3.3306690738754684e-14,spot_baseline,metac-o1-preview,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,240416,6.983381469826967,spot_peer,metac-o1-preview,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,246118,43.08479712399078,spot_peer,laylaps,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,246118,34.657359027997295,spot_baseline,laylaps,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,246118,0.5412609769088313,relative_legacy,laylaps,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,246118,27.74243214598673,peer,laylaps,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,246118,21.493392956798044,baseline,laylaps,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,250015,6.983381469826967,spot_peer,metac-deepseek-r1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,250015,3.3306690738754684e-14,spot_baseline,metac-deepseek-r1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,250015,7.778216796605552,peer,metac-deepseek-r1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,250015,-0.0036674519293516,baseline,metac-deepseek-r1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34899,What will be the electric vehicle sales share of light duty vehicles in the United States in February 2025?,2025-02-22 03:56:07.970932+00,250015,-0.0389363495724017,relative_legacy,metac-deepseek-r1,True,9.54,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35432 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,185699,0.0046791217850882,relative_legacy,MWG,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,185699,21.26960424155699,spot_peer,MWG,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,185699,1.268412920019098,peer,MWG,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,185699,2.563145732613377,baseline,MWG,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,185699,42.980558212306256,spot_baseline,MWG,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,189869,-0.861203962960517,relative_legacy,VeritasAI,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,189869,-61.37977667428319,spot_peer,VeritasAI,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,189869,-55.312823552040086,peer,VeritasAI,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,189869,-1.032199005121362,baseline,VeritasAI,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,189869,-1.141396173531574,spot_baseline,VeritasAI,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,190710,-0.2133545277050982,relative_legacy,Bot_Pepa,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,190710,18.807956974283584,baseline,Bot_Pepa,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,190710,25.097429890032583,spot_baseline,Bot_Pepa,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,190710,-12.22912683797244,spot_peer,Bot_Pepa,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,190710,-8.781283320339961,peer,Bot_Pepa,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,191026,44.38174634956737,spot_baseline,manticAI,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,191026,23.894314177987717,spot_peer,manticAI,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,191026,0.1737051329213772,relative_legacy,manticAI,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,191026,20.07415143687428,peer,manticAI,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,191026,36.20703321038565,baseline,manticAI,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,191935,0.0961486912532197,relative_legacy,pgodzinai,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,191935,20.541061540329046,spot_peer,pgodzinai,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,191935,11.69412497875402,peer,pgodzinai,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,191935,42.59162937248291,spot_baseline,pgodzinai,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,191935,23.176226782808573,baseline,pgodzinai,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,191975,14.35545019019282,spot_baseline,jkraybill_bot,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,191975,-32.3510363127542,spot_peer,jkraybill_bot,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,191975,-11.37843976644509,peer,jkraybill_bot,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,191975,-0.2102931603708926,relative_legacy,jkraybill_bot,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,191975,5.233849880540675,baseline,jkraybill_bot,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,192418,32.804998382698976,spot_baseline,InstitutPelFutur,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,192418,2.2087142130981308,spot_peer,InstitutPelFutur,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,192418,-0.0619349796350644,relative_legacy,InstitutPelFutur,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,192418,31.16079177019325,baseline,InstitutPelFutur,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,192418,4.694168613221627,peer,InstitutPelFutur,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,192924,18.324467104129653,spot_peer,acm_bot,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,192924,41.40831163286813,spot_baseline,acm_bot,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,192924,36.30562874420431,baseline,acm_bot,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,192924,17.134737333436338,peer,acm_bot,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,192924,0.119410353066555,relative_legacy,acm_bot,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,218666,3.924327507291169,baseline,GreeneiBot2,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,218666,1.3845670757136954,peer,GreeneiBot2,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,218666,0.0001566818956879,relative_legacy,GreeneiBot2,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,218666,38.12436079942934,spot_baseline,GreeneiBot2,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,218666,12.17296028355027,spot_peer,GreeneiBot2,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,220077,22.178169512132563,baseline,mmBot,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,220077,-16.852175815360777,spot_peer,mmBot,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,220077,-0.3117859399358592,relative_legacy,mmBot,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,220077,22.62943855309168,spot_baseline,mmBot,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,220077,-14.705140608377206,peer,mmBot,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236037,-0.0339700608142209,relative_legacy,metac-o1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236037,34.63503323872334,spot_baseline,metac-o1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236037,5.636741144592586,spot_peer,metac-o1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236037,29.387606807781616,baseline,metac-o1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236037,5.315430683838493,peer,metac-o1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236038,21.437907541070768,peer,metac-gpt-4o,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236038,44.50972407740524,spot_baseline,metac-gpt-4o,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236038,24.13404245213261,spot_peer,metac-gpt-4o,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236038,0.1842406269036417,relative_legacy,metac-gpt-4o,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236038,38.114606970609074,baseline,metac-gpt-4o,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236040,41.40831163286813,spot_baseline,metac-claude-3-5-sonnet-latest,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236040,18.324467104129653,spot_peer,metac-claude-3-5-sonnet-latest,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236040,0.1177926177038883,relative_legacy,metac-claude-3-5-sonnet-latest,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236040,16.70097607698734,peer,metac-claude-3-5-sonnet-latest,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236040,35.87559301882616,baseline,metac-claude-3-5-sonnet-latest,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236041,-0.0338470677162156,relative_legacy,metac-claude-3-5-sonnet-20240620,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236041,5.636741144592586,spot_peer,metac-claude-3-5-sonnet-20240620,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236041,5.545787464755468,peer,metac-claude-3-5-sonnet-20240620,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236041,34.63503323872334,spot_baseline,metac-claude-3-5-sonnet-20240620,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236041,29.970400194861565,baseline,metac-claude-3-5-sonnet-20240620,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236043,-10.787282169255173,peer,metac-grok-2-1212,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236043,21.384229872536995,baseline,metac-grok-2-1212,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236043,-0.2565115567661911,relative_legacy,metac-grok-2-1212,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236043,-12.99097187876671,spot_peer,metac-grok-2-1212,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236043,24.69072276450396,spot_baseline,metac-grok-2-1212,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236045,23.111498841850583,baseline,metac-Gemini-Exp-1206,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236045,30.91291675802157,spot_baseline,metac-Gemini-Exp-1206,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236045,-1.3355389166322014,spot_peer,metac-Gemini-Exp-1206,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236045,-0.1004784754448998,relative_legacy,metac-Gemini-Exp-1206,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236045,-0.5481254519170583,peer,metac-Gemini-Exp-1206,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236047,-25.002614173926816,spot_peer,metac-Llama-3.1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236047,-0.3983686487313411,relative_legacy,metac-Llama-3.1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236047,-21.26559907883168,peer,metac-Llama-3.1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236047,15.743063871676672,baseline,metac-Llama-3.1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,236047,18.278368218427964,spot_baseline,metac-Llama-3.1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,237476,19.408326030196942,baseline,NextWorldLab,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,237476,0.6800181497329644,peer,NextWorldLab,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,237476,-0.065199830025978,relative_legacy,NextWorldLab,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,237476,0.132166625762695,spot_peer,NextWorldLab,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,237476,31.69644394571255,spot_baseline,NextWorldLab,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,239758,29.169233346578803,baseline,metac-perplexity,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,239758,5.248569350950445,peer,metac-perplexity,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,239758,-0.0335829264650696,relative_legacy,metac-perplexity,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,239758,5.636741144592607,spot_peer,metac-perplexity,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,239758,34.63503323872334,spot_baseline,metac-perplexity,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,240414,10.852878580001876,peer,minefrac1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,240414,0.081193648992338,relative_legacy,minefrac1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,240414,18.324467104129653,spot_peer,minefrac1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,240414,41.40831163286813,spot_baseline,minefrac1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,240414,23.31276836107062,baseline,minefrac1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,240416,7.068767298805892,peer,metac-o1-preview,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,240416,30.156138914023064,baseline,metac-o1-preview,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,240416,7.761105041374559,spot_peer,metac-o1-preview,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,240416,-0.0089030532892329,relative_legacy,metac-o1-preview,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,240416,35.76911417089848,spot_baseline,metac-o1-preview,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,246118,0.0,spot_baseline,laylaps,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,246118,-0.5742008561008081,relative_legacy,laylaps,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,246118,-36.28616320008249,peer,laylaps,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,246118,0.0,baseline,laylaps,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,246118,-59.24170984485068,spot_peer,laylaps,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,250015,51.58387146247544,spot_baseline,metac-deepseek-r1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,250015,40.46433978508061,baseline,metac-deepseek-r1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,250015,29.964359643126656,peer,metac-deepseek-r1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,250015,0.3127598863993385,relative_legacy,metac-deepseek-r1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34900,How many artists in the top 10 of the Billboard Artist 100 in the last week of March will be new to the top 10 that week?,2025-02-22 03:56:08.006139+00,250015,37.38535713258857,spot_peer,metac-deepseek-r1,True,1,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35433 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,187708,12.78772407462249,baseline,twsummerbot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,187708,35.12538118010588,spot_baseline,twsummerbot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,187708,0.443298441547506,spot_peer,twsummerbot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,187708,-0.0724406107287225,relative_legacy,twsummerbot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,187708,-0.0628627113722865,peer,twsummerbot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,189869,34.657359027997266,spot_baseline,VeritasAI,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,189869,-0.0442246335656383,spot_peer,VeritasAI,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,189869,-0.3056929422460512,relative_legacy,VeritasAI,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,189869,-0.6476408099210244,peer,VeritasAI,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,189869,30.917062878230062,baseline,VeritasAI,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,190710,0.0,spot_baseline,Bot_Pepa,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,190710,-36.14564028772946,spot_peer,Bot_Pepa,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,190710,-0.4080795908597001,relative_legacy,Bot_Pepa,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,190710,0.0,baseline,Bot_Pepa,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,190710,-12.47316877426172,peer,Bot_Pepa,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,191026,-3.2085873121047026,relative_legacy,manticAI,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,191026,-72.53378636863172,baseline,manticAI,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,191026,-107.95389824799187,peer,manticAI,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,191026,-127.95147773848964,spot_peer,manticAI,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,191026,-88.13360395272977,spot_baseline,manticAI,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,191935,11.577835330716118,spot_peer,pgodzinai,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,191935,-0.0045297274693255,relative_legacy,pgodzinai,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,191935,6.730182541999532,peer,pgodzinai,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,191935,31.38672041630081,baseline,pgodzinai,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,191935,45.81453659370775,spot_baseline,pgodzinai,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,191975,22.00989726407032,spot_baseline,jkraybill_bot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,191975,-13.21866397098954,spot_peer,jkraybill_bot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,191975,-0.1544251017581928,relative_legacy,jkraybill_bot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,191975,6.347236225813982,baseline,jkraybill_bot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,191975,-3.8334901155420646,peer,jkraybill_bot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,192418,-32.55033680271222,peer,InstitutPelFutur,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,192418,0.0,baseline,InstitutPelFutur,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,192418,-36.14564028772946,spot_peer,InstitutPelFutur,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,192418,-1.182873844113391,relative_legacy,InstitutPelFutur,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,192418,0.0,spot_baseline,InstitutPelFutur,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,192924,25.81186319981184,spot_peer,acm_bot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,192924,21.18799708935464,peer,acm_bot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,192924,0.3053095225743154,relative_legacy,acm_bot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,192924,51.74194960031681,baseline,acm_bot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,192924,59.47920334803965,spot_baseline,acm_bot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,218666,-36.14564028772946,spot_peer,GreeneiBot2,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,218666,0.0,baseline,GreeneiBot2,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,218666,-9.916849081204898,peer,GreeneiBot2,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,218666,-0.3197837424815828,relative_legacy,GreeneiBot2,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,218666,0.0,spot_baseline,GreeneiBot2,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,220077,-1.8083873585473975,relative_legacy,mmBot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,220077,-60.09865961327858,spot_peer,mmBot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,220077,-22.99489855252716,spot_baseline,mmBot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,220077,-56.82158831546455,peer,mmBot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,220077,-22.390468152351385,baseline,mmBot,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,227188,23.045970461796337,peer,ProfessorSP,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,227188,77.02225204021458,spot_baseline,ProfessorSP,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,227188,44.08587225416073,spot_peer,ProfessorSP,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,227188,0.4954394007121259,relative_legacy,ProfessorSP,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,227188,41.75073617729551,baseline,ProfessorSP,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236037,28.98935616364981,peer,metac-o1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236037,58.21838062641076,baseline,metac-o1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236037,36.05719102059818,spot_peer,metac-o1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236037,69.31471805599453,spot_baseline,metac-o1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236037,0.5364887100707147,relative_legacy,metac-o1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236038,-0.3107283700912989,relative_legacy,metac-gpt-4o,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236038,-1.7754876904805932,peer,metac-gpt-4o,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236038,29.5776206444667,baseline,metac-gpt-4o,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236038,34.657359027997266,spot_baseline,metac-gpt-4o,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236038,-0.0442246335656383,spot_peer,metac-gpt-4o,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236040,1.022078465745494,relative_legacy,metac-claude-3-5-sonnet-latest,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236040,76.3193700564236,baseline,metac-claude-3-5-sonnet-latest,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236040,47.20139958950991,peer,metac-claude-3-5-sonnet-latest,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236040,88.46433066311799,spot_baseline,metac-claude-3-5-sonnet-latest,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236040,56.00470415301846,spot_peer,metac-claude-3-5-sonnet-latest,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236041,0.0881101053865303,relative_legacy,metac-claude-3-5-sonnet-20240620,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236041,50.92847906361755,spot_baseline,metac-claude-3-5-sonnet-20240620,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236041,16.904858736872157,spot_peer,metac-claude-3-5-sonnet-20240620,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236041,12.979322642710772,peer,metac-claude-3-5-sonnet-20240620,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236041,43.88527157996008,baseline,metac-claude-3-5-sonnet-20240620,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236043,60.1986402262968,spot_baseline,metac-grok-2-1212,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236043,0.3185101643233881,relative_legacy,metac-grok-2-1212,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236043,21.434325223588456,peer,metac-grok-2-1212,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236043,51.91771413012282,baseline,metac-grok-2-1212,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236043,26.561276614663043,spot_peer,metac-grok-2-1212,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236045,34.86503433988075,baseline,metac-Gemini-Exp-1206,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236045,10.388182650535851,peer,metac-Gemini-Exp-1206,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236045,0.0962626684832816,relative_legacy,metac-Gemini-Exp-1206,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236045,16.904858736872157,spot_peer,metac-Gemini-Exp-1206,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236045,50.92847906361755,spot_baseline,metac-Gemini-Exp-1206,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236047,52.79811531044752,baseline,metac-Llama-3.1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236047,22.57194257909612,peer,metac-Llama-3.1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236047,0.3530878464056425,relative_legacy,metac-Llama-3.1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236047,28.02850977091459,spot_peer,metac-Llama-3.1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,236047,61.60718405629828,spot_baseline,metac-Llama-3.1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,237476,0.0,baseline,NextWorldLab,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,237476,-24.788991222240444,peer,NextWorldLab,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,237476,-0.8595693960600633,relative_legacy,NextWorldLab,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,237476,-36.14564028772946,spot_peer,NextWorldLab,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,237476,0.0,spot_baseline,NextWorldLab,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,239758,34.657359027997266,spot_baseline,metac-perplexity,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,239758,-0.0442246335656383,spot_peer,metac-perplexity,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,239758,28.95531953552605,baseline,metac-perplexity,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,239758,-1.6393925049407918,peer,metac-perplexity,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,239758,-0.3002691642050167,relative_legacy,metac-perplexity,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,239759,34.657359027997266,spot_baseline,metac-exa,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,239759,-0.0442246335656383,spot_peer,metac-exa,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,239759,-1.6581601615940178,peer,metac-exa,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,239759,29.01251968647403,baseline,metac-exa,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,239759,-0.3013393657946451,relative_legacy,metac-exa,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,240414,0.0,baseline,minefrac1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,240414,-0.7333585520159935,relative_legacy,minefrac1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,240414,-21.279098580340893,peer,minefrac1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,240414,-36.14564028772946,spot_peer,minefrac1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,240414,0.0,spot_baseline,minefrac1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,240416,89.58797346140274,spot_baseline,metac-o1-preview,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,240416,46.42167563312977,peer,metac-o1-preview,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,240416,74.34382771711911,baseline,metac-o1-preview,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,240416,57.17516540123173,spot_peer,metac-o1-preview,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,240416,1.017453725243859,relative_legacy,metac-o1-preview,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,246118,36.05719102059818,spot_peer,laylaps,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,246118,69.31471805599453,spot_baseline,laylaps,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,246118,0.421002261773133,relative_legacy,laylaps,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,246118,21.35762260722868,peer,laylaps,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,246118,42.99133317103328,baseline,laylaps,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,250015,0.2276612222723259,relative_legacy,metac-deepseek-r1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,250015,60.1986402262968,spot_baseline,metac-deepseek-r1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,250015,31.563091949677105,baseline,metac-deepseek-r1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,250015,13.092987835467538,peer,metac-deepseek-r1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34901,"What will the total market cap of the Magnificent Seven be on March 28, 2025?",2025-02-22 03:56:08.041484+00,250015,26.561276614663043,spot_peer,metac-deepseek-r1,True,15.00371,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35434 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,187708,0.0,baseline,twsummerbot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,187708,-11.724388756913834,peer,twsummerbot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,187708,-0.4531856681723876,relative_legacy,twsummerbot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,187708,-23.79810402941556,spot_peer,twsummerbot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,187708,0.0,spot_baseline,twsummerbot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,189869,0.0,baseline,VeritasAI,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,189869,-22.076238695342536,peer,VeritasAI,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,189869,-0.9347004284596104,relative_legacy,VeritasAI,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,189869,0.0,spot_baseline,VeritasAI,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,189869,-23.79810402941556,spot_peer,VeritasAI,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,190710,0.0,baseline,Bot_Pepa,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,190710,-8.175416406821459,peer,Bot_Pepa,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,190710,-0.3042436527433111,relative_legacy,Bot_Pepa,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,190710,-23.79810402941556,spot_peer,Bot_Pepa,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,190710,0.0,spot_baseline,Bot_Pepa,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,191026,-76.20411506229883,baseline,manticAI,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,191026,-92.56106238295013,spot_baseline,manticAI,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,191026,-120.21587734498864,spot_peer,manticAI,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,191026,-3.096246155111952,relative_legacy,manticAI,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,191026,-101.8972621826194,peer,manticAI,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,191935,-13.314595302587342,baseline,pgodzinai,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,191935,-25.541281188299536,spot_baseline,pgodzinai,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,191935,-50.403605267227576,spot_peer,pgodzinai,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,191935,-0.9026263270764958,relative_legacy,pgodzinai,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,191935,-27.12089506597897,peer,pgodzinai,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,191975,4.582711611875595,spot_baseline,jkraybill_bot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,191975,1.4090948217157429,baseline,jkraybill_bot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,191975,-5.941620667527054,peer,jkraybill_bot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,191975,-0.2329161099211605,relative_legacy,jkraybill_bot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,191975,-19.02444610037849,spot_peer,jkraybill_bot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,192418,0.0,spot_baseline,InstitutPelFutur,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,192418,0.0,baseline,InstitutPelFutur,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,192418,-20.993056810900217,peer,InstitutPelFutur,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,192418,-0.9214813055884162,relative_legacy,InstitutPelFutur,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,192418,-23.79810402941556,spot_peer,InstitutPelFutur,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,192924,42.94523194811334,baseline,acm_bot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,192924,50.58004558392399,spot_baseline,acm_bot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,192924,28.8894434538386,spot_peer,acm_bot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,192924,0.3090193308315829,relative_legacy,acm_bot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,192924,22.75768277368192,peer,acm_bot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,218666,0.0,spot_baseline,GreeneiBot2,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,218666,-23.79810402941556,spot_peer,GreeneiBot2,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,218666,-0.1885097665266928,relative_legacy,GreeneiBot2,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,218666,-5.184966573932053,peer,GreeneiBot2,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,218666,0.0,baseline,GreeneiBot2,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,220077,-1.76893909575507,relative_legacy,mmBot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,220077,-30.30645862192182,baseline,mmBot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,220077,-53.62040968527696,peer,mmBot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,220077,-31.31585460348002,spot_baseline,mmBot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,220077,-56.41878590804059,spot_peer,mmBot,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,227188,0.5357171546869802,relative_legacy,ProfessorSP,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,227188,37.4578280732517,baseline,ProfessorSP,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,227188,25.32806914419257,peer,ProfessorSP,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,227188,48.40472727891208,spot_peer,ProfessorSP,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,227188,69.31471805599453,spot_baseline,ProfessorSP,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236037,8.390456546060543,peer,metac-o1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236037,34.657359027997266,spot_baseline,metac-o1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236037,12.30331162474826,spot_peer,metac-o1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236037,-0.0772085311884158,relative_legacy,metac-o1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236037,28.92435824096966,baseline,metac-o1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236038,29.50433748484671,baseline,metac-gpt-4o,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236038,12.30331162474826,spot_peer,metac-gpt-4o,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236038,34.657359027997266,spot_baseline,metac-gpt-4o,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236038,-0.0811307922287803,relative_legacy,metac-gpt-4o,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236038,8.540611374409442,peer,metac-gpt-4o,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236040,0.6129111456809082,relative_legacy,metac-claude-3-5-sonnet-latest,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236040,34.10531547675468,peer,metac-claude-3-5-sonnet-latest,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236040,53.84942842669891,baseline,metac-claude-3-5-sonnet-latest,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236040,62.63814842476839,spot_baseline,metac-claude-3-5-sonnet-latest,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236040,41.44996724638485,spot_peer,metac-claude-3-5-sonnet-latest,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236041,29.832410196741165,baseline,metac-claude-3-5-sonnet-20240620,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236041,8.763281438539138,peer,metac-claude-3-5-sonnet-20240620,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236041,34.657359027997266,spot_baseline,metac-claude-3-5-sonnet-20240620,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236041,12.30331162474826,spot_peer,metac-claude-3-5-sonnet-20240620,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236041,-0.080444032653058,relative_legacy,metac-claude-3-5-sonnet-20240620,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236043,8.712864261373579,peer,metac-grok-2-1212,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236043,29.7934333260839,baseline,metac-grok-2-1212,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236043,34.657359027997266,spot_baseline,metac-grok-2-1212,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236043,12.30331162474826,spot_peer,metac-grok-2-1212,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236043,-0.0810489415147922,relative_legacy,metac-grok-2-1212,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236045,0.5186155334206004,relative_legacy,metac-Gemini-Exp-1206,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236045,62.63814842476839,spot_baseline,metac-Gemini-Exp-1206,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236045,41.44996724638485,spot_peer,metac-Gemini-Exp-1206,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236045,27.990704352645192,peer,metac-Gemini-Exp-1206,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236045,44.710242225253445,baseline,metac-Gemini-Exp-1206,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236047,8.590368904728663,peer,metac-Llama-3.1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236047,12.30331162474826,spot_peer,metac-Llama-3.1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236047,34.657359027997266,spot_baseline,metac-Llama-3.1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236047,29.597752903030266,baseline,metac-Llama-3.1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,236047,-0.0810844557591836,relative_legacy,metac-Llama-3.1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,237476,0.0,spot_baseline,NextWorldLab,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,237476,0.0,baseline,NextWorldLab,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,237476,-17.972251579023443,peer,NextWorldLab,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,237476,-0.7297801466994731,relative_legacy,NextWorldLab,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,237476,-23.79810402941556,spot_peer,NextWorldLab,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,239758,8.359199467008827,peer,metac-perplexity,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,239758,-0.0756188133629924,relative_legacy,metac-perplexity,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,239758,12.30331162474826,spot_peer,metac-perplexity,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,239758,34.657359027997266,spot_baseline,metac-perplexity,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,239758,28.732252159390548,baseline,metac-perplexity,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,239759,58.53115380739669,baseline,metac-exa,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,239759,69.31471805599453,spot_baseline,metac-exa,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,239759,48.40472727891208,spot_peer,metac-exa,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,239759,0.7638870730721184,relative_legacy,metac-exa,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,239759,39.29099092279735,peer,metac-exa,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,240414,0.0,spot_baseline,minefrac1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,240414,0.0,baseline,minefrac1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,240414,-14.128448354058634,peer,minefrac1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,240414,-0.5591014596748967,relative_legacy,minefrac1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,240414,-23.79810402941556,spot_peer,minefrac1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,240416,30.27166966583814,peer,metac-o1-preview,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,240416,60.1986402262968,spot_baseline,metac-o1-preview,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,240416,49.29647243658202,baseline,metac-o1-preview,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,240416,38.90881287297693,spot_peer,metac-o1-preview,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,240416,0.5292048618185129,relative_legacy,metac-o1-preview,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,246118,0.7481074806695067,relative_legacy,laylaps,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,246118,48.65649119015811,baseline,laylaps,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,246118,34.67310449458358,peer,laylaps,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,246118,78.43079589569226,spot_baseline,laylaps,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,246118,57.90064169526387,spot_peer,laylaps,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,250015,23.06063595578122,peer,metac-deepseek-r1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,250015,54.93061443340548,spot_baseline,metac-deepseek-r1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,250015,33.42128600538181,spot_peer,metac-deepseek-r1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,250015,0.3696673118221545,relative_legacy,metac-deepseek-r1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34902,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 03:56:08.075985+00,250015,40.66629470210047,baseline,metac-deepseek-r1,True,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35435 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,185690,-20.580830734488824,spot_peer,annabot,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,185690,5.1673703047087525,baseline,annabot,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,185690,5.850885587981629,spot_baseline,annabot,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,185690,-16.42483043189298,peer,annabot,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,185690,-0.5890920338183487,relative_legacy,annabot,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,189869,0.2972349762896493,peer,VeritasAI,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,189869,23.50018146228682,spot_baseline,VeritasAI,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,189869,21.29935816156757,baseline,VeritasAI,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,189869,-0.1364662063156865,relative_legacy,VeritasAI,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,189869,-2.164174169996451,spot_peer,VeritasAI,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,190710,9.116077839697777,spot_baseline,Bot_Pepa,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,190710,-0.4378391792664025,relative_legacy,Bot_Pepa,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,190710,-17.17367360226328,spot_peer,Bot_Pepa,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,190710,-11.545438823128476,peer,Bot_Pepa,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,190710,6.7984834256523206,baseline,Bot_Pepa,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,191026,36.418603744900906,spot_baseline,manticAI,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,191026,29.99019567479733,baseline,manticAI,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,191026,10.866776210310068,peer,manticAI,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,191026,0.159423953785872,relative_legacy,manticAI,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,191026,11.31591864664433,spot_peer,manticAI,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,191935,0.0843386875599837,relative_legacy,pgodzinai,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,191935,21.30842877874036,baseline,pgodzinai,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,191935,6.879641758597738,peer,pgodzinai,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,191935,9.8107169519418,spot_peer,pgodzinai,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,191935,34.97611878747764,spot_baseline,pgodzinai,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,192418,-23.369361484111405,peer,InstitutPelFutur,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,192418,-26.686102652382647,spot_peer,InstitutPelFutur,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,192418,4.137069585658075e-14,baseline,InstitutPelFutur,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,192418,4.440892098500624e-14,spot_baseline,InstitutPelFutur,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,192418,-0.764614378066887,relative_legacy,InstitutPelFutur,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,192924,56.029559986735855,spot_baseline,acm_bot,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,192924,0.6608815897557795,relative_legacy,acm_bot,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,192924,31.779525159863407,spot_peer,acm_bot,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,192924,48.13554365466869,baseline,acm_bot,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,192924,29.3258588526193,peer,acm_bot,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,218666,9.169162545446676,baseline,GreeneiBot2,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,218666,60.19864031629696,spot_baseline,GreeneiBot2,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,218666,5.441525933844506,peer,GreeneiBot2,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,218666,0.1131489715259761,relative_legacy,GreeneiBot2,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,218666,36.12986985157935,spot_peer,GreeneiBot2,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,220077,9.568887548424255,peer,mmBot,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,220077,6.912252299762389,spot_peer,mmBot,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,220077,32.198423495805706,spot_baseline,mmBot,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,220077,30.959136388513222,baseline,mmBot,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,220077,0.1008750104683372,relative_legacy,mmBot,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,227188,-0.1336493231347135,relative_legacy,ProfessorSP,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,227188,-11.676603741854704,spot_peer,ProfessorSP,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,227188,3.799065192042704,baseline,ProfessorSP,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,227188,-2.9077618757277675,peer,ProfessorSP,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,227188,14.384103122589323,spot_baseline,ProfessorSP,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236037,36.0134046411345,baseline,metac-o1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236037,43.77343686769504,spot_baseline,metac-o1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236037,17.213915038305508,peer,metac-o1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236037,0.3336912356146418,relative_legacy,metac-o1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236037,18.99052712260343,spot_peer,metac-o1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236038,-0.4968898906880216,relative_legacy,metac-gpt-4o,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236038,-17.17367360226328,spot_peer,metac-gpt-4o,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236038,7.738022714858946,baseline,metac-gpt-4o,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236038,9.116077839697777,spot_baseline,metac-gpt-4o,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236038,-13.012894900854317,peer,metac-gpt-4o,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236040,14.384103122589323,spot_baseline,metac-claude-3-5-sonnet-latest,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236040,-0.370118915187367,relative_legacy,metac-claude-3-5-sonnet-latest,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236040,-11.676603741854704,spot_peer,metac-claude-3-5-sonnet-latest,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236040,-8.357586154858835,peer,metac-claude-3-5-sonnet-latest,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236040,12.32304163078207,baseline,metac-claude-3-5-sonnet-latest,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236041,8.278645093318769,spot_peer,metac-claude-3-5-sonnet-20240620,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236041,8.91296977868353,peer,metac-claude-3-5-sonnet-20240620,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236041,28.75345708402573,baseline,metac-claude-3-5-sonnet-20240620,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236041,33.50788325629724,spot_baseline,metac-claude-3-5-sonnet-20240620,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236041,0.1024370692453091,relative_legacy,metac-claude-3-5-sonnet-20240620,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236043,-9.563395648926218,baseline,metac-grok-2-1212,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236043,-11.157177565710445,spot_baseline,metac-grok-2-1212,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236043,-38.32837489486316,spot_peer,metac-grok-2-1212,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236043,-1.001717917951605,relative_legacy,metac-grok-2-1212,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236043,-31.422974023186818,peer,metac-grok-2-1212,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236045,6.10671290432814,baseline,metac-Gemini-Exp-1206,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236045,-10.458381620912402,peer,metac-Gemini-Exp-1206,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236045,-0.3985329560736727,relative_legacy,metac-Gemini-Exp-1206,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236045,-17.17367360226328,spot_peer,metac-Gemini-Exp-1206,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236045,9.116077839697777,spot_baseline,metac-Gemini-Exp-1206,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236047,-9.47201343347754,baseline,metac-Llama-3.1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236047,-31.143436635976837,peer,metac-Llama-3.1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236047,-11.157177565710445,spot_baseline,metac-Llama-3.1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236047,-38.32837489486316,spot_peer,metac-Llama-3.1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,236047,-0.9937448738547016,relative_legacy,metac-Llama-3.1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,237476,10.84034354303017,baseline,NextWorldLab,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,237476,14.384103122589323,spot_baseline,NextWorldLab,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,237476,-11.676603741854704,spot_peer,NextWorldLab,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,237476,-0.3281273687558643,relative_legacy,NextWorldLab,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,237476,-7.500446835081521,peer,NextWorldLab,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,239758,35.96634954663046,baseline,metac-perplexity,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,239758,43.77343686769504,spot_baseline,metac-perplexity,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,239758,18.99052712260343,spot_peer,metac-perplexity,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,239758,0.3331587078314283,relative_legacy,metac-perplexity,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,239758,17.18714835384233,peer,metac-perplexity,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,239759,0.3532233022709116,relative_legacy,metac-exa,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,239759,18.033517273773302,peer,metac-exa,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,239759,37.2919956824267,baseline,metac-exa,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,239759,43.77343686769504,spot_baseline,metac-exa,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,239759,18.99052712260343,spot_peer,metac-exa,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,240414,12.338811602041886,baseline,minefrac1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,240414,43.77343686769504,spot_baseline,minefrac1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,240414,18.99052712260343,spot_peer,minefrac1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,240414,0.0969152891754459,relative_legacy,minefrac1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,240414,5.556747178411349,peer,minefrac1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,240416,0.3282876724815109,relative_legacy,metac-o1-preview,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,240416,43.77343686769504,spot_baseline,metac-o1-preview,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,240416,18.99052712260343,spot_peer,metac-o1-preview,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,240416,35.40343241479136,baseline,metac-o1-preview,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,240416,16.89895313594472,peer,metac-o1-preview,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,246118,43.77343686769504,spot_baseline,laylaps,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,246118,0.2435049709159231,relative_legacy,laylaps,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,246118,12.7068988729524,peer,laylaps,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,246118,27.09551626603449,baseline,laylaps,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,246118,18.99052712260343,spot_peer,laylaps,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,250015,20.27325540540789,spot_baseline,metac-deepseek-r1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,250015,14.647907789461586,baseline,metac-deepseek-r1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,250015,-2.7469621262678268,peer,metac-deepseek-r1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,250015,-0.1925164789782254,relative_legacy,metac-deepseek-r1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34903,"For the 14-day period ending March 30, 2025, what will be the average allergy index for Atlanta, Georgia?",2025-02-22 03:56:08.421581+00,250015,-5.531401359783157,spot_peer,metac-deepseek-r1,True,9.714285714,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35436 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,185690,0.8926917428797573,baseline,annabot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,185690,0.9960220853276004,spot_baseline,annabot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,185690,-20.62980639961533,spot_peer,annabot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,185690,-0.8521460012156856,relative_legacy,annabot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,185690,-24.25357322209349,peer,annabot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,187708,-0.0587764742024939,relative_legacy,twsummerbot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,187708,0.0929621489306245,peer,twsummerbot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,187708,6.595306974300224,baseline,twsummerbot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,187708,-0.4938640372008404,spot_peer,twsummerbot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,187708,20.35750512611077,spot_baseline,twsummerbot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,189869,17.1894795268155,spot_peer,VeritasAI,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,189869,0.0873385351897954,relative_legacy,VeritasAI,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,189869,33.70966179841769,baseline,VeritasAI,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,189869,10.4197853205045,peer,VeritasAI,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,189869,37.3607200915111,spot_baseline,VeritasAI,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,190710,-0.7867848128161771,relative_legacy,Bot_Pepa,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,190710,-75.9820139677806,spot_peer,Bot_Pepa,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,190710,-26.05840245436428,peer,Bot_Pepa,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,190710,-18.07735589998404,baseline,Bot_Pepa,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,190710,-52.22725442252363,spot_baseline,Bot_Pepa,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,191026,-0.3094665344768966,relative_legacy,manticAI,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,191026,20.75462485994794,spot_baseline,manticAI,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,191026,17.095056764570085,baseline,manticAI,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,191026,-4.520685638048255,peer,manticAI,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,191026,-0.0808595140101795,spot_peer,manticAI,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,191935,32.54111528923811,baseline,pgodzinai,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,191935,48.5671037526682,spot_baseline,pgodzinai,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,191935,0.330964067843641,relative_legacy,pgodzinai,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,191935,28.844118534418893,spot_peer,pgodzinai,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,191935,16.98585138488304,peer,pgodzinai,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,191975,0.1864215346048576,relative_legacy,jkraybill_bot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,191975,45.47867394873166,spot_peer,jkraybill_bot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,191975,11.949203926224468,baseline,jkraybill_bot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,191975,64.56186857412277,spot_baseline,jkraybill_bot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,191975,8.417258690147053,peer,jkraybill_bot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,192418,0.6587441566872281,relative_legacy,InstitutPelFutur,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,192418,58.899866185607486,spot_baseline,InstitutPelFutur,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,192418,39.59019146467576,spot_peer,InstitutPelFutur,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,192418,32.07156745950088,peer,InstitutPelFutur,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,192418,54.51377163491325,baseline,InstitutPelFutur,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,192924,38.29494748481716,peer,acm_bot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,192924,50.101752226493495,spot_peer,acm_bot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,192924,69.00713614889378,spot_baseline,acm_bot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,192924,0.8597666188659321,relative_legacy,acm_bot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,192924,58.58490173625465,baseline,acm_bot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,218666,-14.333272741529976,baseline,GreeneiBot2,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,218666,-42.709569050594034,spot_baseline,GreeneiBot2,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,218666,-66.08362118097384,spot_peer,GreeneiBot2,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,218666,-0.6703391706996054,relative_legacy,GreeneiBot2,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,218666,-21.91991835624421,peer,GreeneiBot2,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,220077,18.75455558447748,baseline,mmBot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,220077,-7.559417896001316,peer,mmBot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,220077,19.635921028649456,spot_baseline,mmBot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,220077,-0.3898088537489698,relative_legacy,mmBot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,220077,-1.2443114985605968,spot_peer,mmBot,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,227188,-2.602795994757565,relative_legacy,ProfessorSP,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,227188,-74.87379836379634,baseline,ProfessorSP,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,227188,-90.2428515158374,peer,ProfessorSP,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,227188,-167.9849097622955,spot_peer,ProfessorSP,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,227188,-140.69157730186487,spot_baseline,ProfessorSP,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236037,19.226776179129857,peer,metac-o1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236037,48.517897657221646,spot_baseline,metac-o1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236037,28.79294419515447,spot_peer,metac-o1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236037,0.3461351908813231,relative_legacy,metac-o1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236037,39.40149975559604,baseline,metac-o1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236038,-56.21281183417832,baseline,metac-gpt-4o,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236038,-90.94148064053628,spot_peer,metac-gpt-4o,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236038,-66.61135699248099,spot_baseline,metac-gpt-4o,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236038,-2.445963796183332,relative_legacy,metac-gpt-4o,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236038,-82.15895435030652,peer,metac-gpt-4o,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236040,37.3607200915111,spot_baseline,metac-claude-3-5-sonnet-latest,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236040,31.8798767556624,baseline,metac-claude-3-5-sonnet-latest,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236040,0.0844668367578018,relative_legacy,metac-claude-3-5-sonnet-latest,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236040,10.066407887959008,peer,metac-claude-3-5-sonnet-latest,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236040,17.1894795268155,spot_peer,metac-claude-3-5-sonnet-latest,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236041,17.1894795268155,spot_peer,metac-claude-3-5-sonnet-20240620,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236041,37.3607200915111,spot_baseline,metac-claude-3-5-sonnet-20240620,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236041,31.98384786560456,baseline,metac-claude-3-5-sonnet-20240620,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236041,10.070591754508577,peer,metac-claude-3-5-sonnet-20240620,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236041,0.0840155286923322,relative_legacy,metac-claude-3-5-sonnet-20240620,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236043,2.703361063513832,spot_baseline,metac-grok-2-1212,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236043,-21.0424376384456,peer,metac-grok-2-1212,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236043,2.313814392474957,baseline,metac-grok-2-1212,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236043,-18.854173862301653,spot_peer,metac-grok-2-1212,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236043,-0.7689944503795008,relative_legacy,metac-grok-2-1212,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236045,25.157661010676847,baseline,metac-Gemini-Exp-1206,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236045,37.3607200915111,spot_baseline,metac-Gemini-Exp-1206,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236045,9.14828741656286,peer,metac-Gemini-Exp-1206,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236045,0.1136882027186266,relative_legacy,metac-Gemini-Exp-1206,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236045,17.1894795268155,spot_peer,metac-Gemini-Exp-1206,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236047,17.1894795268155,spot_peer,metac-Llama-3.1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236047,0.0858217457063943,relative_legacy,metac-Llama-3.1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236047,10.047173334282723,peer,metac-Llama-3.1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236047,31.52330480140813,baseline,metac-Llama-3.1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,236047,37.3607200915111,spot_baseline,metac-Llama-3.1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,237476,32.59521089076866,spot_baseline,NextWorldLab,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,237476,25.97096427421685,baseline,NextWorldLab,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,237476,5.643102147233141,peer,NextWorldLab,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,237476,-0.0227079692775468,relative_legacy,NextWorldLab,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,237476,12.233349958043371,spot_peer,NextWorldLab,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,239758,0.6853098440272115,relative_legacy,metac-perplexity,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,239758,51.301455997733285,baseline,metac-perplexity,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,239758,31.60069004863272,peer,metac-perplexity,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,239758,62.90200117454752,spot_baseline,metac-perplexity,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,239758,43.752411853173385,spot_peer,metac-perplexity,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,239759,72.01807911950836,spot_baseline,metac-exa,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,239759,53.23313291593266,spot_peer,metac-exa,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,239759,0.9446714872917849,relative_legacy,metac-exa,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,239759,41.572586765854055,peer,metac-exa,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,239759,62.13235808345297,baseline,metac-exa,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,240414,8.776452591719078,peer,minefrac1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,240414,37.3607200915111,spot_baseline,minefrac1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,240414,17.1894795268155,spot_peer,minefrac1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,240414,0.129059480183854,relative_legacy,minefrac1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,240414,21.1906560112837,baseline,minefrac1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,240416,53.72808965908866,baseline,metac-o1-preview,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,240416,34.67240470044605,peer,metac-o1-preview,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,240416,0.7752351649465063,relative_legacy,metac-o1-preview,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,240416,67.2525699187656,spot_baseline,metac-o1-preview,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,240416,48.2770033471602,spot_peer,metac-o1-preview,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,246118,-39.93835893655804,spot_peer,laylaps,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,246118,-26.554559961533123,peer,laylaps,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,246118,-10.898725419090136,baseline,laylaps,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,246118,-0.8580001776382866,relative_legacy,laylaps,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,246118,-17.56989381557885,spot_baseline,laylaps,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,250015,33.33836259976884,baseline,metac-deepseek-r1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,250015,17.20395571776207,peer,metac-deepseek-r1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,250015,0.33160467699187,relative_legacy,metac-deepseek-r1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,250015,28.79294419515447,spot_peer,metac-deepseek-r1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34904,"How many players will Monster Hunter Wilds have simultaneously online on March 21, 2025?",2025-02-22 03:56:08.458896+00,250015,48.517897657221646,spot_baseline,metac-deepseek-r1,True,162711.0,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,2025-02-24 16:00:00+00,35437 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,185699,14.35977860207451,spot_baseline,MWG,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,185699,10.355762173151929,baseline,MWG,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,185699,25.79072310241393,spot_peer,MWG,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,185699,-0.0600573183436738,relative_legacy,MWG,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,185699,20.4032244401912,peer,MWG,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,189869,19.25151412906269,spot_peer,VeritasAI,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,189869,-0.068650172949282,relative_legacy,VeritasAI,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,189869,9.535894629223842,baseline,VeritasAI,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,189869,21.2708121354608,peer,VeritasAI,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,189869,10.459261181726834,spot_baseline,VeritasAI,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,190710,-37.14570137418081,spot_baseline,Bot_Pepa,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,190710,-60.55810207664931,spot_peer,Bot_Pepa,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,190710,-0.9839928736068884,relative_legacy,Bot_Pepa,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,190710,-45.61455798318724,peer,Bot_Pepa,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,190710,-29.470318767335616,baseline,Bot_Pepa,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,191026,-32.48980626658896,baseline,manticAI,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,191026,-38.28579746154372,spot_baseline,manticAI,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,191026,-62.46947068791979,spot_peer,manticAI,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,191026,-1.0487563141471088,relative_legacy,manticAI,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,191026,-50.00576961922905,peer,manticAI,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,191935,18.527359534991227,baseline,pgodzinai,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,191935,31.73938055140146,spot_baseline,pgodzinai,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,191935,54.9275879776852,spot_peer,pgodzinai,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,191935,0.1279275226271208,relative_legacy,pgodzinai,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,191935,34.301594057923374,peer,pgodzinai,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,192418,0.012475601829377,relative_legacy,InstitutPelFutur,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,192418,24.960705430624675,spot_peer,InstitutPelFutur,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,192418,13.86468838532139,spot_baseline,InstitutPelFutur,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,192418,13.464777685737552,baseline,InstitutPelFutur,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,192418,27.89018609261618,peer,InstitutPelFutur,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,192924,-57.01717950618097,spot_baseline,acm_bot,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,192924,-93.87259195346827,spot_peer,acm_bot,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,192924,-1.4663838249696974,relative_legacy,acm_bot,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,192924,-80.42073112868464,peer,acm_bot,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,192924,-50.82784472724256,baseline,acm_bot,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,218666,31.141386683563084,peer,GreeneiBot2,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,218666,16.326293054657643,baseline,GreeneiBot2,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,218666,0.077747377800028,relative_legacy,GreeneiBot2,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,218666,36.76577681677086,spot_peer,GreeneiBot2,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,218666,20.90619551221676,spot_baseline,GreeneiBot2,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,220077,0.0,spot_baseline,mmBot,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,220077,1.7165855020611775,spot_peer,mmBot,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,220077,-0.3001668541698875,relative_legacy,mmBot,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,220077,3.6876855511925735,peer,mmBot,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,220077,0.0,baseline,mmBot,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,224797,23.08654180207135,spot_baseline,cookics_bot_TEST,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,224797,18.89015749295952,baseline,cookics_bot_TEST,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,224797,36.21857508632587,peer,cookics_bot_TEST,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,224797,0.1414580999514129,relative_legacy,cookics_bot_TEST,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,224797,40.421122630444806,spot_peer,cookics_bot_TEST,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,227188,43.06765580733931,spot_baseline,ProfessorSP,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,227188,21.807335167037213,peer,ProfessorSP,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,227188,12.705603555536287,baseline,ProfessorSP,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,227188,0.1254797406369554,relative_legacy,ProfessorSP,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,227188,73.91941681038881,spot_peer,ProfessorSP,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236037,-0.4945615688547345,relative_legacy,metac-o1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236037,-9.78315644936219,peer,metac-o1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236037,-8.837838625324837,baseline,metac-o1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236037,-15.212469653957063,spot_peer,metac-o1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236037,-10.097868842419825,spot_baseline,metac-o1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236038,-21.406846776847807,peer,metac-gpt-4o,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236038,-28.25029704499935,spot_peer,metac-gpt-4o,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236038,-0.6542045085469368,relative_legacy,metac-gpt-4o,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236038,-17.87469216608008,spot_baseline,metac-gpt-4o,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236038,-15.857345913290985,baseline,metac-gpt-4o,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236040,1.7165855020611775,spot_peer,metac-claude-3-5-sonnet-latest,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236040,5.341424200772031,peer,metac-claude-3-5-sonnet-latest,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236040,-0.0007704371839915,baseline,metac-claude-3-5-sonnet-latest,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236040,-0.286007331444403,relative_legacy,metac-claude-3-5-sonnet-latest,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236040,0.0,spot_baseline,metac-claude-3-5-sonnet-latest,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236041,1.7165855020611775,spot_peer,metac-claude-3-5-sonnet-20240620,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236041,0.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236041,-0.2860090389360463,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236041,5.336499105538673,peer,metac-claude-3-5-sonnet-20240620,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236041,0.0,baseline,metac-claude-3-5-sonnet-20240620,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236043,-21.40507702888152,peer,metac-grok-2-1212,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236043,-17.87469216608008,spot_baseline,metac-grok-2-1212,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236043,-15.855731123454715,baseline,metac-grok-2-1212,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236043,-28.25029704499935,spot_peer,metac-grok-2-1212,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236043,-0.6541664402128996,relative_legacy,metac-grok-2-1212,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236045,-13.0422480158031,peer,metac-Gemini-Exp-1206,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236045,-10.674589601637914,baseline,metac-Gemini-Exp-1206,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236045,-0.539566346003936,relative_legacy,metac-Gemini-Exp-1206,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236045,-18.955387281672,spot_peer,metac-Gemini-Exp-1206,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236045,-12.33045010252697,spot_baseline,metac-Gemini-Exp-1206,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236047,-32.798780651222664,baseline,metac-Llama-3.1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236047,-37.14570137418081,spot_baseline,metac-Llama-3.1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236047,-60.55810207664931,spot_peer,metac-Llama-3.1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236047,-1.047798281376659,relative_legacy,metac-Llama-3.1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,236047,-50.0205493493926,peer,metac-Llama-3.1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,237476,-2.314776935274614,baseline,NextWorldLab,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,237476,-3.023737144832149,spot_baseline,NextWorldLab,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,237476,-3.352703245988937,spot_peer,NextWorldLab,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,237476,-0.3556549056532619,relative_legacy,NextWorldLab,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,237476,-0.3641567393130384,peer,NextWorldLab,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,239758,-3.626465996642012,spot_peer,metac-perplexity,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,239758,-3.187031571163564,spot_baseline,metac-perplexity,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,239758,-0.3567157488444069,relative_legacy,metac-perplexity,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,239758,0.2111100887682606,peer,metac-perplexity,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,239758,-2.740751153795955,baseline,metac-perplexity,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,239759,-0.018681788821928,relative_legacy,metac-exa,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,239759,13.86468838532139,spot_baseline,metac-exa,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,239759,24.960705430624675,spot_peer,metac-exa,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,239759,11.859918771876517,baseline,metac-exa,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,239759,24.710669130381483,peer,metac-exa,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,240414,11.328275255937832,spot_baseline,minefrac1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,240414,7.340904908585268,baseline,minefrac1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,240414,14.74714794002366,peer,minefrac1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,240414,-0.1126820412190075,relative_legacy,minefrac1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,240414,20.708414334764772,spot_peer,minefrac1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,240416,5.921954433158494,spot_baseline,metac-o1-preview,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,240416,-0.1699668859434703,relative_legacy,metac-o1-preview,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,240416,11.644729231678328,spot_peer,metac-o1-preview,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,240416,5.16806965791729,baseline,metac-o1-preview,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,240416,13.75994358604994,peer,metac-o1-preview,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,246118,18.674358520082414,peer,laylaps,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,246118,9.512141172210832,baseline,laylaps,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,246118,24.960705430624675,spot_peer,laylaps,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,246118,-0.0736929653993021,relative_legacy,laylaps,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,246118,13.86468838532139,spot_baseline,laylaps,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,250015,12.561141304774049,peer,metac-deepseek-r1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,250015,5.921954433158508,spot_baseline,metac-deepseek-r1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,250015,11.644729231678348,spot_peer,metac-deepseek-r1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,250015,-0.184601857592952,relative_legacy,metac-deepseek-r1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34905,Which movie will win the 2025 Razzie for Worst Picture?,2025-02-22 03:56:08.489475+00,250015,4.899034658307114,baseline,metac-deepseek-r1,True,Madame Web,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35438 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,185699,-3.422280698881397,baseline,MWG,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,185699,-56.93234419266069,spot_baseline,MWG,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,185699,-169.3493555757955,spot_peer,MWG,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,185699,-0.1545148189493453,relative_legacy,MWG,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,185699,-10.17982026163891,peer,MWG,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,189869,-0.2509837929253398,relative_legacy,VeritasAI,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,189869,40.91146931297124,baseline,VeritasAI,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,189869,-6.208200708022342,peer,VeritasAI,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,189869,1.5594285377314938,spot_peer,VeritasAI,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,189869,44.83460407547873,spot_baseline,VeritasAI,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,190710,51.87803491866617,baseline,Bot_Pepa,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,190710,66.15419760941067,spot_baseline,Bot_Pepa,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,190710,37.36384117550015,spot_peer,Bot_Pepa,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,190710,0.1681937756103414,relative_legacy,Bot_Pepa,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,190710,22.82203697503816,peer,Bot_Pepa,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,191026,0.9137944800917912,spot_peer,manticAI,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,191026,37.72944544727606,baseline,manticAI,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,191026,-6.4409663717933725,peer,manticAI,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,191026,44.45016387198208,spot_baseline,manticAI,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,191026,-0.2445096597909115,relative_legacy,manticAI,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,191935,21.876536293593357,spot_peer,pgodzinai,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,191935,56.93234419266069,spot_baseline,pgodzinai,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,191935,40.222841216115405,baseline,pgodzinai,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,191935,8.859496021711532,peer,pgodzinai,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,191935,-0.0120273378201157,relative_legacy,pgodzinai,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,192418,33.6012755866892,baseline,InstitutPelFutur,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,192418,-15.341718726100469,spot_peer,InstitutPelFutur,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,192418,-23.306283516802736,peer,InstitutPelFutur,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,192418,-0.4745860415383815,relative_legacy,InstitutPelFutur,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,192418,34.77088389753815,spot_baseline,InstitutPelFutur,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,192924,12.238194831899332,baseline,acm_bot,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,192924,13.86468838532139,spot_baseline,acm_bot,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,192924,-50.45186515614006,spot_peer,acm_bot,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,192924,-0.883902100949111,relative_legacy,acm_bot,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,192924,-52.530248167299,peer,acm_bot,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,218666,20.25699317046048,peer,GreeneiBot2,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,218666,48.03499720245559,baseline,GreeneiBot2,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,218666,65.07358787743499,spot_baseline,GreeneiBot2,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,218666,35.549050631652925,spot_peer,GreeneiBot2,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,218666,0.1408482488817466,relative_legacy,GreeneiBot2,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,220077,3.8303750158197873,peer,mmBot,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,220077,-0.1242119413920251,relative_legacy,mmBot,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,220077,10.88239552929843,spot_peer,mmBot,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,220077,50.38592728251845,spot_baseline,mmBot,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,220077,49.82685775663934,baseline,mmBot,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,224797,53.127213303124165,baseline,cookics_bot_TEST,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,224797,33.32880035889276,spot_peer,cookics_bot_TEST,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,224797,63.75154878025072,spot_baseline,cookics_bot_TEST,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,224797,20.377472821209608,peer,cookics_bot_TEST,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,224797,0.125015406129592,relative_legacy,cookics_bot_TEST,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236037,21.876536293593357,spot_peer,metac-o1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236037,11.562561806533816,peer,metac-o1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236037,0.0012479595395337,relative_legacy,metac-o1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236037,48.828798809853375,baseline,metac-o1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236037,56.93234419266069,spot_baseline,metac-o1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236038,65.5935370257664,baseline,metac-gpt-4o,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236038,74.18257388175702,spot_baseline,metac-gpt-4o,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236038,50.84680446037032,spot_peer,metac-gpt-4o,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236038,0.3527373103694477,relative_legacy,metac-gpt-4o,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236038,37.61230087894175,peer,metac-gpt-4o,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236040,55.6770794097549,spot_baseline,metac-claude-3-5-sonnet-latest,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236040,19.76842770393915,spot_peer,metac-claude-3-5-sonnet-latest,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236040,-0.0270958630724419,relative_legacy,metac-claude-3-5-sonnet-latest,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236040,9.93539928151466,peer,metac-claude-3-5-sonnet-latest,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236040,49.27660431547752,baseline,metac-claude-3-5-sonnet-latest,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236041,20.6626722984696,peer,metac-claude-3-5-sonnet-20240620,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236041,0.1201770028867745,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236041,31.821946360131605,spot_peer,metac-claude-3-5-sonnet-20240620,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236041,55.58215378032666,baseline,metac-claude-3-5-sonnet-20240620,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236041,62.85429862581919,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236043,66.15419760941067,spot_baseline,metac-grok-2-1212,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236043,37.36384117550015,spot_peer,metac-grok-2-1212,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236043,25.582982829858143,peer,metac-grok-2-1212,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236043,0.1878600286419789,relative_legacy,metac-grok-2-1212,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236043,58.452447330729086,baseline,metac-grok-2-1212,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236045,56.86433008856993,baseline,metac-Gemini-Exp-1206,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236045,0.2352544282951703,relative_legacy,metac-Gemini-Exp-1206,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236045,42.62619111917579,spot_peer,metac-Gemini-Exp-1206,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236045,69.28764272321567,spot_baseline,metac-Gemini-Exp-1206,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236045,28.15366548471605,peer,metac-Gemini-Exp-1206,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236047,0.2295944423513562,relative_legacy,metac-Llama-3.1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236047,68.26061944859853,spot_baseline,metac-Llama-3.1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236047,28.517935281635665,peer,metac-Llama-3.1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236047,40.90139439383209,spot_peer,metac-Llama-3.1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,236047,59.85199017955256,baseline,metac-Llama-3.1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,237476,-19.03808727864476,peer,NextWorldLab,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,237476,27.777705506134662,baseline,NextWorldLab,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,237476,-0.410654224772534,relative_legacy,NextWorldLab,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,237476,-15.341718726100469,spot_peer,NextWorldLab,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,237476,34.77088389753815,spot_baseline,NextWorldLab,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,239758,-0.3678734432933078,relative_legacy,metac-perplexity,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,239758,38.223632880614325,spot_baseline,metac-perplexity,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,239758,-9.54312556212021,spot_peer,metac-perplexity,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,239758,32.50005239348147,baseline,metac-perplexity,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,239758,-15.387447996108316,peer,metac-perplexity,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,239759,-90.69490663217324,spot_peer,metac-exa,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,239759,-8.68788719908129,baseline,metac-exa,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,239759,-10.097868842419809,spot_baseline,metac-exa,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,239759,-85.78683103318954,peer,metac-exa,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,239759,-1.3379376491552828,relative_legacy,metac-exa,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,240414,-73.73640964110108,spot_peer,minefrac1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,240414,0.0,baseline,minefrac1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,240414,-52.40208491623512,peer,minefrac1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,240414,-0.8453990991662987,relative_legacy,minefrac1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,240414,0.0,spot_baseline,minefrac1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,240416,35.46001165191035,peer,metac-o1-preview,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,240416,49.253676933679365,spot_peer,metac-o1-preview,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,240416,0.3276070816070308,relative_legacy,metac-o1-preview,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,240416,63.37627611844552,baseline,metac-o1-preview,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,240416,73.23395250202961,spot_baseline,metac-o1-preview,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,246118,25.192963641259222,spot_baseline,laylaps,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,246118,-0.2306074451043321,relative_legacy,laylaps,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,246118,-31.427007055901324,spot_peer,laylaps,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,246118,8.046859435795735,baseline,laylaps,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,246118,-11.966331141544522,peer,laylaps,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,250015,19.95344162844896,spot_peer,metac-deepseek-r1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,250015,9.612397873459038,peer,metac-deepseek-r1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,250015,-0.0226573187946405,relative_legacy,metac-deepseek-r1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,250015,55.78724520715458,spot_baseline,metac-deepseek-r1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34906,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 03:56:08.520468+00,250015,46.57981417775897,baseline,metac-deepseek-r1,True,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,2025-02-24 23:00:00+00,35439 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,185699,33.34237337251918,spot_baseline,MWG,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,185699,-0.0802885170508737,relative_legacy,MWG,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,185699,8.343720164065921,spot_peer,MWG,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,185699,20.69234364692356,baseline,MWG,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,185699,5.666838299703489,peer,MWG,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,187708,1.8165000696996296,peer,twsummerbot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,187708,15.9473970221433,baseline,twsummerbot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,187708,24.36690809668629,spot_baseline,twsummerbot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,187708,1.900211769260177,spot_peer,twsummerbot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,187708,-0.144178153041135,relative_legacy,twsummerbot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,189869,19.39464060762909,peer,VeritasAI,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,189869,0.0160151983036221,relative_legacy,VeritasAI,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,189869,19.25605928576934,spot_peer,VeritasAI,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,189869,44.14710471678481,baseline,VeritasAI,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,190710,48.54268271702416,spot_baseline,Bot_Pepa,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,190710,0.01404490696245,relative_legacy,Bot_Pepa,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,190710,15.812248873675848,peer,Bot_Pepa,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,190710,37.94002823997457,baseline,Bot_Pepa,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,190710,19.25605928576934,spot_peer,Bot_Pepa,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,191026,13.787675780618782,spot_peer,manticAI,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,191026,40.92551466848375,spot_baseline,manticAI,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,191026,34.745289718002056,baseline,manticAI,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,191026,12.782690852108717,peer,manticAI,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,191026,-0.0501744983042702,relative_legacy,manticAI,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,191935,78.24085649273731,spot_baseline,pgodzinai,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,191935,48.37488250458038,baseline,pgodzinai,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,191935,23.63698807336699,peer,pgodzinai,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,191935,0.1297947445981392,relative_legacy,pgodzinai,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,191935,40.57645061405619,spot_peer,pgodzinai,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,191975,15.110442826403846,peer,jkraybill_bot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,191975,43.30999179025544,spot_peer,jkraybill_bot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,191975,0.116898718689635,relative_legacy,jkraybill_bot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,191975,82.0485342986379,spot_baseline,jkraybill_bot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,191975,28.62595062391008,baseline,jkraybill_bot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,192418,9.136755394063034,peer,InstitutPelFutur,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,192418,25.288677526446225,baseline,InstitutPelFutur,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,192418,-0.1603835193504454,relative_legacy,InstitutPelFutur,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,192418,3.2904531608033136,spot_peer,InstitutPelFutur,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,192418,26.303440583379377,spot_baseline,InstitutPelFutur,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,192924,43.29594072761063,spot_baseline,acm_bot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,192924,38.66096080645775,baseline,acm_bot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,192924,15.014390415522415,peer,acm_bot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,192924,-0.0345054713981658,relative_legacy,acm_bot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,192924,15.489410425214473,spot_peer,acm_bot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,204737,13.161864640536953,spot_peer,SynapseSeer,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,204737,-0.0542794121401519,relative_legacy,SynapseSeer,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,204737,11.426194087781187,peer,SynapseSeer,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,204737,40.05379295837285,spot_baseline,SynapseSeer,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,204737,32.33027881898529,baseline,SynapseSeer,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,218666,47.02229401205469,baseline,GreeneiBot2,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,218666,0.14763860737506,relative_legacy,GreeneiBot2,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,218666,33.08609637902349,spot_peer,GreeneiBot2,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,218666,67.80719051126377,spot_baseline,GreeneiBot2,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,218666,23.701636603026163,peer,GreeneiBot2,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,220077,-100.0,spot_baseline,mmBot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,220077,-84.06142365219031,peer,mmBot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,220077,-1.3746911949067746,relative_legacy,mmBot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,220077,-87.3830946365649,spot_peer,mmBot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,220077,-98.411562608348,baseline,mmBot,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,224797,56.55971758542251,spot_baseline,cookics_bot_TEST,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,224797,0.0767045113112679,relative_legacy,cookics_bot_TEST,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,224797,44.84042609652127,baseline,cookics_bot_TEST,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,224797,25.011508155374752,spot_peer,cookics_bot_TEST,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,224797,20.62426831320058,peer,cookics_bot_TEST,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,227188,-38.704147321828,spot_peer,ProfessorSP,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,227188,-22.99243957585295,peer,ProfessorSP,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,227188,-0.4755119562048163,relative_legacy,ProfessorSP,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,227188,-19.488954709255097,baseline,ProfessorSP,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,227188,-32.19280948873623,spot_baseline,ProfessorSP,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236037,76.55347463629771,spot_baseline,metac-o1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236037,65.12546771650504,baseline,metac-o1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236037,34.70573210404064,peer,metac-o1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236037,0.2526039087861521,relative_legacy,metac-o1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236037,39.36507506715423,spot_peer,metac-o1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236038,33.08609637902349,spot_peer,metac-gpt-4o,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236038,30.214282968930533,peer,metac-gpt-4o,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236038,59.71256872679583,baseline,metac-gpt-4o,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236038,0.1811802800903916,relative_legacy,metac-gpt-4o,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236040,51.61096903068671,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236040,24.34338292264282,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236040,0.0995854807831422,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236040,26.401749546917895,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236041,33.37089067725587,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236041,11.580590741276731,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236041,-0.082482305262009,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236041,11.141807627214227,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236043,30.22255140933107,peer,metac-grok-2-1212,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236043,33.08609637902349,spot_peer,metac-grok-2-1212,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236043,59.7160639498932,baseline,metac-grok-2-1212,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236043,0.1814149076536877,relative_legacy,metac-grok-2-1212,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236045,27.657643966356567,peer,metac-Gemini-Exp-1206,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236045,67.80719051126377,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236045,54.88217600157697,baseline,metac-Gemini-Exp-1206,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236045,33.08609637902349,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236045,0.1699330295005599,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236047,3.2904531608033136,spot_peer,metac-Llama-3.1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236047,3.7700775639230377,peer,metac-Llama-3.1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236047,22.92764893650114,baseline,metac-Llama-3.1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,236047,-0.1819192431223868,relative_legacy,metac-Llama-3.1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,237476,-5.72143945597976,spot_peer,NextWorldLab,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,237476,13.750352374993504,spot_baseline,NextWorldLab,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,237476,-3.877962046131299,peer,NextWorldLab,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,237476,11.474597284245943,baseline,NextWorldLab,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,237476,-0.2744031628793142,relative_legacy,NextWorldLab,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,239758,29.432556857951408,peer,metac-perplexity,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,239758,0.178401195850517,relative_legacy,metac-perplexity,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,239758,67.80719051126377,spot_baseline,metac-perplexity,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,239758,33.08609637902349,spot_peer,metac-perplexity,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,239758,57.82847065522351,baseline,metac-perplexity,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,239759,26.401749546917895,spot_peer,metac-exa,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,239759,24.014376787291816,peer,metac-exa,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,239759,50.86468644738859,baseline,metac-exa,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,239759,58.496250072115615,spot_baseline,metac-exa,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,239759,0.0984817906151108,relative_legacy,metac-exa,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,240414,43.55811407602325,baseline,minefrac1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,240414,0.137796624412023,relative_legacy,minefrac1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,240414,33.08609637902349,spot_peer,minefrac1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,240414,67.80719051126377,spot_baseline,minefrac1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,240414,21.80609417075474,peer,minefrac1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,240416,-332.1928094887361,spot_baseline,metac-o1-preview,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,240416,-254.07487842438235,spot_peer,metac-o1-preview,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,240416,-3.2360349505366104,relative_legacy,metac-o1-preview,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,240416,-283.5757720292828,baseline,metac-o1-preview,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,240416,-217.11773123425007,peer,metac-o1-preview,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,241715,-0.1273977125145337,relative_legacy,CatrachoCaster,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,241715,8.739251637155672,baseline,CatrachoCaster,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,241715,-0.7594554944418817,peer,CatrachoCaster,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,241715,-2.0220666150501287,spot_peer,CatrachoCaster,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,241715,18.903382439001717,spot_baseline,CatrachoCaster,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,246118,0.01404490696245,relative_legacy,laylaps,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,246118,19.25605928576934,spot_peer,laylaps,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,246118,13.907233045956456,peer,laylaps,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,246118,33.27077842018614,baseline,laylaps,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,250015,-96.53032183770767,peer,metac-deepseek-r1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,250015,-120.20695556897375,baseline,metac-deepseek-r1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,250015,-173.6965594166206,spot_baseline,metac-deepseek-r1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,250015,-140.29003424089964,spot_peer,metac-deepseek-r1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34907,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 03:56:08.550698+00,250015,-1.5239263093988198,relative_legacy,metac-deepseek-r1,True,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,0.7,2025-02-24 23:00:00+00,35440 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,187708,0.2879634644342476,spot_baseline,twsummerbot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,187708,0.1366591872634782,baseline,twsummerbot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,187708,-12.99804419681116,peer,twsummerbot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,187708,-0.2197371416382666,relative_legacy,twsummerbot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,187708,-28.46090612213842,spot_peer,twsummerbot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,189869,-11.133699954226431,peer,VeritasAI,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,189869,-14.688502880739543,spot_peer,VeritasAI,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,189869,9.790709396276927,spot_baseline,VeritasAI,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,189869,8.093429010664911,baseline,VeritasAI,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,189869,-0.2020738934525603,relative_legacy,VeritasAI,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,191026,28.11594186761786,baseline,manticAI,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,191026,34.97758162615447,spot_baseline,manticAI,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,191026,21.81502601790169,spot_peer,manticAI,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,191026,0.2032970278032464,relative_legacy,manticAI,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,191026,21.019701021674923,peer,manticAI,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,191935,-13.64578512092266,peer,pgodzinai,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,191935,6.977279236110555,baseline,pgodzinai,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,191935,8.174936614143965,spot_baseline,pgodzinai,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,191935,-17.03025488185792,spot_peer,pgodzinai,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,191935,-0.2334488790830797,relative_legacy,pgodzinai,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,191975,0.0469089941727295,relative_legacy,jkraybill_bot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,191975,33.32156597510125,spot_baseline,jkraybill_bot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,191975,7.900235865049684,baseline,jkraybill_bot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,191975,4.570247903003329,peer,jkraybill_bot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,191975,19.41494971533029,spot_peer,jkraybill_bot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,192418,-8.728546464309069,peer,InstitutPelFutur,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,192418,12.837505337874456,baseline,InstitutPelFutur,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,192418,13.151720291689688,spot_baseline,InstitutPelFutur,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,192418,-9.817363771858442,spot_peer,InstitutPelFutur,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,192418,-0.1626544316590573,relative_legacy,InstitutPelFutur,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,192924,-0.0419818721483548,relative_legacy,acm_bot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,192924,-0.3048987361164532,peer,acm_bot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,192924,7.82156127550754,baseline,acm_bot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,192924,-1.4492625150796483,spot_peer,acm_bot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,192924,18.92558116268648,spot_baseline,acm_bot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,220077,10.261165188548496,peer,mmBot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,220077,6.298389119173103,spot_peer,mmBot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,220077,24.27134135851208,spot_baseline,mmBot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,220077,0.0544246905158166,relative_legacy,mmBot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,220077,24.114556800238105,baseline,mmBot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,227188,9.760653069000751,baseline,ProfessorSP,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,227188,-0.0201087503946627,relative_legacy,ProfessorSP,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,227188,2.6009149907290183,spot_peer,ProfessorSP,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,227188,21.72014120728874,spot_baseline,ProfessorSP,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,227188,1.74526157653445,peer,ProfessorSP,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236037,3.267873900605841,spot_peer,metac-o1,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236037,7.339597232561582,baseline,metac-o1,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236037,22.18033257378074,spot_baseline,metac-o1,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236037,-0.0130207132202178,relative_legacy,metac-o1,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236037,1.1214719963411428,peer,metac-o1,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236038,26.30344058337939,spot_baseline,metac-gpt-4o,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236038,9.243526256600465,spot_peer,metac-gpt-4o,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236038,10.647958132463904,baseline,metac-gpt-4o,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236038,4.019029919046563,peer,metac-gpt-4o,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236038,0.0179323483793999,relative_legacy,metac-gpt-4o,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236040,6.298389119173103,spot_peer,metac-claude-3-5-sonnet-latest,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236040,9.626173384869336,baseline,metac-claude-3-5-sonnet-latest,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236040,2.7363881903765592,peer,metac-claude-3-5-sonnet-latest,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236040,24.27134135851208,spot_baseline,metac-claude-3-5-sonnet-latest,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236040,0.0012763249095854,relative_legacy,metac-claude-3-5-sonnet-latest,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236041,17.807190511263766,spot_baseline,metac-claude-3-5-sonnet-20240620,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236041,-3.070154743839628,spot_peer,metac-claude-3-5-sonnet-20240620,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236041,7.051001509990515,baseline,metac-claude-3-5-sonnet-20240620,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236041,-1.0002840400973187,peer,metac-claude-3-5-sonnet-20240620,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236041,-0.0498913430427532,relative_legacy,metac-claude-3-5-sonnet-20240620,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236043,0.0472059415281909,relative_legacy,metac-grok-2-1212,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236043,30.20356618344304,spot_baseline,metac-grok-2-1212,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236043,14.896008480311112,spot_peer,metac-grok-2-1212,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236043,11.805399386269276,baseline,metac-grok-2-1212,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236043,6.052567486596861,peer,metac-grok-2-1212,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236045,1.990959819733805,baseline,metac-Gemini-Exp-1206,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236045,13.151720291689688,spot_baseline,metac-Gemini-Exp-1206,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236045,-9.817363771858442,spot_peer,metac-Gemini-Exp-1206,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236045,-0.0283793601156763,relative_legacy,metac-Gemini-Exp-1206,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236045,-1.4861916442848306,peer,metac-Gemini-Exp-1206,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236047,0.0738016677502583,relative_legacy,metac-Llama-3.1,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236047,20.25848925719139,spot_peer,metac-Llama-3.1,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236047,33.903595255631885,spot_baseline,metac-Llama-3.1,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236047,12.835068791780913,baseline,metac-Llama-3.1,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,236047,7.855373102432941,peer,metac-Llama-3.1,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,239758,26.303440583379384,spot_baseline,metac-perplexity,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,239758,9.243526256600443,spot_peer,metac-perplexity,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,239758,8.470795069925638,baseline,metac-perplexity,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,239758,0.0138725540900922,relative_legacy,metac-perplexity,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,239758,3.0043566184314394,peer,metac-perplexity,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,239759,0.0184534440033708,relative_legacy,metac-exa,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,239759,10.772729788423725,baseline,metac-exa,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,239759,4.088283496202056,peer,metac-exa,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,239759,9.243526256600465,spot_peer,metac-exa,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,239759,26.30344058337939,spot_baseline,metac-exa,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,240414,0.7049349691284228,peer,minefrac1,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,240414,5.006922750170125,baseline,minefrac1,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,240414,-0.0052324339924606,relative_legacy,minefrac1,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,240414,3.267873900605841,spot_peer,minefrac1,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,240414,22.18033257378074,spot_baseline,minefrac1,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,240416,1.4958746223477115,spot_peer,metac-o1-preview,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,240416,7.361674043701363,baseline,metac-o1-preview,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,240416,0.6043477405441522,peer,metac-o1-preview,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,240416,20.957680387553776,spot_baseline,metac-o1-preview,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,240416,-0.0221553144469918,relative_legacy,metac-o1-preview,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,246118,-8.496250072115615,spot_baseline,laylaps,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,246118,-3.351181063273494,baseline,laylaps,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,246118,-16.1198921238251,peer,laylaps,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,246118,-0.2571833522571208,relative_legacy,laylaps,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,246118,-41.19193480075741,spot_peer,laylaps,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,247214,0.0242669929548275,relative_legacy,ajf-bot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,247214,27.97137043070092,spot_baseline,ajf-bot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,247214,8.918894300267594,baseline,ajf-bot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,247214,3.7432325993188487,peer,ajf-bot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,247214,11.660869896053375,spot_peer,ajf-bot,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,264059,-0.1257799895446663,relative_legacy,wunderplumb,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,264059,5.41713325843008,baseline,wunderplumb,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,264059,10.624906679090577,spot_baseline,wunderplumb,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,264059,-13.47949430109408,spot_peer,wunderplumb,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34908,How many Oscars will Wicked win in 2025?,2025-02-22 03:56:08.914812+00,264059,-6.109019527587119,peer,wunderplumb,True,2,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35441 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,189869,-37.51106364471721,baseline,VeritasAI,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,189869,-114.25012227378954,peer,VeritasAI,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,189869,-124.41616209522776,spot_peer,VeritasAI,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,189869,-45.127906839404254,spot_baseline,VeritasAI,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,189869,-1.918609955666815,relative_legacy,VeritasAI,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,191026,51.33152994477577,baseline,manticAI,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,191026,63.844541192849945,spot_baseline,manticAI,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,191026,0.1760830160342804,relative_legacy,manticAI,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,191026,59.3198647631067,spot_peer,manticAI,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,191026,51.17366257840074,peer,manticAI,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,191935,49.60243804523969,baseline,pgodzinai,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,191935,66.7936560164133,spot_baseline,pgodzinai,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,191935,64.29230183518354,spot_peer,pgodzinai,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,191935,0.21620355339967,relative_legacy,pgodzinai,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,191935,50.67366636518796,peer,pgodzinai,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,191975,55.950961643894814,spot_baseline,jkraybill_bot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,191975,7.733064640853994,baseline,jkraybill_bot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,191975,6.359203072482246,peer,jkraybill_bot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,191975,0.0277329100872053,relative_legacy,jkraybill_bot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,191975,46.01067542025607,spot_peer,jkraybill_bot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,192418,36.62759445481096,spot_peer,InstitutPelFutur,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,192418,33.35089850623034,peer,InstitutPelFutur,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,192418,48.91613290278334,baseline,InstitutPelFutur,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,192418,-0.0751689908610093,relative_legacy,InstitutPelFutur,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,192418,50.38592728251845,spot_baseline,InstitutPelFutur,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,192924,-24.95005615398246,spot_peer,acm_bot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,192924,-0.3382213091366269,relative_legacy,acm_bot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,192924,5.795442610651649,baseline,acm_bot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,192924,-8.940550119189773,peer,acm_bot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,192924,13.86468838532139,spot_baseline,acm_bot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,220077,49.70064392017298,baseline,mmBot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,220077,50.38592728251845,spot_baseline,mmBot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,220077,36.62759445481096,spot_peer,mmBot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,220077,-0.0751689908610093,relative_legacy,mmBot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,220077,33.35089850623034,peer,mmBot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,227188,-56.93234419266069,spot_baseline,ProfessorSP,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,227188,-30.77262283259168,baseline,ProfessorSP,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,227188,-1.3500686479749548,relative_legacy,ProfessorSP,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,227188,-77.80173845938073,peer,ProfessorSP,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,227188,-144.31936201181117,spot_peer,ProfessorSP,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236037,16.131148285837092,baseline,metac-o1,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236037,-0.0128607654267609,relative_legacy,metac-o1,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236037,31.864869551531623,spot_peer,metac-o1,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236037,47.56119116032779,spot_baseline,metac-o1,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236037,11.450435132733675,peer,metac-o1,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236038,22.065879607823085,baseline,metac-gpt-4o,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236038,54.39593106327713,spot_baseline,metac-gpt-4o,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236038,43.388772859699365,spot_peer,metac-gpt-4o,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236038,0.0453242875431731,relative_legacy,metac-gpt-4o,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236038,19.039133556498147,peer,metac-gpt-4o,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236040,20.051991579418974,baseline,metac-claude-3-5-sonnet-latest,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236040,50.38592728251845,spot_baseline,metac-claude-3-5-sonnet-latest,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236040,36.62759445481096,spot_peer,metac-claude-3-5-sonnet-latest,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236040,0.0059996678698099,relative_legacy,metac-claude-3-5-sonnet-latest,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236040,15.80577302932346,peer,metac-claude-3-5-sonnet-latest,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236041,20.096587981816043,baseline,metac-claude-3-5-sonnet-20240620,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236041,15.862036089551149,peer,metac-claude-3-5-sonnet-20240620,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236041,50.38592728251845,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236041,36.62759445481096,spot_peer,metac-claude-3-5-sonnet-20240620,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236041,0.0059039589735217,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236043,68.26061944859853,spot_baseline,metac-grok-2-1212,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236043,0.1695708280809834,relative_legacy,metac-grok-2-1212,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236043,26.891260566846,baseline,metac-grok-2-1212,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236043,27.513403164787896,peer,metac-grok-2-1212,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236043,66.76571633071183,spot_peer,metac-grok-2-1212,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236045,0.001100861229634,relative_legacy,metac-Gemini-Exp-1206,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236045,4.655973189153795,peer,metac-Gemini-Exp-1206,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236045,6.924565380655498,baseline,metac-Gemini-Exp-1206,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236045,47.56119116032779,spot_baseline,metac-Gemini-Exp-1206,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236045,31.864869551531623,spot_peer,metac-Gemini-Exp-1206,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236047,16.838997296421464,peer,metac-Llama-3.1,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236047,20.3881183317867,baseline,metac-Llama-3.1,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236047,0.0306759346309711,relative_legacy,metac-Llama-3.1,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236047,41.18317761040263,spot_peer,metac-Llama-3.1,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,236047,53.08780920065794,spot_baseline,metac-Llama-3.1,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,239758,11.58605991760896,baseline,metac-perplexity,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,239758,10.29941625395414,spot_peer,metac-perplexity,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,239758,-0.1111775188384443,relative_legacy,metac-perplexity,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,239758,34.77088389753815,spot_baseline,metac-perplexity,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,239758,4.028700377942742,peer,metac-perplexity,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,239759,-1.2666633531493798,relative_legacy,metac-exa,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,239759,-86.13531161467861,spot_baseline,metac-exa,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,239759,-193.5578374566025,spot_peer,metac-exa,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,239759,-77.0549078900106,peer,metac-exa,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,239759,-34.63126971193173,baseline,metac-exa,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,240414,8.683897731959343,spot_baseline,minefrac1,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,240414,-33.68527232854972,spot_peer,minefrac1,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,240414,-0.2077757731173823,relative_legacy,minefrac1,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,240414,-7.337468319808941,peer,minefrac1,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,240414,1.9747075571281631,baseline,minefrac1,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,240416,51.77419937787938,spot_peer,metac-o1-preview,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,240416,21.07174989646883,baseline,metac-o1-preview,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,240416,0.0821557705037731,relative_legacy,metac-o1-preview,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,240416,59.36926411670824,spot_baseline,metac-o1-preview,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,240416,19.137152366165427,peer,metac-o1-preview,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,246118,34.77088389753815,spot_baseline,laylaps,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,246118,13.711600311162613,baseline,laylaps,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,246118,5.152580913908929,peer,laylaps,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,246118,-0.136907275601177,relative_legacy,laylaps,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,246118,10.29941625395414,spot_peer,laylaps,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,247214,-151.1423250687864,spot_peer,ajf-bot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,247214,-60.97899198332776,spot_baseline,ajf-bot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,247214,-1.158765304722128,relative_legacy,ajf-bot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,247214,-67.27029387778074,peer,ajf-bot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,247214,-27.657116822812107,baseline,ajf-bot,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,264059,38.26256679494212,peer,wunderplumb,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,264059,35.384698286666655,baseline,wunderplumb,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,264059,69.28764272321567,spot_baseline,wunderplumb,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,264059,68.4973574875053,spot_peer,wunderplumb,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34909,Which movie will win the 2025 Oscar for Best Picture?,2025-02-22 03:56:08.946393+00,264059,0.2227945297356869,relative_legacy,wunderplumb,True,Anora,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35442 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,185699,-2.9701284895595825,spot_peer,MWG,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,185699,-0.0560778916093563,baseline,MWG,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,185699,-0.1820668138286417,peer,MWG,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,185699,-0.0085846335316816,relative_legacy,MWG,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,185699,-0.9148209934631238,spot_baseline,MWG,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,187708,9.83921620894652,peer,twsummerbot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,187708,14.995351718781642,spot_peer,twsummerbot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,187708,7.304807768262434,baseline,twsummerbot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,187708,14.756693616906317,spot_baseline,twsummerbot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,187708,0.0055626797917558,relative_legacy,twsummerbot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,189869,-3.56470460586961,spot_peer,VeritasAI,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,189869,-0.148600112944153,relative_legacy,VeritasAI,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,189869,-2.5464023999716465,peer,VeritasAI,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,189869,-1.1823443186171991,baseline,VeritasAI,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,189869,-1.4334772267322569,spot_baseline,VeritasAI,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,191026,-84.3191977081101,spot_baseline,manticAI,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,191026,-67.80882566991527,baseline,manticAI,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,191026,-84.55571855274299,peer,manticAI,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,191026,-1.1989016843599445,relative_legacy,manticAI,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,191026,-98.583074424254,spot_peer,manticAI,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,191935,0.4660357782755794,relative_legacy,pgodzinai,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,191935,45.58253107832961,spot_baseline,pgodzinai,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,191935,50.33341485993512,spot_peer,pgodzinai,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,191935,45.9005781946115,peer,pgodzinai,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,191935,37.67797309902991,baseline,pgodzinai,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,191975,1.3367878668122786,peer,jkraybill_bot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,191975,-0.0024476427592347,relative_legacy,jkraybill_bot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,191975,11.265585558302469,spot_baseline,jkraybill_bot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,191975,1.376683029251628,baseline,jkraybill_bot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,191975,10.993222103911627,spot_peer,jkraybill_bot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,192418,45.58253107832961,spot_baseline,InstitutPelFutur,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,192418,50.32475577145943,peer,InstitutPelFutur,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,192418,0.4954193787227354,relative_legacy,InstitutPelFutur,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,192418,50.33341485993512,spot_peer,InstitutPelFutur,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,192418,44.01061084782917,baseline,InstitutPelFutur,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,192924,-9.59032742893847,spot_baseline,acm_bot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,192924,-3.966645212744345,baseline,acm_bot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,192924,-5.119098703228804,peer,acm_bot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,192924,-0.1613294128840905,relative_legacy,acm_bot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,192924,-12.915538556097822,spot_peer,acm_bot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,220077,16.595623285353042,spot_baseline,mmBot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,220077,17.10346030843586,spot_peer,mmBot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,220077,16.269321043646233,baseline,mmBot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,220077,11.539720605708126,peer,mmBot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,220077,0.0518313264426136,relative_legacy,mmBot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,227188,4.157685056822274,peer,ProfessorSP,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,227188,3.1697497737030558,spot_peer,ProfessorSP,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,227188,4.441072130058007,spot_baseline,ProfessorSP,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,227188,2.3951239205945902,baseline,ProfessorSP,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,227188,-0.0763636382357251,relative_legacy,ProfessorSP,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236037,15.247233408568974,baseline,metac-o1,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236037,46.46823868459433,spot_peer,metac-o1,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236037,0.1613764620028382,relative_legacy,metac-o1,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236037,16.929624768343345,peer,metac-o1,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236037,42.21088922957006,spot_baseline,metac-o1,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236038,44.480600948521854,spot_peer,metac-gpt-4o,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236038,0.1653245699799724,relative_legacy,metac-gpt-4o,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236038,18.61657174368548,peer,metac-gpt-4o,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236038,16.637292203612656,baseline,metac-gpt-4o,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236038,40.47704780369381,spot_baseline,metac-gpt-4o,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236040,0.1159316915358321,relative_legacy,metac-claude-3-5-sonnet-latest,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236040,13.464716100980574,baseline,metac-claude-3-5-sonnet-latest,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236040,14.865014130168056,peer,metac-claude-3-5-sonnet-latest,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236040,36.12831840867458,spot_peer,metac-claude-3-5-sonnet-latest,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236040,33.191246570706056,spot_baseline,metac-claude-3-5-sonnet-latest,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236041,19.05904709418444,peer,metac-claude-3-5-sonnet-20240620,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236041,42.21088922957006,spot_baseline,metac-claude-3-5-sonnet-20240620,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236041,0.1737733276943255,relative_legacy,metac-claude-3-5-sonnet-20240620,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236041,17.10430891984862,baseline,metac-claude-3-5-sonnet-20240620,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236041,46.46823868459433,spot_peer,metac-claude-3-5-sonnet-20240620,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236043,22.72265400550111,baseline,metac-grok-2-1212,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236043,25.51967231356572,peer,metac-grok-2-1212,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236043,0.2645015415328969,relative_legacy,metac-grok-2-1212,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236043,62.83440962299118,spot_peer,metac-grok-2-1212,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236043,56.4873062249703,spot_baseline,metac-grok-2-1212,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236045,22.1946078739418,spot_peer,metac-Gemini-Exp-1206,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236045,5.285802799299828,baseline,metac-Gemini-Exp-1206,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236045,5.6150296047105455,peer,metac-Gemini-Exp-1206,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236045,0.0284537465960856,relative_legacy,metac-Gemini-Exp-1206,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236045,21.036695415411067,spot_baseline,metac-Gemini-Exp-1206,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236047,10.78350831883453,baseline,metac-Llama-3.1,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236047,27.3166972139158,spot_baseline,metac-Llama-3.1,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236047,29.393864029101945,spot_peer,metac-Llama-3.1,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236047,0.0796048654205849,relative_legacy,metac-Llama-3.1,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,236047,11.740068256394023,peer,metac-Llama-3.1,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,239758,-15.011893077810615,baseline,metac-perplexity,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,239758,-42.05627994173468,spot_baseline,metac-perplexity,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,239758,-50.133793575791614,spot_peer,metac-perplexity,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,239758,-0.3167608455626193,relative_legacy,metac-perplexity,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,239758,-17.897473519257066,peer,metac-perplexity,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,239759,-4.808584499407432,peer,metac-exa,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,239759,-9.59032742893847,spot_baseline,metac-exa,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,239759,-12.915538556097822,spot_peer,metac-exa,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,239759,-0.1404195838145359,relative_legacy,metac-exa,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,239759,-3.607536165623813,baseline,metac-exa,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,240414,-20.114794711257957,spot_peer,minefrac1,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,240414,-15.8703292274432,spot_baseline,minefrac1,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,240414,-3.721408496206124,baseline,minefrac1,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,240414,-4.694737526795815,peer,minefrac1,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,240414,-0.1082297538210408,relative_legacy,minefrac1,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,240416,3.1697497737030558,spot_peer,metac-o1-preview,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,240416,1.6711949405247166,baseline,metac-o1-preview,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,240416,1.2721434296392915,peer,metac-o1-preview,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,240416,-0.0568439211625754,relative_legacy,metac-o1-preview,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,240416,4.441072130058007,spot_baseline,metac-o1-preview,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,246118,-0.0635357411758401,relative_legacy,laylaps,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,246118,4.441072130058007,spot_baseline,laylaps,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,246118,3.1697497737030558,spot_peer,laylaps,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,246118,1.7537242272677251,baseline,laylaps,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,246118,1.328877132279174,peer,laylaps,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,247214,-210.47783714870687,spot_baseline,ajf-bot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,247214,-1.7907388865185243,relative_legacy,ajf-bot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,247214,-122.39720915643112,peer,ajf-bot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,247214,-243.2085682793032,spot_peer,ajf-bot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,247214,-105.9528897439608,baseline,ajf-bot,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,264059,4.441072130058007,spot_baseline,wunderplumb,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,264059,2.2736498726833028,baseline,wunderplumb,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,264059,4.156498994333321,peer,wunderplumb,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,264059,-0.0759918809519069,relative_legacy,wunderplumb,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34910,Which movie will win the 2025 Oscar for Best International Feature Film?,2025-02-22 03:56:08.97667+00,264059,3.1697497737030558,spot_peer,wunderplumb,True,I'm Still Here,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35443 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,187708,23.476787750288164,peer,twsummerbot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,187708,50.19265609327093,spot_peer,twsummerbot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,187708,8.31403484280624,baseline,twsummerbot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,187708,15.980896710008064,spot_baseline,twsummerbot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,187708,0.2261076534334322,relative_legacy,twsummerbot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,189869,-22.029971224582383,peer,VeritasAI,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,189869,-19.196428707009872,spot_baseline,VeritasAI,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,189869,-15.82488905083614,baseline,VeritasAI,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,189869,-0.8956683366152759,spot_peer,VeritasAI,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,189869,-0.4005496275644881,relative_legacy,VeritasAI,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,191026,43.470081291237314,spot_peer,manticAI,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,191026,9.131223736883396,baseline,manticAI,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,191026,17.79596957764796,peer,manticAI,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,191026,11.352007348488089,spot_baseline,manticAI,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,191026,0.1016132882345463,relative_legacy,manticAI,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,191935,0.636649811246625,relative_legacy,pgodzinai,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,191935,92.37106019215985,spot_peer,pgodzinai,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,191935,59.69876997167914,peer,pgodzinai,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,191935,45.02321632245428,spot_baseline,pgodzinai,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,191935,35.70653188954904,baseline,pgodzinai,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,191975,-0.0010533673249101,relative_legacy,jkraybill_bot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,191975,15.265564013035,spot_peer,jkraybill_bot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,191975,-8.06846677347829,spot_baseline,jkraybill_bot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,191975,-0.4072423434721974,baseline,jkraybill_bot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,191975,0.770503769505291,peer,jkraybill_bot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,192418,-0.1499024784742312,relative_legacy,InstitutPelFutur,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,192418,0.0,baseline,InstitutPelFutur,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,192418,-4.882728890234428,peer,InstitutPelFutur,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,192418,0.0,spot_baseline,InstitutPelFutur,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,192418,26.983465908322405,spot_peer,InstitutPelFutur,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,192924,-0.4536188059386753,relative_legacy,acm_bot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,192924,-66.09640474436816,spot_baseline,acm_bot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,192924,-28.490630412136063,peer,acm_bot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,192924,-27.458811623581937,baseline,acm_bot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,192924,-69.00889647849391,spot_peer,acm_bot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,220077,42.39984532774751,spot_baseline,mmBot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,220077,66.54989533050207,peer,mmBot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,220077,41.308576694684895,baseline,mmBot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,220077,88.56111651711583,spot_peer,mmBot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,220077,0.6641927178121699,relative_legacy,mmBot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,227188,-0.2709956751619553,relative_legacy,ProfessorSP,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,227188,-14.7712249836684,peer,ProfessorSP,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,227188,-31.642949970626656,spot_peer,ProfessorSP,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,227188,-18.021755332452667,baseline,ProfessorSP,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,227188,-40.36774610288021,spot_baseline,ProfessorSP,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236037,0.0825363734477448,relative_legacy,metac-o1,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236037,1.008423236310776,baseline,metac-o1,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236037,11.684872047863486,peer,metac-o1,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236037,31.09230252438045,spot_peer,metac-o1,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236037,2.8291764183183754,spot_baseline,metac-o1,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236038,-80.04666478550426,spot_peer,metac-gpt-4o,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236038,-73.69655941662064,spot_baseline,metac-gpt-4o,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236038,-30.165190048988094,baseline,metac-gpt-4o,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236038,-32.48364005341155,peer,metac-gpt-4o,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236038,-0.512192448229564,relative_legacy,metac-gpt-4o,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236040,-0.2104515451493001,relative_legacy,metac-claude-3-5-sonnet-latest,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236040,-36.84827970831032,spot_baseline,metac-claude-3-5-sonnet-latest,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236040,-26.53159943859092,spot_peer,metac-claude-3-5-sonnet-latest,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236040,-14.869377774072388,baseline,metac-claude-3-5-sonnet-latest,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236040,-10.2265353666223,peer,metac-claude-3-5-sonnet-latest,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236041,-41.82506338585602,spot_baseline,metac-claude-3-5-sonnet-20240620,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236041,-33.75942407055725,spot_peer,metac-claude-3-5-sonnet-20240620,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236041,-0.250610142228401,relative_legacy,metac-claude-3-5-sonnet-20240620,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236041,-13.153030500255218,peer,metac-claude-3-5-sonnet-20240620,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236041,-16.87047763089283,baseline,metac-claude-3-5-sonnet-20240620,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236043,-53.27542304939647,peer,metac-grok-2-1212,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236043,-134.58073043956418,spot_peer,metac-grok-2-1212,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236043,-111.24648095414638,spot_baseline,metac-grok-2-1212,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236043,-44.25084267777718,baseline,metac-grok-2-1212,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236043,-0.8026101826464577,relative_legacy,metac-grok-2-1212,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236045,49.51894377295476,spot_peer,metac-Gemini-Exp-1206,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236045,0.1050903461977803,relative_legacy,metac-Gemini-Exp-1206,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236045,10.643589726467068,peer,metac-Gemini-Exp-1206,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236045,3.2922153138307544,baseline,metac-Gemini-Exp-1206,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236045,15.517006030607511,spot_baseline,metac-Gemini-Exp-1206,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236047,115.83387542285875,spot_peer,metac-Llama-3.1,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236047,0.5533822035618043,relative_legacy,metac-Llama-3.1,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236047,45.90919978618514,peer,metac-Llama-3.1,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236047,23.85744674351022,baseline,metac-Llama-3.1,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,236047,61.17874883952451,spot_baseline,metac-Llama-3.1,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,239758,-48.68342585274211,peer,metac-perplexity,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,239758,-40.24397248912573,baseline,metac-perplexity,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,239758,-116.09640474436812,spot_baseline,metac-perplexity,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,239758,-141.62431539429764,spot_peer,metac-perplexity,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,239758,-0.743445658745187,relative_legacy,metac-perplexity,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,239759,22.70687600620043,spot_peer,metac-exa,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,239759,-2.9446844526784286,spot_baseline,metac-exa,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,239759,9.255837222114788,peer,metac-exa,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,239759,-1.130706254818908,baseline,metac-exa,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,239759,0.0497982112280327,relative_legacy,metac-exa,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,240414,1.021271309629932,peer,minefrac1,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,240414,-0.0299433376272293,relative_legacy,minefrac1,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,240414,3.606522437309956,spot_peer,minefrac1,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,240414,-16.096404744368115,spot_baseline,minefrac1,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,240414,-3.735765067509658,baseline,minefrac1,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,240416,13.591398416810629,spot_peer,metac-o1-preview,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,240416,-3.4397750987639344,baseline,metac-o1-preview,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,240416,5.603471751846455,peer,metac-o1-preview,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,240416,-0.0035953456540873,relative_legacy,metac-o1-preview,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,240416,-9.221228556871385,spot_baseline,metac-o1-preview,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,247214,0.2353259983264146,relative_legacy,ajf-bot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,247214,51.45740269876579,spot_peer,ajf-bot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,247214,16.851749363878533,spot_baseline,ajf-bot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,247214,8.725565214511949,baseline,ajf-bot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,247214,24.146503843546917,peer,ajf-bot,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,264059,-78.18207481536874,spot_baseline,wunderplumb,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,264059,-0.7433264130935648,relative_legacy,wunderplumb,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,264059,-48.56006175422757,peer,wunderplumb,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,264059,-40.27519105980764,baseline,wunderplumb,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34911,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 03:56:09.006896+00,264059,-86.56101638017188,spot_peer,wunderplumb,True,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35444 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,187708,1.4515257109058213,baseline,twsummerbot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,187708,19.75909385207644,spot_peer,twsummerbot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,187708,2.8291764183183754,spot_baseline,twsummerbot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,187708,-0.0853805131601998,relative_legacy,twsummerbot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,187708,10.77515907201886,peer,twsummerbot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,189869,-41.83611650878768,baseline,VeritasAI,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,189869,-58.04387924467481,spot_peer,VeritasAI,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,189869,-0.7536310257920933,relative_legacy,VeritasAI,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,189869,-47.02134951681424,peer,VeritasAI,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,189869,-50.853675667947066,spot_baseline,VeritasAI,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,191026,69.72565986180116,baseline,manticAI,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,191026,126.37809038000243,peer,manticAI,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,191026,1.46298087734994,relative_legacy,manticAI,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,191026,141.2604432372199,spot_peer,manticAI,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,191026,86.66323452318366,spot_baseline,manticAI,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,191935,-33.060348941187584,baseline,pgodzinai,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,191935,-36.84827970831029,spot_baseline,pgodzinai,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,191935,-37.74575046221108,spot_peer,pgodzinai,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,191935,-28.928306339634453,peer,pgodzinai,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,191935,-0.5231928639785988,relative_legacy,pgodzinai,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,192418,-28.92830633963445,peer,InstitutPelFutur,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,192418,-36.84827970831029,spot_baseline,InstitutPelFutur,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,192418,-0.5231928639785988,relative_legacy,InstitutPelFutur,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,192418,-35.16578696960763,baseline,InstitutPelFutur,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,192418,-37.74575046221108,spot_peer,InstitutPelFutur,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,192924,-32.650651479107026,peer,acm_bot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,192924,-0.5735040172450349,relative_legacy,acm_bot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,192924,-80.135284491701,spot_peer,acm_bot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,192924,-27.198522825836005,baseline,acm_bot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,192924,-66.09640474436812,spot_baseline,acm_bot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,220077,-0.523192863978599,relative_legacy,mmBot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,220077,-28.928306339634467,peer,mmBot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,220077,-36.84827970831032,spot_baseline,mmBot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,220077,-35.67377016972343,baseline,mmBot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,220077,-37.74575046221109,spot_peer,mmBot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,227188,-21.442164940193717,spot_baseline,ProfessorSP,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,227188,-7.56044719176566,peer,ProfessorSP,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,227188,-0.3326919829911801,relative_legacy,ProfessorSP,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,227188,-11.197690781809756,baseline,ProfessorSP,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,227188,-15.417549067414004,spot_peer,ProfessorSP,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236037,-0.192395997987598,relative_legacy,metac-o1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236037,-7.543469065941327,baseline,metac-o1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236037,-4.700836125614193,peer,metac-o1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236037,-13.032378210041554,spot_peer,metac-o1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236037,-19.796433816556963,spot_baseline,metac-o1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236038,0.0,spot_baseline,metac-gpt-4o,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236038,6.983260229725274,peer,metac-gpt-4o,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236038,-0.0060115519046482,baseline,metac-gpt-4o,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236038,-0.0297638171843313,relative_legacy,metac-gpt-4o,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236038,15.658746567869748,spot_peer,metac-gpt-4o,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236040,-23.696559416620616,spot_baseline,metac-claude-3-5-sonnet-latest,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236040,-18.684860433752203,spot_peer,metac-claude-3-5-sonnet-latest,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236040,-0.2241053920077941,relative_legacy,metac-claude-3-5-sonnet-latest,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236040,-7.179885085883558,peer,metac-claude-3-5-sonnet-latest,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236040,-9.675098430248008,baseline,metac-claude-3-5-sonnet-latest,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236041,-24.660512789746843,spot_peer,metac-claude-3-5-sonnet-20240620,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236041,-27.81966742621928,spot_baseline,metac-claude-3-5-sonnet-20240620,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236041,-11.346277412807272,baseline,metac-claude-3-5-sonnet-20240620,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236041,-0.2576911258910901,relative_legacy,metac-claude-3-5-sonnet-20240620,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236041,-9.623065004547405,peer,metac-claude-3-5-sonnet-20240620,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236043,23.704673595737724,spot_peer,metac-grok-2-1212,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236043,2.2459938601768084,baseline,metac-grok-2-1212,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236043,10.105878693830851,peer,metac-grok-2-1212,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236043,0.0128941872891625,relative_legacy,metac-grok-2-1212,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236043,5.551565619437198,spot_baseline,metac-grok-2-1212,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236045,0.0843743199154335,relative_legacy,metac-Gemini-Exp-1206,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236045,12.677881139439034,peer,metac-Gemini-Exp-1206,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236045,47.804874268792894,spot_peer,metac-Gemini-Exp-1206,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236045,22.180332573780724,spot_baseline,metac-Gemini-Exp-1206,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236045,5.805291074846601,baseline,metac-Gemini-Exp-1206,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236047,-0.244984499275828,relative_legacy,metac-Llama-3.1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236047,-10.527595434097462,baseline,metac-Llama-3.1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236047,-22.63044017741348,spot_peer,metac-Llama-3.1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236047,-26.41894861773944,spot_baseline,metac-Llama-3.1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,236047,-8.632037956672134,peer,metac-Llama-3.1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,239758,47.05531554732157,spot_baseline,metac-perplexity,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,239758,30.904239183750164,peer,metac-perplexity,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,239758,0.2965904404103485,relative_legacy,metac-perplexity,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,239758,17.17754638365173,baseline,metac-perplexity,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,239758,83.85637965383735,spot_peer,metac-perplexity,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,239759,2.8291764183183754,spot_baseline,metac-exa,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,239759,7.448966236863704,peer,metac-exa,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,239759,1.0348021508590814,baseline,metac-exa,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,239759,-0.0260133619322365,relative_legacy,metac-exa,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,239759,19.75909385207644,spot_peer,metac-exa,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,240414,-14.261962929086623,peer,minefrac1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,240414,-0.2781506727244793,relative_legacy,minefrac1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,240414,-61.07439446324212,spot_peer,minefrac1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,240414,-12.506520666388692,baseline,minefrac1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,240414,-52.94468445267842,spot_baseline,minefrac1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,240416,0.0496272180717048,relative_legacy,metac-o1-preview,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,240416,32.64936192445531,spot_peer,metac-o1-preview,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,240416,12.882197471057484,peer,metac-o1-preview,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,240416,4.491112110188756,baseline,metac-o1-preview,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,240416,11.72326268185115,spot_baseline,metac-o1-preview,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,246118,-0.3265181921475524,relative_legacy,laylaps,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,246118,-36.84827970831032,spot_baseline,laylaps,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,246118,-14.53699668911618,baseline,laylaps,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,246118,-14.55149867619717,peer,laylaps,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,246118,-37.74575046221109,spot_peer,laylaps,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,247214,-106.55416690889348,spot_peer,ajf-bot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,247214,-84.32502635916093,spot_baseline,ajf-bot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,247214,-48.65973128215659,baseline,ajf-bot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,247214,-61.43727121515722,peer,ajf-bot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,247214,-1.050487799717169,relative_legacy,ajf-bot,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,250015,1.3594306053197718,peer,metac-deepseek-r1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,250015,0.2970354098862253,baseline,metac-deepseek-r1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,250015,5.179126954336307,spot_baseline,metac-deepseek-r1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,250015,-0.0042949885330215,relative_legacy,metac-deepseek-r1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,250015,23.164895355295677,spot_peer,metac-deepseek-r1,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,264059,74.88882118774119,peer,wunderplumb,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,264059,143.59890532836366,spot_peer,wunderplumb,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,264059,88.27673731814885,spot_baseline,wunderplumb,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,264059,0.7840445966470254,relative_legacy,wunderplumb,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34912,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 2, 2025?",2025-02-22 03:56:09.037348+00,264059,44.95608612888577,baseline,wunderplumb,True,≤1.3,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,0.85,2025-02-25 02:00:00+00,35445 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,189869,8.65613485689743,spot_peer,VeritasAI,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,189869,10.296296273524382,baseline,VeritasAI,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,189869,0.0899094329489873,relative_legacy,VeritasAI,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,189869,12.518783916821665,spot_baseline,VeritasAI,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,189869,3.9137076807607394,peer,VeritasAI,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,191026,-25.843576442836547,spot_peer,manticAI,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,191026,-6.391880795633118,baseline,manticAI,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,191026,-26.168197049842814,peer,manticAI,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,191026,-0.2917551962631042,relative_legacy,manticAI,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,191026,-7.942733952162881,spot_baseline,manticAI,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,191935,31.710537821349025,baseline,pgodzinai,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,191935,56.97294537084287,spot_peer,pgodzinai,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,191935,41.1751188384144,spot_baseline,pgodzinai,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,191935,0.5938679855351077,relative_legacy,pgodzinai,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,191935,43.54355114396872,peer,pgodzinai,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,191975,8.524602700091759,baseline,jkraybill_bot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,191975,0.1774855312269492,relative_legacy,jkraybill_bot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,191975,60.676836761040086,spot_peer,jkraybill_bot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,191975,43.37186881138832,spot_baseline,jkraybill_bot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,191975,11.923250635398288,peer,jkraybill_bot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,192418,25.192963641259222,spot_baseline,InstitutPelFutur,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,192418,28.192889749981163,peer,InstitutPelFutur,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,192418,23.89067673908628,baseline,InstitutPelFutur,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,192418,0.3650498225717387,relative_legacy,InstitutPelFutur,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,192418,30.025788088578132,spot_peer,InstitutPelFutur,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,192924,20.910310499188355,spot_peer,acm_bot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,192924,0.1524433470274318,relative_legacy,acm_bot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,192924,8.944291752182071,peer,acm_bot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,192924,19.78664281847989,spot_baseline,acm_bot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,192924,7.839540105358565,baseline,acm_bot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,220077,-0.1896745126918254,relative_legacy,mmBot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,220077,0.0,baseline,mmBot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,220077,-20.1303509004288,peer,mmBot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,220077,-12.451508951324788,spot_peer,mmBot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,220077,0.0,spot_baseline,mmBot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,227188,60.16390996447901,spot_peer,ProfessorSP,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,227188,43.06765580733931,spot_baseline,ProfessorSP,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,227188,0.4647539625338426,relative_legacy,ProfessorSP,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,227188,31.97317663084164,peer,ProfessorSP,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,227188,22.826083419689333,baseline,ProfessorSP,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236037,-17.825092172877714,spot_peer,metac-o1,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236037,-5.734683941009387,peer,metac-o1,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236037,-1.1040084134016517,baseline,metac-o1,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236037,-0.0552164753327748,relative_legacy,metac-o1,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236037,-3.187031571163564,spot_baseline,metac-o1,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236038,-4.117259431225354,baseline,metac-gpt-4o,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236038,-29.4773015653774,spot_peer,metac-gpt-4o,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236038,-10.097868842419809,spot_baseline,metac-gpt-4o,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236038,-11.539330068225444,peer,metac-gpt-4o,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236038,-0.1264749146083361,relative_legacy,metac-gpt-4o,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236040,11.328275255937832,spot_baseline,metac-claude-3-5-sonnet-latest,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236040,0.0757574796987712,relative_legacy,metac-claude-3-5-sonnet-latest,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236040,4.54161582712197,baseline,metac-claude-3-5-sonnet-latest,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236040,6.648844617565678,spot_peer,metac-claude-3-5-sonnet-latest,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236040,3.2790602793599675,peer,metac-claude-3-5-sonnet-latest,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236041,-12.451508951324788,spot_peer,metac-claude-3-5-sonnet-20240620,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236041,0.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236041,0.0,baseline,metac-claude-3-5-sonnet-20240620,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236041,-0.0296916113789367,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236041,-4.416248406043492,peer,metac-claude-3-5-sonnet-20240620,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236043,-16.327594360055222,peer,metac-grok-2-1212,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236043,-7.076358670066355,baseline,metac-grok-2-1212,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236043,-42.58963082722566,spot_peer,metac-grok-2-1212,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236043,-0.1938299329819493,relative_legacy,metac-grok-2-1212,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236043,-17.87469216608008,spot_baseline,metac-grok-2-1212,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236045,-12.451508951324788,spot_peer,metac-Gemini-Exp-1206,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236045,0.0,spot_baseline,metac-Gemini-Exp-1206,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236045,-0.0001805731730219,baseline,metac-Gemini-Exp-1206,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236045,-2.3765965647393217,peer,metac-Gemini-Exp-1206,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236045,-0.0194760798015303,relative_legacy,metac-Gemini-Exp-1206,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236047,-0.2148815349603523,relative_legacy,metac-Llama-3.1,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236047,-8.019528627573512,baseline,metac-Llama-3.1,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236047,-20.81067897771674,spot_baseline,metac-Llama-3.1,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236047,-47.53993304966378,spot_peer,metac-Llama-3.1,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,236047,-17.781634734327323,peer,metac-Llama-3.1,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,239758,15.698076354438276,peer,metac-perplexity,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,239758,11.508693706166762,baseline,metac-perplexity,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,239758,34.77088389753815,spot_baseline,metac-perplexity,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,239758,46.17490692762424,spot_peer,metac-perplexity,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,239758,0.2371035133866239,relative_legacy,metac-perplexity,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,239759,-0.0294123749331591,relative_legacy,metac-exa,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,239759,-12.451508951324788,spot_peer,metac-exa,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,239759,0.0,spot_baseline,metac-exa,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,239759,-0.0001993072788423,baseline,metac-exa,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,239759,-4.257739220609019,peer,metac-exa,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,240414,1.6088652247980066,peer,minefrac1,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,240414,6.648844617565678,spot_peer,minefrac1,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,240414,2.6065047911898627,baseline,minefrac1,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,240414,11.328275255937832,spot_baseline,minefrac1,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,240414,0.0363498189587206,relative_legacy,minefrac1,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,240416,-3.6824110641128103,baseline,metac-o1-preview,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,240416,-10.239969764525403,peer,metac-o1-preview,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,240416,-10.097868842419825,spot_baseline,metac-o1-preview,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,240416,-0.114283059203055,relative_legacy,metac-o1-preview,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,240416,-29.47730156537742,spot_peer,metac-o1-preview,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,246118,-12.451508951324788,spot_peer,laylaps,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,246118,0.0,spot_baseline,laylaps,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,246118,-0.0295171441325666,relative_legacy,laylaps,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,246118,-4.323910247937952,peer,laylaps,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,246118,0.0,baseline,laylaps,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,247214,-24.04304915092195,spot_peer,ajf-bot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,247214,-0.1715460289844947,relative_legacy,ajf-bot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,247214,-15.8413944548929,peer,ajf-bot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,247214,-6.874854831754448,spot_baseline,ajf-bot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,247214,-4.046437727659924,baseline,ajf-bot,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,264059,-0.0936964044085367,relative_legacy,wunderplumb,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,264059,-3.187031571163564,spot_baseline,wunderplumb,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,264059,-17.825092172877714,spot_peer,wunderplumb,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,264059,-1.6402931069117297,baseline,wunderplumb,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34913,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 03:56:09.360636+00,264059,-9.939219739092026,peer,wunderplumb,True,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35446 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,185699,-2.0523137213656253,peer,MWG,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,185699,37.85116232537298,spot_baseline,MWG,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,185699,-9.693025947443587,spot_peer,MWG,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,185699,-0.0437120431650261,relative_legacy,MWG,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,185699,8.014263062040841,baseline,MWG,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,187708,-0.0227866613502313,relative_legacy,twsummerbot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,187708,31.724376874067577,baseline,twsummerbot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,187708,2.397825224718292,spot_peer,twsummerbot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,187708,54.59683691052925,spot_baseline,twsummerbot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,187708,4.3860215947484775,peer,twsummerbot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,189869,40.044148980201975,baseline,VeritasAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,189869,9.567053439380988,peer,VeritasAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,189869,-0.0371884405736452,relative_legacy,VeritasAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,189869,-1.9734455147642351,spot_peer,VeritasAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,191026,-33.26876104913496,peer,manticAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,191026,-50.81317725090573,spot_peer,manticAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,191026,-0.5816321767768475,relative_legacy,manticAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,191026,-15.373084749664097,baseline,manticAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,191026,-19.099722506091343,spot_baseline,manticAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,191935,23.04125528552545,spot_peer,pgodzinai,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,191935,73.28081412558804,baseline,pgodzinai,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,191935,36.28672270509357,peer,pgodzinai,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,191935,0.273988215573237,relative_legacy,pgodzinai,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,191935,83.18772411916731,spot_baseline,pgodzinai,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,191975,53.67160558670963,spot_baseline,jkraybill_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,191975,-0.015974314905418,relative_legacy,jkraybill_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,191975,0.4558124359461487,peer,jkraybill_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,191975,14.458372806850624,baseline,jkraybill_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,191975,1.729782012768989,spot_peer,jkraybill_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,192418,35.679585122995235,baseline,InstitutPelFutur,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,192418,-9.693025947443587,spot_peer,InstitutPelFutur,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,192418,-0.0926425151338814,relative_legacy,InstitutPelFutur,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,192418,10.38194820734936,peer,InstitutPelFutur,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,192924,11.448404423916156,peer,acm_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,192924,28.179283052452693,spot_peer,acm_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,192924,90.3038270112912,spot_baseline,acm_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,192924,0.120715156716002,relative_legacy,acm_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,192924,36.52620803921103,baseline,acm_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,220077,-98.11097050878982,peer,mmBot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,220077,-109.22546813780156,spot_peer,mmBot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,220077,-95.66941175195906,baseline,mmBot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,220077,-100.0,spot_baseline,mmBot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,220077,-1.3920668863624903,relative_legacy,mmBot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,227188,48.54268271702416,spot_baseline,ProfessorSP,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,227188,-1.9734455147642351,spot_peer,ProfessorSP,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,227188,-0.0547055672072759,relative_legacy,ProfessorSP,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,227188,0.6754663707746582,peer,ProfessorSP,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,227188,25.592828827440723,baseline,ProfessorSP,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236037,-1.9734455147642351,spot_peer,metac-o1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236037,-0.0486444713149983,relative_legacy,metac-o1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236037,48.54268271702416,spot_baseline,metac-o1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236037,20.031723622968677,baseline,metac-o1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236037,-0.7621931644438379,peer,metac-o1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236038,-0.0491463130473951,relative_legacy,metac-gpt-4o,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236038,-0.7298229390547897,peer,metac-gpt-4o,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236038,20.32785933260074,baseline,metac-gpt-4o,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236038,-1.9734455147642351,spot_peer,metac-gpt-4o,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236040,24.450437127766264,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236040,2.274837248762733,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236040,-0.0075659890924948,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236040,5.213311931793221,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236041,31.981859863188085,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236041,0.0678744264018316,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236041,18.251139322835492,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236041,7.738688057416929,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236043,35.37933723534521,baseline,metac-grok-2-1212,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236043,24.20514076449682,spot_peer,metac-grok-2-1212,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236043,0.1021759634083573,relative_legacy,metac-grok-2-1212,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236043,10.216167171998618,peer,metac-grok-2-1212,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236045,18.251139322835492,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236045,7.1111739914946135,peer,metac-Gemini-Exp-1206,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236045,29.82864214541589,baseline,metac-Gemini-Exp-1206,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236045,0.0628004470333994,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236047,-0.7525238680570802,peer,metac-Llama-3.1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236047,-0.0488726262326415,relative_legacy,metac-Llama-3.1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236047,-1.9734455147642351,spot_peer,metac-Llama-3.1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,236047,20.15012752858156,baseline,metac-Llama-3.1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,239758,33.573936558476355,baseline,metac-perplexity,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,239758,24.20514076449682,spot_peer,metac-perplexity,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,239758,0.0962084106856733,relative_legacy,metac-perplexity,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,239758,9.60268288838751,peer,metac-perplexity,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,239759,-3.3159452048469684,peer,metac-exa,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,239759,-0.0735453620828447,relative_legacy,metac-exa,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,239759,-9.693025947443587,spot_peer,metac-exa,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,239759,37.85116232537298,spot_baseline,metac-exa,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,239759,12.938086175391753,baseline,metac-exa,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,240414,67.80719051126377,spot_baseline,minefrac1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,240414,16.5251846202257,baseline,minefrac1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,240414,0.0197141438862252,relative_legacy,minefrac1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,240414,11.93607455029021,spot_peer,minefrac1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,240414,2.8966485105870627,peer,minefrac1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,240416,-0.0075425565899131,relative_legacy,metac-o1-preview,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,240416,5.213311931793221,spot_peer,metac-o1-preview,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,240416,58.496250072115615,spot_baseline,metac-o1-preview,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,240416,24.16911069394281,baseline,metac-o1-preview,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,240416,2.2194584389922816,peer,metac-o1-preview,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,246118,0.0288595245016348,relative_legacy,laylaps,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,246118,67.80719051126377,spot_baseline,laylaps,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,246118,11.93607455029021,spot_peer,laylaps,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,246118,4.723025491851995,peer,laylaps,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,246118,26.799751962018085,baseline,laylaps,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,247214,0.0028066907505039,relative_legacy,ajf-bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,247214,7.059228659673059,peer,ajf-bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,247214,35.71517385089109,baseline,ajf-bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,247214,58.496250072115615,spot_baseline,ajf-bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,247214,5.213311931793221,spot_peer,ajf-bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,250015,18.11338543490724,baseline,metac-deepseek-r1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,250015,-4.992980605728016,spot_peer,metac-deepseek-r1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,250015,-2.010621769791329,peer,metac-deepseek-r1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,250015,-0.0652976599621349,relative_legacy,metac-deepseek-r1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,250015,44.36066514756145,spot_baseline,metac-deepseek-r1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,264059,24.20514076449682,spot_peer,wunderplumb,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,264059,0.1302139297595959,relative_legacy,wunderplumb,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,264059,13.95981258911021,peer,wunderplumb,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,264059,43.24989024348555,baseline,wunderplumb,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34914,"Will Donald Trump say ""Trudeau"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.392129+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35447 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,185699,-11.33918133569505,peer,MWG,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,185699,-17.673232436553114,spot_peer,MWG,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,185699,-0.1482465247756415,relative_legacy,MWG,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,185699,0.0,spot_baseline,MWG,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,185699,0.0,baseline,MWG,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,187708,-35.845397091247634,spot_baseline,twsummerbot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,187708,-25.304913184824347,peer,twsummerbot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,187708,-20.45607273113176,baseline,twsummerbot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,187708,-43.59963514596176,spot_peer,twsummerbot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,187708,-0.3387389559814636,relative_legacy,twsummerbot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,189869,9.70390820353292,spot_peer,VeritasAI,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,189869,31.58404994042102,baseline,VeritasAI,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,189869,3.821626833380871,peer,VeritasAI,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,189869,0.0878160183364438,relative_legacy,VeritasAI,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,191026,-0.7087930163867494,peer,manticAI,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,191026,0.0237562866786982,relative_legacy,manticAI,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,191026,3.758436752137407,spot_peer,manticAI,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,191026,29.631056070809237,spot_baseline,manticAI,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,191026,23.855123844313525,baseline,manticAI,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,191935,7.4848856329513085,peer,pgodzinai,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,191935,0.1334095234568054,relative_legacy,pgodzinai,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,191935,14.922386872193206,spot_peer,pgodzinai,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,191935,39.6955147003352,baseline,pgodzinai,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,191935,45.06614090095649,spot_baseline,pgodzinai,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,191975,-2.79315097171228,peer,jkraybill_bot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,191975,0.8601523986221735,baseline,jkraybill_bot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,191975,-14.453844942699392,spot_peer,jkraybill_bot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,191975,4.451069606579259,spot_baseline,jkraybill_bot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,191975,-0.0422288819826423,relative_legacy,jkraybill_bot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,192418,71.79705810505382,baseline,InstitutPelFutur,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,192418,0.4107587471040134,relative_legacy,InstitutPelFutur,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,192418,29.41061126609268,peer,InstitutPelFutur,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,192418,37.69667202210814,spot_peer,InstitutPelFutur,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,192924,43.29594072761063,spot_baseline,acm_bot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,192924,0.0438252369701485,relative_legacy,acm_bot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,192924,13.642029384351735,spot_peer,acm_bot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,192924,17.251671955654643,baseline,acm_bot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,192924,5.092684349114252,peer,acm_bot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,220077,37.69667202210814,spot_peer,mmBot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,220077,0.4107587471040134,relative_legacy,mmBot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,220077,29.41061126609268,peer,mmBot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,220077,72.72941601241534,baseline,mmBot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,227188,9.18203793768997,peer,ProfessorSP,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,227188,17.4369139934865,spot_peer,ProfessorSP,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,227188,0.1158234566636168,relative_legacy,ProfessorSP,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,227188,25.00016853337628,baseline,ProfessorSP,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,227188,48.54268271702416,spot_baseline,ProfessorSP,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236037,27.349365778496317,baseline,metac-o1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236037,67.80719051126377,spot_baseline,metac-o1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236037,31.3706245282193,spot_peer,metac-o1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236037,12.325240246531676,peer,metac-o1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236037,0.1429458738971827,relative_legacy,metac-o1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236038,10.970538720310698,baseline,metac-gpt-4o,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236038,0.2591176733328338,peer,metac-gpt-4o,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236038,-0.024190985996411,relative_legacy,metac-gpt-4o,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236038,1.3516256636856214,spot_peer,metac-gpt-4o,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236041,-17.39028194416343,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236041,-32.19280948873623,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236041,-13.369855144333242,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236041,-0.2671970344843073,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236041,-40.95777692151412,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236043,0.234717221639713,peer,metac-grok-2-1212,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236043,-0.0245000801099347,relative_legacy,metac-grok-2-1212,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236043,26.303440583379377,spot_baseline,metac-grok-2-1212,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236043,1.3516256636856214,spot_peer,metac-grok-2-1212,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236043,10.897155485930911,baseline,metac-grok-2-1212,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236045,0.1952160779604236,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236045,43.661028248885394,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236045,15.756590026683442,peer,metac-Gemini-Exp-1206,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236045,31.231036917340894,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236047,6.81322285703279,peer,metac-Llama-3.1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236047,19.884170005599024,baseline,metac-Llama-3.1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236047,0.066605627862524,relative_legacy,metac-Llama-3.1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,236047,17.4369139934865,spot_peer,metac-Llama-3.1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,239758,3.4253619832887106,peer,metac-perplexity,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,239758,9.70390820353292,spot_peer,metac-perplexity,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,239758,14.706047362367768,baseline,metac-perplexity,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,239758,0.0223314522994831,relative_legacy,metac-perplexity,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,239758,37.85116232537298,spot_baseline,metac-perplexity,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,239759,-0.0169361742953883,relative_legacy,metac-exa,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,239759,8.943977710921699,baseline,metac-exa,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,239759,1.3516256636856214,spot_peer,metac-exa,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,239759,0.1824077280593247,peer,metac-exa,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,239759,26.303440583379377,spot_baseline,metac-exa,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,240414,-40.95777692151412,spot_peer,minefrac1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,240414,-7.78843717954187,baseline,minefrac1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,240414,-9.943383475762367,peer,minefrac1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,240414,-32.19280948873623,spot_baseline,minefrac1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,240414,-0.1471425143703927,relative_legacy,minefrac1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,240416,17.470138809430665,peer,metac-o1-preview,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,240416,0.2137018253171636,relative_legacy,metac-o1-preview,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,240416,43.661028248885394,spot_peer,metac-o1-preview,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,240416,34.52424743498615,baseline,metac-o1-preview,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,246118,-12.714935491264692,baseline,laylaps,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,246118,-40.95777692151412,spot_peer,laylaps,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,246118,-32.19280948873623,spot_baseline,laylaps,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,246118,-16.567549425624737,peer,laylaps,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,246118,-0.2543266188512191,relative_legacy,laylaps,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,247214,-0.5077864955653718,relative_legacy,ajf-bot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,247214,-34.43916529129452,baseline,ajf-bot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,247214,-54.89148745624692,spot_peer,ajf-bot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,247214,-51.45731728297583,spot_baseline,ajf-bot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,247214,-38.75586470236334,peer,ajf-bot,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,250015,14.03680702128055,baseline,metac-deepseek-r1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,250015,9.70390820353292,spot_peer,metac-deepseek-r1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,250015,0.0223000135445495,relative_legacy,metac-deepseek-r1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,250015,3.2509196918216454,peer,metac-deepseek-r1,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,264059,-16.549130122550302,baseline,wunderplumb,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,264059,-32.19280948873623,spot_baseline,wunderplumb,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,264059,-40.95777692151412,spot_peer,wunderplumb,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,264059,-21.31705546661032,peer,wunderplumb,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34915,"Will Donald Trump say ""Biden"" in an address before a joint session of the US Congress on March 4, 2025",2025-02-22 03:56:09.422921+00,264059,-0.299387674425021,relative_legacy,wunderplumb,True,yes,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35448 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,185699,33.72305017442378,baseline,MWG,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,185699,54.59683691052925,spot_baseline,MWG,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,185699,7.3604624604902495,spot_peer,MWG,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,185699,0.0175619327107451,relative_legacy,MWG,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,185699,6.288974975308709,peer,MWG,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,187708,13.052029322897509,baseline,twsummerbot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,187708,22.65085298086797,spot_baseline,twsummerbot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,187708,-15.70544242602853,spot_peer,twsummerbot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,187708,-0.1665193993922606,relative_legacy,twsummerbot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,187708,-8.105700196107009,peer,twsummerbot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,189869,31.42957449044528,baseline,VeritasAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,189869,-4.730388711671617,spot_peer,VeritasAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,189869,-0.1020332724563171,relative_legacy,VeritasAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,189869,1.4801191245447154,peer,VeritasAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,191026,6.298813178510922,peer,manticAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,191026,-0.0326550318152283,relative_legacy,manticAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,191026,1.490364903080697,spot_peer,manticAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,191026,46.46682670034443,spot_baseline,manticAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,191026,37.41773755729606,baseline,manticAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,191935,58.496250072115615,spot_baseline,pgodzinai,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,191935,51.52107268653362,baseline,pgodzinai,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,191935,10.175949167565197,spot_peer,pgodzinai,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,191935,0.0798001040607227,relative_legacy,pgodzinai,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,191935,17.438518549506583,peer,pgodzinai,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,191975,-0.0537064055897971,relative_legacy,jkraybill_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,191975,-3.1977437077755853,peer,jkraybill_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,191975,5.672328008516602,baseline,jkraybill_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,191975,24.934420224175177,spot_baseline,jkraybill_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,191975,-14.056642221531204,spot_peer,jkraybill_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,192418,-78.55318467133955,peer,InstitutPelFutur,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,192418,-68.70027869446602,baseline,InstitutPelFutur,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,192418,-85.27100206932596,spot_peer,InstitutPelFutur,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,192418,-73.69655941662059,spot_baseline,InstitutPelFutur,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,192418,-1.1186063654754106,relative_legacy,InstitutPelFutur,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,192924,8.861684413471984,peer,acm_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,192924,30.230816452528227,baseline,acm_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,192924,23.213776558607474,spot_peer,acm_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,192924,0.0939509817902007,relative_legacy,acm_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,220077,35.71291640339113,baseline,mmBot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,220077,-0.0787532662166942,relative_legacy,mmBot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,220077,7.046091544752852,peer,mmBot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,220077,-4.730388711671617,spot_peer,mmBot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,227188,-0.0184581055581669,relative_legacy,ProfessorSP,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,227188,2.1438608524517653,peer,ProfessorSP,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,227188,48.54268271702416,spot_baseline,ProfessorSP,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,227188,25.31892153584858,baseline,ProfessorSP,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,227188,2.989191721007738,spot_peer,ProfessorSP,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236037,23.26020109170649,baseline,metac-o1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236037,58.496250072115615,spot_baseline,metac-o1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236037,0.0226329137965077,relative_legacy,metac-o1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236037,3.723065092421439,peer,metac-o1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236037,10.175949167565197,spot_peer,metac-o1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236038,6.730436730221541,peer,metac-gpt-4o,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236038,28.14576656897762,baseline,metac-gpt-4o,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236038,0.0614981905503061,relative_legacy,metac-gpt-4o,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236038,16.898711786062186,spot_peer,metac-gpt-4o,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236040,10.175949167565197,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236040,0.0226664178001164,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236040,3.8966729831519142,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236040,24.161896558550065,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236041,10.175949167565197,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236041,24.14849659093056,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236041,3.893734460098363,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236041,0.022664998796759,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236043,6.660781103869584,peer,metac-grok-2-1212,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236043,16.898711786062186,spot_peer,metac-grok-2-1212,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236043,0.0610137427770973,relative_legacy,metac-grok-2-1212,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236043,27.932376492626783,baseline,metac-grok-2-1212,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236045,-10.77990218114999,baseline,metac-Gemini-Exp-1206,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236045,-32.19280948873623,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236045,-55.304119522265445,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236045,-0.281087479338748,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236045,-18.663795503485662,peer,metac-Gemini-Exp-1206,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236047,6.573360339109325,peer,metac-Llama-3.1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236047,16.898711786062186,spot_peer,metac-Llama-3.1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236047,0.0605140137481893,relative_legacy,metac-Llama-3.1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,236047,27.63906796302058,baseline,metac-Llama-3.1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,239758,10.175949167565197,spot_peer,metac-perplexity,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,239758,22.45338235831999,baseline,metac-perplexity,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,239758,3.6178570101749816,peer,metac-perplexity,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,239758,58.496250072115615,spot_baseline,metac-perplexity,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,239758,0.0226294109397666,relative_legacy,metac-perplexity,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,239759,16.898711786062186,spot_peer,metac-exa,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,239759,5.82310745579576,peer,metac-exa,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,239759,24.14873043616305,baseline,metac-exa,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,239759,67.80719051126377,spot_baseline,metac-exa,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,239759,0.0557960390177606,relative_legacy,metac-exa,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,240414,6.320408634795177,baseline,minefrac1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,240414,26.303440583379377,spot_baseline,minefrac1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,240414,-0.0547121924952709,relative_legacy,minefrac1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,240414,-13.068170760998337,spot_peer,minefrac1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,240414,-3.147928201049784,peer,minefrac1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,240416,30.57525750778469,baseline,metac-o1-preview,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,240416,8.961443859691988,peer,metac-o1-preview,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,240416,0.0947634577461164,relative_legacy,metac-o1-preview,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,240416,23.213776558607474,spot_peer,metac-o1-preview,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,246118,2.989191721007738,spot_peer,laylaps,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,246118,19.18213692468433,baseline,laylaps,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,246118,0.855138662966533,peer,laylaps,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,246118,-0.0166891807216266,relative_legacy,laylaps,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,247214,39.31264393067018,baseline,ajf-bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,247214,58.496250072115615,spot_baseline,ajf-bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,247214,10.175949167565197,spot_peer,ajf-bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,247214,0.0481891995881025,relative_legacy,ajf-bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,247214,9.480492705128004,peer,ajf-bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,250015,44.36066514756145,spot_baseline,metac-deepseek-r1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,250015,14.331641072789576,baseline,metac-deepseek-r1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,250015,-0.1148189675430297,peer,metac-deepseek-r1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,250015,-0.0230156991000228,relative_legacy,metac-deepseek-r1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,250015,-0.0303433699560511,spot_peer,metac-deepseek-r1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,264059,-0.0184581055581669,relative_legacy,wunderplumb,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,264059,48.54268271702416,spot_baseline,wunderplumb,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,264059,2.989191721007738,spot_peer,wunderplumb,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,264059,2.0090182061237285,peer,wunderplumb,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34916,"Will Donald Trump say ""AOC"" or ""Pelosi"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.45332+00,264059,24.80015894006107,baseline,wunderplumb,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35449 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,185699,-0.3637100741696262,relative_legacy,MWG,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,185699,-33.999970527099926,baseline,MWG,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,185699,-18.47705515266861,peer,MWG,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,185699,-39.70056246295393,spot_peer,MWG,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,185699,-51.45731728297583,spot_baseline,MWG,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,187708,21.650010949760667,peer,twsummerbot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,187708,25.8554302098132,baseline,twsummerbot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,187708,0.1666183623153332,relative_legacy,twsummerbot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,187708,32.79946353104105,spot_peer,twsummerbot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,187708,48.95429356424735,spot_baseline,twsummerbot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,189869,-20.594907544955845,peer,VeritasAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,189869,-0.3637100741696262,relative_legacy,VeritasAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,189869,-39.70056246295393,spot_peer,VeritasAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,189869,-42.467012284245605,baseline,VeritasAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,191026,-51.45731728297583,spot_baseline,manticAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,191026,-20.26447559432424,peer,manticAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,191026,-0.3637100741696262,relative_legacy,manticAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,191026,-39.70056246295393,spot_peer,manticAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,191026,-41.44678266226219,baseline,manticAI,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,191935,58.496250072115615,spot_baseline,pgodzinai,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,191935,39.68902629193116,spot_peer,pgodzinai,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,191935,0.5551550852437006,relative_legacy,pgodzinai,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,191935,54.64041386964277,peer,pgodzinai,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,191935,51.51576067339197,baseline,pgodzinai,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,191975,3.106422935788679,peer,jkraybill_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,191975,-0.0316898440492341,relative_legacy,jkraybill_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,191975,12.793694065563596,spot_peer,jkraybill_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,191975,5.041769194429598,baseline,jkraybill_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,191975,21.24655814311568,spot_baseline,jkraybill_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,192418,-131.4921678861711,spot_peer,InstitutPelFutur,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,192418,-178.58751946471526,spot_baseline,InstitutPelFutur,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,192418,-165.46283324855852,baseline,InstitutPelFutur,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,192418,-117.44571398308192,peer,InstitutPelFutur,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,192418,-1.5994588310998838,relative_legacy,InstitutPelFutur,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,192924,10.3182633949088,peer,acm_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,192924,37.85116232537298,spot_baseline,acm_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,192924,0.0077125764688993,relative_legacy,acm_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,192924,14.769968438570496,baseline,acm_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,192924,24.78268841269435,spot_peer,acm_bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,220077,47.13132471200101,peer,mmBot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,220077,0.4058636920480404,relative_legacy,mmBot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,220077,35.48880193323957,baseline,mmBot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,220077,24.78268841269435,spot_peer,mmBot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,227188,-132.19280948873626,spot_baseline,ProfessorSP,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,227188,-68.20753889512046,baseline,ProfessorSP,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,227188,-47.76040637770381,peer,ProfessorSP,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,227188,-0.7802810848122523,relative_legacy,ProfessorSP,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,227188,-97.99387370622716,spot_peer,ProfessorSP,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236037,-32.19280948873623,spot_baseline,metac-o1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236037,-9.433062793573384,peer,metac-o1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236037,-25.79104239789948,spot_peer,metac-o1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236037,-12.491770948294432,baseline,metac-o1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236037,-0.2640520796921795,relative_legacy,metac-o1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236038,14.378582309967166,peer,metac-gpt-4o,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236038,32.5022688453737,spot_peer,metac-gpt-4o,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236038,0.0502236918561838,relative_legacy,metac-gpt-4o,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236038,20.09140845014218,baseline,metac-gpt-4o,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236040,15.511213909280814,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236040,0.0063014431860795,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236040,24.78268841269435,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236040,10.974092806213632,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236041,10.99927793109008,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236041,24.78268841269435,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236041,0.0063545799935616,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236041,15.535176375344392,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236043,19.856000110691262,baseline,metac-grok-2-1212,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236043,32.5022688453737,spot_peer,metac-grok-2-1212,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236043,0.0500907899677096,relative_legacy,metac-grok-2-1212,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236043,14.113877759192595,peer,metac-grok-2-1212,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236045,0.1287589839641724,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236045,52.72685368297345,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236045,16.77418337139573,peer,metac-Gemini-Exp-1206,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236045,23.9424985781165,baseline,metac-Gemini-Exp-1206,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236047,27.323256547759215,baseline,metac-Llama-3.1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236047,0.1270594717726884,relative_legacy,metac-Llama-3.1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236047,19.472455239177663,peer,metac-Llama-3.1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,236047,46.41178891042816,spot_peer,metac-Llama-3.1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,239758,37.85116232537298,spot_baseline,metac-perplexity,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,239758,14.161728111927465,baseline,metac-perplexity,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,239758,9.838490647052504,peer,metac-perplexity,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,239758,0.0076953779696456,relative_legacy,metac-perplexity,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,239758,24.78268841269435,spot_peer,metac-perplexity,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,239759,-18.362613076928127,baseline,metac-exa,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,239759,-51.45731728297583,spot_baseline,metac-exa,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,239759,-39.70056246295393,spot_peer,metac-exa,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,239759,-0.310956844798063,relative_legacy,metac-exa,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,239759,-13.722168356522474,peer,metac-exa,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,240414,26.303440583379377,spot_baseline,minefrac1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,240414,16.44490636336763,spot_peer,minefrac1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,240414,-0.0197652585923962,relative_legacy,minefrac1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,240414,3.9851046920642346,peer,minefrac1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,240414,6.258910788145721,baseline,minefrac1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,240416,-25.79104239789948,spot_peer,metac-o1-preview,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,240416,-0.2687766075208798,relative_legacy,metac-o1-preview,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,240416,-32.19280948873623,spot_baseline,metac-o1-preview,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,240416,-9.56683057857129,peer,metac-o1-preview,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,240416,-12.69240118614992,baseline,metac-o1-preview,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,246118,13.50931615116413,peer,laylaps,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,246118,0.0494321457089609,relative_legacy,laylaps,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,246118,32.5022688453737,spot_peer,laylaps,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,246118,19.1545264139026,baseline,laylaps,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,247214,-39.70056246295393,spot_peer,ajf-bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,247214,-0.3637100741696262,relative_legacy,ajf-bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,247214,-18.562993505637536,peer,ajf-bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,247214,-34.44220406008492,baseline,ajf-bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,247214,-51.45731728297583,spot_baseline,ajf-bot,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,250015,24.78268841269435,spot_peer,metac-deepseek-r1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,250015,6.456488095730904,baseline,metac-deepseek-r1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,250015,4.227322929678908,peer,metac-deepseek-r1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,250015,7.429623438563738e-06,relative_legacy,metac-deepseek-r1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,264059,20.708474187940176,peer,wunderplumb,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,264059,0.1519095491602781,relative_legacy,wunderplumb,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,264059,32.5022688453737,spot_peer,wunderplumb,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,264059,48.54268271702416,spot_baseline,wunderplumb,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34917,"Will Donald Trump say ""AI"" or ""artificial intelligence"" in an address before a joint session of the US Congress on March 4, 2025?",2025-02-22 03:56:09.483505+00,264059,25.029559777975056,baseline,wunderplumb,True,no,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,2025-02-25 02:00:00+00,35450 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,189869,2.2436723134251144,peer,VeritasAI,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,189869,-45.470310195966434,baseline,VeritasAI,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,189869,-0.8710801565315126,relative_legacy,VeritasAI,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,189869,45.050880666213935,spot_peer,VeritasAI,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,189869,-54.930614433405445,spot_baseline,VeritasAI,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,191935,49.46343946600563,baseline,pgodzinai,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,191935,166.895110555126,spot_peer,pgodzinai,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,191935,60.14449157278927,spot_baseline,pgodzinai,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,191935,120.26863854482762,peer,pgodzinai,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,191935,1.858428650642012,relative_legacy,pgodzinai,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,191975,32.87217103651795,spot_peer,jkraybill_bot,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,191975,-66.43272908367388,spot_baseline,jkraybill_bot,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,191975,1.4517611828893855,peer,jkraybill_bot,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,191975,-2.933924177078039,baseline,jkraybill_bot,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,191975,0.0035181166776783,relative_legacy,jkraybill_bot,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,192418,-15.20498566460487,peer,InstitutPelFutur,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,192418,-1.2729053843615556,relative_legacy,InstitutPelFutur,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,192418,27.237646021561098,spot_peer,InstitutPelFutur,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,192418,-71.75422493113312,spot_baseline,InstitutPelFutur,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,192418,-69.80413458628637,baseline,InstitutPelFutur,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,192924,-189.47596389698305,spot_baseline,acm_bot,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,192924,-97.4089011187506,spot_peer,acm_bot,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,192924,-1.5378032855593164,relative_legacy,acm_bot,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,192924,-41.337585536053744,peer,acm_bot,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,192924,-77.14031011470925,baseline,acm_bot,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,220077,29.36848880740807,baseline,mmBot,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,220077,59.39204578089208,spot_baseline,mmBot,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,220077,166.09840324605838,spot_peer,mmBot,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,220077,1.486349780421604,relative_legacy,mmBot,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,220077,78.35618246181832,peer,mmBot,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,227188,35.39856295359281,spot_peer,ProfessorSP,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,227188,0.0281376483284426,relative_legacy,ProfessorSP,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,227188,-11.349688681601926,baseline,ProfessorSP,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,227188,6.5474762065548,peer,ProfessorSP,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,227188,-64.04669227310316,spot_baseline,ProfessorSP,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236037,-144.51858789480818,spot_baseline,metac-o1,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236037,-14.240747628368084,peer,metac-o1,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236037,-49.80697358703604,spot_peer,metac-o1,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236037,-41.68679216044804,baseline,metac-o1,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236037,-0.6470774166437591,relative_legacy,metac-o1,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236038,8.354853460099186,spot_peer,metac-gpt-4o,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236038,-36.146815800188826,baseline,metac-gpt-4o,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236038,2.5142948360234585,peer,metac-gpt-4o,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236038,-0.3544505831129358,relative_legacy,metac-gpt-4o,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236038,-89.5879734614027,spot_baseline,metac-gpt-4o,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236040,-1.1302944600829063,relative_legacy,metac-claude-3-5-sonnet-latest,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236040,-26.82988479526604,peer,metac-claude-3-5-sonnet-latest,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236040,-62.91847260705169,baseline,metac-claude-3-5-sonnet-latest,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236040,-158.9016248621069,spot_baseline,metac-claude-3-5-sonnet-latest,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236040,-65.03607155241114,spot_peer,metac-claude-3-5-sonnet-latest,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236041,-63.87520367051595,baseline,metac-claude-3-5-sonnet-20240620,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236041,-158.89767843538004,spot_baseline,metac-claude-3-5-sonnet-20240620,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236041,-65.03189298293564,spot_peer,metac-claude-3-5-sonnet-20240620,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236041,-1.1547779701810923,relative_legacy,metac-claude-3-5-sonnet-20240620,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236041,-27.38340877515429,peer,metac-claude-3-5-sonnet-20240620,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236043,-124.24533248939996,spot_baseline,metac-grok-2-1212,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236043,-11.944370635948845,peer,metac-grok-2-1212,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236043,-48.76866171192132,baseline,metac-grok-2-1212,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236043,-0.7248653726142414,relative_legacy,metac-grok-2-1212,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236043,-28.34117374601557,spot_peer,metac-grok-2-1212,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236045,-179.17594692280545,spot_baseline,metac-Gemini-Exp-1206,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236045,-34.2115161320497,baseline,metac-Gemini-Exp-1206,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236045,-86.5030007931508,spot_peer,metac-Gemini-Exp-1206,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236045,-16.247462468141062,peer,metac-Gemini-Exp-1206,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,236045,-0.6034895701751364,relative_legacy,metac-Gemini-Exp-1206,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,239758,-49.80697358703604,spot_peer,metac-perplexity,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,239758,-144.51858789480818,spot_baseline,metac-perplexity,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,239758,-0.7025941837301519,relative_legacy,metac-perplexity,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,239758,-15.39773710064206,peer,metac-perplexity,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,239758,-44.69371389890337,baseline,metac-perplexity,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,239759,2.709310036574456,peer,metac-exa,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,239759,8.354853460099186,spot_peer,metac-exa,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,239759,-30.20753585149418,baseline,metac-exa,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,239759,-89.5879734614027,spot_baseline,metac-exa,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,239759,-0.2493144859472569,relative_legacy,metac-exa,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,240414,8.354853460099186,spot_peer,minefrac1,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,240414,2.222294582644712,peer,minefrac1,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,240414,-20.890628706352903,baseline,minefrac1,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,240414,-89.5879734614027,spot_baseline,minefrac1,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,240414,-0.1420022103616541,relative_legacy,minefrac1,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,246118,-1.2756007109733245,relative_legacy,laylaps,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,246118,-28.34117374601557,spot_peer,laylaps,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,246118,-124.24533248939996,spot_baseline,laylaps,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,246118,-66.50911913256643,baseline,laylaps,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,246118,-25.037348316873192,peer,laylaps,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,264059,-22.69009924370553,peer,wunderplumb,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,264059,-28.34117374601557,spot_peer,wunderplumb,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,264059,-124.24533248939996,spot_baseline,wunderplumb,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,264059,-63.651781918540216,baseline,wunderplumb,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34918,"How many unique posters will Bluesky have on March 30, 2025?",2025-02-22 03:56:09.817463+00,264059,-1.1906146389287686,relative_legacy,wunderplumb,True,798102.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35451 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,189869,28.768207245178136,spot_baseline,VeritasAI,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,189869,0.7307647869903959,relative_legacy,VeritasAI,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,189869,64.88917077471267,peer,VeritasAI,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,189869,23.6241507703261,baseline,VeritasAI,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,189869,90.95751916369332,spot_peer,VeritasAI,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,191935,-189.11092267999769,peer,pgodzinai,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,191935,-215.87440567681537,spot_baseline,pgodzinai,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,191935,-166.56102075419454,spot_peer,pgodzinai,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,191935,-190.80455901092344,baseline,pgodzinai,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,191935,-5.509808203346873,relative_legacy,pgodzinai,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,191975,19.36566032516168,spot_baseline,jkraybill_bot,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,191975,0.2947993942073652,relative_legacy,jkraybill_bot,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,191975,19.114340055735987,peer,jkraybill_bot,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,191975,4.522048720466697,baseline,jkraybill_bot,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,191975,81.06010135314972,spot_peer,jkraybill_bot,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,192418,127.43894971947994,spot_peer,InstitutPelFutur,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,192418,61.36413485531075,baseline,InstitutPelFutur,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,192418,108.38754445003516,peer,InstitutPelFutur,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,192418,1.6250936674612366,relative_legacy,InstitutPelFutur,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,192418,63.42556627317539,spot_baseline,InstitutPelFutur,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,192924,-63.4896593954437,baseline,acm_bot,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,192924,-41.41056402356733,peer,acm_bot,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,192924,-155.6756904605743,spot_baseline,acm_bot,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,192924,-1.4835256171864604,relative_legacy,acm_bot,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,192924,-103.19395210551968,spot_peer,acm_bot,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,220077,1.3346607475749726,relative_legacy,mmBot,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,220077,95.59815570338874,peer,mmBot,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,220077,53.02178904786654,spot_baseline,mmBot,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,220077,116.48760527178644,spot_peer,mmBot,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,220077,52.33017393748395,baseline,mmBot,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,227188,0.088250232095184,relative_legacy,ProfessorSP,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,227188,-1.021648446528692,baseline,ProfessorSP,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,227188,-5.889151782819132,spot_baseline,ProfessorSP,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,227188,54.47608860790675,spot_peer,ProfessorSP,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,227188,9.450497007327108,peer,ProfessorSP,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236037,7.699783143082175,peer,metac-o1,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236037,-40.54651081081639,spot_baseline,metac-o1,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236037,17.994658052120162,spot_peer,metac-o1,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236037,-0.119707629094147,relative_legacy,metac-o1,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236037,-15.215279837686786,baseline,metac-o1,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236038,0.4481703964825981,relative_legacy,metac-gpt-4o,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236038,29.842515014312976,peer,metac-gpt-4o,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236038,3.477156624444893,baseline,metac-gpt-4o,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236038,8.494951527269535,spot_baseline,metac-gpt-4o,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236038,69.61724998694746,spot_peer,metac-gpt-4o,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236040,14.634777321170484,peer,metac-claude-3-5-sonnet-latest,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236040,33.13581844431867,spot_peer,metac-claude-3-5-sonnet-latest,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236040,-10.696315689684967,baseline,metac-claude-3-5-sonnet-latest,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236040,-26.162408438227825,spot_baseline,metac-claude-3-5-sonnet-latest,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236040,0.0398645021160791,relative_legacy,metac-claude-3-5-sonnet-latest,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236041,-103.19139953969132,spot_peer,metac-claude-3-5-sonnet-20240620,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236041,-155.67326552303734,spot_baseline,metac-claude-3-5-sonnet-20240620,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236041,-63.83965849051777,baseline,metac-claude-3-5-sonnet-20240620,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236041,-41.69786762390103,peer,metac-claude-3-5-sonnet-20240620,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236041,-1.4934724493327562,relative_legacy,metac-claude-3-5-sonnet-20240620,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236043,-39.82703871988472,spot_peer,metac-grok-2-1212,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236043,-15.31545831144416,peer,metac-grok-2-1212,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236043,-95.47712274422103,spot_baseline,metac-grok-2-1212,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236043,-38.85005984613496,baseline,metac-grok-2-1212,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236043,-0.7730349202361047,relative_legacy,metac-grok-2-1212,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236045,17.994658052120162,spot_peer,metac-Gemini-Exp-1206,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236045,-40.54651081081639,spot_baseline,metac-Gemini-Exp-1206,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236045,-0.1174157994038858,relative_legacy,metac-Gemini-Exp-1206,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236045,6.272469999338126,peer,metac-Gemini-Exp-1206,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236045,-12.843979320314812,baseline,metac-Gemini-Exp-1206,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236047,-134.13662090588775,spot_baseline,metac-Llama-3.1,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236047,-53.71171162017916,baseline,metac-Llama-3.1,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236047,-1.206447137114506,relative_legacy,metac-Llama-3.1,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236047,-31.4522315097667,peer,metac-Llama-3.1,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,236047,-80.52124731111284,spot_peer,metac-Llama-3.1,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,239758,-36.56953956447532,peer,metac-perplexity,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,239758,-56.23852653494242,baseline,metac-perplexity,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,239758,-1.3168200468396285,relative_legacy,metac-perplexity,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,239758,-103.1940310528062,spot_peer,metac-perplexity,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,239758,-155.67576546049645,spot_baseline,metac-perplexity,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,239759,-1.7346965517982722,baseline,metac-exa,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,239759,16.34725373312743,peer,metac-exa,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,239759,0.1741913285663077,relative_legacy,metac-exa,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,239759,-5.889151782819132,spot_baseline,metac-exa,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,239759,54.47608860790675,spot_peer,metac-exa,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,240414,-141.2916743379378,spot_baseline,minefrac1,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,240414,-0.8117475999783239,relative_legacy,minefrac1,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,240414,-34.16791762776326,baseline,minefrac1,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,240414,-21.076832322403835,peer,minefrac1,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,240414,-88.05288250274444,spot_peer,minefrac1,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,240416,-10.093647634256143,baseline,metac-o1-preview,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,240416,33.13582041800416,spot_peer,metac-o1-preview,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,240416,-26.16240656322661,spot_baseline,metac-o1-preview,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,240416,0.0376488438850544,relative_legacy,metac-o1-preview,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,240416,13.787005537858528,peer,metac-o1-preview,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,246118,0.7349162845985637,relative_legacy,laylaps,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,246118,15.373892898957129,baseline,laylaps,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,246118,28.768207245178136,spot_baseline,laylaps,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,246118,90.95751916369332,spot_peer,laylaps,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,246118,47.13422140097687,peer,laylaps,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,264059,-56.52431810551,peer,wunderplumb,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,264059,-155.67241557274457,spot_baseline,wunderplumb,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,264059,-103.19050485517266,spot_peer,wunderplumb,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,264059,-79.5072594478132,baseline,wunderplumb,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34919,"How many total posts will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.849127+00,264059,-1.9828928086696704,relative_legacy,wunderplumb,True,4194610.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35452 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,189869,17.34144222201659,baseline,VeritasAI,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,189869,21.06067283714845,spot_baseline,VeritasAI,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,189869,106.42680759386882,spot_peer,VeritasAI,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,189869,0.7466594180965472,relative_legacy,VeritasAI,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,189869,71.40254415944186,peer,VeritasAI,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,191935,-195.42341013685223,baseline,pgodzinai,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,191935,-5.3741855199695205,relative_legacy,pgodzinai,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,191935,-215.8744056768161,spot_baseline,pgodzinai,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,191935,-144.44562847974078,spot_peer,pgodzinai,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,191935,-180.68135162801937,peer,pgodzinai,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,191975,7.786438603219436,peer,jkraybill_bot,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,191975,0.0353195275343269,relative_legacy,jkraybill_bot,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,191975,40.93163226896818,spot_peer,jkraybill_bot,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,191975,-7.829426388560913,baseline,jkraybill_bot,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,191975,-40.79588163636878,spot_baseline,jkraybill_bot,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,192418,1.029992214250858,relative_legacy,InstitutPelFutur,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,192418,28.76820724517744,spot_baseline,InstitutPelFutur,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,192418,27.671074140582014,baseline,InstitutPelFutur,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,192418,90.83757028479076,peer,InstitutPelFutur,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,192418,114.58772637884069,spot_peer,InstitutPelFutur,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,192924,-80.70589178013759,spot_peer,acm_bot,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,192924,-62.04284542894715,baseline,acm_bot,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,192924,-33.828480574694375,peer,acm_bot,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,192924,-1.352626846916733,relative_legacy,acm_bot,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,192924,-155.67576546052422,spot_baseline,acm_bot,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,220077,9.644367659748466,baseline,mmBot,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,220077,67.74994509226846,peer,mmBot,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,220077,0.5042055679432018,relative_legacy,mmBot,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,220077,94.5284444780096,spot_peer,mmBot,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,220077,9.823329894392538,spot_baseline,mmBot,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,227188,-80.70583883898321,spot_peer,ProfessorSP,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,227188,-0.528892744171036,relative_legacy,ProfessorSP,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,227188,-13.731626439530286,peer,ProfessorSP,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,227188,-26.48731245673212,baseline,ProfessorSP,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,227188,-155.6757154605451,spot_baseline,ProfessorSP,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236037,-40.54651081081639,spot_baseline,metac-o1,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236037,41.19567196661189,spot_peer,metac-o1,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236037,0.028949941094164,relative_legacy,metac-o1,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236037,-11.070207937544742,baseline,metac-o1,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236037,10.99545467950839,peer,metac-o1,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236038,-141.95392217541394,spot_baseline,metac-gpt-4o,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236038,-1.2141123036192172,relative_legacy,metac-gpt-4o,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236038,-57.16095491645872,baseline,metac-gpt-4o,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236038,-66.176881242962,spot_peer,metac-gpt-4o,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236038,-28.455878822829064,peer,metac-gpt-4o,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236040,34.63700984978676,peer,metac-claude-3-5-sonnet-latest,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236040,89.70518130112598,spot_peer,metac-claude-3-5-sonnet-latest,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236040,2.06767030391819,baseline,metac-claude-3-5-sonnet-latest,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236040,5.268025782891358,spot_baseline,metac-claude-3-5-sonnet-latest,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236040,0.49662618021091,relative_legacy,metac-claude-3-5-sonnet-latest,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236041,-1.3570526638123983,relative_legacy,metac-claude-3-5-sonnet-20240620,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236041,-62.18799492388128,baseline,metac-claude-3-5-sonnet-20240620,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236041,-33.93746606636514,peer,metac-claude-3-5-sonnet-20240620,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236041,-80.70583883898321,spot_peer,metac-claude-3-5-sonnet-20240620,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236041,-155.6757154605451,spot_baseline,metac-claude-3-5-sonnet-20240620,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236043,-28.27535577639538,peer,metac-grok-2-1212,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236043,-144.51858789480818,spot_baseline,metac-grok-2-1212,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236043,-56.37290599621484,baseline,metac-grok-2-1212,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236043,-68.89240965173236,spot_peer,metac-grok-2-1212,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236043,-1.189895062333111,relative_legacy,metac-grok-2-1212,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236045,0.0360807493768923,relative_legacy,metac-Gemini-Exp-1206,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236045,7.33067340495609,peer,metac-Gemini-Exp-1206,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236045,-7.283602744853074,baseline,metac-Gemini-Exp-1206,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236045,-40.54651081081709,spot_baseline,metac-Gemini-Exp-1206,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236045,41.19567196661116,spot_peer,metac-Gemini-Exp-1206,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236047,-152.04722231878333,spot_baseline,metac-Llama-3.1,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236047,-1.188535853761755,relative_legacy,metac-Llama-3.1,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236047,-56.04934658162687,baseline,metac-Llama-3.1,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236047,-76.86390492417662,spot_peer,metac-Llama-3.1,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,236047,-29.403832685731626,peer,metac-Llama-3.1,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,239759,20.027128544822077,peer,metac-exa,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,239759,-26.16240656322766,spot_baseline,metac-exa,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,239759,56.42589999347057,spot_peer,metac-exa,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,239759,0.1504300261817857,relative_legacy,metac-exa,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,239759,-9.561625294495414,baseline,metac-exa,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,240414,-155.6753654621189,spot_baseline,minefrac1,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,240414,-80.70546825241428,spot_peer,minefrac1,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,240414,-0.7313225517738899,relative_legacy,minefrac1,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,240414,-18.79689973540796,peer,minefrac1,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,240414,-36.029447032813984,baseline,minefrac1,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,240416,-0.9945779386259735,relative_legacy,metac-o1-preview,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,240416,-23.84039281019329,peer,metac-o1-preview,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,240416,-48.56209276828719,baseline,metac-o1-preview,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,240416,-68.89240965173236,spot_peer,metac-o1-preview,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,240416,-144.51858789480818,spot_baseline,metac-o1-preview,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,246118,80.18451992037252,peer,laylaps,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,246118,1.43756004727108,relative_legacy,laylaps,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,246118,163.09723571335542,spot_peer,laylaps,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,246118,74.58274383888582,spot_baseline,laylaps,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34920,"How many total likes will be made on Bluesky on March 30, 2025?",2025-02-22 03:56:09.879151+00,246118,39.84511399246508,baseline,laylaps,True,27000979.0,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.7,2025-02-26 02:00:00+00,35453 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,189869,-52.62493017642948,spot_peer,VeritasAI,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,189869,-131.26237409652572,baseline,VeritasAI,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,189869,-32.49924603170752,peer,VeritasAI,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,189869,-1.155182032543752,relative_legacy,VeritasAI,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,189869,-159.05107146586167,spot_baseline,VeritasAI,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,191935,-215.8744056767655,spot_baseline,pgodzinai,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,191935,-163.31059999272054,baseline,pgodzinai,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,191935,-78.67142016746642,peer,pgodzinai,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,191935,-2.320210320488247,relative_legacy,pgodzinai,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,191935,-112.4389661879072,spot_peer,pgodzinai,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,191975,0.2574623026607245,relative_legacy,jkraybill_bot,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,191975,55.17855300917462,spot_peer,jkraybill_bot,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,191975,-56.63776243953775,spot_baseline,jkraybill_bot,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,191975,18.206898082593373,peer,jkraybill_bot,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,191975,-19.12453590297163,baseline,jkraybill_bot,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,192418,-111.51174300470277,baseline,InstitutPelFutur,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,192418,-0.2074293711368398,relative_legacy,InstitutPelFutur,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,192418,-7.932735624026221,spot_peer,InstitutPelFutur,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,192418,-116.59348664107858,spot_baseline,InstitutPelFutur,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,192418,5.479674512950051,peer,InstitutPelFutur,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,192924,-122.87752004184642,spot_baseline,acm_bot,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,192924,-14.547507624834497,spot_peer,acm_bot,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,192924,-0.4421796908141928,relative_legacy,acm_bot,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,192924,-5.661750904165798,peer,acm_bot,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,192924,-50.80534404565356,baseline,acm_bot,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,220077,-87.35973000052768,spot_baseline,mmBot,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,220077,-85.24386748915647,baseline,mmBot,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,220077,41.93603428010009,peer,mmBot,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,220077,22.83963978707998,spot_peer,mmBot,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,220077,0.5993141315174116,relative_legacy,mmBot,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,227188,-8.493118152170172,peer,ProfessorSP,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,227188,-157.35598318370384,spot_baseline,ProfessorSP,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,227188,-0.3392215690285339,relative_legacy,ProfessorSP,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,227188,-50.840626721526505,spot_peer,ProfessorSP,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,227188,-26.286909570377784,baseline,ProfessorSP,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236037,0.2860203970454669,peer,metac-o1,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236037,1.8000224745412423,spot_peer,metac-o1,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236037,-107.34736644743948,spot_baseline,metac-o1,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236037,-38.40326922103552,baseline,metac-o1,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236037,-0.2437457508377944,relative_legacy,metac-o1,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236038,-0.7009113197911461,relative_legacy,metac-gpt-4o,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236038,-144.66696784328005,spot_baseline,metac-gpt-4o,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236038,-37.48376846844882,spot_peer,metac-gpt-4o,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236038,-59.360302446296586,baseline,metac-gpt-4o,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236038,-15.207419447453796,peer,metac-gpt-4o,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236040,26.537050587664105,spot_peer,metac-claude-3-5-sonnet-latest,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236040,-83.84718973997276,spot_baseline,metac-claude-3-5-sonnet-latest,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236040,0.0136419285933024,relative_legacy,metac-claude-3-5-sonnet-latest,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236040,10.948478741849168,peer,metac-claude-3-5-sonnet-latest,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236040,-33.88573975575416,baseline,metac-claude-3-5-sonnet-latest,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236041,-20.050851830795608,baseline,metac-claude-3-5-sonnet-20240620,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236041,-49.18983071197879,spot_baseline,metac-claude-3-5-sonnet-20240620,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236041,63.018481143447225,spot_peer,metac-claude-3-5-sonnet-20240620,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236041,26.113438272257365,peer,metac-claude-3-5-sonnet-20240620,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236041,0.4228669222465995,relative_legacy,metac-claude-3-5-sonnet-20240620,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236043,-0.2224809691337818,relative_legacy,metac-grok-2-1212,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236043,2.229150155658808,peer,metac-grok-2-1212,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236043,-41.945662239419065,baseline,metac-grok-2-1212,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236043,-104.12044811714952,spot_baseline,metac-grok-2-1212,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236043,5.196778611688579,spot_peer,metac-grok-2-1212,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236045,20.337945011943088,spot_peer,metac-Gemini-Exp-1206,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236045,-26.063426695202956,baseline,metac-Gemini-Exp-1206,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236045,-89.73634003690772,spot_baseline,metac-Gemini-Exp-1206,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236045,-0.0494740633548021,relative_legacy,metac-Gemini-Exp-1206,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236045,5.523924576713944,peer,metac-Gemini-Exp-1206,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236047,0.0076628493957626,relative_legacy,metac-Llama-3.1,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236047,10.31673171554589,peer,metac-Llama-3.1,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236047,26.537050587664105,spot_peer,metac-Llama-3.1,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236047,-83.84718973997276,spot_baseline,metac-Llama-3.1,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,236047,-32.647313973623746,baseline,metac-Llama-3.1,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,239758,-33.67137854332621,baseline,metac-perplexity,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,239758,-0.1163522141407461,relative_legacy,metac-perplexity,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,239758,14.792653150067174,spot_peer,metac-perplexity,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,239758,-95.00436730568984,spot_baseline,metac-perplexity,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,239758,4.876040837369569,peer,metac-perplexity,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,239759,-11.274498526181867,baseline,metac-exa,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,239759,-34.805727832328564,spot_baseline,metac-exa,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,239759,78.15964206939482,spot_peer,metac-exa,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,239759,0.4490622947170359,relative_legacy,metac-exa,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,239759,24.8559275744315,peer,metac-exa,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,240414,-21.688777405719417,spot_peer,minefrac1,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,240414,-0.3077067810370011,relative_legacy,minefrac1,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,240414,-5.41453232647526,peer,minefrac1,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,240414,-31.167095231477223,baseline,minefrac1,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,240414,-129.6617263336871,spot_baseline,minefrac1,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,240416,0.0029776701366747,relative_legacy,metac-o1-preview,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,240416,-83.84718973997276,spot_baseline,metac-o1-preview,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,240416,26.537050587664105,spot_peer,metac-o1-preview,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,240416,-31.342510854980457,baseline,metac-o1-preview,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,240416,9.734837721593458,peer,metac-o1-preview,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,246118,-69.37231569835609,baseline,laylaps,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,246118,-129.6617263336871,spot_baseline,laylaps,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,246118,-21.688777405719417,spot_peer,laylaps,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,246118,-0.5049373014800013,relative_legacy,laylaps,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,246118,-7.10984226628951,peer,laylaps,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,264059,-0.509395306175923,relative_legacy,wunderplumb,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,264059,-21.688777405719417,spot_peer,wunderplumb,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,264059,-66.44475317028127,baseline,wunderplumb,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,264059,-7.449827572381007,peer,wunderplumb,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34921,"How much in Savings Per Taxpayer will the DOGE Live Tracker report on March 31, 2025?",2025-02-22 03:56:09.909593+00,264059,-129.6617263336871,spot_baseline,wunderplumb,True,869.57,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35454 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,189869,-86.4000574049224,spot_peer,VeritasAI,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,189869,-121.54999005172694,baseline,VeritasAI,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,189869,-67.0219248049169,peer,VeritasAI,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,189869,-2.476377781779467,relative_legacy,VeritasAI,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,189869,-147.74551395168783,spot_baseline,VeritasAI,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,191935,-2.8005398185667767,relative_legacy,pgodzinai,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,191935,-164.79183330021746,spot_baseline,pgodzinai,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,191935,-80.55181865336976,peer,pgodzinai,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,191935,-132.13473321282737,baseline,pgodzinai,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,191935,-104.44910142101256,spot_peer,pgodzinai,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,191975,-3.2761790469769103,baseline,jkraybill_bot,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,191975,-13.908594122539842,spot_baseline,jkraybill_bot,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,191975,55.30962241417551,spot_peer,jkraybill_bot,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,191975,0.0865275663037721,relative_legacy,jkraybill_bot,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,191975,13.009257745907572,peer,jkraybill_bot,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,192418,-80.870300904164,spot_baseline,InstitutPelFutur,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,192418,-76.96944104767616,baseline,InstitutPelFutur,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,192418,-16.674142343004203,peer,InstitutPelFutur,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,192418,-1.2122832583190788,relative_legacy,InstitutPelFutur,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,192418,-15.591008295779485,spot_peer,InstitutPelFutur,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,220077,127.86783794492328,peer,mmBot,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,220077,34.94222548160892,baseline,mmBot,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,220077,1.9977173194961533,relative_legacy,mmBot,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,220077,108.17314812212965,spot_peer,mmBot,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,220077,36.0180690460835,spot_baseline,mmBot,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,227188,-80.870300904164,spot_baseline,ProfessorSP,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,227188,-0.2321930257839184,relative_legacy,ProfessorSP,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,227188,-2.372945871680712,peer,ProfessorSP,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,227188,-12.30843079751685,baseline,ProfessorSP,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,227188,-15.591008295779485,spot_peer,ProfessorSP,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236037,0.8896578564779749,spot_peer,metac-o1,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236037,-22.16439248922032,baseline,metac-o1,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236037,0.7735151541459842,peer,metac-o1,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236037,-0.3412089578653401,relative_legacy,metac-o1,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236037,-65.30522731592083,spot_baseline,metac-o1,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236038,-13.008002992692113,spot_peer,metac-gpt-4o,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236038,-32.00835300047082,baseline,metac-gpt-4o,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236038,-4.326372639268755,peer,metac-gpt-4o,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236038,-0.5597217949095044,relative_legacy,metac-gpt-4o,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236038,-78.4307958956926,spot_baseline,metac-gpt-4o,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236040,-32.523279654581586,baseline,metac-claude-3-5-sonnet-latest,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236040,-5.365565037748167,peer,metac-claude-3-5-sonnet-latest,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236040,-80.870300904164,spot_baseline,metac-claude-3-5-sonnet-latest,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236040,-15.591008295779485,spot_peer,metac-claude-3-5-sonnet-latest,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236040,-0.5804249442626053,relative_legacy,metac-claude-3-5-sonnet-latest,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236041,43.375028318569576,spot_baseline,metac-claude-3-5-sonnet-20240620,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236041,0.8677516938951741,relative_legacy,metac-claude-3-5-sonnet-20240620,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236041,48.69973595513237,peer,metac-claude-3-5-sonnet-20240620,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236041,17.610419061094618,baseline,metac-claude-3-5-sonnet-20240620,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236041,115.96286970476194,spot_peer,metac-claude-3-5-sonnet-20240620,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236043,-0.5465875022911794,relative_legacy,metac-grok-2-1212,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236043,-13.008002992692113,spot_peer,metac-grok-2-1212,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236043,-78.4307958956926,spot_baseline,metac-grok-2-1212,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236043,-4.294105708872615,peer,metac-grok-2-1212,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236043,-31.268681602586977,baseline,metac-grok-2-1212,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236045,5.848800912087255,baseline,metac-Gemini-Exp-1206,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236045,25.54128118829957,spot_baseline,metac-Gemini-Exp-1206,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236045,97.08007862565256,spot_peer,metac-Gemini-Exp-1206,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236045,0.3422012388491418,relative_legacy,metac-Gemini-Exp-1206,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,236045,22.176306897111683,peer,metac-Gemini-Exp-1206,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,239758,-9.82875111365295,peer,metac-perplexity,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,239758,-94.35348111828544,spot_baseline,metac-perplexity,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,239758,-29.867316757790416,spot_peer,metac-perplexity,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,239758,-0.6326168097225268,relative_legacy,metac-perplexity,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,239758,-32.472195550853954,baseline,metac-perplexity,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,239759,60.38405141953739,spot_peer,metac-exa,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,239759,20.695746978722102,peer,metac-exa,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,239759,-9.116077839698065,spot_baseline,metac-exa,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,239759,-3.0486532148817944,baseline,metac-exa,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,239759,0.2029264377782626,relative_legacy,metac-exa,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,240414,-75.40737385783935,spot_peer,minefrac1,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,240414,-17.995860125023675,peer,minefrac1,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,240414,-0.7593645071533425,relative_legacy,minefrac1,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,240414,-32.711102235194225,baseline,minefrac1,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,240414,-137.3635350461094,spot_baseline,minefrac1,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,240416,-30.376788796686476,baseline,metac-o1-preview,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,240416,-6.321891248562135,peer,metac-o1-preview,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,240416,-0.5547380562702208,relative_legacy,metac-o1-preview,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,240416,-19.24357758626489,spot_peer,metac-o1-preview,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,240416,-84.31994967851132,spot_baseline,metac-o1-preview,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,246118,-24.821485121091065,spot_peer,laylaps,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,246118,-9.23720165491914,peer,laylaps,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,246118,-47.90659034508331,baseline,laylaps,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,246118,-0.7739053939123429,relative_legacy,laylaps,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,246118,-89.5879734614027,spot_baseline,laylaps,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,264059,-0.7558314807564619,relative_legacy,wunderplumb,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,264059,-24.821485121091065,spot_peer,wunderplumb,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,264059,-89.5879734614027,spot_baseline,wunderplumb,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,264059,-9.231821474923928,peer,wunderplumb,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34922,What will be the U.S. International Investment Position in the 4th Quarter of 2024?,2025-02-22 03:56:09.940185+00,264059,-45.90309022278425,baseline,wunderplumb,True,-26.23,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35455 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,189869,-7.465970727123176,peer,VeritasAI,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,189869,39.83314277335628,baseline,VeritasAI,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,189869,-5.055967381215372,spot_peer,VeritasAI,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,189869,-0.1372282454720566,relative_legacy,VeritasAI,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,191935,18.917911635140083,spot_peer,pgodzinai,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,191935,81.55754288625727,spot_baseline,pgodzinai,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,191935,13.192698368790822,peer,pgodzinai,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,191935,63.29941280611964,baseline,pgodzinai,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,191935,0.1190106244879093,relative_legacy,pgodzinai,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,191975,1.0013209976140507,spot_peer,jkraybill_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,191975,56.88428353578793,spot_baseline,jkraybill_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,191975,22.667626272242657,baseline,jkraybill_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,191975,-0.5571910233528787,peer,jkraybill_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,191975,-0.021297392704691,relative_legacy,jkraybill_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,192075,68.70606883398922,spot_baseline,CumulativeBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,192075,46.92399945028325,baseline,CumulativeBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,192075,9.585759915229836,spot_peer,CumulativeBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,192075,4.602245877061057,peer,CumulativeBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,192075,0.0265772364088683,relative_legacy,CumulativeBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,192418,0.1153784848086811,relative_legacy,InstitutPelFutur,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,192418,72.46555460542034,baseline,InstitutPelFutur,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,192418,14.510258219705284,peer,InstitutPelFutur,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,192418,15.284186512599234,spot_peer,InstitutPelFutur,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,192924,8.933035655639394,spot_peer,acm_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,192924,2.6414079412014666,peer,acm_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,192924,27.131817977668124,baseline,acm_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,192924,67.80719051126377,spot_baseline,acm_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,192924,0.0222289308659991,relative_legacy,acm_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,220077,36.53964970479639,baseline,mmBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,220077,-17.944440797360436,peer,mmBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,220077,-0.2509777830743651,relative_legacy,mmBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,220077,-12.819659702081465,spot_peer,mmBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,227188,-32.19280948873623,spot_baseline,ProfessorSP,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,227188,-0.1407730131336522,relative_legacy,ProfessorSP,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,227188,-10.045235960528505,peer,ProfessorSP,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,227188,-5.059640260916382,baseline,ProfessorSP,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,227188,-63.68238326016441,spot_peer,ProfessorSP,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236037,0.0180353648166967,relative_legacy,metac-o1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236037,67.80719051126377,spot_baseline,metac-o1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236037,21.09151379467147,baseline,metac-o1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236037,2.1177391125302547,peer,metac-o1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236037,8.933035655639394,spot_peer,metac-o1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236038,27.52954355182988,baseline,metac-gpt-4o,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236038,2.679634977415009,peer,metac-gpt-4o,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236038,0.0222289308659991,relative_legacy,metac-gpt-4o,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236038,8.933035655639394,spot_peer,metac-gpt-4o,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236040,23.348227927903512,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236040,-0.0861259873727492,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236040,-0.0149153910878172,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236040,2.1718572507509832,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236041,2.1718572507509832,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236041,23.55811097872812,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236041,-0.0900184062394728,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236041,-0.0152641202618466,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236043,26.90467189810017,baseline,metac-grok-2-1212,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236043,2.6158427134502453,peer,metac-grok-2-1212,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236043,0.0219980254154651,relative_legacy,metac-grok-2-1212,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236043,8.933035655639394,spot_peer,metac-grok-2-1212,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236045,10.23410453040142,baseline,metac-Gemini-Exp-1206,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236045,58.496250072115615,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236045,2.1718572507509832,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236045,0.0017600631234156,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236045,0.2833997301850686,peer,metac-Gemini-Exp-1206,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236047,37.85116232537298,spot_baseline,metac-Llama-3.1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236047,-0.0923533015225101,relative_legacy,metac-Llama-3.1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236047,14.456212600044053,baseline,metac-Llama-3.1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236047,-12.819659702081465,spot_peer,metac-Llama-3.1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,236047,-5.8364629055408495,peer,metac-Llama-3.1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,239758,21.27221081964147,spot_peer,metac-perplexity,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,239758,0.0734067590863584,relative_legacy,metac-perplexity,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,239758,6.23080313567503,peer,metac-perplexity,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,239758,27.62860987066953,baseline,metac-perplexity,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,239759,-2.5473425957761964,peer,metac-exa,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,239759,48.54268271702416,spot_baseline,metac-exa,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,239759,16.72372646202535,baseline,metac-exa,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,239759,-0.046602659260487,relative_legacy,metac-exa,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,239759,-5.055967381215372,spot_peer,metac-exa,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,240414,-1.5294384551533975,peer,minefrac1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,240414,-5.055967381215372,spot_peer,minefrac1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,240414,48.54268271702416,spot_baseline,minefrac1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,240414,-0.0273080764966865,relative_legacy,minefrac1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,240414,11.42563468780516,baseline,minefrac1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,240416,21.27221081964147,spot_peer,metac-o1-preview,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,240416,30.29534940324553,baseline,metac-o1-preview,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,240416,0.080498453754228,relative_legacy,metac-o1-preview,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,240416,6.807781928517814,peer,metac-o1-preview,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,246118,67.80719051126377,spot_baseline,laylaps,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,246118,36.30822166956669,baseline,laylaps,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,246118,3.4643394516638804,peer,laylaps,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,246118,0.0217640782246987,relative_legacy,laylaps,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,246118,8.933035655639394,spot_peer,laylaps,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,250015,-12.819659702081465,spot_peer,metac-deepseek-r1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,250015,4.138333565112364,baseline,metac-deepseek-r1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,250015,-0.0207270912696158,relative_legacy,metac-deepseek-r1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,250015,-1.3959552862959863,peer,metac-deepseek-r1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,264059,26.303440583379377,spot_baseline,wunderplumb,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,264059,12.68617450594268,baseline,wunderplumb,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,264059,-11.64796931145236,peer,wunderplumb,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,264059,-0.1779310444727425,relative_legacy,wunderplumb,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34923,"Will Alabama have 1.5 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.119293+00,264059,-21.20508622026147,spot_peer,wunderplumb,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35456 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,189869,18.644522396383355,spot_peer,VeritasAI,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,189869,-82.23722786373561,baseline,VeritasAI,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,189869,34.56739430358843,peer,VeritasAI,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,189869,0.1508852762996341,relative_legacy,VeritasAI,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,189869,-100.0,spot_baseline,VeritasAI,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,191935,-133.33179701557225,baseline,pgodzinai,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,191935,-159.07448533151629,spot_baseline,pgodzinai,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,191935,-24.35015620171552,spot_peer,pgodzinai,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,191935,-0.3349269148144472,relative_legacy,pgodzinai,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,191935,-3.753240737702602,peer,pgodzinai,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,191975,0.5817739062952427,relative_legacy,jkraybill_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,191975,28.481065619319917,baseline,jkraybill_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,191975,158.63526209954125,spot_peer,jkraybill_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,191975,92.3466151810701,spot_baseline,jkraybill_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,191975,49.989102555282045,peer,jkraybill_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,192075,33.12753761538219,peer,CumulativeBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,192075,0.2611001059510138,relative_legacy,CumulativeBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,192075,30.54403435361869,spot_peer,CumulativeBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,192075,-56.388721452037714,baseline,CumulativeBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,192075,-83.65012677171204,spot_baseline,CumulativeBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,192418,52.813152219235945,peer,InstitutPelFutur,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,192418,-94.16295660866632,baseline,InstitutPelFutur,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,192418,0.2364635309579499,relative_legacy,InstitutPelFutur,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,192418,18.644522396383355,spot_peer,InstitutPelFutur,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,220077,-137.37698608620698,peer,mmBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,220077,-332.1928094887361,spot_baseline,mmBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,220077,-150.34645840919708,spot_peer,mmBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,220077,-1.9499326135152688,relative_legacy,mmBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,220077,-318.73160609130065,baseline,mmBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,227188,-12.144040748470667,baseline,ProfessorSP,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,227188,37.788285859748605,spot_peer,ProfessorSP,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,227188,-73.69655941662059,spot_baseline,ProfessorSP,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,227188,0.0,relative_legacy,ProfessorSP,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,227188,6.226918691025757,peer,ProfessorSP,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236037,-93.60682325163197,baseline,metac-o1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236037,-232.1928094887363,spot_baseline,metac-o1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236037,-77.56600445040294,spot_peer,metac-o1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236037,-0.4632105754361227,relative_legacy,metac-o1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236037,-27.567186502156424,peer,metac-o1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236038,-173.6965594166206,spot_baseline,metac-gpt-4o,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236038,-0.2274650889097766,relative_legacy,metac-gpt-4o,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236038,-10.310130560387591,peer,metac-gpt-4o,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236038,-72.3275226760455,baseline,metac-gpt-4o,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236038,-34.99216809904565,spot_peer,metac-gpt-4o,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236040,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236040,-34.99216809904565,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236040,-0.2274282874541814,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236040,-10.298856062006962,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236040,-71.90068159559885,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236041,-232.1928094887363,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236041,-96.43274437262552,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236041,-28.110790180434297,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236041,-0.4703567883739289,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236041,-77.56600445040294,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236043,-0.469455140020211,relative_legacy,metac-grok-2-1212,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236043,-28.035919503951657,peer,metac-grok-2-1212,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236043,-232.1928094887363,spot_baseline,metac-grok-2-1212,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236043,-96.08068010258468,baseline,metac-grok-2-1212,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236043,-77.56600445040294,spot_peer,metac-grok-2-1212,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236045,0.6709398611445083,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236045,56.09203247392809,peer,metac-Gemini-Exp-1206,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236045,27.80816647103557,baseline,metac-Gemini-Exp-1206,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236045,147.1409427167055,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236047,19.438721297927348,peer,metac-Llama-3.1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236047,-29.92946762331996,baseline,metac-Llama-3.1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236047,-73.69655941662059,spot_baseline,metac-Llama-3.1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236047,0.1788050566077301,relative_legacy,metac-Llama-3.1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,236047,37.788285859748605,spot_peer,metac-Llama-3.1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,239758,-0.2386729490138487,relative_legacy,metac-perplexity,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,239758,-66.68837392645197,baseline,metac-perplexity,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,239758,-10.348055018640098,peer,metac-perplexity,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,239758,-173.6965594166206,spot_baseline,metac-perplexity,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,239758,-34.99216809904565,spot_peer,metac-perplexity,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,239759,0.3341717718727918,relative_legacy,metac-exa,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,239759,10.246142572816655,baseline,metac-exa,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,239759,37.85116232537298,spot_baseline,metac-exa,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,239759,118.9732241242642,spot_peer,metac-exa,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,239759,32.62308700516276,peer,metac-exa,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,240414,31.47963765570114,peer,minefrac1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,240414,11.986058086001488,baseline,minefrac1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,240414,0.3100058084114591,relative_legacy,minefrac1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,240414,126.75456120040496,spot_peer,minefrac1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,240414,48.54268271702416,spot_baseline,minefrac1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,240416,-94.10721314955308,baseline,metac-o1-preview,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,240416,-232.1928094887363,spot_baseline,metac-o1-preview,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,240416,-77.56600445040294,spot_peer,metac-o1-preview,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,240416,-0.4645546174727795,relative_legacy,metac-o1-preview,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,240416,-27.669960410096284,peer,metac-o1-preview,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,246118,-173.6965594166206,spot_baseline,laylaps,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,246118,-11.64487547867862,peer,laylaps,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,246118,-34.99216809904565,spot_peer,laylaps,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,246118,-0.2435452965423227,relative_legacy,laylaps,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,246118,-92.96395106326156,baseline,laylaps,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,250015,-54.22854900586115,baseline,metac-deepseek-r1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,250015,-0.2385940902177074,relative_legacy,metac-deepseek-r1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,250015,-34.99216809904565,spot_peer,metac-deepseek-r1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,250015,-9.878878577056392,peer,metac-deepseek-r1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,250015,-173.6965594166206,spot_baseline,metac-deepseek-r1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,264059,-173.6965594166206,spot_baseline,wunderplumb,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,264059,-89.18533617624435,baseline,wunderplumb,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,264059,-11.362704699915849,peer,wunderplumb,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,264059,-0.2275132624324436,relative_legacy,wunderplumb,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34924,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 03:56:10.151021+00,264059,-34.99216809904565,spot_peer,wunderplumb,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,0.85,2025-02-26 02:00:00+00,35457 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,189869,-5.480266270711401,spot_peer,VeritasAI,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,189869,48.34503110621996,baseline,VeritasAI,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,189869,-5.004981465739608,peer,VeritasAI,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,189869,-0.0483625103487825,relative_legacy,VeritasAI,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,191935,76.55347463629771,spot_baseline,pgodzinai,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,191935,66.04148193237964,baseline,pgodzinai,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,191935,6.981623910668949,peer,pgodzinai,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,191935,0.1008739077414633,relative_legacy,pgodzinai,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,191935,7.661863739459224,spot_peer,pgodzinai,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,191975,-1.5866904057355615,spot_peer,jkraybill_bot,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,191975,0.0,relative_legacy,jkraybill_bot,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,191975,63.846004921378096,spot_baseline,jkraybill_bot,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,191975,-0.181789075850257,peer,jkraybill_bot,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,191975,7.314915492923597,baseline,jkraybill_bot,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,192075,-0.2591617161455082,relative_legacy,CumulativeBot,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,192075,22.03299548795556,spot_baseline,CumulativeBot,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,192075,14.549878138490502,baseline,CumulativeBot,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,192075,-21.533517091855977,peer,CumulativeBot,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,192075,-32.01838848521394,spot_peer,CumulativeBot,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,192418,0.1008739077414633,relative_legacy,InstitutPelFutur,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,192418,6.981623910668949,peer,InstitutPelFutur,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,192418,71.62071615387848,baseline,InstitutPelFutur,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,192418,7.661863739459224,spot_peer,InstitutPelFutur,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,220077,73.02217072776676,baseline,mmBot,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,220077,6.981623910668949,peer,mmBot,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,220077,0.1008739077414633,relative_legacy,mmBot,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,220077,7.661863739459224,spot_peer,mmBot,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,227188,1.2100613552031745,peer,ProfessorSP,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,227188,0.0183817507879326,relative_legacy,ProfessorSP,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,227188,76.55347463629771,spot_baseline,ProfessorSP,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,227188,7.661863739459224,spot_peer,ProfessorSP,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,227188,12.1166678714044,baseline,ProfessorSP,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236037,3.241900273614461,peer,metac-o1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236037,0.0541769458019768,relative_legacy,metac-o1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236037,31.555851784713163,baseline,metac-o1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236037,7.661863739459224,spot_peer,metac-o1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236037,76.55347463629771,spot_baseline,metac-o1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236038,-5.480266270711401,spot_peer,metac-gpt-4o,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236038,-2.2453523722933992,peer,metac-gpt-4o,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236038,24.533751841209572,baseline,metac-gpt-4o,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236038,58.496250072115615,spot_baseline,metac-gpt-4o,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236038,-0.0209670565965288,relative_legacy,metac-gpt-4o,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236040,3.283524737200817,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236040,0.0544775915684967,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236040,7.661863739459224,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236040,31.936768465435264,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236041,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236041,28.37349373240233,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236041,0.6130854012700051,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236041,0.0179940158497367,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236041,1.2962784487335792,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236043,0.0545096890268898,relative_legacy,metac-grok-2-1212,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236043,7.661863739459224,spot_peer,metac-grok-2-1212,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236043,31.9610204794677,baseline,metac-grok-2-1212,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236043,3.286827803407953,peer,metac-grok-2-1212,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236043,76.55347463629771,spot_baseline,metac-grok-2-1212,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236045,58.496250072115615,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236045,23.18795659840425,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236045,-5.480266270711401,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236045,-0.0174180463383496,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236045,-2.1162657618736582,peer,metac-Gemini-Exp-1206,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236047,0.0179940158497367,relative_legacy,metac-Llama-3.1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236047,28.3345456082189,baseline,metac-Llama-3.1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236047,0.6106610451527028,peer,metac-Llama-3.1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236047,1.2962784487335792,spot_peer,metac-Llama-3.1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,239758,22.86799149159414,baseline,metac-perplexity,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,239758,-2.083388619724723,peer,metac-perplexity,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,239758,-5.480266270711401,spot_peer,metac-perplexity,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,239758,58.496250072115615,spot_baseline,metac-perplexity,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,239758,-0.0164094255345358,relative_legacy,metac-perplexity,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,239759,7.661863739459224,spot_peer,metac-exa,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,239759,76.55347463629771,spot_baseline,metac-exa,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,239759,0.0362627615858851,relative_legacy,metac-exa,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,239759,2.070113919487544,peer,metac-exa,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,239759,20.367746085408523,baseline,metac-exa,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,240414,-0.0101987145355602,relative_legacy,minefrac1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,240414,14.572720976225062,baseline,minefrac1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,240414,-5.480266270711401,spot_peer,minefrac1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,240414,58.496250072115615,spot_baseline,minefrac1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,240414,-1.3427660789995437,peer,minefrac1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,240416,31.67622142806912,baseline,metac-o1-preview,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,240416,7.661863739459224,spot_peer,metac-o1-preview,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,240416,0.0541932006945382,relative_legacy,metac-o1-preview,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,240416,3.255257621220566,peer,metac-o1-preview,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,246118,-12.724517776841314,spot_peer,laylaps,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,246118,25.997447850886235,baseline,laylaps,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,246118,-6.546082225268791,peer,laylaps,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,246118,-0.0716773465050569,relative_legacy,laylaps,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,246118,48.54268271702416,spot_baseline,laylaps,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,250015,-5.480266270711401,spot_peer,metac-deepseek-r1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,250015,-0.0117762950054412,relative_legacy,metac-deepseek-r1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,250015,19.967342492164164,baseline,metac-deepseek-r1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,250015,-1.814898407807052,peer,metac-deepseek-r1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,264059,4.352737210848983,peer,wunderplumb,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,264059,0.070980427207411,relative_legacy,wunderplumb,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,264059,7.661863739459224,spot_peer,wunderplumb,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,264059,76.55347463629771,spot_baseline,wunderplumb,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34925,"Will the median person on Bloomberg's Billionaires Index be from the United States on March 20, 2025?",2025-02-22 03:56:10.181595+00,264059,38.988359533147225,baseline,wunderplumb,True,yes,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35458 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,189869,-0.5681864955770392,relative_legacy,VeritasAI,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,189869,-142.80566643395343,baseline,VeritasAI,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,189869,-173.6965594166206,spot_baseline,VeritasAI,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,189869,-72.10681362691773,spot_peer,VeritasAI,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,189869,-62.54935385563506,peer,VeritasAI,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,191935,-21.78365813095818,peer,pgodzinai,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,191935,-109.95356735509148,spot_baseline,pgodzinai,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,191935,-0.0441196693593035,relative_legacy,pgodzinai,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,191935,-25.71437463761864,spot_peer,pgodzinai,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,191935,-94.84846510907325,baseline,pgodzinai,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,191975,20.4917170370945,baseline,jkraybill_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,191975,30.175548785837933,peer,jkraybill_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,191975,71.07605238188123,spot_baseline,jkraybill_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,191975,0.3850650120387411,relative_legacy,jkraybill_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,191975,106.0398044068291,spot_peer,jkraybill_bot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,192075,69.08628199423899,peer,CumulativeBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,192075,59.93177936982264,spot_baseline,CumulativeBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,192075,40.27682103644552,baseline,CumulativeBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,192075,1.0018998408019113,relative_legacy,CumulativeBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,192075,97.92895191824546,spot_peer,CumulativeBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,192418,-0.9865405179605256,relative_legacy,InstitutPelFutur,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,192418,-189.3688093808834,baseline,InstitutPelFutur,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,192418,-93.80130981003263,spot_peer,InstitutPelFutur,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,192418,-203.50469470992005,spot_baseline,InstitutPelFutur,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,192418,-100.64578286387112,peer,InstitutPelFutur,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,220077,1.6195065888189653,relative_legacy,mmBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,220077,110.02629718883342,spot_peer,mmBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,220077,72.5803477074691,baseline,mmBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,220077,122.33897414848974,peer,mmBot,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,227188,-26.10263862833312,baseline,ProfessorSP,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,227188,-173.6965594166206,spot_baseline,ProfessorSP,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,227188,-0.1502772347132364,relative_legacy,ProfessorSP,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,227188,-72.10681362691773,spot_peer,ProfessorSP,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,227188,-10.836012555835914,peer,ProfessorSP,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236037,-18.470123131488705,spot_peer,metac-o1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236037,-100.0,spot_baseline,metac-o1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236037,-7.207022182424044,peer,metac-o1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236037,-39.32119883590055,baseline,metac-o1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236037,-0.0994737838115709,relative_legacy,metac-o1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236038,-173.6965594166206,spot_baseline,metac-gpt-4o,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236038,-72.00080857106961,baseline,metac-gpt-4o,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236038,-30.22206997393563,peer,metac-gpt-4o,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236038,-0.4198302675366659,relative_legacy,metac-gpt-4o,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236038,-72.10681362691773,spot_peer,metac-gpt-4o,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236040,-71.256256152434,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236040,-29.8792338644764,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236040,-0.4149554505362278,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236040,-72.10681362691773,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236040,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236041,81.85857859639212,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236041,15.615196232187714,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236041,34.01380820384978,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236041,0.4528935112685229,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236043,89.6399156725329,spot_peer,metac-grok-2-1212,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236043,19.86586338225829,baseline,metac-grok-2-1212,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236043,36.955344590546765,peer,metac-grok-2-1212,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236043,0.4954506462926904,relative_legacy,metac-grok-2-1212,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236045,0.0332947364846183,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236045,4.262722292691124,peer,metac-Gemini-Exp-1206,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236045,-14.40717758503274,baseline,metac-Gemini-Exp-1206,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236045,16.85946171373864,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236045,-51.45731728297583,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236047,30.301470789900183,peer,metac-Llama-3.1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236047,73.45409429067077,spot_peer,metac-Llama-3.1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236047,10.76233128719804,baseline,metac-Llama-3.1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,236047,0.4044457454093542,relative_legacy,metac-Llama-3.1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,239758,-114.680649978275,spot_peer,metac-perplexity,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,239758,-87.63234719738965,baseline,metac-perplexity,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,239758,-43.44288279383204,peer,metac-perplexity,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,239758,-0.5984146488552646,relative_legacy,metac-perplexity,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,239758,-232.1928094887363,spot_baseline,metac-perplexity,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,239759,-9.339901966860296,baseline,metac-exa,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,239759,-32.19280948873623,spot_baseline,metac-exa,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,239759,30.880257939313537,spot_peer,metac-exa,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,239759,0.0885665117358773,relative_legacy,metac-exa,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,239759,8.519544994295623,peer,metac-exa,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,240414,-51.45731728297583,spot_baseline,minefrac1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,240414,-12.60984224243722,baseline,minefrac1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,240414,3.791349521419118,peer,minefrac1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,240414,0.0334205180996223,relative_legacy,minefrac1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,240414,16.85946171373864,spot_peer,minefrac1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,240416,-114.680649978275,spot_peer,metac-o1-preview,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,240416,-92.53683305092626,baseline,metac-o1-preview,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,240416,-45.96120177872531,peer,metac-o1-preview,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,240416,-0.6257606487835865,relative_legacy,metac-o1-preview,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,240416,-232.1928094887363,spot_baseline,metac-o1-preview,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,246118,-173.6965594166206,spot_baseline,laylaps,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,246118,-92.9460535067048,baseline,laylaps,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,246118,-40.40540893824518,peer,laylaps,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,246118,-0.4808977514449732,relative_legacy,laylaps,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,246118,-72.10681362691773,spot_peer,laylaps,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,250015,-0.1325083875877967,peer,metac-deepseek-r1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,250015,-16.51292002617642,baseline,metac-deepseek-r1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,250015,-0.0165904698354541,relative_legacy,metac-deepseek-r1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,250015,0.6736403318765345,spot_peer,metac-deepseek-r1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,250015,-73.69655941662059,spot_baseline,metac-deepseek-r1,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,264059,103.6607118981078,spot_peer,wunderplumb,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,264059,67.80719051126377,spot_baseline,wunderplumb,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,264059,34.60068118059858,baseline,wunderplumb,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,264059,53.62009000425751,peer,wunderplumb,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34926,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 03:56:10.211877+00,264059,0.7514485811737848,relative_legacy,wunderplumb,True,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,2025-02-26 02:00:00+00,35459 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,189869,-4.840974557709501,peer,VeritasAI,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,189869,-4.357775031994414,spot_peer,VeritasAI,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,189869,-0.0657941276302375,relative_legacy,VeritasAI,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,189869,61.395953425088,baseline,VeritasAI,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,190710,-4.357775031994414,spot_peer,Bot_Pepa,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,190710,49.46459948498014,baseline,Bot_Pepa,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,190710,-3.433902875324708,peer,Bot_Pepa,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,190710,-0.0477649948681958,relative_legacy,Bot_Pepa,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,190710,67.80719051126377,spot_baseline,Bot_Pepa,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,191026,13.400084850427044,spot_peer,manticAI,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,191026,0.1084540184846119,relative_legacy,manticAI,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,191026,7.573884003437175,peer,manticAI,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,191026,53.57722868755983,baseline,manticAI,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,191935,7.81313865249854,spot_peer,pgodzinai,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,191935,56.93891715641034,baseline,pgodzinai,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,191935,5.033172783264543,peer,pgodzinai,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,191935,0.070980439067276,relative_legacy,pgodzinai,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,191935,84.79969065549501,spot_baseline,pgodzinai,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,191975,2.920311701593388,baseline,jkraybill_bot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,191975,-1.2245559713714098,peer,jkraybill_bot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,191975,-0.0176949873357151,relative_legacy,jkraybill_bot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,191975,-19.54306437084961,spot_peer,jkraybill_bot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,191975,46.60615023033109,spot_baseline,jkraybill_bot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,192075,1.7259873276022144,peer,CumulativeBot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,192075,0.0239706729908116,relative_legacy,CumulativeBot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,192075,31.65109141438303,baseline,CumulativeBot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,192075,80.73549220576041,spot_baseline,CumulativeBot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,192075,4.902148032606591,spot_peer,CumulativeBot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,192418,92.2958964236172,spot_baseline,InstitutPelFutur,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,192418,13.182311675338685,spot_peer,InstitutPelFutur,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,192418,0.1558306199679353,relative_legacy,InstitutPelFutur,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,192418,11.470676876109728,peer,InstitutPelFutur,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,192418,90.12249809542348,baseline,InstitutPelFutur,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,192924,59.8865602018456,baseline,acm_bot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,192924,0.0160381855857674,relative_legacy,acm_bot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,192924,1.9067692223705053,spot_peer,acm_bot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,192924,1.24932567876436,peer,acm_bot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,204737,-19.5999211959342,peer,SynapseSeer,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,204737,38.73625408359953,spot_baseline,SynapseSeer,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,204737,-25.17989390710305,spot_peer,SynapseSeer,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,204737,-0.2731079485802418,relative_legacy,SynapseSeer,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,204737,29.61729592141052,baseline,SynapseSeer,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,218666,63.079747592001695,baseline,GreeneiBot2,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,218666,7.023385607688749,peer,GreeneiBot2,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,218666,0.0974779694591128,relative_legacy,GreeneiBot2,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,218666,10.08429234677198,spot_peer,GreeneiBot2,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,218666,87.97057662822883,spot_baseline,GreeneiBot2,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,220077,0.1587994771900415,relative_legacy,mmBot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,220077,11.703311346196354,peer,mmBot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,220077,92.02796868276847,baseline,mmBot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,220077,13.400084850427044,spot_peer,mmBot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,224797,-1.6855434844333774,peer,cookics_bot_TEST,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,224797,-0.0245901335390225,relative_legacy,cookics_bot_TEST,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,224797,-1.806205064322682,spot_peer,cookics_bot_TEST,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,224797,71.36958148433591,spot_baseline,cookics_bot_TEST,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,224797,56.139622379586505,baseline,cookics_bot_TEST,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,227188,-0.0127469202663464,relative_legacy,ProfessorSP,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,227188,-1.806205064322682,spot_peer,ProfessorSP,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,227188,71.36958148433591,spot_baseline,ProfessorSP,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,227188,-1.0669770790689552,peer,ProfessorSP,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,227188,34.79435551284068,baseline,ProfessorSP,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236037,7.81313865249854,spot_peer,metac-o1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236037,0.0859424233942536,relative_legacy,metac-o1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236037,6.32304047466985,peer,metac-o1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236037,71.73567241947399,baseline,metac-o1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236038,-11.026755549543433,spot_peer,metac-gpt-4o,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236038,-0.1387121893648989,relative_legacy,metac-gpt-4o,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236038,-9.927836770806907,peer,metac-gpt-4o,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236038,50.22320005794937,baseline,metac-gpt-4o,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236038,58.496250072115615,spot_baseline,metac-gpt-4o,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236040,1.9067692223705053,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236040,65.78360570685479,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236040,1.2845054237309848,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236040,0.0162803268964755,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236041,65.65406831748288,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236041,1.2887534938400862,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236041,0.0162803268964755,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236041,1.9067692223705053,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236043,-0.0585733152209938,relative_legacy,metac-grok-2-1212,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236043,-4.357775031994414,spot_peer,metac-grok-2-1212,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236043,-4.125054836452682,peer,metac-grok-2-1212,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236043,58.06436691074812,baseline,metac-grok-2-1212,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236045,-0.0125286112297869,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236045,-0.7942190886924153,peer,metac-Gemini-Exp-1206,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236045,-0.5536644759803969,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236045,73.11832415721999,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236045,61.12401135473812,baseline,metac-Gemini-Exp-1206,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236047,-9.817298298191108,peer,metac-Llama-3.1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236047,-11.026755549543433,spot_peer,metac-Llama-3.1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236047,58.496250072115615,spot_baseline,metac-Llama-3.1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236047,49.75859470045116,baseline,metac-Llama-3.1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,236047,-0.1373300496005167,relative_legacy,metac-Llama-3.1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,237476,84.79969065549501,spot_baseline,NextWorldLab,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,237476,7.81313865249854,spot_peer,NextWorldLab,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,237476,0.0791432811212399,relative_legacy,NextWorldLab,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,237476,5.778237923185461,peer,NextWorldLab,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,237476,64.89391701279281,baseline,NextWorldLab,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,239758,71.87133506926874,baseline,metac-perplexity,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,239758,7.81313865249854,spot_peer,metac-perplexity,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,239758,0.0860778492678201,relative_legacy,metac-perplexity,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,239758,6.334774940512873,peer,metac-perplexity,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,239759,7.81313865249854,spot_peer,metac-exa,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,239759,71.11080211256072,baseline,metac-exa,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,239759,6.272187811004698,peer,metac-exa,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,239759,0.0853013762900619,relative_legacy,metac-exa,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,240414,-4.357775031994414,spot_peer,minefrac1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,240414,67.80719051126377,spot_baseline,minefrac1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,240414,34.98749809537211,baseline,minefrac1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,240414,-2.435976107275127,peer,minefrac1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,240414,-0.0311283259027631,relative_legacy,minefrac1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,240416,1.9067692223705053,spot_peer,metac-o1-preview,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,240416,0.0162037443618642,relative_legacy,metac-o1-preview,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,240416,1.2876925008223752,peer,metac-o1-preview,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,240416,65.0302022994259,baseline,metac-o1-preview,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,241715,0.0541278144213019,peer,CatrachoCaster,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,241715,74.84612330040356,spot_baseline,CatrachoCaster,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,241715,0.6838752655135575,spot_peer,CatrachoCaster,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,241715,0.0,relative_legacy,CatrachoCaster,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,241715,27.44271797755982,baseline,CatrachoCaster,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,246118,27.32222909291581,baseline,laylaps,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,246118,-18.156018936528422,spot_peer,laylaps,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,246118,-0.1420475663505787,relative_legacy,laylaps,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,246118,-10.433078855178318,peer,laylaps,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,247214,0.086345574275154,relative_legacy,ajf-bot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,247214,35.8985355890681,baseline,ajf-bot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,247214,6.242861920538612,peer,ajf-bot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,247214,17.66185723227878,spot_peer,ajf-bot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,247214,98.5500430304885,spot_baseline,ajf-bot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,250015,47.57097083010546,baseline,metac-deepseek-r1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,250015,-9.316347607770265,peer,metac-deepseek-r1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,250015,-0.1306340950279698,relative_legacy,metac-deepseek-r1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,250015,-11.026755549543433,spot_peer,metac-deepseek-r1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,262677,-3.0805762388360884,peer,pianobot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,262677,67.80719051126377,spot_baseline,pianobot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,262677,-4.357775031994414,spot_peer,pianobot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,262677,-0.0414925571713594,relative_legacy,pianobot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,262677,44.27063973924746,baseline,pianobot,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,264059,76.55347463629771,spot_baseline,wunderplumb,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,264059,67.91412105874828,baseline,wunderplumb,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,264059,1.1363370412555929,peer,wunderplumb,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,264059,0.0162803268964755,relative_legacy,wunderplumb,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34927,"Will Argentina's Chamber of Deputies impeach President Javier Milei before April 1, 2025?",2025-02-22 03:56:10.246506+00,264059,1.9067692223705053,spot_peer,wunderplumb,True,no,2025-02-26 17:00:00+00,2025-02-26 17:00:00+00,1.0,2025-02-26 17:00:00+00,35460 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,189869,-75.56693655668933,peer,VeritasAI,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,189869,-140.1926234314159,spot_baseline,VeritasAI,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,189869,-96.66642728689254,spot_peer,VeritasAI,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,189869,-2.6217778497525224,relative_legacy,VeritasAI,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,189869,-112.8111764715684,baseline,VeritasAI,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,190710,-73.47733135550425,peer,Bot_Pepa,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,190710,-126.2286045575663,spot_baseline,Bot_Pepa,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,190710,-82.16533076404869,spot_peer,Bot_Pepa,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,190710,-2.611794822474921,relative_legacy,Bot_Pepa,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,190710,-116.061000591661,baseline,Bot_Pepa,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,191026,-23.11760957462336,peer,manticAI,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,191026,-66.03392300803566,baseline,manticAI,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,191026,-1.2004698740160882,relative_legacy,manticAI,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,191026,-29.438372843106684,spot_peer,manticAI,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,191026,-75.45449692999252,spot_baseline,manticAI,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,191935,-15.126959183196146,spot_baseline,pgodzinai,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,191935,25.725447648211283,peer,pgodzinai,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,191935,-10.709568918804193,baseline,pgodzinai,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,191935,0.2231272488381477,relative_legacy,pgodzinai,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,191935,33.20945481702802,spot_peer,pgodzinai,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,192418,-72.69862494164946,spot_peer,InstitutPelFutur,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,192418,-114.32926103517104,baseline,InstitutPelFutur,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,192418,-70.70758589140618,peer,InstitutPelFutur,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,192418,-2.520116168259505,relative_legacy,InstitutPelFutur,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,192418,-117.11251746933,spot_baseline,InstitutPelFutur,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,192924,-0.3210061095849749,relative_legacy,acm_bot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,192924,6.215403079035873,spot_peer,acm_bot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,192924,-41.121231227188574,spot_baseline,acm_bot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,192924,-32.07872235186816,baseline,acm_bot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,192924,7.2885978289960605,peer,acm_bot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,218666,13.74049858752857,baseline,GreeneiBot2,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,218666,64.45932253647722,spot_peer,GreeneiBot2,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,218666,62.32859704112699,peer,GreeneiBot2,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,218666,1.1322599859890183,relative_legacy,GreeneiBot2,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,218666,14.965506028125311,spot_baseline,GreeneiBot2,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,220077,0.779962434831884,relative_legacy,mmBot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,220077,0.0434831237633522,baseline,mmBot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,220077,52.99182878485535,peer,mmBot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,220077,0.0437885977659648,spot_baseline,mmBot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,220077,48.9636928972579,spot_peer,mmBot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,224797,-0.5334335828832024,relative_legacy,cookics_bot_TEST,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,224797,1.968112895173239,peer,cookics_bot_TEST,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,224797,-44.10917496128304,baseline,cookics_bot_TEST,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,224797,-47.79779941332906,spot_baseline,cookics_bot_TEST,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,224797,-0.7179561911869362,spot_peer,cookics_bot_TEST,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,227188,17.80045277784381,peer,ProfessorSP,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,227188,35.272378184041,spot_peer,ProfessorSP,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,227188,0.1555653568121641,relative_legacy,ProfessorSP,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,227188,-6.0744305925751565,baseline,ProfessorSP,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,227188,-13.140440385331797,spot_baseline,ProfessorSP,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236037,46.715577670561615,peer,metac-o1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236037,-1.865129218646268,baseline,metac-o1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236037,0.6919966896289292,relative_legacy,metac-o1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236037,46.858677963815936,spot_peer,metac-o1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236037,-1.9832628196225923,spot_baseline,metac-o1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236038,-82.16533076404869,spot_peer,metac-gpt-4o,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236038,-126.2286045575663,spot_baseline,metac-gpt-4o,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236038,-75.85758881842243,peer,metac-gpt-4o,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236038,-119.0562865353364,baseline,metac-gpt-4o,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236038,-2.685147152246372,relative_legacy,metac-gpt-4o,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236040,1.2436628759855402,spot_baseline,metac-claude-3-5-sonnet-latest,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236040,1.1720750969971176,baseline,metac-claude-3-5-sonnet-latest,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236040,0.7839128301925324,relative_legacy,metac-claude-3-5-sonnet-latest,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236040,50.30630173126438,peer,metac-claude-3-5-sonnet-latest,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236040,50.20971618617824,spot_peer,metac-claude-3-5-sonnet-latest,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236041,50.24107707203903,peer,metac-claude-3-5-sonnet-20240620,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236041,0.7831578557681647,relative_legacy,metac-claude-3-5-sonnet-20240620,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236041,1.2436628759855402,spot_baseline,metac-claude-3-5-sonnet-20240620,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236041,1.170393672087963,baseline,metac-claude-3-5-sonnet-20240620,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236041,50.20971618617824,spot_peer,metac-claude-3-5-sonnet-20240620,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236043,36.003218058452546,peer,metac-grok-2-1212,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236043,35.272378184041,spot_peer,metac-grok-2-1212,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236043,-13.140440385331797,spot_baseline,metac-grok-2-1212,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236043,0.391929812908806,relative_legacy,metac-grok-2-1212,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236043,-12.382229758551183,baseline,metac-grok-2-1212,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236045,-21.527346882587587,baseline,metac-Gemini-Exp-1206,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236045,-26.25865288616214,spot_baseline,metac-Gemini-Exp-1206,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236045,20.457249253884747,peer,metac-Gemini-Exp-1206,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236045,0.0268691772519077,relative_legacy,metac-Gemini-Exp-1206,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236045,21.64961904856333,spot_peer,metac-Gemini-Exp-1206,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236047,-0.1577656905440037,relative_legacy,metac-Llama-3.1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236047,14.219382936450607,spot_peer,metac-Llama-3.1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236047,-33.41369506819661,spot_baseline,metac-Llama-3.1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236047,15.923808639952638,peer,metac-Llama-3.1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,236047,-31.381078454734567,baseline,metac-Llama-3.1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,237476,1.2436639597994523,spot_baseline,NextWorldLab,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,237476,0.2487835487129788,relative_legacy,NextWorldLab,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,237476,18.97540844158603,peer,NextWorldLab,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,237476,0.4475534524010278,baseline,NextWorldLab,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,237476,50.209717311677295,spot_peer,NextWorldLab,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,239758,0.7685783830821123,relative_legacy,metac-perplexity,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,239758,50.20971618617824,spot_peer,metac-perplexity,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,239758,49.12987138208276,peer,metac-perplexity,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,239758,1.1413679135651686,baseline,metac-perplexity,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,239758,1.2436628759855402,spot_baseline,metac-perplexity,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,239759,-139.02527442050177,spot_baseline,metac-exa,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,239759,-95.45418023709708,spot_peer,metac-exa,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,239759,-2.885020278967054,relative_legacy,metac-exa,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,239759,-83.72736185411311,peer,metac-exa,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,239759,-125.1982698430465,baseline,metac-exa,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,240414,-142.90318642682865,spot_baseline,minefrac1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,240414,-73.25101786683388,baseline,minefrac1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,240414,-49.24194665726067,peer,minefrac1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,240414,-1.731465541092769,relative_legacy,minefrac1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,240414,-99.48124270520576,spot_peer,minefrac1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,240416,14.219382936450607,spot_peer,metac-o1-preview,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,240416,-31.14489335760108,baseline,metac-o1-preview,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,240416,15.885070687840624,peer,metac-o1-preview,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,240416,-0.1544856905030945,relative_legacy,metac-o1-preview,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,240416,-33.41369506819661,spot_baseline,metac-o1-preview,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,246118,0.9991254770411752,relative_legacy,laylaps,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,246118,71.26271255926892,spot_peer,laylaps,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,246118,21.51691864266547,spot_baseline,laylaps,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,246118,15.670328258444131,baseline,laylaps,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,246118,54.2497878607772,peer,laylaps,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,247214,41.16001544040733,spot_baseline,ajf-bot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,247214,91.66131308000088,spot_peer,ajf-bot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,247214,0.1689088147571198,relative_legacy,ajf-bot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,247214,4.461220574406503,baseline,ajf-bot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,247214,9.934916967698031,peer,ajf-bot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,250015,-24.29761795104269,spot_baseline,metac-deepseek-r1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,250015,23.6860784042643,spot_peer,metac-deepseek-r1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,250015,0.0589261972828889,relative_legacy,metac-deepseek-r1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,250015,-19.02209873717857,baseline,metac-deepseek-r1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,250015,21.06731887253448,peer,metac-deepseek-r1,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,262677,-83.23594159691757,spot_peer,pianobot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,262677,-77.00114020267011,baseline,pianobot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,262677,-48.33469440598049,peer,pianobot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,262677,-1.7606541151214603,relative_legacy,pianobot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,262677,-127.25956313736594,spot_baseline,pianobot,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,264059,-99.69910401773411,baseline,wunderplumb,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,264059,-65.76525516675405,spot_peer,wunderplumb,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,264059,-56.96158850088127,peer,wunderplumb,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,264059,-110.43593916757888,spot_baseline,wunderplumb,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34928,"How many cases of measles will Texas report on April 1, 2025?",2025-02-22 03:56:10.441625+00,264059,-2.1477832945411683,relative_legacy,wunderplumb,True,422.0,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35461 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,189869,19.251246510620213,spot_baseline,VeritasAI,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,189869,14.680807578667215,baseline,VeritasAI,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,189869,-0.1547448510498114,relative_legacy,VeritasAI,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,189869,13.248805632656634,spot_peer,VeritasAI,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,189869,10.00388608572668,peer,VeritasAI,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,190710,0.0,baseline,Bot_Pepa,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,190710,-0.5491007962615742,relative_legacy,Bot_Pepa,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,190710,-14.506604628833202,spot_peer,Bot_Pepa,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,190710,0.0,spot_baseline,Bot_Pepa,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,190710,-14.99828652241568,peer,Bot_Pepa,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,191026,-98.89412135899784,spot_baseline,manticAI,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,191026,-157.08682192823346,spot_peer,manticAI,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,191026,-79.69777181688902,baseline,manticAI,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,191026,-127.47046315098996,peer,manticAI,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,191026,-2.072637242314679,relative_legacy,manticAI,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,191935,19.796976009790704,baseline,pgodzinai,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,191935,20.41801497321313,peer,pgodzinai,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,191935,0.0877245304259887,relative_legacy,pgodzinai,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,191935,36.94180452212195,spot_peer,pgodzinai,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,191935,35.684790742167955,spot_baseline,pgodzinai,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,192418,42.321065831573925,peer,InstitutPelFutur,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,192418,41.17843147598624,baseline,InstitutPelFutur,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,192418,42.39984532774751,spot_baseline,InstitutPelFutur,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,192418,46.62320852098718,spot_peer,InstitutPelFutur,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,192418,0.2372672124464758,relative_legacy,InstitutPelFutur,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,192924,18.78926643877625,baseline,acm_bot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,192924,15.740517186164672,peer,acm_bot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,192924,-0.0789472008447065,relative_legacy,acm_bot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,192924,20.48650797977293,spot_peer,acm_bot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,192924,24.27134135851208,spot_baseline,acm_bot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,218666,30.69853394677932,baseline,GreeneiBot2,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,218666,36.94180452212195,spot_peer,GreeneiBot2,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,218666,0.101324740244803,relative_legacy,GreeneiBot2,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,218666,35.684790742167955,spot_baseline,GreeneiBot2,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,218666,30.98289938910929,peer,GreeneiBot2,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,220077,42.32106583157393,peer,mmBot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,220077,0.237267212446476,relative_legacy,mmBot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,220077,46.623208520987184,spot_peer,mmBot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,220077,41.87610493532247,baseline,mmBot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,220077,42.39984532774752,spot_baseline,mmBot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,224797,-0.0328604242735219,relative_legacy,cookics_bot_TEST,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,224797,22.68810961011781,peer,cookics_bot_TEST,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,224797,26.133868825106504,baseline,cookics_bot_TEST,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,224797,28.279858792711256,spot_baseline,cookics_bot_TEST,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,224797,26.265772499873272,spot_peer,cookics_bot_TEST,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236037,22.465935649664623,baseline,metac-o1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236037,17.323218357758154,peer,metac-o1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236037,-0.1067128655767535,relative_legacy,metac-o1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236037,20.48650797977293,spot_peer,metac-o1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236037,24.27134135851208,spot_baseline,metac-o1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236038,-0.7963790090158991,relative_legacy,metac-gpt-4o,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236038,-11.823486114102495,baseline,metac-gpt-4o,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236038,-32.99253595256597,peer,metac-gpt-4o,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236038,-12.576938349798214,spot_baseline,metac-gpt-4o,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236038,-32.63935689189006,spot_peer,metac-gpt-4o,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236040,40.77877144312863,spot_baseline,metac-claude-3-5-sonnet-latest,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236040,38.34474044399867,baseline,metac-claude-3-5-sonnet-latest,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236040,40.098802308692,peer,metac-claude-3-5-sonnet-latest,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236040,0.206773839400373,relative_legacy,metac-claude-3-5-sonnet-latest,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236040,44.2860315123731,spot_peer,metac-claude-3-5-sonnet-latest,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236041,-23.96545604317665,peer,metac-claude-3-5-sonnet-20240620,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236041,-23.17829195849452,spot_peer,metac-claude-3-5-sonnet-20240620,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236041,-5.650870398563544,baseline,metac-claude-3-5-sonnet-20240620,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236041,-6.014711685885597,spot_baseline,metac-claude-3-5-sonnet-20240620,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236041,-0.6724432332740247,relative_legacy,metac-claude-3-5-sonnet-20240620,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236043,9.878466329608184,baseline,metac-grok-2-1212,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236043,-1.3065902865758336,peer,metac-grok-2-1212,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236043,-0.3619743914316058,relative_legacy,metac-grok-2-1212,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236043,0.6785739758524363,spot_peer,metac-grok-2-1212,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236043,10.53249128268901,spot_baseline,metac-grok-2-1212,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236045,36.94180452212195,spot_peer,metac-Gemini-Exp-1206,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236045,32.03130917788345,baseline,metac-Gemini-Exp-1206,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236045,31.972537593367505,peer,metac-Gemini-Exp-1206,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236045,0.1014508151917631,relative_legacy,metac-Gemini-Exp-1206,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236045,35.684790742167955,spot_baseline,metac-Gemini-Exp-1206,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236047,-41.980265395282885,spot_peer,metac-Llama-3.1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236047,-41.36269018192981,peer,metac-Llama-3.1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236047,-17.77339442034819,baseline,metac-Llama-3.1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236047,-19.055824107126263,spot_baseline,metac-Llama-3.1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,236047,-0.912223079310156,relative_legacy,metac-Llama-3.1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,237476,3.052457090104209,baseline,NextWorldLab,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,237476,-1.433038681792869,peer,NextWorldLab,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,237476,-0.1428746330796337,relative_legacy,NextWorldLab,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,237476,-3.5407913332015117,spot_peer,NextWorldLab,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,237476,7.605925221597158,spot_baseline,NextWorldLab,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,239758,22.515005894661197,peer,metac-perplexity,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,239758,-0.0321004328072193,relative_legacy,metac-perplexity,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,239758,26.265772499873272,spot_peer,metac-perplexity,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,239758,28.279858792711256,spot_baseline,metac-perplexity,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,239758,25.7535697648286,baseline,metac-perplexity,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,239759,19.85477803758446,peer,metac-exa,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,239759,-0.0675948356312615,relative_legacy,metac-exa,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,239759,26.30344058337939,spot_baseline,metac-exa,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,239759,23.416279184309374,spot_peer,metac-exa,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,239759,23.825586305675557,baseline,metac-exa,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,240414,1.4363181095890565,baseline,minefrac1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,240414,-5.356511496842715,peer,minefrac1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,240414,-0.2459860537178697,relative_legacy,minefrac1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,240414,-10.427650460891934,spot_peer,minefrac1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,240414,2.8291764183183754,spot_baseline,minefrac1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,240416,63.151720291689685,spot_baseline,metac-o1-preview,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,240416,0.6093797479946593,relative_legacy,metac-o1-preview,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,240416,69.33212563850478,peer,metac-o1-preview,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,240416,58.17632787553251,baseline,metac-o1-preview,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,240416,76.54214405597239,spot_peer,metac-o1-preview,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,246118,-1.3848580623020998,relative_legacy,laylaps,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,246118,-80.10859197901311,peer,laylaps,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,246118,-48.0733535941699,baseline,laylaps,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,246118,-66.09640474436812,spot_baseline,laylaps,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,246118,-109.80084074374533,spot_peer,laylaps,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,247214,-2.4719760457856537,peer,ajf-bot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,247214,5.281223141206365,spot_baseline,ajf-bot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,247214,-6.892421573944132,spot_peer,ajf-bot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,247214,-0.1442145443901408,relative_legacy,ajf-bot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,247214,1.8941176127217572,baseline,ajf-bot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,250015,34.41811554022974,spot_baseline,metac-deepseek-r1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,250015,22.58420410043785,baseline,metac-deepseek-r1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,250015,23.006700769444304,peer,metac-deepseek-r1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,250015,0.0765861633722311,relative_legacy,metac-deepseek-r1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,250015,35.11558044471192,spot_peer,metac-deepseek-r1,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,262677,-14.032381945357791,peer,pianobot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,262677,-6.014711685885597,spot_baseline,pianobot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,262677,-3.617967620807948,baseline,pianobot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,262677,-0.4116882383690525,relative_legacy,pianobot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,262677,-23.17829195849452,spot_peer,pianobot,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,264059,-36.84827970831032,spot_baseline,wunderplumb,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,264059,-67.63246950049623,spot_peer,wunderplumb,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,264059,-1.2093589961206015,relative_legacy,wunderplumb,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,264059,-63.08020522104526,peer,wunderplumb,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34929,How many incidents of unruly passengers will the FAA report for Q1 2025?,2025-02-22 03:56:10.474052+00,264059,-33.31663010889885,baseline,wunderplumb,True,301 to 350,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.85,2025-02-27 04:00:00+00,35462 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,185699,-20.423626245187723,spot_peer,MWG,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,185699,-0.2516002582441092,baseline,MWG,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,185699,-39.592867633113926,spot_baseline,MWG,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,185699,-0.1297857403304801,peer,MWG,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,185699,-0.0041875037489673,relative_legacy,MWG,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,189869,11.010346084367455,baseline,VeritasAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,189869,17.826066048545233,spot_peer,VeritasAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,189869,13.750352374993504,spot_baseline,VeritasAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,189869,18.196418279278223,peer,VeritasAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,189869,-0.0318286957570896,relative_legacy,VeritasAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,190710,-44.87763776907364,spot_peer,Bot_Pepa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,190710,-0.7683110780144579,relative_legacy,Bot_Pepa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,190710,-73.69655941662063,spot_baseline,Bot_Pepa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,190710,-35.34684906323832,peer,Bot_Pepa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,190710,-66.88535864359204,baseline,Bot_Pepa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,191026,-90.30421995490364,baseline,manticAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,191026,-54.84979584380514,peer,manticAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,191026,-1.0432539746296192,relative_legacy,manticAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,191026,-72.36417215524664,spot_peer,manticAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,191026,-112.0294233717712,spot_baseline,manticAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,191935,65.85768068279674,spot_peer,pgodzinai,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,191935,80.73549220576041,spot_baseline,pgodzinai,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,191935,0.3697765501186862,relative_legacy,pgodzinai,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,191935,45.68584223097251,peer,pgodzinai,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,191935,53.38545415463575,baseline,pgodzinai,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,192075,47.46865873799755,spot_peer,CumulativeBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,192075,22.836332546225403,baseline,CumulativeBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,192075,55.09006646475233,spot_baseline,CumulativeBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,192075,19.5926077099548,peer,CumulativeBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,192075,0.0843494063498121,relative_legacy,CumulativeBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,192418,-80.01466016224495,peer,InstitutPelFutur,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,192418,-132.19280948873623,spot_baseline,InstitutPelFutur,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,192418,-127.5389248374105,baseline,InstitutPelFutur,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,192418,-1.3674385891095633,relative_legacy,InstitutPelFutur,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,192418,-86.82230412509062,spot_peer,InstitutPelFutur,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,192924,49.91105863170104,spot_peer,acm_bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,192924,45.50463525636503,baseline,acm_bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,192924,42.57423373561261,peer,acm_bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,192924,0.3057661729908363,relative_legacy,acm_bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,192924,58.496250072115615,spot_baseline,acm_bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,204737,0.6244818040938312,relative_legacy,SynapseSeer,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,204737,62.493212575325,spot_peer,SynapseSeer,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,204737,71.65311448292898,baseline,SynapseSeer,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,204737,66.01146048492423,peer,SynapseSeer,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,204737,76.04338746701116,spot_baseline,SynapseSeer,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,218666,63.41285575250405,spot_baseline,GreeneiBot2,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,218666,53.436504871652325,spot_peer,GreeneiBot2,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,218666,0.3737256430636452,relative_legacy,GreeneiBot2,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,218666,51.3000763618091,baseline,GreeneiBot2,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,218666,47.4956878876106,peer,GreeneiBot2,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,220077,63.48244901871244,peer,mmBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,220077,66.64215008132966,baseline,mmBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,220077,0.5621508542296785,relative_legacy,mmBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,220077,56.58745737007048,spot_peer,mmBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,220077,67.80719051126377,spot_baseline,mmBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,224797,35.10752308266587,spot_peer,cookics_bot_TEST,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,224797,20.187648435417,baseline,cookics_bot_TEST,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,224797,0.108380909351952,relative_legacy,cookics_bot_TEST,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,224797,37.85116232537298,spot_baseline,cookics_bot_TEST,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,224797,28.16980614909232,peer,cookics_bot_TEST,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,227188,26.303440583379377,spot_baseline,ProfessorSP,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,227188,11.964353875177936,baseline,ProfessorSP,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,227188,12.326795519609847,peer,ProfessorSP,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,227188,-0.0338126973785588,relative_legacy,ProfessorSP,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,227188,26.827242978506916,spot_peer,ProfessorSP,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236037,-32.19280948873623,spot_baseline,metac-o1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236037,-8.032168552703398,peer,metac-o1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236037,-29.589079709604093,baseline,metac-o1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236037,-15.117423377510075,spot_peer,metac-o1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236037,-0.3915711249456559,relative_legacy,metac-o1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236038,-32.19280948873623,spot_baseline,metac-gpt-4o,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236038,-30.18832506825319,baseline,metac-gpt-4o,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236038,-15.117423377510075,spot_peer,metac-gpt-4o,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236038,-0.3908809495356976,relative_legacy,metac-gpt-4o,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236038,-8.096371026632902,peer,metac-gpt-4o,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236040,-21.200132606767102,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236040,-48.22201647328447,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236040,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236040,-28.931015717977942,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236040,-0.5714560189695623,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236041,-8.062674404111522,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236041,-0.3907930305897038,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236041,-30.136985248777314,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236041,-32.19280948873623,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236041,-15.117423377510075,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236043,-132.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236043,-86.82230412509062,spot_peer,metac-grok-2-1212,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236043,-1.3255412564391895,relative_legacy,metac-grok-2-1212,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236043,-75.9388622807945,peer,metac-grok-2-1212,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236043,-123.55897678601612,baseline,metac-grok-2-1212,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236045,26.827242978506916,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236045,26.303440583379377,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236045,28.304557923232004,peer,metac-Gemini-Exp-1206,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236045,0.1057205005052428,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236045,22.714397528075587,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236047,-29.96854088321273,baseline,metac-Llama-3.1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236047,-8.05213665509316,peer,metac-Llama-3.1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236047,-0.3916137000627958,relative_legacy,metac-Llama-3.1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,236047,-15.117423377510075,spot_peer,metac-Llama-3.1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,237476,16.57892592164008,baseline,NextWorldLab,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,237476,15.392836516691531,peer,NextWorldLab,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,237476,35.10752308266587,spot_peer,NextWorldLab,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,237476,0.015600381663466,relative_legacy,NextWorldLab,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,239758,-73.6938366016143,peer,metac-perplexity,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,239758,-1.2974499881249424,relative_legacy,metac-perplexity,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,239758,-132.19280948873623,spot_baseline,metac-perplexity,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,239758,-86.82230412509062,spot_peer,metac-perplexity,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,239758,-119.74122154341546,baseline,metac-perplexity,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,239759,-132.19280948873623,spot_baseline,metac-exa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,239759,-86.82230412509062,spot_peer,metac-exa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,239759,-74.24155597482192,peer,metac-exa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,239759,-1.3050294476172044,relative_legacy,metac-exa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,239759,-120.7435351761497,baseline,metac-exa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,240414,-15.117423377510075,spot_peer,minefrac1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,240414,-7.077517296171703,peer,minefrac1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,240414,-16.0957028152835,baseline,minefrac1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,240414,-32.19280948873623,spot_baseline,minefrac1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,240414,-0.2998880931106015,relative_legacy,minefrac1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,240416,26.827242978506916,spot_peer,metac-o1-preview,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,240416,11.744754505315598,baseline,metac-o1-preview,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,240416,12.04819051291283,peer,metac-o1-preview,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,240416,26.303440583379377,spot_baseline,metac-o1-preview,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,240416,-0.0349294480348159,relative_legacy,metac-o1-preview,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,246118,-96.28468515548474,baseline,laylaps,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,246118,-60.66497954116393,peer,laylaps,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,246118,-132.19280948873623,spot_baseline,laylaps,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,246118,-86.82230412509062,spot_peer,laylaps,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,246118,-1.105314920620741,relative_legacy,laylaps,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,247214,34.38407025047626,baseline,ajf-bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,247214,0.2111921690864542,relative_legacy,ajf-bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,247214,92.5999418556223,spot_baseline,ajf-bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,247214,74.36507015558695,spot_peer,ajf-bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,247214,27.425122720061307,peer,ajf-bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,250015,36.72132730515965,baseline,metac-deepseek-r1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,250015,49.91105863170104,spot_peer,metac-deepseek-r1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,250015,33.028632558152026,peer,metac-deepseek-r1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,250015,0.2077426331222157,relative_legacy,metac-deepseek-r1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,262677,-15.117423377510075,spot_peer,pianobot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,262677,-32.19280948873623,spot_baseline,pianobot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,262677,-0.3477012352187392,relative_legacy,pianobot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,262677,-7.7879656569418705,peer,pianobot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,262677,-19.446015054372808,baseline,pianobot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,264059,62.85896997177063,spot_peer,wunderplumb,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,264059,63.454650159617785,peer,wunderplumb,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,264059,69.45318022351593,baseline,wunderplumb,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,264059,0.5949689637926617,relative_legacy,wunderplumb,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34930,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 03:56:10.504693+00,264059,76.55347463629771,spot_baseline,wunderplumb,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,0.7,2025-02-27 04:00:00+00,35463 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,189869,-17.501559471868326,peer,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,189869,-139.10435298073395,baseline,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,189869,-173.6965594166206,spot_baseline,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,189869,-20.306798186930763,spot_peer,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,189869,-0.0829833159744436,relative_legacy,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,190710,-232.1928094887363,spot_baseline,Bot_Pepa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,190710,-57.82504642307599,peer,Bot_Pepa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,190710,-209.54974311665947,baseline,Bot_Pepa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,190710,-0.6109012219117653,relative_legacy,Bot_Pepa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,190710,-62.251464542947794,spot_peer,Bot_Pepa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,191026,0.2399521047222904,relative_legacy,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,191026,5.679853958983972,peer,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,191026,8.413726288753347,spot_peer,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,191026,-133.6427664582477,spot_baseline,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,191026,-107.75005267072416,baseline,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,191935,0.0143562115421568,relative_legacy,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,191935,-164.38561897747243,spot_baseline,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,191935,-87.91293217472743,baseline,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,191935,-7.951475174512182,peer,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,191935,-13.630399448561326,spot_peer,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,192075,-47.65038908868181,baseline,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,192075,4.240415325588057,peer,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,192075,0.1578813739232005,relative_legacy,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,192075,12.007824403636752,spot_peer,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,192075,-128.63041851566405,spot_baseline,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,192418,-60.56931871768595,peer,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,192418,-222.7637780497504,baseline,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,192418,-232.1928094887363,spot_baseline,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,192418,-0.639588665323922,relative_legacy,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,192418,-62.251464542947794,spot_peer,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,192924,32.537231857826875,spot_peer,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,192924,0.489025769525684,relative_legacy,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,192924,-77.616796500153,baseline,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,192924,24.204909724155467,peer,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,192924,-100.0,spot_baseline,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,204737,-0.1954831382168879,relative_legacy,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,204737,-28.93248187028096,spot_peer,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,204737,-185.7259827883919,spot_baseline,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,204737,-175.98080411413494,baseline,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,204737,-27.96102396949226,peer,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,218666,-22.16869779881026,peer,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,218666,-0.1587554846861103,relative_legacy,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,218666,-27.44399178902918,spot_peer,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,218666,-183.65012677171205,spot_baseline,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,218666,-139.80483472136294,baseline,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,220077,-0.0783806892242314,relative_legacy,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,220077,-19.162871243240318,peer,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,220077,-20.306798186930763,spot_peer,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,220077,-173.6965594166206,spot_baseline,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,220077,-169.81726450458115,baseline,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,224797,1.9797834454230896,relative_legacy,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,224797,48.54268271702416,spot_baseline,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,224797,129.46700023167867,peer,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,224797,45.05605376278636,baseline,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,224797,139.049585359326,spot_peer,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,227188,-0.0090635193171517,relative_legacy,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,227188,-173.6965594166206,spot_baseline,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,227188,-77.92518854872404,baseline,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,227188,-9.466323305949905,peer,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,227188,-20.306798186930763,spot_peer,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236037,-159.22410784163552,baseline,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236037,-20.306798186930763,spot_peer,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236037,-0.0830247275537782,relative_legacy,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236037,-19.82927792775716,peer,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236037,-173.6965594166206,spot_baseline,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236038,-162.44196795292137,baseline,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236038,-20.306798186930763,spot_peer,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236038,-19.945061251702683,peer,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236038,-0.0829833159744436,relative_legacy,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236038,-173.6965594166206,spot_baseline,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236040,-20.306798186930763,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236040,-0.0829833159744436,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236040,-19.96142651330275,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236040,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236040,-162.26752126842342,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236041,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236041,-162.04313175108763,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236041,-0.0828722751145102,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236041,-19.967197007373944,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236041,-20.306798186930763,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236043,-20.002659830318947,peer,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236043,-161.42504056637625,baseline,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236043,-173.6965594166206,spot_baseline,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236043,-20.306798186930763,spot_peer,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236043,-0.0828948755800733,relative_legacy,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236045,-18.2336186139,peer,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236045,-173.6965594166206,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236045,-20.306798186930763,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236045,-0.0829648187623862,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236045,-145.42099844639048,baseline,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236047,-122.68772739814564,baseline,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236047,7.8966859011374835,peer,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236047,0.3022116713207582,relative_legacy,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236047,9.453416204632754,spot_peer,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,236047,-132.19280948873626,spot_baseline,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,237476,-173.6965594166206,spot_baseline,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,237476,-20.306798186930763,spot_peer,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,237476,-0.0116357608063404,relative_legacy,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,237476,-82.72373172039144,baseline,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,237476,-10.101940658198137,peer,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,239758,123.10296330823031,spot_peer,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,239758,1.720513982907628,relative_legacy,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,239758,110.8463918403821,peer,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,239758,23.718152078387213,baseline,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,239758,26.303440583379377,spot_baseline,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,239759,-0.0830278696164771,relative_legacy,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,239759,-173.6965594166206,spot_baseline,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,239759,-20.306798186930763,spot_peer,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,239759,-19.82905449006982,peer,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,239759,-159.2169935335242,baseline,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,240414,-173.6965594166206,spot_baseline,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,240414,-20.306798186930763,spot_peer,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,240414,-0.025302923628405,relative_legacy,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,240414,-10.918420775791075,peer,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,240414,-88.65060901175447,baseline,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,240416,-0.0830304716535717,relative_legacy,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,240416,-173.6965594166206,spot_baseline,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,240416,-157.88576162136823,baseline,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,240416,-19.726981461810148,peer,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,240416,-20.306798186930763,spot_peer,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,241715,-63.41220217889288,baseline,CatrachoCaster,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,241715,-17.000967705337494,peer,CatrachoCaster,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,241715,-62.251464542947794,spot_peer,CatrachoCaster,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,241715,-232.1928094887363,spot_baseline,CatrachoCaster,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,241715,-0.1597541303905028,relative_legacy,CatrachoCaster,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,246118,0.6468450776173311,relative_legacy,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,246118,-53.78584157227299,baseline,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,246118,36.46836373100247,peer,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,246118,-73.69655941662059,spot_baseline,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,246118,51.39808256064978,spot_peer,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,247214,5.08609903542513,peer,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,247214,9.453416204632754,spot_peer,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,247214,0.1872046720064954,relative_legacy,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,247214,-132.19280948873626,spot_baseline,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,247214,-86.05706540582447,baseline,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,250015,-100.0,spot_baseline,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,250015,32.537231857826875,spot_peer,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,250015,0.3766739065634791,relative_legacy,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,250015,-59.06076589036517,baseline,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,250015,18.31456658573144,peer,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,262677,-44.50835933669025,baseline,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,262677,-73.69655941662059,spot_baseline,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,262677,51.39808256064978,spot_peer,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,262677,0.5398051065830582,relative_legacy,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,262677,30.114659283558968,peer,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,264059,51.39808256064978,spot_peer,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,264059,0.8220276992950478,relative_legacy,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,264059,-73.69655941662059,spot_baseline,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,264059,45.803976722553145,peer,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34931,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 03:56:10.535384+00,264059,-66.6961980595042,baseline,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35464 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,185699,14.577803195955772,spot_peer,MWG,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,185699,0.0078080016224206,relative_legacy,MWG,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,185699,0.8277861388654434,peer,MWG,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,185699,5.596066739868126,baseline,MWG,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,185699,98.5500430304885,spot_baseline,MWG,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,189869,-0.1614989894614629,relative_legacy,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,189869,-7.441829068317412,spot_peer,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,189869,-5.459208826265589,peer,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,189869,54.691981548543495,baseline,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,190710,1.3560149688676255,peer,Bot_Pepa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,190710,4.729084616175535,spot_peer,Bot_Pepa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,190710,0.0,relative_legacy,Bot_Pepa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,190710,84.79969065549501,spot_baseline,Bot_Pepa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,190710,22.44475272378209,baseline,Bot_Pepa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,191026,74.67158053085218,baseline,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,191026,0.0384596358332921,relative_legacy,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,191026,10.316030814104025,spot_peer,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,191026,9.004961036424204,peer,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,191935,55.740423752257165,baseline,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,191935,0.0490328590469721,relative_legacy,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,191935,7.729738516142357,peer,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,191935,96.19936774202552,spot_baseline,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,191935,12.894127115725382,spot_peer,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,192075,38.86756340133935,baseline,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,192075,88.75252707415875,spot_baseline,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,192075,7.560311948947367,spot_peer,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,192075,0.0101505435504684,relative_legacy,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,192075,3.481039154250165,peer,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,192418,14.054595327112608,spot_peer,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,192418,97.81956296816516,spot_baseline,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,192418,0.0977541425179934,relative_legacy,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,192418,16.964786983531734,peer,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,192418,93.34871036200072,baseline,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,192924,5.519485396606417,peer,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,192924,67.41224638984161,baseline,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,192924,6.437112484467298,spot_peer,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,192924,87.18436485093177,spot_baseline,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,192924,-0.0053548758841528,relative_legacy,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,204737,74.58826889022592,spot_baseline,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,204737,-2.5848675301326693,spot_peer,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,204737,-0.1274504186469724,relative_legacy,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,204737,-0.2500204768419729,peer,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,204737,70.58612648477713,baseline,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,218666,91.6858764699754,spot_baseline,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,218666,65.59500630965502,baseline,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,218666,0.0265106617348262,relative_legacy,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,218666,9.661329574365151,spot_peer,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,218666,7.325118494251159,peer,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,220077,-122.51968948332195,peer,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,220077,-1.790027864181683,relative_legacy,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,220077,-127.63407941490443,spot_peer,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,220077,-100.0,spot_baseline,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,220077,-97.26355194383196,baseline,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,224797,4.729084616175535,spot_peer,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,224797,84.79969065549501,spot_baseline,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,224797,21.49220997761314,baseline,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,224797,1.295275882969693,peer,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,224797,0.0,relative_legacy,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,227188,0.0269996004595561,relative_legacy,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,227188,4.733984071736781,peer,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,227188,92.5999418556223,spot_baseline,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,227188,10.316030814104025,spot_peer,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,227188,40.91486099868975,baseline,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236037,-0.0318681201070806,relative_legacy,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236037,4.729084616175535,spot_peer,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236037,5.4920581008497145,peer,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236037,77.31079844741947,baseline,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236038,84.79969065549501,spot_baseline,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236038,78.94358525743766,baseline,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236038,5.872862196424944,peer,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236038,-0.032381124000737,relative_legacy,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236038,4.729084616175535,spot_peer,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236040,0.2937290360941641,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236040,71.29367958387319,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236040,-1.17728481395249,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236040,-0.1091486042038698,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236041,86.1037864052616,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236041,0.0400480739470694,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236041,10.316030814104025,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236041,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236041,11.118297210907407,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236043,11.080355507273268,peer,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236043,0.0399611472118607,relative_legacy,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236043,10.316030814104025,spot_peer,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236043,85.99188173048185,baseline,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236045,4.729084616175535,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236045,67.6831492403382,baseline,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236045,4.383484813509091,peer,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236045,-0.0238163402045893,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236047,-7.441829068317412,spot_peer,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236047,61.96617989704208,baseline,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236047,-5.760162180838237,peer,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,236047,-0.1871508720965542,relative_legacy,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,237476,10.316030814104025,spot_peer,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,237476,47.67123629090008,baseline,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,237476,5.557769020243244,peer,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,237476,0.0275861991481663,relative_legacy,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,239758,83.29110747885295,baseline,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,239758,10.421963925517549,peer,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,239758,10.316030814104025,spot_peer,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,239758,0.0384745957644341,relative_legacy,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,239759,-0.0318634589330441,relative_legacy,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,239759,4.729084616175535,spot_peer,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,239759,78.0942437526274,baseline,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,239759,5.651038083753254,peer,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,240414,-0.3078874396479727,relative_legacy,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,240414,26.303440583379377,spot_baseline,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,240414,13.310070299379138,baseline,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,240414,-18.64212393585476,peer,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,240414,-37.16897655500145,spot_peer,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,240416,10.46565316667774,peer,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,240416,0.038489121046893,relative_legacy,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,240416,10.316030814104025,spot_peer,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,240416,83.53212385823487,baseline,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,241715,15.381343461200286,baseline,CatrachoCaster,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,241715,56.55971758542251,spot_baseline,CatrachoCaster,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,241715,-15.497855020187645,spot_peer,CatrachoCaster,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,241715,-0.0769715924250791,relative_legacy,CatrachoCaster,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,241715,-4.109389270072192,peer,CatrachoCaster,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,246118,84.79969065549501,spot_baseline,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,246118,-0.0227553124087724,relative_legacy,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,246118,3.867957679412126,peer,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,246118,61.8764457376139,baseline,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,246118,4.729084616175535,spot_peer,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,247214,10.316030814104025,spot_peer,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,247214,7.124917746816617,peer,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,247214,92.5999418556223,spot_baseline,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,247214,61.04195837549155,baseline,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,247214,0.030004937402213,relative_legacy,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,250015,-1.17728481395249,spot_peer,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,250015,-0.0410763999439855,relative_legacy,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,250015,-0.3421213106721683,peer,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,250015,32.413968993312295,baseline,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,262677,4.729084616175535,spot_peer,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,262677,84.79969065549501,spot_baseline,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,262677,51.205262461600185,baseline,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,262677,3.10667885995264,peer,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,262677,-0.0176019852160074,relative_legacy,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,264059,14.407759492789587,peer,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,264059,89.08497056341645,baseline,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,264059,0.0924291098985859,relative_legacy,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,264059,14.577803195955772,spot_peer,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34932,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 03:56:10.567737+00,264059,98.5500430304885,spot_baseline,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35465 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,189869,0.1320386602004897,relative_legacy,VeritasAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,189869,-25.94830741098999,baseline,VeritasAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,189869,13.572220623127183,peer,VeritasAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,189869,18.552854504082152,spot_peer,VeritasAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,190710,-36.17871383018451,baseline,Bot_Pepa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,190710,-14.595176263506522,peer,Bot_Pepa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,190710,-132.19280948873623,spot_baseline,Bot_Pepa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,190710,-0.2209580293926788,relative_legacy,Bot_Pepa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,190710,-53.32907533176402,spot_peer,Bot_Pepa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,191026,23.612575232763987,spot_peer,manticAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,191026,-20.28834372308433,baseline,manticAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,191026,17.691972327664658,peer,manticAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,191026,0.189037151479978,relative_legacy,manticAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,191026,-25.153876699596427,spot_baseline,manticAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,191935,8.04743464529228,peer,pgodzinai,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,191935,15.9273040464521,spot_peer,pgodzinai,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,191935,-35.845397091247634,spot_baseline,pgodzinai,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,191935,-21.49819858327188,baseline,pgodzinai,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,191935,0.0607845505139381,relative_legacy,pgodzinai,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,192075,-69.81777177916632,baseline,CumulativeBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,192075,-0.5185459560701154,relative_legacy,CumulativeBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,192075,-102.0701924387292,spot_peer,CumulativeBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,192075,-200.0,spot_baseline,CumulativeBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,192075,-35.79128529920632,peer,CumulativeBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,192418,1.1942140571860964,relative_legacy,InstitutPelFutur,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,192418,72.5263385735384,baseline,InstitutPelFutur,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,192418,89.01662266034472,peer,InstitutPelFutur,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,192418,96.72178215792896,spot_peer,InstitutPelFutur,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,192924,-15.200309344504996,spot_baseline,acm_bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,192924,22.29619732950745,peer,acm_bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,192924,-11.643530685129912,baseline,acm_bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,192924,30.76739153511452,spot_peer,acm_bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,192924,0.2509978509530162,relative_legacy,acm_bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,204737,67.8443063397532,peer,SynapseSeer,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,204737,44.26202561638557,baseline,SynapseSeer,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,204737,46.25758880422043,spot_baseline,SynapseSeer,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,204737,74.94451476096712,spot_peer,SynapseSeer,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,204737,0.906601017003292,relative_legacy,SynapseSeer,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,218666,47.47634167260762,peer,GreeneiBot2,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,218666,44.78436443620854,spot_baseline,GreeneiBot2,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,218666,73.88553265442823,spot_peer,GreeneiBot2,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,218666,0.5972505510972543,relative_legacy,GreeneiBot2,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,218666,29.71651710930094,baseline,GreeneiBot2,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,220077,1.0237078426189885,relative_legacy,mmBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,220077,83.74190066640243,spot_peer,mmBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,220077,58.496250072115615,spot_baseline,mmBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,220077,56.59235496012565,baseline,mmBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,220077,76.52546415227809,peer,mmBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,227188,22.56733376451451,peer,ProfessorSP,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,227188,51.5776858793376,spot_peer,ProfessorSP,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,227188,0.2786690507198157,relative_legacy,ProfessorSP,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,227188,6.215070251281389,baseline,ProfessorSP,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,227188,13.750352374993504,spot_baseline,ProfessorSP,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236037,-157.52844796296563,baseline,metac-o1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236037,-173.6965594166206,spot_baseline,metac-o1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236037,-83.16277173417093,spot_peer,metac-o1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236037,-1.1094203524056596,relative_legacy,metac-o1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236037,-78.18991451308709,peer,metac-o1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236038,-68.53132123973339,baseline,metac-gpt-4o,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236038,-13.143572138428029,peer,metac-gpt-4o,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236038,-0.2060875905985009,relative_legacy,metac-gpt-4o,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236038,-11.280841898324756,spot_peer,metac-gpt-4o,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236038,-73.69655941662063,spot_baseline,metac-gpt-4o,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236040,-100.0,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236040,-30.806450626019966,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236040,-0.4485413330155913,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236040,-30.18826260288301,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236040,-92.84381045030652,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236041,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236041,4.705154528205722,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236041,2.0740255050974743,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236041,-47.7356235774237,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236041,0.001979864165941,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236043,-52.25706230439656,peer,metac-grok-2-1212,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236043,-122.31309984822332,baseline,metac-grok-2-1212,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236043,-132.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236043,-53.32907533176402,spot_peer,metac-grok-2-1212,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236043,-0.7450832327879316,relative_legacy,metac-grok-2-1212,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236045,-99.89090733862376,peer,metac-Gemini-Exp-1206,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236045,-232.19280948873623,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236045,-125.2110051676102,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236045,-1.4359454742041322,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236045,-181.4958364787368,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236047,-12.621344702260298,peer,metac-Llama-3.1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236047,-67.75779313666125,baseline,metac-Llama-3.1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236047,-0.2025242115470859,relative_legacy,metac-Llama-3.1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236047,-11.280841898324756,spot_peer,metac-Llama-3.1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,236047,-73.69655941662063,spot_baseline,metac-Llama-3.1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,237476,4.705154528205722,spot_peer,NextWorldLab,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,237476,-51.45731728297583,spot_baseline,NextWorldLab,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,237476,-28.435931061411864,baseline,NextWorldLab,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,237476,1.3460421930184268,peer,NextWorldLab,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,237476,-0.0237671171220562,relative_legacy,NextWorldLab,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,239758,-83.16277173417093,spot_peer,metac-perplexity,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,239758,-155.33439489453272,baseline,metac-perplexity,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,239758,-1.0967396175671849,relative_legacy,metac-perplexity,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,239758,-173.6965594166206,spot_baseline,metac-perplexity,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,239758,-76.92419988946963,peer,metac-perplexity,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,239759,-51.45731728297583,spot_baseline,metac-exa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,239759,4.705154528205722,spot_peer,metac-exa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,239759,2.138194583353339,peer,metac-exa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,239759,0.0019530099871458,relative_legacy,metac-exa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,239759,-47.64526586932112,baseline,metac-exa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,240414,-16.192389582568943,peer,minefrac1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,240414,-50.32926497194502,baseline,minefrac1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,240414,-100.0,spot_baseline,minefrac1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,240414,-30.18826260288301,spot_peer,minefrac1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,240414,-0.2603771485656432,relative_legacy,minefrac1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,240416,-0.2025440373731652,relative_legacy,metac-o1-preview,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,240416,-11.280841898324756,spot_peer,metac-o1-preview,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,240416,-73.69655941662063,spot_baseline,metac-o1-preview,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,240416,-65.99409245166089,baseline,metac-o1-preview,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,240416,-11.954707025316774,peer,metac-o1-preview,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,246118,-132.19280948873623,spot_baseline,laylaps,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,246118,-96.40931418718432,baseline,laylaps,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,246118,-40.56117907537946,peer,laylaps,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,246118,-0.6155437174867463,relative_legacy,laylaps,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,246118,-53.32907533176402,spot_peer,laylaps,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,247214,65.99245584023782,spot_baseline,ajf-bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,247214,42.49413469618191,baseline,ajf-bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,247214,55.85066972103816,peer,ajf-bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,247214,0.7149294801512449,relative_legacy,ajf-bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,247214,89.13031803699468,spot_peer,ajf-bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,250015,-51.45731728297583,spot_baseline,metac-deepseek-r1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,250015,-26.737392249520028,baseline,metac-deepseek-r1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,250015,4.705154528205722,spot_peer,metac-deepseek-r1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,250015,-0.0185886442263173,relative_legacy,metac-deepseek-r1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,250015,1.3790995357870126,peer,metac-deepseek-r1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,262677,-19.409306166090957,baseline,pianobot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,262677,9.668786881471616,peer,pianobot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,262677,-32.19280948873623,spot_baseline,pianobot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,262677,0.0826908648509497,relative_legacy,pianobot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,262677,18.552854504082152,spot_peer,pianobot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,264059,45.43347682340795,peer,wunderplumb,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,264059,12.464925204271292,baseline,wunderplumb,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,264059,13.750352374993504,spot_baseline,wunderplumb,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,264059,51.5776858793376,spot_peer,wunderplumb,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34933,"Will Canada announce a federal election before April 1, 2025?",2025-02-22 03:56:10.904884+00,264059,0.5902053327564818,relative_legacy,wunderplumb,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35466 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,185699,28.43291066817733,spot_peer,MWG,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,185699,12.05488418680406,peer,MWG,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,185699,0.0760693537204894,relative_legacy,MWG,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,185699,92.5999418556223,spot_baseline,MWG,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,185699,38.54207456003,baseline,MWG,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,189869,38.9334636262741,baseline,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,189869,-1.1977744504173036,peer,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,189869,-0.2050753856030852,relative_legacy,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,189869,-3.1582944578069987,spot_peer,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,190710,10.65529788266088,spot_peer,Bot_Pepa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,190710,-0.014314584921591,relative_legacy,Bot_Pepa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,190710,2.937864971019629,peer,Bot_Pepa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,190710,18.292549242748173,baseline,Bot_Pepa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,190710,67.80719051126377,spot_baseline,Bot_Pepa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,191026,22.839749847114323,spot_peer,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,191026,19.965526495287847,peer,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,191026,68.41218624320615,baseline,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,191026,84.79969065549501,spot_baseline,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,191026,0.0861104280526194,relative_legacy,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,191935,0.1147211838828415,relative_legacy,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,191935,26.89706500090204,spot_peer,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,191935,90.45804349213174,spot_baseline,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,191935,61.89274540599837,baseline,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,191935,19.277466620933374,peer,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,192075,57.53123306874368,spot_baseline,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,192075,-0.0724416874186877,relative_legacy,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,192075,1.711092418366162,peer,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,192075,3.286934852829714,spot_peer,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,192075,25.37202387702634,baseline,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,192418,-1.9382988751192176,relative_legacy,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,192418,-124.76104559118508,peer,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,192418,-132.75446361250027,spot_peer,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,192418,-132.19280948873626,spot_baseline,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,192418,-124.56757385246104,baseline,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,192924,58.431342740832285,baseline,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,192924,16.926810484361027,spot_peer,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,192924,0.0195840454978878,relative_legacy,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,192924,14.107350063751532,peer,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,204737,16.622102529558596,spot_peer,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,204737,0.0181415996737207,relative_legacy,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,204737,18.09743367915696,peer,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,204737,76.12852733616194,spot_baseline,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,204737,70.63095671767728,baseline,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,218666,0.0905048927349241,relative_legacy,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,218666,87.97057662822883,spot_baseline,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,218666,25.113429852504883,spot_peer,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,218666,16.35816427001773,peer,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,218666,54.6456345122773,baseline,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,220077,28.43291066817733,spot_peer,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,220077,0.1799621530626711,relative_legacy,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,220077,31.300809039656983,peer,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,220077,89.08247992348379,baseline,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,224797,12.529106053022224,baseline,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,224797,2.770322375379307,peer,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,224797,76.55347463629771,spot_baseline,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,224797,16.926810484361027,spot_peer,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,224797,0.0,relative_legacy,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,227188,20.514971655522057,spot_peer,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,227188,81.55754288625727,spot_baseline,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,227188,9.28320837345449,peer,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,227188,0.0333089709821081,relative_legacy,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,227188,35.844271771690856,baseline,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236037,69.01873769751317,baseline,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236037,76.55347463629771,spot_baseline,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236037,16.926810484361027,spot_peer,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236037,0.0203680435362515,relative_legacy,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236037,17.746988308985422,peer,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236038,-3.1582944578069987,spot_peer,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236038,-0.5356289902921635,peer,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236038,-0.2377193913529736,relative_legacy,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236038,45.00489223332389,baseline,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236040,3.978899144291432,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236040,-0.1450720185680218,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236040,6.146865677168496,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236040,54.14480306783739,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236041,0.0218626074268136,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236041,70.77649486767483,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236041,18.26478542659912,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236041,16.926810484361027,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236043,-0.0588095568953571,relative_legacy,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236043,62.549644301758086,baseline,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236043,12.347117007158303,peer,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236043,10.65529788266088,spot_peer,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236045,61.1028791156025,baseline,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236045,17.437226522851734,peer,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236045,0.0790080812243016,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236045,22.839749847114323,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236047,44.113061248102525,baseline,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236047,-3.1582944578069987,spot_peer,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236047,-0.2335151444163751,relative_legacy,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236047,-0.5763846600755664,peer,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,237476,-30.672488136313653,baseline,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,237476,-44.06426713432381,peer,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,237476,-0.7420683534118053,relative_legacy,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,237476,-74.86317520538755,spot_peer,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,237476,-51.45731728297583,spot_baseline,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,239758,0.0932085963712667,relative_legacy,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,239758,22.79780016697593,peer,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,239758,22.839749847114323,spot_peer,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,239758,75.69318362284955,baseline,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,239759,78.87615756397146,baseline,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,239759,24.12104809387727,peer,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,239759,0.0985914103465726,relative_legacy,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,239759,22.839749847114323,spot_peer,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,240414,-19.104916508902683,spot_peer,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,240414,26.303440583379377,spot_baseline,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,240414,-0.2324104651981608,relative_legacy,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,240414,-9.03609545393664,peer,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,240414,13.010286493761232,baseline,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,240416,17.36026563719511,peer,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,240416,16.926810484361027,spot_peer,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,240416,0.0195836148101704,relative_legacy,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,240416,68.07137260885779,baseline,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,246118,67.80719051126377,spot_baseline,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,246118,49.502186161438885,baseline,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,246118,8.75117943442528,peer,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,246118,-0.0442676170933156,relative_legacy,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,246118,10.65529788266088,spot_peer,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,247214,23.476695914753662,peer,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,247214,77.49067110152875,baseline,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,247214,0.0964597112186097,relative_legacy,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,247214,22.839749847114323,spot_peer,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,247214,84.79969065549501,spot_baseline,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,250015,32.167356436224324,baseline,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,250015,3.978899144291432,spot_peer,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,250015,-0.0783309984400006,relative_legacy,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,250015,2.766415875147084,peer,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,262677,67.80719051126377,spot_baseline,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,262677,10.65529788266088,spot_peer,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,262677,-0.0318826961407148,relative_legacy,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,262677,40.97787052566925,baseline,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,262677,7.161356964420341,peer,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,264059,-156.73990293652977,baseline,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,264059,-173.6965594166206,spot_baseline,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,264059,-162.51467800406377,spot_peer,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,264059,-2.2376796851798804,relative_legacy,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34934,"Will Bangaladesh announce a general election before April 1, 2025?",2025-02-22 03:56:10.936874+00,264059,-146.0706712431554,peer,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35467 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,185699,0.4107658333156757,relative_legacy,MWG,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,185699,48.54268271702416,spot_baseline,MWG,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,185699,58.90914952867992,spot_peer,MWG,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,185699,25.045369402130497,baseline,MWG,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,185699,29.83932743245669,peer,MWG,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,189869,42.94354340371388,spot_peer,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,189869,20.370817852456486,baseline,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,189869,0.2960235069165582,relative_legacy,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,189869,31.345335973300543,peer,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,191026,58.90914952867992,spot_peer,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,191026,48.54268271702416,spot_baseline,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,191026,0.4754776333267549,relative_legacy,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,191026,45.71927182142997,peer,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,191026,39.1703308423993,baseline,manticAI,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,191935,-0.0118176698045908,relative_legacy,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,191935,4.138120587900213,peer,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,191935,-13.93674615806661,baseline,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,191935,-21.75914350726266,spot_baseline,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,191935,8.439297156115277,spot_peer,pgodzinai,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,192075,-8.551123275985033,peer,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,192075,-20.556562716664203,spot_peer,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,192075,-0.0789099110987315,relative_legacy,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,192075,-62.14883767462704,spot_baseline,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,192075,-25.58606382113214,baseline,CumulativeBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,192418,-217.6412864417433,baseline,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,192418,-142.63154448062042,spot_peer,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,192418,-232.1928094887363,spot_baseline,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,192418,-2.090337631162691,relative_legacy,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,192418,-136.2781501568262,peer,InstitutPelFutur,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,192924,-0.5641621287837051,relative_legacy,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,192924,-65.91619044150958,baseline,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,192924,-86.24964762500649,spot_baseline,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,192924,-37.85859291392069,spot_peer,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,192924,-31.198089865028905,peer,acm_bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,204737,62.69294351373469,peer,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,204737,51.3191774479669,baseline,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,204737,62.54360765199004,spot_peer,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,204737,53.60529002402098,spot_baseline,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,204737,0.6031243119292969,relative_legacy,SynapseSeer,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,218666,-66.07371763903001,baseline,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,218666,-58.18304596190027,spot_peer,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,218666,-34.50747845385504,peer,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,218666,-114.56053222468996,spot_baseline,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,218666,-0.516420899903896,relative_legacy,GreeneiBot2,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,220077,-1.572956433174065,relative_legacy,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,220077,-166.3101414035646,baseline,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,220077,-99.35373866827148,peer,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,220077,-100.63694399798908,spot_peer,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,220077,-173.6965594166206,spot_baseline,mmBot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,224797,-11.863960281288907,baseline,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,224797,-2.969855361829072,peer,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,224797,0.0,relative_legacy,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,224797,-12.881094172171572,spot_peer,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,224797,-51.45731728297583,spot_baseline,cookics_bot_TEST,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,227188,-132.19280948873626,spot_baseline,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,227188,-57.3885707315063,baseline,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,227188,-70.84130077976894,spot_peer,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,227188,-0.3920527427010239,relative_legacy,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,227188,-30.886075323976986,peer,ProfessorSP,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236037,-73.69655941662059,spot_baseline,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236037,-66.06846185017977,baseline,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236037,-27.837110320804467,peer,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236037,-0.5897554060682658,relative_legacy,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236037,-28.8467002971376,spot_peer,metac-o1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236038,-51.45731728297583,spot_baseline,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236038,-47.59319791858012,baseline,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236038,-12.881094172171572,spot_peer,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236038,-0.3928473666992946,relative_legacy,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236038,-12.931639937258884,peer,metac-gpt-4o,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236040,-70.84130077976894,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236040,-132.19280948873626,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236040,-67.2026429974845,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236040,-122.05177328393214,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236040,-1.1382706408954737,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236041,-0.3928262151945292,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236041,-47.4120443394625,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236041,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236041,-12.881094172171572,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236041,-13.006206156604865,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236043,-29.59597298164457,baseline,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236043,-32.19280948873623,spot_baseline,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236043,0.9489429210825592,spot_peer,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236043,-0.2156684896346946,relative_legacy,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236043,-0.1656090233408725,peer,metac-grok-2-1212,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236045,56.373476132154174,baseline,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236045,0.666045689771665,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236045,79.0181653100648,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236045,56.466660478348096,peer,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236047,-0.2177036170151056,relative_legacy,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236047,0.9489429210825592,spot_peer,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236047,-0.5056216063420358,peer,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,236047,-29.277847153827956,baseline,metac-Llama-3.1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,237476,-63.432838751210106,baseline,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,237476,-100.0,spot_baseline,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,237476,-47.73000439365434,spot_peer,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,237476,-0.5051550711082968,relative_legacy,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,237476,-31.610112031125063,peer,NextWorldLab,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,239758,0.6695387919416991,relative_legacy,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,239758,67.80719051126377,spot_baseline,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,239758,60.160450573269046,baseline,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,239758,63.33972598209253,peer,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,239758,72.73918662193405,spot_peer,metac-perplexity,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,239759,26.303440583379377,spot_baseline,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,239759,24.568579887464985,baseline,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,239759,0.3263234255862827,relative_legacy,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,239759,42.94354340371388,spot_peer,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,239759,40.36063285326889,peer,metac-exa,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,240414,42.94354340371388,spot_peer,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,240414,0.2960235069165582,relative_legacy,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,240414,12.955176519157227,baseline,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,240414,20.73614021998603,peer,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,240414,26.303440583379377,spot_baseline,minefrac1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,240416,23.094197549066426,baseline,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,240416,36.11416169432825,peer,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,240416,0.2960034361021003,relative_legacy,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,240416,42.94354340371388,spot_peer,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,240416,26.303440583379377,spot_baseline,metac-o1-preview,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,246118,0.2960235069165582,relative_legacy,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,246118,29.49330864492428,peer,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,246118,42.94354340371388,spot_peer,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,246118,26.303440583379377,spot_baseline,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,246118,19.187387548394145,baseline,laylaps,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,247214,66.05483978982846,spot_peer,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,247214,51.51331834218241,baseline,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,247214,56.80177182823102,peer,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,247214,0.5809383033038401,relative_legacy,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,247214,58.496250072115615,spot_baseline,ajf-bot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,250015,-100.63694399798908,spot_peer,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,250015,-173.6965594166206,spot_baseline,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,250015,-47.65788353427498,peer,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,250015,-0.6451549152053409,relative_legacy,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,250015,-81.73708708903023,baseline,metac-deepseek-r1,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,262677,0.365741759054007,relative_legacy,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,262677,37.85116232537298,spot_baseline,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,262677,22.85227283490356,baseline,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,262677,29.94165200888248,peer,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,262677,51.233680984187295,spot_peer,pianobot,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,264059,42.94354340371388,spot_peer,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,264059,23.75218288332324,baseline,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,264059,37.67228367412456,peer,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,264059,0.3105319244805852,relative_legacy,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34935,"Will Serbia announce a general election before April 1, 2025?",2025-02-22 03:56:10.967517+00,264059,26.303440583379377,spot_baseline,wunderplumb,True,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35468 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,185699,-3.1655477999198065,peer,MWG,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,185699,-0.0973135792229158,relative_legacy,MWG,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,185699,-3.521026103049861,spot_peer,MWG,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,185699,60.40713236688608,spot_baseline,MWG,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,185699,36.4072194378693,baseline,MWG,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,189869,61.9773468079609,baseline,VeritasAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,189869,8.056689366327936,spot_peer,VeritasAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,189869,4.65624245733092,peer,VeritasAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,189869,-0.0014534762255732,relative_legacy,VeritasAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,190710,76.2341247802174,baseline,Bot_Pepa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,190710,10.585661840156272,peer,Bot_Pepa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,190710,0.0721950332837009,relative_legacy,Bot_Pepa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,190710,13.969628729081254,spot_peer,Bot_Pepa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,190710,84.79969065549501,spot_baseline,Bot_Pepa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,191026,67.66332198446105,baseline,manticAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,191026,8.87935982691472,peer,manticAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,191026,83.83467365212306,spot_baseline,manticAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,191026,13.277664437619515,spot_peer,manticAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,191026,0.0573133909879971,relative_legacy,manticAI,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,191935,16.018176380410175,spot_peer,pgodzinai,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,191935,0.0678433350486525,relative_legacy,pgodzinai,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,191935,8.85649584276792,peer,pgodzinai,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,191935,54.7082002687992,baseline,pgodzinai,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,191935,87.65660587517208,spot_baseline,pgodzinai,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,192075,-0.9051334342912822,relative_legacy,CumulativeBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,192075,-58.73677214470016,baseline,CumulativeBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,192075,-148.30098346890273,spot_peer,CumulativeBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,192075,-141.50374992788437,spot_baseline,CumulativeBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,192075,-61.60096689675626,peer,CumulativeBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,192418,16.02976086007247,peer,InstitutPelFutur,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,192418,19.56278955014424,spot_peer,InstitutPelFutur,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,192418,86.35291997668664,baseline,InstitutPelFutur,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,192418,0.1457314055386169,relative_legacy,InstitutPelFutur,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,192924,4.407142088883499,peer,acm_bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,192924,58.15122924239122,baseline,acm_bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,192924,76.55347463629771,spot_baseline,acm_bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,192924,8.056689366327936,spot_peer,acm_bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,192924,-0.0014534762255732,relative_legacy,acm_bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,204737,84.79969065549501,spot_baseline,SynapseSeer,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,204737,81.05471070044341,baseline,SynapseSeer,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,204737,10.690385447170382,peer,SynapseSeer,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,204737,0.0724450725126327,relative_legacy,SynapseSeer,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,204737,13.969628729081254,spot_peer,SynapseSeer,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,218666,0.016022966784467,relative_legacy,GreeneiBot2,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,218666,79.57669477823923,spot_baseline,GreeneiBot2,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,218666,10.224485763843942,spot_peer,GreeneiBot2,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,218666,42.175385098835406,baseline,GreeneiBot2,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,218666,4.763797901257365,peer,GreeneiBot2,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,220077,88.2061300738606,baseline,mmBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,220077,19.56278955014424,spot_peer,mmBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,220077,0.1467464120361459,relative_legacy,mmBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,220077,16.174287115953142,peer,mmBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,220077,92.5999418556223,spot_baseline,mmBot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,224797,1.7851767646277814,spot_peer,cookics_bot_TEST,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,224797,3.8388557558930407,peer,cookics_bot_TEST,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,224797,69.53594385197574,baseline,cookics_bot_TEST,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,224797,67.80719051126377,spot_baseline,cookics_bot_TEST,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,224797,-0.0223128197737405,relative_legacy,cookics_bot_TEST,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,227188,4.33958496363172,spot_peer,ProfessorSP,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,227188,71.36958148433588,spot_baseline,ProfessorSP,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,227188,-0.022555420245455,relative_legacy,ProfessorSP,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,227188,1.7387362939741555,peer,ProfessorSP,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,227188,31.053319502008563,baseline,ProfessorSP,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236037,76.55347463629771,spot_baseline,metac-o1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236037,68.38505833140714,baseline,metac-o1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236037,5.17648451598421,peer,metac-o1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236037,-0.0014737865225932,relative_legacy,metac-o1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236037,8.056689366327936,spot_peer,metac-o1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236038,76.55347463629771,spot_baseline,metac-gpt-4o,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236038,70.59755093928058,baseline,metac-gpt-4o,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236038,5.216773282283529,peer,metac-gpt-4o,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236038,-0.0038775299929724,relative_legacy,metac-gpt-4o,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236038,8.056689366327936,spot_peer,metac-gpt-4o,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236040,10.723563469234382,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236040,84.79969065549501,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236040,13.969628729081254,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236040,0.0719956782580686,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236040,78.0199907010536,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236041,85.02295573001253,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236041,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236041,19.56278955014424,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236041,0.1436113585942086,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236041,15.907944375995967,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236043,19.56278955014424,spot_peer,metac-grok-2-1212,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236043,84.88310052203032,baseline,metac-grok-2-1212,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236043,15.896799951467706,peer,metac-grok-2-1212,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236043,0.143489587398932,relative_legacy,metac-grok-2-1212,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236045,0.0782773547009982,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236045,87.97057662822883,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236045,61.43507859935481,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236045,9.86215483492029,peer,metac-Gemini-Exp-1206,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236045,16.243308734471785,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236047,69.32328423582358,baseline,metac-Llama-3.1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236047,8.056689366327936,spot_peer,metac-Llama-3.1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236047,-0.0019421339893702,relative_legacy,metac-Llama-3.1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236047,76.55347463629771,spot_baseline,metac-Llama-3.1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,236047,5.285244912784336,peer,metac-Llama-3.1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,237476,62.33940965100678,baseline,NextWorldLab,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,237476,11.79760362847986,peer,NextWorldLab,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,237476,0.1065732971601589,relative_legacy,NextWorldLab,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,237476,19.56278955014424,spot_peer,NextWorldLab,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,239758,8.056689366327936,spot_peer,metac-perplexity,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,239758,-0.0014534762255732,relative_legacy,metac-perplexity,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,239758,5.106144991952456,peer,metac-perplexity,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,239758,67.6466542266642,baseline,metac-perplexity,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,239759,63.65358749722863,baseline,metac-exa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,239759,-0.8553866800086772,peer,metac-exa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,239759,-0.0865183077148409,relative_legacy,metac-exa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,239759,1.7851767646277814,spot_peer,metac-exa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,239759,67.80719051126377,spot_baseline,metac-exa,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,240414,-0.0434559245286385,relative_legacy,minefrac1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,240414,0.4081508962656824,peer,minefrac1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,240414,33.69001179509549,baseline,minefrac1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,240414,1.7851767646277814,spot_peer,minefrac1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,240414,67.80719051126377,spot_baseline,minefrac1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,240416,10.259588909423146,peer,metac-o1-preview,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,240416,13.969628729081254,spot_peer,metac-o1-preview,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,240416,0.0706948644249941,relative_legacy,metac-o1-preview,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,240416,74.19777026788292,baseline,metac-o1-preview,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,246118,-0.0014534762255732,relative_legacy,laylaps,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,246118,55.894703382027,baseline,laylaps,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,246118,4.268903589022674,peer,laylaps,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,246118,8.056689366327936,spot_peer,laylaps,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,246118,76.55347463629771,spot_baseline,laylaps,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,247214,54.17100957881053,baseline,ajf-bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,247214,67.80719051126377,spot_baseline,ajf-bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,247214,1.7851767646277814,spot_peer,ajf-bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,247214,-0.0713273402721166,relative_legacy,ajf-bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,247214,-0.4344454083730787,peer,ajf-bot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,250015,3.4512293465312,peer,metac-deepseek-r1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,250015,0.0,relative_legacy,metac-deepseek-r1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,250015,36.00654090184897,baseline,metac-deepseek-r1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,250015,8.056689366327936,spot_peer,metac-deepseek-r1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,262677,76.55347463629771,spot_baseline,pianobot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,262677,8.056689366327936,spot_peer,pianobot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,262677,0.0,relative_legacy,pianobot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,262677,3.826328231846545,peer,pianobot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,262677,46.250355234209046,baseline,pianobot,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,264059,-119.91760614395176,baseline,wunderplumb,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,264059,-132.19280948873623,spot_baseline,wunderplumb,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,264059,-1.895699134286037,relative_legacy,wunderplumb,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,264059,-141.62458473053331,spot_peer,wunderplumb,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34936,"Will Butch Wilmore and Suni Williams return to Earth before April 1, 2025?",2025-02-22 03:56:11.000178+00,264059,-131.75129358150804,peer,wunderplumb,True,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,2025-02-27 04:00:00+00,35469 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,189869,-16.119964938184204,spot_peer,VeritasAI,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,189869,-15.683186141478432,peer,VeritasAI,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,189869,-0.6523540983607782,relative_legacy,VeritasAI,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,189869,30.80930677119065,spot_baseline,VeritasAI,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,189869,27.932295834852997,baseline,VeritasAI,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,190710,3.7432849706068616,peer,Bot_Pepa,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,190710,4.852368446720871,spot_peer,Bot_Pepa,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,190710,37.06122297933476,baseline,Bot_Pepa,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,190710,-0.0949826345261701,relative_legacy,Bot_Pepa,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,190710,51.08256237659889,spot_baseline,Bot_Pepa,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,191026,-2.8346908190393174,spot_peer,manticAI,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,191026,-0.3130844008049102,relative_legacy,manticAI,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,191026,-3.106239910244285,peer,manticAI,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,191026,43.65173841969737,spot_baseline,manticAI,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,191026,38.42403542604696,baseline,manticAI,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,191935,51.06863563723852,spot_baseline,pgodzinai,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,191935,4.837961474968768,spot_peer,pgodzinai,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,191935,-0.0789923604394605,relative_legacy,pgodzinai,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,191935,3.716029388897792,peer,pgodzinai,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,191935,33.91405845683063,baseline,pgodzinai,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,191975,140.40488471429072,spot_baseline,jkraybill_bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,191975,0.3672755338202331,relative_legacy,jkraybill_bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,191975,25.76232412598962,baseline,jkraybill_bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,191975,97.25477086502278,spot_peer,jkraybill_bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,191975,17.844884349444236,peer,jkraybill_bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,192075,-14.037796054554466,baseline,CumulativeBot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,192075,-80.91804889484042,spot_peer,CumulativeBot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,192075,-1.1100876757860618,relative_legacy,CumulativeBot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,192075,-34.70173949007445,peer,CumulativeBot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,192075,-31.82884105357703,spot_baseline,CumulativeBot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,192418,51.08256237659889,spot_baseline,InstitutPelFutur,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,192418,2.711732495910881,peer,InstitutPelFutur,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,192418,4.852368446720871,spot_peer,InstitutPelFutur,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,192418,49.7707633527238,baseline,InstitutPelFutur,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,192418,-0.1389988076018609,relative_legacy,InstitutPelFutur,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,192924,3.76540979481344,peer,acm_bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,192924,45.42836599118253,baseline,acm_bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,192924,-0.1237802780609106,relative_legacy,acm_bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,192924,4.852368446720871,spot_peer,acm_bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,192924,51.08256237659889,spot_baseline,acm_bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,218666,29.50700608633492,peer,GreeneiBot2,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,218666,0.6224553521344627,relative_legacy,GreeneiBot2,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,218666,40.704808820511374,spot_peer,GreeneiBot2,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,218666,85.73992140459636,spot_baseline,GreeneiBot2,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,218666,61.40262201443433,baseline,GreeneiBot2,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,220077,66.80068006089674,baseline,mmBot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,220077,21.50481342605363,spot_peer,mmBot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,220077,0.3135452983811548,relative_legacy,mmBot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,220077,20.362614715390297,peer,mmBot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,220077,67.17992585662054,spot_baseline,mmBot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,224797,24.223870312043843,baseline,cookics_bot_TEST,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,224797,-12.784159685353329,peer,cookics_bot_TEST,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,224797,-0.5669549661571578,relative_legacy,cookics_bot_TEST,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,224797,-16.119964938184204,spot_peer,cookics_bot_TEST,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,224797,30.80930677119065,spot_baseline,cookics_bot_TEST,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,227188,3.331387185074836,peer,ProfessorSP,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,227188,-0.0541944979678794,relative_legacy,ProfessorSP,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,227188,4.852368446721331,spot_peer,ProfessorSP,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,227188,51.08256237659933,spot_baseline,ProfessorSP,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,227188,24.62967608393437,baseline,ProfessorSP,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236037,4.852368446720871,spot_peer,metac-o1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236037,51.08256237659889,spot_baseline,metac-o1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236037,-0.1267886636511897,relative_legacy,metac-o1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236037,3.679022957789203,peer,metac-o1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236037,43.684816073317855,baseline,metac-o1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236038,-27.3743071930738,peer,metac-gpt-4o,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236038,-0.9855679586111976,relative_legacy,metac-gpt-4o,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236038,-31.000071927069403,spot_peer,metac-gpt-4o,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236038,16.425203348601617,spot_baseline,metac-gpt-4o,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236038,14.10910273546972,baseline,metac-gpt-4o,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236040,16.566556488739256,peer,metac-claude-3-5-sonnet-latest,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236040,0.2293438951882245,relative_legacy,metac-claude-3-5-sonnet-latest,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236040,19.732475435606077,spot_peer,metac-claude-3-5-sonnet-latest,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236040,65.46666579918791,spot_baseline,metac-claude-3-5-sonnet-latest,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236040,56.1889042829947,baseline,metac-claude-3-5-sonnet-latest,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236041,51.08256237659933,spot_baseline,metac-claude-3-5-sonnet-20240620,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236041,3.687025576849849,peer,metac-claude-3-5-sonnet-20240620,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236041,-0.1267546832270813,relative_legacy,metac-claude-3-5-sonnet-20240620,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236041,4.852368446721331,spot_peer,metac-claude-3-5-sonnet-20240620,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236041,43.83663318007993,baseline,metac-claude-3-5-sonnet-20240620,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236043,65.46666609918793,spot_baseline,metac-grok-2-1212,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236043,19.732475745950925,spot_peer,metac-grok-2-1212,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236043,0.229644567758844,relative_legacy,metac-grok-2-1212,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236043,16.579011971882295,peer,metac-grok-2-1212,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236043,56.22898832710702,baseline,metac-grok-2-1212,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236045,85.73992140459615,spot_baseline,metac-Gemini-Exp-1206,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236045,71.72276320840835,baseline,metac-Gemini-Exp-1206,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236045,33.85970930524325,peer,metac-Gemini-Exp-1206,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236045,0.7103284007340069,relative_legacy,metac-Gemini-Exp-1206,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236045,40.70480882051115,spot_peer,metac-Gemini-Exp-1206,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236047,-0.1272201716836885,relative_legacy,metac-Llama-3.1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236047,4.852368446721331,spot_peer,metac-Llama-3.1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236047,43.618896661712704,baseline,metac-Llama-3.1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236047,51.08256237659933,spot_baseline,metac-Llama-3.1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,236047,3.660472060647869,peer,metac-Llama-3.1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,237476,-78.39442012745536,spot_peer,NextWorldLab,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,237476,-29.3893332451048,spot_baseline,NextWorldLab,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,237476,-22.72150344191364,baseline,NextWorldLab,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,237476,-60.87501314631096,peer,NextWorldLab,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,237476,-1.8976540331330385,relative_legacy,NextWorldLab,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,239758,-16.11996431749381,spot_peer,metac-perplexity,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,239758,30.80930737119136,spot_baseline,metac-perplexity,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,239758,-0.6235913679478653,relative_legacy,metac-perplexity,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,239758,-14.28732376795184,peer,metac-perplexity,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,239758,26.185513750339695,baseline,metac-perplexity,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,239759,4.852368446720871,spot_peer,metac-exa,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,239759,43.49373204131887,baseline,metac-exa,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,239759,3.6738175326528193,peer,metac-exa,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,239759,-0.126743206527871,relative_legacy,metac-exa,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,239759,51.08256237659889,spot_baseline,metac-exa,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,240414,30.80930677119065,spot_baseline,minefrac1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,240414,-16.119964938184204,spot_peer,minefrac1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,240414,-0.3514663094052517,relative_legacy,minefrac1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,240414,-7.225071460425623,peer,minefrac1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,240414,15.616417261018745,baseline,minefrac1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,240416,34.16873990437057,peer,metac-o1-preview,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,240416,72.41413375608012,baseline,metac-o1-preview,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,240416,85.73992140459615,spot_baseline,metac-o1-preview,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,240416,40.70480882051115,spot_peer,metac-o1-preview,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,240416,0.7172957722793685,relative_legacy,metac-o1-preview,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,246118,-29.3893332451048,spot_baseline,laylaps,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,246118,-16.247964341877026,baseline,laylaps,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,246118,-42.55273752005596,peer,laylaps,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,246118,-1.343003537258893,relative_legacy,laylaps,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,246118,-78.39442012745536,spot_peer,laylaps,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,247214,70.68466676540014,spot_baseline,ajf-bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,247214,38.11605741640396,baseline,ajf-bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,247214,11.07115751930158,peer,ajf-bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,247214,0.1390808352780943,relative_legacy,ajf-bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,247214,25.13040746961872,spot_peer,ajf-bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,250015,85.73992140459615,spot_baseline,metac-deepseek-r1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,250015,0.6888826311026673,relative_legacy,metac-deepseek-r1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,250015,40.70480882051115,spot_peer,metac-deepseek-r1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,250015,68.94886406587523,baseline,metac-deepseek-r1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,250015,32.73771033715014,peer,metac-deepseek-r1,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,262677,30.80930677119065,spot_baseline,pianobot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,262677,-16.119964938184204,spot_peer,pianobot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,262677,-0.4508661601076983,relative_legacy,pianobot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,262677,-9.82935039162983,peer,pianobot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,262677,19.86511283713755,baseline,pianobot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,264059,-13.385416302246824,baseline,wunderplumb,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,264059,-29.3893332451048,spot_baseline,wunderplumb,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,264059,-78.39442012745536,spot_peer,wunderplumb,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,264059,-1.1109809685939336,relative_legacy,wunderplumb,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,264059,-34.7012560138977,peer,wunderplumb,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,264332,85.73992140459615,spot_baseline,krm-bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,264332,47.480431911004,baseline,krm-bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,264332,18.454812079395843,peer,krm-bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,264332,0.334530491418555,relative_legacy,krm-bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34937,What will be the IMDb rating of Severance's second season finale?,2025-02-22 03:56:11.035398+00,264332,40.70480882051115,spot_peer,krm-bot,True,9.6,2025-02-27 17:00:00+00,2025-02-27 17:00:00+00,1.0,2025-02-27 17:00:00+00,35470 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,189869,-2.157860270600667,peer,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,189869,0.0446681867084157,relative_legacy,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,189869,-4.098778873282303,spot_peer,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,189869,-16.279195149500097,baseline,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,190710,8.100178391128834,spot_peer,Bot_Pepa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,190710,0.1491393500483196,relative_legacy,Bot_Pepa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,190710,4.518308062291202,peer,Bot_Pepa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,190710,-15.200309344505014,spot_baseline,Bot_Pepa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,190710,-9.954623738832131,baseline,Bot_Pepa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,191026,-11.289144905563012,peer,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,191026,-45.00844463780446,spot_baseline,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,191026,-13.29915457861037,spot_peer,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,191026,-0.0568399738027689,relative_legacy,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,191026,-33.25150367211588,baseline,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,191935,-15.200309344505014,spot_baseline,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,191935,8.100178391128834,spot_peer,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,191935,0.0875526307045534,relative_legacy,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,191935,2.747481253180792,peer,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,191935,-4.36182600223527,baseline,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,192418,-0.2253989020671852,relative_legacy,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,192418,-52.23663362739688,baseline,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,192418,-19.419078059789623,spot_peer,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,192418,-53.53317329965558,spot_baseline,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,192418,-28.381186098916487,peer,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,192924,-53.53317329965558,spot_baseline,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,192924,-19.419078059789623,spot_peer,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,192924,-26.55468567903147,baseline,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,192924,-0.0611889142900762,relative_legacy,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,192924,-9.719815658386675,peer,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,204737,-19.719721024364205,spot_peer,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,204737,-37.12186959435182,baseline,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,204737,-14.706913405809177,peer,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,204737,-53.95195299599893,spot_baseline,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,204737,-0.1118585832915278,relative_legacy,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,218666,14.78452522323441,spot_peer,GreeneiBot2,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,218666,0.213988511687734,relative_legacy,GreeneiBot2,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,218666,9.090133401851215,peer,GreeneiBot2,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,218666,-3.943623272543567,baseline,GreeneiBot2,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,218666,-5.889368905356857,spot_baseline,GreeneiBot2,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,220077,0.553631312733639,relative_legacy,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,220077,26.303440583379377,spot_baseline,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,220077,37.89582160934901,spot_peer,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,220077,39.36113406884485,peer,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,220077,26.137794140191247,baseline,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,224797,-23.250868076429484,baseline,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,224797,-4.200828865237443,peer,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,224797,0.0378561245006617,relative_legacy,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,224797,-4.098778873282303,spot_peer,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,224797,-32.19280948873623,spot_baseline,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,227188,1.5098856837463055,baseline,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,227188,37.85116232537298,spot_baseline,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,227188,46.18595918982243,spot_peer,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,227188,0.0279405925148987,relative_legacy,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,227188,1.8423613513199248,peer,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236037,-24.52372333208441,baseline,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236037,-4.098778873282303,spot_peer,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236037,0.0339324774951693,relative_legacy,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236037,-4.792982580695776,peer,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236037,-32.19280948873623,spot_baseline,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236038,-11.647601883919933,baseline,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236038,-15.200309344505014,spot_baseline,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236038,8.100178391128834,spot_peer,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236038,0.163284662996955,relative_legacy,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236038,4.6058983065893,peer,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236040,26.303440583379377,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236040,37.89582160934901,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236040,0.4809703433020291,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236040,27.766810205638837,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236040,20.131061676313585,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236041,8.100178391128834,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236041,-15.200309344505014,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236041,-11.677508352613438,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236041,4.598925107004856,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236041,0.1632427240284069,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236043,0.3850886798786582,relative_legacy,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236043,13.750352374993504,spot_baseline,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236043,28.883928992565924,spot_peer,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236043,10.532711073349684,baseline,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236043,20.77712591482296,peer,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236045,0.3792295232469191,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236045,13.750352374993504,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236045,28.883928992565924,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236045,10.250281341699264,baseline,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236045,20.40280877652899,peer,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236047,-11.630835204152463,baseline,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236047,-15.200309344505014,spot_baseline,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236047,0.163354836115333,relative_legacy,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236047,8.100178391128834,spot_peer,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,236047,4.610642215224098,peer,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,237476,0.1305955196498401,relative_legacy,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,237476,4.171719903038428,peer,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,237476,-15.200309344505014,spot_baseline,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,237476,-8.29582158437331,baseline,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,237476,8.100178391128834,spot_peer,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,239758,-17.92881596653645,spot_peer,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,239758,-14.874015819447726,peer,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,239758,-0.1059434309598557,relative_legacy,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,239758,-38.22361932845636,baseline,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,239758,-51.45731728297583,spot_baseline,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,239759,0.0378443055080007,relative_legacy,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,239759,-32.19280948873623,spot_baseline,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,239759,-4.098778873282303,spot_peer,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,239759,-4.072768083600418,peer,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,239759,-22.874934436685223,baseline,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,240414,8.100178391128834,spot_peer,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,240414,0.013742171968679,relative_legacy,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,240414,0.5511820061324492,peer,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,240414,-0.9614548945537364,baseline,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,240414,-15.200309344505014,spot_baseline,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,240416,0.0343710512038068,relative_legacy,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,240416,-32.19280948873623,spot_baseline,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,240416,-4.098778873282303,spot_peer,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,240416,-24.440504367316272,baseline,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,240416,-4.743722652782037,peer,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,246118,-12.669613073028447,baseline,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,246118,-51.45731728297583,spot_baseline,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,246118,-17.92881596653645,spot_peer,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,246118,-0.0091912282367045,relative_legacy,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,246118,-4.016169536153219,peer,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,247214,-29.46855116913273,baseline,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,247214,-0.119593606062217,relative_legacy,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,247214,-13.215345468425513,peer,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,247214,-72.7379545337008,spot_baseline,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,247214,-33.20623730992607,spot_peer,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,250015,-4.098778873282303,spot_peer,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,250015,-4.327071389692919,peer,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,250015,-23.59121478226973,baseline,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,250015,0.0378343215059425,relative_legacy,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,250015,-32.19280948873623,spot_baseline,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,262677,-73.69655941662059,spot_baseline,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,262677,-33.89442209150246,spot_peer,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,262677,-0.093729172239252,relative_legacy,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,262677,-10.902173526078911,peer,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,262677,-24.574669046802622,baseline,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,264059,-73.69655941662059,spot_baseline,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,264059,-18.46183498839688,baseline,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,264059,-33.89442209150246,spot_peer,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,264059,-0.0651800982701669,relative_legacy,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,264059,-8.09554664154153,peer,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,264332,-0.0194463098517398,relative_legacy,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,264332,-51.45731728297583,spot_baseline,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,264332,-17.92881596653645,spot_peer,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,264332,-17.12558673791131,baseline,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34938,Will the S&P 500 index go up in March 2025?,2025-02-22 03:56:11.380498+00,264332,-5.54898566953637,peer,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35471 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,189869,-100.0,spot_baseline,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,189869,-0.0295254724578544,relative_legacy,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,189869,-2.565598176061975,peer,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,189869,-50.61363655328751,baseline,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,189869,-9.567564403678828,spot_peer,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,190710,-37.28603613156815,peer,Bot_Pepa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,190710,-173.6965594166206,spot_baseline,Bot_Pepa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,190710,-62.41159444843647,spot_peer,Bot_Pepa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,190710,-0.5094159037619977,relative_legacy,Bot_Pepa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,190710,-113.1061171299252,baseline,Bot_Pepa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,191026,94.55281488186984,spot_peer,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,191026,45.206823022381066,spot_baseline,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,191026,1.044453717131626,relative_legacy,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,191026,75.29736164623158,peer,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,191026,33.43684590760449,baseline,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,191935,-9.693721760259908,baseline,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,191935,-28.63041851566409,spot_baseline,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,191935,41.60790888971155,spot_peer,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,191935,0.2121185205130607,relative_legacy,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,191935,15.171380711521524,peer,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,192075,0.1492089123486575,relative_legacy,CumulativeBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,192075,29.2781749227846,spot_baseline,CumulativeBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,192075,4.033044279178159,baseline,CumulativeBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,192075,83.13119675735244,spot_peer,CumulativeBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,192075,11.47834932036706,peer,CumulativeBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,192418,-62.41159444843647,spot_peer,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,192418,-0.585480561640029,relative_legacy,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,192418,-43.11184706457757,peer,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,192418,-168.65054525431754,baseline,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,192924,20.163386116965043,spot_baseline,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,192924,9.886500323590424,baseline,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,192924,39.95161549825155,peer,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,192924,0.5596589774344888,relative_legacy,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,192924,76.59544831374572,spot_peer,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,204737,-9.567564403678828,spot_peer,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,204737,-0.0295254724578544,relative_legacy,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,204737,-69.18153999911414,baseline,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,204737,-2.6311883725764718,peer,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,204737,-100.0,spot_baseline,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,218666,-69.8997743967186,spot_baseline,GreeneiBot2,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,218666,12.0157664699068,spot_peer,GreeneiBot2,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,218666,0.1571303141110476,relative_legacy,GreeneiBot2,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,218666,11.009771566132155,peer,GreeneiBot2,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,218666,-43.3458457852421,baseline,GreeneiBot2,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,220077,-62.41159444843647,spot_peer,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,220077,-173.6965594166206,spot_baseline,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,220077,-171.6488115944119,baseline,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,220077,-43.11184706457757,peer,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,220077,-0.585480561640029,relative_legacy,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,224797,9.29328629914408,spot_peer,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,224797,11.085154464786298,peer,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,224797,-53.3506443317746,baseline,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,224797,0.160860371940174,relative_legacy,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,224797,-73.69655941662059,spot_baseline,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,227188,0.2970109725340363,peer,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,227188,-73.69655941662059,spot_baseline,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,227188,9.29328629914408,spot_peer,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,227188,0.0,relative_legacy,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,227188,-2.3553225500820787,baseline,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236037,79.46564262128634,peer,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236037,96.9447890978203,spot_peer,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236037,36.726297720707,baseline,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236037,48.54268271702416,spot_baseline,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236037,1.0982551576280704,relative_legacy,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236038,-0.0228035252484273,relative_legacy,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236038,-100.0,spot_baseline,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236038,-76.36115302097943,baseline,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236038,-2.0741269546541803,peer,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236038,-9.567564403678828,spot_peer,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236040,-2.2027688060859534,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236040,-76.15068254350356,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236040,-100.0,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236040,-9.567564403678828,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236040,-0.0241980418625904,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236041,-0.5854558263359482,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236041,-43.109275283634986,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236041,-132.87125837418537,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236041,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236041,-62.41159444843647,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236043,-177.33111602741045,baseline,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236043,-104.35626080445353,spot_peer,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236043,-1.0321763263557084,relative_legacy,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236043,-75.69190353244764,peer,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236043,-232.1928094887363,spot_baseline,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236045,-22.791706284011767,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236045,-12.347618099190562,peer,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236045,-0.1620596299517301,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236045,-118.44245711374276,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236045,-85.09272061379413,baseline,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236047,-132.19280948873626,spot_baseline,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236047,-0.2692551995143507,relative_legacy,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236047,-32.65138005687297,spot_peer,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236047,-20.053818787345016,peer,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,236047,-100.72034243561504,baseline,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,237476,-32.63262004565189,peer,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,237476,-0.4467536122730817,relative_legacy,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,237476,-62.41159444843647,spot_peer,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,237476,-173.6965594166206,spot_baseline,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,237476,-98.33714484282628,baseline,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,239758,1.336565023785566,relative_legacy,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,239758,96.53365104617016,peer,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,239758,62.6874372121574,baseline,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,239758,122.9428334027416,spot_peer,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,239759,-9.567564403678828,spot_peer,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,239759,-72.10010050756937,baseline,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,239759,-2.73276554932817,peer,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,239759,-0.0295442570581707,relative_legacy,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,239759,-100.0,spot_baseline,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,240414,-6.05752913819419,baseline,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,240414,-0.0085713147435164,relative_legacy,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,240414,-9.567564403678828,spot_peer,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,240414,-100.0,spot_baseline,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,240414,-0.5707029267329894,peer,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,240416,-99.3816689704526,baseline,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,240416,-32.65138005687297,spot_peer,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,240416,-0.2676293718224992,relative_legacy,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,240416,-132.19280948873626,spot_baseline,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,240416,-20.14034225342471,peer,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,246118,0.3357415045903547,relative_legacy,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,246118,96.9447890978203,spot_peer,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,246118,11.935616129410686,baseline,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,246118,24.240285733792373,peer,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,247214,-99.4240730711315,spot_baseline,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,247214,-38.62419693137416,baseline,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,247214,-2.179629896228385,peer,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,247214,-0.0272881154042178,relative_legacy,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,247214,-9.15459668614048,spot_peer,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,250015,-0.0296030271618659,relative_legacy,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,250015,-2.7620644976919007,peer,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,250015,-72.67083941159277,baseline,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,250015,-9.567564403678828,spot_peer,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,250015,-100.0,spot_baseline,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,262677,-9.567564403678828,spot_peer,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,262677,-0.0294934475194234,relative_legacy,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,262677,-2.196330223355463,peer,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,262677,-33.27919836176766,baseline,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,262677,-100.0,spot_baseline,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,264059,-18.56389907255271,baseline,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,264059,9.29328629914408,spot_peer,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,264059,2.73055752152407,peer,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,264059,-73.69655941662059,spot_baseline,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,264059,0.0367639761806873,relative_legacy,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,264332,-173.6965594166206,spot_baseline,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,264332,-62.41159444843647,spot_peer,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,264332,-0.2749181866183264,relative_legacy,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,264332,-19.860297437463696,peer,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34939,"Will SpaceX's Fram2 mission launch before April 1, 2025?",2025-02-22 03:56:11.411816+00,264332,-57.844535911383545,baseline,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35472 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,189869,-21.0393512936561,peer,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,189869,-100.0,spot_baseline,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,189869,-42.1374306162521,spot_peer,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,189869,-0.2431668359821351,relative_legacy,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,189869,-51.915613359875145,baseline,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,190710,-100.0,spot_baseline,Bot_Pepa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,190710,-64.85326577557457,baseline,Bot_Pepa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,190710,-26.3974740872958,peer,Bot_Pepa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,190710,-0.2771973131426116,relative_legacy,Bot_Pepa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,190710,-42.1374306162521,spot_peer,Bot_Pepa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,191026,69.24271980897078,spot_baseline,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,191026,51.22756234815785,baseline,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,191026,60.418727371895805,peer,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,191026,0.8684256479717668,relative_legacy,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,191026,79.3623303805573,spot_peer,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,191935,1.4355292977070055,spot_baseline,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,191935,30.68338306582037,spot_peer,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,191935,0.5408413392220471,baseline,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,191935,12.12091478592305,peer,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,191935,0.1764522042273758,relative_legacy,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,192418,0.7734023950893653,relative_legacy,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,192418,36.54291567259845,baseline,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,192418,56.826254761589546,spot_peer,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,192418,64.87296039362184,peer,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,192924,7.0389327891398015,spot_baseline,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,192924,3.4081383265714105,baseline,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,192924,0.2842973895224607,relative_legacy,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,192924,17.732063000677257,peer,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,192924,34.70608008786199,spot_peer,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,204737,-164.38561897747243,spot_baseline,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,204737,-114.48441874200508,baseline,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,204737,-0.78275957755283,relative_legacy,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,204737,-61.182485612272245,peer,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,204737,-88.36002338848124,spot_peer,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,218666,-43.440282414577496,spot_baseline,GreeneiBot2,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,218666,0.2415531469925078,peer,GreeneiBot2,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,218666,-24.43039441302597,baseline,GreeneiBot2,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,218666,-1.533071525163913,spot_peer,GreeneiBot2,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,218666,0.0635474627978956,relative_legacy,GreeneiBot2,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,220077,-98.26362022426392,baseline,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,220077,-100.0,spot_baseline,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,220077,-42.1374306162521,spot_peer,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,220077,-0.5574638427616667,relative_legacy,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,220077,-50.76545825035718,peer,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,224797,19.071352447122656,baseline,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,224797,36.528050393367366,peer,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,224797,0.5452718086522759,relative_legacy,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,224797,48.53611718111612,spot_peer,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,224797,26.303440583379377,spot_baseline,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,227188,18.740473962895955,spot_peer,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,227188,-0.1498080550125377,baseline,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,227188,0.184698474930016,peer,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,227188,0.0019257402897052,relative_legacy,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,227188,-15.200309344505014,spot_baseline,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236037,39.52422456433306,spot_peer,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236037,10.212051946028238,baseline,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236037,30.681717543234267,peer,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236037,0.4598292929642901,relative_legacy,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236037,13.750352374993504,spot_baseline,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236038,-0.3851364706473831,relative_legacy,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236038,-31.26215527230379,peer,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236038,-76.02483538449577,baseline,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236038,-100.0,spot_baseline,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236038,-42.1374306162521,spot_peer,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236040,-7.288520394769319,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236040,-39.005694787416616,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236040,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236040,-0.016967576900577,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236040,-4.341946976262706,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236041,-76.23439790001959,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236041,-0.3852458760031225,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236041,-42.1374306162521,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236041,-100.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236041,-31.35992120006657,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236043,-42.1374306162521,spot_peer,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236043,-0.385294036417236,relative_legacy,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236043,-31.28104882863977,peer,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236043,-76.0616748027893,baseline,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236043,-100.0,spot_baseline,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236045,40.78088141980356,peer,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236045,37.85116232537298,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236045,56.826254761589546,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236045,0.6242183017076595,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236045,26.136628425773527,baseline,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236047,-75.76139149410776,baseline,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236047,-100.0,spot_baseline,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236047,-0.3851538722581097,relative_legacy,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236047,-42.1374306162521,spot_peer,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,236047,-31.198253667895735,peer,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,237476,-100.0,spot_baseline,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,237476,-23.68284681984328,peer,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,237476,-42.1374306162521,spot_peer,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,237476,-0.2604796040650061,relative_legacy,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,237476,-58.49755385849211,baseline,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,239758,-73.69655941662059,spot_baseline,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,239758,-0.1827536215445341,relative_legacy,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,239758,-16.387223574217135,peer,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,239758,-53.98874777511431,baseline,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,239758,-23.254126519735348,spot_peer,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,239759,56.826254761589546,spot_peer,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,239759,0.629469812449838,relative_legacy,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,239759,42.73025035989188,peer,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,239759,27.51887367503869,baseline,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,239759,37.85116232537298,spot_baseline,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,240414,26.303440583379377,spot_baseline,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,240414,2.807739510554315,peer,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,240414,1.5028540622359523,baseline,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,240414,0.0389907849467865,relative_legacy,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,240414,48.53611718111612,spot_peer,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,240416,26.303440583379377,spot_baseline,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,240416,48.53611718111612,spot_peer,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,240416,37.6650566417449,peer,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,240416,19.605012047166543,baseline,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,240416,0.5566058273140504,relative_legacy,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,246118,-9.909743079196122,peer,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,246118,-42.1374306162521,spot_peer,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,246118,-100.0,spot_baseline,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,246118,-24.65990683105257,baseline,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,246118,-0.1251438338559054,relative_legacy,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,247214,1.999076684253904,peer,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,247214,-34.739878240348055,spot_baseline,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,247214,4.712969834474453,spot_peer,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,247214,0.0360245033814661,relative_legacy,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,247214,-11.34761613649212,baseline,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,250015,-49.28959557912102,baseline,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,250015,-0.1243437953314244,relative_legacy,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,250015,-23.254126519735348,spot_peer,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,250015,-73.69655941662059,spot_baseline,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,250015,-14.557105357929045,peer,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,262677,16.59120595979192,peer,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,262677,0.2385538745530842,relative_legacy,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,262677,48.53611718111612,spot_peer,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,262677,26.303440583379377,spot_baseline,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,262677,8.718558071150191,baseline,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,264059,-10.02258661601974,peer,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,264059,-24.93286541435453,baseline,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,264059,-0.1266876798943131,relative_legacy,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,264059,-42.1374306162521,spot_peer,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,264059,-100.0,spot_baseline,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,264332,-7.288520394769319,spot_peer,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,264332,-0.0189282171969282,relative_legacy,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,264332,-1.9672950507271567,peer,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,264332,-17.030368415560993,baseline,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34940,"Will Australian aerospace company Gilmour Space Technologies launch a rocket before April 1, 2025?",2025-02-22 03:56:11.441973+00,264332,-51.45731728297583,spot_baseline,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35473 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,189869,13.29924551196206,baseline,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,189869,26.584857994923297,peer,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,189869,0.5246821515006763,relative_legacy,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,189869,49.33114352959507,spot_peer,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,191026,40.39962345974049,baseline,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,191026,52.82707318221617,peer,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,191026,0.8419151505749464,relative_legacy,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,191026,69.69691941809445,spot_peer,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,191026,54.59683691052925,spot_baseline,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,191935,0.1541611269691712,relative_legacy,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,191935,-13.92357973711722,spot_baseline,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,191935,20.375465284519837,spot_peer,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,191935,4.867322289566978,peer,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,191935,-2.6555328667740032,baseline,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,192418,-2.282627446435213,relative_legacy,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,192418,-318.76442434182184,baseline,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,192418,-332.1928094887361,spot_baseline,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,192418,-208.7168547176203,spot_peer,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,192418,-182.21342509322676,peer,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,192924,-24.189009839830486,peer,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,192924,-0.1778065807768518,relative_legacy,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,192924,-52.52420197546883,spot_peer,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,192924,-115.20030934450504,spot_baseline,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,192924,-55.90290045035162,baseline,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,204737,-119.1291865060853,baseline,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,204737,-64.57549750610774,peer,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,204737,-0.7267864603546004,relative_legacy,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,204737,-173.6965594166206,spot_baseline,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,204737,-94.63019397131664,spot_peer,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,220077,-49.95114677325856,peer,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,220077,-94.63019397131664,spot_peer,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,220077,-173.6965594166206,spot_baseline,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,220077,-0.7617346254156037,relative_legacy,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,220077,-169.70694760980388,baseline,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,224797,91.43713552544293,spot_peer,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,224797,61.62830737923176,baseline,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,224797,67.94128962297881,peer,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,224797,84.79969065549501,spot_baseline,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,224797,1.060925388182239,relative_legacy,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,227188,2.0346620992708173,peer,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,227188,89.10341587926759,spot_peer,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,227188,81.55754288625727,spot_baseline,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,227188,0.0218029600190459,relative_legacy,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,227188,1.862353309161215,baseline,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236037,73.09059533735777,peer,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236037,68.29691205014481,baseline,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236037,1.122056872024464,relative_legacy,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236037,97.05180850351,spot_peer,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236038,19.925992460449528,baseline,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236038,0.6363517218013811,relative_legacy,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236038,39.06984126063821,peer,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236038,49.33114352959507,spot_peer,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236040,-0.3174820634370052,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236040,-41.58291765715608,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236040,-100.0,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236040,-31.01464817103732,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236040,-75.48907126340167,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236041,7.225151533747235,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236041,-32.19280948873623,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236041,-24.439278118759844,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236041,6.882219644695759,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236041,0.1958435987739093,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236043,64.191238990587,baseline,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236043,91.43713552544293,spot_peer,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236043,1.0788175669191686,relative_legacy,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236043,71.42535035106,peer,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236045,0.96454655652467,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236045,85.50145408821747,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236045,50.74186477614173,baseline,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236045,58.52106735780033,peer,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236047,36.35614483755215,baseline,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236047,50.406374889599526,peer,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236047,0.7991072043860633,relative_legacy,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236047,65.33909874242573,spot_peer,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,237476,-94.63019397131664,spot_peer,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,237476,-0.6169852837403564,relative_legacy,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,237476,-56.974771078400046,peer,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,237476,-173.6965594166206,spot_baseline,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,237476,-106.35887707436132,baseline,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,239758,-132.19280948873626,spot_baseline,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,239758,-64.75551721670865,spot_peer,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,239758,-0.5159069512977663,relative_legacy,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,239758,-47.124795209771655,peer,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,239758,-96.06097136415222,baseline,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,239759,5.869760378414232,peer,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,239759,-32.19280948873623,spot_baseline,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,239759,0.2061527155034951,relative_legacy,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,239759,-23.57697987681076,baseline,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,239759,7.225151533747235,spot_peer,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,240414,65.33909874242573,spot_peer,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,240414,48.54268271702416,spot_baseline,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,240414,0.039160127510145,relative_legacy,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,240414,2.3169857311360644,baseline,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,240414,3.2065501644031107,peer,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,240416,62.22209466486869,baseline,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,240416,1.0633131565802822,relative_legacy,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,240416,91.43713552544293,spot_peer,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,240416,68.53305201311383,peer,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,246118,-22.06833326307919,peer,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,246118,-42.91717560937349,baseline,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,246118,-0.1739523184338794,relative_legacy,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,246118,-94.63019397131664,spot_peer,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,246118,-173.6965594166206,spot_baseline,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,247214,-132.19280948873626,spot_baseline,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,247214,-86.1672176407868,baseline,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,247214,-41.33308597460943,peer,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,247214,-0.3992071656210852,relative_legacy,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,247214,-64.75551721670865,spot_peer,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,250015,-2.7579383387560843,peer,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,250015,0.1315170798885778,relative_legacy,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,250015,-32.34970766413913,baseline,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,250015,-6.641570008030127,spot_peer,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,250015,-51.45731728297583,spot_baseline,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,262677,33.69540372824853,peer,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,262677,92.5999418556223,spot_baseline,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,262677,30.73039043251884,baseline,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,262677,97.05180850351,spot_peer,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,262677,0.6084489823117979,relative_legacy,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,264059,-22.39939367137732,peer,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,264059,-173.6965594166206,spot_baseline,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,264059,-94.63019397131664,spot_peer,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,264059,-0.1760628582631079,relative_legacy,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,264059,-43.54387134866752,baseline,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,264332,-64.75551721670865,spot_peer,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,264332,-132.19280948873626,spot_baseline,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,264332,-44.10600993367549,baseline,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,264332,-20.35337539483268,peer,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34941,"Will India's Gaganyaan-1 program launch a flight test before April 1, 2025?",2025-02-22 03:56:11.47221+00,264332,-0.137856151151713,relative_legacy,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35474 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,189869,38.78088518188193,baseline,VeritasAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,189869,9.9721479147081,peer,VeritasAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,189869,0.0685648182426369,relative_legacy,VeritasAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,189869,18.537215274088023,spot_peer,VeritasAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,190710,43.64536481037548,baseline,Bot_Pepa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,190710,9.05353360719432,peer,Bot_Pepa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,190710,12.250217456087384,spot_peer,Bot_Pepa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,190710,67.80719051126377,spot_baseline,Bot_Pepa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,190710,0.042448858340334,relative_legacy,Bot_Pepa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,191026,-1.3812274484570295,relative_legacy,manticAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,191026,-93.65426319181267,baseline,manticAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,191026,-126.53445665209946,spot_baseline,manticAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,191026,-127.44630899970912,spot_peer,manticAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,191026,-93.86268387997902,peer,manticAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,191935,-8.646532669469652,spot_peer,pgodzinai,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,191935,-0.1056679886027521,relative_legacy,pgodzinai,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,191935,-3.0497508295533264,peer,pgodzinai,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,191935,38.73625408359956,spot_baseline,pgodzinai,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,191935,13.900000775576451,baseline,pgodzinai,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,192418,36.11475390212954,baseline,InstitutPelFutur,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,192418,-9.282753706100936,spot_peer,InstitutPelFutur,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,192418,-0.157830565734653,relative_legacy,InstitutPelFutur,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,192418,-3.7871535944871457,peer,InstitutPelFutur,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,192924,-0.1226343809386192,relative_legacy,acm_bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,192924,-9.282753706100936,spot_peer,acm_bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,192924,37.85116232537298,spot_baseline,acm_bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,192924,18.283602402341494,baseline,acm_bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,192924,-4.056969396131916,peer,acm_bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,204737,77.14630583656509,spot_baseline,SynapseSeer,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,204737,18.963353781509227,spot_peer,SynapseSeer,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,204737,0.1122176951269909,relative_legacy,SynapseSeer,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,204737,14.742782985909484,peer,SynapseSeer,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,204737,53.65083226690791,baseline,SynapseSeer,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,220077,-17.583478946319538,spot_peer,mmBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,220077,-0.2680103074444105,relative_legacy,mmBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,220077,25.553561765387357,baseline,mmBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,220077,-13.3425264829449,peer,mmBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,220077,26.303440583379377,spot_baseline,mmBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,224797,-9.282753706100936,spot_peer,cookics_bot_TEST,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,224797,27.55158319784517,baseline,cookics_bot_TEST,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,224797,-5.175188128338074,peer,cookics_bot_TEST,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,224797,-0.1638355308600076,relative_legacy,cookics_bot_TEST,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,224797,37.85116232537298,spot_baseline,cookics_bot_TEST,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,227188,0.764816892269817,baseline,ProfessorSP,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,227188,26.303440583379377,spot_baseline,ProfessorSP,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,227188,-17.583478946319538,spot_peer,ProfessorSP,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,227188,-0.009360602248425,relative_legacy,ProfessorSP,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,227188,-0.5112693025988957,peer,ProfessorSP,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236037,35.7777676162012,baseline,metac-o1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236037,48.54268271702416,spot_baseline,metac-o1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236037,0.578502391672034,peer,metac-o1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236037,-0.0857034397902397,relative_legacy,metac-o1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236037,-1.5974825197890532,spot_peer,metac-o1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236038,12.250217456087384,spot_peer,metac-gpt-4o,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236038,51.25214985303479,baseline,metac-gpt-4o,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236038,11.184895633708392,peer,metac-gpt-4o,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236038,0.0573913731527175,relative_legacy,metac-gpt-4o,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236040,28.44782216380804,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236040,-0.1678878631290233,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236040,-9.282753706100936,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236040,-5.316428761778119,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236041,5.557333782561478,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236041,44.227851277484895,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236041,-0.0129522557961345,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236041,6.04204481112511,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236043,0.1853205357850315,relative_legacy,metac-grok-2-1212,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236043,24.46475448711973,spot_peer,metac-grok-2-1212,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236043,63.93629582968196,baseline,metac-grok-2-1212,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236043,20.51102381378912,peer,metac-grok-2-1212,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236045,37.13428892273778,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236045,58.496250072115615,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236045,5.557333782561478,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236045,-0.0170353301314158,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236045,4.61152045650322,peer,metac-Gemini-Exp-1206,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236047,57.52968228227069,baseline,metac-Llama-3.1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236047,76.55347463629771,spot_baseline,metac-Llama-3.1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236047,18.537215274088023,spot_peer,metac-Llama-3.1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236047,0.1229073635199279,relative_legacy,metac-Llama-3.1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,236047,15.920120510537451,peer,metac-Llama-3.1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,237476,-9.282753706100936,spot_peer,NextWorldLab,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,237476,-0.1489801367923209,relative_legacy,NextWorldLab,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,237476,-4.917886721009114,peer,NextWorldLab,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,237476,24.18815312759626,baseline,NextWorldLab,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,239758,15.152492906987472,peer,metac-perplexity,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,239758,0.1153730856479024,relative_legacy,metac-perplexity,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,239758,55.22768141179152,baseline,metac-perplexity,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,239758,18.537215274088023,spot_peer,metac-perplexity,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,239759,-5.154751911762535,peer,metac-exa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,239759,37.85116232537298,spot_baseline,metac-exa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,239759,-9.282753706100936,spot_peer,metac-exa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,239759,-0.1645095887138146,relative_legacy,metac-exa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,239759,28.001262103146463,baseline,metac-exa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,240414,3.19643009274232,baseline,minefrac1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,240414,58.496250072115615,spot_baseline,minefrac1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,240414,5.557333782561478,spot_peer,minefrac1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,240414,0.2871935174729126,peer,minefrac1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,240414,-0.0023804952732037,relative_legacy,minefrac1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,240416,5.875410705602248,peer,metac-o1-preview,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,240416,58.496250072115615,spot_baseline,metac-o1-preview,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,240416,5.557333782561478,spot_peer,metac-o1-preview,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,240416,-0.0129169955684468,relative_legacy,metac-o1-preview,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,240416,42.95553351571948,baseline,metac-o1-preview,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,246118,18.537215274088023,spot_peer,laylaps,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,246118,76.55347463629771,spot_baseline,laylaps,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,246118,18.692289564148645,baseline,laylaps,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,246118,4.432386964584721,peer,laylaps,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,246118,0.0074865741401689,relative_legacy,laylaps,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,247214,27.80870417067789,baseline,ajf-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,247214,-1.3016086993913452,spot_peer,ajf-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,247214,0.0201753788731092,peer,ajf-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,247214,-0.0712486490564244,relative_legacy,ajf-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,247214,48.95429356424735,spot_baseline,ajf-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,250015,28.364066380543672,baseline,metac-deepseek-r1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,250015,48.54268271702416,spot_baseline,metac-deepseek-r1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,250015,-1.5974825197890532,spot_peer,metac-deepseek-r1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,250015,-0.0751901094813493,relative_legacy,metac-deepseek-r1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,250015,-0.1076301305560034,peer,metac-deepseek-r1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,262677,76.55347463629771,spot_baseline,pianobot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,262677,25.535220296614916,baseline,pianobot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,262677,6.18771748049157,peer,pianobot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,262677,0.0229662878143063,relative_legacy,pianobot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,262677,18.537215274088023,spot_peer,pianobot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,264059,19.23592424137004,baseline,wunderplumb,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,264059,4.566472055156053,peer,wunderplumb,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,264059,0.0081076802845718,relative_legacy,wunderplumb,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,264059,18.537215274088023,spot_peer,wunderplumb,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,264059,76.55347463629771,spot_baseline,wunderplumb,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,264332,31.1627648437977,baseline,krm-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,264332,92.5999418556223,spot_baseline,krm-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,264332,10.14381800482368,peer,krm-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,264332,0.0777875050840549,relative_legacy,krm-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34942,"Will Blue Ghost successfully land on the moon before April 1, 2025?",2025-02-22 03:56:11.50212+00,264332,30.07172558181499,spot_peer,krm-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35475 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,189869,-2.2034314208761043,peer,VeritasAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,189869,39.52103800706437,baseline,VeritasAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,189869,-0.7167495887089269,spot_peer,VeritasAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,189869,-0.0365305939703047,relative_legacy,VeritasAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,190710,59.28191627299318,baseline,Bot_Pepa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,190710,10.803048333421462,spot_peer,Bot_Pepa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,190710,4.652732049091664,peer,Bot_Pepa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,190710,0.0556613880517359,relative_legacy,Bot_Pepa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,190710,92.5999418556223,spot_baseline,Bot_Pepa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,191026,-0.3443366645539483,relative_legacy,manticAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,191026,37.40657182225377,spot_baseline,manticAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,191026,-28.820406520246543,spot_peer,manticAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,191026,27.693218529230528,baseline,manticAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,191026,-24.328826625824732,peer,manticAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,191935,-0.0042448916859427,relative_legacy,pgodzinai,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,191935,82.53786038929312,spot_baseline,pgodzinai,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,191935,3.5794555273655244,spot_peer,pgodzinai,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,191935,0.0911952371153122,peer,pgodzinai,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,191935,19.66674887684178,baseline,pgodzinai,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,192075,-0.0240326522285205,relative_legacy,CumulativeBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,192075,65.53518286125541,spot_baseline,CumulativeBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,192075,8.564916327260061,baseline,CumulativeBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,192075,-8.626808105682658,spot_peer,CumulativeBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,192075,-1.4439960250808488,peer,CumulativeBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,192418,14.550227050377073,spot_peer,InstitutPelFutur,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,192418,9.113005850906523,peer,InstitutPelFutur,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,192418,92.70956322902556,baseline,InstitutPelFutur,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,192418,0.1093373825086757,relative_legacy,InstitutPelFutur,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,192418,97.81956296816516,spot_baseline,InstitutPelFutur,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,192924,80.73549220576041,spot_baseline,acm_bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,192924,-0.0136398090792153,relative_legacy,acm_bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,192924,2.285531016020779,spot_peer,acm_bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,192924,39.095674841886215,baseline,acm_bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,192924,-0.5918261211679383,peer,acm_bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,204737,63.41694256043594,baseline,SynapseSeer,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,204737,0.0494093733390237,relative_legacy,SynapseSeer,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,204737,9.707044152758694,spot_peer,SynapseSeer,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,204737,91.07326619029126,spot_baseline,SynapseSeer,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,204737,4.305415922450561,peer,SynapseSeer,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,220077,92.5999418556223,spot_baseline,mmBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,220077,10.803048333421462,spot_peer,mmBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,220077,0.0598678511714388,relative_legacy,mmBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,220077,89.49082346500316,baseline,mmBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,220077,4.8311807460695295,peer,mmBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,224797,1.2204075178463905,peer,cookics_bot_TEST,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,224797,5.203228987571485,spot_peer,cookics_bot_TEST,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,224797,84.79969065549501,spot_baseline,cookics_bot_TEST,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,224797,0.0057246570681207,relative_legacy,cookics_bot_TEST,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,224797,61.864730683664135,baseline,cookics_bot_TEST,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,227188,1.2716952312870018,baseline,ProfessorSP,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,227188,-0.5455822592961513,peer,ProfessorSP,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,227188,-0.0089058747709914,relative_legacy,ProfessorSP,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,227188,-20.82576537009381,spot_peer,ProfessorSP,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,227188,48.54268271702416,spot_baseline,ProfessorSP,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236037,5.203228987571485,spot_peer,metac-o1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236037,84.79969065549501,spot_baseline,metac-o1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236037,0.0057246570681207,relative_legacy,metac-o1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236037,1.224100739588786,peer,metac-o1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236037,61.9616973144269,baseline,metac-o1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236038,-3.3107964658343723,peer,metac-gpt-4o,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236038,76.55347463629771,spot_baseline,metac-gpt-4o,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236038,57.69552409583281,baseline,metac-gpt-4o,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236038,-0.7167495887089269,spot_peer,metac-gpt-4o,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236038,-0.055943586391347,relative_legacy,metac-gpt-4o,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236040,-0.0552648305392716,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236040,57.34316470170804,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236040,-3.25909523362011,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236040,-0.7167495887089269,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236041,2.9827219991237195,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236041,87.97057662822883,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236041,7.479615754873194,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236041,66.24933460358282,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236041,0.0301182616248789,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236043,69.64867591361966,baseline,metac-grok-2-1212,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236043,5.527980752532721,peer,metac-grok-2-1212,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236043,0.0649328766203195,relative_legacy,metac-grok-2-1212,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236043,10.803048333421462,spot_peer,metac-grok-2-1212,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236045,53.22049514881065,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236045,4.192581252624934,peer,metac-Gemini-Exp-1206,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236045,0.0505509237963447,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236045,10.803048333421462,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236047,84.79969065549501,spot_baseline,metac-Llama-3.1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236047,63.45413248442908,baseline,metac-Llama-3.1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236047,1.2541290210957534,peer,metac-Llama-3.1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236047,0.0065289541579842,relative_legacy,metac-Llama-3.1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,236047,5.203228987571485,spot_peer,metac-Llama-3.1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,237476,84.79969065549501,spot_baseline,NextWorldLab,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,237476,0.0057246570681207,relative_legacy,NextWorldLab,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,237476,1.085925352578538,peer,NextWorldLab,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,237476,57.17326670763325,baseline,NextWorldLab,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,237476,5.203228987571485,spot_peer,NextWorldLab,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,239758,10.803048333421462,spot_peer,metac-perplexity,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,239758,65.75083966716694,baseline,metac-perplexity,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,239758,5.191510183926967,peer,metac-perplexity,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,239758,0.0611039359063086,relative_legacy,metac-perplexity,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,239759,50.27745492137826,baseline,metac-exa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,239759,-0.1194797566333689,relative_legacy,metac-exa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,239759,-6.995728276839664,spot_peer,metac-exa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,239759,67.80719051126377,spot_baseline,metac-exa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,239759,-7.927154460626506,peer,metac-exa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,240414,-1.6289693689196263,baseline,minefrac1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,240414,-4.007231486614881,peer,minefrac1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,240414,-0.0580541897010667,relative_legacy,minefrac1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,240414,-32.19280948873623,spot_baseline,minefrac1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,240414,-78.78597197769115,spot_peer,minefrac1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,240416,5.203228987571485,spot_peer,metac-o1-preview,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,240416,0.0057288047701638,relative_legacy,metac-o1-preview,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,240416,1.218679258478057,peer,metac-o1-preview,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,240416,61.81425492200784,baseline,metac-o1-preview,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,246118,10.803048333421462,spot_peer,laylaps,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,246118,92.5999418556223,spot_baseline,laylaps,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,246118,1.8720799991330528,peer,laylaps,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,246118,22.825501790390454,baseline,laylaps,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,246118,0.0203717912406071,relative_legacy,laylaps,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,247214,-0.0121441829419843,relative_legacy,ajf-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,247214,81.55754288625727,spot_baseline,ajf-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,247214,2.8756832028939794,spot_peer,ajf-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,247214,45.74512957296709,baseline,ajf-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,247214,-0.3866881821263797,peer,ajf-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,250015,-0.7167495887089269,spot_peer,metac-deepseek-r1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,250015,-0.0409327135437557,relative_legacy,metac-deepseek-r1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,250015,-2.4626991315772884,peer,metac-deepseek-r1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,250015,43.60773120461814,baseline,metac-deepseek-r1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,262677,5.203228987571485,spot_peer,pianobot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,262677,84.79969065549501,spot_baseline,pianobot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,262677,0.6054670636482022,peer,pianobot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,262677,28.25718536357726,baseline,pianobot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,262677,0.0011444953950438,relative_legacy,pianobot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,264059,21.266994012697776,baseline,wunderplumb,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,264059,0.4932193983613554,peer,wunderplumb,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,264059,5.203228987571485,spot_peer,wunderplumb,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,264059,0.0011444953950438,relative_legacy,wunderplumb,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,264332,0.6049950680733083,peer,krm-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,264332,0.0011444953950438,relative_legacy,krm-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,264332,28.22912267317036,baseline,krm-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,264332,5.203228987571485,spot_peer,krm-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34943,"Will Nasa's SphereX space telescope be launched before April 1, 2025?",2025-02-22 03:56:11.80564+00,264332,84.79969065549501,spot_baseline,krm-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35476 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,189869,-0.086465871270101,relative_legacy,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,189869,-5.943027390860623,spot_peer,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,189869,13.568351082328322,baseline,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,189869,-2.2639718654208494,peer,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,191026,35.641234370527265,baseline,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,191026,48.12989415475651,spot_baseline,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,191026,9.17718172950798,peer,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,191026,9.746248650970236,spot_peer,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,191026,0.0257967079299714,relative_legacy,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,191935,24.92255517409705,spot_peer,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,191935,17.762998998426344,baseline,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,191935,6.510343584703132,peer,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,191935,0.0694326708337765,relative_legacy,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,191935,69.24271980897078,spot_baseline,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,192075,32.19280948873624,spot_baseline,CumulativeBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,192075,-1.7096353665378727,spot_peer,CumulativeBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,192075,-0.0078560678398368,relative_legacy,CumulativeBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,192075,-0.1707396018888195,peer,CumulativeBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,192075,4.261440419486347,baseline,CumulativeBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,192418,30.177666829546933,spot_peer,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,192418,72.00128178554708,baseline,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,192418,40.81071890836664,peer,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,192418,0.4342234734091417,relative_legacy,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,192924,43.29594072761063,spot_baseline,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,192924,3.728909125049333,peer,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,192924,-0.0008002928655291,relative_legacy,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,192924,6.271509640171736,spot_peer,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,192924,20.75258462127964,baseline,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,204737,-12.483780397455831,peer,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,204737,4.796315956453121,baseline,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,204737,-0.2608787108790687,relative_legacy,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,204737,-19.88953985987635,spot_peer,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,204737,6.901467791518045,spot_baseline,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,220077,-61.83896080017631,spot_peer,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,220077,-55.80972041921027,peer,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,220077,-0.7697638236221088,relative_legacy,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,220077,-49.42949308388554,baseline,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,224797,48.54268271702416,spot_baseline,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,224797,10.042969035669865,spot_peer,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,224797,0.0288138037404062,relative_legacy,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,224797,9.200848622259302,peer,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,224797,35.48013148625743,baseline,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,227188,0.3262777817366024,baseline,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,227188,48.54268271702416,spot_baseline,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,227188,0.0675034315286938,peer,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,227188,0.0003526577522774,relative_legacy,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,227188,10.042969035669865,spot_peer,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236037,-0.0484434433724549,relative_legacy,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236037,37.85116232537298,spot_baseline,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236037,2.3576978493579728,spot_peer,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236037,3.3908333312586127,peer,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236037,27.31160916838885,baseline,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236038,-2.511289797264028,peer,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236038,19.764101351985925,baseline,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236038,-0.1357537734817549,relative_legacy,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236038,-5.943027390860623,spot_peer,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236040,3.689102436593725,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236040,-0.0502039738810391,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236040,2.3576978493579728,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236040,28.21326392613387,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236041,-24.13950664257752,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236041,-34.64511943260426,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236041,-32.19280948873623,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236041,-47.991260824299886,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236041,-0.574410881879369,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236043,50.782522151217,baseline,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236043,23.89066901154629,spot_peer,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236043,20.179636135290178,peer,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236043,0.1745144425341424,relative_legacy,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236045,-0.0335118271267519,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236045,21.924566274397176,baseline,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236045,37.85116232537298,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236045,2.445675936785662,peer,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236045,2.3576978493579728,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236047,36.14674356118956,baseline,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236047,10.042969035669865,spot_peer,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236047,0.0292691103315838,relative_legacy,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,236047,9.495848130248234,peer,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,237476,8.69683822151991,peer,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,237476,48.54268271702416,spot_baseline,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,237476,33.99914833660128,baseline,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,237476,10.042969035669865,spot_peer,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,237476,0.0285154145832882,relative_legacy,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,239758,10.042969035669865,spot_peer,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,239758,8.752687402793264,peer,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,239758,34.19042310762431,baseline,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,239758,48.54268271702416,spot_baseline,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,239758,0.0285024992247263,relative_legacy,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,239759,19.69891625073102,baseline,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,239759,26.303440583379377,spot_baseline,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,239759,-5.943027390860623,spot_peer,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,239759,-0.1363106274833647,relative_legacy,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,239759,-2.564824043181737,peer,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,240414,2.3576978493579728,spot_peer,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,240414,37.85116232537298,spot_baseline,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,240414,-0.0003659686938782,relative_legacy,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,240414,0.1195064661702959,peer,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,240414,1.689847721154929,baseline,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,240416,42.12300547758238,baseline,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,240416,14.232452994982236,peer,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,240416,58.496250072115615,spot_baseline,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,240416,17.197785338020378,spot_peer,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,240416,0.1002748812389982,relative_legacy,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,246118,-5.943027390860623,spot_peer,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,246118,-0.0386457593057367,relative_legacy,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,246118,-1.3845012256319926,peer,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,246118,6.502296604547968,baseline,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,246118,26.303440583379377,spot_baseline,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,247214,-47.991260824299886,spot_peer,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,247214,-39.85764496494641,peer,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,247214,-0.5752616697788007,relative_legacy,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,247214,-32.19280948873623,spot_baseline,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,247214,-29.545845743572308,baseline,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,250015,-0.0239074596682345,relative_legacy,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,250015,-1.002188459725641,peer,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,250015,26.303440583379377,spot_baseline,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,250015,4.755369298812905,baseline,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,250015,-5.943027390860623,spot_peer,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,262677,0.0166438614899256,relative_legacy,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,262677,48.54268271702416,spot_baseline,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,262677,16.139273702656165,baseline,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,262677,3.574020529409235,peer,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,262677,10.042969035669865,spot_peer,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,264059,2.6342568046763364,peer,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,264059,12.25090978089816,baseline,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,264059,0.0163303751489673,relative_legacy,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,264059,10.042969035669865,spot_peer,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,264059,48.54268271702416,spot_baseline,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,264332,19.509625662352622,baseline,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,264332,5.987416416187137,peer,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,264332,0.0498956654048994,relative_legacy,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,264332,58.496250072115615,spot_baseline,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34944,"Will 290 or more UN staff be reported to be working in Gaza according to UN's OCHA in its final impact snapshot before April 1, 2025?",2025-02-22 03:56:11.837248+00,264332,17.197785338020378,spot_peer,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35477 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,189869,32.15183637128739,spot_peer,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,189869,13.54459840906451,baseline,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,189869,17.360215533410287,peer,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,189869,-0.0457644260082155,relative_legacy,VeritasAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,191026,62.56190148112228,peer,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,191026,68.58895920051366,baseline,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,191026,0.4131499459858591,relative_legacy,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,191026,79.87250134520234,spot_peer,manticAI,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,191935,74.84612330040356,spot_baseline,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,191935,15.913722632543532,baseline,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,191935,14.57473312740972,peer,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,191935,0.0786688200683021,relative_legacy,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,191935,67.09318402041336,spot_peer,pgodzinai,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,192418,40.46396370661618,spot_peer,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,192418,68.04959794990332,peer,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,192418,0.3440448819675057,relative_legacy,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,192418,35.42147198146875,baseline,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,192924,63.22682154995129,spot_baseline,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,192924,30.044335791290024,baseline,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,192924,28.78657851727478,peer,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,192924,0.1342799133070437,relative_legacy,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,192924,58.72953291630437,spot_peer,acm_bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,204737,2.2771596166793726,spot_peer,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,204737,-15.200309344505014,spot_baseline,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,204737,3.241660526873526,peer,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,204737,-10.733718208148998,baseline,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,204737,-0.3795246125931842,relative_legacy,SynapseSeer,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,220077,-177.08809268502478,spot_peer,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,220077,-252.5142292403889,baseline,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,220077,-160.92570315804574,peer,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,220077,-2.484315206069117,relative_legacy,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,220077,-264.3856189774725,spot_baseline,mmBot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,224797,-0.6473642179406348,relative_legacy,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,224797,-51.45731728297583,spot_baseline,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,224797,-23.82087716633781,spot_peer,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,224797,-37.68551923346577,baseline,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,224797,-15.519600806134678,peer,cookics_bot_TEST,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,227188,-51.45731728297583,spot_baseline,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,227188,-23.82087716633781,spot_peer,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,227188,-0.0148352034588135,relative_legacy,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,227188,-0.8547674024744103,baseline,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,227188,-0.3956931759221134,peer,ProfessorSP,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236037,48.15979158411805,spot_peer,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236037,48.54268271702416,spot_baseline,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236037,0.0703861285395741,relative_legacy,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236037,34.23401025029863,baseline,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236037,36.0520705080938,peer,metac-o1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236038,-81.93482437501635,spot_peer,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236038,-132.19280948873626,spot_baseline,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236038,-59.57865178385235,peer,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236038,-98.94374580541955,baseline,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236038,-1.256517899930944,relative_legacy,metac-gpt-4o,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236040,43.37929654985691,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236040,44.16592691622555,peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236040,0.1608138851781738,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236040,55.32443593083995,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236041,48.15979158411805,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236041,0.0933530825377984,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236041,39.31037512123653,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236041,48.54268271702416,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236041,36.24894505826049,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236043,-58.76222481546376,spot_peer,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236043,-74.57096934249377,baseline,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236043,-41.90259460217489,peer,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236043,-100.0,spot_baseline,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236043,-1.0146323819769367,relative_legacy,metac-grok-2-1212,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236045,40.46396370661618,spot_peer,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236045,37.85116232537298,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236045,0.0135298002531127,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236045,22.051247240399974,peer,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236045,19.804699862990223,baseline,metac-Gemini-Exp-1206,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236047,-132.19280948873626,spot_baseline,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236047,-97.88230344332278,baseline,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236047,-59.238750846368895,peer,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236047,-81.93482437501635,spot_peer,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,236047,-1.251480578332146,relative_legacy,metac-Llama-3.1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,237476,27.27943293145825,baseline,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,237476,40.46396370661618,spot_peer,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,237476,-0.0037156401918533,relative_legacy,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,237476,31.491554296477293,peer,NextWorldLab,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,239758,40.745077714686445,peer,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,239758,0.139233014971454,relative_legacy,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,239758,55.32443593083995,spot_peer,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,239758,40.87254495139507,baseline,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,239758,58.496250072115615,spot_baseline,metac-perplexity,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,239759,26.303440583379377,spot_baseline,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,239759,32.15183637128739,spot_peer,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,239759,19.84047295799521,baseline,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,239759,27.995122573277506,peer,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,239759,-0.070189851953656,relative_legacy,metac-exa,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,240414,48.54268271702416,spot_baseline,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,240414,48.15979158411805,spot_peer,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,240414,2.05978163903302,baseline,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,240414,2.021684842036785,peer,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,240414,0.0045366667360448,relative_legacy,minefrac1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,240416,58.496250072115615,spot_baseline,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,240416,41.55295069634868,peer,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,240416,41.55896711132474,baseline,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,240416,0.1417796171110846,relative_legacy,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,240416,55.32443593083995,spot_peer,metac-o1-preview,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,246118,48.15979158411805,spot_peer,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,246118,0.0303865482113368,relative_legacy,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,246118,11.98957601485643,baseline,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,246118,12.401049831691916,peer,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,247214,-111.80950112962432,spot_peer,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,247214,-173.6965594166206,spot_baseline,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,247214,-154.9165760988087,baseline,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,247214,-1.579280685866023,relative_legacy,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,247214,-88.53941242035108,peer,ajf-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,250015,5.410846452760592,baseline,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,250015,5.873342026709724,peer,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,250015,0.0,relative_legacy,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,250015,40.46396370661618,spot_peer,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,262677,-153.91549312547218,spot_peer,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,262677,-0.8844399638199272,relative_legacy,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,262677,-50.438129194114914,peer,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,262677,-77.22498174242091,baseline,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,262677,-232.1928094887363,spot_baseline,pianobot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,264059,-39.82883237916845,spot_peer,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,264059,-18.327255615826505,baseline,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,264059,-9.46604267355896,peer,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,264059,-0.2732276049155515,relative_legacy,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,264059,-73.69655941662059,spot_baseline,wunderplumb,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,264332,-24.40522549044751,baseline,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,264332,-12.230510242654264,peer,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,264332,-0.3557005171211416,relative_legacy,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,264332,-39.82883237916845,spot_peer,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34945,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 03:56:11.868035+00,264332,-73.69655941662059,spot_baseline,krm-bot,True,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35478 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,189869,-16.636611892656962,baseline,VeritasAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,189869,-47.40430669335241,spot_peer,VeritasAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,189869,-0.4401123209651104,relative_legacy,VeritasAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,189869,-25.418515439928694,peer,VeritasAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,191026,13.602074715393222,peer,manticAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,191026,44.755109985799294,baseline,manticAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,191026,0.0454427756313821,relative_legacy,manticAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,191026,19.158318539340375,spot_peer,manticAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,191026,60.40713236688608,spot_baseline,manticAI,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,191935,42.22330006830478,spot_baseline,pgodzinai,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,191935,-0.0220714845829211,relative_legacy,pgodzinai,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,191935,1.4328040469724126,peer,pgodzinai,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,191935,13.134960484521866,baseline,pgodzinai,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,191935,6.087428965006223,spot_peer,pgodzinai,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,192075,1.1610378458412167,peer,CumulativeBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,192075,46.98859762744633,spot_baseline,CumulativeBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,192075,9.51281681293766,spot_peer,CumulativeBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,192075,0.0016793594519503,relative_legacy,CumulativeBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,192075,6.462661810394691,baseline,CumulativeBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,192418,-0.4891196297943178,relative_legacy,InstitutPelFutur,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,192418,0.0,baseline,InstitutPelFutur,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,192418,-28.171712797801963,peer,InstitutPelFutur,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,192418,-24.263493964471404,spot_peer,InstitutPelFutur,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,192418,0.0,spot_baseline,InstitutPelFutur,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,192924,25.335878097178888,baseline,acm_bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,192924,0.0054344151446711,relative_legacy,acm_bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,192924,6.097342182922271,peer,acm_bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,192924,53.60529002402098,spot_baseline,acm_bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,192924,14.269022998897206,spot_peer,acm_bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,204737,30.7646209604944,spot_peer,SynapseSeer,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,204737,53.48190047203168,baseline,SynapseSeer,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,204737,20.782912166883467,peer,SynapseSeer,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,204737,0.154702580073075,relative_legacy,SynapseSeer,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,220077,42.29913126822138,spot_peer,mmBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,220077,87.94929052504268,baseline,mmBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,220077,40.8136172998752,peer,mmBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,220077,0.3718894018422837,relative_legacy,mmBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,220077,92.5999418556223,spot_baseline,mmBot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,224797,-36.19080917728334,peer,cookics_bot_TEST,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,224797,-23.636805778907576,baseline,cookics_bot_TEST,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,224797,-47.40430669335241,spot_peer,cookics_bot_TEST,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,224797,-32.19280948873623,spot_baseline,cookics_bot_TEST,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,224797,-0.6344399281324192,relative_legacy,cookics_bot_TEST,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,227188,67.80719051126377,spot_baseline,ProfessorSP,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,227188,0.8651073060242248,baseline,ProfessorSP,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,227188,0.3122938799707591,peer,ProfessorSP,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,227188,0.0026561072165263,relative_legacy,ProfessorSP,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,227188,24.47762314249377,spot_peer,ProfessorSP,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236037,17.784739468967867,spot_peer,metac-o1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236037,58.496250072115615,spot_baseline,metac-o1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236037,0.0285789213628999,relative_legacy,metac-o1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236037,41.27620987121701,baseline,metac-o1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236037,11.732673325852016,peer,metac-o1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236038,10.629923166617344,spot_peer,metac-gpt-4o,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236038,-0.0430621225185217,relative_legacy,metac-gpt-4o,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236038,7.272111574679283,peer,metac-gpt-4o,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236038,36.23911602616028,baseline,metac-gpt-4o,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236040,30.7646209604944,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236040,0.164622106919649,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236040,56.50207891681508,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236040,22.227241985638493,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236041,56.92045353583441,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236041,30.7646209604944,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236041,0.1651691126252226,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236041,22.422610863542403,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236043,76.55347463629771,spot_baseline,metac-grok-2-1212,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236043,30.7646209604944,spot_peer,metac-grok-2-1212,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236043,0.165089884809222,relative_legacy,metac-grok-2-1212,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236043,22.4115269715469,peer,metac-grok-2-1212,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236043,56.89668564714376,baseline,metac-grok-2-1212,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236045,58.496250072115615,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236045,17.784739468967867,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236045,31.31258662213312,baseline,metac-Gemini-Exp-1206,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236045,8.85353071438125,peer,metac-Gemini-Exp-1206,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236045,0.0285579486265392,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236047,35.76605001770656,baseline,metac-Llama-3.1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236047,10.629923166617344,spot_peer,metac-Llama-3.1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236047,-0.0419780581538263,relative_legacy,metac-Llama-3.1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,236047,7.113571074700915,peer,metac-Llama-3.1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,237476,-1.1431070644152037,relative_legacy,NextWorldLab,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,237476,-74.0963581668006,baseline,NextWorldLab,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,237476,-100.0,spot_baseline,NextWorldLab,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,237476,-96.14542380031756,spot_peer,NextWorldLab,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,237476,-73.2043886906779,peer,NextWorldLab,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,239758,58.496250072115615,spot_baseline,metac-perplexity,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,239758,40.47145883397076,baseline,metac-perplexity,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,239758,11.468899037002451,peer,metac-perplexity,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,239758,0.0285566959129338,relative_legacy,metac-perplexity,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,239758,17.784739468967867,spot_peer,metac-perplexity,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,239759,-56.052231345608725,baseline,metac-exa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,239759,-60.62658892769916,peer,metac-exa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,239759,-0.9659755962362117,relative_legacy,metac-exa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,239759,-73.69655941662063,spot_baseline,metac-exa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,239759,-77.23800309575932,spot_peer,metac-exa,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,240414,-3.537418720208094,baseline,minefrac1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,240414,-3.67915320072327,peer,minefrac1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,240414,-0.0562492517557331,relative_legacy,minefrac1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,240414,-77.23800309575932,spot_peer,minefrac1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,240414,-73.69655941662063,spot_baseline,minefrac1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,240416,17.784739468967867,spot_peer,metac-o1-preview,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,240416,11.715399576682424,peer,metac-o1-preview,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,240416,58.496250072115615,spot_baseline,metac-o1-preview,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,240416,0.0285249331975568,relative_legacy,metac-o1-preview,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,240416,41.23451955602635,baseline,metac-o1-preview,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,246118,-0.0510706261514618,relative_legacy,laylaps,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,246118,26.303440583379377,spot_baseline,laylaps,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,246118,-5.3560732599131535,spot_peer,laylaps,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,246118,-1.6662293407323585,peer,laylaps,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,246118,6.491804462275394,baseline,laylaps,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,247214,48.54268271702416,spot_baseline,ajf-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,247214,10.629923166617344,spot_peer,ajf-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,247214,43.70997045855362,baseline,ajf-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,247214,7.900414209746136,peer,ajf-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,247214,-0.036275038551072,relative_legacy,ajf-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,250015,0.0285620092810533,relative_legacy,metac-deepseek-r1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,250015,17.784739468967867,spot_peer,metac-deepseek-r1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,250015,8.151541693041391,peer,metac-deepseek-r1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,250015,28.921741071821533,baseline,metac-deepseek-r1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,262677,26.303440583379377,spot_baseline,pianobot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,262677,-5.3560732599131535,spot_peer,pianobot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,262677,-0.0782187140900971,relative_legacy,pianobot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,262677,-2.2890316508338997,peer,pianobot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,262677,8.723715414849176,baseline,pianobot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,264059,9.472075965357355,baseline,wunderplumb,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,264059,0.3921840560449402,peer,wunderplumb,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,264059,-0.0231124308717008,relative_legacy,wunderplumb,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,264059,2.944651980305442,spot_peer,wunderplumb,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,264059,37.85116232537298,spot_baseline,wunderplumb,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,264332,19.268337081665585,baseline,krm-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,264332,58.496250072115615,spot_baseline,krm-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,264332,17.784739468967867,spot_peer,krm-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,264332,0.0285509335892444,relative_legacy,krm-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34946,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 03:56:11.897777+00,264332,5.382642004963598,peer,krm-bot,True,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,2025-02-28 03:00:00+00,35479 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,189869,-104.409844772328,baseline,VeritasAI,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,189869,-173.6965594166206,spot_baseline,VeritasAI,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,189869,-35.16023267164568,spot_peer,VeritasAI,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,189869,-0.2522850558727191,relative_legacy,VeritasAI,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,189869,-21.09799768071303,peer,VeritasAI,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,190710,-1.630773323048934,relative_legacy,Bot_Pepa,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,190710,-114.57902286251564,peer,Bot_Pepa,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,190710,-332.1928094887361,spot_baseline,Bot_Pepa,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,190710,-148.80977977524316,spot_peer,Bot_Pepa,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,190710,-256.4363628365325,baseline,Bot_Pepa,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,191026,-30.54007879198549,baseline,manticAI,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,191026,63.68577888291666,spot_peer,manticAI,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,191026,-35.84539709124768,spot_baseline,manticAI,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,191026,0.6850822971773893,relative_legacy,manticAI,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,191026,55.271731358324885,peer,manticAI,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,191935,5.658352836636751,spot_baseline,pgodzinai,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,191935,4.633428514758946,baseline,pgodzinai,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,191935,77.60686472739758,peer,pgodzinai,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,191935,1.0119675217232849,relative_legacy,pgodzinai,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,191935,93.44599327448024,spot_peer,pgodzinai,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,192075,0.6461815983861265,relative_legacy,CumulativeBot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,192075,79.63240093401237,spot_peer,CumulativeBot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,192075,-13.606154957602856,spot_baseline,CumulativeBot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,192075,-7.63610821235341,baseline,CumulativeBot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,192075,44.62169196918248,peer,CumulativeBot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,192418,43.22104681430428,spot_peer,InstitutPelFutur,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,192418,0.4875867066918479,relative_legacy,InstitutPelFutur,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,192418,45.70606050691748,peer,InstitutPelFutur,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,192418,-62.80412494510766,baseline,InstitutPelFutur,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,192418,-64.38561897747249,spot_baseline,InstitutPelFutur,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,192924,-78.58751946471523,spot_baseline,acm_bot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,192924,-70.28629020290747,baseline,acm_bot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,192924,30.334264505696787,peer,acm_bot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,192924,0.3244608408739177,relative_legacy,acm_bot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,192924,33.03759100603679,spot_peer,acm_bot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,204737,-49.3383683010045,baseline,SynapseSeer,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,204737,-62.14883767462704,spot_baseline,SynapseSeer,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,204737,44.824928180093785,spot_peer,SynapseSeer,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,204737,0.4538321217383744,relative_legacy,SynapseSeer,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,204737,36.42188074849784,peer,SynapseSeer,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,218666,80.94897911107333,peer,GreeneiBot2,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,218666,1.121019751425876,relative_legacy,GreeneiBot2,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,218666,112.30684397730312,spot_peer,GreeneiBot2,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,218666,31.96179342001613,spot_baseline,GreeneiBot2,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,218666,22.87909331961364,baseline,GreeneiBot2,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,220077,-172.64307255772871,baseline,mmBot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,220077,-37.61685960724287,peer,mmBot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,220077,-0.5786728199284514,relative_legacy,mmBot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,220077,-173.6965594166206,spot_baseline,mmBot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,220077,-35.16023267164568,spot_peer,mmBot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,222631,-232.1928094887363,spot_baseline,Grizeu_Bot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,222631,-77.10489902766273,spot_peer,Grizeu_Bot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,222631,-0.7611047125720551,relative_legacy,Grizeu_Bot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,222631,-54.56139746205342,peer,Grizeu_Bot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,222631,-165.01304995291548,baseline,Grizeu_Bot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,224797,-143.0780879647952,baseline,cookics_bot_TEST,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,224797,-28.368949264932454,peer,cookics_bot_TEST,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,224797,-35.16023267164568,spot_peer,cookics_bot_TEST,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,224797,-173.6965594166206,spot_baseline,cookics_bot_TEST,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,224797,-0.456707530344135,relative_legacy,cookics_bot_TEST,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,227188,-100.0,spot_baseline,ProfessorSP,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,227188,-55.552958276536735,baseline,ProfessorSP,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,227188,9.749128345044914,peer,ProfessorSP,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,227188,0.1586678731295301,relative_legacy,ProfessorSP,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,227188,17.68379737311196,spot_peer,ProfessorSP,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236037,0.3613055262644536,relative_legacy,metac-o1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236037,36.54464807593487,spot_peer,metac-o1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236037,-73.69655941662059,spot_baseline,metac-o1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236037,-64.66133987568068,baseline,metac-o1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236037,32.81902082933599,peer,metac-o1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236038,-77.10489902766273,spot_peer,metac-gpt-4o,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236038,-68.06069680623212,peer,metac-gpt-4o,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236038,-205.0939852443166,baseline,metac-gpt-4o,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236038,-232.1928094887363,spot_baseline,metac-gpt-4o,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236038,-1.0324895626897792,relative_legacy,metac-gpt-4o,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236040,1.1415400076026117,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236040,13.750352374993504,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236040,99.24835189355372,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236040,12.161672609198297,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236040,89.1681516427742,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236041,-88.49014808921636,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236041,0.134996629049365,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236041,16.366412311875695,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236041,17.68379737311196,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236041,-100.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236043,-1.9167807459523116,relative_legacy,metac-grok-2-1212,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236043,-332.1928094887361,spot_baseline,metac-grok-2-1212,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236043,-293.5843797150213,baseline,metac-grok-2-1212,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236043,-148.80977977524316,spot_peer,metac-grok-2-1212,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236043,-132.00007793540365,peer,metac-grok-2-1212,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236045,-128.6921599979227,peer,metac-Gemini-Exp-1206,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236045,-332.1928094887361,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236045,-286.80515038095973,baseline,metac-Gemini-Exp-1206,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236045,-1.8692158756467805,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236045,-148.80977977524316,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236047,-35.16023267164568,spot_peer,metac-Llama-3.1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236047,-30.670806861564007,peer,metac-Llama-3.1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236047,-0.5155748197228124,relative_legacy,metac-Llama-3.1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236047,-173.6965594166206,spot_baseline,metac-Llama-3.1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,236047,-153.30960003167652,baseline,metac-Llama-3.1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,237476,-123.71221528511192,peer,NextWorldLab,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,237476,-332.1928094887361,spot_baseline,NextWorldLab,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,237476,-148.80977977524316,spot_peer,NextWorldLab,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,237476,-1.7839309109964894,relative_legacy,NextWorldLab,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,237476,-276.4176943449788,baseline,NextWorldLab,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,239758,0.7250091188064028,relative_legacy,metac-perplexity,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,239758,59.089835960694536,peer,metac-perplexity,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,239758,66.30486246749841,spot_peer,metac-perplexity,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,239758,-32.19280948873623,spot_baseline,metac-perplexity,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,239758,-28.223053278304864,baseline,metac-perplexity,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,239759,-51.45731728297583,spot_baseline,metac-exa,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,239759,-44.78116044753217,baseline,metac-exa,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,239759,46.61283437916789,peer,metac-exa,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,239759,0.5548775261384713,relative_legacy,metac-exa,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,239759,52.491270127030525,spot_peer,metac-exa,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,240414,-35.16023267164568,spot_peer,minefrac1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,240414,-0.2522850558727191,relative_legacy,minefrac1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,240414,-20.465067478220003,peer,minefrac1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,240414,-101.0659549471888,baseline,minefrac1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,240414,-173.6965594166206,spot_baseline,minefrac1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,240416,1.2341426542867822,relative_legacy,metac-o1-preview,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,240416,22.935063652979824,baseline,metac-o1-preview,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,240416,108.2495288235154,spot_peer,metac-o1-preview,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,240416,26.303440583379377,spot_baseline,metac-o1-preview,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,240416,95.74713687053968,peer,metac-o1-preview,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,241715,-124.9988845670332,baseline,CatrachoCaster,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,241715,-35.32567085354512,peer,CatrachoCaster,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,241715,-0.4521635562955731,relative_legacy,CatrachoCaster,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,241715,-58.2440483248398,spot_peer,CatrachoCaster,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,241715,-205.8893689053569,spot_baseline,CatrachoCaster,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,246118,138.00974321507897,spot_peer,laylaps,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,246118,42.391747072987926,baseline,laylaps,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,246118,67.80719051126377,spot_baseline,laylaps,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,246118,86.37688251944004,peer,laylaps,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,246118,1.2398067134248232,relative_legacy,laylaps,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,247214,-5.400018280082177,spot_peer,ajf-bot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,247214,-88.43053006709945,baseline,ajf-bot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,247214,-6.289179147785172,peer,ajf-bot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,247214,-0.0553812451680138,relative_legacy,ajf-bot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,247214,-132.19280948873626,spot_baseline,ajf-bot,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,250015,-66.34958489637744,baseline,metac-deepseek-r1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,250015,11.928559011411355,peer,metac-deepseek-r1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,250015,17.68379737311196,spot_peer,metac-deepseek-r1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,250015,0.1908339546185431,relative_legacy,metac-deepseek-r1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,250015,-100.0,spot_baseline,metac-deepseek-r1,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,264059,-173.6965594166206,spot_baseline,wunderplumb,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,264059,-85.60937703245527,baseline,wunderplumb,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,264059,-17.329333554132234,peer,wunderplumb,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,264059,-0.2045584660842164,relative_legacy,wunderplumb,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +34947,"Will 900,000 Russian personnel losses be reported before March 21, 2025?",2025-02-22 03:56:11.932471+00,264059,-35.16023267164568,spot_peer,wunderplumb,True,no,2025-03-01 17:00:00+00,2025-03-01 17:00:00+00,1.0,2025-03-01 17:00:00+00,35480 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,189869,-65.91884956065994,spot_peer,VeritasAI,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,189869,-2.272413038017993,relative_legacy,VeritasAI,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,189869,-62.4253552211928,peer,VeritasAI,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,189869,-131.58543353565952,baseline,VeritasAI,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,189869,-149.7866136776927,spot_baseline,VeritasAI,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,190710,-0.0029959561847535,relative_legacy,Bot_Pepa,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,190710,17.427042333243737,spot_peer,Bot_Pepa,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,190710,-69.31471805599264,spot_baseline,Bot_Pepa,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,190710,-0.797387465925315,baseline,Bot_Pepa,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,190710,0.200478419510458,peer,Bot_Pepa,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,191026,67.02891882297229,peer,manticAI,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,191026,-12.2652943600376,spot_baseline,manticAI,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,191026,76.51394544691148,spot_peer,manticAI,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,191026,1.2101138012423378,relative_legacy,manticAI,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,191026,-10.71723463073407,baseline,manticAI,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,191935,-0.6898344255731035,relative_legacy,pgodzinai,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,191935,-12.970179660989288,peer,pgodzinai,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,191935,-115.27530107109288,spot_baseline,pgodzinai,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,191935,-30.174990075252943,spot_peer,pgodzinai,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,191935,-50.575332816475125,baseline,pgodzinai,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,191975,-46.83571373371058,peer,jkraybill_bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,191975,-224.9904835165188,spot_baseline,jkraybill_bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,191975,-74.13768511360091,baseline,jkraybill_bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,191975,-1.5546755336275149,relative_legacy,jkraybill_bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,191975,-143.80857189372978,spot_peer,jkraybill_bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,192075,-24.275390233531105,spot_baseline,CumulativeBot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,192075,64.07491757793605,spot_peer,CumulativeBot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,192075,0.2446840348532893,relative_legacy,CumulativeBot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,192075,15.602771082466711,peer,CumulativeBot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,192075,-5.776040337449799,baseline,CumulativeBot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,192418,89.21728603409395,spot_peer,InstitutPelFutur,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,192418,81.44255747545114,peer,InstitutPelFutur,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,192418,1.5557096850737349,relative_legacy,InstitutPelFutur,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,192418,6.362607294185182e-13,baseline,InstitutPelFutur,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,192418,6.550315845288381e-13,spot_baseline,InstitutPelFutur,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,192924,-2.4606924770965586,relative_legacy,acm_bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,192924,-137.0107952060212,baseline,acm_bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,192924,-69.07344050066058,peer,acm_bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,192924,-80.02904264487739,spot_peer,acm_bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,192924,-163.4102483796958,spot_baseline,acm_bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,218666,0.372770819225836,relative_legacy,GreeneiBot2,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,218666,64.87781237672473,spot_peer,GreeneiBot2,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,218666,-23.500181462286868,spot_baseline,GreeneiBot2,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,218666,-8.042817561177628,baseline,GreeneiBot2,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,218666,22.94610485484259,peer,GreeneiBot2,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,220077,-26.691204495972176,baseline,mmBot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,220077,-27.02421558683352,spot_baseline,mmBot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,220077,61.22791989058712,spot_peer,mmBot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,220077,0.7983006019533524,relative_legacy,mmBot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,220077,50.920114360957896,peer,mmBot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,224797,21.872054925560736,peer,cookics_bot_TEST,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,224797,32.324863942349985,spot_peer,cookics_bot_TEST,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,224797,-37.27343624271048,baseline,cookics_bot_TEST,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,224797,-54.9306144334073,spot_baseline,cookics_bot_TEST,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,224797,0.0911112953590092,relative_legacy,cookics_bot_TEST,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,227188,41.76651599061091,spot_peer,ProfessorSP,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,227188,-45.8145365937071,spot_baseline,ProfessorSP,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,227188,8.59055020232165,peer,ProfessorSP,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,227188,-9.194879984772346,baseline,ProfessorSP,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,227188,0.0794543129892967,relative_legacy,ProfessorSP,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236037,-45.81453659371017,spot_baseline,metac-o1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236037,-36.2838967793041,baseline,metac-o1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236037,33.90534555362014,peer,metac-o1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236037,0.3776017831672658,relative_legacy,metac-o1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236037,41.76651599060772,spot_peer,metac-o1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236038,17.427042333243737,spot_peer,metac-gpt-4o,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236038,-55.621443160409726,baseline,metac-gpt-4o,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236038,14.558519498484657,peer,metac-gpt-4o,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236038,-0.1584023842145581,relative_legacy,metac-gpt-4o,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236038,-69.31471805599264,spot_baseline,metac-gpt-4o,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236040,-63.26259082354103,spot_peer,metac-claude-3-5-sonnet-latest,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236040,-147.22195006943997,spot_baseline,metac-claude-3-5-sonnet-latest,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236040,-117.6749049962764,baseline,metac-claude-3-5-sonnet-latest,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236040,-50.97951484775173,peer,metac-claude-3-5-sonnet-latest,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236040,-1.9541105230968456,relative_legacy,metac-claude-3-5-sonnet-latest,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236041,-54.36320136760774,spot_peer,metac-claude-3-5-sonnet-20240620,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236041,-138.62943611198716,spot_baseline,metac-claude-3-5-sonnet-20240620,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236041,-111.28691461456988,baseline,metac-claude-3-5-sonnet-20240620,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236041,-43.990520663697936,peer,metac-claude-3-5-sonnet-20240620,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236041,-1.763786766909012,relative_legacy,metac-claude-3-5-sonnet-20240620,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236043,-38.04546785106212,peer,metac-grok-2-1212,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236043,-47.44817821781612,spot_peer,metac-grok-2-1212,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236043,-131.9528620363263,spot_baseline,metac-grok-2-1212,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236043,-105.2366169094576,baseline,metac-grok-2-1212,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236043,-1.598735222085388,relative_legacy,metac-grok-2-1212,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236045,-1.1484364630801327,relative_legacy,metac-Gemini-Exp-1206,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236045,-22.42519900149513,peer,metac-Gemini-Exp-1206,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236045,-85.35791564433453,baseline,metac-Gemini-Exp-1206,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236045,-115.12925464969544,spot_baseline,metac-Gemini-Exp-1206,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236045,-30.023727710234184,spot_peer,metac-Gemini-Exp-1206,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236047,-80.47189562170436,spot_baseline,metac-Llama-3.1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236047,-64.01287843557274,baseline,metac-Llama-3.1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236047,-0.4145110593960144,relative_legacy,metac-Llama-3.1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236047,5.087777355821722,peer,metac-Llama-3.1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,236047,5.871394140185172,spot_peer,metac-Llama-3.1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,237476,89.21728603409267,spot_peer,NextWorldLab,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,237476,-5.773159728050847e-13,spot_baseline,NextWorldLab,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,237476,1.0977792677698155,relative_legacy,NextWorldLab,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,237476,57.90135594228536,peer,NextWorldLab,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,237476,-3.733992134956357e-13,baseline,NextWorldLab,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,239758,-132.32750153442586,baseline,metac-perplexity,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,239758,-68.27970763460708,peer,metac-perplexity,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,239758,-2.421765416917796,relative_legacy,metac-perplexity,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,239758,-86.91614980198835,spot_peer,metac-perplexity,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,239758,-170.05986908311328,spot_baseline,metac-perplexity,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,239759,14.059773262913152,peer,metac-exa,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,239759,-69.31471805599264,spot_baseline,metac-exa,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,239759,17.427042333243737,spot_peer,metac-exa,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,239759,-53.92977819267851,baseline,metac-exa,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,239759,-0.1602842957893172,relative_legacy,metac-exa,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,240414,-35.96914996568365,baseline,minefrac1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,240414,-14.68685806174508,peer,minefrac1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,240414,-0.6044340569148602,relative_legacy,minefrac1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,240414,-60.462679999820985,spot_peer,minefrac1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,240414,-144.51858789481372,spot_baseline,minefrac1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,240416,-69.31471805599264,spot_baseline,metac-o1-preview,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,240416,-54.424398784301296,baseline,metac-o1-preview,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,240416,14.213877359292333,peer,metac-o1-preview,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,240416,-0.1594902100145962,relative_legacy,metac-o1-preview,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,240416,17.427042333243737,spot_peer,metac-o1-preview,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,246118,-1.081321802374533,relative_legacy,laylaps,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,246118,-173.28679513998443,spot_baseline,laylaps,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,246118,-58.0568697844346,baseline,laylaps,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,246118,-29.643167309549938,peer,laylaps,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,246118,-90.25832321803348,spot_peer,laylaps,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,247214,-53.2911232922543,spot_baseline,ajf-bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,247214,-32.97681831631283,baseline,ajf-bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,247214,20.91686716437126,peer,ajf-bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,247214,0.1019593831183822,relative_legacy,ajf-bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,247214,34.02290833854417,spot_peer,ajf-bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,250015,11.692539163046249,peer,metac-deepseek-r1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,250015,17.42704233323862,spot_peer,metac-deepseek-r1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,250015,-69.31471805599759,spot_baseline,metac-deepseek-r1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,250015,-47.18674042484725,baseline,metac-deepseek-r1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,250015,-0.1901099951815928,relative_legacy,metac-deepseek-r1,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,264059,0.0707751342126736,relative_legacy,wunderplumb,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,264059,-22.75202454167369,baseline,wunderplumb,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,264059,13.863871213408698,peer,wunderplumb,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,264059,-54.9306144334073,spot_baseline,wunderplumb,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,264059,32.324863942349985,spot_peer,wunderplumb,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,264332,-54.93061443340359,spot_baseline,krm-bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,264332,-7.591686529806791,baseline,krm-bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,264332,4.551647829134732,peer,krm-bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,264332,0.0177588761689234,relative_legacy,krm-bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35110,"How many Capital Bikeshare (Washington, DC) bike share trips will there be in February 2025?",2025-03-02 04:05:16.094837+00,264332,32.32486394235382,spot_peer,krm-bot,True,359136.0,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35660 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,189869,-0.024401226483851,relative_legacy,VeritasAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,189869,4.428722142292438,spot_peer,VeritasAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,189869,-15.200309344505014,spot_baseline,VeritasAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,189869,-13.310970393536126,baseline,VeritasAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,189869,4.659539952426649,peer,VeritasAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,190710,-0.0565165660995114,peer,Bot_Pepa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,190710,-0.0018761299708155,relative_legacy,Bot_Pepa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,190710,-7.742191542200516,spot_peer,Bot_Pepa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,190710,-32.19280948873623,spot_baseline,Bot_Pepa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,190710,-0.2350015542087733,baseline,Bot_Pepa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,191026,15.315678806142024,spot_baseline,manticAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,191026,12.877926481105431,baseline,manticAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,191026,23.75225194334004,peer,manticAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,191026,0.232187238759178,relative_legacy,manticAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,191026,26.285862329201517,spot_peer,manticAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,191935,2.8460499331477425,peer,pgodzinai,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,191935,-7.089059487670009,baseline,pgodzinai,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,191935,-0.0210643576892712,relative_legacy,pgodzinai,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,191935,4.428722142292438,spot_peer,pgodzinai,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,191935,-15.200309344505014,spot_baseline,pgodzinai,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,191975,11.384341771056398,spot_peer,jkraybill_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,191975,3.138712128947259,peer,jkraybill_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,191975,-1.4839218242596928,baseline,jkraybill_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,191975,-5.48917584960724,spot_baseline,jkraybill_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,191975,0.0051883318331625,relative_legacy,jkraybill_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,192075,4.33722726464601,peer,CumulativeBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,192075,0.0226123170732141,relative_legacy,CumulativeBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,192075,16.344176281761843,spot_peer,CumulativeBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,192075,1.4355292977069736,spot_baseline,CumulativeBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,192075,0.3768920076495151,baseline,CumulativeBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,192418,25.164694006714736,spot_peer,InstitutPelFutur,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,192418,13.28379154852861,baseline,InstitutPelFutur,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,192418,13.750352374993504,spot_baseline,InstitutPelFutur,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,192418,26.04153615979796,peer,InstitutPelFutur,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,192418,0.2455173449076703,relative_legacy,InstitutPelFutur,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,192924,-8.75642165596413,baseline,acm_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,192924,-10.46973786666934,spot_baseline,acm_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,192924,7.817003834001486,spot_peer,acm_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,192924,0.0164594300246054,relative_legacy,acm_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,192924,7.844924988434148,peer,acm_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,204737,-15.18247176220983,baseline,SynapseSeer,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,204737,-23.44652536370228,spot_baseline,SynapseSeer,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,204737,-1.4776472878355775,spot_peer,SynapseSeer,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,204737,-0.0744615838942101,relative_legacy,SynapseSeer,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,204737,0.6108627553641027,peer,SynapseSeer,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,218666,10.666247614091787,spot_peer,GreeneiBot2,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,218666,0.0023515580335771,relative_legacy,GreeneiBot2,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,218666,-6.491747668133855,spot_baseline,GreeneiBot2,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,218666,2.9245792248529248,peer,GreeneiBot2,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,218666,-1.7455260919086983,baseline,GreeneiBot2,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,220077,-4.2908486634518805,peer,mmBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,220077,-2.7005412446925336,spot_peer,mmBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,220077,-0.1303244192080679,relative_legacy,mmBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,220077,-25.153876699596427,spot_baseline,mmBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,220077,-24.693108818183397,baseline,mmBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,224797,9.362869061760437,baseline,cookics_bot_TEST,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,224797,19.09330787809812,peer,cookics_bot_TEST,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,224797,0.1760660485277643,relative_legacy,cookics_bot_TEST,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,224797,25.164694006714736,spot_peer,cookics_bot_TEST,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,224797,13.750352374993504,spot_baseline,cookics_bot_TEST,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,227188,-5.889368905356857,spot_baseline,ProfessorSP,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,227188,-1.1417084214172424,baseline,ProfessorSP,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,227188,2.1254416390577706,peer,ProfessorSP,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,227188,0.0011677667291648,relative_legacy,ProfessorSP,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,227188,11.09770265984146,spot_peer,ProfessorSP,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236037,25.164694006714736,spot_peer,metac-o1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236037,13.750352374993504,spot_baseline,metac-o1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236037,10.792513193893956,baseline,metac-o1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236037,21.86540703578153,peer,metac-o1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236037,0.2062088515816368,relative_legacy,metac-o1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236038,0.0,spot_baseline,metac-gpt-4o,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236038,-0.0117998897988318,baseline,metac-gpt-4o,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236038,14.13065829050582,peer,metac-gpt-4o,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236038,0.100215725352836,relative_legacy,metac-gpt-4o,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236038,15.315975426934498,spot_peer,metac-gpt-4o,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236040,-25.153876699596427,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236040,-2.7005412446925336,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236040,-20.019818463216158,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236040,-0.4499188218274698,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236040,-0.1002358629025372,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236041,-12.154446527623398,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236041,-15.200309344505014,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236041,4.428722142292438,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236041,-0.0212281886096046,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236041,5.284172768328184,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236043,-40.843493091267895,baseline,metac-grok-2-1212,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236043,-15.611054462040556,peer,metac-grok-2-1212,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236043,-0.3087975238660219,relative_legacy,metac-grok-2-1212,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236043,-21.54043544673453,spot_peer,metac-grok-2-1212,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236043,-51.45731728297583,spot_baseline,metac-grok-2-1212,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236045,-241.71687981391,baseline,metac-Gemini-Exp-1206,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236045,-161.8621220353807,peer,metac-Gemini-Exp-1206,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236045,-332.1928094887361,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236045,-2.3275817951901288,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236045,-222.61781751578343,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236047,-15.200309344505014,spot_baseline,metac-Llama-3.1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236047,-12.052571829078996,baseline,metac-Llama-3.1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236047,5.327888170093488,peer,metac-Llama-3.1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236047,-0.0210385168619517,relative_legacy,metac-Llama-3.1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,236047,4.428722142292438,spot_peer,metac-Llama-3.1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,237476,0.0,baseline,NextWorldLab,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,237476,15.315975426934498,spot_peer,NextWorldLab,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,237476,0.0799667812403593,relative_legacy,NextWorldLab,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,237476,11.95204354153682,peer,NextWorldLab,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,237476,0.0,spot_baseline,NextWorldLab,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,239758,5.376041963314345,peer,metac-perplexity,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,239758,-15.200309344505014,spot_baseline,metac-perplexity,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,239758,4.428722142292438,spot_peer,metac-perplexity,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,239758,-0.0210258717987479,relative_legacy,metac-perplexity,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,239758,-11.758511442953694,baseline,metac-perplexity,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,239759,5.349687762867534,peer,metac-exa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,239759,-11.905976748190817,baseline,metac-exa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,239759,-0.0210185064986082,relative_legacy,metac-exa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,239759,4.428722142292438,spot_peer,metac-exa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,239759,-15.200309344505014,spot_baseline,metac-exa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,240414,0.0,baseline,minefrac1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,240414,3.7575608229938,peer,minefrac1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,240414,0.0160504474825102,relative_legacy,minefrac1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,240414,15.315975426934498,spot_peer,minefrac1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,240414,0.0,spot_baseline,minefrac1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,240416,-32.19280948873623,spot_baseline,metac-o1-preview,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,240416,-25.03223266792646,baseline,metac-o1-preview,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,240416,-4.234797350844331,peer,metac-o1-preview,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,240416,-0.1531451017861357,relative_legacy,metac-o1-preview,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,240416,-7.742191542200516,spot_peer,metac-o1-preview,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,241715,13.228362337457474,spot_peer,CatrachoCaster,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,241715,-0.4389750112668696,baseline,CatrachoCaster,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,241715,-2.914634565951651,spot_baseline,CatrachoCaster,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,241715,1.9574152186528024,peer,CatrachoCaster,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,241715,0.0053875133530525,relative_legacy,CatrachoCaster,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,246118,4.428722142292438,spot_peer,laylaps,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,246118,-15.200309344505014,spot_baseline,laylaps,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,246118,-5.098706260874794,baseline,laylaps,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,246118,1.759221418280786,peer,laylaps,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,246118,-0.0210643576892712,relative_legacy,laylaps,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,247214,-15.842936260448308,spot_baseline,ajf-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,247214,3.9684392728564686,spot_peer,ajf-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,247214,-0.025272567997261,relative_legacy,ajf-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,247214,4.237886981994282,peer,ajf-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,247214,-10.374667793392796,baseline,ajf-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,250015,-15.200309344505014,spot_baseline,metac-deepseek-r1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,250015,4.428722142292438,spot_peer,metac-deepseek-r1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,250015,-0.020956046175971,relative_legacy,metac-deepseek-r1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,250015,-10.425649327116872,baseline,metac-deepseek-r1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,250015,4.89146515421592,peer,metac-deepseek-r1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,264059,4.428722142292438,spot_peer,wunderplumb,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,264059,-15.200309344505014,spot_baseline,wunderplumb,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,264059,-0.0210643576892712,relative_legacy,wunderplumb,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,264059,2.398963128208192,peer,wunderplumb,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,264059,-6.2936999444351605,baseline,wunderplumb,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,264332,-0.0168823491347277,relative_legacy,krm-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,264332,4.428722142292438,spot_peer,krm-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,264332,0.8424117747582591,peer,krm-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,264332,-15.200309344505014,spot_baseline,krm-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35111,"Will Alex Pereira defeat Magomed Ankalaev at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.12669+00,264332,-2.981534217516472,baseline,krm-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35661 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,189869,15.153300183472124,spot_peer,VeritasAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,189869,42.73788093363965,baseline,VeritasAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,189869,12.357490053886396,peer,VeritasAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,189869,0.1630622788651849,relative_legacy,VeritasAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,190710,-5.9289742011360005,peer,Bot_Pepa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,190710,13.750352374993504,spot_baseline,Bot_Pepa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,190710,-9.740847616980824,spot_peer,Bot_Pepa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,190710,-0.0759875381976877,relative_legacy,Bot_Pepa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,190710,8.0347452484824,baseline,Bot_Pepa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,191026,1.9575973179356192,spot_peer,manticAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,191026,25.31493891948277,baseline,manticAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,191026,0.2878331159867601,peer,manticAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,191026,0.0079572369585615,relative_legacy,manticAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,191026,30.10022560328143,spot_baseline,manticAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,191935,10.116896140175944,spot_peer,pgodzinai,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,191935,41.50374992788439,spot_baseline,pgodzinai,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,191935,19.36185644608236,baseline,pgodzinai,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,191935,4.676964248529467,peer,pgodzinai,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,191935,0.053484449332071,relative_legacy,pgodzinai,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,191975,-0.1045588846048883,relative_legacy,jkraybill_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,191975,-24.013400372371503,spot_baseline,jkraybill_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,191975,-36.76106825615391,spot_peer,jkraybill_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,191975,-4.345723995947655,baseline,jkraybill_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,191975,-6.60972287640898,peer,jkraybill_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,192075,0.0228290787648607,relative_legacy,CumulativeBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,192075,10.870621846923228,baseline,CumulativeBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,192075,39.50627995175778,spot_baseline,CumulativeBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,192075,8.687692855318856,spot_peer,CumulativeBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,192075,2.49100251047766,peer,CumulativeBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,192418,39.05637721259889,peer,InstitutPelFutur,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,192418,0.5033843997503759,relative_legacy,InstitutPelFutur,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,192418,78.37268678821337,baseline,InstitutPelFutur,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,192418,81.55754288625727,spot_baseline,InstitutPelFutur,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,192418,38.7756560470951,spot_peer,InstitutPelFutur,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,192924,11.476246031288158,baseline,acm_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,192924,-9.687979757701456,peer,acm_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,192924,-0.1285012061642769,relative_legacy,acm_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,192924,-9.740847616980824,spot_peer,acm_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,192924,13.750352374993504,spot_baseline,acm_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,204737,34.89924278459392,baseline,SynapseSeer,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,204737,11.902607740417515,peer,SynapseSeer,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,204737,0.1699208006058004,relative_legacy,SynapseSeer,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,204737,18.775629970441948,spot_peer,SynapseSeer,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,204737,53.60529002402098,spot_baseline,SynapseSeer,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,218666,-0.2824713187055676,relative_legacy,GreeneiBot2,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,218666,-27.22973271627619,spot_baseline,GreeneiBot2,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,218666,-39.06237581323396,spot_peer,GreeneiBot2,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,218666,-13.720074375037388,baseline,GreeneiBot2,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,218666,-19.852743903108703,peer,GreeneiBot2,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,220077,-15.200309344504996,spot_baseline,mmBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,220077,-30.4552419872674,spot_peer,mmBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,220077,-14.8258426766071,baseline,mmBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,220077,-0.4264097773201,relative_legacy,mmBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,220077,-33.41176124647279,peer,mmBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,222631,26.810095641431342,baseline,Grizeu_Bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,222631,22.275144982125187,spot_peer,Grizeu_Bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,222631,0.1290925815266704,relative_legacy,Grizeu_Bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,222631,10.194372178925487,peer,Grizeu_Bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,224797,0.0701921040122736,relative_legacy,cookics_bot_TEST,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,224797,37.85116232537298,spot_baseline,cookics_bot_TEST,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,224797,25.57261724951724,baseline,cookics_bot_TEST,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,224797,7.503444993410518,spot_peer,cookics_bot_TEST,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,224797,4.609879076783443,peer,cookics_bot_TEST,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,227188,5.584200117916316,peer,ProfessorSP,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,227188,0.065882903492596,relative_legacy,ProfessorSP,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,227188,12.969282315560369,baseline,ProfessorSP,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,227188,67.80719051126377,spot_baseline,ProfessorSP,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,227188,28.93718587374544,spot_peer,ProfessorSP,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236037,-35.148132214545576,spot_peer,metac-o1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236037,-16.99526921286419,baseline,metac-o1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236037,-29.01003203145096,peer,metac-o1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236037,-0.3927962975844701,relative_legacy,metac-o1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236037,-21.75914350726268,spot_baseline,metac-o1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236038,61.175973649242266,baseline,metac-gpt-4o,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236038,76.55347463629771,spot_baseline,metac-gpt-4o,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236038,35.19521135157097,spot_peer,metac-gpt-4o,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236038,0.3791714282398463,relative_legacy,metac-gpt-4o,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236038,27.128531461507773,peer,metac-gpt-4o,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236040,0.376661000888724,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236040,60.661843039991965,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236040,35.19521135157097,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236040,26.9106508094678,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236041,70.06489586732414,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236041,33.63546943764704,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236041,43.36422508666505,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236041,87.97057662822883,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236041,0.4688590973606925,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236043,60.51895614882393,baseline,metac-grok-2-1212,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236043,35.19521135157097,spot_peer,metac-grok-2-1212,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236043,76.55347463629771,spot_baseline,metac-grok-2-1212,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236043,26.87142976489171,peer,metac-grok-2-1212,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236043,0.3767477938153023,relative_legacy,metac-grok-2-1212,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236045,-0.4161972017010651,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236045,-32.19280948873623,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236045,-22.495712700421272,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236045,-30.683996839074236,peer,metac-Gemini-Exp-1206,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236045,-42.61349082921664,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236047,15.153300183472124,spot_peer,metac-Llama-3.1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236047,0.1557970397559083,relative_legacy,metac-Llama-3.1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236047,10.810792065807114,peer,metac-Llama-3.1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,236047,38.29695447531939,baseline,metac-Llama-3.1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,237476,-0.0926353365208455,relative_legacy,NextWorldLab,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,237476,9.351305763776375,baseline,NextWorldLab,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,237476,-9.740847616980824,spot_peer,NextWorldLab,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,237476,-7.207485422640744,peer,NextWorldLab,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,237476,13.750352374993504,spot_baseline,NextWorldLab,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,239758,29.09649645505711,baseline,metac-perplexity,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,239758,7.503444993410518,spot_peer,metac-perplexity,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,239758,0.0734662633575811,relative_legacy,metac-perplexity,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,239758,4.759771667835905,peer,metac-perplexity,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,239758,37.85116232537298,spot_baseline,metac-perplexity,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,239759,-0.0187560758121664,relative_legacy,metac-exa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,239759,26.303440583379377,spot_baseline,metac-exa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,239759,-0.7590280567609863,spot_peer,metac-exa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,239759,-1.8860982684330387,peer,metac-exa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,239759,20.700953281539256,baseline,metac-exa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,240414,-42.61349082921664,spot_peer,minefrac1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,240414,-10.878336189246149,peer,minefrac1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,240414,-0.1640375216378993,relative_legacy,minefrac1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,240414,-32.19280948873623,spot_baseline,minefrac1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,240414,-8.284672097715372,baseline,minefrac1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,240416,-24.897751649066155,peer,metac-o1-preview,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,240416,-15.200309344504996,spot_baseline,metac-o1-preview,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,240416,-0.3355190809672047,relative_legacy,metac-o1-preview,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,240416,-30.4552419872674,spot_peer,metac-o1-preview,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,240416,-11.72843610497977,baseline,metac-o1-preview,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,241715,58.496250072115615,spot_baseline,CatrachoCaster,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,241715,22.275144982125187,spot_peer,CatrachoCaster,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,241715,0.0349433330284598,relative_legacy,CatrachoCaster,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,241715,3.3650794838643776,peer,CatrachoCaster,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,241715,8.802460140218953,baseline,CatrachoCaster,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,246118,0.0,baseline,laylaps,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,246118,0.0,spot_baseline,laylaps,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,246118,-19.57931779033049,spot_peer,laylaps,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,246118,-0.1017501269270092,relative_legacy,laylaps,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,246118,-6.511767253552051,peer,laylaps,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,247214,0.0,baseline,ajf-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,247214,0.0,spot_baseline,ajf-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,247214,-19.57931779033049,spot_peer,ajf-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,247214,-0.2643165304712118,relative_legacy,ajf-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,247214,-20.23566120367924,peer,ajf-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,250015,-30.4552419872674,spot_peer,metac-deepseek-r1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,250015,-9.208664344939448,baseline,metac-deepseek-r1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,250015,-0.2541485098162196,relative_legacy,metac-deepseek-r1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,250015,-18.843789215544728,peer,metac-deepseek-r1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,250015,-15.200309344504996,spot_baseline,metac-deepseek-r1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,264059,-0.3290001664975925,peer,wunderplumb,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,264059,10.927029436338437,baseline,wunderplumb,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,264059,26.303440583379377,spot_baseline,wunderplumb,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,264059,-0.7590280567609863,spot_peer,wunderplumb,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,264059,-0.0135001008629281,relative_legacy,wunderplumb,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,264332,1.3326492774691785,peer,krm-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,264332,5.06160071949564,baseline,krm-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,264332,43.29594072761063,spot_baseline,krm-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,264332,0.0063653298242542,relative_legacy,krm-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35112,"Will Justin Gaethje defeat someone at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.157346+00,264332,11.399220785188282,spot_peer,krm-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35662 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,189869,0.2066687981955864,relative_legacy,VeritasAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,189869,59.61451269011536,baseline,VeritasAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,189869,26.789344484216507,spot_peer,VeritasAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,189869,24.72600316002723,peer,VeritasAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,190710,-0.0004097092467265,relative_legacy,Bot_Pepa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,190710,37.85116232537298,spot_baseline,Bot_Pepa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,190710,5.309410196811908,spot_peer,Bot_Pepa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,190710,0.1450492599365129,baseline,Bot_Pepa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,190710,0.0203461656772082,peer,Bot_Pepa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,191026,37.81793776610529,spot_peer,manticAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,191026,0.3360311315097654,relative_legacy,manticAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,191026,33.150337546680845,peer,manticAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,191026,69.98042646247798,baseline,manticAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,191026,83.18772411916731,spot_baseline,manticAI,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,191935,-0.1869445563930717,relative_legacy,pgodzinai,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,191935,-8.376493493366858,peer,pgodzinai,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,191935,1.910882294770442,spot_baseline,pgodzinai,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,191935,0.8909858142231808,baseline,pgodzinai,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,191935,-20.46152473947815,spot_peer,pgodzinai,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,191975,3.8224856105649367,peer,jkraybill_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,191975,66.72109124808708,spot_baseline,jkraybill_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,191975,26.010558302755317,spot_peer,jkraybill_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,191975,0.0265022294356057,relative_legacy,jkraybill_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,191975,9.727241333746155,baseline,jkraybill_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,192075,33.06085708591666,spot_peer,CumulativeBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,192075,10.969420895172878,peer,CumulativeBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,192075,24.382727976124556,baseline,CumulativeBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,192075,76.55347463629771,spot_baseline,CumulativeBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,192075,0.0959424994981508,relative_legacy,CumulativeBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,192418,0.2101281073678923,relative_legacy,InstitutPelFutur,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,192418,64.15460290875237,spot_baseline,InstitutPelFutur,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,192418,61.30864709134521,baseline,InstitutPelFutur,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,192418,28.466285847966866,peer,InstitutPelFutur,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,192418,24.170260899634798,spot_peer,InstitutPelFutur,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,192924,16.607646027078722,peer,acm_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,192924,56.55971758542251,spot_baseline,acm_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,192924,0.1129893814730756,relative_legacy,acm_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,192924,18.724357435625624,spot_peer,acm_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,192924,47.09607426280088,baseline,acm_bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,204737,25.3056862919592,baseline,SynapseSeer,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,204737,-0.0130377739045064,relative_legacy,SynapseSeer,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,204737,6.102121170491478,spot_peer,SynapseSeer,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,204737,38.95668117627256,spot_baseline,SynapseSeer,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,204737,6.396575825261186,peer,SynapseSeer,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,218666,4.5602099674810725,peer,GreeneiBot2,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,218666,61.164454337366166,spot_baseline,GreeneiBot2,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,218666,12.312743764715036,baseline,GreeneiBot2,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,218666,22.026178432346832,spot_peer,GreeneiBot2,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,218666,0.0282492270685703,relative_legacy,GreeneiBot2,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,220077,-49.91756877002221,baseline,mmBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,220077,-58.72912860383191,spot_peer,mmBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,220077,-0.8947046081691001,relative_legacy,mmBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,220077,-59.34516252966873,peer,mmBot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,224797,-32.19280948873623,spot_baseline,cookics_bot_TEST,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,224797,-0.4975911438029572,relative_legacy,cookics_bot_TEST,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,224797,-44.91553626336405,spot_peer,cookics_bot_TEST,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,224797,-28.69650740201498,peer,cookics_bot_TEST,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,224797,-22.00050413272644,baseline,cookics_bot_TEST,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,227188,1.0641154308923886,peer,ProfessorSP,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,227188,6.971228631106709,baseline,ProfessorSP,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,227188,37.85116232537298,spot_baseline,ProfessorSP,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,227188,5.309410196811908,spot_peer,ProfessorSP,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,227188,-0.0168501806992002,relative_legacy,ProfessorSP,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236037,37.85116232537298,spot_baseline,metac-o1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236037,5.572217958305781,peer,metac-o1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236037,5.309410196811908,spot_peer,metac-o1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236037,29.37956974104437,baseline,metac-o1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236037,-0.0278584364399258,relative_legacy,metac-o1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236038,-16.53556621108822,peer,metac-gpt-4o,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236038,0.0,spot_baseline,metac-gpt-4o,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236038,-21.83172061016994,spot_peer,metac-gpt-4o,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236038,-0.0030026232716976,baseline,metac-gpt-4o,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236038,-0.3339547725701028,relative_legacy,metac-gpt-4o,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236040,0.1324914997457142,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236040,20.112945745847064,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236040,17.396204743744505,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236040,46.25545335586288,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236041,13.750352374993504,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236041,7.153347967858695,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236041,-4.714213775708182,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236041,-0.1448036466844169,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236041,-11.972046837308726,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236043,-0.1210992873922519,relative_legacy,metac-grok-2-1212,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236043,-1.1058656880415445,peer,metac-grok-2-1212,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236043,26.303440583379377,spot_baseline,metac-grok-2-1212,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236043,20.730514992874262,baseline,metac-grok-2-1212,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236043,-2.970869907347048,spot_peer,metac-grok-2-1212,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236045,-174.75633663106012,baseline,metac-Gemini-Exp-1206,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236045,-2.01663526290221,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236045,-264.3856189774725,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236045,-211.4091134117193,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236045,-138.8126134959919,peer,metac-Gemini-Exp-1206,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236047,21.412480535284764,spot_baseline,metac-Llama-3.1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236047,-3.8580350091335927,peer,metac-Llama-3.1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236047,-6.4779269772450965,spot_peer,metac-Llama-3.1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236047,-0.1584647352235155,relative_legacy,metac-Llama-3.1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,236047,16.798433930450148,baseline,metac-Llama-3.1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,237476,0.0,baseline,NextWorldLab,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,237476,0.0,spot_baseline,NextWorldLab,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,237476,-21.83172061016994,spot_peer,NextWorldLab,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,237476,-0.284453114176693,relative_legacy,NextWorldLab,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,237476,-13.17913988072614,peer,NextWorldLab,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,239758,33.06085708591666,spot_peer,metac-perplexity,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,239758,58.65235038861422,baseline,metac-perplexity,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,239758,27.18318485830668,peer,metac-perplexity,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,239758,0.268661940283587,relative_legacy,metac-perplexity,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,239759,0.2755111840105697,relative_legacy,metac-exa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,239759,33.06085708591666,spot_peer,metac-exa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,239759,76.55347463629771,spot_baseline,metac-exa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,239759,60.70177607630045,baseline,metac-exa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,239759,27.85832422943714,peer,metac-exa,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,240414,0.0,baseline,minefrac1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,240414,0.0,spot_baseline,minefrac1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,240414,-21.83172061016994,spot_peer,minefrac1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,240414,-0.1106689252455176,relative_legacy,minefrac1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,240414,-5.060120023459145,peer,minefrac1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,240416,12.975752143748648,spot_peer,metac-o1-preview,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,240416,11.562319436477356,peer,metac-o1-preview,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,240416,37.12780442426974,baseline,metac-o1-preview,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,240416,48.54268271702416,spot_baseline,metac-o1-preview,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,240416,0.0541525789955081,relative_legacy,metac-o1-preview,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,246118,25.70301307278927,baseline,laylaps,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,246118,0.1024266579669182,relative_legacy,laylaps,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,246118,76.55347463629771,spot_baseline,laylaps,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,246118,33.06085708591666,spot_peer,laylaps,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,246118,11.60844679095444,peer,laylaps,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,247214,59.56977103775426,baseline,ajf-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,247214,67.80719051126377,spot_baseline,ajf-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,247214,26.789344484216507,spot_peer,ajf-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,247214,0.2066446970931078,relative_legacy,ajf-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,247214,24.69789424885444,peer,ajf-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,250015,29.015370594329344,baseline,metac-deepseek-r1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,250015,9.857461439662591,peer,metac-deepseek-r1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,250015,48.54268271702416,spot_baseline,metac-deepseek-r1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,250015,12.975752143748648,spot_peer,metac-deepseek-r1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,250015,0.0436773669178658,relative_legacy,metac-deepseek-r1,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,264059,67.80719051126377,spot_baseline,wunderplumb,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,264059,0.0973045846536529,relative_legacy,wunderplumb,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,264059,12.120674925496369,peer,wunderplumb,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,264059,28.25414733874046,baseline,wunderplumb,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,264059,26.789344484216507,spot_peer,wunderplumb,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,264332,12.975752143748648,spot_peer,krm-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,264332,0.0,relative_legacy,krm-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,264332,2.043562401156764,peer,krm-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,264332,7.501729095844834,baseline,krm-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35113,"Will King Green defeat Mauricio Ruffy at UFC 313 on March 8, 2025?",2025-03-02 04:05:16.187707+00,264332,48.54268271702416,spot_baseline,krm-bot,True,no,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35663 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,189869,42.7915223652091,baseline,VeritasAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,189869,14.559271996267348,spot_peer,VeritasAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,189869,0.0776688763743533,relative_legacy,VeritasAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,189869,13.981795892221156,peer,VeritasAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,190710,21.68111679492041,spot_peer,Bot_Pepa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,190710,34.015866628126055,baseline,Bot_Pepa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,190710,12.205044306703924,peer,Bot_Pepa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,190710,0.1107446927476809,relative_legacy,Bot_Pepa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,190710,58.496250072115615,spot_baseline,Bot_Pepa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,191026,-98.5284060398015,peer,manticAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,191026,-111.2319030427288,baseline,manticAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,191026,-132.19280948873623,spot_baseline,manticAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,191026,-114.75819571938354,spot_peer,manticAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,191026,-1.4431061811467574,relative_legacy,manticAI,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,191935,19.946188452584284,spot_peer,pgodzinai,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,191935,28.34128482283862,baseline,pgodzinai,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,191935,9.975350645395247,peer,pgodzinai,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,191935,0.0865567852891888,relative_legacy,pgodzinai,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,191935,56.0714954474479,spot_baseline,pgodzinai,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,191975,-0.3736494304131115,baseline,jkraybill_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,191975,-0.1163597657404547,relative_legacy,jkraybill_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,191975,-21.071868881292307,spot_peer,jkraybill_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,191975,-1.2557853330824462,spot_baseline,jkraybill_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,191975,-6.211623328638281,peer,jkraybill_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,192075,18.18160178323716,spot_peer,CumulativeBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,192075,53.60529002402098,spot_baseline,CumulativeBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,192075,0.0416658419608785,relative_legacy,CumulativeBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,192075,4.836637531128682,peer,CumulativeBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,192075,14.17729743678282,baseline,CumulativeBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,192418,14.990045596289312,peer,InstitutPelFutur,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,192418,46.12745441673563,baseline,InstitutPelFutur,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,192418,14.559271996267348,spot_peer,InstitutPelFutur,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,192418,48.54268271702416,spot_baseline,InstitutPelFutur,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,192418,0.0731993023306376,relative_legacy,InstitutPelFutur,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,192924,0.2346144384414246,relative_legacy,acm_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,192924,69.59938131099001,spot_baseline,acm_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,192924,57.73316221956426,baseline,acm_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,192924,29.625482331553005,spot_peer,acm_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,192924,25.00296495081017,peer,acm_bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,204737,20.789285164133265,spot_baseline,SynapseSeer,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,204737,13.430212807510603,baseline,SynapseSeer,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,204737,-4.164297806269098,peer,SynapseSeer,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,204737,-0.1198108142256986,relative_legacy,SynapseSeer,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,204737,-5.298471760889419,spot_peer,SynapseSeer,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,218666,-25.33783206489444,peer,GreeneiBot2,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,218666,-61.821563313844045,spot_peer,GreeneiBot2,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,218666,-58.20799921880349,spot_baseline,GreeneiBot2,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,218666,-23.93068097367346,baseline,GreeneiBot2,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,218666,-0.3949218630365942,relative_legacy,GreeneiBot2,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,220077,35.588751608216654,peer,mmBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,220077,34.60118316436618,spot_peer,mmBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,220077,0.3393705263161267,relative_legacy,mmBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,220077,73.79494245835973,baseline,mmBot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,222631,-33.43271276320363,baseline,Grizeu_Bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,222631,-33.12122825316904,peer,Grizeu_Bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,222631,-0.506040304989973,relative_legacy,Grizeu_Bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,222631,-72.90373294692785,spot_peer,Grizeu_Bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,222631,-73.69655941662063,spot_baseline,Grizeu_Bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,224797,3.897892153440675,peer,cookics_bot_TEST,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,224797,37.85116232537298,spot_baseline,cookics_bot_TEST,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,224797,6.909416806205742,spot_peer,cookics_bot_TEST,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,224797,-0.0129021273346339,relative_legacy,cookics_bot_TEST,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,224797,25.62563871712159,baseline,cookics_bot_TEST,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,227188,12.7090792667926,baseline,ProfessorSP,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,227188,28.34315768654065,spot_peer,ProfessorSP,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,227188,67.80719051126377,spot_baseline,ProfessorSP,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,227188,5.29587482839584,peer,ProfessorSP,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,227188,0.0561464844454095,relative_legacy,ProfessorSP,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236037,37.453581603170335,baseline,metac-o1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236037,10.388040474061285,peer,metac-o1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236037,0.0594862515528986,relative_legacy,metac-o1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236037,14.559271996267348,spot_peer,metac-o1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236037,48.54268271702416,spot_baseline,metac-o1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236038,-0.116828016019878,relative_legacy,metac-gpt-4o,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236038,20.910478081848016,baseline,metac-gpt-4o,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236038,-1.929100097128032,peer,metac-gpt-4o,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236038,-1.3530562439657623,spot_peer,metac-gpt-4o,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236040,0.0593337287740017,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236040,10.68126277093803,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236040,38.20722271027098,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236040,48.54268271702416,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236040,14.559271996267348,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236041,4.657525026234527,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236041,6.909416806205742,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236041,-0.0246901289109573,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236041,29.95108947743504,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236043,16.281892418300256,peer,metac-grok-2-1212,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236043,45.88184898762425,baseline,metac-grok-2-1212,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236043,21.68111679492041,spot_peer,metac-grok-2-1212,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236043,0.1375305412689074,relative_legacy,metac-grok-2-1212,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236043,58.496250072115615,spot_baseline,metac-grok-2-1212,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236045,-0.0092549397568332,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236045,6.909416806205742,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236045,37.85116232537298,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236045,24.37421589297271,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236045,3.7891145176500993,peer,metac-Gemini-Exp-1206,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236047,53.13955552944611,baseline,metac-Llama-3.1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236047,21.556375699316565,peer,metac-Llama-3.1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236047,28.34315768654065,spot_peer,metac-Llama-3.1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,236047,0.2104478377651044,relative_legacy,metac-Llama-3.1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,237476,23.961234229568845,peer,NextWorldLab,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,237476,54.51512313445572,baseline,NextWorldLab,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,237476,34.60118316436618,spot_peer,NextWorldLab,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,237476,0.2589505500310692,relative_legacy,NextWorldLab,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,239758,-0.1098649756130463,relative_legacy,metac-perplexity,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,239758,-1.3530562439657623,spot_peer,metac-perplexity,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,239758,26.303440583379377,spot_baseline,metac-perplexity,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,239758,20.037406013083235,baseline,metac-perplexity,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,239758,-2.045675434737916,peer,metac-perplexity,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,239759,38.64958340778055,baseline,metac-exa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,239759,48.54268271702416,spot_baseline,metac-exa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,239759,14.559271996267348,spot_peer,metac-exa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,239759,0.0599196183479774,relative_legacy,metac-exa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,239759,10.948689868493918,peer,metac-exa,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,240414,6.909416806205742,spot_peer,minefrac1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,240414,9.611025133270784,baseline,minefrac1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,240414,1.7701270285297963,peer,minefrac1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,240414,0.0,relative_legacy,minefrac1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,240414,37.85116232537298,spot_baseline,minefrac1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,240416,34.60118316436618,spot_peer,metac-o1-preview,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,240416,25.53915276658588,peer,metac-o1-preview,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,240416,0.2717266594313379,relative_legacy,metac-o1-preview,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,240416,58.00989620300234,baseline,metac-o1-preview,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,241715,-12.029423371771175,spot_baseline,CatrachoCaster,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,241715,-1.7764805130949697,baseline,CatrachoCaster,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,241715,-4.250242089610351,peer,CatrachoCaster,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,241715,-0.0736626234975494,relative_legacy,CatrachoCaster,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,241715,-28.78047980350182,spot_peer,CatrachoCaster,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,246118,37.85116232537298,spot_baseline,laylaps,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,246118,12.693489409563613,baseline,laylaps,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,246118,2.4193355653473256,peer,laylaps,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,246118,0.0,relative_legacy,laylaps,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,246118,6.909416806205742,spot_peer,laylaps,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,247214,-91.72402268049736,spot_peer,ajf-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,247214,-87.38705343519398,peer,ajf-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,247214,-91.980715725157,baseline,ajf-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,247214,-100.0,spot_baseline,ajf-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,247214,-1.2886373508303255,relative_legacy,ajf-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,250015,20.68970388033013,baseline,metac-deepseek-r1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,250015,3.457535201412741,peer,metac-deepseek-r1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,250015,-0.005558248765648,relative_legacy,metac-deepseek-r1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,250015,6.909416806205742,spot_peer,metac-deepseek-r1,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,264059,-0.3997597074936995,peer,wunderplumb,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,264059,-0.0480485759591467,relative_legacy,wunderplumb,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,264059,10.944521275234829,baseline,wunderplumb,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,264059,26.303440583379377,spot_baseline,wunderplumb,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,264059,-1.3530562439657623,spot_peer,wunderplumb,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,264332,48.54268271702416,spot_baseline,krm-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,264332,7.170433253611608,baseline,krm-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,264332,2.1505751778953863,peer,krm-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,264332,0.0157928711511191,relative_legacy,krm-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35114,"Will ""FYRE IGNITE"" tickets still be available to Fyre Festival 2 on April 1, 2025?",2025-03-02 04:05:16.510557+00,264332,14.559271996267348,spot_peer,krm-bot,True,yes,2025-03-03 13:00:00+00,2025-03-03 13:00:00+00,1.0,2025-03-03 13:00:00+00,35664 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,189869,43.49875675533171,baseline,VeritasAI,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,189869,2.3550279828155385,peer,VeritasAI,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,189869,-0.0516379390731491,relative_legacy,VeritasAI,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,189869,10.189060163726271,spot_peer,VeritasAI,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,190710,20.14786530777955,baseline,Bot_Pepa,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,190710,26.303440583379377,spot_baseline,Bot_Pepa,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,190710,-5.757561887369422,spot_peer,Bot_Pepa,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,190710,-0.1897829118421668,relative_legacy,Bot_Pepa,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,190710,-8.188883443304883,peer,Bot_Pepa,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,191026,35.7263096049186,spot_peer,manticAI,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,191026,0.2587526456695503,relative_legacy,manticAI,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,191026,24.8127258373024,peer,manticAI,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,191026,72.19308981754547,baseline,manticAI,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,191026,84.1570637395517,spot_baseline,manticAI,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,191935,76.12852733616194,spot_baseline,pgodzinai,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,191935,40.6456361447722,baseline,pgodzinai,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,191935,13.607474916310704,peer,pgodzinai,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,191935,0.1199466897625968,relative_legacy,pgodzinai,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,191935,29.969457151091863,spot_peer,pgodzinai,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,192075,-0.1691799152054557,relative_legacy,CumulativeBot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,192075,1.3364283967064805,baseline,CumulativeBot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,192075,-8.817780545706938,peer,CumulativeBot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,192075,3.5623909730721217,spot_baseline,CumulativeBot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,192075,-22.064004391188373,spot_peer,CumulativeBot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,192418,0.0498656692751441,relative_legacy,InstitutPelFutur,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,192418,17.326253765824703,spot_peer,InstitutPelFutur,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,192418,26.79628290490507,baseline,InstitutPelFutur,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,192418,7.297314393174458,peer,InstitutPelFutur,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,192924,67.27581812287913,baseline,acm_bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,192924,20.34675171635675,peer,acm_bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,192924,0.1945231857604126,relative_legacy,acm_bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,192924,30.274165105894284,spot_peer,acm_bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,204737,0.6468704049748948,peer,SynapseSeer,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,204737,42.86784099482301,spot_baseline,SynapseSeer,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,204737,6.119921674207981,spot_peer,SynapseSeer,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,204737,-0.0686686876766854,relative_legacy,SynapseSeer,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,204737,33.569545014281914,baseline,SynapseSeer,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,218666,10.368775294740423,peer,GreeneiBot2,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,218666,59.26364286065772,spot_baseline,GreeneiBot2,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,218666,17.87651184971435,spot_peer,GreeneiBot2,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,218666,0.0709034479070783,relative_legacy,GreeneiBot2,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,218666,41.55244238154345,baseline,GreeneiBot2,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,222631,-96.32329333777288,spot_peer,Grizeu_Bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,222631,-70.56340069240994,baseline,Grizeu_Bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,222631,-70.6678503278343,peer,Grizeu_Bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,222631,-1.0532984460405193,relative_legacy,Grizeu_Bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,222631,-100.0,spot_baseline,Grizeu_Bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,224797,67.80719051126377,spot_baseline,cookics_bot_TEST,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,224797,14.709935305173524,peer,cookics_bot_TEST,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,224797,54.79948807809921,baseline,cookics_bot_TEST,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,224797,0.1244369331801867,relative_legacy,cookics_bot_TEST,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,224797,24.00265250419412,spot_peer,cookics_bot_TEST,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,227188,0.0779128355089023,relative_legacy,ProfessorSP,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,227188,8.726896492008215,peer,ProfessorSP,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,227188,22.10477779330796,baseline,ProfessorSP,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,227188,81.55754288625727,spot_baseline,ProfessorSP,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,227188,33.8623262770553,spot_peer,ProfessorSP,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236037,20.123615608236097,peer,metac-o1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236037,30.274165105894284,spot_peer,metac-o1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236037,0.1935269365162146,relative_legacy,metac-o1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236037,66.20999766139661,baseline,metac-o1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236037,76.55347463629771,spot_baseline,metac-o1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236038,-5.757561887369422,spot_peer,metac-gpt-4o,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236038,22.92401360647887,baseline,metac-gpt-4o,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236038,-11.743407497984345,peer,metac-gpt-4o,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236038,-0.2458543062424422,relative_legacy,metac-gpt-4o,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236040,20.175064159244908,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236040,0.193526202792962,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236040,66.66125227382953,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236040,30.274165105894284,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236041,20.18459091960854,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236041,30.274165105894284,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236041,66.73343071634795,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236041,0.193526202792962,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236043,0.2655694682446153,relative_legacy,metac-grok-2-1212,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236043,25.43386238648561,peer,metac-grok-2-1212,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236043,74.01990124740946,baseline,metac-grok-2-1212,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236043,36.18710446864759,spot_peer,metac-grok-2-1212,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236045,89.53026213333065,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236045,39.57915510550871,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236045,74.23309669325945,baseline,metac-Gemini-Exp-1206,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236045,27.705788826982012,peer,metac-Gemini-Exp-1206,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236045,0.3011166401560869,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236047,24.00265250419412,spot_peer,metac-Llama-3.1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236047,14.648488684830417,peer,metac-Llama-3.1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236047,59.14743463880571,baseline,metac-Llama-3.1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,236047,0.1172951791200802,relative_legacy,metac-Llama-3.1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,237476,56.36387747155084,baseline,NextWorldLab,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,237476,30.274165105894284,spot_peer,NextWorldLab,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,237476,0.1925229113993117,relative_legacy,NextWorldLab,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,237476,19.391743655262356,peer,NextWorldLab,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,239758,32.30657609709679,baseline,metac-perplexity,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,239758,37.85116232537298,spot_baseline,metac-perplexity,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,239758,2.522718216789515,spot_peer,metac-perplexity,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,239758,-0.137147351564314,relative_legacy,metac-perplexity,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,239758,-3.922747323148666,peer,metac-perplexity,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,239759,0.3291994863214176,relative_legacy,metac-exa,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,239759,78.30255006713371,baseline,metac-exa,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,239759,41.78026528971059,spot_peer,metac-exa,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,239759,29.83719615501177,peer,metac-exa,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,240414,39.279662832447045,baseline,minefrac1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,240414,0.1147756950082433,relative_legacy,minefrac1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,240414,13.014627060294671,peer,minefrac1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,240414,24.00265250419412,spot_peer,minefrac1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,240414,67.80719051126377,spot_baseline,minefrac1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,240416,25.31464716349082,peer,metac-o1-preview,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,240416,36.18710446864759,spot_peer,metac-o1-preview,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,240416,0.2649257950553592,relative_legacy,metac-o1-preview,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,240416,73.4294817736486,baseline,metac-o1-preview,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,241715,23.878685958711674,spot_baseline,CatrachoCaster,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,241715,-4.9347210322812325,peer,CatrachoCaster,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,241715,13.059741643030693,baseline,CatrachoCaster,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,241715,-7.496229299408847,spot_peer,CatrachoCaster,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,241715,-0.1269004694529393,relative_legacy,CatrachoCaster,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,246118,-262.816870486128,spot_peer,laylaps,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,246118,-208.57740835881907,baseline,laylaps,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,246118,-166.68336118105836,peer,laylaps,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,246118,-2.3869755303295843,relative_legacy,laylaps,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,246118,-332.1928094887361,spot_baseline,laylaps,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,247214,0.7396625626146776,baseline,ajf-bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,247214,1.1495638837829438,spot_baseline,ajf-bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,247214,-0.303019299548888,relative_legacy,ajf-bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,247214,-16.62541829830465,peer,ajf-bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,247214,-23.794119178208494,spot_peer,ajf-bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,250015,-51.45731728297583,spot_baseline,metac-deepseek-r1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,250015,-2.5663663556102736,baseline,metac-deepseek-r1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,250015,-3.034583171408445,peer,metac-deepseek-r1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,250015,-0.0441183723670046,relative_legacy,metac-deepseek-r1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,250015,-61.51582058385428,spot_peer,metac-deepseek-r1,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,264059,-32.19280948873623,spot_baseline,wunderplumb,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,264059,-47.70222824338643,spot_peer,wunderplumb,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,264059,-16.13268176550811,baseline,wunderplumb,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,264059,-24.648824294856947,peer,wunderplumb,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,264059,-0.3957156420383193,relative_legacy,wunderplumb,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,264332,2.522718216789515,spot_peer,krm-bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,264332,37.85116232537298,spot_baseline,krm-bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,264332,19.89856866212514,baseline,krm-bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,264332,0.5661801535849342,peer,krm-bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35115,"Will a fourth person solve a Rubik's cube in less than 3.44 seconds before March 31, 2025?",2025-03-02 04:05:16.547351+00,264332,-0.0459395173445171,relative_legacy,krm-bot,True,no,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35665 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,189869,57.09068263394092,baseline,VeritasAI,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,189869,0.510003701856221,relative_legacy,VeritasAI,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,189869,30.34979467736224,spot_peer,VeritasAI,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,189869,65.46666579918808,spot_baseline,VeritasAI,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,189869,24.76470005242014,peer,VeritasAI,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,190710,39.79144693276354,spot_peer,Bot_Pepa,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,190710,0.6213049321084352,relative_legacy,Bot_Pepa,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,190710,28.9441233053477,peer,Bot_Pepa,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,190710,74.58274383888589,spot_baseline,Bot_Pepa,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,190710,56.93456203116835,baseline,Bot_Pepa,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,191026,-7.695948559341854,spot_peer,manticAI,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,191026,-8.540516809936777,peer,manticAI,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,191026,24.607524364040653,baseline,manticAI,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,191026,-0.4085613672072182,relative_legacy,manticAI,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,191026,28.73284474305999,spot_baseline,manticAI,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,191935,30.79600297804861,baseline,pgodzinai,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,191935,66.54334946691102,spot_baseline,pgodzinai,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,191935,31.464931333218157,spot_peer,pgodzinai,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,191935,0.1546933869257833,relative_legacy,pgodzinai,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,191935,10.783644525609178,peer,pgodzinai,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,191975,54.68136457991404,spot_baseline,jkraybill_bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,191975,22.069138597878,baseline,jkraybill_bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,191975,7.858326043136167,peer,jkraybill_bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,191975,0.0968789680350014,relative_legacy,jkraybill_bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,191975,19.17930412882842,spot_peer,jkraybill_bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,192075,-82.11995150365873,baseline,CumulativeBot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,192075,-187.50456241414452,spot_baseline,CumulativeBot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,192075,-231.6561202578752,spot_peer,CumulativeBot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,192075,-2.95264281692221,relative_legacy,CumulativeBot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,192075,-101.3038891181372,peer,CumulativeBot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,192418,39.92538481088862,spot_baseline,InstitutPelFutur,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,192418,3.8963250823377966,spot_peer,InstitutPelFutur,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,192418,18.583259470333758,baseline,InstitutPelFutur,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,192418,1.7958083096745172,peer,InstitutPelFutur,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,192418,-0.084572873489484,relative_legacy,InstitutPelFutur,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,192924,0.0576072250644494,relative_legacy,acm_bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,192924,8.21695106377774,peer,acm_bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,192924,41.96259785774682,baseline,acm_bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,192924,47.63291894510861,spot_baseline,acm_bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,192924,11.879128292779928,spot_peer,acm_bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,218666,43.23351139739405,baseline,GreeneiBot2,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,218666,20.63874220258695,peer,GreeneiBot2,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,218666,0.41240479112734,relative_legacy,GreeneiBot2,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,218666,34.85574124468248,spot_peer,GreeneiBot2,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,218666,69.81723489866968,spot_baseline,GreeneiBot2,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,222631,74.58274383888575,spot_baseline,Grizeu_Bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,222631,39.79144693276339,spot_peer,Grizeu_Bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,222631,0.5655509217403861,relative_legacy,Grizeu_Bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,222631,26.764615484972182,peer,Grizeu_Bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,222631,52.616007936831,baseline,Grizeu_Bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,224797,-17.100974900049415,spot_peer,cookics_bot_TEST,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,224797,15.908568985522912,baseline,cookics_bot_TEST,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,224797,19.652129655480284,spot_baseline,cookics_bot_TEST,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,224797,-15.65867483867332,peer,cookics_bot_TEST,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,224797,-0.607753259660321,relative_legacy,cookics_bot_TEST,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,227188,28.768207245178136,spot_baseline,ProfessorSP,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,227188,15.829099634748028,baseline,ProfessorSP,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,227188,-4.751217728000047,peer,ProfessorSP,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,227188,-0.2777342145447742,relative_legacy,ProfessorSP,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,227188,-7.659323110719497,spot_peer,ProfessorSP,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236037,54.309488308477725,spot_baseline,metac-o1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236037,18.79414656198366,spot_peer,metac-o1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236037,0.2240329321029324,relative_legacy,metac-o1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236037,14.400993550465769,peer,metac-o1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236037,46.62341358284745,baseline,metac-o1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236038,-0.1315968908294728,relative_legacy,metac-gpt-4o,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236038,1.4425025575590065,peer,metac-gpt-4o,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236038,39.92538481088862,spot_baseline,metac-gpt-4o,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236038,3.8963250823377966,spot_peer,metac-gpt-4o,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236038,34.76889340304306,baseline,metac-gpt-4o,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236040,-7.659323110719497,spot_peer,metac-claude-3-5-sonnet-latest,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236040,24.933830863379388,baseline,metac-claude-3-5-sonnet-latest,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236040,-8.66493210721019,peer,metac-claude-3-5-sonnet-latest,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236040,-0.4103666178418119,relative_legacy,metac-claude-3-5-sonnet-latest,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236040,28.768207245178136,spot_baseline,metac-claude-3-5-sonnet-latest,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236041,25.00080713352405,baseline,metac-claude-3-5-sonnet-20240620,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236041,28.768207245178136,spot_baseline,metac-claude-3-5-sonnet-20240620,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236041,-7.659323110719497,spot_peer,metac-claude-3-5-sonnet-20240620,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236041,-8.707002246047825,peer,metac-claude-3-5-sonnet-20240620,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236041,-0.4111029023263821,relative_legacy,metac-claude-3-5-sonnet-20240620,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236043,-31.75841025021845,peer,metac-grok-2-1212,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236043,-33.90523475256834,spot_peer,metac-grok-2-1212,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236043,3.4273270392551183,spot_baseline,metac-grok-2-1212,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236043,-1.045768882068742,relative_legacy,metac-grok-2-1212,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236043,2.981814699706132,baseline,metac-grok-2-1212,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236045,-17.100975676835198,spot_peer,metac-Gemini-Exp-1206,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236045,19.652128905480215,spot_baseline,metac-Gemini-Exp-1206,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236045,16.162976555113676,baseline,metac-Gemini-Exp-1206,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236045,-15.970024469723306,peer,metac-Gemini-Exp-1206,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236045,-0.6151736762854443,relative_legacy,metac-Gemini-Exp-1206,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236047,-7.659323110719497,spot_peer,metac-Llama-3.1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236047,24.67243822611746,baseline,metac-Llama-3.1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236047,-8.532884561313942,peer,metac-Llama-3.1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236047,28.768207245178136,spot_baseline,metac-Llama-3.1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,236047,-0.4082083528191061,relative_legacy,metac-Llama-3.1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,237476,-7.659323110719497,spot_peer,NextWorldLab,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,237476,28.768207245178136,spot_baseline,NextWorldLab,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,237476,21.721678068137432,baseline,NextWorldLab,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,237476,-7.427492284940648,peer,NextWorldLab,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,237476,-0.3844579345073165,relative_legacy,NextWorldLab,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,239758,-7.659323110719497,spot_peer,metac-perplexity,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,239758,28.768207245178136,spot_baseline,metac-perplexity,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,239758,24.403847751184507,baseline,metac-perplexity,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,239758,-0.4051044491563046,relative_legacy,metac-perplexity,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,239758,-8.398802996105392,peer,metac-perplexity,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,239759,18.79414656198344,spot_peer,metac-exa,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,239759,46.31906541891766,baseline,metac-exa,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,239759,0.2214789798098458,relative_legacy,metac-exa,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,239759,14.31810662586121,peer,metac-exa,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,239759,54.30948830847752,spot_baseline,metac-exa,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,240414,0.1312197231341726,relative_legacy,minefrac1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,240414,18.79414656198366,spot_peer,minefrac1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,240414,54.309488308477725,spot_baseline,minefrac1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,240414,31.73133606404398,baseline,minefrac1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,240414,10.227459969995245,peer,minefrac1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,240416,39.92538481088862,spot_baseline,metac-o1-preview,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,240416,3.8963250823377966,spot_peer,metac-o1-preview,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,240416,-0.1322930147036938,relative_legacy,metac-o1-preview,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,240416,34.093263887295336,baseline,metac-o1-preview,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,240416,1.48730459609112,peer,metac-o1-preview,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,246118,39.92538481088862,spot_baseline,laylaps,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,246118,25.100810918506184,baseline,laylaps,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,246118,1.40225545411486,peer,laylaps,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,246118,-0.1234514921369602,relative_legacy,laylaps,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,246118,3.8963250823377966,spot_peer,laylaps,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,247214,0.7013113183276359,relative_legacy,ajf-bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,247214,65.08707596389755,baseline,ajf-bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,247214,38.10721021943981,spot_peer,ajf-bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,247214,31.845251369117303,peer,ajf-bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,247214,72.9565842536078,spot_baseline,ajf-bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,250015,-17.100974900049415,spot_peer,metac-deepseek-r1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,250015,-9.85742249256845,peer,metac-deepseek-r1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,250015,10.7574536658338,baseline,metac-deepseek-r1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,250015,19.652129655480284,spot_baseline,metac-deepseek-r1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,250015,-0.4192281852397103,relative_legacy,metac-deepseek-r1,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,264059,54.309488308477725,spot_baseline,wunderplumb,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,264059,27.262104386111755,baseline,wunderplumb,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,264059,9.192487284590085,peer,wunderplumb,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,264059,0.1163550237530613,relative_legacy,wunderplumb,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,264059,18.79414656198366,spot_peer,wunderplumb,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,264332,0.2988079012570884,relative_legacy,krm-bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,264332,31.08620185192733,baseline,krm-bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,264332,69.31471805599456,spot_baseline,krm-bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,264332,34.335277371911815,spot_peer,krm-bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35116,What will be the annual rate of new US building permits issued in February 2025 for privately-owned housing units?,2025-03-02 04:05:16.583058+00,264332,15.487997507556036,peer,krm-bot,True,1456000.0,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35666 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,189869,-0.5080183813481183,peer,VeritasAI,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,189869,-0.1063050367171814,relative_legacy,VeritasAI,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,189869,-3.8480528568066745,spot_baseline,VeritasAI,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,189869,0.4973907528984349,spot_peer,VeritasAI,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,189869,-2.2416448501525723,baseline,VeritasAI,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,190710,5.268025782891358,spot_baseline,Bot_Pepa,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,190710,3.987321744910224,baseline,Bot_Pepa,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,190710,5.046074613918644,peer,Bot_Pepa,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,190710,0.033705258118242,relative_legacy,Bot_Pepa,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,190710,9.964087801815616,spot_peer,Bot_Pepa,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,191026,23.084083103261293,baseline,manticAI,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,191026,26.94813260058409,spot_baseline,manticAI,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,191026,24.076747185701336,peer,manticAI,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,191026,0.5573810805432148,relative_legacy,manticAI,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,191026,32.47804488172731,spot_peer,manticAI,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,191935,9.3654017063992,peer,pgodzinai,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,191935,1.9223679318095488,spot_baseline,pgodzinai,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,191935,6.489750802615285,spot_peer,pgodzinai,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,191935,7.923069947837275,baseline,pgodzinai,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,191935,0.1509082012812066,relative_legacy,pgodzinai,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,192075,6.956422192851694,baseline,CumulativeBot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,192075,16.425203348601617,spot_baseline,CumulativeBot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,192075,21.55038758159166,spot_peer,CumulativeBot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,192075,0.1673881093087287,relative_legacy,CumulativeBot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,192075,8.953639557639367,peer,CumulativeBot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,192418,22.60718829872761,baseline,InstitutPelFutur,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,192418,57.5407219568196,spot_peer,InstitutPelFutur,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,192418,0.6148904895606468,relative_legacy,InstitutPelFutur,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,192418,25.23796485048832,peer,InstitutPelFutur,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,192418,51.08256237659889,spot_baseline,InstitutPelFutur,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,192924,14.975825916703684,spot_baseline,acm_bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,192924,20.0452648638515,spot_peer,acm_bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,192924,13.072203528507409,baseline,acm_bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,192924,13.000619556230555,peer,acm_bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,192924,0.2566535227144236,relative_legacy,acm_bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,218666,-96.95792876391349,spot_peer,GreeneiBot2,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,218666,-1.4847955469479768,relative_legacy,GreeneiBot2,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,218666,-50.35419547100346,baseline,GreeneiBot2,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,218666,-97.69391609521811,spot_baseline,GreeneiBot2,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,218666,-50.39088035436652,peer,GreeneiBot2,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,222631,39.92538481088862,spot_baseline,Grizeu_Bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,222631,27.840547639880292,baseline,Grizeu_Bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,222631,30.2624483123237,peer,Grizeu_Bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,222631,0.7290627855801919,relative_legacy,Grizeu_Bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,222631,45.95442217704355,spot_peer,Grizeu_Bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,224797,-68.44595577244019,baseline,cookics_bot_TEST,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,224797,-71.24929574695635,peer,cookics_bot_TEST,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,224797,-2.063391593706494,relative_legacy,cookics_bot_TEST,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,224797,-83.0695790234863,spot_peer,cookics_bot_TEST,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,224797,-84.31994967851048,spot_baseline,cookics_bot_TEST,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,227188,0.1290506095198604,relative_legacy,ProfessorSP,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,227188,15.434729441740934,spot_peer,ProfessorSP,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,227188,10.536051065782404,spot_baseline,ProfessorSP,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,227188,5.738405296711155,baseline,ProfessorSP,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,227188,7.876287466960693,peer,ProfessorSP,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236037,-26.026246573411164,spot_peer,metac-o1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236037,-0.8198655576712535,relative_legacy,metac-o1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236037,-26.12794928406483,peer,metac-o1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236037,-24.86778348192698,baseline,metac-o1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236037,-29.3893332451048,spot_baseline,metac-o1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236038,16.4252033486025,spot_baseline,metac-gpt-4o,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236038,21.550387581592584,spot_peer,metac-gpt-4o,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236038,14.549984152068586,peer,metac-gpt-4o,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236038,14.23968054204787,baseline,metac-gpt-4o,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236038,0.2967111681130697,relative_legacy,metac-gpt-4o,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236040,16.425203348601617,spot_baseline,metac-claude-3-5-sonnet-latest,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236040,14.562863702770937,peer,metac-claude-3-5-sonnet-latest,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236040,14.18070053347935,baseline,metac-claude-3-5-sonnet-latest,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236040,0.2967572706698664,relative_legacy,metac-claude-3-5-sonnet-latest,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236040,21.55038758159166,spot_peer,metac-claude-3-5-sonnet-latest,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236041,0.5025162926749555,spot_baseline,metac-claude-3-5-sonnet-20240620,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236041,5.015289485052432,spot_peer,metac-claude-3-5-sonnet-20240620,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236041,-0.1009892554721686,relative_legacy,metac-claude-3-5-sonnet-20240620,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236041,0.4418738242465425,baseline,metac-claude-3-5-sonnet-20240620,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236041,0.0210296018617026,peer,metac-claude-3-5-sonnet-20240620,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236043,0.1497125722703176,relative_legacy,metac-grok-2-1212,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236043,9.097218347862784,baseline,metac-grok-2-1212,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236043,9.188410093344777,peer,metac-grok-2-1212,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236043,15.434729441740934,spot_peer,metac-grok-2-1212,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236043,10.536051065782404,spot_baseline,metac-grok-2-1212,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236045,0.4973919990523859,spot_peer,metac-Gemini-Exp-1206,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236045,-2.4783439310604187,peer,metac-Gemini-Exp-1206,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236045,-3.040611790299336,baseline,metac-Gemini-Exp-1206,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236045,-3.8480516568065695,spot_baseline,metac-Gemini-Exp-1206,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236045,-0.1722574056758944,relative_legacy,metac-Gemini-Exp-1206,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236047,0.6543360079003903,relative_legacy,metac-Llama-3.1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236047,27.61973222624416,peer,metac-Llama-3.1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236047,30.80930677119065,spot_baseline,metac-Llama-3.1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236047,36.48772575120334,spot_peer,metac-Llama-3.1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,236047,26.54894894286152,baseline,metac-Llama-3.1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,237476,-4.05468983898383,peer,NextWorldLab,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,237476,-5.889151782819132,spot_baseline,NextWorldLab,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,237476,-1.6222119779606607,spot_peer,NextWorldLab,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,237476,-0.2159482951349842,relative_legacy,NextWorldLab,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,237476,-4.595831415254096,baseline,NextWorldLab,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,239758,-7.506585607363871,spot_peer,metac-perplexity,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,239758,-9.723297639733984,baseline,metac-perplexity,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,239758,-11.55558564817037,spot_baseline,metac-perplexity,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,239758,-10.100462857678778,peer,metac-perplexity,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,239758,-0.3804969762044919,relative_legacy,metac-perplexity,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,240414,2.9591633711071803,baseline,minefrac1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,240414,5.268025782891358,spot_baseline,minefrac1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,240414,9.964087801815616,spot_peer,minefrac1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,240414,0.0465369690045779,relative_legacy,minefrac1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,240414,4.948391924531027,peer,minefrac1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,240416,25.725061142874388,baseline,metac-o1-preview,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,240416,30.80930677119065,spot_baseline,metac-o1-preview,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,240416,27.21996451806267,peer,metac-o1-preview,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,240416,36.48772575120334,spot_peer,metac-o1-preview,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,240416,0.6438601916499614,relative_legacy,metac-o1-preview,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,246118,-52.85760675681997,baseline,laylaps,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,246118,-83.0695790234863,spot_peer,laylaps,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,246118,-84.31994967851048,spot_baseline,laylaps,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,246118,-53.39171268226346,peer,laylaps,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,246118,-1.5742663309481089,relative_legacy,laylaps,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,247214,49.990727646140186,spot_baseline,ajf-bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,247214,44.41201846165297,baseline,ajf-bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,247214,45.43890551804854,peer,ajf-bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,247214,1.1385456474745044,relative_legacy,ajf-bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,247214,56.40689358288172,spot_peer,ajf-bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,250015,-0.0565993487825411,relative_legacy,metac-deepseek-r1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,250015,-3.8480516568065695,spot_baseline,metac-deepseek-r1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,250015,-1.258164216055703,baseline,metac-deepseek-r1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,250015,0.1312385383590797,peer,metac-deepseek-r1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,250015,0.4973919990523859,spot_peer,metac-deepseek-r1,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,264059,-29.389333245107014,spot_baseline,wunderplumb,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,264059,-26.026246573413463,spot_peer,wunderplumb,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,264059,-0.4578987105324789,relative_legacy,wunderplumb,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,264059,-13.397013533896777,peer,wunderplumb,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,264059,-14.760099915153427,baseline,wunderplumb,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,264332,-89.5684336922565,spot_peer,krm-bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,264332,-36.12052592411799,baseline,krm-bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,264332,-90.57810602621514,spot_baseline,krm-bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,264332,-1.0694270825009986,relative_legacy,krm-bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35117,"What will be the maximum daily average CO₂ reported by the Mauna Loa Observatory for March 1-25, 2025?",2025-03-02 04:05:16.618473+00,264332,-35.801336914334726,peer,krm-bot,True,430.6,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35667 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,189869,-21.88017905631031,peer,VeritasAI,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,189869,-88.3281718653073,baseline,VeritasAI,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,189869,-98.70405130110044,spot_baseline,VeritasAI,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,189869,-23.68861138685094,spot_peer,VeritasAI,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,189869,-1.0927987969760506,relative_legacy,VeritasAI,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,190710,-23.68861138685094,spot_peer,Bot_Pepa,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,190710,-18.9175982171229,peer,Bot_Pepa,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,190710,-0.9393676376683242,relative_legacy,Bot_Pepa,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,190710,-74.3162132888089,baseline,Bot_Pepa,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,190710,-98.70405130110044,spot_baseline,Bot_Pepa,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,191026,-65.60341249565576,spot_baseline,manticAI,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,191026,-0.2674412414933118,relative_legacy,manticAI,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,191026,7.843490620599615,peer,manticAI,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,191026,-56.208901903315095,baseline,manticAI,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,191026,10.594193090216756,spot_peer,manticAI,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,191935,11.52070086536632,spot_baseline,pgodzinai,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,191935,90.47273907127536,spot_peer,pgodzinai,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,191935,1.0317953056353515,relative_legacy,pgodzinai,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,191935,49.229217084228935,peer,pgodzinai,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,191935,-0.4880194772262367,baseline,pgodzinai,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,191975,15.926822233655868,peer,jkraybill_bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,191975,7.169699292774134,spot_baseline,jkraybill_bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,191975,1.328316641303447,baseline,jkraybill_bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,191975,85.9663445853763,spot_peer,jkraybill_bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,191975,0.2831297265109496,relative_legacy,jkraybill_bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,192075,-0.5521151342029732,relative_legacy,CumulativeBot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,192075,-28.6243187838609,spot_peer,CumulativeBot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,192075,-103.46956189131696,spot_baseline,CumulativeBot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,192075,-43.6463722657253,baseline,CumulativeBot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,192075,-11.374108512834708,peer,CumulativeBot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,192418,-0.5351204715109068,relative_legacy,InstitutPelFutur,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,192418,-44.99488487794064,baseline,InstitutPelFutur,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,192418,-99.93868993061945,spot_baseline,InstitutPelFutur,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,192418,-24.9673442531385,spot_peer,InstitutPelFutur,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,192418,-10.53942376954936,peer,InstitutPelFutur,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,192924,-90.48153827728213,baseline,acm_bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,192924,-27.861143553326865,spot_peer,acm_bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,192924,-102.73270304804272,spot_baseline,acm_bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,192924,-1.1973269544065444,relative_legacy,acm_bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,192924,-25.80596097626185,peer,acm_bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,218666,-0.5601963421714868,relative_legacy,GreeneiBot2,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,218666,-103.6963144895865,spot_baseline,GreeneiBot2,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,218666,-28.859169689211488,spot_peer,GreeneiBot2,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,218666,-11.65893032613873,peer,GreeneiBot2,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,218666,-44.00018103796055,baseline,GreeneiBot2,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,222631,-33.411096328537326,baseline,Grizeu_Bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,222631,-101.14355910957156,spot_baseline,Grizeu_Bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,222631,-26.21524447419604,spot_peer,Grizeu_Bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,222631,-0.454188123249709,relative_legacy,Grizeu_Bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,222631,-8.189506914155238,peer,Grizeu_Bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,224797,-23.68861138685094,spot_peer,cookics_bot_TEST,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,224797,-7.931443909543953,peer,cookics_bot_TEST,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,224797,-35.364593328860444,baseline,cookics_bot_TEST,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,224797,-98.70405130110044,spot_baseline,cookics_bot_TEST,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,224797,-0.4490576482642697,relative_legacy,cookics_bot_TEST,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,227188,-90.57810602621136,spot_baseline,ProfessorSP,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,227188,-49.15272371703704,baseline,ProfessorSP,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,227188,-15.272453780715828,spot_peer,ProfessorSP,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,227188,-0.4930500773651367,relative_legacy,ProfessorSP,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,227188,-7.804785124379057,peer,ProfessorSP,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236037,-57.06338840396814,baseline,metac-o1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236037,-0.6888493308692379,relative_legacy,metac-o1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236037,-14.442850987080831,peer,metac-o1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236037,-101.14355910957156,spot_baseline,metac-o1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236037,-26.21524447419604,spot_peer,metac-o1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236038,-23.68861138685094,spot_peer,metac-gpt-4o,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236038,-98.70405130110044,spot_baseline,metac-gpt-4o,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236038,-1.0950040897918654,relative_legacy,metac-gpt-4o,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236038,-85.10516270733686,baseline,metac-gpt-4o,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236038,-22.138604724951527,peer,metac-gpt-4o,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236040,-14.717547699892044,peer,metac-claude-3-5-sonnet-latest,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236040,-77.82893836612989,baseline,metac-claude-3-5-sonnet-latest,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236040,-90.57810602621136,spot_baseline,metac-claude-3-5-sonnet-latest,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236040,-0.8884605467188007,relative_legacy,metac-claude-3-5-sonnet-latest,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236040,-15.272453780715828,spot_peer,metac-claude-3-5-sonnet-latest,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236041,82.48316528615412,peer,metac-claude-3-5-sonnet-20240620,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236041,16.425203348601837,spot_baseline,metac-claude-3-5-sonnet-20240620,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236041,95.55240235748356,spot_peer,metac-claude-3-5-sonnet-20240620,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236041,1.7704657521712948,relative_legacy,metac-claude-3-5-sonnet-20240620,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236041,14.173057931550096,baseline,metac-claude-3-5-sonnet-20240620,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236043,4.529118134225764,baseline,metac-grok-2-1212,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236043,83.99675416442629,spot_peer,metac-grok-2-1212,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236043,5.268025782891358,spot_baseline,metac-grok-2-1212,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236043,1.4879238489958193,relative_legacy,metac-grok-2-1212,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236043,71.93391681171042,peer,metac-grok-2-1212,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236045,1.335710413702098,relative_legacy,metac-Gemini-Exp-1206,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236045,5.268025782891358,spot_baseline,metac-Gemini-Exp-1206,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236045,83.99675416442629,spot_peer,metac-Gemini-Exp-1206,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236045,64.03864798875429,peer,metac-Gemini-Exp-1206,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236045,4.03079300720271,baseline,metac-Gemini-Exp-1206,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236047,-0.8833558537919248,relative_legacy,metac-Llama-3.1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236047,-90.57810602621136,spot_baseline,metac-Llama-3.1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236047,-15.272453780715828,spot_peer,metac-Llama-3.1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236047,-14.635620057177109,peer,metac-Llama-3.1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,236047,-77.50267038607038,baseline,metac-Llama-3.1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,237476,-12.515002238397454,peer,NextWorldLab,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,237476,-89.08545386872821,spot_baseline,NextWorldLab,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,237476,-0.7998740920492204,relative_legacy,NextWorldLab,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,237476,-13.726492617608274,spot_peer,NextWorldLab,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,237476,-72.33987583274535,baseline,NextWorldLab,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,239758,-101.14355910957156,spot_baseline,metac-perplexity,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,239758,-84.11131512073872,baseline,metac-perplexity,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,239758,-23.404022000312587,peer,metac-perplexity,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,239758,-1.110901456905935,relative_legacy,metac-perplexity,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,239758,-26.21524447419604,spot_peer,metac-perplexity,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,239759,-23.68861138685094,spot_peer,metac-exa,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,239759,-1.088924839669677,relative_legacy,metac-exa,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,239759,-22.045580905223016,peer,metac-exa,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,239759,-98.70405130110044,spot_baseline,metac-exa,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,239759,-84.76250788587754,baseline,metac-exa,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,240414,-23.68861138685094,spot_peer,minefrac1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,240414,-0.6283002741581578,relative_legacy,minefrac1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,240414,-12.566406635107978,peer,minefrac1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,240414,-54.19300324527423,baseline,minefrac1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,240414,-98.70405130110044,spot_baseline,minefrac1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,240416,54.38187742449418,peer,metac-o1-preview,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,240416,66.5722994679703,spot_peer,metac-o1-preview,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,240416,-9.554831052145834,baseline,metac-o1-preview,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,240416,1.0300632066873838,relative_legacy,metac-o1-preview,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,240416,-11.555585648169592,spot_baseline,metac-o1-preview,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,246118,-61.835082575658944,baseline,laylaps,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,246118,-23.68861138685094,spot_peer,laylaps,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,246118,-98.70405130110044,spot_baseline,laylaps,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,246118,-14.9693719442074,peer,laylaps,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,246118,-0.7437289974463279,relative_legacy,laylaps,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,247214,-35.24425957990824,spot_peer,ajf-bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,247214,-99.55727460197684,baseline,ajf-bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,247214,-109.86122886681092,spot_baseline,ajf-bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,247214,-32.631142771266326,peer,ajf-bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,247214,-1.3808854531836956,relative_legacy,ajf-bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,250015,-28.6243187838609,spot_peer,metac-deepseek-r1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,250015,-70.97584214018158,baseline,metac-deepseek-r1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,250015,-20.170250931883928,peer,metac-deepseek-r1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,250015,-0.9254317303756936,relative_legacy,metac-deepseek-r1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,250015,-103.46956189131696,spot_baseline,metac-deepseek-r1,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,264059,-49.30436752288517,baseline,wunderplumb,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,264059,-11.223959999637747,peer,wunderplumb,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,264059,-0.5704094618661495,relative_legacy,wunderplumb,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,264059,-98.70405130110044,spot_baseline,wunderplumb,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,264059,-23.68861138685094,spot_peer,wunderplumb,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,264332,-41.373793825042725,baseline,krm-bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,264332,-6.274839748163558,peer,krm-bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,264332,-0.4183551462293079,relative_legacy,krm-bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,264332,-90.57810602621136,spot_baseline,krm-bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35118,"What will be the highest percentage change in stock price among Hermes, Dior, and LVMH during the 2025 Paris Fashion Week Womenswear Fall/Winter?",2025-03-02 04:05:16.653913+00,264332,-15.272453780715828,spot_peer,krm-bot,True,-9.646,2025-03-03 16:00:00+00,2025-03-03 16:00:00+00,1.0,2025-03-03 16:00:00+00,35668 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,185699,-29.637255457748093,spot_baseline,MWG,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,185699,-21.616232056747968,baseline,MWG,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,185699,53.44561600112767,spot_peer,MWG,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,185699,0.3862407361583617,relative_legacy,MWG,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,185699,39.57836050879028,peer,MWG,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,187708,38.739606375834605,spot_peer,twsummerbot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,187708,-37.580075050690986,spot_baseline,twsummerbot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,187708,-6.567552404997056,baseline,twsummerbot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,187708,6.398200458074768,peer,twsummerbot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,187708,0.0180242601359456,relative_legacy,twsummerbot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,189869,-84.34611810508495,baseline,VeritasAI,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,189869,-92.1027590642698,spot_baseline,VeritasAI,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,189869,-62.20831350552631,spot_peer,VeritasAI,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,189869,-0.8777668423088759,relative_legacy,VeritasAI,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,189869,-50.96117156697865,peer,VeritasAI,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,190710,-8.13933864985641,spot_peer,Bot_Pepa,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,190710,-62.89972412844892,spot_baseline,Bot_Pepa,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,190710,-50.62554518731875,baseline,Bot_Pepa,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,190710,-0.2310578115336485,relative_legacy,Bot_Pepa,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,190710,-4.686300365981766,peer,Bot_Pepa,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,191026,-65.72910277250176,baseline,manticAI,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,191026,-39.15014653639137,spot_peer,manticAI,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,191026,-0.5883984604640922,relative_legacy,manticAI,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,191026,-30.250358870549903,peer,manticAI,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,191026,-79.64888034078544,spot_baseline,manticAI,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,191935,-118.3341610642396,spot_baseline,pgodzinai,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,191935,-110.77535519425236,spot_peer,pgodzinai,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,191935,-0.3634612081110294,relative_legacy,pgodzinai,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,191935,-19.235188542730697,peer,pgodzinai,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,191935,-24.68358024626583,baseline,pgodzinai,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,191975,16.832984417787298,peer,jkraybill_bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,191975,97.87854649287152,spot_peer,jkraybill_bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,191975,-5.638716093630178,spot_baseline,jkraybill_bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,191975,-0.9914239866424944,baseline,jkraybill_bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,191975,0.1632684494533658,relative_legacy,jkraybill_bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,192418,-95.53909672307428,peer,InstitutPelFutur,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,192418,-107.2532853996636,baseline,InstitutPelFutur,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,192418,-1.4889744032770849,relative_legacy,InstitutPelFutur,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,192418,-118.3341610642396,spot_baseline,InstitutPelFutur,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,192418,-110.77535519425236,spot_peer,InstitutPelFutur,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,192924,86.83181536477217,peer,acm_bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,192924,55.43443693579064,spot_baseline,acm_bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,192924,23.106365413972025,baseline,acm_bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,192924,210.95456009081963,spot_peer,acm_bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,192924,1.0660690720775634,relative_legacy,acm_bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,218666,27.1747550347561,spot_peer,GreeneiBot2,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,218666,0.0976752656272207,relative_legacy,GreeneiBot2,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,218666,17.62883546847191,peer,GreeneiBot2,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,218666,-28.73662943844234,baseline,GreeneiBot2,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,218666,-43.82633288418262,spot_baseline,GreeneiBot2,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,220077,-67.19500161730103,spot_baseline,mmBot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,220077,-7.392234124219425,peer,mmBot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,220077,-16.091979567256345,spot_peer,mmBot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,220077,-66.68956516238312,baseline,mmBot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,220077,-0.2881344493473001,relative_legacy,mmBot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,222631,-0.6566113870305134,relative_legacy,Grizeu_Bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,222631,-64.47271729562573,baseline,Grizeu_Bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,222631,-35.9223914120176,peer,Grizeu_Bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,222631,-48.14132215865308,spot_peer,Grizeu_Bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,222631,-84.50507775366233,spot_baseline,Grizeu_Bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,224797,0.077484454698323,relative_legacy,cookics_bot_TEST,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,224797,18.129012382472677,peer,cookics_bot_TEST,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,224797,-40.264954530646094,baseline,cookics_bot_TEST,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,224797,-48.41612853752454,spot_baseline,cookics_bot_TEST,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,224797,18.676818216935715,spot_peer,cookics_bot_TEST,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,227188,-46.34333020154008,peer,ProfessorSP,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,227188,-63.807907179757166,baseline,ProfessorSP,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,227188,-0.7890636708882124,relative_legacy,ProfessorSP,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,227188,-68.8772940230754,spot_peer,ProfessorSP,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,227188,-95.7047225111479,spot_baseline,ProfessorSP,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236037,-28.509720893846847,spot_baseline,metac-o1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236037,55.00415334543573,peer,metac-o1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236037,-25.238659756717844,baseline,metac-o1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236037,0.5805854296912885,relative_legacy,metac-o1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236037,55.53322909060474,spot_peer,metac-o1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236038,-0.6015776422891401,relative_legacy,metac-gpt-4o,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236038,-40.387686277885294,spot_peer,metac-gpt-4o,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236038,-30.879999032783843,peer,metac-gpt-4o,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236038,-71.45388728157847,baseline,metac-gpt-4o,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236038,-80.31728428966342,spot_baseline,metac-gpt-4o,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236040,-118.33416106423972,spot_baseline,metac-claude-3-5-sonnet-latest,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236040,-105.32507570928102,baseline,metac-claude-3-5-sonnet-latest,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236040,-94.40964002316888,peer,metac-claude-3-5-sonnet-latest,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236040,-1.475811452692666,relative_legacy,metac-claude-3-5-sonnet-latest,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236040,-110.7753551942526,spot_peer,metac-claude-3-5-sonnet-latest,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236041,-110.77535519425236,spot_peer,metac-claude-3-5-sonnet-20240620,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236041,-1.4748772728786488,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236041,-105.10911585969606,baseline,metac-claude-3-5-sonnet-20240620,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236041,-94.31807366291356,peer,metac-claude-3-5-sonnet-20240620,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236041,-118.3341610642396,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236043,-82.20540293250686,baseline,metac-grok-2-1212,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236043,-99.5552879844631,spot_baseline,metac-grok-2-1212,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236043,-60.97702222870111,peer,metac-grok-2-1212,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236043,-76.00655741006035,spot_peer,metac-grok-2-1212,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236043,-1.0138400598954491,relative_legacy,metac-grok-2-1212,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236045,101.48409728762074,spot_peer,metac-Gemini-Exp-1206,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236045,-3.69133266157874,spot_baseline,metac-Gemini-Exp-1206,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236045,1.089071755998213,relative_legacy,metac-Gemini-Exp-1206,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236045,-3.1988651320805217,baseline,metac-Gemini-Exp-1206,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236045,91.78333397282998,peer,metac-Gemini-Exp-1206,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236047,-99.08013579417096,baseline,metac-Llama-3.1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236047,-100.92663661447212,spot_peer,metac-Llama-3.1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236047,-1.349080672762714,relative_legacy,metac-Llama-3.1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236047,-84.9521955997846,peer,metac-Llama-3.1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,236047,-113.01479864750922,spot_baseline,metac-Llama-3.1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,237476,-0.2980816365660628,relative_legacy,NextWorldLab,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,237476,-67.19500161730103,spot_baseline,NextWorldLab,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,237476,-43.99430137841696,baseline,NextWorldLab,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,237476,-10.879339194055769,peer,NextWorldLab,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,237476,-16.091979567256345,spot_peer,NextWorldLab,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,239758,-5.0403808640124295,baseline,metac-perplexity,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,239758,97.4312902617816,spot_peer,metac-perplexity,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,239758,-5.880282340755213,spot_baseline,metac-perplexity,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,239758,1.0300582320026712,relative_legacy,metac-perplexity,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,239758,87.55615190766083,peer,metac-perplexity,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,239759,121.85813066175214,spot_peer,metac-exa,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,239759,7.312826562755949,spot_baseline,metac-exa,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,239759,1.2751229073898458,relative_legacy,metac-exa,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,239759,104.68511664569564,peer,metac-exa,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,239759,6.078555015409359,baseline,metac-exa,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,240414,-20.05155264738605,peer,minefrac1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,240414,-74.32951792405505,spot_baseline,minefrac1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,240414,-29.30142795661111,spot_peer,minefrac1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,240414,-0.424864468333051,relative_legacy,minefrac1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,240414,-50.30695093049514,baseline,minefrac1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,240416,-84.62792801555509,baseline,metac-o1-preview,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,240416,-56.599095605651314,peer,metac-o1-preview,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,240416,-0.9569704961549284,relative_legacy,metac-o1-preview,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,240416,-95.70472251114788,spot_baseline,metac-o1-preview,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,240416,-68.87729402307536,spot_peer,metac-o1-preview,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,246118,43.85995093432329,baseline,laylaps,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,246118,61.31471927654584,spot_baseline,laylaps,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,246118,221.84181337546173,spot_peer,laylaps,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,246118,2.057108334976384,relative_legacy,laylaps,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,246118,159.76758118420113,peer,laylaps,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,247214,-155.1243357244561,spot_baseline,ajf-bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,247214,-22.423961078549823,baseline,ajf-bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,247214,-26.010397724457636,peer,ajf-bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,247214,-0.4213932932580526,relative_legacy,ajf-bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,247214,-178.8918038103159,spot_peer,ajf-bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,250015,15.813354847683344,peer,metac-deepseek-r1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,250015,15.68143940669959,spot_peer,metac-deepseek-r1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,250015,-50.03395377417539,spot_baseline,metac-deepseek-r1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,250015,0.0423775563359324,relative_legacy,metac-deepseek-r1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,250015,-41.84411463513458,baseline,metac-deepseek-r1,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,264059,0.0096509227942695,relative_legacy,wunderplumb,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,264059,-10.47135485846358,baseline,wunderplumb,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,264059,7.676640813975464,peer,wunderplumb,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,264059,32.47506212146967,spot_peer,wunderplumb,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,264059,-40.96359961733128,spot_baseline,wunderplumb,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,264332,-2.8627332668513428,spot_baseline,krm-bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,264332,103.01823645971017,spot_peer,krm-bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,264332,-1.7266403251742837,baseline,krm-bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,264332,61.72184620814315,peer,krm-bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35119,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:05:16.863264+00,264332,0.7083828561179962,relative_legacy,krm-bot,True,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35669 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,185699,-16.096404744368115,spot_baseline,MWG,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,185699,-0.0580571366259188,relative_legacy,MWG,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,185699,-3.705879643651906,peer,MWG,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,185699,-1.003199890602809,baseline,MWG,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,185699,-59.46106975977847,spot_peer,MWG,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,187708,-47.70846535757074,spot_peer,twsummerbot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,187708,-4.92349236049443,baseline,twsummerbot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,187708,-30.732332384710944,peer,twsummerbot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,187708,-7.921468130224145,spot_baseline,twsummerbot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,187708,-0.4888486364402644,relative_legacy,twsummerbot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,189869,-0.1186588370456659,relative_legacy,VeritasAI,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,189869,25.017965680502872,spot_baseline,VeritasAI,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,189869,-1.485470220832407,peer,VeritasAI,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,189869,-0.3534639572671577,spot_peer,VeritasAI,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,189869,22.432870037120814,baseline,VeritasAI,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,190710,32.07730145437618,spot_baseline,Bot_Pepa,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,190710,25.493144487493662,baseline,Bot_Pepa,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,190710,6.403184325113312,peer,Bot_Pepa,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,190710,0.0044831475136609,relative_legacy,Bot_Pepa,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,190710,9.795309618437644,spot_peer,Bot_Pepa,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,191026,-7.705518220529588,peer,manticAI,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,191026,16.530710444435137,baseline,manticAI,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,191026,-7.528817679964787,spot_peer,manticAI,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,191026,-0.194631459585478,relative_legacy,manticAI,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,191026,20.026896479186423,spot_baseline,manticAI,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,191935,4.33595947920872,spot_peer,pgodzinai,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,191935,19.789855400368477,baseline,pgodzinai,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,191935,1.811154422756343,peer,pgodzinai,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,191935,-0.045107535466032,relative_legacy,pgodzinai,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,191935,28.279858792711263,spot_baseline,pgodzinai,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,192418,1.6017132519074587e-14,spot_baseline,InstitutPelFutur,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,192418,1.4446097068175432e-14,baseline,InstitutPelFutur,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,192418,-34.49232539024457,peer,InstitutPelFutur,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,192418,-0.5686958222018673,relative_legacy,InstitutPelFutur,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,192418,-36.32025703089744,spot_peer,InstitutPelFutur,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,192924,24.27134135851208,spot_baseline,acm_bot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,192924,-1.426839899808726,spot_peer,acm_bot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,192924,-0.0537387232254347,relative_legacy,acm_bot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,192924,-1.331218685077841,peer,acm_bot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,192924,10.066909775433542,baseline,acm_bot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,220077,23.955519380994364,baseline,mmBot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,220077,-1.426839899808726,spot_peer,mmBot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,220077,-0.1308819340763488,relative_legacy,mmBot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,220077,-2.2887688034577747,peer,mmBot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,220077,24.27134135851208,spot_baseline,mmBot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,222631,0.1218010190470324,relative_legacy,Grizeu_Bot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,222631,20.7215853162863,spot_peer,Grizeu_Bot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,222631,39.67745612662869,spot_baseline,Grizeu_Bot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,222631,30.04663582584286,baseline,Grizeu_Bot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,222631,14.389482709336844,peer,Grizeu_Bot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,224797,35.327797952761834,baseline,cookics_bot_TEST,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,224797,24.63539710710006,spot_peer,cookics_bot_TEST,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,224797,0.1762392660677667,relative_legacy,cookics_bot_TEST,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,224797,19.24475276035687,peer,cookics_bot_TEST,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,224797,42.39984532774751,spot_baseline,cookics_bot_TEST,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,227188,7.1180749012195,peer,ProfessorSP,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,227188,0.0326664277610371,relative_legacy,ProfessorSP,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,227188,12.420860076067704,spot_peer,ProfessorSP,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,227188,33.903595255631885,spot_baseline,ProfessorSP,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,227188,22.39130101827148,baseline,ProfessorSP,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236037,-0.0606826797031854,relative_legacy,metac-o1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236037,28.279858792711256,spot_baseline,metac-o1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236037,4.3359594792086975,spot_peer,metac-o1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236037,2.486217968769651,peer,metac-o1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236037,24.79889494129532,baseline,metac-o1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236038,31.649002333324496,baseline,metac-gpt-4o,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236038,35.68479074216794,spot_baseline,metac-gpt-4o,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236038,14.981575455809937,spot_peer,metac-gpt-4o,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236038,0.0705068259295458,relative_legacy,metac-gpt-4o,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236038,12.129003086165037,peer,metac-gpt-4o,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236040,28.470769406612074,baseline,metac-claude-3-5-sonnet-latest,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236040,0.0065661771301274,relative_legacy,metac-claude-3-5-sonnet-latest,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236040,9.795309618437644,spot_peer,metac-claude-3-5-sonnet-latest,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236040,7.482119510984102,peer,metac-claude-3-5-sonnet-latest,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236040,32.07730145437618,spot_baseline,metac-claude-3-5-sonnet-latest,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236041,1.4945843782190524,spot_peer,metac-claude-3-5-sonnet-20240620,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236041,23.28925661707085,baseline,metac-claude-3-5-sonnet-20240620,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236041,-0.0006102935979325,peer,metac-claude-3-5-sonnet-20240620,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236041,26.30344058337939,spot_baseline,metac-claude-3-5-sonnet-20240620,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236041,-0.095732324540322,relative_legacy,metac-claude-3-5-sonnet-20240620,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236043,39.120428246368654,spot_baseline,metac-grok-2-1212,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236043,19.92078053617708,spot_peer,metac-grok-2-1212,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236043,0.1198648901225878,relative_legacy,metac-grok-2-1212,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236043,15.026826640971263,peer,metac-grok-2-1212,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236043,32.118321134302754,baseline,metac-grok-2-1212,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236045,8.999476494229578,peer,metac-Gemini-Exp-1206,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236045,33.903595255631885,spot_baseline,metac-Gemini-Exp-1206,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236045,0.0347186913880748,relative_legacy,metac-Gemini-Exp-1206,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236045,12.420860076067704,spot_peer,metac-Gemini-Exp-1206,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236045,28.2741392428733,baseline,metac-Gemini-Exp-1206,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236047,-1.5690112623461188,baseline,metac-Llama-3.1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236047,-38.87283910576875,spot_peer,metac-Llama-3.1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236047,-0.5815991905581867,relative_legacy,metac-Llama-3.1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236047,-35.41553954727495,peer,metac-Llama-3.1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,236047,-1.7755380807808776,spot_baseline,metac-Llama-3.1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,237476,1.475499275339074,peer,NextWorldLab,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,237476,27.96724832709431,spot_baseline,NextWorldLab,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,237476,3.8865386081001336,spot_peer,NextWorldLab,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,237476,-0.0469408805210959,relative_legacy,NextWorldLab,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,237476,18.9329039658254,baseline,NextWorldLab,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,239758,-0.0636629751760533,relative_legacy,metac-perplexity,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,239758,3.982061841809713,spot_peer,metac-perplexity,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,239758,28.033692866026232,spot_baseline,metac-perplexity,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,239758,2.003241641735997,peer,metac-perplexity,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,239758,23.80678792603601,baseline,metac-perplexity,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,239759,-18.63448812089216,peer,metac-exa,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,239759,-20.401010995974723,spot_peer,metac-exa,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,239759,11.073190488400128,spot_baseline,metac-exa,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,239759,-0.3469328530822452,relative_legacy,metac-exa,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,239759,9.263328725265104,baseline,metac-exa,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,240414,-2.03727833202057,peer,minefrac1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,240414,-0.0936976636816026,relative_legacy,minefrac1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,240414,-1.426839899808726,spot_peer,minefrac1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,240414,24.27134135851208,spot_baseline,minefrac1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,240414,15.92038321058092,baseline,minefrac1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,240416,35.63409859460825,baseline,metac-o1-preview,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,240416,22.30487872244215,spot_peer,metac-o1-preview,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,240416,18.346389958291304,peer,metac-o1-preview,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,240416,0.1577263027981786,relative_legacy,metac-o1-preview,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,240416,40.77877144312863,spot_baseline,metac-o1-preview,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,246118,7.666271254531956,peer,laylaps,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,246118,33.903595255631885,spot_baseline,laylaps,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,246118,12.420860076067704,spot_peer,laylaps,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,246118,0.0342614067544983,relative_legacy,laylaps,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,246118,24.33851400450207,baseline,laylaps,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,247214,9.627463542275107,peer,ajf-bot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,247214,17.82960439792114,baseline,ajf-bot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,247214,42.39984532774751,spot_baseline,ajf-bot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,247214,24.63539710710006,spot_peer,ajf-bot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,247214,0.0978857412541151,relative_legacy,ajf-bot,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,250015,21.07251685926428,baseline,metac-deepseek-r1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,250015,28.279858792711256,spot_baseline,metac-deepseek-r1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,250015,4.3359594792086975,spot_peer,metac-deepseek-r1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,250015,-0.0493693190919218,relative_legacy,metac-deepseek-r1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,250015,1.889218510428292,peer,metac-deepseek-r1,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,264059,7.8790156447073905,baseline,wunderplumb,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,264059,31.17808866856888,spot_baseline,wunderplumb,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,264059,8.502566610899711,spot_peer,wunderplumb,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,264059,0.0049419891502861,relative_legacy,wunderplumb,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35120,"When will cherry blossoms achieve peak bloom in Washington, DC in 2025?",2025-03-02 04:05:16.894589+00,264059,1.731052639786534,peer,wunderplumb,True,March 28 or 29,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35670 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,187708,40.001321910807306,peer,twsummerbot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,187708,0.5408195377638538,relative_legacy,twsummerbot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,187708,25.49745731521553,spot_baseline,twsummerbot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,187708,15.005021270481068,baseline,twsummerbot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,187708,68.55858521692144,spot_peer,twsummerbot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,189869,-16.074662674967573,baseline,VeritasAI,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,189869,-18.724590848672463,spot_baseline,VeritasAI,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,189869,4.895933209890923,spot_peer,VeritasAI,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,189869,0.0429412144214489,relative_legacy,VeritasAI,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,189869,5.282833514937372,peer,VeritasAI,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,190710,-0.4717528337844042,relative_legacy,Bot_Pepa,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,190710,-41.09774732166937,spot_peer,Bot_Pepa,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,190710,-50.67322464854183,spot_baseline,Bot_Pepa,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,190710,-39.56730527267778,baseline,Bot_Pepa,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,190710,-31.893759960930343,peer,Bot_Pepa,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,191026,-43.71158014525728,baseline,manticAI,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,191026,-52.944684452678416,spot_baseline,manticAI,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,191026,-0.5260077220894328,relative_legacy,manticAI,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,191026,-44.3677712365,spot_peer,manticAI,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,191026,-35.98995362258784,peer,manticAI,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,191935,0.6452801028144015,relative_legacy,pgodzinai,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,191935,17.835499618983107,baseline,pgodzinai,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,191935,24.271341358512046,spot_baseline,pgodzinai,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,191935,66.79345228633902,spot_peer,pgodzinai,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,191935,49.04183119286445,peer,pgodzinai,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,192418,-36.84827970831032,spot_baseline,InstitutPelFutur,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,192418,-18.487902328082622,peer,InstitutPelFutur,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,192418,-33.04452610415775,baseline,InstitutPelFutur,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,192418,-21.195171676947464,spot_peer,InstitutPelFutur,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,192418,-0.2740822311931058,relative_legacy,InstitutPelFutur,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,192924,9.053913837200428,peer,acm_bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,192924,-16.096404744368115,spot_baseline,acm_bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,192924,-14.207284772936465,baseline,acm_bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,192924,8.679505077660558,spot_peer,acm_bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,192924,0.0992612750564202,relative_legacy,acm_bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,220077,50.7854970735084,spot_peer,mmBot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,220077,0.6226903282245128,relative_legacy,mmBot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,220077,47.62803179094318,peer,mmBot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,220077,13.151720291689688,spot_baseline,mmBot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,220077,12.90921010956277,baseline,mmBot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,222631,31.985230551011927,baseline,Grizeu_Bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,222631,70.28931418279666,peer,Grizeu_Bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,222631,0.9379319609014376,relative_legacy,Grizeu_Bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,222631,92.89148906935624,spot_peer,Grizeu_Bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,222631,42.39984532774751,spot_baseline,Grizeu_Bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,224797,-7.697158042574579,baseline,cookics_bot_TEST,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,224797,0.197466228999106,relative_legacy,cookics_bot_TEST,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,224797,18.57710067272507,spot_peer,cookics_bot_TEST,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,224797,-9.221228556871363,spot_baseline,cookics_bot_TEST,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,224797,16.491642175618818,peer,cookics_bot_TEST,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,227188,-19.26923698944168,baseline,ProfessorSP,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,227188,-7.1005449631798365,peer,ProfessorSP,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,227188,-0.11498800084557,relative_legacy,ProfessorSP,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,227188,-10.253887358634731,spot_peer,ProfessorSP,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,227188,-29.24812503605781,spot_baseline,ProfessorSP,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236037,-30.411614002200164,spot_baseline,metac-o1,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236037,-9.292792739494882,peer,metac-o1,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236037,-26.244969678823423,baseline,metac-o1,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236037,-0.157900044956981,relative_legacy,metac-o1,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236037,-11.928861635968794,spot_peer,metac-o1,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236038,-41.68784255834298,baseline,metac-gpt-4o,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236038,-47.17082358168168,spot_baseline,metac-gpt-4o,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236038,-30.90642824208913,peer,metac-gpt-4o,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236038,-0.4493727847941295,relative_legacy,metac-gpt-4o,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236038,-36.055643901171294,spot_peer,metac-gpt-4o,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236040,-30.94908268133977,peer,metac-claude-3-5-sonnet-latest,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236040,-47.1708235816816,spot_baseline,metac-claude-3-5-sonnet-latest,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236040,-41.72904678964954,baseline,metac-claude-3-5-sonnet-latest,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236040,-0.4496185111463445,relative_legacy,metac-claude-3-5-sonnet-latest,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236040,-36.055643901171216,spot_peer,metac-claude-3-5-sonnet-latest,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236041,-0.3548913428882711,relative_legacy,metac-claude-3-5-sonnet-20240620,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236041,-36.90320692514643,baseline,metac-claude-3-5-sonnet-20240620,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236041,-28.35981602366935,spot_peer,metac-claude-3-5-sonnet-20240620,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236041,-41.82506338585603,spot_baseline,metac-claude-3-5-sonnet-20240620,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236041,-23.993378415830097,peer,metac-claude-3-5-sonnet-20240620,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236043,-85.11627783881524,spot_peer,metac-grok-2-1212,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236043,-0.9833744408521,relative_legacy,metac-grok-2-1212,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236043,-69.06099051228453,peer,metac-grok-2-1212,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236043,-66.31233939092907,baseline,metac-grok-2-1212,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236043,-81.24985812617055,spot_baseline,metac-grok-2-1212,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236045,-0.1127473089182122,relative_legacy,metac-Gemini-Exp-1206,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236045,-8.197460677877599,spot_peer,metac-Gemini-Exp-1206,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236045,-27.81966742621926,spot_baseline,metac-Gemini-Exp-1206,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236045,-5.976480539805779,peer,metac-Gemini-Exp-1206,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236045,-22.536442566936376,baseline,metac-Gemini-Exp-1206,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236047,30.109434517336545,spot_peer,metac-Llama-3.1,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236047,-1.0640511886246078,baseline,metac-Llama-3.1,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236047,-1.2105125932617329,spot_baseline,metac-Llama-3.1,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236047,27.441751430563095,peer,metac-Llama-3.1,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,236047,0.3493040912086007,relative_legacy,metac-Llama-3.1,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,237476,38.922171637906224,peer,NextWorldLab,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,237476,11.757681758476354,baseline,NextWorldLab,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,237476,0.5105117347413493,relative_legacy,NextWorldLab,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,237476,16.854153815539384,spot_baseline,NextWorldLab,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,237476,56.11556989452455,spot_peer,NextWorldLab,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,239758,-7.921468130224136,spot_baseline,metac-perplexity,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,239758,18.345766909029265,peer,metac-perplexity,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,239758,-6.692886221003939,baseline,metac-perplexity,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,239758,20.44825316723397,spot_peer,metac-perplexity,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,239758,0.2225967542652226,relative_legacy,metac-perplexity,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,239759,-41.82506338585603,spot_baseline,metac-exa,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,239759,-0.3484223773648636,relative_legacy,metac-exa,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,239759,-23.076682979057672,peer,metac-exa,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,239759,-35.18258715410098,baseline,metac-exa,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,239759,-28.35981602366935,spot_peer,metac-exa,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,240414,-14.49309448189199,spot_peer,minefrac1,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,240414,-0.1558097424341937,relative_legacy,minefrac1,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,240414,-21.42323825946552,baseline,minefrac1,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,240414,-9.992020847996193,peer,minefrac1,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,240414,-32.19280948873624,spot_baseline,minefrac1,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,240416,-41.82506338585605,spot_baseline,metac-o1-preview,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,240416,-28.359816023669385,spot_peer,metac-o1-preview,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,240416,-36.2653581353373,baseline,metac-o1-preview,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,240416,-23.68009451356249,peer,metac-o1-preview,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,240416,-0.3549639655360735,relative_legacy,metac-o1-preview,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,246118,19.620789395973286,spot_peer,laylaps,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,246118,-6.092045875946309,baseline,laylaps,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,246118,13.838561425682482,peer,laylaps,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,246118,0.1592395405896118,relative_legacy,laylaps,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,246118,-8.496250072115624,spot_baseline,laylaps,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,247214,0.0135743865453292,relative_legacy,ajf-bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,247214,-19.61587113893802,spot_baseline,ajf-bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,247214,3.612834183142611,spot_peer,ajf-bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,247214,-8.203045941338573,baseline,ajf-bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,247214,1.335875667657314,peer,ajf-bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,264059,-10.22411465608058,baseline,wunderplumb,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,264059,-6.765603034246444,peer,wunderplumb,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,264059,-0.0873475336940424,relative_legacy,wunderplumb,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,264059,-27.095952709258253,spot_peer,wunderplumb,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,264059,-40.94714481664081,spot_baseline,wunderplumb,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,264332,-36.12330122355455,spot_baseline,krm-bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,264332,-0.1495933364106672,relative_legacy,krm-bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,264332,-20.15148295369923,spot_peer,krm-bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,264332,-10.507300295519418,peer,krm-bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35121,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.925062+00,264332,-18.349352687072592,baseline,krm-bot,True,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35671 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,187708,6.69016943889218,spot_peer,twsummerbot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,187708,5.023274236117139,baseline,twsummerbot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,187708,2.9155268599556368,peer,twsummerbot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,187708,0.0054060018107675,relative_legacy,twsummerbot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,187708,8.95345777929518,spot_baseline,twsummerbot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,189869,-16.50514218185843,spot_baseline,VeritasAI,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,189869,-15.14566287478381,baseline,VeritasAI,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,189869,-33.26076618939298,peer,VeritasAI,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,189869,-0.5337990970787776,relative_legacy,VeritasAI,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,189869,-35.92282797508072,spot_peer,VeritasAI,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,190710,-11.943129034579002,peer,Bot_Pepa,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,190710,-2.461410866464504,baseline,Bot_Pepa,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,190710,-0.205005724645697,relative_legacy,Bot_Pepa,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,190710,-13.630768950683777,spot_peer,Bot_Pepa,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,190710,-3.18703157116355,spot_baseline,Bot_Pepa,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,191026,30.33371629778269,baseline,manticAI,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,191026,36.73264942254586,spot_baseline,manticAI,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,191026,53.18740901460916,spot_peer,manticAI,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,191026,0.5180027306527264,relative_legacy,manticAI,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,191026,42.538809060617474,peer,manticAI,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,191935,21.367566833177744,baseline,pgodzinai,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,191935,43.06765580733931,spot_baseline,pgodzinai,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,191935,63.79104044385578,spot_peer,pgodzinai,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,191935,0.3970066077752834,relative_legacy,pgodzinai,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,191935,30.86519814685344,peer,pgodzinai,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,192418,-17.87469216608008,spot_baseline,InstitutPelFutur,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,192418,-15.935043183337983,baseline,InstitutPelFutur,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,192418,-38.21520186936377,spot_peer,InstitutPelFutur,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,192418,-0.5625617719638609,relative_legacy,InstitutPelFutur,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,192418,-35.39723594756548,peer,InstitutPelFutur,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,192924,26.66293124713746,baseline,acm_bot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,192924,30.166296694690303,spot_baseline,acm_bot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,192924,36.64856450358032,peer,acm_bot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,192924,0.4236103165055632,relative_legacy,acm_bot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,192924,42.19654650691832,spot_peer,acm_bot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,220077,-17.87469216608008,spot_baseline,mmBot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,220077,-38.21520186936377,spot_peer,mmBot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,220077,-35.45486861697171,peer,mmBot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,220077,-0.562979794645363,relative_legacy,mmBot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,220077,-17.446400157290523,baseline,mmBot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,224797,43.78436360852032,spot_peer,cookics_bot_TEST,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,224797,35.173208496537114,peer,cookics_bot_TEST,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,224797,26.015777789076346,baseline,cookics_bot_TEST,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,224797,31.114918074417723,spot_baseline,cookics_bot_TEST,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,224797,0.4139846503833816,relative_legacy,cookics_bot_TEST,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,227188,-0.7122104237484596,relative_legacy,ProfessorSP,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,227188,-26.038323516975996,baseline,ProfessorSP,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,227188,-49.9405382592676,peer,ProfessorSP,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,227188,-75.04907049630759,spot_peer,ProfessorSP,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,227188,-39.88062423617575,spot_baseline,ProfessorSP,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236037,0.1313818694558154,relative_legacy,metac-o1,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236037,14.908973898692624,peer,metac-o1,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236037,13.991069438701135,baseline,metac-o1,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236037,18.98961717024053,spot_peer,metac-o1,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236037,16.301608309368927,spot_baseline,metac-o1,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236038,5.921954433158494,spot_baseline,metac-gpt-4o,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236038,5.21798275185675,baseline,metac-gpt-4o,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236038,-0.0750663878485412,relative_legacy,metac-gpt-4o,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236038,1.6159923652712276,spot_peer,metac-gpt-4o,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236038,0.2306692992946044,peer,metac-gpt-4o,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236040,8.683897731959355,spot_baseline,metac-claude-3-5-sonnet-latest,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236040,7.655444031756954,baseline,metac-claude-3-5-sonnet-latest,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236040,4.366033504593683,peer,metac-claude-3-5-sonnet-latest,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236040,-0.0185483128047837,relative_legacy,metac-claude-3-5-sonnet-latest,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236040,6.238975672637985,spot_peer,metac-claude-3-5-sonnet-latest,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236041,-12.185863626350615,baseline,metac-claude-3-5-sonnet-20240620,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236041,-31.503195671056368,spot_peer,metac-claude-3-5-sonnet-20240620,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236041,-0.4789466634778647,relative_legacy,metac-claude-3-5-sonnet-20240620,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236041,-13.864688385321406,spot_baseline,metac-claude-3-5-sonnet-20240620,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236041,-29.270867168591547,peer,metac-claude-3-5-sonnet-20240620,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236043,36.64487822935244,peer,metac-grok-2-1212,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236043,26.734524653280012,baseline,metac-grok-2-1212,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236043,0.4451744460704392,relative_legacy,metac-grok-2-1212,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236043,46.88907177608719,spot_peer,metac-grok-2-1212,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236043,32.9697869649195,spot_baseline,metac-grok-2-1212,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236045,22.31710267079908,peer,metac-Gemini-Exp-1206,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236045,0.2655190696689671,relative_legacy,metac-Gemini-Exp-1206,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236045,30.34634353459971,spot_peer,metac-Gemini-Exp-1206,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236045,23.08654180207136,spot_baseline,metac-Gemini-Exp-1206,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236045,17.920355678398398,baseline,metac-Gemini-Exp-1206,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236047,-15.178715955620175,baseline,metac-Llama-3.1,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236047,-17.874692166080074,spot_baseline,metac-Llama-3.1,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236047,-38.21520186936375,spot_peer,metac-Llama-3.1,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236047,-0.5447129330622185,relative_legacy,metac-Llama-3.1,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,236047,-34.38085382809658,peer,metac-Llama-3.1,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,237476,-15.318399499346986,spot_baseline,NextWorldLab,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,237476,-10.987565588957992,baseline,NextWorldLab,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,237476,-25.38629101485436,peer,NextWorldLab,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,237476,-0.3734713275184333,relative_legacy,NextWorldLab,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,237476,-33.936439762921545,spot_peer,NextWorldLab,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,239758,0.4870015290355841,relative_legacy,metac-perplexity,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,239758,34.77088389753815,spot_baseline,metac-perplexity,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,239758,40.54857217552493,peer,metac-perplexity,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,239758,49.9037756109054,spot_peer,metac-perplexity,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,239758,29.209367504351388,baseline,metac-perplexity,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,239759,0.3422519894074236,relative_legacy,metac-exa,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,239759,23.01348512999871,baseline,metac-exa,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,239759,30.09668122452985,peer,metac-exa,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,239759,37.28224648246159,spot_peer,metac-exa,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,239759,27.230309883053646,spot_baseline,metac-exa,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,240416,-6.079409627066962,peer,metac-o1-preview,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,240416,-5.222150901257946,spot_peer,metac-o1-preview,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,240416,-0.1569341090295768,relative_legacy,metac-o1-preview,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,240416,1.8365916456410376,spot_baseline,metac-o1-preview,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,240416,1.5733920817811176,baseline,metac-o1-preview,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,246118,-14.995894735755185,baseline,laylaps,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,246118,-20.906195512216765,spot_baseline,laylaps,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,246118,-43.2893789429847,spot_peer,laylaps,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,246118,-0.4665502928784175,relative_legacy,laylaps,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,246118,-32.12941280500413,peer,laylaps,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,247214,-17.87469216608008,spot_baseline,ajf-bot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,247214,-2.636404727578414,baseline,ajf-bot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,247214,-5.636502040854374,peer,ajf-bot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,247214,-0.0543660196124133,relative_legacy,ajf-bot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,247214,-38.21520186936377,spot_peer,ajf-bot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,250015,0.2520373256176277,relative_legacy,metac-deepseek-r1,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,250015,20.53843231820028,peer,metac-deepseek-r1,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,250015,15.373497456116487,baseline,metac-deepseek-r1,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,250015,29.202967422017903,spot_baseline,metac-deepseek-r1,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,250015,40.58411110717795,spot_peer,metac-deepseek-r1,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,264059,-12.455728451110216,spot_baseline,wunderplumb,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,264059,-3.146126112245202,baseline,wunderplumb,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,264059,-7.52735291931373,peer,wunderplumb,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,264059,-0.0882091082365549,relative_legacy,wunderplumb,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,264059,-29.144856794427437,spot_peer,wunderplumb,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,264332,-3.793699423191133,baseline,krm-bot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,264332,-11.385422936972876,peer,krm-bot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,264332,-0.1886380846293271,relative_legacy,krm-bot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,264332,-20.94016576000237,spot_peer,krm-bot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35122,"How many movies will be new on Netflix's top 10 global non-English movies list for the week ending March 23, 2025?",2025-03-02 04:05:16.955375+00,264332,-7.553938867498361,spot_baseline,krm-bot,True,1,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35672 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,187708,14.112726612748247,spot_baseline,twsummerbot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,187708,2.894401963927609,baseline,twsummerbot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,187708,6.44973822604881,peer,twsummerbot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,187708,0.1021495397349866,relative_legacy,twsummerbot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,187708,31.44808269287619,spot_peer,twsummerbot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,189869,-12.58615999176324,spot_baseline,VeritasAI,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,189869,-13.312542641581874,spot_peer,VeritasAI,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,189869,-0.0673329830401906,relative_legacy,VeritasAI,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,189869,-12.714209805579763,peer,VeritasAI,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,189869,-11.113431616122591,baseline,VeritasAI,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,190710,-23.13005570283222,spot_peer,Bot_Pepa,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,190710,-14.051492139585438,baseline,Bot_Pepa,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,190710,-17.903852353316157,peer,Bot_Pepa,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,190710,-0.1379926283466887,relative_legacy,Bot_Pepa,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,190710,-18.44212527379535,spot_baseline,Bot_Pepa,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,191026,0.079936707436662,relative_legacy,manticAI,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,191026,-0.6824586927432708,spot_peer,manticAI,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,191026,-5.052548103282566,spot_baseline,manticAI,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,191026,-4.173344536576127,baseline,manticAI,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,191026,-1.6569920372200455,peer,manticAI,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,192418,-0.1771479248383399,relative_legacy,InstitutPelFutur,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,192418,-15.842903731988285,baseline,InstitutPelFutur,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,192418,-17.87469216608008,spot_baseline,InstitutPelFutur,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,192418,-22.178755331658,spot_peer,InstitutPelFutur,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,192418,-20.832482960128576,peer,InstitutPelFutur,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,192924,-7.116107709107838,baseline,acm_bot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,192924,0.0172683783864999,relative_legacy,acm_bot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,192924,-6.299857563702777,peer,acm_bot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,192924,-8.29677190980116,spot_baseline,acm_bot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,192924,-6.1213928496519125,spot_peer,acm_bot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,220077,13.451647895802232,baseline,mmBot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,220077,27.206325036707334,peer,mmBot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,220077,31.032247143966043,spot_peer,mmBot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,220077,13.86468838532139,spot_baseline,mmBot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,220077,0.4760479374277024,relative_legacy,mmBot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,224797,111.2518535706404,spot_peer,cookics_bot_TEST,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,224797,61.71420253845629,spot_baseline,cookics_bot_TEST,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,224797,1.3767176522553903,relative_legacy,cookics_bot_TEST,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,224797,92.68682054732533,peer,cookics_bot_TEST,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,224797,51.68386369061764,baseline,cookics_bot_TEST,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,227188,0.0,spot_baseline,ProfessorSP,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,227188,7.788127215402543,spot_peer,ProfessorSP,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,227188,0.1656895154576432,relative_legacy,ProfessorSP,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,227188,0.0,baseline,ProfessorSP,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,227188,5.398827101348092,peer,ProfessorSP,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236037,-0.1562588431806375,relative_legacy,metac-o1,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236037,-14.509335072996478,baseline,metac-o1,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236037,-18.919694961322666,peer,metac-o1,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236037,-20.79904421186417,spot_peer,metac-o1,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236037,-17.051719956484956,spot_baseline,metac-o1,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236038,-22.178755331658,spot_peer,metac-gpt-4o,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236038,-15.712429095583316,baseline,metac-gpt-4o,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236038,-0.1753412833272245,relative_legacy,metac-gpt-4o,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236038,-20.543818535567866,peer,metac-gpt-4o,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236038,-17.87469216608008,spot_baseline,metac-gpt-4o,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236040,-12.178366501732986,baseline,metac-claude-3-5-sonnet-latest,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236040,-14.548716069752738,peer,metac-claude-3-5-sonnet-latest,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236040,-15.45599271316098,spot_peer,metac-claude-3-5-sonnet-latest,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236040,-0.093543903309206,relative_legacy,metac-claude-3-5-sonnet-latest,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236040,-13.864688385321388,spot_baseline,metac-claude-3-5-sonnet-latest,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236041,-8.926889921299406,peer,metac-claude-3-5-sonnet-20240620,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236041,-8.838980746706028,baseline,metac-claude-3-5-sonnet-20240620,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236041,-0.0170405623450469,relative_legacy,metac-claude-3-5-sonnet-20240620,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236041,-9.14092794061568,spot_peer,metac-claude-3-5-sonnet-20240620,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236041,-10.097868842419809,spot_baseline,metac-claude-3-5-sonnet-20240620,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236043,51.45183536394053,baseline,metac-grok-2-1212,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236043,63.97385131955608,spot_baseline,metac-grok-2-1212,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236043,115.04014983843986,spot_peer,metac-grok-2-1212,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236043,1.3714291961356164,relative_legacy,metac-grok-2-1212,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236043,92.2426854542141,peer,metac-grok-2-1212,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236045,-65.22911610246187,spot_baseline,metac-Gemini-Exp-1206,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236045,-77.18853612707251,peer,metac-Gemini-Exp-1206,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236045,-49.25856738112693,baseline,metac-Gemini-Exp-1206,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236045,-101.56834408654308,spot_peer,metac-Gemini-Exp-1206,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236045,-0.955285704503836,relative_legacy,metac-Gemini-Exp-1206,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236047,49.889446134863,baseline,metac-Llama-3.1,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236047,107.32056940576048,spot_peer,metac-Llama-3.1,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236047,59.36926411670824,spot_baseline,metac-Llama-3.1,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236047,1.335505985350412,relative_legacy,metac-Llama-3.1,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,236047,89.69455955804368,peer,metac-Llama-3.1,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,237476,-11.302448941347906,baseline,NextWorldLab,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,237476,-17.89313623466057,spot_peer,NextWorldLab,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,237476,-0.0734373570670137,relative_legacy,NextWorldLab,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,237476,-13.236754772020944,peer,NextWorldLab,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,237476,-15.318399499346986,spot_baseline,NextWorldLab,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,239758,8.683897731959343,spot_baseline,metac-perplexity,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,239758,17.63435144169558,peer,metac-perplexity,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,239758,7.259899517271783,baseline,metac-perplexity,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,239758,0.3450862306019859,relative_legacy,metac-perplexity,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,239758,22.34666287948156,spot_peer,metac-perplexity,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,239759,7.788127215402543,spot_peer,metac-exa,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,239759,0.0,spot_baseline,metac-exa,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,239759,0.1796037130410769,relative_legacy,metac-exa,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,239759,5.552561753356914,peer,metac-exa,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,239759,-0.0007570064965227,baseline,metac-exa,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,240416,-43.70107297363707,spot_peer,metac-o1-preview,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,240416,-38.60853963919089,peer,metac-o1-preview,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,240416,-26.163570058478918,baseline,metac-o1-preview,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,240416,-0.4265201663820332,relative_legacy,metac-o1-preview,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,240416,-30.712357276784324,spot_baseline,metac-o1-preview,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,246118,-22.178755331658,spot_peer,laylaps,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,246118,-12.822554206789,baseline,laylaps,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,246118,-0.1113865397960681,relative_legacy,laylaps,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,246118,-15.838410546822772,peer,laylaps,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,246118,-17.87469216608008,spot_baseline,laylaps,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,247214,-43.21064671391931,spot_baseline,ajf-bot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,247214,-43.33027258894951,peer,ajf-bot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,247214,-0.5011178195046091,relative_legacy,ajf-bot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,247214,-64.65442803686592,spot_peer,ajf-bot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,247214,-29.06330506523781,baseline,ajf-bot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,250015,-22.81603044848664,baseline,metac-deepseek-r1,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,250015,-66.27038179188031,spot_peer,metac-deepseek-r1,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,250015,-0.4021519192543459,relative_legacy,metac-deepseek-r1,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,250015,-33.85234866235288,peer,metac-deepseek-r1,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,250015,-44.17453329371761,spot_baseline,metac-deepseek-r1,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,264059,-0.0148688361918441,relative_legacy,wunderplumb,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,264059,-10.097868842419825,spot_baseline,wunderplumb,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,264059,-9.140927940615706,spot_peer,wunderplumb,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,264059,-2.220120118860766,peer,wunderplumb,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,264059,-2.515612700815888,baseline,wunderplumb,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,264332,0.1720413617154046,relative_legacy,krm-bot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,264332,3.875471777337929,baseline,krm-bot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,264332,9.75562754442048,peer,krm-bot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,264332,24.39115184965747,spot_peer,krm-bot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35123,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:05:16.985575+00,264332,9.903397655631764,spot_baseline,krm-bot,True,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35673 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,187708,12.250963879377528,baseline,twsummerbot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,187708,20.90619551221676,spot_baseline,twsummerbot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,187708,23.00605720683613,spot_peer,twsummerbot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,187708,0.1090900170946863,relative_legacy,twsummerbot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,187708,14.399958341102364,peer,twsummerbot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,189869,0.0958280169964636,relative_legacy,VeritasAI,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,189869,14.622934412665828,baseline,VeritasAI,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,189869,16.626929036876575,spot_baseline,VeritasAI,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,189869,15.843354955902551,spot_peer,VeritasAI,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,189869,17.12847750026809,peer,VeritasAI,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,190710,12.753715098330384,spot_baseline,Bot_Pepa,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,190710,9.554987262739234,baseline,Bot_Pepa,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,190710,9.360309706011538,spot_peer,Bot_Pepa,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,190710,-0.0068843286675131,relative_legacy,Bot_Pepa,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,190710,8.373756875700892,peer,Bot_Pepa,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,191026,-1.183436248511477,peer,manticAI,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,191026,3.997842533878452,baseline,manticAI,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,191026,-3.887650485428849,spot_peer,manticAI,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,191026,-0.146422744441762,relative_legacy,manticAI,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,191026,4.83888771506408,spot_baseline,manticAI,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,191935,6.248742326347235,peer,pgodzinai,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,191935,46.21298654351393,spot_peer,pgodzinai,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,191935,0.0636749131129769,relative_legacy,pgodzinai,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,191935,4.701585207665981,baseline,pgodzinai,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,191935,34.77088389753815,spot_baseline,pgodzinai,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,192418,-19.5120829619668,baseline,InstitutPelFutur,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,192418,-40.97327081865831,peer,InstitutPelFutur,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,192418,-0.6964476366619827,relative_legacy,InstitutPelFutur,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,192418,-49.08124957139818,spot_peer,InstitutPelFutur,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,192418,-22.161460295122545,spot_baseline,InstitutPelFutur,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,192924,-9.41902369237138,spot_peer,acm_bot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,192924,-0.1054720890384819,relative_legacy,acm_bot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,192924,-3.2716804166692874,peer,acm_bot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,192924,0.6369086911954394,baseline,acm_bot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,192924,1.5342382827944403,spot_baseline,acm_bot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,220077,-17.5439778571231,peer,mmBot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,220077,-0.3772223972476686,relative_legacy,mmBot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,220077,-6.546416910142253,spot_baseline,mmBot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,220077,-6.313972890234396,baseline,mmBot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,220077,-22.94454903018396,spot_peer,mmBot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,224797,4.968357560637081,baseline,cookics_bot_TEST,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,224797,0.4058643529294092,peer,cookics_bot_TEST,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,224797,-0.1273806651888862,relative_legacy,cookics_bot_TEST,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,224797,-2.074796702120221,spot_peer,cookics_bot_TEST,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,224797,5.921954433158508,spot_baseline,cookics_bot_TEST,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,227188,-31.739380551401474,spot_baseline,ProfessorSP,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,227188,-20.71798275069081,baseline,ProfessorSP,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,227188,-41.691544281507646,peer,ProfessorSP,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,227188,-0.6786974402142971,relative_legacy,ProfessorSP,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,227188,-65.11292027343305,spot_peer,ProfessorSP,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236037,18.4499816148914,baseline,metac-o1,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236037,23.18466963673985,peer,metac-o1,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236037,0.1823401245385023,relative_legacy,metac-o1,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236037,24.48125924599958,spot_peer,metac-o1,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236037,21.78753643766468,spot_baseline,metac-o1,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236038,2.4164020047193526,spot_peer,metac-gpt-4o,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236038,5.056959989416155,peer,metac-gpt-4o,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236038,-0.0685871727037868,relative_legacy,metac-gpt-4o,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236038,7.549860241879401,baseline,metac-gpt-4o,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236038,8.605164677974253,spot_baseline,metac-gpt-4o,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236040,-0.6939332012203006,relative_legacy,metac-claude-3-5-sonnet-latest,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236040,-19.400303408750972,baseline,metac-claude-3-5-sonnet-latest,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236040,-40.76776792655147,peer,metac-claude-3-5-sonnet-latest,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236040,-22.161460295122545,spot_baseline,metac-claude-3-5-sonnet-latest,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236040,-49.08124957139818,spot_peer,metac-claude-3-5-sonnet-latest,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236041,-22.94454903018396,spot_peer,metac-claude-3-5-sonnet-20240620,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236041,-6.546416910142253,spot_baseline,metac-claude-3-5-sonnet-20240620,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236041,-5.717729179277487,baseline,metac-claude-3-5-sonnet-20240620,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236041,-17.526192135787607,peer,metac-claude-3-5-sonnet-20240620,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236041,-0.3764686696111588,relative_legacy,metac-claude-3-5-sonnet-20240620,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236043,-3.0859740913807965,spot_baseline,metac-grok-2-1212,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236043,-12.052772527530202,peer,metac-grok-2-1212,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236043,-0.2927263373977274,relative_legacy,metac-grok-2-1212,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236043,-17.15240644920595,spot_peer,metac-grok-2-1212,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236043,-2.478876618670724,baseline,metac-grok-2-1212,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236045,0.0112803099084841,relative_legacy,metac-Gemini-Exp-1206,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236045,10.070508574230846,baseline,metac-Gemini-Exp-1206,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236045,9.370870625132875,peer,metac-Gemini-Exp-1206,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236045,13.86468838532139,spot_baseline,metac-Gemini-Exp-1206,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236045,11.219873934907804,spot_peer,metac-Gemini-Exp-1206,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236047,-1.1093267903712465,relative_legacy,metac-Llama-3.1,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236047,-44.79742929899618,spot_baseline,metac-Llama-3.1,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236047,-37.37136101139321,baseline,metac-Llama-3.1,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236047,-71.12942316218913,peer,metac-Llama-3.1,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,236047,-86.96968373889625,spot_peer,metac-Llama-3.1,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,237476,24.35331733018596,peer,NextWorldLab,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,237476,19.054972394876703,baseline,NextWorldLab,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,237476,0.2126088200165357,relative_legacy,NextWorldLab,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,237476,30.181315841479076,spot_peer,NextWorldLab,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,237476,25.192963641259222,spot_baseline,NextWorldLab,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,239758,0.0169355730492222,relative_legacy,metac-perplexity,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,239758,11.12024461187042,baseline,metac-perplexity,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,239758,13.365621497732263,spot_baseline,metac-perplexity,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,239758,10.384528078392322,spot_peer,metac-perplexity,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,239758,10.842985761925988,peer,metac-perplexity,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,239759,19.991353372017887,spot_peer,metac-exa,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,239759,0.1330236921500771,relative_legacy,metac-exa,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,239759,16.311787982091197,baseline,metac-exa,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,239759,19.615430591772405,peer,metac-exa,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,239759,19.105098579598103,spot_baseline,metac-exa,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,240416,28.407879650568315,baseline,metac-o1-preview,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,240416,44.41467084406758,spot_peer,metac-o1-preview,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,240416,0.4150271109397787,relative_legacy,metac-o1-preview,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,240416,40.02519373232335,peer,metac-o1-preview,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,240416,33.69650277500639,spot_baseline,metac-o1-preview,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,246118,0.3580557339039654,relative_legacy,laylaps,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,246118,34.38688602877645,peer,laylaps,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,246118,34.77088389753815,spot_baseline,laylaps,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,246118,24.885210706328497,baseline,laylaps,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,246118,46.21298654351393,spot_peer,laylaps,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,247214,41.15662775823249,peer,ajf-bot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,247214,43.06765580733931,spot_baseline,ajf-bot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,247214,60.10025137646431,spot_peer,ajf-bot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,247214,0.462749304781658,relative_legacy,ajf-bot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,247214,28.63125952826476,baseline,ajf-bot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,250015,-12.330450102526951,spot_baseline,metac-deepseek-r1,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,250015,-32.6259530290492,spot_peer,metac-deepseek-r1,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,250015,-13.797707968154008,peer,metac-deepseek-r1,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,250015,-0.2563659378881281,relative_legacy,metac-deepseek-r1,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,250015,-5.474082444556346,baseline,metac-deepseek-r1,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,264059,4.4065538233552966,baseline,wunderplumb,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,264059,16.856721452266463,spot_peer,wunderplumb,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,264059,0.0200696357032042,relative_legacy,wunderplumb,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,264059,17.23235211928347,spot_baseline,wunderplumb,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,264059,4.536854512505608,peer,wunderplumb,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,264332,-0.0458336705022526,relative_legacy,krm-bot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,264332,3.0165058745243503,baseline,krm-bot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,264332,0.8511779793226405,peer,krm-bot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,264332,7.527123750668372,spot_baseline,krm-bot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35124,"What will be the IMDb rating of the premier episode of ""The Studio"" starring Seth Rogan?",2025-03-02 04:05:17.322557+00,264332,0.6119604675751736,spot_peer,krm-bot,True,≥8.0 and ≤9.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35674 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,187708,-88.79798628910349,spot_baseline,twsummerbot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,187708,-13.221312854922523,baseline,twsummerbot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,187708,-22.456643825696556,peer,twsummerbot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,187708,-150.82501809122863,spot_peer,twsummerbot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,187708,-0.3384765422148388,relative_legacy,twsummerbot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,189869,43.3366734568268,spot_baseline,VeritasAI,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,189869,39.98491286114489,spot_peer,VeritasAI,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,189869,0.2402158625371447,relative_legacy,VeritasAI,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,189869,32.32395862188193,peer,VeritasAI,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,189869,38.09332289304893,baseline,VeritasAI,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,190710,33.896416027439834,spot_peer,Bot_Pepa,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,190710,0.1337528534451914,relative_legacy,Bot_Pepa,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,190710,21.65195472300692,peer,Bot_Pepa,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,190710,28.75095777463711,baseline,Bot_Pepa,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,190710,39.12042824636868,spot_baseline,Bot_Pepa,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,191026,-33.86827737108406,peer,manticAI,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,191026,-36.2405930189582,spot_peer,manticAI,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,191026,-7.810333194823058,baseline,manticAI,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,191026,-9.449003017962273,spot_baseline,manticAI,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,191026,-0.6440827878020878,relative_legacy,manticAI,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,191935,-22.595697600202016,spot_peer,pgodzinai,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,191935,0.0,spot_baseline,pgodzinai,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,191935,-0.0649189079494956,relative_legacy,pgodzinai,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,191935,0.6869363863361384,peer,pgodzinai,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,191935,5.845180619447537,baseline,pgodzinai,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,192418,26.059371907040976,baseline,InstitutPelFutur,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,192418,56.87517618749676,spot_baseline,InstitutPelFutur,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,192418,59.5352774377428,spot_peer,InstitutPelFutur,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,192418,0.2169546466393506,relative_legacy,InstitutPelFutur,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,192418,25.031763233427675,peer,InstitutPelFutur,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,192924,-0.0949310450727032,relative_legacy,acm_bot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,192924,6.966283446468979,peer,acm_bot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,192924,12.45349371450766,spot_peer,acm_bot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,192924,20.808912326989457,baseline,acm_bot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,192924,24.27134135851208,spot_baseline,acm_bot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,220077,-35.11531858354598,baseline,mmBot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,220077,-71.28554936497785,peer,mmBot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,220077,-1.169449932474354,relative_legacy,mmBot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,220077,-75.80670007582604,spot_peer,mmBot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,220077,-36.84827970831032,spot_baseline,mmBot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,224797,0.1308730194287712,relative_legacy,cookics_bot_TEST,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,224797,23.01725006009917,peer,cookics_bot_TEST,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,224797,31.52775130056094,baseline,cookics_bot_TEST,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,224797,37.42306165020178,spot_baseline,cookics_bot_TEST,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,224797,31.44532254721127,spot_peer,cookics_bot_TEST,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,227188,33.903595255631885,spot_baseline,ProfessorSP,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,227188,26.363013779562102,spot_peer,ProfessorSP,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,227188,13.99061288077438,peer,ProfessorSP,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,227188,0.0423188200335622,relative_legacy,ProfessorSP,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,227188,21.88992078703756,baseline,ProfessorSP,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236037,-0.2339437023577663,relative_legacy,metac-o1,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236037,-0.1882622234368634,spot_peer,metac-o1,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236037,15.517006030607524,spot_baseline,metac-o1,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236037,12.92110195511825,baseline,metac-o1,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236037,-3.832677145984948,peer,metac-o1,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236038,48.54268271702418,spot_baseline,metac-gpt-4o,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236038,38.28221776894488,peer,metac-gpt-4o,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236038,42.36357035946968,baseline,metac-gpt-4o,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236038,47.50268502921735,spot_peer,metac-gpt-4o,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236038,0.3238430293545489,relative_legacy,metac-gpt-4o,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236040,15.57561269836714,peer,metac-claude-3-5-sonnet-latest,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236040,21.98298917086425,spot_peer,metac-claude-3-5-sonnet-latest,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236040,30.87045616030067,spot_baseline,metac-claude-3-5-sonnet-latest,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236040,26.875556611080597,baseline,metac-claude-3-5-sonnet-latest,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236040,0.0159140459786432,relative_legacy,metac-claude-3-5-sonnet-latest,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236041,37.42306165020177,spot_baseline,metac-claude-3-5-sonnet-20240620,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236041,23.8017405498866,peer,metac-claude-3-5-sonnet-20240620,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236041,32.47872463147622,baseline,metac-claude-3-5-sonnet-20240620,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236041,0.1300381822218688,relative_legacy,metac-claude-3-5-sonnet-20240620,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236041,31.44532254721125,spot_peer,metac-claude-3-5-sonnet-20240620,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236043,-6.772191379782669,peer,metac-grok-2-1212,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236043,10.228784151553816,baseline,metac-grok-2-1212,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236043,12.9011241911351,spot_baseline,metac-grok-2-1212,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236043,-3.9657437269957687,spot_peer,metac-grok-2-1212,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236043,-0.2668445676513154,relative_legacy,metac-grok-2-1212,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236045,10.39940502749596,baseline,metac-Gemini-Exp-1206,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236045,-0.1992370540612371,relative_legacy,metac-Gemini-Exp-1206,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236045,-0.1882622234368634,spot_peer,metac-Gemini-Exp-1206,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236045,15.517006030607524,spot_baseline,metac-Gemini-Exp-1206,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236045,-3.3294359136935343,peer,metac-Gemini-Exp-1206,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236047,11.06071150695834,spot_baseline,metac-Llama-3.1,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236047,9.04067549397516,baseline,metac-Llama-3.1,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236047,-9.083618178148912,peer,metac-Llama-3.1,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236047,-0.3021963842222648,relative_legacy,metac-Llama-3.1,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,236047,-6.623403858462194,spot_peer,metac-Llama-3.1,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,237476,36.6614063968149,baseline,NextWorldLab,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,237476,46.10227885159719,spot_baseline,NextWorldLab,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,237476,43.97860365682504,spot_peer,NextWorldLab,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,237476,0.2603179431017052,relative_legacy,NextWorldLab,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,237476,31.65587860754176,peer,NextWorldLab,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,239758,33.645509999842936,spot_baseline,metac-perplexity,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,239758,17.86145635888327,peer,metac-perplexity,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,239758,0.0673451865300204,relative_legacy,metac-perplexity,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,239758,27.55518269339774,baseline,metac-perplexity,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,239758,25.990324055824196,spot_peer,metac-perplexity,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,239759,36.63104567497864,baseline,metac-exa,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,239759,38.63207999376871,spot_peer,metac-exa,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,239759,29.94102776556315,peer,metac-exa,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,239759,0.2162792969543143,relative_legacy,metac-exa,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,239759,42.39984532774751,spot_baseline,metac-exa,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,240416,-19.05372171594865,spot_baseline,metac-o1-preview,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,240416,-15.675244306130656,baseline,metac-o1-preview,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,240416,-45.201500872320274,peer,metac-o1-preview,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,240416,-0.7986321880039322,relative_legacy,metac-o1-preview,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,240416,-50.110350697251214,spot_peer,metac-o1-preview,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,246118,-22.595697600202016,spot_peer,laylaps,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,246118,0.0,spot_baseline,laylaps,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,246118,-0.4289263949606235,relative_legacy,laylaps,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,246118,-19.64278096954754,peer,laylaps,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,246118,0.0,baseline,laylaps,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,247214,-36.84827970831029,spot_baseline,ajf-bot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,247214,-75.80670007582604,spot_peer,ajf-bot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,247214,-1.169449932474354,relative_legacy,ajf-bot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,247214,-33.35464635614665,baseline,ajf-bot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,247214,-71.28554936497784,peer,ajf-bot,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,250015,35.339857138005065,spot_peer,metac-deepseek-r1,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,250015,7.788914483784866,peer,metac-deepseek-r1,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,250015,0.0489090936556579,relative_legacy,metac-deepseek-r1,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,250015,40.12000200574197,spot_baseline,metac-deepseek-r1,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,250015,9.778157836096186,baseline,metac-deepseek-r1,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,264059,-3.6038687674984,spot_peer,wunderplumb,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,264059,3.3310297435085303,baseline,wunderplumb,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,264059,-1.817383198752584,peer,wunderplumb,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,264059,13.151720291689704,spot_baseline,wunderplumb,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35126,"How many reported incidents of unruly passenger per 10,000 flights will the FAA report for the week of March 23, 2025?",2025-03-02 04:05:17.385972+00,264059,-0.087216692650256,relative_legacy,wunderplumb,True,>1.3 and <1.7,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35676 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,187708,114.19318767097684,spot_baseline,twsummerbot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,187708,43.424726670350296,spot_peer,twsummerbot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,187708,0.0258458428325187,relative_legacy,twsummerbot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,187708,19.891442527547863,peer,twsummerbot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,187708,55.19105921461245,baseline,twsummerbot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,189869,127.9033724536146,baseline,VeritasAI,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,189869,144.9384471158756,spot_baseline,VeritasAI,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,189869,67.94946410383409,peer,VeritasAI,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,189869,0.7690088364827191,relative_legacy,VeritasAI,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,189869,75.45103859211983,spot_peer,VeritasAI,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,191026,-14.342892297466122,spot_peer,manticAI,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,191026,-12.960113953597402,peer,manticAI,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,191026,51.68837033630156,baseline,manticAI,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,191026,58.73627346187307,spot_baseline,manticAI,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,191026,-1.4221668546577542,relative_legacy,manticAI,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,192418,0.0,baseline,InstitutPelFutur,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,192418,-34.864575254147795,peer,InstitutPelFutur,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,192418,-1.4427490513460797,relative_legacy,InstitutPelFutur,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,192418,-75.52651048691725,spot_peer,InstitutPelFutur,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,192418,0.0,spot_baseline,InstitutPelFutur,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,192924,76.57381854821942,spot_baseline,acm_bot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,192924,65.82696075781504,baseline,acm_bot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,192924,4.2378838341446645,spot_peer,acm_bot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,192924,2.753306873555756,peer,acm_bot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,192924,-0.9528095279418984,relative_legacy,acm_bot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,220077,-99.22052867704376,peer,mmBot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,220077,-33.19778908625489,spot_baseline,mmBot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,220077,-110.10754078509942,spot_peer,mmBot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,220077,-3.7668047589794833,relative_legacy,mmBot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,220077,-31.47692744773426,baseline,mmBot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,224797,146.25104466381575,spot_baseline,cookics_bot_TEST,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,224797,64.29045497165076,peer,cookics_bot_TEST,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,224797,0.760051957523222,relative_legacy,cookics_bot_TEST,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,224797,123.39120581774144,baseline,cookics_bot_TEST,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,224797,76.8183277045575,spot_peer,cookics_bot_TEST,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,227188,0.5784398560118937,relative_legacy,ProfessorSP,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,227188,93.84391406110944,baseline,ProfessorSP,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,227188,47.64233310360119,peer,ProfessorSP,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,227188,146.1909845982949,spot_baseline,ProfessorSP,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,227188,76.75576513630661,spot_peer,ProfessorSP,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236037,-64.29091402874674,peer,metac-o1,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236037,0.0,spot_baseline,metac-o1,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236037,0.0,baseline,metac-o1,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236037,-75.52651048691725,spot_peer,metac-o1,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236037,-2.729005706599769,relative_legacy,metac-o1,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236038,125.98400788299992,baseline,metac-gpt-4o,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236038,144.78244075195568,spot_baseline,metac-gpt-4o,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236038,65.88830372626096,peer,metac-gpt-4o,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236038,0.7484656047027871,relative_legacy,metac-gpt-4o,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236038,75.2885319630366,spot_peer,metac-gpt-4o,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236040,0.7804584273669867,relative_legacy,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236040,126.8110433495656,baseline,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236040,66.7757862993323,peer,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236040,76.75576513630661,spot_peer,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236040,146.1909845982949,spot_baseline,metac-claude-3-5-sonnet-latest,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236041,133.70743247132643,spot_baseline,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236041,115.63014290817569,baseline,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236041,0.4659230245162538,relative_legacy,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236041,55.04552291264277,peer,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236041,63.75206500404779,spot_peer,metac-claude-3-5-sonnet-20240620,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236043,58.76930991088449,peer,metac-grok-2-1212,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236043,76.06398052633597,spot_peer,metac-grok-2-1212,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236043,145.52687137272306,spot_baseline,metac-grok-2-1212,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236043,114.86804834014198,baseline,metac-grok-2-1212,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236043,0.6909565727452914,relative_legacy,metac-grok-2-1212,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236045,76.68495162046298,spot_peer,metac-Gemini-Exp-1206,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236045,0.5556794838015835,relative_legacy,metac-Gemini-Exp-1206,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236045,146.12300362308503,spot_baseline,metac-Gemini-Exp-1206,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236045,45.49220908535412,peer,metac-Gemini-Exp-1206,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236045,89.78008680840979,baseline,metac-Gemini-Exp-1206,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236047,116.80528357150686,baseline,metac-Llama-3.1,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236047,60.0910928519593,peer,metac-Llama-3.1,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236047,0.7140204565776931,relative_legacy,metac-Llama-3.1,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236047,76.68495162046298,spot_peer,metac-Llama-3.1,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,236047,146.12300362308503,spot_baseline,metac-Llama-3.1,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,237476,-1.2975069358453115,relative_legacy,NextWorldLab,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,237476,60.1986402262968,spot_baseline,NextWorldLab,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,237476,-12.819593584524744,spot_peer,NextWorldLab,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,237476,-12.13750600552791,peer,NextWorldLab,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,237476,49.51496114768453,baseline,NextWorldLab,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,239758,-0.381677178947489,relative_legacy,metac-perplexity,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,239758,20.721940068419972,peer,metac-perplexity,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,239758,80.16267343635245,baseline,metac-perplexity,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,239758,98.70405130110046,spot_baseline,metac-perplexity,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,239758,27.29020961839576,spot_peer,metac-perplexity,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,239759,-2.8819599221552394,relative_legacy,metac-exa,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,239759,0.0,spot_baseline,metac-exa,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,239759,0.0043869223177168,baseline,metac-exa,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,239759,-67.143731820217,peer,metac-exa,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,239759,-75.52651048691725,spot_peer,metac-exa,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,240416,99.62150823905576,spot_baseline,metac-o1-preview,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,240416,80.92180437053118,baseline,metac-o1-preview,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,240416,21.513365601818776,peer,metac-o1-preview,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,240416,-0.3601096860298916,relative_legacy,metac-o1-preview,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,240416,28.24589392876584,spot_peer,metac-o1-preview,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,246118,-2.373703251610848,relative_legacy,laylaps,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,246118,-56.261007261308464,peer,laylaps,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,246118,0.0,spot_baseline,laylaps,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,246118,-75.52651048691725,spot_peer,laylaps,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,246118,0.0,baseline,laylaps,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,247214,-7.538127679221384,relative_legacy,ajf-bot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,247214,-160.9962122525956,baseline,ajf-bot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,247214,-184.4439727056968,spot_baseline,ajf-bot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,247214,-267.6556487220181,spot_peer,ajf-bot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,247214,-237.39192775375275,peer,ajf-bot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,250015,1.153073955515662,peer,metac-deepseek-r1,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,250015,4.705002054972951,spot_peer,metac-deepseek-r1,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,250015,-0.2098598666991054,relative_legacy,metac-deepseek-r1,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,250015,77.02225204021458,spot_baseline,metac-deepseek-r1,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,250015,18.995664070768957,baseline,metac-deepseek-r1,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,264059,0.0,baseline,wunderplumb,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,264059,-19.099172920474786,peer,wunderplumb,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,264059,-0.7774045532768221,relative_legacy,wunderplumb,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,264059,0.0,spot_baseline,wunderplumb,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,264059,-75.52651048691725,spot_peer,wunderplumb,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,264225,0.3606883643894893,relative_legacy,KevinTestBot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,264225,75.92564490034539,spot_peer,KevinTestBot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,264225,145.39406917177212,spot_baseline,KevinTestBot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,264225,51.822190187261256,baseline,KevinTestBot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,264225,26.504286385876185,peer,KevinTestBot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,264332,-75.52651048691725,spot_peer,krm-bot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,264332,0.0,spot_baseline,krm-bot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,264332,-0.8621349522083099,relative_legacy,krm-bot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,264332,-21.112414703437715,peer,krm-bot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35127,"How many Bay Wheels (San Francisco, CA) bike share trips will there be in February 2025?",2025-03-02 04:05:17.416872+00,264332,0.0,baseline,krm-bot,True,below_lower_bound,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35677 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,187708,68.11138412634543,spot_peer,twsummerbot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,187708,-1.6886573063461876,spot_baseline,twsummerbot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,187708,0.1861224838173673,relative_legacy,twsummerbot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,187708,30.617897189095267,peer,twsummerbot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,187708,-0.8159131673548142,baseline,twsummerbot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,189869,-42.1035448414853,peer,VeritasAI,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,189869,-96.23519028054284,baseline,VeritasAI,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,189869,-105.22214320692731,spot_baseline,VeritasAI,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,189869,-39.563441210258965,spot_peer,VeritasAI,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,189869,-2.219106493182475,relative_legacy,VeritasAI,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,191026,17.603408750409663,baseline,manticAI,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,191026,78.71822238796514,peer,manticAI,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,191026,1.0546458189926455,relative_legacy,manticAI,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,191026,90.66698633295611,spot_peer,manticAI,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,191026,19.99942173847179,spot_baseline,manticAI,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,191975,0.0680125634313733,relative_legacy,jkraybill_bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,191975,0.2700484947359292,baseline,jkraybill_bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,191975,7.226105859473275,peer,jkraybill_bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,191975,2.716622462606337,spot_baseline,jkraybill_bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,191975,72.69287508605605,spot_peer,jkraybill_bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,192418,26.512448682060867,peer,InstitutPelFutur,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,192418,-2.949862218506275,baseline,InstitutPelFutur,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,192418,0.1182660400623804,relative_legacy,InstitutPelFutur,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,192418,63.08877319605692,spot_peer,InstitutPelFutur,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,192418,-6.518090893162072,spot_baseline,InstitutPelFutur,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,192924,-94.88853084633726,baseline,acm_bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,192924,-45.36366717832519,spot_peer,acm_bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,192924,-2.2061242174936497,relative_legacy,acm_bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,192924,-40.96760760757328,peer,acm_bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,192924,-110.79928356083715,spot_baseline,acm_bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,220077,1.0586339345167537,relative_legacy,mmBot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,220077,17.86766317415368,baseline,mmBot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,220077,89.61100148222334,spot_peer,mmBot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,220077,18.984051689690272,spot_baseline,mmBot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,220077,81.78254431657516,peer,mmBot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,222631,-65.70191277295791,baseline,Grizeu_Bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,222631,-19.607815931468718,peer,Grizeu_Bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,222631,-1.5397858723689275,relative_legacy,Grizeu_Bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,222631,-22.64147428132844,spot_peer,Grizeu_Bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,222631,-88.95102115987875,spot_baseline,Grizeu_Bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,224797,-137.33967235794714,spot_peer,cookics_bot_TEST,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,224797,-119.2397896729812,peer,cookics_bot_TEST,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,224797,-4.348274772175064,relative_legacy,cookics_bot_TEST,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,224797,-168.53505057368372,baseline,cookics_bot_TEST,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,224797,-199.23775007970443,spot_baseline,cookics_bot_TEST,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,227188,25.151216647846443,baseline,ProfessorSP,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,227188,39.296445700545405,spot_baseline,ProfessorSP,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,227188,110.73589125351268,spot_peer,ProfessorSP,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,227188,0.9747904151505302,relative_legacy,ProfessorSP,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,227188,67.9997994673271,peer,ProfessorSP,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236037,-35.907425150925214,spot_baseline,metac-o1,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236037,-29.18548296562548,baseline,metac-o1,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236037,32.52386556798324,spot_peer,metac-o1,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236037,24.52248399153184,peer,metac-o1,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236037,-0.3807720958187928,relative_legacy,metac-o1,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236038,-39.563441210258965,spot_peer,metac-gpt-4o,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236038,-91.34215083808718,baseline,metac-gpt-4o,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236038,-36.59533592686923,peer,metac-gpt-4o,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236038,-2.090641977754312,relative_legacy,metac-gpt-4o,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236038,-105.22214320692731,spot_baseline,metac-gpt-4o,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236040,-85.92190814288819,baseline,metac-claude-3-5-sonnet-latest,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236040,-1.9363026764842577,relative_legacy,metac-claude-3-5-sonnet-latest,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236040,-30.97974330807619,peer,metac-claude-3-5-sonnet-latest,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236040,-99.33299041144758,spot_baseline,metac-claude-3-5-sonnet-latest,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236040,-33.43872230296003,spot_peer,metac-claude-3-5-sonnet-latest,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236041,-171.87892337258629,baseline,metac-claude-3-5-sonnet-20240620,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236041,-199.23775007970443,spot_baseline,metac-claude-3-5-sonnet-20240620,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236041,-137.33967235794714,spot_peer,metac-claude-3-5-sonnet-20240620,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236041,-121.66756761516764,peer,metac-claude-3-5-sonnet-20240620,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236041,-4.418754612227636,relative_legacy,metac-claude-3-5-sonnet-20240620,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236043,-2.8618458557979984,relative_legacy,metac-grok-2-1212,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236043,-113.95594719734704,baseline,metac-grok-2-1212,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236043,-81.08584036041609,spot_peer,metac-grok-2-1212,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236043,-145.14752700515535,spot_baseline,metac-grok-2-1212,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236043,-66.52741432345358,peer,metac-grok-2-1212,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236045,19.02319080146605,spot_baseline,metac-Gemini-Exp-1206,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236045,11.762604270547614,baseline,metac-Gemini-Exp-1206,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236045,52.66010610417671,peer,metac-Gemini-Exp-1206,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236045,0.5808243961489128,relative_legacy,metac-Gemini-Exp-1206,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236045,89.65170615847016,spot_peer,metac-Gemini-Exp-1206,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236047,-127.3137757575834,spot_baseline,metac-Llama-3.1,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236047,-52.80154146783406,peer,metac-Llama-3.1,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236047,-2.4962446116379264,relative_legacy,metac-Llama-3.1,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236047,-62.53873906294126,spot_peer,metac-Llama-3.1,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,236047,-102.01425961038105,baseline,metac-Llama-3.1,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,237476,37.324009900205695,peer,NextWorldLab,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,237476,-23.34170399004562,spot_baseline,NextWorldLab,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,237476,45.59221557529802,spot_peer,NextWorldLab,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,237476,-0.0551873159085337,relative_legacy,NextWorldLab,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,237476,-19.74300482376699,baseline,NextWorldLab,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,239758,29.214583500942183,peer,metac-perplexity,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,239758,-24.16855580195652,baseline,metac-perplexity,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,239758,-30.01827235544857,spot_baseline,metac-perplexity,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,239758,38.64858447527896,spot_peer,metac-perplexity,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,239758,-0.2457110686158213,relative_legacy,metac-perplexity,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,239759,-70.60361808038837,baseline,metac-exa,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,239759,-80.59832199001048,spot_baseline,metac-exa,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,239759,-14.567798515602556,peer,metac-exa,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,239759,-1.4899050859584628,relative_legacy,metac-exa,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,239759,-13.954667144665422,spot_peer,metac-exa,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,240416,63.08877319605692,spot_peer,metac-o1-preview,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,240416,-5.287911583823005,baseline,metac-o1-preview,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,240416,49.31988712946952,peer,metac-o1-preview,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,240416,-6.518090893162072,spot_baseline,metac-o1-preview,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,240416,0.3033838659307522,relative_legacy,metac-o1-preview,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,246118,99.1324265851737,spot_peer,laylaps,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,246118,28.139268134834843,spot_baseline,laylaps,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,246118,20.143597160839928,baseline,laylaps,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,246118,68.50947629894355,peer,laylaps,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,246118,0.9001483605947613,relative_legacy,laylaps,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,247214,5.451052659677881,baseline,ajf-bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,247214,6.160021689307152,spot_baseline,ajf-bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,247214,76.2740102818249,spot_peer,ajf-bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,247214,0.7049449638251083,relative_legacy,ajf-bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,247214,66.0660991196848,peer,ajf-bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,250015,-137.33967235794714,spot_peer,metac-deepseek-r1,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,250015,-199.23775007970443,spot_baseline,metac-deepseek-r1,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,250015,-38.77897779467118,baseline,metac-deepseek-r1,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,250015,-26.474952630091103,peer,metac-deepseek-r1,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,250015,-0.9897566025743012,relative_legacy,metac-deepseek-r1,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,264059,-117.4782681338826,spot_baseline,wunderplumb,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,264059,-29.937426569069824,baseline,wunderplumb,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,264059,-13.234161951768584,peer,wunderplumb,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,264059,-0.7015937458411039,relative_legacy,wunderplumb,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,264059,-52.30981113429245,spot_peer,wunderplumb,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,264332,-1.33173164607398,relative_legacy,krm-bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,264332,-199.23775007970443,spot_baseline,krm-bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,264332,-51.84911938056344,baseline,krm-bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,264332,-137.33967235794714,spot_peer,krm-bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35128,"What will US airline passenger volume be for St. Patrick's Day Weekend (March 14-March 17, 2025), according to the TSA?",2025-03-02 04:05:17.450231+00,264332,-35.70639015507895,peer,krm-bot,True,10738573.0,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,2025-03-04 12:00:00+00,35678 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,185699,0.395653638678606,relative_legacy,MWG,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,185699,31.463836275927093,spot_peer,MWG,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,185699,-7.356506242230054,baseline,MWG,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,185699,22.37143547000847,peer,MWG,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,185699,-10.097868842419825,spot_baseline,MWG,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,187708,0.0868515684580425,relative_legacy,twsummerbot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,187708,-3.1536783355279887,baseline,twsummerbot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,187708,-17.461843514551834,spot_baseline,twsummerbot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,187708,19.2169142516089,spot_peer,twsummerbot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,187708,3.436269933991998,peer,twsummerbot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,189869,-17.88766220030744,peer,VeritasAI,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,189869,-34.30424846490422,baseline,VeritasAI,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,189869,-0.1591547407695254,relative_legacy,VeritasAI,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,189869,-19.74164661999922,spot_peer,VeritasAI,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,189869,-40.88730951748469,spot_baseline,VeritasAI,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,190710,-17.222199955220837,peer,Bot_Pepa,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,190710,-0.1532793016737054,relative_legacy,Bot_Pepa,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,190710,-23.36774966716383,spot_peer,Bot_Pepa,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,190710,-43.06765580733931,spot_baseline,Bot_Pepa,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,190710,-30.417644699628514,baseline,Bot_Pepa,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,191026,0.3571761044407181,relative_legacy,manticAI,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,191026,25.199292021562183,spot_peer,manticAI,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,191026,-13.864688385321388,spot_baseline,manticAI,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,191026,-11.30767125471179,baseline,manticAI,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,191026,19.685070359436903,peer,manticAI,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,191935,-3.835002278426135,peer,pgodzinai,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,191935,-7.052562820254111,baseline,pgodzinai,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,191935,-23.36774966716383,spot_peer,pgodzinai,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,191935,-43.06765580733931,spot_baseline,pgodzinai,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,191935,-0.014036011598377,relative_legacy,pgodzinai,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,191975,-17.894137739597717,baseline,jkraybill_bot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,191975,-0.1173215596539044,relative_legacy,jkraybill_bot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,191975,-38.14493718938554,spot_peer,jkraybill_bot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,191975,-51.953058557753565,spot_baseline,jkraybill_bot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,191975,-13.359478131883655,peer,jkraybill_bot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,192075,26.18813529323109,spot_peer,CumulativeBot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,192075,-7.318516561233581,baseline,CumulativeBot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,192075,14.018449236402668,peer,CumulativeBot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,192075,0.2699856859745797,relative_legacy,CumulativeBot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,192075,-13.27010496323225,spot_baseline,CumulativeBot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,192418,13.516850929314868,baseline,InstitutPelFutur,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,192418,0.9647124659263576,relative_legacy,InstitutPelFutur,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,192418,71.3156259598322,spot_peer,InstitutPelFutur,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,192418,13.86468838532139,spot_baseline,InstitutPelFutur,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,192418,68.9674535040318,peer,InstitutPelFutur,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,192924,10.743604438984624,baseline,acm_bot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,192924,0.886498533537503,relative_legacy,acm_bot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,192924,69.22801287035519,spot_peer,acm_bot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,192924,58.13979447629694,peer,acm_bot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,192924,12.6094236024156,spot_baseline,acm_bot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,218666,0.2232115590086708,relative_legacy,GreeneiBot2,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,218666,-18.70871131204637,spot_baseline,GreeneiBot2,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,218666,17.14326606969197,spot_peer,GreeneiBot2,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,218666,10.397242201383902,peer,GreeneiBot2,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,218666,-11.77160669331124,baseline,GreeneiBot2,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,220077,-0.0676156865103402,relative_legacy,mmBot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,220077,-31.514696471415075,baseline,mmBot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,220077,-31.739380551401474,spot_baseline,mmBot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,220077,-4.527855465121864,spot_peer,mmBot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,220077,-14.773544723219205,peer,mmBot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,222631,-0.515495114202094,relative_legacy,Grizeu_Bot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,222631,-65.67586428648828,spot_peer,Grizeu_Bot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,222631,-68.50718125411849,spot_baseline,Grizeu_Bot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,222631,-44.24505398877993,baseline,Grizeu_Bot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,222631,-43.06195844291053,peer,Grizeu_Bot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,224797,-18.508977581683027,peer,cookics_bot_TEST,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,224797,-0.1708880878349356,relative_legacy,cookics_bot_TEST,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,224797,-32.42351161687169,baseline,cookics_bot_TEST,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,224797,-23.36774966716383,spot_peer,cookics_bot_TEST,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,224797,-43.06765580733931,spot_baseline,cookics_bot_TEST,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,227188,11.92773941570604,baseline,ProfessorSP,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,227188,42.28753012058171,peer,ProfessorSP,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,227188,0.6605743044408722,relative_legacy,ProfessorSP,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,227188,90.15552016187416,spot_peer,ProfessorSP,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,227188,25.192963641259222,spot_baseline,ProfessorSP,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236037,2.0281624213361367,peer,metac-o1,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236037,-26.766047497970384,spot_baseline,metac-o1,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236037,0.1159675938834544,relative_legacy,metac-o1,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236037,3.7432243278102497,spot_peer,metac-o1,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236037,-22.487774104344048,baseline,metac-o1,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236038,-4.527855465121864,spot_peer,metac-gpt-4o,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236038,-31.739380551401474,spot_baseline,metac-gpt-4o,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236038,-5.0743621356136375,peer,metac-gpt-4o,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236038,-26.741967607796944,baseline,metac-gpt-4o,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236038,0.0183044696508543,relative_legacy,metac-gpt-4o,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236040,17.14326606969197,spot_peer,metac-claude-3-5-sonnet-latest,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236040,-18.70871131204637,spot_baseline,metac-claude-3-5-sonnet-latest,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236040,13.392309397514904,peer,metac-claude-3-5-sonnet-latest,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236040,-15.769818303369933,baseline,metac-claude-3-5-sonnet-latest,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236040,0.2732244930929678,relative_legacy,metac-claude-3-5-sonnet-latest,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236041,-24.977180362422075,baseline,metac-claude-3-5-sonnet-20240620,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236041,-2.1324509245157546,peer,metac-claude-3-5-sonnet-20240620,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236041,0.0586685714819111,relative_legacy,metac-claude-3-5-sonnet-20240620,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236041,-1.1395737734127964,spot_peer,metac-claude-3-5-sonnet-20240620,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236041,-29.702034309607043,spot_baseline,metac-claude-3-5-sonnet-20240620,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236043,-51.7262237230124,spot_peer,metac-grok-2-1212,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236043,-50.58109822160668,baseline,metac-grok-2-1212,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236043,-45.196526463482726,peer,metac-grok-2-1212,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236043,-0.5355494470191251,relative_legacy,metac-grok-2-1212,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236043,-60.119375763824266,spot_baseline,metac-grok-2-1212,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236045,-29.761541384699544,spot_peer,metac-Gemini-Exp-1206,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236045,-38.2702678080187,baseline,metac-Gemini-Exp-1206,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236045,-25.582055154127627,peer,metac-Gemini-Exp-1206,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236045,-0.2687297514225538,relative_legacy,metac-Gemini-Exp-1206,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236045,-46.912190799342056,spot_baseline,metac-Gemini-Exp-1206,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236047,-43.947780285362015,spot_peer,metac-Llama-3.1,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236047,-55.442260946751865,spot_baseline,metac-Llama-3.1,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236047,-46.524538233156754,baseline,metac-Llama-3.1,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236047,-38.43774251870597,peer,metac-Llama-3.1,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,236047,-0.4428654728927841,relative_legacy,metac-Llama-3.1,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,237476,7.503624197148845,peer,NextWorldLab,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,237476,-20.887558259628094,spot_baseline,NextWorldLab,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,237476,13.51965655743497,spot_peer,NextWorldLab,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,237476,0.1784757728580616,relative_legacy,NextWorldLab,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,237476,-12.244573669900332,baseline,NextWorldLab,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,239758,24.94555016682233,peer,metac-perplexity,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,239758,-10.097868842419809,spot_baseline,metac-perplexity,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,239758,31.46383627592711,spot_peer,metac-perplexity,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,239758,0.4300764587763516,relative_legacy,metac-perplexity,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,239758,-8.272461136692801,baseline,metac-perplexity,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,239759,-11.27621518037283,baseline,metac-exa,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,239759,-13.864688385321388,spot_baseline,metac-exa,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,239759,25.199292021562183,spot_peer,metac-exa,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,239759,0.3563408607804375,relative_legacy,metac-exa,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,239759,19.62962846621232,peer,metac-exa,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,240416,-0.1510498384395717,relative_legacy,metac-o1-preview,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,240416,-33.63891635084013,baseline,metac-o1-preview,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,240416,-40.63073588329177,spot_baseline,metac-o1-preview,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,240416,-19.31494264132476,spot_peer,metac-o1-preview,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,240416,-17.25611509144373,peer,metac-o1-preview,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,246118,-23.56649352601252,baseline,laylaps,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,246118,-43.06765580733931,spot_baseline,laylaps,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,246118,-23.36774966716383,spot_peer,laylaps,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,246118,-0.1100126961891938,relative_legacy,laylaps,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,246118,-13.301571799963572,peer,laylaps,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,250015,-22.24912778855624,baseline,metac-deepseek-r1,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,250015,0.7262127425356276,peer,metac-deepseek-r1,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,250015,0.0953351097969465,relative_legacy,metac-deepseek-r1,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,250015,2.1411250524271788,spot_peer,metac-deepseek-r1,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,250015,-27.72937677064278,spot_baseline,metac-deepseek-r1,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,264059,-6.603266929259777,baseline,wunderplumb,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,264059,-43.06765580733929,spot_baseline,wunderplumb,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,264059,-23.367749667163817,spot_peer,wunderplumb,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,264059,-3.582816052925469,peer,wunderplumb,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,264059,-0.0123819935784828,relative_legacy,wunderplumb,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,264225,-37.14570137418081,spot_baseline,KevinTestBot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,264225,-0.0250428866910455,relative_legacy,KevinTestBot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,264225,-7.130704985118362,peer,KevinTestBot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,264225,-18.175169664394357,baseline,KevinTestBot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,264225,-13.519031087383617,spot_peer,KevinTestBot,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,265212,-0.2164231522765412,relative_legacy,4Shadower,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,265212,-49.61407271748156,spot_baseline,4Shadower,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,265212,-21.18556425415652,peer,4Shadower,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,265212,-34.255002951805885,spot_peer,4Shadower,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35129,When will the SpaceX Crew-10 mission launch?,2025-03-02 04:05:17.807215+00,265212,-29.934297824715443,baseline,4Shadower,True,"March 14-21, 2025",2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35679 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,185699,3.5834042932984445,peer,MWG,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,185699,0.0303434667401436,relative_legacy,MWG,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,185699,55.50676991551583,spot_peer,MWG,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,185699,58.17493661414398,spot_baseline,MWG,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,185699,3.755655714479186,baseline,MWG,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,187708,-0.9359027430113228,relative_legacy,twsummerbot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,187708,-65.83055880813772,peer,twsummerbot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,187708,-35.43797355415002,baseline,twsummerbot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,187708,-69.79643381655697,spot_baseline,twsummerbot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,187708,-128.7225265747675,spot_peer,twsummerbot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,189869,-72.44661237256521,spot_peer,VeritasAI,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,189869,-73.3810072747586,peer,VeritasAI,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,189869,-1.1247321999397095,relative_legacy,VeritasAI,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,189869,-27.46308862531857,baseline,VeritasAI,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,189869,-30.705442319033622,spot_baseline,VeritasAI,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,191026,74.92712146374905,peer,manticAI,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,191026,0.8982606296043971,relative_legacy,manticAI,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,191026,98.84172482086012,spot_peer,manticAI,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,191026,88.27673731814885,spot_baseline,manticAI,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,191026,72.00931492470183,baseline,manticAI,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,191935,35.99840146945693,baseline,pgodzinai,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,191935,0.3856179392241259,relative_legacy,pgodzinai,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,191935,56.12306937334272,spot_peer,pgodzinai,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,191935,58.603037289315175,spot_baseline,pgodzinai,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,191935,32.30261393724988,peer,pgodzinai,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,192075,42.41512299520933,spot_peer,CumulativeBot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,192075,0.2690800795065002,relative_legacy,CumulativeBot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,192075,49.08107353425728,spot_baseline,CumulativeBot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,192075,22.975922845482028,peer,CumulativeBot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,192075,28.20499994479977,baseline,CumulativeBot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,192924,54.31122034153108,baseline,acm_bot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,192924,48.41498369453718,peer,acm_bot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,192924,0.5120598023763855,relative_legacy,acm_bot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,192924,63.151720291689685,spot_baseline,acm_bot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,192924,62.6714142622377,spot_peer,acm_bot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,218666,-96.1503954628978,spot_peer,GreeneiBot2,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,218666,-24.37285990002752,baseline,GreeneiBot2,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,218666,-0.7232775015764678,relative_legacy,GreeneiBot2,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,218666,-50.20731719873287,peer,GreeneiBot2,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,218666,-47.170823581681645,spot_baseline,GreeneiBot2,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,220077,23.97187740312628,baseline,mmBot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,220077,1.6679888803636242,peer,mmBot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,220077,24.271341358512093,spot_baseline,mmBot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,220077,-0.1413024438827555,relative_legacy,mmBot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,220077,6.698700724612509,spot_peer,mmBot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,224797,47.81094203801393,spot_peer,cookics_bot_TEST,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,224797,39.83716092886397,baseline,cookics_bot_TEST,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,224797,30.892838547279865,peer,cookics_bot_TEST,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,224797,52.829176418318376,spot_baseline,cookics_bot_TEST,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,224797,0.317800938685063,relative_legacy,cookics_bot_TEST,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,227188,-0.1067777507973852,relative_legacy,ProfessorSP,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,227188,-9.309254488218173,spot_peer,ProfessorSP,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,227188,13.151720291689688,spot_baseline,ProfessorSP,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,227188,6.157545435299235,baseline,ProfessorSP,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,227188,-4.663868969164774,peer,ProfessorSP,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236037,40.20019063757864,peer,metac-o1,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236037,0.4102090590654378,relative_legacy,metac-o1,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236037,55.50676991551579,spot_peer,metac-o1,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236037,58.17493661414397,spot_baseline,metac-o1,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236037,48.65840841094387,baseline,metac-o1,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236038,-23.696559416620616,spot_baseline,metac-gpt-4o,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236038,-62.35653080237875,spot_peer,metac-gpt-4o,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236038,-0.961161899067562,relative_legacy,metac-gpt-4o,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236038,-59.979773886827495,peer,metac-gpt-4o,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236038,-19.87488394500767,baseline,metac-gpt-4o,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236040,26.03541172349136,baseline,metac-claude-3-5-sonnet-latest,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236040,-0.0437275270997175,relative_legacy,metac-claude-3-5-sonnet-latest,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236040,16.38130914394159,spot_peer,metac-claude-3-5-sonnet-latest,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236040,30.997180800833025,spot_baseline,metac-claude-3-5-sonnet-latest,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236040,7.080585870407131,peer,metac-claude-3-5-sonnet-latest,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236041,-16.096404744368115,spot_baseline,metac-claude-3-5-sonnet-20240620,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236041,-0.8331370744285266,relative_legacy,metac-claude-3-5-sonnet-20240620,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236041,-51.415246484066,spot_peer,metac-claude-3-5-sonnet-20240620,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236041,-13.488443213728502,baseline,metac-claude-3-5-sonnet-20240620,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236041,-50.62681691966538,peer,metac-claude-3-5-sonnet-20240620,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236043,49.7890238234322,spot_peer,metac-grok-2-1212,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236043,54.203213239423725,spot_baseline,metac-grok-2-1212,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236043,35.41747978973495,peer,metac-grok-2-1212,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236043,45.39607715043584,baseline,metac-grok-2-1212,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236043,0.3444683555699103,relative_legacy,metac-grok-2-1212,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236045,58.17493661414397,spot_baseline,metac-Gemini-Exp-1206,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236045,38.014200644989074,peer,metac-Gemini-Exp-1206,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236045,0.4015888368238532,relative_legacy,metac-Gemini-Exp-1206,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236045,45.86051810533125,baseline,metac-Gemini-Exp-1206,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236045,55.50676991551579,spot_peer,metac-Gemini-Exp-1206,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236047,44.10590642538265,baseline,metac-Llama-3.1,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236047,52.829176418318376,spot_baseline,metac-Llama-3.1,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236047,47.81094203801393,spot_peer,metac-Llama-3.1,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236047,0.3207633342193932,relative_legacy,metac-Llama-3.1,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,236047,33.58753501436216,peer,metac-Llama-3.1,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,237476,-0.7780651548056695,relative_legacy,NextWorldLab,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,237476,-81.28992323867404,spot_peer,NextWorldLab,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,237476,-36.84827970831032,spot_baseline,NextWorldLab,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,237476,-52.0047375442262,peer,NextWorldLab,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,237476,-22.44437412288437,baseline,NextWorldLab,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,239758,15.238810926144216,spot_peer,metac-perplexity,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,239758,-0.0491898792444218,relative_legacy,metac-perplexity,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,239758,30.20356618344304,spot_baseline,metac-perplexity,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,239758,5.8294392708460805,peer,metac-perplexity,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,239758,24.632824885144185,baseline,metac-perplexity,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,240416,0.2495911320800755,relative_legacy,metac-o1-preview,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,240416,41.64004837373847,spot_peer,metac-o1-preview,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,240416,48.54268271702418,spot_baseline,metac-o1-preview,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,240416,39.98822588713369,baseline,metac-o1-preview,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,240416,27.927566159837564,peer,metac-o1-preview,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,246118,-123.39591523452188,spot_peer,laylaps,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,246118,-68.49202265414104,peer,laylaps,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,246118,-66.09640474436812,spot_baseline,laylaps,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,246118,-36.10417515411994,baseline,laylaps,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,246118,-0.9874136065639786,relative_legacy,laylaps,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,247214,0.3633197161484882,relative_legacy,ajf-bot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,247214,72.13809911118999,spot_baseline,ajf-bot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,247214,27.926508148573607,baseline,ajf-bot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,247214,28.9808578388516,peer,ajf-bot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,247214,75.60832540368898,spot_peer,ajf-bot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,250015,0.0126404400834855,relative_legacy,metac-deepseek-r1,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,250015,32.07730145437618,spot_baseline,metac-deepseek-r1,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,250015,23.609227284248146,baseline,metac-deepseek-r1,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,250015,8.208392252887606,peer,metac-deepseek-r1,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,250015,17.936265283405906,spot_peer,metac-deepseek-r1,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,264059,-59.22122855687138,spot_baseline,wunderplumb,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,264059,-17.244179774468062,peer,wunderplumb,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,264059,-0.2646317146507417,relative_legacy,wunderplumb,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,264059,-113.49831963945738,spot_peer,wunderplumb,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,264059,-9.089074798235403,baseline,wunderplumb,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,264225,-23.95582220197984,baseline,KevinTestBot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,264225,-47.17082358168162,spot_baseline,KevinTestBot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,264225,-96.1503954628978,spot_peer,KevinTestBot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,264225,-0.7063411206540867,relative_legacy,KevinTestBot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,264225,-49.25561828049084,peer,KevinTestBot,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,265212,51.67478016915793,peer,4Shadower,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,265212,89.24911080725467,spot_peer,4Shadower,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,265212,48.88281735311168,baseline,4Shadower,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,265212,0.6583448679109247,relative_legacy,4Shadower,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35130,"On the DesignSafe-CI portal, how many publications will there be in March 2025?",2025-03-02 04:05:17.839562+00,265212,81.61341077497565,spot_baseline,4Shadower,True,0-20,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35680 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,187708,76.90503364912664,spot_peer,twsummerbot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,187708,99.266633056882,spot_baseline,twsummerbot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,187708,0.471545054858322,relative_legacy,twsummerbot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,187708,35.1646724951,peer,twsummerbot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,187708,48.88605115895858,baseline,twsummerbot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,189869,-171.58578453356435,spot_peer,VeritasAI,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,189869,-140.34951304785574,spot_baseline,VeritasAI,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,189869,-4.852392483970668,relative_legacy,VeritasAI,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,189869,-146.92443261729423,peer,VeritasAI,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,189869,-116.36969618451316,baseline,VeritasAI,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,190710,17.77308530590872,baseline,Bot_Pepa,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,190710,-2.568054564986185,peer,Bot_Pepa,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,190710,-0.7714761333759781,relative_legacy,Bot_Pepa,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,190710,0.4491131928185544,spot_peer,Bot_Pepa,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,190710,25.5412811882992,spot_baseline,Bot_Pepa,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,191026,46.11635669314203,spot_baseline,manticAI,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,191026,21.78622853117407,spot_peer,manticAI,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,191026,18.128678917350328,peer,manticAI,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,191026,-0.3705063350131972,relative_legacy,manticAI,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,191026,40.36061966350505,baseline,manticAI,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,191935,83.7259004568854,baseline,pgodzinai,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,191935,122.20500163288204,spot_peer,pgodzinai,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,191935,142.94874504121756,spot_baseline,pgodzinai,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,191935,1.276300409040706,relative_legacy,pgodzinai,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,191935,68.58145953965105,peer,pgodzinai,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,191975,-22.3942792024057,peer,jkraybill_bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,191975,-46.87089513287736,spot_baseline,jkraybill_bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,191975,-74.64499558469787,spot_peer,jkraybill_bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,191975,-0.9045293349553702,relative_legacy,jkraybill_bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,191975,-13.491079920466738,baseline,jkraybill_bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,192418,-2.40919165319725,peer,InstitutPelFutur,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,192418,-0.5487940677999035,relative_legacy,InstitutPelFutur,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,192418,0.4491131928193191,spot_peer,InstitutPelFutur,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,192418,25.54128118829994,spot_baseline,InstitutPelFutur,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,192418,12.130807334680222,baseline,InstitutPelFutur,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,192924,-174.9035573716822,spot_peer,acm_bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,192924,-123.02121349965262,baseline,acm_bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,192924,-154.9194723176577,peer,acm_bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,192924,-5.065562347317759,relative_legacy,acm_bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,192924,-143.54879399889796,spot_baseline,acm_bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,220077,24.07490674230031,baseline,mmBot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,220077,-2.3106888914405044,peer,mmBot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,220077,-0.9157144561151308,relative_legacy,mmBot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,220077,-0.6035198521880778,spot_peer,mmBot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,220077,24.52624218061424,spot_baseline,mmBot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,222631,38.508940453101886,baseline,Grizeu_Bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,222631,20.202712358497973,peer,Grizeu_Bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,222631,-0.100497353147581,relative_legacy,Grizeu_Bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,222631,36.39007811074202,spot_peer,Grizeu_Bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,222631,60.19864021629683,spot_baseline,Grizeu_Bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,224797,-4.516630841858094,relative_legacy,cookics_bot_TEST,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,224797,-175.90926956003355,spot_peer,cookics_bot_TEST,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,224797,-144.51858789480818,spot_baseline,cookics_bot_TEST,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,224797,-136.59400467509954,peer,cookics_bot_TEST,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,224797,-109.1862585595701,baseline,cookics_bot_TEST,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,227188,0.449113192818931,spot_peer,ProfessorSP,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,227188,11.89514882464194,baseline,ProfessorSP,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,227188,-0.5355314684518266,relative_legacy,ProfessorSP,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,227188,25.54128118829957,spot_baseline,ProfessorSP,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,227188,-2.3309293683334387,peer,ProfessorSP,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236037,64.75117308821471,baseline,metac-o1,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236037,43.26865048180202,peer,metac-o1,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236037,54.88433439398485,spot_peer,metac-o1,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236037,78.03238734656671,spot_baseline,metac-o1,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236037,0.3720486915658398,relative_legacy,metac-o1,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236038,0.7785356919285455,relative_legacy,metac-gpt-4o,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236038,79.28185611556277,baseline,metac-gpt-4o,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236038,58.36808600165392,peer,metac-gpt-4o,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236038,94.8559992442941,spot_baseline,metac-gpt-4o,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236038,72.3310430286651,spot_peer,metac-gpt-4o,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236040,58.467630573483,peer,metac-claude-3-5-sonnet-latest,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236040,0.7795420345139715,relative_legacy,metac-claude-3-5-sonnet-latest,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236040,72.3310430286651,spot_peer,metac-claude-3-5-sonnet-latest,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236040,94.8559992442941,spot_baseline,metac-claude-3-5-sonnet-latest,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236040,79.36090065484105,baseline,metac-claude-3-5-sonnet-latest,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236041,50.30995707593685,baseline,metac-claude-3-5-sonnet-20240620,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236041,60.19864021629683,spot_baseline,metac-claude-3-5-sonnet-20240620,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236041,36.39007811074202,spot_peer,metac-claude-3-5-sonnet-20240620,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236041,-0.0571128608434406,relative_legacy,metac-claude-3-5-sonnet-20240620,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236041,27.91268213828808,peer,metac-claude-3-5-sonnet-20240620,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236043,72.3310430286651,spot_peer,metac-grok-2-1212,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236043,0.776467223341252,relative_legacy,metac-grok-2-1212,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236043,58.12765047629383,peer,metac-grok-2-1212,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236043,78.9911466462947,baseline,metac-grok-2-1212,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236043,94.8559992442941,spot_baseline,metac-grok-2-1212,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236045,30.290472681934308,baseline,metac-Gemini-Exp-1206,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236045,9.2141437759553,peer,metac-Gemini-Exp-1206,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236045,-0.4970133825412041,relative_legacy,metac-Gemini-Exp-1206,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236045,39.92538481088862,spot_baseline,metac-Gemini-Exp-1206,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236045,15.365961394022392,spot_peer,metac-Gemini-Exp-1206,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236047,-2.4663097766751982,peer,metac-Llama-3.1,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236047,20.51499021274485,baseline,metac-Llama-3.1,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236047,25.5412811882992,spot_baseline,metac-Llama-3.1,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236047,-0.855344227195277,relative_legacy,metac-Llama-3.1,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,236047,0.4491131928185544,spot_peer,metac-Llama-3.1,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,237476,25.5412811882992,spot_baseline,NextWorldLab,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,237476,-0.7323624471626419,relative_legacy,NextWorldLab,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,237476,0.4491131928185544,spot_peer,NextWorldLab,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,237476,-2.9101202157091874,peer,NextWorldLab,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,237476,16.048181600814004,baseline,NextWorldLab,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,239758,63.28202296355592,baseline,metac-perplexity,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,239758,78.03238757990006,spot_baseline,metac-perplexity,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,239758,54.88433463596018,spot_peer,metac-perplexity,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,239758,0.3648652323036642,relative_legacy,metac-perplexity,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,239758,42.13591470408574,peer,metac-perplexity,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,239759,25.54128118829994,spot_baseline,metac-exa,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,239759,20.832547595795628,baseline,metac-exa,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,239759,-2.4954490851045703,peer,metac-exa,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,239759,-0.8677983645400931,relative_legacy,metac-exa,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,239759,0.4491131928193191,spot_peer,metac-exa,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,240416,60.19864021629646,spot_baseline,metac-o1-preview,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,240416,27.020059717993536,peer,metac-o1-preview,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,240416,-0.0523356263548796,relative_legacy,metac-o1-preview,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,240416,36.39007811074164,spot_peer,metac-o1-preview,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,240416,48.89938538034773,baseline,metac-o1-preview,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,246118,72.3310430286651,spot_peer,laylaps,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,246118,51.8927290393519,baseline,laylaps,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,246118,36.55651696045637,peer,laylaps,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,246118,94.8559992442941,spot_baseline,laylaps,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,246118,0.4386357387121211,relative_legacy,laylaps,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,247214,-0.0408407687727283,relative_legacy,ajf-bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,247214,24.193897685236998,baseline,ajf-bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,247214,12.787453224147397,peer,ajf-bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,247214,60.79506875956056,spot_baseline,ajf-bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,247214,37.00859660005256,spot_peer,ajf-bot,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,250015,36.39007811074202,spot_peer,metac-deepseek-r1,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,250015,-0.0999338243392886,relative_legacy,metac-deepseek-r1,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,250015,20.26108709800024,peer,metac-deepseek-r1,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,250015,38.59490886023048,baseline,metac-deepseek-r1,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,250015,60.19864021629683,spot_baseline,metac-deepseek-r1,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,264059,-144.51858789480818,spot_baseline,wunderplumb,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,264059,-175.90926956003355,spot_peer,wunderplumb,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,264059,-0.8862201920026647,relative_legacy,wunderplumb,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,264059,-26.506882567412863,peer,wunderplumb,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,264059,-21.776778720740904,baseline,wunderplumb,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,265212,-47.062258089544656,spot_peer,4Shadower,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,265212,-20.27325540540818,spot_baseline,4Shadower,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,265212,-12.083321522907848,baseline,4Shadower,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,265212,-31.367583527442648,peer,4Shadower,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35131,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.8703+00,265212,-1.5005270451154546,relative_legacy,4Shadower,True,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35681 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,187708,31.999896551726405,spot_baseline,twsummerbot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,187708,15.604985667272803,baseline,twsummerbot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,187708,55.101983343602,peer,twsummerbot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,187708,0.4133885735319973,relative_legacy,twsummerbot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,187708,115.17049117115268,spot_peer,twsummerbot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,189869,-127.8613669017156,spot_baseline,VeritasAI,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,189869,-51.08522282042702,spot_peer,VeritasAI,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,189869,-3.364989711702937,relative_legacy,VeritasAI,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,189869,-57.15199422392731,peer,VeritasAI,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,189869,-114.38660252263604,baseline,VeritasAI,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,191026,97.74191506052172,spot_baseline,manticAI,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,191026,156.2669649326491,peer,manticAI,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,191026,85.56055404828756,baseline,manticAI,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,191026,2.364594938624337,relative_legacy,manticAI,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,191026,183.54219042029985,spot_peer,manticAI,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,191935,-207.74940504420564,spot_baseline,pgodzinai,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,191935,-134.16878248861667,spot_peer,pgodzinai,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,191935,-3.1849031531324568,relative_legacy,pgodzinai,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,191935,-72.7235888219528,peer,pgodzinai,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,191935,-110.41357188152698,baseline,pgodzinai,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,191975,-46.75832708939781,peer,jkraybill_bot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,191975,-2.0490527399160428,relative_legacy,jkraybill_bot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,191975,-152.09950409981687,spot_peer,jkraybill_bot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,191975,-224.9904835165136,spot_baseline,jkraybill_bot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,191975,-68.62534614589475,baseline,jkraybill_bot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,192924,-120.61536026832576,spot_baseline,acm_bot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,192924,-3.0460774104288904,relative_legacy,acm_bot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,192924,-45.89287914726567,peer,acm_bot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,192924,-103.1611442158794,baseline,acm_bot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,192924,-43.54937592170156,spot_peer,acm_bot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,220077,-1.2420871319166564,relative_legacy,mmBot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,220077,-45.62011508136764,spot_baseline,mmBot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,220077,23.23569776617448,peer,mmBot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,220077,34.44567907273489,spot_peer,mmBot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,220077,-44.50821540924184,baseline,mmBot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,224797,-2.6538329423091267,relative_legacy,cookics_bot_TEST,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,224797,-121.6806604366882,spot_baseline,cookics_bot_TEST,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,224797,-44.65728809679852,spot_peer,cookics_bot_TEST,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,224797,-92.03236672742628,baseline,cookics_bot_TEST,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,224797,-39.04359130807584,peer,cookics_bot_TEST,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,227188,-20.68323420387011,peer,ProfessorSP,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,227188,-44.65728809679852,spot_peer,ProfessorSP,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,227188,-1.6058917305694376,relative_legacy,ProfessorSP,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,227188,-53.403796543574,baseline,ProfessorSP,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,227188,-121.6806604366882,spot_baseline,ProfessorSP,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236037,-43.27054756852674,spot_peer,metac-o1,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236037,-98.30559395491711,baseline,metac-o1,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236037,-42.169461311521786,peer,metac-o1,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236037,-2.8664686316132144,relative_legacy,metac-o1,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236037,-120.34725608258071,spot_baseline,metac-o1,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236038,-46.00801893643439,spot_peer,metac-gpt-4o,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236038,-102.4268883456072,baseline,metac-gpt-4o,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236038,-45.84901045076821,peer,metac-gpt-4o,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236038,-3.001092565051,relative_legacy,metac-gpt-4o,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236038,-122.97944009018424,spot_baseline,metac-gpt-4o,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236040,-46.46150201511863,peer,metac-claude-3-5-sonnet-latest,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236040,-103.0495140436592,baseline,metac-claude-3-5-sonnet-latest,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236040,-3.0195844715380886,relative_legacy,metac-claude-3-5-sonnet-latest,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236040,-46.67044151686208,spot_peer,metac-claude-3-5-sonnet-latest,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236040,-123.61638487905704,spot_baseline,metac-claude-3-5-sonnet-latest,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236041,33.252077284108644,baseline,metac-claude-3-5-sonnet-20240620,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236041,97.36401496804888,peer,metac-claude-3-5-sonnet-20240620,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236041,0.9136589050574896,relative_legacy,metac-claude-3-5-sonnet-20240620,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236041,123.41299896068124,spot_peer,metac-claude-3-5-sonnet-20240620,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236041,39.92538481088848,spot_baseline,metac-claude-3-5-sonnet-20240620,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236043,94.85599924429404,spot_baseline,metac-grok-2-1212,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236043,180.54083797142303,spot_peer,metac-grok-2-1212,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236043,145.03806458569858,peer,metac-grok-2-1212,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236043,2.225452564861428,relative_legacy,metac-grok-2-1212,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236043,78.67289259785021,baseline,metac-grok-2-1212,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236045,-120.34725608258071,spot_baseline,metac-Gemini-Exp-1206,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236045,-79.9853396848476,baseline,metac-Gemini-Exp-1206,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236045,-32.15555534148917,peer,metac-Gemini-Exp-1206,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236045,-2.28330689508899,relative_legacy,metac-Gemini-Exp-1206,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236045,-43.27054756852674,spot_peer,metac-Gemini-Exp-1206,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236047,-2.8806710550337296,relative_legacy,metac-Llama-3.1,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236047,-120.34725608258071,spot_baseline,metac-Llama-3.1,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236047,-43.27054756852674,spot_peer,metac-Llama-3.1,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236047,-98.71450722386498,baseline,metac-Llama-3.1,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,236047,-42.418774308843446,peer,metac-Llama-3.1,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,237476,60.80641313573272,spot_peer,NextWorldLab,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,237476,-20.27325540540818,spot_baseline,NextWorldLab,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,237476,-13.30992096269995,baseline,NextWorldLab,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,237476,37.12658441705696,peer,NextWorldLab,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,237476,-0.3592963973230257,relative_legacy,NextWorldLab,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,239758,1.3750408838700785,relative_legacy,metac-perplexity,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,239758,48.55000475051826,baseline,metac-perplexity,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,239758,60.19864021629683,spot_baseline,metac-perplexity,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,239758,144.49718458230592,spot_peer,metac-perplexity,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,239758,111.86951314411188,peer,metac-perplexity,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,239759,-45.81905452171132,peer,metac-exa,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,239759,-124.24533248939996,spot_baseline,metac-exa,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,239759,-47.32454703161876,spot_peer,metac-exa,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,239759,-2.9741832933783314,relative_legacy,metac-exa,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,239759,-101.94847989845424,baseline,metac-exa,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,240416,-2.875715017215888,relative_legacy,metac-o1-preview,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,240416,-124.24533248939996,spot_baseline,metac-o1-preview,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,240416,-99.02582549538236,baseline,metac-o1-preview,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,240416,-47.32454703161876,spot_peer,metac-o1-preview,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,240416,-44.05870730694635,peer,metac-o1-preview,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,246118,-1.900721619155337,relative_legacy,laylaps,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,246118,-121.01840643252176,spot_baseline,laylaps,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,246118,-43.96854393246541,spot_peer,laylaps,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,246118,-25.46792596196087,peer,laylaps,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,246118,-66.14876990796753,baseline,laylaps,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,247214,0.9885435635256364,relative_legacy,ajf-bot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,247214,37.95856063006306,baseline,ajf-bot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,247214,99.24127826524932,spot_baseline,ajf-bot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,247214,69.8957014866682,peer,ajf-bot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,247214,185.1015281532165,spot_peer,ajf-bot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,250015,-1.9037514644057276,relative_legacy,metac-deepseek-r1,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,250015,-66.01090264838172,baseline,metac-deepseek-r1,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,250015,-26.403479562955173,peer,metac-deepseek-r1,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,250015,-124.24533248939996,spot_baseline,metac-deepseek-r1,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,250015,-47.32454703161876,spot_peer,metac-deepseek-r1,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,264059,-20.01105333066445,baseline,wunderplumb,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,264059,-0.5994383416171718,relative_legacy,wunderplumb,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,264059,-54.0238452741217,spot_peer,wunderplumb,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,264059,-130.6869654148836,spot_baseline,wunderplumb,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,264059,-8.272240812050358,peer,wunderplumb,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,264225,-52.28067499477572,spot_peer,KevinTestBot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,264225,-129.01084014628168,spot_baseline,KevinTestBot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,264225,-1.8636846904477884,relative_legacy,KevinTestBot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,264225,-26.965208196552865,peer,KevinTestBot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,264225,-63.46309279671308,baseline,KevinTestBot,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,265212,-71.4917569213503,baseline,4Shadower,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,265212,-27.60399005960288,peer,4Shadower,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,265212,-119.66697331312452,spot_baseline,4Shadower,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,265212,-42.56305348829228,spot_peer,4Shadower,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35132,"How many registered Syrian refugees will be in Jordan on April 1, 2025, according to UNHCR?",2025-03-02 04:05:17.901108+00,265212,-2.0414610428625477,relative_legacy,4Shadower,True,558533.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.8,2025-03-05 09:00:00+00,35682 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,187708,49.945480208059,baseline,twsummerbot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,187708,-0.0911445776947306,relative_legacy,twsummerbot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,187708,-7.210568380335162,spot_peer,twsummerbot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,187708,78.07300364763768,spot_baseline,twsummerbot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,187708,-4.667254951829232,peer,twsummerbot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,189869,-7.541545554882227,peer,VeritasAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,189869,67.86046253626179,baseline,VeritasAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,189869,-0.1375274210732493,relative_legacy,VeritasAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,189869,-8.30433552455486,spot_peer,VeritasAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,191026,45.189425582545205,baseline,manticAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,191026,55.38519681811257,spot_baseline,manticAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,191026,-23.54140346103893,spot_peer,manticAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,191026,-19.40743154366727,peer,manticAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,191026,-0.3018245818568913,relative_legacy,manticAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,191935,1.4324357660205365,peer,pgodzinai,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,191935,21.512071174899265,baseline,pgodzinai,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,191935,0.0117270553699452,relative_legacy,pgodzinai,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,191935,6.474656778779369,spot_peer,pgodzinai,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,191935,97.08536543404836,spot_baseline,pgodzinai,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,191975,2.036574100619453,spot_peer,jkraybill_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,191975,9.676731503854612,baseline,jkraybill_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,191975,0.0,relative_legacy,jkraybill_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,191975,0.216755877923231,peer,jkraybill_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,191975,90.91970629916877,spot_baseline,jkraybill_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,192924,93.35726382610238,spot_baseline,acm_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,192924,0.0085781349775656,relative_legacy,acm_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,192924,3.439501877964441,peer,acm_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,192924,3.7911443096833697,spot_peer,acm_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,192924,79.6460389162513,baseline,acm_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,204737,65.37623303755103,baseline,SynapseSeer,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,204737,1.6762259811640887,peer,SynapseSeer,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,204737,-0.0069403105056202,relative_legacy,SynapseSeer,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,204737,2.367822081152932,spot_peer,SynapseSeer,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,204737,91.37989649506964,spot_baseline,SynapseSeer,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,220077,3.3318337585505278,peer,mmBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,220077,0.0047157223960374,relative_legacy,mmBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,220077,3.246018890737665,spot_peer,mmBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,220077,89.81131827166053,baseline,mmBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,220077,92.5999418556223,spot_baseline,mmBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,224797,70.1561862835304,baseline,cookics_bot_TEST,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,224797,92.5999418556223,spot_baseline,cookics_bot_TEST,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,224797,3.246018890737665,spot_peer,cookics_bot_TEST,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,224797,0.0017883018989888,relative_legacy,cookics_bot_TEST,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,224797,2.481976987375727,peer,cookics_bot_TEST,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,227188,-0.0123741073625903,relative_legacy,ProfessorSP,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,227188,41.3060751719761,baseline,ProfessorSP,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,227188,0.4658324935583099,peer,ProfessorSP,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,227188,89.53026213333067,spot_baseline,ProfessorSP,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,227188,1.0364428981350085,spot_peer,ProfessorSP,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236037,75.53195338278486,baseline,metac-o1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236037,92.5999418556223,spot_baseline,metac-o1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236037,3.246018890737665,spot_peer,metac-o1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236037,0.00179806061201,relative_legacy,metac-o1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236037,2.7712976728070977,peer,metac-o1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236038,-6.908430832597565,peer,metac-gpt-4o,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236038,-8.30433552455486,spot_peer,metac-gpt-4o,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236038,63.54408463081828,baseline,metac-gpt-4o,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236038,-0.1310783497175203,relative_legacy,metac-gpt-4o,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236038,76.55347463629771,spot_baseline,metac-gpt-4o,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236040,0.0021171813612146,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236040,3.246018890737665,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236040,76.94109568239699,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236040,2.843488889632547,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236041,-2.368654087329419,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236041,84.79969065549501,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236041,70.37931383767014,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236041,-1.8984945561527835,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236041,-0.0626230085539948,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236043,2.8189112723121186,peer,metac-grok-2-1212,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236043,76.50649563698302,baseline,metac-grok-2-1212,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236043,0.0018148467378574,relative_legacy,metac-grok-2-1212,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236043,3.246018890737665,spot_peer,metac-grok-2-1212,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236045,6.474656778779369,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236045,68.91429849791542,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236045,97.08536543404836,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236045,0.0336219822372648,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236045,4.60209672464906,peer,metac-Gemini-Exp-1206,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236047,3.246018890737665,spot_peer,metac-Llama-3.1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236047,2.711885289120536,peer,metac-Llama-3.1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236047,74.70970222365625,baseline,metac-Llama-3.1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236047,92.5999418556223,spot_baseline,metac-Llama-3.1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,236047,0.0017883018989888,relative_legacy,metac-Llama-3.1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,237476,63.1085825790078,baseline,NextWorldLab,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,237476,2.195126480698775,peer,NextWorldLab,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,237476,0.0017883018989888,relative_legacy,NextWorldLab,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,237476,3.246018890737665,spot_peer,NextWorldLab,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,239758,5.409558684494328,spot_peer,metac-perplexity,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,239758,95.60566524124027,spot_baseline,metac-perplexity,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,239758,76.92767903699576,baseline,metac-perplexity,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,239758,4.464582012964866,peer,metac-perplexity,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,239758,0.0259710558188456,relative_legacy,metac-perplexity,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,239759,1.2039895256841415,peer,metac-exa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,239759,92.5999418556223,spot_baseline,metac-exa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,239759,3.246018890737665,spot_peer,metac-exa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,239759,0.0017850207446736,relative_legacy,metac-exa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,239759,34.76419992612389,baseline,metac-exa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,240416,5.409558684494328,spot_peer,metac-o1-preview,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,240416,95.60566524124027,spot_baseline,metac-o1-preview,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,240416,75.56998676366067,baseline,metac-o1-preview,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,240416,4.359041465457701,peer,metac-o1-preview,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,240416,0.0255330280158195,relative_legacy,metac-o1-preview,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,246118,3.246018890737665,spot_peer,laylaps,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,246118,1.7741527432662392,peer,laylaps,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,246118,50.685949448868975,baseline,laylaps,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,246118,92.5999418556223,spot_baseline,laylaps,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,246118,0.0017883018989888,relative_legacy,laylaps,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,247214,92.5999418556223,spot_baseline,ajf-bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,247214,0.0017883018989888,relative_legacy,ajf-bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,247214,2.1654200220575093,peer,ajf-bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,247214,62.22106985576127,baseline,ajf-bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,247214,3.246018890737665,spot_peer,ajf-bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,250015,40.62391525163825,baseline,metac-deepseek-r1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,250015,-4.438155012575217,peer,metac-deepseek-r1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,250015,-0.0833639825013003,relative_legacy,metac-deepseek-r1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,250015,-8.30433552455486,spot_peer,metac-deepseek-r1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,264059,-2.368654087329419,spot_peer,wunderplumb,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,264059,-0.3583436418463128,peer,wunderplumb,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,264059,-0.0101266728344695,relative_legacy,wunderplumb,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,264059,12.953251704878651,baseline,wunderplumb,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,264225,-0.0305539158367294,relative_legacy,KevinTestBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,264225,-1.6726053341756402,peer,KevinTestBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,264225,15.429621431757935,baseline,KevinTestBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,264225,76.55347463629771,spot_baseline,KevinTestBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,264225,-8.30433552455486,spot_peer,KevinTestBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,265212,92.5999418556223,spot_baseline,4Shadower,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,265212,55.50569943608681,baseline,4Shadower,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,265212,1.9377065865187988,peer,4Shadower,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,265212,0.0017883018989888,relative_legacy,4Shadower,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35133,"Will the US State Department's Diversity Visa page still be online on March 31, 2025?",2025-03-02 04:05:17.931858+00,265212,3.246018890737665,spot_peer,4Shadower,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35683 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,187708,18.30673799716586,spot_peer,twsummerbot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,187708,38.19297241751147,baseline,twsummerbot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,187708,86.71057295026547,spot_baseline,twsummerbot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,187708,8.640350906820265,peer,twsummerbot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,187708,0.0596446882460154,relative_legacy,twsummerbot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,189869,4.718621895760995,spot_peer,VeritasAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,189869,13.183283568132268,peer,VeritasAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,189869,0.0039380544567502,relative_legacy,VeritasAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,189869,60.811571921248806,baseline,VeritasAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,191026,55.334269354752095,baseline,manticAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,191026,67.80719051126377,spot_baseline,manticAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,191026,4.718621895760995,spot_peer,manticAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,191026,-0.0250312972643025,relative_legacy,manticAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,191026,6.165103134046367,peer,manticAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,191975,18.079067864661425,spot_peer,jkraybill_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,191975,8.600279604933904,peer,jkraybill_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,191975,38.302114963414205,baseline,jkraybill_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,191975,86.39384504239716,spot_baseline,jkraybill_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,191975,0.0587845551270502,relative_legacy,jkraybill_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,192418,35.87909256958594,baseline,InstitutPelFutur,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,192418,5.829215393162482,peer,InstitutPelFutur,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,192418,11.005619713761645,spot_peer,InstitutPelFutur,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,192418,0.0173740009478907,relative_legacy,InstitutPelFutur,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,192924,67.80719051126377,spot_baseline,acm_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,192924,4.718621895760995,spot_peer,acm_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,192924,-0.0243751504125721,relative_legacy,acm_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,192924,7.7639201691456385,peer,acm_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,192924,57.65229280329636,baseline,acm_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,204737,63.598650374562304,spot_baseline,SynapseSeer,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,204737,1.6934420275838211,spot_peer,SynapseSeer,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,204737,-0.0537892226551222,relative_legacy,SynapseSeer,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,204737,2.8730207572457838,peer,SynapseSeer,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,204737,45.59402872881128,baseline,SynapseSeer,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,220077,-96.45667030413946,baseline,mmBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,220077,-115.90442504705034,spot_peer,mmBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,220077,-1.5010083911541,relative_legacy,mmBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,220077,-102.95725900918092,peer,mmBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,220077,-100.0,spot_baseline,mmBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,224797,5.473071033095696,peer,cookics_bot_TEST,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,224797,67.80719051126377,spot_baseline,cookics_bot_TEST,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,224797,4.718621895760995,spot_peer,cookics_bot_TEST,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,224797,-0.0236180950024086,relative_legacy,cookics_bot_TEST,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,224797,51.46787686878341,baseline,cookics_bot_TEST,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,227188,-3.588998618117506,peer,ProfessorSP,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,227188,22.327229325548224,baseline,ProfessorSP,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,227188,48.54268271702416,spot_baseline,ProfessorSP,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,227188,-9.129078080115438,spot_peer,ProfessorSP,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,227188,-0.112225287537104,relative_legacy,ProfessorSP,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236037,11.005619713761645,spot_peer,metac-o1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236037,76.55347463629771,spot_baseline,metac-o1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236037,11.209653241065425,peer,metac-o1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236037,61.97128368206258,baseline,metac-o1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236037,0.0457551207812155,relative_legacy,metac-o1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236038,56.117610516093954,baseline,metac-gpt-4o,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236038,6.44765306802447,peer,metac-gpt-4o,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236038,-0.0243587370771873,relative_legacy,metac-gpt-4o,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236038,4.718621895760995,spot_peer,metac-gpt-4o,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236040,-11.656554468105073,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236040,31.31017343181,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236040,-16.814349266427325,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236040,-0.2723638457199064,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236041,-18.62247112288364,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236041,-25.115074506645914,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236041,-0.3674231464306239,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236041,26.303440583379377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236041,21.73679403982173,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236043,69.78113638628788,baseline,metac-grok-2-1212,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236043,16.495201585019394,peer,metac-grok-2-1212,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236043,0.1147989262828371,relative_legacy,metac-grok-2-1212,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236043,16.933158926793354,spot_peer,metac-grok-2-1212,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236045,44.35768843490841,baseline,metac-Gemini-Exp-1206,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236045,67.80719051126377,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236045,4.718621895760995,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236045,-0.0236301662782781,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236045,4.533641097692156,peer,metac-Gemini-Exp-1206,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236047,39.386911955055226,baseline,metac-Llama-3.1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236047,-9.129078080115438,spot_peer,metac-Llama-3.1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236047,-0.1813255190609325,relative_legacy,metac-Llama-3.1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,236047,-5.299085035696624,peer,metac-Llama-3.1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,237476,22.54013002148861,spot_peer,NextWorldLab,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,237476,64.91725930269517,baseline,NextWorldLab,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,237476,17.515167420898614,peer,NextWorldLab,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,237476,0.1501916758890669,relative_legacy,NextWorldLab,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,239758,74.2077901493358,baseline,metac-perplexity,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,239758,22.54013002148861,spot_peer,metac-perplexity,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,239758,0.1736448699037757,relative_legacy,metac-perplexity,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,239758,20.39908932714448,peer,metac-perplexity,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,239759,0.1793339037621667,relative_legacy,metac-exa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,239759,22.54013002148861,spot_peer,metac-exa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,239759,76.3295911353934,baseline,metac-exa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,239759,21.23850815826076,peer,metac-exa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,240416,53.25006009872848,baseline,metac-o1-preview,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,240416,5.750752091430225,peer,metac-o1-preview,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,240416,4.718621895760995,spot_peer,metac-o1-preview,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,240416,-0.0236348323758359,relative_legacy,metac-o1-preview,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,240416,67.80719051126377,spot_baseline,metac-o1-preview,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,241715,9.778342624442828,spot_peer,CatrachoCaster,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,241715,74.84612330040356,spot_baseline,CatrachoCaster,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,241715,5.789563236830286,baseline,CatrachoCaster,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,241715,0.7563829692071643,peer,CatrachoCaster,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,241715,-0.0013206854397751,relative_legacy,CatrachoCaster,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,246118,10.261792480712156,peer,laylaps,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,246118,16.933158926793354,spot_peer,laylaps,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,246118,84.79969065549501,spot_baseline,laylaps,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,246118,46.37674829105508,baseline,laylaps,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,246118,0.0693134824518379,relative_legacy,laylaps,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,247214,13.750352374993504,spot_baseline,ajf-bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,247214,-21.520274313473436,peer,ajf-bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,247214,9.199346731764948,baseline,ajf-bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,247214,-34.13847656482974,spot_peer,ajf-bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,247214,-0.3852725338681468,relative_legacy,ajf-bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,250015,-0.1742988997945617,relative_legacy,metac-deepseek-r1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,250015,-7.692298236741328,peer,metac-deepseek-r1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,250015,-16.814349266427325,spot_peer,metac-deepseek-r1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,250015,19.039228183704044,baseline,metac-deepseek-r1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,264059,0.0063786856289253,relative_legacy,wunderplumb,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,264059,16.933158926793354,spot_peer,wunderplumb,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,264059,2.612184858228804,peer,wunderplumb,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,264059,12.936249269335512,baseline,wunderplumb,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,264225,0.0257535465111808,relative_legacy,KevinTestBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,264225,92.5999418556223,spot_baseline,KevinTestBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,264225,18.440112071366794,baseline,KevinTestBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,264225,4.569180898486249,peer,KevinTestBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,264225,22.54013002148861,spot_peer,KevinTestBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,265212,-8.980510958553932,peer,4Shadower,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,265212,22.82373763032569,baseline,4Shadower,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,265212,37.85116232537298,spot_baseline,4Shadower,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,265212,-16.814349266427325,spot_peer,4Shadower,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35134,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:05:18.329565+00,265212,-0.2042488830041547,relative_legacy,4Shadower,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35684 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,189869,-0.036028813289775,relative_legacy,VeritasAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,189869,61.05743819530389,baseline,VeritasAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,189869,-1.5279470145745755,peer,VeritasAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,189869,-1.4943738716673558,spot_peer,VeritasAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,191026,-32.847767540257074,peer,manticAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,191026,14.274017211608186,spot_baseline,manticAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,191026,-40.02791001609994,spot_peer,manticAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,191026,-0.4682800293938872,relative_legacy,manticAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,191026,11.650970075201782,baseline,manticAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,191935,1.2853292322386494,peer,pgodzinai,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,191935,6.373087369505608,baseline,pgodzinai,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,191935,97.08536543404836,spot_baseline,pgodzinai,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,191935,19.580252235681243,spot_peer,pgodzinai,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,191935,0.0191405247588057,relative_legacy,pgodzinai,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,191975,12.341366220718266,baseline,jkraybill_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,191975,67.92736503223908,spot_baseline,jkraybill_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,191975,-1.4078714478016758,spot_peer,jkraybill_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,191975,4.65425378159303e-05,relative_legacy,jkraybill_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,191975,-0.176593065499909,peer,jkraybill_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,192924,0.1305581914914998,relative_legacy,acm_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,192924,87.18436485093177,spot_baseline,acm_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,192924,12.453445802967405,spot_peer,acm_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,192924,10.926600011358495,peer,acm_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,192924,73.8972043972509,baseline,acm_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,204737,1.4938490059809792,peer,SynapseSeer,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,204737,72.2466024471091,spot_baseline,SynapseSeer,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,204737,1.7011445283416766,spot_peer,SynapseSeer,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,204737,0.010418882843678,relative_legacy,SynapseSeer,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,204737,52.57481717362075,baseline,SynapseSeer,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,220077,0.0427276870719554,relative_legacy,mmBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,220077,4.589941412460198,peer,mmBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,220077,73.41687278674686,baseline,mmBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,220077,4.801259932347012,spot_peer,mmBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,224797,62.03385443896868,baseline,cookics_bot_TEST,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,224797,6.68419439404167,peer,cookics_bot_TEST,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,224797,0.0781758395339334,relative_legacy,cookics_bot_TEST,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,224797,8.40322172339715,spot_peer,cookics_bot_TEST,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,224797,81.55754288625727,spot_baseline,cookics_bot_TEST,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,227188,67.80719051126377,spot_baseline,ProfessorSP,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,227188,30.278103823920887,baseline,ProfessorSP,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,227188,-0.372266502878134,peer,ProfessorSP,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,227188,-0.0001717962381768,relative_legacy,ProfessorSP,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,227188,-1.4943738716673558,spot_peer,ProfessorSP,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236037,9.009384420093298,peer,metac-o1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236037,10.73694136957246,spot_peer,metac-o1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236037,68.27703027391627,baseline,metac-o1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236037,0.1055013692660949,relative_legacy,metac-o1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236038,55.9227733889102,baseline,metac-gpt-4o,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236038,-0.9766429172490584,peer,metac-gpt-4o,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236038,-0.0313693184763027,relative_legacy,metac-gpt-4o,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236038,-1.4943738716673558,spot_peer,metac-gpt-4o,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236040,-0.1080501738299465,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236040,-8.196451066722839,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236040,-6.578164091697521,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236040,48.20414790971124,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236041,31.14861372792741,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236041,-0.2778193436243632,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236041,-23.056923290946603,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236041,-18.973323790212262,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236043,69.54870900515583,baseline,metac-grok-2-1212,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236043,0.1080416054190424,relative_legacy,metac-grok-2-1212,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236043,9.218417988916228,peer,metac-grok-2-1212,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236043,10.73694136957246,spot_peer,metac-grok-2-1212,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236045,7.452652835810603,peer,metac-Gemini-Exp-1206,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236045,0.0966551251473472,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236045,10.73694136957246,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236045,55.95584257338928,baseline,metac-Gemini-Exp-1206,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236047,-0.0313179005302221,relative_legacy,metac-Llama-3.1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236047,-0.9700448579204686,peer,metac-Llama-3.1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236047,54.52513148836279,baseline,metac-Llama-3.1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,236047,-1.4943738716673558,spot_peer,metac-Llama-3.1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,237476,0.0422362822812731,relative_legacy,NextWorldLab,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,237476,54.98122421898498,baseline,NextWorldLab,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,237476,3.732468012282104,peer,NextWorldLab,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,237476,4.801259932347012,spot_peer,NextWorldLab,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,239758,0.1042419135988598,relative_legacy,metac-perplexity,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,239758,10.73694136957246,spot_peer,metac-perplexity,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,239758,67.64812053226645,baseline,metac-perplexity,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,239758,8.909865740936693,peer,metac-perplexity,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,239759,0.1732366505980427,relative_legacy,metac-exa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,239759,76.63181382300967,baseline,metac-exa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,239759,13.99587318061114,peer,metac-exa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,239759,16.35161434763955,spot_peer,metac-exa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,240416,10.73694136957246,spot_peer,metac-o1-preview,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,240416,0.1028524578741974,relative_legacy,metac-o1-preview,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,240416,8.705489307358961,peer,metac-o1-preview,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,240416,66.22337865230904,baseline,metac-o1-preview,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,241715,-4.123530854651308,spot_peer,CatrachoCaster,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,241715,64.15460290875237,spot_baseline,CatrachoCaster,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,241715,4.93043431477482,baseline,CatrachoCaster,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,241715,-0.3085183865889485,peer,CatrachoCaster,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,241715,-0.0028859882841832,relative_legacy,CatrachoCaster,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,246118,26.509561544967188,baseline,laylaps,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,246118,-8.088734401033854,peer,laylaps,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,246118,-0.1104100631423565,relative_legacy,laylaps,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,246118,-15.361095413444724,spot_peer,laylaps,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,247214,37.18376173304205,spot_baseline,ajf-bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,247214,24.295830749081865,baseline,ajf-bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,247214,-15.183150029463048,peer,ajf-bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,247214,-0.2146820952434722,relative_legacy,ajf-bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,247214,-23.53732270055091,spot_peer,ajf-bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,250015,-8.196451066722839,spot_peer,metac-deepseek-r1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,250015,28.002347593429924,baseline,metac-deepseek-r1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,250015,-3.620231537823351,peer,metac-deepseek-r1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,250015,-0.0447638322560542,relative_legacy,metac-deepseek-r1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,264059,4.801259932347012,spot_peer,wunderplumb,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,264059,11.80177842259826,baseline,wunderplumb,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,264059,0.7978061665651512,peer,wunderplumb,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,264059,76.55347463629771,spot_baseline,wunderplumb,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,264059,0.0133118121486587,relative_legacy,wunderplumb,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,264225,-1.4943738716673558,spot_peer,KevinTestBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,264225,-0.4169575434781377,peer,KevinTestBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,264225,67.80719051126377,spot_baseline,KevinTestBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,264225,-0.0010923399612106,relative_legacy,KevinTestBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,264225,33.84166176733613,baseline,KevinTestBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,265212,4.801259932347012,spot_peer,4Shadower,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,265212,0.0425591941679392,relative_legacy,4Shadower,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,265212,76.55347463629771,spot_baseline,4Shadower,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,265212,3.238469970022138,peer,4Shadower,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35135,"Will Donald Trump or Elon Musk tweet (X post) about the Diversity Visa before April 1, 2025",2025-03-02 04:05:18.361689+00,265212,46.07852660115931,baseline,4Shadower,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,0.7,2025-03-05 09:00:00+00,35685 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,187708,-14.315514080175792,spot_peer,twsummerbot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,187708,-13.255806072674195,baseline,twsummerbot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,187708,-9.103622870611026,peer,twsummerbot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,187708,-0.2058506202009547,relative_legacy,twsummerbot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,187708,-23.10746644362487,spot_baseline,twsummerbot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,189869,-0.4161275935373292,relative_legacy,VeritasAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,189869,-20.8379039933196,spot_peer,VeritasAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,189869,-19.14267044788383,peer,VeritasAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,189869,-28.831569339434207,baseline,VeritasAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,190710,-35.17504976964433,baseline,Bot_Pepa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,190710,-51.45731728297583,spot_baseline,Bot_Pepa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,190710,-34.66794108657375,spot_peer,Bot_Pepa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,190710,-0.4543796221659069,relative_legacy,Bot_Pepa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,190710,-24.676122111211708,peer,Bot_Pepa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,191026,18.23667503676308,peer,manticAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,191026,31.034012061215048,spot_baseline,manticAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,191026,24.552785281692906,spot_peer,manticAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,191026,0.0988135648490019,relative_legacy,manticAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,191026,25.33604283557821,baseline,manticAI,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,191935,15.67943838386348,baseline,pgodzinai,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,191935,11.716874755718184,peer,pgodzinai,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,191935,22.443314632019398,spot_peer,pgodzinai,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,191935,28.0956313831056,spot_baseline,pgodzinai,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,191935,0.0799005012064515,relative_legacy,pgodzinai,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,191975,17.692214417517167,baseline,jkraybill_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,191975,12.794583032703116,peer,jkraybill_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,191975,0.1361034481027441,relative_legacy,jkraybill_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,191975,46.00259238162436,spot_peer,jkraybill_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,191975,60.91245513951462,spot_baseline,jkraybill_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,192924,-62.14883767462704,spot_baseline,acm_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,192924,-37.8095546317462,peer,acm_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,192924,-52.46116561053762,baseline,acm_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,192924,-0.6689928464518732,relative_legacy,acm_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,192924,-42.34340963106639,spot_peer,acm_bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,204737,-12.430727681530376,peer,SynapseSeer,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,204737,-25.153876699596427,spot_baseline,SynapseSeer,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,204737,-15.784636990057004,spot_peer,SynapseSeer,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,204737,-0.2970147464961741,relative_legacy,SynapseSeer,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,204737,-18.29152459437532,baseline,SynapseSeer,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,220077,-100.0,spot_baseline,mmBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,220077,-95.4094543920623,baseline,mmBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,220077,-69.51685130805652,spot_peer,mmBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,220077,-1.0424212164232558,relative_legacy,mmBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,220077,-66.82389316485872,peer,mmBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,224797,0.0694015012022195,relative_legacy,cookics_bot_TEST,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,224797,21.15669648931171,spot_peer,cookics_bot_TEST,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,224797,26.303440583379377,spot_baseline,cookics_bot_TEST,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,224797,14.941942151334608,peer,cookics_bot_TEST,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,224797,20.04690408250632,baseline,cookics_bot_TEST,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,227188,-50.63354721153975,spot_peer,ProfessorSP,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,227188,-23.765977715466985,peer,ProfessorSP,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,227188,-33.354809396941405,baseline,ProfessorSP,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,227188,-73.69655941662059,spot_baseline,ProfessorSP,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,227188,-0.4097916652196497,relative_legacy,ProfessorSP,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236037,28.13093529118812,peer,metac-o1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236037,38.90522211389448,baseline,metac-o1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236037,48.54268271702416,spot_baseline,metac-o1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236037,37.122302614277736,spot_peer,metac-o1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236037,0.2391430504629587,relative_legacy,metac-o1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236038,-32.19280948873623,spot_baseline,metac-gpt-4o,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236038,-19.35991151816748,peer,metac-gpt-4o,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236038,-0.4203115719134584,relative_legacy,metac-gpt-4o,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236038,-20.8379039933196,spot_peer,metac-gpt-4o,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236038,-26.448558537936176,baseline,metac-gpt-4o,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236040,0.3248745903177072,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236040,44.26799287542629,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236040,48.07072859568336,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236040,34.81388846052958,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236041,21.15669648931171,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236041,0.0601716549359348,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236041,15.499837818091915,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236041,21.54266862246603,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236041,26.303440583379377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236043,63.15129697194301,spot_peer,metac-grok-2-1212,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236043,0.5379559776119482,relative_legacy,metac-grok-2-1212,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236043,50.14803998088769,peer,metac-grok-2-1212,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236043,69.2593479852408,baseline,metac-grok-2-1212,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236045,33.8662437237737,peer,metac-Gemini-Exp-1206,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236045,0.3809223684026926,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236045,57.23131839566264,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236045,46.28363253475922,baseline,metac-Gemini-Exp-1206,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236047,54.24582955911301,baseline,metac-Llama-3.1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236047,50.95233970753189,spot_peer,metac-Llama-3.1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236047,0.3929994108496302,relative_legacy,metac-Llama-3.1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,236047,39.270731966060026,peer,metac-Llama-3.1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,237476,-2.571698573244462,relative_legacy,NextWorldLab,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,237476,-245.22515337781397,baseline,NextWorldLab,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,237476,-176.6872460459348,peer,NextWorldLab,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,237476,-332.1928094887361,spot_baseline,NextWorldLab,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,237476,-236.208635095874,spot_peer,NextWorldLab,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,239758,48.54268271702416,spot_baseline,metac-perplexity,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,239758,38.56017841506709,baseline,metac-perplexity,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,239758,0.238906661413691,relative_legacy,metac-perplexity,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,239758,27.943286256120576,peer,metac-perplexity,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,239758,37.122302614277736,spot_peer,metac-perplexity,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,239759,48.54641878210845,baseline,metac-exa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,239759,58.496250072115615,spot_baseline,metac-exa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,239759,35.37990480355847,peer,metac-exa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,239759,0.3322429597420713,relative_legacy,metac-exa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,239759,44.26799287542629,spot_peer,metac-exa,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,240416,57.23131839566264,spot_peer,metac-o1-preview,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,240416,0.4553455109957705,relative_legacy,metac-o1-preview,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,240416,43.12120863451734,peer,metac-o1-preview,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,240416,59.157643489923935,baseline,metac-o1-preview,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,241715,-88.8968687611256,spot_baseline,CatrachoCaster,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,241715,-6.846669189904941,baseline,CatrachoCaster,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,241715,-4.740148101903429,peer,CatrachoCaster,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,241715,-0.0506697570057123,relative_legacy,CatrachoCaster,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,241715,-61.5458863332432,spot_peer,CatrachoCaster,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,246118,-28.12002219655392,baseline,laylaps,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,246118,-0.3550426074505923,relative_legacy,laylaps,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,246118,-34.66794108657375,spot_peer,laylaps,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,246118,-51.45731728297583,spot_baseline,laylaps,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,246118,-19.854359331287995,peer,laylaps,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,247214,26.303440583379377,spot_baseline,ajf-bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,247214,21.15669648931171,spot_peer,ajf-bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,247214,0.1201190727936961,relative_legacy,ajf-bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,247214,22.2898703440515,peer,ajf-bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,247214,24.21059100366798,baseline,ajf-bot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,250015,18.63759344402949,peer,metac-deepseek-r1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,250015,44.26799287542629,spot_peer,metac-deepseek-r1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,250015,0.1765391662255746,relative_legacy,metac-deepseek-r1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,250015,25.61613045899534,baseline,metac-deepseek-r1,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,264059,-0.0510701694058928,relative_legacy,wunderplumb,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,264059,-3.34271106627534,peer,wunderplumb,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,264059,-32.19280948873623,spot_baseline,wunderplumb,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,264059,-4.904931212902593,baseline,wunderplumb,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,264059,-20.8379039933196,spot_peer,wunderplumb,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,264225,33.33665965765288,baseline,KevinTestBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,264225,67.80719051126377,spot_baseline,KevinTestBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,264225,50.95233970753189,spot_peer,KevinTestBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,264225,0.2468535195023274,relative_legacy,KevinTestBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,264225,24.263134242903902,peer,KevinTestBot,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,265212,-19.13377710213954,baseline,4Shadower,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,265212,-13.317805255353525,peer,4Shadower,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,265212,-32.19280948873623,spot_baseline,4Shadower,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,265212,-0.2700726185950103,relative_legacy,4Shadower,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35136,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:05:18.392542+00,265212,-20.8379039933196,spot_peer,4Shadower,True,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35686 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,187708,0.0501159233051922,relative_legacy,twsummerbot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,187708,84.79969065549501,spot_baseline,twsummerbot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,187708,49.7194782272437,baseline,twsummerbot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,187708,27.83270508399962,peer,twsummerbot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,187708,46.3537110710231,spot_peer,twsummerbot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,189869,-64.50869975534209,peer,VeritasAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,189869,-73.69655941662063,spot_baseline,VeritasAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,189869,-67.57645219826233,spot_peer,VeritasAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,189869,-1.3225794762871708,relative_legacy,VeritasAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,189869,-66.48143271538001,baseline,VeritasAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,190710,-1.022642785839638,relative_legacy,Bot_Pepa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,190710,-73.69655941662063,spot_baseline,Bot_Pepa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,190710,-67.57645219826233,spot_peer,Bot_Pepa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,190710,-46.200187073697805,peer,Bot_Pepa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,190710,-50.93927147524385,baseline,Bot_Pepa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,191026,56.55971758542251,spot_baseline,manticAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,191026,26.05427344313174,spot_peer,manticAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,191026,46.18578502671728,baseline,manticAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,191026,22.25528583796971,peer,manticAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,191026,-0.127270703700734,relative_legacy,manticAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,191975,8.330077091963961,peer,jkraybill_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,191975,68.52674065168415,spot_baseline,jkraybill_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,191975,34.65640056706145,spot_peer,jkraybill_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,191975,-0.0154053580758046,relative_legacy,jkraybill_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,191975,16.45128399411988,baseline,jkraybill_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,192924,-0.2881631638553014,relative_legacy,acm_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,192924,12.60620287780243,spot_peer,acm_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,192924,37.85116232537298,spot_baseline,acm_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,192924,32.01963292791498,baseline,acm_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,192924,11.021672167623414,peer,acm_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,204737,50.863278235144165,spot_peer,SynapseSeer,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,204737,67.08049072663812,baseline,SynapseSeer,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,204737,38.640494239632126,peer,SynapseSeer,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,204737,0.1310253898667931,relative_legacy,SynapseSeer,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,204737,91.07326619029126,spot_baseline,SynapseSeer,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,220077,83.47151993438321,baseline,mmBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,220077,45.11650074558414,peer,mmBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,220077,48.63300510111832,spot_peer,mmBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,220077,0.1355958661202941,relative_legacy,mmBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,220077,87.97057662822883,spot_baseline,mmBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,222631,58.63025246028298,baseline,Grizeu_Bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,222631,92.5999418556223,spot_baseline,Grizeu_Bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,222631,51.96068216571837,spot_peer,Grizeu_Bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,222631,0.1070074047502347,relative_legacy,Grizeu_Bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,222631,33.640550219482485,peer,Grizeu_Bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,224797,44.68311478176199,baseline,cookics_bot_TEST,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,224797,-0.108922326848541,relative_legacy,cookics_bot_TEST,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,224797,27.44629036646485,spot_peer,cookics_bot_TEST,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,224797,58.496250072115615,spot_baseline,cookics_bot_TEST,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,224797,22.13233541484129,peer,cookics_bot_TEST,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,227188,67.80719051126377,spot_baseline,ProfessorSP,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,227188,34.13917403999076,spot_peer,ProfessorSP,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,227188,30.413147586981843,baseline,ProfessorSP,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,227188,15.481297820311116,peer,ProfessorSP,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,227188,-0.0342778161078233,relative_legacy,ProfessorSP,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236037,46.3537110710231,spot_peer,metac-o1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236037,84.79969065549501,spot_baseline,metac-o1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236037,0.0994980636678103,relative_legacy,metac-o1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236037,38.27676438505977,peer,metac-o1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236037,67.42241516629788,baseline,metac-o1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236038,40.42617185799139,spot_peer,metac-gpt-4o,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236038,0.0358134801148241,relative_legacy,metac-gpt-4o,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236038,34.178638114937854,peer,metac-gpt-4o,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236038,62.72525346188866,baseline,metac-gpt-4o,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236038,76.55347463629771,spot_baseline,metac-gpt-4o,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236040,84.79969065549501,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236040,39.08101872872079,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236040,69.4416229380551,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236040,0.1033325208300078,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236040,46.3537110710231,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236041,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236041,55.35709923239602,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236041,28.931609416720544,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236041,-0.0354416935227465,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236041,34.13917403999076,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236043,-1.6641893142092603,relative_legacy,metac-grok-2-1212,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236043,-89.52184809067774,peer,metac-grok-2-1212,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236043,-132.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236043,-109.6246856317016,spot_peer,metac-grok-2-1212,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236043,-107.6541323163793,baseline,metac-grok-2-1212,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236045,0.0613607359920823,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236045,33.214380572904496,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236045,51.96068216571837,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236045,18.622697421300465,peer,metac-Gemini-Exp-1206,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236047,-67.57645219826233,spot_peer,metac-Llama-3.1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236047,-58.71280861566481,baseline,metac-Llama-3.1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236047,-53.35490758246657,peer,metac-Llama-3.1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236047,-1.1627788127353516,relative_legacy,metac-Llama-3.1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,236047,-73.69655941662063,spot_baseline,metac-Llama-3.1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,237476,-67.57645219826233,spot_peer,NextWorldLab,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,237476,-73.69655941662063,spot_baseline,NextWorldLab,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,237476,-56.10270704754908,baseline,NextWorldLab,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,237476,-50.906470019123,peer,NextWorldLab,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,237476,-1.1152616353924938,relative_legacy,NextWorldLab,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,239758,-143.41820397556833,peer,metac-perplexity,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,239758,-232.19280948873623,spot_baseline,metac-perplexity,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,239758,-181.50661546754776,spot_peer,metac-perplexity,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,239758,-2.401117402412232,relative_legacy,metac-perplexity,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,239758,-183.0848793181841,baseline,metac-perplexity,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,239759,0.1033856514356616,relative_legacy,metac-exa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,239759,84.79969065549501,spot_baseline,metac-exa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,239759,46.3537110710231,spot_peer,metac-exa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,239759,39.58784435286697,peer,metac-exa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,239759,70.72184337364229,baseline,metac-exa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,240416,65.21734866202831,baseline,metac-o1-preview,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,240416,36.96305374424386,peer,metac-o1-preview,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,240416,0.0928982878990754,relative_legacy,metac-o1-preview,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,240416,46.3537110710231,spot_peer,metac-o1-preview,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,246118,-127.17210584927354,baseline,laylaps,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,246118,-232.19280948873623,spot_baseline,laylaps,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,246118,-181.50661546754776,spot_peer,laylaps,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,246118,-1.686053421065638,relative_legacy,laylaps,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,246118,-99.17903563683774,peer,laylaps,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,247214,51.96068216571837,spot_peer,ajf-bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,247214,92.5999418556223,spot_baseline,ajf-bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,247214,0.1777912789417253,relative_legacy,ajf-bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,247214,48.31667096771715,peer,ajf-bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,247214,84.40234420731738,baseline,ajf-bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,250015,17.766031580959545,peer,metac-deepseek-r1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,250015,0.0038789548643811,relative_legacy,metac-deepseek-r1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,250015,40.42617185799139,spot_peer,metac-deepseek-r1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,250015,33.397421774385144,baseline,metac-deepseek-r1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,264059,40.42617185799139,spot_peer,wunderplumb,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,264059,11.753750434468422,baseline,wunderplumb,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,264059,6.206891813823241,peer,wunderplumb,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,264059,0.0,relative_legacy,wunderplumb,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,264059,76.55347463629771,spot_baseline,wunderplumb,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,264225,-86.48387290282058,spot_peer,KevinTestBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,264225,-17.37576372457577,peer,KevinTestBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,264225,-20.16818755865097,baseline,KevinTestBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,264225,-0.3522118556083445,relative_legacy,KevinTestBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,264225,-100.0,spot_baseline,KevinTestBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,265212,0.0972785101802977,relative_legacy,4Shadower,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,265212,55.98861742201612,baseline,4Shadower,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,265212,32.082976710531135,peer,4Shadower,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,265212,51.96068216571837,spot_peer,4Shadower,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35137,"Will the JFK Library be open on March 31, 2025?",2025-03-02 04:05:18.423207+00,265212,92.5999418556223,spot_baseline,4Shadower,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35687 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,187708,-0.0267521426431595,relative_legacy,twsummerbot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,187708,79.57669477823923,spot_baseline,twsummerbot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,187708,3.726206971899166,spot_peer,twsummerbot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,187708,43.91856512121531,baseline,twsummerbot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,187708,2.239898523294129,peer,twsummerbot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,189869,73.19460730703805,baseline,VeritasAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,189869,7.530168268740028,peer,VeritasAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,189869,0.0036530848269155,relative_legacy,VeritasAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,189869,7.480597203717301,spot_peer,VeritasAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,191026,-175.60229355739042,spot_peer,manticAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,191026,-2.076100074641473,relative_legacy,manticAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,191026,-144.04226543269888,peer,manticAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,191026,-138.77321647207071,baseline,manticAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,191026,-169.89977439671858,spot_baseline,manticAI,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,191935,0.0631452181353382,relative_legacy,pgodzinai,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,191935,14.17348087724319,spot_peer,pgodzinai,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,191935,9.813683391105354,peer,pgodzinai,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,191935,61.72823966545552,baseline,pgodzinai,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,191935,94.11063109464314,spot_baseline,pgodzinai,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,191975,40.34495250036317,spot_baseline,jkraybill_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,191975,-4.748919234709971,peer,jkraybill_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,191975,7.937216344216211,baseline,jkraybill_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,191975,-24.474326485663696,spot_peer,jkraybill_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,191975,-0.086023050707258,relative_legacy,jkraybill_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,192924,9.194747035694702,spot_peer,acm_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,192924,87.18436485093177,spot_baseline,acm_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,192924,9.036830432211277,peer,acm_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,192924,73.47880641453179,baseline,acm_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,192924,0.0237510707292989,relative_legacy,acm_bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,204737,90.76598278532894,spot_baseline,SynapseSeer,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,204737,66.61179317575971,baseline,SynapseSeer,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,204737,9.5023510354571,peer,SynapseSeer,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,204737,0.0458594174505064,relative_legacy,SynapseSeer,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,204737,11.769283126286142,spot_peer,SynapseSeer,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,220077,87.35100471893097,baseline,mmBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,220077,92.5999418556223,spot_baseline,mmBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,220077,13.087568298412558,spot_peer,mmBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,220077,0.0742987624204246,relative_legacy,mmBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,220077,12.987281444203106,peer,mmBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,224797,58.64313858411367,baseline,cookics_bot_TEST,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,224797,76.55347463629771,spot_baseline,cookics_bot_TEST,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,224797,1.5530579906856,spot_peer,cookics_bot_TEST,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,224797,2.1589230146515463,peer,cookics_bot_TEST,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,224797,-0.059869964284188,relative_legacy,cookics_bot_TEST,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,227188,81.55754288625727,spot_baseline,ProfessorSP,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,227188,35.357066090977526,baseline,ProfessorSP,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,227188,-0.0119817599358186,relative_legacy,ProfessorSP,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,227188,2.3082927241620173,peer,ProfessorSP,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,227188,5.150078819059376,spot_peer,ProfessorSP,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236037,1.5530579906856,spot_peer,metac-o1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236037,-0.0609622765180962,relative_legacy,metac-o1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236037,2.3875102402205424,peer,metac-o1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236037,60.56908786409736,baseline,metac-o1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236037,76.55347463629771,spot_baseline,metac-o1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236038,69.22189159163669,baseline,metac-gpt-4o,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236038,7.606561967959205,peer,metac-gpt-4o,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236038,0.0042687216933749,relative_legacy,metac-gpt-4o,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236038,7.480597203717301,spot_peer,metac-gpt-4o,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236038,84.79969065549501,spot_baseline,metac-gpt-4o,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236040,7.595174504490898,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236040,7.480597203717301,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236040,84.79969065549501,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236040,0.0042700039149776,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236040,69.18672940679866,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236041,12.150131460182449,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236041,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236041,13.087568298412558,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236041,0.0676934255477293,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236041,75.2910166020398,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236043,0.0042621516870678,relative_legacy,metac-grok-2-1212,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236043,7.486604020432491,peer,metac-grok-2-1212,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236043,7.480597203717301,spot_peer,metac-grok-2-1212,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236043,68.77422976919961,baseline,metac-grok-2-1212,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236045,9.66686069002101,peer,metac-Gemini-Exp-1206,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236045,97.08536543404836,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236045,55.97043458659333,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236045,0.0728964709779759,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236045,16.31177732789726,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236047,76.55347463629771,spot_baseline,metac-Llama-3.1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236047,1.5530579906856,spot_peer,metac-Llama-3.1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236047,-0.0610496390589,relative_legacy,metac-Llama-3.1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236047,2.396006358351699,peer,metac-Llama-3.1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,236047,60.63734947126957,baseline,metac-Llama-3.1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,237476,2.2608213812229003,peer,NextWorldLab,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,237476,59.54529833868548,baseline,NextWorldLab,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,237476,1.5530579906856,spot_peer,NextWorldLab,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,237476,-0.059869964284188,relative_legacy,NextWorldLab,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,239758,34.943068426624684,baseline,metac-perplexity,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,239758,0.0308672405917894,relative_legacy,metac-perplexity,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,239758,4.995394827175942,peer,metac-perplexity,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,239758,13.087568298412558,spot_peer,metac-perplexity,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,239759,12.352631336397613,peer,metac-exa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,239759,0.0690752333102446,relative_legacy,metac-exa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,239759,77.51028993862141,baseline,metac-exa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,239759,13.087568298412558,spot_peer,metac-exa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,239759,92.5999418556223,spot_baseline,metac-exa,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,240416,0.0030171693701108,relative_legacy,metac-o1-preview,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,240416,7.480597203717301,spot_peer,metac-o1-preview,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,240416,6.699065939636905,peer,metac-o1-preview,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,240416,64.65156231137587,baseline,metac-o1-preview,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,241715,92.5999418556223,spot_baseline,CatrachoCaster,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,241715,13.087568298412558,spot_peer,CatrachoCaster,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,241715,0.0060239186275829,relative_legacy,CatrachoCaster,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,241715,1.0107167633432694,peer,CatrachoCaster,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,241715,7.151237829982648,baseline,CatrachoCaster,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,246118,1.5530579906856,spot_peer,laylaps,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,246118,76.55347463629771,spot_baseline,laylaps,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,246118,-0.0430108753773827,relative_legacy,laylaps,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,246118,1.0197999700092963,peer,laylaps,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,246118,41.8541118746456,baseline,laylaps,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,247214,5.150078819059376,spot_peer,ajf-bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,247214,-0.0277788813883399,relative_legacy,ajf-bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,247214,4.9879061476580535,peer,ajf-bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,247214,75.39305395284143,baseline,ajf-bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,247214,81.55754288625727,spot_baseline,ajf-bot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,250015,30.394236055931295,baseline,metac-deepseek-r1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,250015,0.6671661931834411,peer,metac-deepseek-r1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,250015,-0.0307015192296718,relative_legacy,metac-deepseek-r1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,250015,1.5530579906856,spot_peer,metac-deepseek-r1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,264059,7.480597203717301,spot_peer,wunderplumb,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,264059,12.931102306130278,baseline,wunderplumb,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,264059,1.1780212317771004,peer,wunderplumb,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,264059,0.0,relative_legacy,wunderplumb,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,264225,7.480597203717301,spot_peer,KevinTestBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,264225,0.0020736945196355,relative_legacy,KevinTestBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,264225,3.9303461294115887,peer,KevinTestBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,264225,42.98808071197042,baseline,KevinTestBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,264225,84.79969065549501,spot_baseline,KevinTestBot,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,265212,4.82303667211,peer,4Shadower,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,265212,51.18105452916928,baseline,4Shadower,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,265212,84.79969065549501,spot_baseline,4Shadower,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,265212,7.480597203717301,spot_peer,4Shadower,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35138,"Will the US Mint list the amount of present gold holdings of Fort Knox as 147.3 million ounces on April 1, 2025?",2025-03-02 04:05:18.453602+00,265212,0.0020736945196355,relative_legacy,4Shadower,True,yes,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,2025-03-05 09:00:00+00,35688 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,189869,-3.293628468565891,spot_peer,VeritasAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,189869,61.22276299168771,baseline,VeritasAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,189869,-3.5698608792467748,peer,VeritasAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,189869,-0.0703970618845039,relative_legacy,VeritasAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,190710,57.72986171152968,baseline,Bot_Pepa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,190710,2.1724658960443595,peer,Bot_Pepa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,190710,0.0100450651996493,relative_legacy,Bot_Pepa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,190710,2.970915785799026,spot_peer,Bot_Pepa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,190710,76.55347463629771,spot_baseline,Bot_Pepa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,191026,58.95268333151927,baseline,manticAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,191026,0.3270879840503936,peer,manticAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,191026,-0.0160478371273193,relative_legacy,manticAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,191026,0.5104820874481039,spot_peer,manticAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,191026,73.11832415721997,spot_baseline,manticAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,191935,67.35564239901446,spot_baseline,pgodzinai,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,191935,50.59933322199679,baseline,pgodzinai,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,191935,-2.810610509694632,peer,pgodzinai,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,191935,-0.0591207843566774,relative_legacy,pgodzinai,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,191935,-3.6170507461550874,spot_peer,pgodzinai,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,192418,0.0802428401537125,relative_legacy,InstitutPelFutur,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,192418,82.53876947849864,baseline,InstitutPelFutur,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,192418,7.353432669572686,peer,InstitutPelFutur,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,192418,84.79969065549501,spot_baseline,InstitutPelFutur,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,192418,8.877285215927058,spot_peer,InstitutPelFutur,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,192924,7.611031746042119,peer,acm_bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,192924,73.30404844290494,baseline,acm_bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,192924,0.0829716765636323,relative_legacy,acm_bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,192924,84.79969065549501,spot_baseline,acm_bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,192924,8.877285215927058,spot_peer,acm_bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,204737,67.80719051126377,spot_baseline,SynapseSeer,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,204737,-0.0558357977215867,relative_legacy,SynapseSeer,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,204737,-3.293628468565891,spot_peer,SynapseSeer,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,204737,51.07536136815567,baseline,SynapseSeer,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,204737,-2.5732848993229887,peer,SynapseSeer,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,218666,-7.243153793319658,spot_peer,GreeneiBot2,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,218666,62.29303509201767,spot_baseline,GreeneiBot2,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,218666,45.01156136151898,baseline,GreeneiBot2,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,218666,-5.341197448042597,peer,GreeneiBot2,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,218666,-0.0955726963241109,relative_legacy,GreeneiBot2,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,220077,92.5999418556223,spot_baseline,mmBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,220077,92.0710754726554,baseline,mmBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,220077,0.1561656566999744,relative_legacy,mmBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,220077,14.464231413855558,spot_peer,mmBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,220077,13.3042379648925,peer,mmBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,222631,0.0053213038470286,relative_legacy,Grizeu_Bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,222631,1.9875184269396973,peer,Grizeu_Bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,222631,53.43509257421018,baseline,Grizeu_Bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,222631,2.970915785799026,spot_peer,Grizeu_Bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,224797,46.84322988654603,baseline,cookics_bot_TEST,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,224797,-9.96260898611492,spot_peer,cookics_bot_TEST,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,224797,58.496250072115615,spot_baseline,cookics_bot_TEST,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,224797,-0.1329519538913809,relative_legacy,cookics_bot_TEST,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,224797,-8.11370474142669,peer,cookics_bot_TEST,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236037,2.970915785799026,spot_peer,metac-o1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236037,0.0116472579990817,relative_legacy,metac-o1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236037,76.55347463629771,spot_baseline,metac-o1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236037,65.83753888693167,baseline,metac-o1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236037,2.445765002901548,peer,metac-o1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236038,-0.063918341824414,relative_legacy,metac-gpt-4o,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236038,-3.293628468565891,spot_peer,metac-gpt-4o,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236038,-3.015260862193042,peer,metac-gpt-4o,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236038,58.61038891953879,baseline,metac-gpt-4o,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236040,0.0116882775477508,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236040,2.970915785799026,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236040,66.22738956050259,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236040,2.4521217908083384,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236041,2.970915785799026,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236041,2.4529948457667032,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236041,0.0116882775477508,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236041,66.20878272700624,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236043,2.454450759592532,peer,metac-grok-2-1212,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236043,66.06632383757375,baseline,metac-grok-2-1212,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236043,76.55347463629771,spot_baseline,metac-grok-2-1212,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236043,2.970915785799026,spot_peer,metac-grok-2-1212,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236043,0.0116533181564152,relative_legacy,metac-grok-2-1212,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236045,-3.293628468565891,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236045,67.80719051126377,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236045,-0.0612037519013835,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236045,-2.863533495399329,peer,metac-Gemini-Exp-1206,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236045,56.459451309654376,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236047,-28.916128759650316,peer,metac-Llama-3.1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236047,22.7104928370512,baseline,metac-Llama-3.1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236047,-0.4220475642044316,relative_legacy,metac-Llama-3.1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,236047,-33.02077595524994,spot_peer,metac-Llama-3.1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,237476,1.7161494074552066,peer,NextWorldLab,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,237476,46.81312976760882,baseline,NextWorldLab,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,237476,0.0,relative_legacy,NextWorldLab,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,237476,2.970915785799026,spot_peer,NextWorldLab,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,239758,8.877285215927058,spot_peer,metac-perplexity,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,239758,70.92562623818488,baseline,metac-perplexity,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,239758,7.380554631690828,peer,metac-perplexity,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,239758,0.0806086153647832,relative_legacy,metac-perplexity,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,239759,8.877285215927058,spot_peer,metac-exa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,239759,84.79969065549501,spot_baseline,metac-exa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,239759,69.3585120185538,baseline,metac-exa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,239759,7.217003721683944,peer,metac-exa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,239759,0.0790950614307816,relative_legacy,metac-exa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,240414,67.80719051126377,spot_baseline,minefrac1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,240414,-0.051119697982521,relative_legacy,minefrac1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,240414,-3.293628468565891,spot_peer,minefrac1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,240414,39.63149436293472,baseline,minefrac1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,240414,-2.027866249913216,peer,minefrac1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,240416,72.87462733718608,baseline,metac-o1-preview,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,240416,7.568351544062989,peer,metac-o1-preview,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,240416,8.877285215927058,spot_peer,metac-o1-preview,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,240416,0.0825079779847528,relative_legacy,metac-o1-preview,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,241715,-0.0673468624163564,relative_legacy,CatrachoCaster,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,241715,-4.096448956782615,peer,CatrachoCaster,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,241715,11.67120652527792,baseline,CatrachoCaster,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,241715,-17.09187237309991,spot_peer,CatrachoCaster,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,241715,48.54268271702416,spot_baseline,CatrachoCaster,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,246118,0.0,relative_legacy,laylaps,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,246118,76.55347463629771,spot_baseline,laylaps,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,246118,47.14771863639185,baseline,laylaps,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,246118,2.970915785799026,spot_peer,laylaps,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,246118,1.728356063478096,peer,laylaps,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,247214,0.4845799588913564,peer,ajf-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,247214,10.485473879229486,baseline,ajf-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,247214,77.39963251111732,spot_baseline,ajf-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,247214,3.576978129213501,spot_peer,ajf-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,247214,0.0011463059973638,relative_legacy,ajf-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,250015,-17.09187237309991,spot_peer,metac-deepseek-r1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,250015,48.54268271702416,spot_baseline,metac-deepseek-r1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,250015,-0.2219752796369068,relative_legacy,metac-deepseek-r1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,250015,-14.465903824867947,peer,metac-deepseek-r1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,250015,40.492944359285566,baseline,metac-deepseek-r1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,264059,0.6396921799005431,peer,wunderplumb,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,264059,16.2409754738552,baseline,wunderplumb,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,264059,0.0,relative_legacy,wunderplumb,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,264059,2.970915785799026,spot_peer,wunderplumb,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,264059,76.55347463629771,spot_baseline,wunderplumb,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,264225,2.970915785799026,spot_peer,KevinTestBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,264225,43.13062500710923,baseline,KevinTestBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,264225,1.584546593082089,peer,KevinTestBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,264225,0.0,relative_legacy,KevinTestBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,264225,76.55347463629771,spot_baseline,KevinTestBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,264332,76.55347463629771,spot_baseline,krm-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,264332,32.93548656017751,baseline,krm-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,264332,1.2244655860342009,peer,krm-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,264332,0.0,relative_legacy,krm-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,264332,2.970915785799026,spot_peer,krm-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,265212,0.0548821963098871,relative_legacy,4Shadower,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,265212,84.79969065549501,spot_baseline,4Shadower,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,265212,8.877285215927058,spot_peer,4Shadower,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,265212,5.688993853650034,peer,4Shadower,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35139,"Will the USDA still list ""snack foods"" on its ""What Can SNAP Buy?"" page on April 1, 2025?",2025-03-02 04:05:18.788507+00,265212,55.19943669570356,baseline,4Shadower,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35689 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,189869,-0.0252582786446007,relative_legacy,VeritasAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,189869,-3.368090836806111,spot_peer,VeritasAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,189869,69.84432831292526,baseline,VeritasAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,189869,-3.67839596051359,peer,VeritasAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,190710,84.79969065549501,spot_baseline,Bot_Pepa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,190710,0.0460535390446593,relative_legacy,Bot_Pepa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,190710,1.3478964022449105,peer,Bot_Pepa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,190710,2.538278593321912,spot_peer,Bot_Pepa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,190710,63.33188831184716,baseline,Bot_Pepa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,191026,1.4087942762526,peer,manticAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,191026,68.38640565066189,baseline,manticAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,191026,84.79969065549501,spot_baseline,manticAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,191026,2.538278593321912,spot_peer,manticAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,191026,0.0460535390446593,relative_legacy,manticAI,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,191975,61.0385097601063,spot_baseline,jkraybill_bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,191975,14.709730200096372,baseline,jkraybill_bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,191975,-3.495172907362451,peer,jkraybill_bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,191975,-0.0373896656864169,relative_legacy,jkraybill_bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,191975,-14.48071680257206,spot_peer,jkraybill_bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,192418,-0.0918865851077935,relative_legacy,InstitutPelFutur,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,192418,67.12845036824683,baseline,InstitutPelFutur,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,192418,69.59938131099001,spot_baseline,InstitutPelFutur,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,192418,-8.348974691320137,spot_peer,InstitutPelFutur,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,192418,-8.816073228233968,peer,InstitutPelFutur,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,192924,76.14046248513168,baseline,acm_bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,192924,4.809432287595358,spot_peer,acm_bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,192924,0.0735592418519744,relative_legacy,acm_bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,192924,87.97057662822883,spot_baseline,acm_bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,192924,3.4593881375319606,peer,acm_bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,204737,0.0460535390446593,relative_legacy,SynapseSeer,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,204737,2.538278593321912,spot_peer,SynapseSeer,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,204737,64.78960922118178,baseline,SynapseSeer,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,204737,84.79969065549501,spot_baseline,SynapseSeer,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,204737,1.3653177733580495,peer,SynapseSeer,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,218666,52.81603767303427,baseline,GreeneiBot2,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,218666,1.2431970107904562,peer,GreeneiBot2,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,218666,0.0460535390446593,relative_legacy,GreeneiBot2,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,218666,2.538278593321912,spot_peer,GreeneiBot2,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,218666,84.79969065549501,spot_baseline,GreeneiBot2,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,220077,80.65310496264361,baseline,mmBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,220077,0.0234496205710994,relative_legacy,mmBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,220077,0.1397878689995072,peer,mmBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,220077,81.55754288625727,spot_baseline,mmBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,220077,0.2160834886091859,spot_peer,mmBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,222631,8.1252247912504,spot_peer,Grizeu_Bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,222631,92.5999418556223,spot_baseline,Grizeu_Bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,222631,0.1001456309611317,relative_legacy,Grizeu_Bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,222631,5.192059265891767,peer,Grizeu_Bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,222631,64.21491356884205,baseline,Grizeu_Bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,224797,61.40850645575427,baseline,cookics_bot_TEST,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,224797,-3.369231506520548,peer,cookics_bot_TEST,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,224797,-0.0200947072702529,relative_legacy,cookics_bot_TEST,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,224797,-3.368090836806111,spot_peer,cookics_bot_TEST,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,224797,76.55347463629771,spot_baseline,cookics_bot_TEST,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236037,0.0460531066162409,relative_legacy,metac-o1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236037,84.79969065549501,spot_baseline,metac-o1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236037,1.4357247143925287,peer,metac-o1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236037,72.47778410060688,baseline,metac-o1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236037,2.538278593321912,spot_peer,metac-o1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236038,65.94137274485267,baseline,metac-gpt-4o,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236038,-3.7001207818392623,peer,metac-gpt-4o,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236038,76.55347463629771,spot_baseline,metac-gpt-4o,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236038,-3.368090836806111,spot_peer,metac-gpt-4o,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236038,-0.0250290320660151,relative_legacy,metac-gpt-4o,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236040,8.1252247912504,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236040,79.79082612526382,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236040,6.317759350268963,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236040,0.1132023475173299,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236041,79.78357776398218,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236041,8.1252247912504,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236041,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236041,6.316062316747602,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236041,0.1131861262346085,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236043,72.91776317981639,baseline,metac-grok-2-1212,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236043,0.0460535390446593,relative_legacy,metac-grok-2-1212,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236043,2.538278593321912,spot_peer,metac-grok-2-1212,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236043,1.444216996184135,peer,metac-grok-2-1212,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236045,2.538278593321912,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236045,68.29404710276928,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236045,1.408308607688015,peer,metac-Gemini-Exp-1206,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236045,0.0460535390446593,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236047,2.538278593321912,spot_peer,metac-Llama-3.1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236047,0.0460535390446593,relative_legacy,metac-Llama-3.1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236047,72.52803853403412,baseline,metac-Llama-3.1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236047,1.4365872525541226,peer,metac-Llama-3.1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,236047,84.79969065549501,spot_baseline,metac-Llama-3.1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,237476,-3.368090836806111,spot_peer,NextWorldLab,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,237476,48.307057302520974,baseline,NextWorldLab,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,237476,-2.490328376471036,peer,NextWorldLab,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,237476,-0.0059820389171348,relative_legacy,NextWorldLab,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,239758,1.4235868313618931,peer,metac-perplexity,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,239758,0.0460535390446593,relative_legacy,metac-perplexity,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,239758,2.538278593321912,spot_peer,metac-perplexity,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,239758,70.88974624942563,baseline,metac-perplexity,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,239759,1.4172713094121785,peer,metac-exa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,239759,2.538278593321912,spot_peer,metac-exa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,239759,84.79969065549501,spot_baseline,metac-exa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,239759,69.73840882089578,baseline,metac-exa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,239759,0.0460648132730277,relative_legacy,metac-exa,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,240414,-0.0014256402223062,relative_legacy,minefrac1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,240414,-2.2273237145633478,peer,minefrac1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,240414,-3.368090836806111,spot_peer,minefrac1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,240414,76.55347463629771,spot_baseline,minefrac1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,240414,44.07713959110782,baseline,minefrac1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,240416,8.1252247912504,spot_peer,metac-o1-preview,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,240416,0.1125680415682495,relative_legacy,metac-o1-preview,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,240416,6.248556109823484,peer,metac-o1-preview,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,240416,78.96206042876626,baseline,metac-o1-preview,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,241715,6.613264612210278,baseline,CatrachoCaster,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,241715,0.0175215833867754,peer,CatrachoCaster,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,241715,0.0040576538114562,relative_legacy,CatrachoCaster,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,241715,81.55754288625727,spot_baseline,CatrachoCaster,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,241715,0.2160834886091859,spot_peer,CatrachoCaster,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,246118,76.55347463629771,spot_baseline,laylaps,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,246118,-0.0046888311084225,relative_legacy,laylaps,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,246118,-2.413502556739386,peer,laylaps,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,246118,47.10651209544365,baseline,laylaps,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,246118,-3.368090836806111,spot_peer,laylaps,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,247214,-3.246593664274874,spot_peer,ajf-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,247214,-1.4420059731438717,peer,ajf-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,247214,31.216081366622277,baseline,ajf-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,247214,76.72310370238756,spot_baseline,ajf-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,247214,0.0005662183287253,relative_legacy,ajf-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,250015,61.521906749096296,baseline,metac-deepseek-r1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,250015,-3.368090836806111,spot_peer,metac-deepseek-r1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,250015,-0.0202350430208312,relative_legacy,metac-deepseek-r1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,250015,-3.378378075277205,peer,metac-deepseek-r1,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,264059,-3.368090836806111,spot_peer,wunderplumb,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,264059,76.55347463629771,spot_baseline,wunderplumb,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,264059,0.0,relative_legacy,wunderplumb,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,264059,-0.7095339189190594,peer,wunderplumb,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,264059,16.137238924359682,baseline,wunderplumb,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,264225,76.55347463629771,spot_baseline,KevinTestBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,264225,42.085775510488105,baseline,KevinTestBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,264225,-2.1100380563666405,peer,KevinTestBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,264225,-0.0001239459729881,relative_legacy,KevinTestBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,264225,-3.368090836806111,spot_peer,KevinTestBot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,264332,76.55347463629771,spot_baseline,krm-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,264332,25.553392154927167,baseline,krm-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,264332,-1.187110214157188,peer,krm-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,264332,0.0,relative_legacy,krm-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,264332,-3.368090836806111,spot_peer,krm-bot,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,265212,-3.368090836806111,spot_peer,4Shadower,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,265212,76.55347463629771,spot_baseline,4Shadower,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,265212,-0.0078243297003524,relative_legacy,4Shadower,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,265212,50.01734187931845,baseline,4Shadower,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35140,"Will Amazon still list a 12-pack of Coca-Cola as ""SNAP EBT eligible"" on April 1, 2025?",2025-03-02 04:05:18.820518+00,265212,-2.604820536781262,peer,4Shadower,True,yes,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,0.9,2025-03-06 21:00:00+00,35690 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,189869,-0.0655393466339919,relative_legacy,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,189869,26.00607821648169,peer,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,189869,23.99166867994057,baseline,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,189869,26.049472440896164,spot_peer,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,190710,0.1846349661889516,relative_legacy,Bot_Pepa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,190710,55.88316884330309,spot_peer,Bot_Pepa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,190710,67.80719051126377,spot_baseline,Bot_Pepa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,190710,50.33789075976005,baseline,Bot_Pepa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,190710,37.663539417251485,peer,Bot_Pepa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,191026,5.046956162669241,spot_peer,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,191026,-0.3858351308466594,relative_legacy,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,191026,-2.351059042730309,baseline,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,191026,-0.0280916296168212,peer,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,191026,-2.914634565951651,spot_baseline,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,191935,-0.0991033495540758,relative_legacy,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,191935,24.48870591235345,spot_baseline,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,191935,16.040229095346223,baseline,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,191935,13.014612893916276,peer,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,191935,24.74500613796253,spot_peer,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,192418,-165.96187006162535,baseline,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,192418,-109.85810056379812,peer,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,192418,-1.889762197168643,relative_legacy,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,192418,-117.71438723079616,spot_peer,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,192924,-124.86920353314667,spot_peer,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,192924,-158.65319132265606,baseline,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,192924,-112.77813477543184,peer,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,192924,-1.975749898548956,relative_legacy,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,192924,-183.65012677171205,spot_baseline,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,204737,56.85623014371241,baseline,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,204737,42.37963660117134,peer,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,204737,0.2495935778623979,relative_legacy,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,204737,62.170166661303725,spot_peer,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,220077,-170.71324748215008,baseline,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,220077,-117.71438723079616,spot_peer,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,220077,-1.889762197168643,relative_legacy,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,220077,-109.85810056379812,peer,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,220077,-173.6965594166206,spot_baseline,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,224797,48.54268271702416,spot_baseline,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,224797,42.03546886742665,spot_peer,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,224797,29.876071325586704,peer,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,224797,38.98465028148559,baseline,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,224797,0.0299216176125249,relative_legacy,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236037,43.71877864114891,peer,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236037,0.1846293438078279,relative_legacy,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236037,55.88316884330309,spot_peer,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236037,57.549995914079375,baseline,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236037,67.80719051126377,spot_baseline,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236038,0.1848755816467602,relative_legacy,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236038,44.56656791058741,peer,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236038,55.88316884330309,spot_peer,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236038,58.24782718604417,baseline,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236040,0.1846544726891072,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236040,58.2099216218736,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236040,44.48778984479033,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236040,55.88316884330309,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236040,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236041,62.170166661303725,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236041,0.2596282462918912,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236041,49.83890826556009,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236041,65.64561683701815,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236043,58.00650703699507,baseline,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236043,55.88316884330309,spot_peer,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236043,0.1846349661889516,relative_legacy,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236043,44.204140545040346,peer,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236045,59.88259972340777,baseline,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236045,62.170166661303725,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236045,0.2530458338251184,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236045,44.77707679591261,peer,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236047,57.73560630928005,baseline,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236047,43.900623524639705,peer,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236047,0.1846349661889516,relative_legacy,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,236047,55.88316884330309,spot_peer,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,237476,-0.0124433410143044,relative_legacy,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,237476,34.35019768111477,spot_peer,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,237476,24.901976158086413,baseline,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,237476,19.40718637059213,peer,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,239758,0.325603526073241,relative_legacy,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,239758,70.35564966104272,baseline,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,239758,52.93086021703965,peer,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,239758,68.09770587433545,spot_peer,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,239759,-196.4830988781629,peer,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,239759,-273.57152911480694,baseline,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,239759,-3.109540714433507,relative_legacy,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,239759,-231.64455050008155,spot_peer,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,239759,-332.1928094887361,spot_baseline,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,240416,53.94593031282451,peer,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,240416,68.09770587433545,spot_peer,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,240416,71.68051634933668,baseline,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,240416,0.32824774959285,relative_legacy,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,241715,-1.3844827506044228,peer,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,241715,-35.845397091247634,spot_baseline,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,241715,-18.624311450173145,spot_peer,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,241715,-0.0448507989705571,relative_legacy,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,241715,-2.6646533534498493,baseline,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,246118,36.009383583855595,baseline,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,246118,58.496250072115615,spot_baseline,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,246118,49.19028516977718,spot_peer,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,246118,0.1158860805752913,relative_legacy,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,246118,27.519604067227142,peer,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,247214,-97.03402554284264,baseline,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,247214,-232.1928094887363,spot_baseline,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,247214,-159.76262066423544,spot_peer,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,247214,-1.1185880214630253,relative_legacy,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,247214,-67.67381308197781,peer,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,250015,22.680397682281388,peer,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,250015,34.35019768111477,spot_peer,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,250015,-0.048163492955733,relative_legacy,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,250015,29.41397424507929,baseline,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,264059,-100.0,spot_baseline,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,264059,-64.73987809950826,spot_peer,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,264059,-13.64375788941636,peer,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,264059,-20.912410974502563,baseline,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,264059,-0.2783467143126333,relative_legacy,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,264225,0.0888958667054657,relative_legacy,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,264225,67.80719051126377,spot_baseline,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,264225,55.88316884330309,spot_peer,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,264225,14.481310802746853,peer,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,264225,17.873630166045185,baseline,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,264332,-64.73987809950826,spot_peer,krm-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,264332,-0.427709467616185,relative_legacy,krm-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,264332,-20.918660267954404,peer,krm-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,264332,-100.0,spot_baseline,krm-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,264332,-31.747484889295368,baseline,krm-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,265212,-33.523509960845104,baseline,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,265212,-51.45731728297583,spot_baseline,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,265212,-29.84646096841952,spot_peer,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,265212,-0.5930304398143055,relative_legacy,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35141,"Will the reported rate of incidents of unruly passengers per 10,000 flights reported by the FAA exceed the long-term average for any week before April 1, 2025?",2025-03-02 04:05:18.851202+00,265212,-22.772873034037566,peer,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35691 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,189869,-4.207248874832664,peer,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,189869,-1.1930252366001148,spot_peer,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,189869,-0.0967352927692089,relative_legacy,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,189869,61.88006790807476,baseline,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,191026,0.0526984016966214,relative_legacy,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,191026,84.1570637395517,spot_baseline,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,191026,6.647916876190594,peer,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,191026,10.544588598768067,spot_peer,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,191026,67.89955604111184,baseline,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,191935,19.825847891628516,spot_peer,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,191935,0.020737883943928,relative_legacy,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,191935,97.08536543404836,spot_baseline,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,191935,9.8059407234219,baseline,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,191935,2.0024757423296187,peer,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,191975,68.40706457340808,spot_baseline,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,191975,26.88878226049465,baseline,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,191975,-0.3190294675540439,peer,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,191975,-0.0206421054322417,relative_legacy,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,191975,-0.7623741854885231,spot_peer,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,192418,79.46134746100446,baseline,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,192418,83.99595874895317,spot_baseline,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,192418,10.428930933403144,spot_peer,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,192418,0.0495421659612276,relative_legacy,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,192418,6.609519914635503,peer,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,192924,12.15037934713591,spot_peer,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,192924,86.39384504239716,spot_baseline,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,192924,74.43822881133572,baseline,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,192924,8.179495769574041,peer,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,192924,0.0716621047827474,relative_legacy,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,204737,70.59717987209007,baseline,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,204737,93.35726382610238,spot_baseline,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,204737,17.149434661868757,spot_peer,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,204737,0.1226342780947354,relative_legacy,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,204737,11.63038577558363,peer,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,220077,12.86303307150017,peer,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,220077,16.605751373661015,spot_peer,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,220077,0.1309370451161929,relative_legacy,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,220077,90.54092476514133,baseline,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,222631,26.303440583379377,spot_baseline,Grizeu_Bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,222631,-0.34541689233028,relative_legacy,Grizeu_Bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,222631,-22.261804626827505,peer,Grizeu_Bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,222631,18.13652695630995,baseline,Grizeu_Bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,222631,-30.9886684548203,spot_peer,Grizeu_Bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,224797,84.79969065549501,spot_baseline,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,224797,7.019884262608928,peer,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,224797,0.0579221341138183,relative_legacy,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,224797,11.00593202781102,spot_peer,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,224797,68.21114949579872,baseline,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236037,11.90823873322496,peer,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236037,16.605751373661015,spot_peer,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236037,0.1229236813603592,relative_legacy,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236037,78.3285742873416,baseline,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236038,-1.1930252366001148,spot_peer,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236038,58.10852677590965,baseline,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236038,-3.418113358360147,peer,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236038,-0.0876053239972677,relative_legacy,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236040,2.0365144558324246,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236040,-0.0128125067329217,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236040,5.085953451530622,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236040,65.4638010562131,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236041,-0.0128125067329217,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236041,2.038510487210717,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236041,65.39420082885023,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236041,5.085953451530622,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236043,7.128288202969938,peer,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236043,71.90235759023757,baseline,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236043,0.0571171469505549,relative_legacy,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236043,11.00593202781102,spot_peer,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236045,64.54615348624931,baseline,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236045,11.00593202781102,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236045,0.0579268443230155,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236045,6.957457601312648,peer,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236047,-1.1930252366001148,spot_peer,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236047,57.47384821443442,baseline,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236047,-3.3323860004814807,peer,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,236047,-0.0869466217806487,relative_legacy,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,237476,2.7932232820217893,peer,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,237476,0.0018945128221561,relative_legacy,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,237476,5.085953451530622,spot_peer,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,237476,52.01249448504152,baseline,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,239758,16.605751373661015,spot_peer,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,239758,11.730104462137737,peer,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,239758,76.53524629037395,baseline,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,239758,0.1208171846385447,relative_legacy,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,239759,11.76329811551576,peer,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,239759,76.91961769004678,baseline,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,239759,0.1210679427565923,relative_legacy,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,239759,16.605751373661015,spot_peer,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,240414,-0.0373872832657778,relative_legacy,minefrac1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,240414,-1.1930252366001148,spot_peer,minefrac1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,240414,67.80719051126377,spot_baseline,minefrac1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,240414,-0.8079595207858847,peer,minefrac1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,240414,37.80697315471207,baseline,minefrac1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,240416,77.58802998286369,baseline,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,240416,11.827640490266043,peer,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,240416,0.1216263718247155,relative_legacy,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,240416,16.605751373661015,spot_peer,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,241715,11.103131238874395,spot_baseline,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,241715,-0.1461498598993683,relative_legacy,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,241715,-9.995732536716153,peer,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,241715,-41.90100757652373,spot_peer,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,241715,2.6723522260503096,baseline,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,246118,-81.45410752467177,baseline,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,246118,-1.279323131183152,relative_legacy,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,246118,-89.84791022979151,peer,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,246118,-132.19280948873626,spot_baseline,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,246118,-144.7735126383031,spot_peer,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,247214,-0.0256305404147213,relative_legacy,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,247214,-1.1930252366001148,spot_peer,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,247214,67.80719051126377,spot_baseline,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,247214,28.692340118588994,baseline,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,247214,-0.5449984452524287,peer,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,250015,5.085953451530622,spot_peer,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,250015,-0.0054614194812906,relative_legacy,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,250015,2.383115977409509,peer,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,250015,58.83083134003152,baseline,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,264059,67.80719051126377,spot_baseline,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,264059,-1.1930252366001148,spot_peer,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,264059,-0.0094821675360699,relative_legacy,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,264059,-0.1729637599156376,peer,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,264059,14.17497029611608,baseline,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,264332,2.6505244835216546,peer,krm-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,264332,26.17766419616473,baseline,krm-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,264332,8.088234056260337,spot_peer,krm-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,264332,80.73549220576041,spot_baseline,krm-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,264332,0.0249387769662854,relative_legacy,krm-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,265212,84.79969065549501,spot_baseline,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,265212,55.137204864408616,baseline,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,265212,6.738519116671818,peer,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,265212,0.0577337410593275,relative_legacy,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35142,"Before April 1, 2025, will Rippling announce that it is planning an IPO?",2025-03-02 04:05:18.881714+00,265212,11.00593202781102,spot_peer,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35692 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,189869,44.01552737562008,baseline,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,189869,43.71671505865894,spot_peer,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,189869,0.5064693169196777,relative_legacy,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,189869,37.89592939768109,peer,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,191026,0.735624999494976,relative_legacy,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,191026,64.21870122312058,baseline,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,191026,79.57669477823923,spot_baseline,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,191026,66.08829853882129,spot_peer,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,191026,52.76205322848026,peer,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,191935,27.68504435662408,spot_peer,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,191935,17.673939927661777,baseline,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,191935,26.303440583379377,spot_baseline,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,191935,0.3233536478564335,relative_legacy,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,191935,19.0909299701924,peer,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,191975,64.15460290875237,spot_baseline,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,191975,21.16961580925386,baseline,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,191975,18.08007310244886,peer,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,191975,0.2476457941055367,relative_legacy,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,191975,54.97092786124316,spot_peer,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,192418,-28.370591719575373,spot_peer,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,192418,-0.422475934649236,relative_legacy,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,192418,-32.26210790899102,peer,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,192418,-48.12783534723791,baseline,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,192924,22.762470253570235,peer,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,192924,26.303440583379377,spot_baseline,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,192924,27.68504435662408,spot_peer,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,192924,22.49168406727748,baseline,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,192924,0.3163048377215874,relative_legacy,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,204737,-132.6618524501879,baseline,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,204737,-1.2120625751379543,relative_legacy,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,204737,-116.48956919984452,spot_peer,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,204737,-173.6965594166206,spot_baseline,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,204737,-89.51814454946802,peer,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,220077,74.42211951536676,baseline,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,220077,0.7748041882689869,relative_legacy,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,220077,59.37190206133678,peer,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,220077,63.90894056051852,spot_peer,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,224797,34.56040625506927,peer,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,224797,39.11343589092643,baseline,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,224797,48.54268271702416,spot_baseline,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,224797,43.71671505865894,spot_peer,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,224797,0.4853037772869883,relative_legacy,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236037,41.878948764110326,peer,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236037,0.5785199419185263,relative_legacy,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236037,50.89197369330189,spot_peer,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236037,58.496250072115615,spot_baseline,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236037,49.0807171417609,baseline,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236038,-0.183581251157197,relative_legacy,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236038,-27.514385951379708,baseline,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236038,-32.19280948873623,spot_baseline,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236038,-14.48332688662501,spot_peer,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236038,-13.625542786811048,peer,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236040,-73.69655941662059,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236040,-39.28628175544205,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236040,-62.82677257345214,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236040,-0.5361697990569254,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236040,-44.40226242161022,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236041,-132.19280948873626,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236041,-112.49321527537246,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236041,-75.40327661898723,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236041,-1.0332787116654747,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236041,-86.57063366485934,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236043,-32.19280948873623,spot_baseline,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236043,-27.368077116913703,baseline,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236043,-14.48332688662501,spot_peer,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236043,-0.1823129920992422,relative_legacy,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236043,-13.491980897683549,peer,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236045,43.71671505865894,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236045,33.678847207314064,baseline,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236045,48.54268271702416,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236045,0.4751307135406606,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236045,30.765491482626715,peer,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236047,-0.1824147611832436,relative_legacy,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236047,-14.48332688662501,spot_peer,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236047,-13.437467650346871,peer,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,236047,-27.152882423508824,baseline,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,237476,-63.36370432818151,spot_peer,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,237476,-100.0,spot_baseline,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,237476,-70.05478672186534,baseline,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,237476,-44.20150924549499,peer,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,237476,-0.5600265567239057,relative_legacy,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,239758,51.74850129832843,peer,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,239758,0.7166138545444002,relative_legacy,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,239758,63.90894056051852,spot_peer,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,239758,62.84487878040344,baseline,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,239759,0.7938522026956281,relative_legacy,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,239759,70.76200267120096,baseline,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,239759,57.56266295719668,peer,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,239759,69.85341559987317,spot_peer,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,240416,28.960596895470037,peer,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,240416,37.85116232537298,spot_baseline,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,240416,36.00948595467187,spot_peer,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,240416,31.41496714119141,baseline,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,240416,0.3989158009761661,relative_legacy,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,246118,-173.6965594166206,spot_baseline,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,246118,-106.79733626567192,baseline,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,246118,-71.1946159835133,peer,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,246118,-0.9281435973164888,relative_legacy,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,246118,-116.48956919984452,spot_peer,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,247214,-18.099274908623663,peer,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,247214,-51.45731728297583,spot_baseline,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,247214,-28.370591719575373,spot_peer,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,247214,-33.71365207921734,baseline,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,247214,-0.1861169725619951,relative_legacy,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,250015,-44.40226242161022,spot_peer,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,250015,-54.875661744465816,baseline,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,250015,-33.14548312850736,peer,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,250015,-0.4249375038964617,relative_legacy,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,250015,-73.69655941662059,spot_baseline,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,264059,-14.48332688662501,spot_peer,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,264059,0.0,relative_legacy,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,264059,-32.19280948873623,spot_baseline,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,264059,-3.039099752862936,peer,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,264059,-6.755157853374976,baseline,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,264225,32.13755012077162,peer,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,264225,37.40700462641136,baseline,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,264225,57.6039798916093,spot_peer,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,264225,67.80719051126377,spot_baseline,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,264225,0.4813876307462922,relative_legacy,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,265212,-65.21125433180067,baseline,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,265212,-40.87273060055057,peer,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,265212,-100.0,spot_baseline,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,265212,-63.36370432818151,spot_peer,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35143,"Before April 1, 2025, will Chime announce that it is planning an IPO?",2025-03-02 04:05:18.912679+00,265212,-0.5002869308299892,relative_legacy,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35693 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,189869,-6.184291406115234,peer,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,189869,60.72712518445093,baseline,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,189869,-0.0929849162727536,relative_legacy,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,189869,-5.691800628109637,spot_peer,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,191026,81.55754288625727,spot_baseline,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,191026,65.83356680720865,baseline,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,191026,4.205794966954861,spot_peer,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,191026,0.0297518378401561,relative_legacy,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,191026,2.800267651543401,peer,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,191935,69.19902774959388,baseline,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,191935,87.02660703959828,spot_baseline,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,191935,8.142463918921193,spot_peer,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,191935,0.0732695898526863,relative_legacy,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,191935,5.933217646621023,peer,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,191975,-5.206146178092023,peer,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,191975,16.177116118516366,baseline,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,191975,52.27253685932172,spot_baseline,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,191975,-16.873748214844642,spot_peer,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,191975,-0.075143770225218,relative_legacy,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,192418,6.539514613130187,spot_peer,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,192418,78.4084007242583,baseline,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,192418,84.79969065549501,spot_baseline,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,192418,4.94488247485693,peer,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,192418,0.0580493049644986,relative_legacy,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,192924,72.79824679019667,baseline,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,192924,6.539514613130187,spot_peer,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,192924,4.983690880909708,peer,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,192924,0.0591974224548943,relative_legacy,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,204737,0.042385403747084,relative_legacy,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,204737,3.5801475985272373,peer,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,204737,64.0871824795542,baseline,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,204737,83.02553241676829,spot_baseline,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,204737,5.262463648203387,spot_peer,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,220077,12.154187591197267,spot_peer,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,220077,0.1301728253596554,relative_legacy,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,220077,10.439796464804736,peer,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,220077,89.54765637459785,baseline,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,224797,0.6038331759047523,spot_peer,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,224797,61.75737176320944,baseline,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,224797,-0.1251075806464368,peer,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,224797,-0.0105864805788718,relative_legacy,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,224797,76.55347463629771,spot_baseline,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236037,12.154187591197267,spot_peer,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236037,9.588517419036114,peer,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236037,77.48919097103531,baseline,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236037,0.1228451511183541,relative_legacy,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236038,41.36984665032183,baseline,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236038,-19.55852216988699,spot_peer,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236038,-0.2497667089957347,relative_legacy,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236038,-17.500304657210066,peer,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236040,-0.1420098610516681,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236040,-0.011343850858352,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236040,0.6038331759047523,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236040,64.99909298808451,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236041,64.85738026398218,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236041,-0.0113353791332126,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236041,0.6038331759047523,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236041,-0.1429508476971164,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236043,-5.691800628109637,spot_peer,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236043,57.41684947603999,baseline,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236043,-0.0853877174616537,relative_legacy,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236043,-5.523414045685825,peer,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236045,0.0547978171326199,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236045,6.539514613130187,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236045,4.354558565601828,peer,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236045,60.2860123667921,baseline,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236047,56.8778797219587,baseline,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236047,-5.481692070183323,peer,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236047,-5.691800628109637,spot_peer,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,236047,-0.0847314008013437,relative_legacy,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,237476,-0.004503687461128,relative_legacy,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,237476,0.6038331759047523,spot_peer,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,237476,0.0931753141895472,peer,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,237476,55.46184809039077,baseline,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,239758,75.62824706947761,baseline,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,239758,9.35780912589098,peer,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,239758,0.1196304763587203,relative_legacy,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,239758,12.154187591197267,spot_peer,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,239759,77.58158486723522,baseline,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,239759,9.601435305992034,peer,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,239759,0.1230064424801899,relative_legacy,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,239759,12.154187591197267,spot_peer,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,240416,12.154187591197267,spot_peer,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,240416,0.1188693262119317,relative_legacy,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,240416,9.25665293727492,peer,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,240416,74.73932080222123,baseline,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,241715,0.0493920622499712,relative_legacy,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,241715,23.355113566087457,baseline,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,241715,97.08536543404836,spot_baseline,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,241715,15.38282547923897,spot_peer,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,241715,3.694640221446868,peer,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,246118,67.80719051126377,spot_baseline,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,246118,-5.691800628109637,spot_peer,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,246118,41.64942770642152,baseline,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,246118,-0.053722580985701,relative_legacy,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,246118,-3.6154296085753215,peer,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,247214,31.879158249859994,baseline,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,247214,48.54268271702416,spot_baseline,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,247214,-19.55852216988699,spot_peer,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,247214,-0.1842765845050817,relative_legacy,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,247214,-13.0601189645023,peer,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,250015,-0.1362910245828464,relative_legacy,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,250015,-12.393877823165107,spot_peer,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,250015,-9.42392212725353,peer,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,250015,42.622195424649725,baseline,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,264059,14.277781909654326,baseline,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,264059,-0.0184165626558974,relative_legacy,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,264059,-5.691800628109637,spot_peer,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,264059,-1.1984907121005608,peer,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,264059,67.80719051126377,spot_baseline,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,264225,-0.1599437225829637,relative_legacy,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,264225,48.54268271702416,spot_baseline,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,264225,-19.55852216988699,spot_peer,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,264225,-11.256232773393446,peer,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,264225,27.718235886727125,baseline,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,265212,76.55347463629771,spot_baseline,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,265212,49.780524176661984,baseline,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,265212,0.2313192258116421,peer,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,265212,0.6038331759047523,spot_peer,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35144,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:05:19.104712+00,265212,0.0,relative_legacy,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35694 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,189869,52.40772709293746,baseline,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,189869,-15.31973561419047,peer,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,189869,-0.1932255702740571,relative_legacy,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,189869,-16.327072229333062,spot_peer,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,191026,-0.007871098771252,relative_legacy,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,191026,63.171496512930815,baseline,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,191026,-1.8476807770255896,peer,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,191026,-2.0937172267445328,spot_peer,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,191026,78.24085649273731,spot_baseline,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,191935,7.306205981826661,peer,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,191935,95.60566524124027,spot_baseline,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,191935,10.424105727242477,spot_peer,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,191935,0.1208578682346394,relative_legacy,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,191935,67.30571223838162,baseline,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,191975,-2.4976012294898893,spot_peer,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,191975,77.68058586979973,spot_baseline,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,191975,28.19262290818032,baseline,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,191975,-0.8909997607803197,peer,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,191975,0.0,relative_legacy,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,192418,0.1462382314276457,relative_legacy,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,192418,9.936606819692717,peer,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,192418,88.12639526130455,baseline,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,192418,10.95881127528601,spot_peer,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,192418,96.3474123974886,spot_baseline,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,192924,73.77089127031888,baseline,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,192924,0.059321588501936,relative_legacy,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,192924,3.088176320760609,peer,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,192924,86.39384504239716,spot_baseline,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,192924,3.7835526406430713,spot_peer,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,204737,67.11912611913428,baseline,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,204737,87.49936389329673,spot_baseline,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,204737,4.580491406182261,spot_peer,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,204737,0.0657934735608617,relative_legacy,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,204737,3.4265119538732427,peer,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,220077,89.05756382383163,baseline,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,220077,8.25736068934691,spot_peer,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,220077,0.1119611229942477,relative_legacy,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,220077,7.3434702524620015,peer,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,224797,-0.0215032682642947,relative_legacy,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,224797,-2.8361216414163737,peer,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,224797,61.81679969067753,baseline,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,224797,76.55347463629771,spot_baseline,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,224797,-3.310105362116436,spot_peer,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236037,0.0450984220095385,relative_legacy,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236037,70.5642120781457,baseline,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236037,2.634369677238225,spot_peer,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236037,2.0462716756654,peer,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236038,57.61077389917962,baseline,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236038,-8.416644760588923,peer,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236038,-0.0986019991206352,relative_legacy,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236038,-9.615066031025652,spot_peer,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236040,84.79969065549501,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236040,0.0452668254936201,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236040,2.0795499175105454,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236040,71.79154795798118,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236040,2.634369677238225,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236041,-2.9958686120987346,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236041,-3.310105362116436,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236041,-0.0244753275335976,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236041,64.69024335070925,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236043,2.634369677238225,spot_peer,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236043,2.0673720638578037,peer,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236043,71.50491976388098,baseline,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236043,0.0450847848954865,relative_legacy,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236045,62.73619505695215,baseline,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236045,8.25736068934691,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236045,0.0976229629919987,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236045,5.569772577192095,peer,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236047,-8.230143651367166,peer,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236047,56.466141749044425,baseline,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236047,-0.0964331190924867,relative_legacy,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236047,-9.615066031025652,spot_peer,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,237476,-7.331825341032117,peer,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,237476,67.80719051126377,spot_baseline,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,237476,-9.615066031025652,spot_peer,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,237476,-0.0824937373397356,relative_legacy,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,237476,50.90917221669728,baseline,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,239758,10.424105727242477,spot_peer,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,239758,77.83108292293393,baseline,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,239758,8.380580173335188,peer,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,239758,0.1330521004002325,relative_legacy,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,239758,95.60566524124027,spot_baseline,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,239759,8.6707346583662,peer,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,239759,0.1360151350981052,relative_legacy,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,239759,10.424105727242477,spot_peer,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,239759,95.60566524124027,spot_baseline,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,239759,80.45269401989292,baseline,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,240416,8.25736068934691,spot_peer,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,240416,0.1086065633707024,relative_legacy,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,240416,6.608316230726975,peer,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,240416,75.42422847678817,baseline,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,246118,1.6260326799810831,peer,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,246118,0.0435221870083334,relative_legacy,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,246118,2.634369677238225,spot_peer,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,246118,52.19484484129349,baseline,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,246118,84.79969065549501,spot_baseline,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,247214,-0.0072338903219913,relative_legacy,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,247214,-2.095580004967687,peer,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,247214,48.29116741746342,baseline,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,247214,76.55347463629771,spot_baseline,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,247214,-3.310105362116436,spot_peer,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,250015,-9.615066031025652,spot_peer,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,250015,48.04334240095228,baseline,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,250015,-0.0753471019324681,relative_legacy,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,250015,-6.891970602382406,peer,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,250015,67.80719051126377,spot_baseline,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,264059,17.869552848086148,baseline,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,264059,0.5551318383937247,peer,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,264059,0.0150018494425723,relative_legacy,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,264059,2.634369677238225,spot_peer,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,264225,-5.543592775110885,peer,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,264225,67.80719051126377,spot_baseline,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,264225,-9.615066031025652,spot_peer,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,264225,-0.0545907812982463,relative_legacy,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,264225,39.15118244591205,baseline,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,265212,-0.0661349733851431,relative_legacy,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,265212,44.261542650984296,baseline,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,265212,-9.615066031025652,spot_peer,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,265212,67.80719051126377,spot_baseline,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35145,"Before April 1, 2025, will Anthropic announce on the news section of its website that it is planning an IPO?",2025-03-02 04:05:19.135723+00,265212,-6.304569602683598,peer,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35695 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,189869,-7.709520640391282,peer,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,189869,-0.1136770014683241,relative_legacy,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,189869,-8.255438581566736,spot_peer,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,189869,61.89547451400093,baseline,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,191026,3.29566100189467,peer,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,191026,4.455195221755195,spot_peer,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,191026,85.43946777531006,spot_baseline,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,191026,0.0341241035191182,relative_legacy,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,191026,68.99995331445116,baseline,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,191935,-19.93767381885437,spot_peer,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,191935,30.303913119029144,baseline,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,191935,-11.714174120312848,peer,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,191935,-0.1659982825676879,relative_legacy,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,191935,51.60151470036649,spot_baseline,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,191975,-1.349845492353296,peer,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,191975,-0.0181275354404017,relative_legacy,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,191975,73.98481026993274,spot_baseline,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,191975,-3.802158874542204,spot_peer,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,191975,26.71355304554576,baseline,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,192418,-0.1972624891107923,relative_legacy,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,192418,52.94074818952711,baseline,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,192418,-13.8606748763638,peer,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,192418,-14.96744477987413,spot_peer,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,192924,-1.950477912657517,spot_peer,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,192924,-1.9648570137497212,peer,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,192924,-0.0383856496701336,relative_legacy,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,192924,65.30397509680766,baseline,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,204737,62.14360554340451,baseline,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,204737,80.73549220576041,spot_baseline,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,204737,1.0642259221607355,spot_peer,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,204737,-0.0023189413066839,relative_legacy,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,204737,0.5683155182500117,peer,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,220077,73.17203916498853,baseline,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,220077,-1.832855197642772,peer,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,220077,-0.0341747644748131,relative_legacy,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,220077,-1.950477912657517,spot_peer,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,224797,7.495903299592109,peer,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,224797,9.61698813880582,spot_peer,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,224797,74.86768822629134,baseline,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,224797,0.0920229015000883,relative_legacy,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,224797,92.5999418556223,spot_baseline,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236037,-0.037936299045858,relative_legacy,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236037,63.29926422979321,baseline,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236037,76.55347463629771,spot_baseline,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236037,-1.950477912657517,spot_peer,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236037,-1.9499188487086896,peer,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236038,3.10029589356975,peer,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236038,71.87093396777472,baseline,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236038,0.0314852779763711,relative_legacy,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236038,3.9939971266971552,spot_peer,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236038,84.79969065549501,spot_baseline,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236040,-1.950477912657517,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236040,-0.0382402877107132,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236040,-1.9803060583638008,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236040,64.56644741365766,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236041,64.45249398262212,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236041,-1.950477912657517,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236041,-0.0382257575944533,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236041,-1.9778435123565907,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236043,7.815344386088935,peer,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236043,9.61698813880582,spot_peer,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236043,0.0965871945043653,relative_legacy,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236043,77.80108482508935,baseline,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236045,60.1531605079575,baseline,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236045,9.61698813880582,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236045,0.0796340146673295,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236045,6.202596198921633,peer,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236047,84.79969065549501,spot_baseline,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236047,70.4198358878225,baseline,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236047,3.010242487466375,peer,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236047,0.0302264796969259,relative_legacy,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,236047,3.9939971266971552,spot_peer,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,237476,4.5928525212802445,peer,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,237476,87.97057662822883,spot_baseline,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,237476,6.279803425449774,spot_peer,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,237476,0.0533096647404636,relative_legacy,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,237476,67.54284992676594,baseline,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,239758,9.61698813880582,spot_peer,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,239758,0.0922239421841523,relative_legacy,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,239758,7.52008265337191,peer,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,239758,75.11650923940476,baseline,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,239759,78.27349053380571,baseline,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,239759,0.097224731741713,relative_legacy,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,239759,7.874441775884548,peer,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,239759,9.61698813880582,spot_peer,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,240416,68.39198057174646,baseline,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,240416,0.0289274326309754,relative_legacy,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,240416,3.9939971266971552,spot_peer,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,240416,2.9158394047998555,peer,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,246118,0.0289639478428297,relative_legacy,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,246118,84.79969065549501,spot_baseline,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,246118,52.05228508817299,baseline,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,246118,2.438050121457353,peer,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,246118,3.9939971266971552,spot_peer,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,247214,0.070699794013764,relative_legacy,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,247214,87.97057662822883,spot_baseline,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,247214,80.80750605881704,baseline,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,247214,5.988972399194033,peer,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,247214,6.279803425449774,spot_peer,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,250015,52.60688116675877,spot_baseline,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,250015,36.31478081277871,baseline,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,250015,-0.1932351466967579,relative_legacy,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,250015,-13.398423444043974,peer,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,250015,-19.21293220998068,spot_peer,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,264059,0.8454888180736109,peer,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,264059,0.0086034972852479,relative_legacy,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,264059,17.95123730712657,baseline,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,264059,3.9939971266971552,spot_peer,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,264225,67.80719051126377,spot_baseline,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,264225,37.90097714555316,baseline,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,264225,-8.255438581566736,spot_peer,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,264225,-0.0660160026250094,relative_legacy,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,264225,-4.596345365924258,peer,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,265212,-1.950477912657517,spot_peer,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,265212,-0.0245863768752589,relative_legacy,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,265212,-1.329321909633839,peer,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,265212,49.71326746144052,baseline,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35146,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:05:19.167587+00,265212,76.55347463629771,spot_baseline,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35696 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,189869,-0.1099251544610313,relative_legacy,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,189869,28.695699896664586,baseline,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,189869,-8.054637188175379,peer,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,189869,-13.260959263899682,spot_peer,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,191026,47.56251090784854,baseline,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,191026,-5.796793752812676,spot_peer,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,191026,-0.0848054828722736,relative_legacy,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,191026,-5.370298865309144,peer,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,191026,58.88045670155503,spot_baseline,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,191935,-0.0836925608222825,relative_legacy,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,191935,33.78206486222026,baseline,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,191935,-6.095783502150836,peer,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,191935,53.93656342810455,spot_baseline,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,191935,-9.36642467310589,spot_peer,pgodzinai,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,191975,1.3407006676827498,spot_peer,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,191975,0.0015827292708717,relative_legacy,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,191975,11.353753683545063,baseline,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,191975,0.2213598353218767,peer,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,191975,68.76579539418357,spot_baseline,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,192418,0.1731819719808285,relative_legacy,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,192418,16.333233559422915,spot_peer,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,192418,80.083797715214,baseline,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,192418,89.53026213333065,spot_baseline,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,192418,16.048018390225625,peer,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,192924,48.54268271702416,spot_baseline,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,192924,41.03181113338712,baseline,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,192924,-11.893579294201771,peer,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,192924,-0.1790887377518494,relative_legacy,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,192924,-13.260959263899682,spot_peer,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,204737,3.4112871413012757,peer,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,204737,73.98481026993274,spot_baseline,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,204737,5.108977174376444,spot_peer,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,204737,0.0379399942051197,relative_legacy,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,204737,57.67435712627116,baseline,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,220077,-85.46379057222731,spot_peer,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,220077,-1.0879358357073243,relative_legacy,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,220077,-78.21677046392642,peer,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,220077,-48.90792410223616,baseline,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,224797,15.207096465233803,spot_peer,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,224797,87.97057662822883,spot_baseline,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,224797,0.1503316541221155,relative_legacy,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,224797,11.743455211026411,peer,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,224797,71.27040962673351,baseline,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236037,6.963625573700052,spot_peer,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236037,76.55347463629771,spot_baseline,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236037,63.02880966422917,baseline,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236037,5.109073558739077,peer,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236037,0.0578346435416463,relative_legacy,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236038,76.55347463629771,spot_baseline,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236038,64.76856749743311,baseline,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236038,6.963625573700052,spot_peer,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236038,0.0576318527027558,relative_legacy,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236038,5.385638835876732,peer,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236040,0.0576788777563806,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236040,5.297184502581108,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236040,6.963625573700052,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236040,64.38996534972298,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236041,64.1886944457551,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236041,0.0576788777563806,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236041,6.963625573700052,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236041,5.257761778484917,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236043,18.549629231015103,spot_peer,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236043,0.1918639540614733,relative_legacy,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236043,15.001795625401966,peer,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236043,77.43693521680939,baseline,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236045,12.133544084945164,peer,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236045,56.76503804259923,baseline,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236045,95.60566524124027,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236045,20.7198466167278,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236045,0.1688418043601492,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236047,76.51013016334204,baseline,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236047,14.777693687551473,peer,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236047,0.1902549884967641,relative_legacy,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236047,18.549629231015103,spot_peer,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,236047,92.5999418556223,spot_baseline,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,237476,0.1231548920046562,relative_legacy,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,237476,12.917627015361372,spot_peer,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,237476,84.79969065549501,spot_baseline,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,237476,67.03900030360109,baseline,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,237476,9.650329249367877,peer,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,239758,6.963625573700052,spot_peer,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,239758,61.83389260845421,baseline,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,239758,5.006029809344593,peer,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,239758,0.0579534753762378,relative_legacy,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,239759,0.1274096033075943,relative_legacy,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,239759,12.917627015361372,spot_peer,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,239759,71.98415509779386,baseline,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,239759,10.56247717166111,peer,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,240416,6.963625573700052,spot_peer,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,240416,0.0579876926694471,relative_legacy,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,240416,4.958906056316562,peer,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,240416,61.16071810541541,baseline,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,246118,-0.1149570608342645,relative_legacy,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,246118,-8.40038073105027,peer,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,246118,29.9231072233206,baseline,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,246118,-13.260959263899682,spot_peer,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,247214,72.59924239550261,baseline,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,247214,10.342239209052574,peer,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,247214,0.0998781056819147,relative_legacy,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,247214,10.576704530771943,spot_peer,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,247214,81.55754288625727,spot_baseline,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,250015,-0.1994811141494194,relative_legacy,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,250015,25.192193101240115,baseline,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,250015,-14.2736681024403,peer,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,250015,-20.98053969657904,spot_peer,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,264059,-0.0363882105513111,relative_legacy,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,264059,-2.7756690483842044,peer,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,264059,10.165869940372923,baseline,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,264059,-13.260959263899682,spot_peer,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,264059,48.54268271702416,spot_baseline,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,265212,67.80719051126377,spot_baseline,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,265212,0.1739930484401698,peer,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,265212,0.0008967153852548,relative_legacy,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,265212,44.24234960068111,baseline,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35147,Will a pilot report of UFOs come from a country in South America in March 2025?,2025-03-02 04:05:19.198002+00,265212,0.6485608011547712,spot_peer,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35697 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,189869,27.37470033905324,baseline,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,189869,5.3910409796697465,peer,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,189869,0.0816418780132539,relative_legacy,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,189869,14.383652580313584,spot_peer,VeritasAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,190710,49.93519931785386,baseline,Bot_Pepa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,190710,14.383652580313584,spot_peer,Bot_Pepa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,190710,67.80719051126377,spot_baseline,Bot_Pepa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,190710,0.1510984855343264,relative_legacy,Bot_Pepa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,190710,9.04083096349946,peer,Bot_Pepa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,191026,17.956108431728858,spot_peer,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,191026,58.796358815776905,baseline,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,191026,12.550345749950855,peer,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,191026,72.77026728372381,spot_baseline,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,191026,0.1973200872749757,relative_legacy,manticAI,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,191975,0.0090157774158566,relative_legacy,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,191975,19.74381955886957,baseline,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,191975,49.84210869889265,spot_baseline,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,191975,1.4522665502023453,spot_peer,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,191975,0.1645893766975333,peer,jkraybill_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,192418,7.681575385258108,spot_peer,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,192418,51.6764926259427,baseline,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,192418,4.0075322591040345,peer,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,192418,0.0807833884346003,relative_legacy,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,192924,11.08667237072256,spot_peer,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,192924,63.22682154995129,spot_baseline,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,192924,0.1208040288906432,relative_legacy,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,192924,7.141487443409262,peer,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,192924,53.45394322983952,baseline,acm_bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,204737,23.38880601742773,spot_baseline,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,204737,-0.1919760602987673,relative_legacy,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,204737,18.287770763786405,baseline,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,204737,-17.588997626498397,spot_peer,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,204737,-15.726311276054243,peer,SynapseSeer,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,220077,0.2433537217501089,relative_legacy,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,220077,20.67928638432796,spot_peer,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,220077,72.38190704473638,baseline,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,220077,16.259251039579677,peer,mmBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,224797,9.672144251630868,peer,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,224797,55.072072209363874,baseline,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,224797,14.383652580313584,spot_peer,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,224797,67.80719051126377,spot_baseline,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,224797,0.1573607912791521,relative_legacy,cookics_bot_TEST,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236037,14.383652580313584,spot_peer,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236037,0.1576700595714873,relative_legacy,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236037,9.72441774432075,peer,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236037,67.80719051126377,spot_baseline,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236037,55.53613770982467,baseline,metac-o1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236038,-34.42441661058974,spot_peer,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236038,-31.653126663188527,peer,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236038,0.0024316605709852,baseline,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236038,0.0,spot_baseline,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236038,-0.4122451087115951,relative_legacy,metac-gpt-4o,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236040,4.21294490849805,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236040,7.681575385258108,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236040,48.98824816330362,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236040,0.0808275882491647,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236041,63.97455181515348,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236041,15.1765128076581,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236041,0.2317117159609441,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236041,20.67928638432796,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236043,56.44399351299915,baseline,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236043,14.383652580313584,spot_peer,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236043,0.1583362568545271,relative_legacy,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236043,9.833775043327934,peer,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236045,-7.178896838965654,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236045,22.67288684966394,baseline,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236045,-5.177704249702978,peer,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236045,-0.0445553310859596,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236045,37.85116232537298,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236047,39.77846248387743,baseline,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236047,-1.734644928629399,peer,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236047,-0.0001806569618227,relative_legacy,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236047,0.5169310385362179,spot_peer,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,237476,48.54268271702416,spot_baseline,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,237476,-1.6734157203396962,peer,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,237476,39.370561559860406,baseline,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,237476,0.001115926434151,relative_legacy,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,237476,0.5169310385362179,spot_peer,NextWorldLab,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,239758,46.93663067011544,baseline,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,239758,0.0825153235879137,relative_legacy,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,239758,58.496250072115615,spot_baseline,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,239758,7.681575385258108,spot_peer,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,239758,4.184491438956126,peer,metac-perplexity,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,239759,49.93520990097222,baseline,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,239759,58.496250072115615,spot_baseline,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,239759,7.681575385258108,spot_peer,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,239759,0.0807989004923489,relative_legacy,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,239759,4.195421053964541,peer,metac-exa,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,240416,-7.178896838965654,spot_peer,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,240416,37.85116232537298,spot_baseline,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,240416,30.11460928830173,baseline,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,240416,-7.733156584676807,peer,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,240416,-0.0818199772606203,relative_legacy,metac-o1-preview,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,241715,40.05379295837285,spot_baseline,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,241715,-5.593428579229951,spot_peer,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,241715,2.97315229768922,baseline,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,241715,-0.4151945122795598,peer,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,241715,0.0,relative_legacy,CatrachoCaster,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,246118,67.80719051126377,spot_baseline,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,246118,41.643869813972174,baseline,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,246118,7.934156207225226,peer,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,246118,0.136296479967797,relative_legacy,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,246118,14.383652580313584,spot_peer,laylaps,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,247214,53.716382355354106,baseline,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,247214,58.496250072115615,spot_baseline,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,247214,7.681575385258108,spot_peer,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,247214,0.0775364637600162,relative_legacy,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,247214,3.571061528932501,peer,ajf-bot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,250015,-7.178896838965654,spot_peer,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,250015,24.546786283635036,baseline,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,250015,-5.760428527574787,peer,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,250015,-0.0513744540681169,relative_legacy,metac-deepseek-r1,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,264059,-15.200309344505014,spot_baseline,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,264059,-3.175414859753436,baseline,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,264059,-0.1268608393610012,relative_legacy,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,264059,-9.5151718351966,peer,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,264059,-45.36570092890246,spot_peer,wunderplumb,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,264225,-32.19280948873623,spot_baseline,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,264225,-17.700598776320522,baseline,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,264225,-32.42435648167361,peer,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,264225,-0.4244180928307652,relative_legacy,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,264225,-57.59701617014228,spot_peer,KevinTestBot,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,265212,-11.246492017108483,peer,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,265212,-0.1273789216625638,relative_legacy,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,265212,26.303440583379377,spot_baseline,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,265212,-15.491024174294443,spot_peer,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35148,Will Florida have the most pilot sightings of UFOs of any US state in March 2025?,2025-03-02 04:05:19.228449+00,265212,17.150807333251052,baseline,4Shadower,True,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,2025-03-06 21:00:00+00,35698 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,187708,18.09180836650202,peer,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,187708,32.71626699305158,spot_peer,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,187708,0.1789522016204148,relative_legacy,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,187708,49.2024299356126,baseline,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,187708,87.02660703959828,spot_baseline,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,189869,-2.505747891943351,spot_peer,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,189869,34.53038558374848,baseline,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,189869,-0.2397168803460727,peer,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,189869,-0.1290955070451389,relative_legacy,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,190710,0.1746793137766171,relative_legacy,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,190710,20.321952675672403,peer,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,190710,61.05848155754052,baseline,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,190710,25.214864056173507,spot_peer,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,190710,76.55347463629771,spot_baseline,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,191026,0.1062002290186622,relative_legacy,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,191026,67.80719051126377,spot_baseline,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,191026,55.01513029225074,baseline,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,191026,15.609709200921614,peer,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,191026,18.950319801808583,spot_peer,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,191935,-4.107847167326429,spot_peer,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,191935,-1.1961685419879613,peer,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,191935,8.89618872114948,baseline,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,191935,-0.0432056356331306,relative_legacy,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,191935,35.61438102252753,spot_baseline,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,191975,11.67531960921398,peer,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,191975,79.68745831848913,spot_baseline,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,191975,27.45958640784644,spot_peer,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,191975,0.0984460484452695,relative_legacy,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,191975,35.07124971672492,baseline,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,192418,-32.19280948873623,spot_baseline,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,192418,-46.28683460953444,peer,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,192418,-0.7627445853571662,relative_legacy,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,192418,-52.67488885605244,spot_peer,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,192418,-31.214536988323506,baseline,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,192924,33.63666393747042,baseline,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,192924,37.85116232537298,spot_baseline,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,192924,-1.5437159178961577,peer,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,192924,-0.1456339195946518,relative_legacy,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,192924,-2.505747891943351,spot_peer,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,204737,63.65035707180427,baseline,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,204737,29.15071200519861,spot_peer,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,204737,0.2133665431504836,relative_legacy,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,204737,82.0485342986379,spot_baseline,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,204737,22.75517375676478,peer,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,218666,45.50963516771495,baseline,GreeneiBot2,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,218666,0.0667692853846352,relative_legacy,GreeneiBot2,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,218666,15.669620975968607,spot_peer,GreeneiBot2,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,218666,63.22682154995129,spot_baseline,GreeneiBot2,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,218666,11.176425551688864,peer,GreeneiBot2,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,220077,-60.69344223027428,peer,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,220077,-0.9495355801957914,relative_legacy,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,220077,-51.12105437747178,baseline,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,220077,-66.47313276058645,spot_peer,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,222631,-15.200309344505014,spot_baseline,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,222631,-40.5039751715595,spot_peer,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,222631,-0.5225372193123462,relative_legacy,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,222631,-30.677020696437182,peer,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,222631,-11.452754308709872,baseline,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,224797,-0.2361242854908805,relative_legacy,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,224797,-8.81955829745911,peer,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,224797,22.00180309123149,baseline,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,224797,26.303440583379377,spot_baseline,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,224797,-10.77682768487546,spot_peer,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236037,5.057004918603892,peer,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236037,48.54268271702416,spot_baseline,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236037,5.152075897274564,spot_peer,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236037,-0.0513037673842388,relative_legacy,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236037,42.764112345933626,baseline,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236038,5.152075897274564,spot_peer,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236038,-0.0513091620700296,relative_legacy,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236038,5.067276156313328,peer,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236038,42.79828281726465,baseline,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236040,67.69851621561887,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236040,25.214864056173507,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236040,0.1966137171156121,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236040,23.058392531945465,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236041,-2.505747891943351,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236041,33.410297206151974,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236041,-1.7368831073832478,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236041,-0.1456010594650217,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236043,17.35880171713252,peer,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236043,18.950319801808583,spot_peer,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236043,0.1186149204017836,relative_legacy,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236043,59.80126696599727,baseline,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236045,-40.5039751715595,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236045,-0.5977148029689727,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236045,-34.63676431680419,peer,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236045,-13.02743446736046,baseline,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236045,-15.200309344505014,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236047,42.84887048815642,baseline,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236047,5.08742745448263,peer,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236047,-0.0512959596642489,relative_legacy,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,236047,5.152075897274564,spot_peer,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,237476,-1.9395492274039028,peer,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,237476,25.42991198499921,baseline,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,237476,-0.1104551071044633,relative_legacy,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,237476,-2.505747891943351,spot_peer,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,239758,0.1136968870794585,relative_legacy,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,239758,18.950319801808583,spot_peer,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,239758,67.80719051126377,spot_baseline,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,239758,58.074419334961306,baseline,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,239758,16.713678733715923,peer,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,239759,49.63003710718638,baseline,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,239759,0.0331608393644011,relative_legacy,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,239759,58.496250072115615,spot_baseline,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,239759,12.281339284259555,spot_peer,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,239759,10.808504451281166,peer,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,240414,-0.0386252329758002,relative_legacy,minefrac1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,240414,33.1146141006424,baseline,minefrac1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,240414,5.152075897274564,spot_peer,minefrac1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,240414,48.54268271702416,spot_baseline,minefrac1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,240414,3.296282673907769,peer,minefrac1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,240416,17.28156285550785,peer,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,240416,59.62201429382645,baseline,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,240416,67.80719051126377,spot_baseline,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,240416,18.950319801808583,spot_peer,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,240416,0.1180728655222304,relative_legacy,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,246118,3.577086314166753,peer,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,246118,5.152075897274564,spot_peer,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,246118,34.94708004053911,baseline,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,246118,-0.0389247515219382,relative_legacy,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,247214,-3.274498471671587,baseline,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,247214,-23.361685899870203,spot_baseline,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,247214,-0.1007849973463769,relative_legacy,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,247214,-46.34957815869357,spot_peer,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,247214,-6.496604033363367,peer,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,250015,-15.200309344505014,spot_baseline,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,250015,-40.5039751715595,spot_peer,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,250015,-0.5542706284323896,relative_legacy,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,250015,-12.06114702095065,baseline,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,250015,-32.23534708003452,peer,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,264059,14.90013079423044,baseline,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,264059,0.0139514507778345,relative_legacy,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,264059,12.281339284259555,spot_peer,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,264059,58.496250072115615,spot_baseline,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,264059,2.951779579415179,peer,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,264332,13.060899643747655,peer,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,264332,0.1113294621284962,relative_legacy,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,264332,76.55347463629771,spot_baseline,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,264332,25.214864056173507,spot_peer,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,264332,40.98260763688627,baseline,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,265212,3.552518747940609,peer,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,265212,-0.0386252329758002,relative_legacy,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,265212,5.152075897274564,spot_peer,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,265212,48.54268271702416,spot_baseline,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35149,Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?,2025-03-02 04:05:19.40158+00,265212,34.794158885851346,baseline,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35699 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,187708,12.222313506042848,peer,twsummerbot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,187708,-127.2297327162762,spot_baseline,twsummerbot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,187708,32.17319735182374,spot_peer,twsummerbot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,187708,-47.38930331967001,baseline,twsummerbot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,187708,0.113969474124752,relative_legacy,twsummerbot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,189869,-118.14371230732178,baseline,VeritasAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,189869,22.110428270842984,peer,VeritasAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,189869,0.2987544030498234,relative_legacy,VeritasAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,189869,28.614429070720405,spot_peer,VeritasAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,189869,-132.19280948873623,spot_baseline,VeritasAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,190710,-34.44712378834809,peer,Bot_Pepa,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,190710,-232.19280948873623,spot_baseline,Bot_Pepa,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,190710,-183.5673534854427,baseline,Bot_Pepa,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,190710,-0.5326775243510558,relative_legacy,Bot_Pepa,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,190710,-43.09045167686014,spot_peer,Bot_Pepa,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,191026,-61.378859598571246,baseline,manticAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,191026,55.99966018097675,peer,manticAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,191026,0.7214944782277255,relative_legacy,manticAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,191026,69.17050711651596,spot_peer,manticAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,191026,-75.6330919033137,spot_baseline,manticAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,191975,-0.2710134546105436,relative_legacy,jkraybill_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,191975,-260.23795537985654,spot_baseline,jkraybill_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,191975,-66.285865201602,baseline,jkraybill_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,191975,-15.954653191971126,peer,jkraybill_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,191975,-63.20019009357295,spot_peer,jkraybill_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,192418,56.21538346449275,baseline,InstitutPelFutur,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,192418,151.3775116416535,peer,InstitutPelFutur,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,192418,2.033093347445144,relative_legacy,InstitutPelFutur,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,192418,165.34779182751208,spot_peer,InstitutPelFutur,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,192924,112.37741813626488,peer,acm_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,192924,1.5387940517822711,relative_legacy,acm_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,192924,128.4503838338501,spot_peer,acm_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,192924,6.239039054924389,baseline,acm_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,192924,7.0389327891398015,spot_baseline,acm_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,204737,16.25074815551986,peer,SynapseSeer,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,204737,-115.64111815346249,baseline,SynapseSeer,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,204737,0.1696008393215021,relative_legacy,SynapseSeer,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,204737,20.549442022129508,spot_peer,SynapseSeer,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,204737,-143.4402824145775,spot_baseline,SynapseSeer,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,220077,0.9764304084473092,relative_legacy,mmBot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,220077,86.50571747783309,spot_peer,mmBot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,220077,-50.77288196207283,baseline,mmBot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,220077,-51.45731728297583,spot_baseline,mmBot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,220077,69.54129329573979,peer,mmBot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,222631,-1.236791076726918,relative_legacy,Grizeu_Bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,222631,-246.56928245638383,baseline,Grizeu_Bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,222631,-332.1928094887362,spot_baseline,Grizeu_Bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,222631,-114.79533242444067,spot_peer,Grizeu_Bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,222631,-85.1953387148618,peer,Grizeu_Bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,224797,14.076099090860536,peer,cookics_bot_TEST,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,224797,-123.47427613897928,baseline,cookics_bot_TEST,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,224797,-147.39311883324126,spot_baseline,cookics_bot_TEST,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,224797,17.71506538197975,spot_peer,cookics_bot_TEST,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,224797,0.1568137399532124,relative_legacy,cookics_bot_TEST,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236037,-73.69655941662063,spot_baseline,metac-o1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236037,70.5590954267374,spot_peer,metac-o1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236037,-64.42214701576962,baseline,metac-o1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236037,60.4015792987991,peer,metac-o1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236037,0.8186942051945062,relative_legacy,metac-o1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236038,-0.5668198241736788,relative_legacy,metac-gpt-4o,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236038,-203.97459296393848,baseline,metac-gpt-4o,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236038,-43.09045167686014,spot_peer,metac-gpt-4o,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236038,-232.19280948873623,spot_baseline,metac-gpt-4o,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236038,-40.17583836282362,peer,metac-gpt-4o,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236040,-0.0538012906265166,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236040,-1.1457853208431457,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236040,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236040,-153.05673538179065,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236040,-3.206503924965961,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236041,-0.0530329970948368,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236041,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236041,-1.1457853208431457,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236041,-3.014408294195951,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236041,-152.7214180792729,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236043,-1.4447071688091764,relative_legacy,metac-grok-2-1212,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236043,-114.79533242444067,spot_peer,metac-grok-2-1212,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236043,-332.1928094887362,spot_baseline,metac-grok-2-1212,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236043,-103.7365712990877,peer,metac-grok-2-1212,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236043,-291.68144532400504,baseline,metac-grok-2-1212,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236045,-235.4376830175709,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236045,-79.98785967052211,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236045,-0.976269499035771,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236045,-67.61295074679653,peer,metac-Gemini-Exp-1206,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236045,-283.65012677171205,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236047,-291.9200942052672,baseline,metac-Llama-3.1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236047,-332.1928094887362,spot_baseline,metac-Llama-3.1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236047,-114.79533242444067,spot_peer,metac-Llama-3.1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236047,-1.4458458133458283,relative_legacy,metac-Llama-3.1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,236047,-103.85727238720273,peer,metac-Llama-3.1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,237476,-2.0751006502227174,relative_legacy,NextWorldLab,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,237476,-322.06202533665186,baseline,NextWorldLab,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,237476,-464.38561897747246,spot_baseline,NextWorldLab,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,237476,-145.21562124252625,peer,NextWorldLab,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,237476,-209.58402882521537,spot_peer,NextWorldLab,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,239758,-38.14857182419822,peer,metac-perplexity,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,239758,-43.09045167686014,spot_peer,metac-perplexity,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,239758,-0.5534885739981246,relative_legacy,metac-perplexity,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,239758,-197.7960055948423,baseline,metac-perplexity,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,239758,-232.19280948873623,spot_baseline,metac-perplexity,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,239759,-66.17426733005426,spot_peer,metac-exa,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,239759,-225.44060189605332,baseline,metac-exa,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,239759,-58.063308728343806,peer,metac-exa,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,239759,-0.8286355530293783,relative_legacy,metac-exa,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,239759,-264.38561897747246,spot_baseline,metac-exa,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,240414,-89.34070766336006,baseline,minefrac1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,240414,20.150458811946063,peer,minefrac1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,240414,0.2213917554715151,relative_legacy,minefrac1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,240414,-132.19280948873623,spot_baseline,minefrac1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,240414,28.614429070720405,spot_peer,minefrac1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,240416,22.941201722743795,baseline,metac-o1-preview,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,240416,1.689484473428615,relative_legacy,metac-o1-preview,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,240416,26.303440583379377,spot_baseline,metac-o1-preview,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,240416,123.4678503708718,peer,metac-o1-preview,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,240416,142.26397617431795,spot_peer,metac-o1-preview,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,241715,0.0810109014939189,relative_legacy,CatrachoCaster,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,241715,-17.093388974666595,baseline,CatrachoCaster,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,241715,8.836982063733759,peer,CatrachoCaster,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,241715,51.69824472391451,spot_peer,CatrachoCaster,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,241715,-100.0,spot_baseline,CatrachoCaster,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,246118,0.2384912030876519,relative_legacy,laylaps,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,246118,-132.19280948873623,spot_baseline,laylaps,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,246118,28.614429070720405,spot_peer,laylaps,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,246118,-95.185456121487,baseline,laylaps,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,246118,21.28764717786662,peer,laylaps,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,247214,1.7413418896820152,peer,ajf-bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,247214,-0.0322788906725124,relative_legacy,ajf-bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,247214,3.664452158359176,spot_peer,ajf-bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,247214,-166.988177185102,spot_baseline,ajf-bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,247214,-66.77849139545661,baseline,ajf-bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,250015,0.1349264460955321,relative_legacy,metac-deepseek-r1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,250015,-147.39311883324126,spot_baseline,metac-deepseek-r1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,250015,17.71506538197975,spot_peer,metac-deepseek-r1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,250015,-114.92283632538332,baseline,metac-deepseek-r1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,250015,13.86027178476395,peer,metac-deepseek-r1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,264059,0.0556178827500307,relative_legacy,wunderplumb,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,264059,-132.19280948873623,spot_baseline,wunderplumb,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,264059,28.614429070720405,spot_peer,wunderplumb,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,264059,7.530922902366857,peer,wunderplumb,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,264059,-34.0923634831783,baseline,wunderplumb,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,264332,-205.8893689053569,spot_baseline,krm-bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,264332,-24.22960097403726,spot_peer,krm-bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,264332,-109.79953542258608,baseline,krm-bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,264332,-12.40289512017362,peer,krm-bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,264332,-0.2307879538423765,relative_legacy,krm-bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,265212,-0.0591056788126291,relative_legacy,4Shadower,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,265212,-1.1457853208431457,spot_peer,4Shadower,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,265212,-173.6965594166206,spot_baseline,4Shadower,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,265212,-124.24416949569876,baseline,4Shadower,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35150,Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?,2025-03-02 04:05:19.432579+00,265212,-0.2014689524350107,peer,4Shadower,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35700 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,187708,27.31077556864296,baseline,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,187708,-7.484781687852694,peer,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,187708,-0.1184694167716475,relative_legacy,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,187708,-14.57354773073984,spot_peer,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,187708,54.59683691052925,spot_baseline,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,189869,61.14038024914344,baseline,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,189869,-5.101079434999441,spot_peer,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,189869,-0.15181958345159,relative_legacy,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,189869,-7.042909025570845,peer,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,190710,92.5999418556223,spot_baseline,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,190710,72.36142601895281,baseline,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,190710,8.898529313392538,peer,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,190710,0.0716321218518949,relative_legacy,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,190710,12.67653335051703,spot_peer,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,191026,75.16528635421527,baseline,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,191026,12.67653335051703,spot_peer,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,191026,0.0716321218518949,relative_legacy,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,191026,8.983249287991235,peer,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,191935,98.5500430304885,spot_baseline,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,191935,7.308402444099744,peer,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,191935,0.0947911618610613,relative_legacy,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,191935,43.32201867693476,baseline,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,191935,16.94304630231521,spot_peer,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,191975,-1.8023387985590145,peer,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,191975,27.07783309848601,baseline,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,191975,-4.328112382720023,spot_peer,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,191975,-0.030143054170905,relative_legacy,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,191975,68.88517438658803,spot_baseline,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,192418,0.1269035814186343,relative_legacy,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,192418,13.465781280443128,peer,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,192418,16.94304630231521,spot_peer,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,192418,98.5500430304885,spot_baseline,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,192418,93.95161970021655,baseline,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,192924,12.130630891809052,spot_peer,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,192924,0.0649851426725737,relative_legacy,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,192924,91.8386234446348,spot_baseline,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,192924,81.38405603553073,baseline,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,192924,8.732973937076459,peer,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,204737,87.65660587517209,spot_baseline,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,204737,70.06080189475887,baseline,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,204737,6.09640952627171,peer,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,204737,0.0321217986574564,relative_legacy,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,204737,9.131920180782956,spot_peer,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,220077,9.111562589594588,peer,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,220077,12.67653335051703,spot_peer,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,220077,0.070178934166487,relative_legacy,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,220077,90.87024591121018,baseline,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,222631,0.0716321218518949,relative_legacy,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,222631,92.5999418556223,spot_baseline,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,222631,12.67653335051703,spot_peer,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,222631,8.78934348501333,peer,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,222631,68.43592007627527,baseline,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,224797,-0.0629731480647007,relative_legacy,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,224797,64.216633952067,baseline,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,224797,76.55347463629771,spot_baseline,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,224797,1.1704331667007069,spot_peer,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,224797,-0.6610022552766206,peer,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236037,12.67653335051703,spot_peer,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236037,80.40122277365805,baseline,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236037,0.0716329541717055,relative_legacy,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236037,9.150916329143405,peer,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236038,-0.0686681813674462,relative_legacy,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236038,76.55347463629771,spot_baseline,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236038,66.9527061605608,baseline,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236038,1.1704331667007069,spot_peer,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236038,-0.9916808073892176,peer,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236040,9.18845718144058,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236040,0.0716731151974419,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236040,81.34649812704257,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236040,12.67653335051703,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236041,12.67653335051703,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236041,81.03832506928019,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236041,9.176293144863134,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236041,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236041,0.0716623184218215,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236043,12.67653335051703,spot_peer,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236043,0.0716375623174647,relative_legacy,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236043,9.173396509419216,peer,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236043,80.94554122972544,baseline,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236045,8.972452139078257,peer,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236045,74.84407892630712,baseline,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236045,12.67653335051703,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236045,0.0716239373889883,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236047,7.083372529454016,spot_peer,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236047,84.79969065549501,spot_baseline,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236047,0.0034200691492748,relative_legacy,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236047,74.1907671456964,baseline,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,236047,4.231557425375412,peer,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,237476,0.426052255166486,peer,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,237476,-0.0426514162620588,relative_legacy,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,237476,1.1704331667007069,spot_peer,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,237476,54.52167020175521,baseline,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,239758,9.09293542440249,peer,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,239758,0.0716337506940029,relative_legacy,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,239758,78.54511098698357,baseline,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,239758,12.67653335051703,spot_peer,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,239759,0.0716369319821676,relative_legacy,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,239759,79.3193536040354,baseline,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,239759,12.67653335051703,spot_peer,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,239759,9.116029754475456,peer,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,240416,12.67653335051703,spot_peer,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,240416,80.32597250178468,baseline,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,240416,9.147858150292508,peer,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,240416,0.0716244264604244,relative_legacy,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,241715,15.041691732420444,baseline,CatrachoCaster,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,241715,1.5999201681716777,peer,CatrachoCaster,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,241715,0.0195215872422875,relative_legacy,CatrachoCaster,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,241715,87.97057662822883,spot_baseline,CatrachoCaster,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,241715,9.357052534844568,spot_peer,CatrachoCaster,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,246118,-173.6965594166206,spot_baseline,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,246118,-1.8439650368716545,relative_legacy,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,246118,-124.94818148525805,baseline,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,246118,-129.28758172165217,peer,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,246118,-178.27105532172408,spot_peer,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,247214,1.1704331667007069,spot_peer,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,247214,32.49822523533754,baseline,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,247214,76.55347463629771,spot_baseline,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,247214,0.3635584846872035,peer,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,247214,0.0,relative_legacy,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,250015,12.67653335051703,spot_peer,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,250015,0.071623556873795,relative_legacy,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,250015,8.826668477477662,peer,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,250015,69.85004922966418,baseline,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,250015,92.5999418556223,spot_baseline,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,264059,-8.861550970277529,peer,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,264059,6.704011012300727,baseline,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,264059,26.303440583379377,spot_baseline,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,264059,-34.861293826562985,spot_peer,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,264059,-0.1280732764184913,relative_legacy,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,264332,0.3642711503382916,peer,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,264332,33.295673020160976,baseline,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,264332,-0.0011565990248136,relative_legacy,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,264332,1.1704331667007069,spot_peer,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,264332,76.55347463629771,spot_baseline,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,265212,-0.1058425153458332,relative_legacy,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,265212,67.80719051126377,spot_baseline,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,265212,48.538608596669775,baseline,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,265212,-5.101079434999441,spot_peer,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35151,"Will bluebird bio file for bankruptcy before April 1, 2025?",2025-03-02 04:05:19.463231+00,265212,-4.084773191636348,peer,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35701 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,187708,0.1207908131874675,relative_legacy,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,187708,22.87176451743288,spot_peer,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,187708,87.02660703959828,spot_baseline,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,187708,12.241668994739564,peer,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,187708,45.76435962646019,baseline,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,189869,-4.755938539394335,spot_peer,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,189869,-0.1223724001311053,relative_legacy,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,189869,43.764801884717926,baseline,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,189869,-4.943882781593833,peer,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,190710,7.225113643808211,peer,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,190710,67.80719051126377,spot_baseline,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,190710,0.0456407340108217,relative_legacy,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,190710,9.07409855385981,spot_peer,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,190710,52.32011017141753,baseline,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,191026,3.196866688971075,peer,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,191026,4.033777170084281,spot_peer,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,191026,60.7862902831235,spot_baseline,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,191026,-0.0113630545332619,relative_legacy,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,191026,49.35334109706185,baseline,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,191935,52.60688116675877,spot_baseline,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,191935,17.884187156912603,baseline,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,191935,-0.7627446300631415,peer,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,191935,-0.0484810798527215,relative_legacy,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,191935,-1.8382405678436364,spot_peer,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,192418,-4.755938539394335,spot_peer,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,192418,45.88267308313537,baseline,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,192418,-0.1287789506073346,relative_legacy,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,192418,-5.790967054585232,peer,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,192418,48.54268271702416,spot_baseline,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,192924,42.752370396942446,baseline,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,192924,-0.1223724001311053,relative_legacy,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,192924,48.54268271702416,spot_baseline,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,192924,-4.741411830712416,peer,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,192924,-4.755938539394335,spot_peer,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,204737,15.353077241990553,spot_peer,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,204737,60.69749579675108,baseline,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,204737,12.27725261293818,peer,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,204737,0.1149880166049318,relative_legacy,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,220077,15.353077241990553,spot_peer,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,220077,0.1359798011748425,relative_legacy,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,220077,14.447407776749383,peer,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,220077,74.64039150260886,baseline,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,222631,0.0451036077198374,relative_legacy,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,222631,7.116502867446745,peer,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,222631,67.80719051126377,spot_baseline,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,222631,9.07409855385981,spot_peer,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,222631,49.38568417697904,baseline,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,224797,64.32474138489795,baseline,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,224797,0.1191321682134554,relative_legacy,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,224797,15.353077241990553,spot_peer,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,224797,76.55347463629771,spot_baseline,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,224797,12.703720259486296,peer,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236037,7.442137388450389,peer,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236037,58.40716563265245,baseline,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236037,9.07409855385981,spot_peer,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236037,67.80719051126377,spot_baseline,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236037,0.0456515535323515,relative_legacy,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236038,9.07409855385981,spot_peer,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236038,0.0456559413001103,relative_legacy,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236038,7.501902661325735,peer,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236038,59.14259466377316,baseline,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236040,0.0458968459571082,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236040,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236040,59.22631303226374,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236040,7.5126385613517055,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236040,9.07409855385981,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236041,59.12629344334689,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236041,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236041,9.07409855385981,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236041,0.045640561923351,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236041,7.499178580993398,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236043,7.481045781821748,peer,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236043,59.02003315269294,baseline,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236043,9.07409855385981,spot_peer,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236043,0.0454969178097752,relative_legacy,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236045,0.1408896787705669,peer,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236045,-0.4096464898517083,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236045,54.59683691052925,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236045,-0.0515855013407253,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236045,40.181812134623016,baseline,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236047,-0.1211595592588828,relative_legacy,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236047,-4.6199732775097,peer,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236047,42.03699068516024,baseline,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,236047,-4.755938539394335,spot_peer,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,237476,10.129849515988216,baseline,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,237476,13.750352374993504,spot_baseline,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,237476,-29.733437281143445,spot_peer,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,237476,-0.3525946134893614,relative_legacy,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,237476,-21.56495367123289,peer,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,239758,40.992351454429546,baseline,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,239758,48.54268271702416,spot_baseline,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,239758,-4.374424960636335,peer,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,239758,-0.117025707971713,relative_legacy,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,239758,-4.755938539394335,spot_peer,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,239759,26.872875164120945,spot_peer,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,239759,79.60675668247694,baseline,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,239759,22.871299649839692,peer,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,239759,0.2587830001868286,relative_legacy,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,240416,65.7669425341998,baseline,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,240416,12.87279738780347,peer,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,240416,0.1207732769549701,relative_legacy,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,240416,15.353077241990553,spot_peer,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,246118,34.94997426183544,baseline,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,246118,-4.755938539394335,spot_peer,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,246118,-0.0935978430220835,relative_legacy,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,246118,-2.921906298817998,peer,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,247214,-0.109570347498563,relative_legacy,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,247214,-4.926541675587423,peer,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,247214,15.24471251960106,baseline,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,247214,-12.431407083886944,spot_peer,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,247214,37.85116232537298,spot_baseline,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,250015,48.54268271702416,spot_baseline,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,250015,-4.755938539394335,spot_peer,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,250015,35.99044664500469,baseline,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,250015,-3.1338376537919914,peer,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,250015,-0.0971868137254038,relative_legacy,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,264059,2.331663456550201,peer,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,264059,67.80719051126377,spot_baseline,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,264059,9.07409855385981,spot_peer,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,264059,0.0,relative_legacy,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,264059,17.423609328025147,baseline,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,264225,76.55347463629771,spot_baseline,KevinTestBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,264225,0.0398055627491547,relative_legacy,KevinTestBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,264225,5.779562420105359,peer,KevinTestBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,264225,28.566214288255114,baseline,KevinTestBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,264225,15.353077241990553,spot_peer,KevinTestBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,264332,0.0061316052139648,relative_legacy,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,264332,67.80719051126377,spot_baseline,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,264332,3.291352566683942,peer,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,264332,24.301104173770423,baseline,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,264332,9.07409855385981,spot_peer,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,265212,-1.3866820598645515,relative_legacy,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,265212,-134.5063888478432,spot_peer,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,265212,-132.19280948873626,spot_baseline,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,265212,-94.61620704066674,baseline,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35152,"Will the NFL ban the ""Tush-Push"" before April 1, 2025?",2025-03-02 04:05:19.493573+00,265212,-96.15235714330476,peer,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35702 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,187708,0.0252301563077334,relative_legacy,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,187708,0.7152197645804855,spot_peer,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,187708,88.90840985981492,spot_baseline,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,187708,0.5514284370202074,peer,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,187708,54.59543391226843,baseline,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,189869,-2.2563088667857016,peer,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,189869,-2.242263795767399,spot_peer,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,189869,-0.0140407910296995,relative_legacy,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,189869,76.12748356555679,baseline,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,190710,84.79969065549501,spot_baseline,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,190710,63.645808520765776,baseline,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,190710,-1.5891998644660856,peer,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,190710,-0.0023266371952133,relative_legacy,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,190710,-2.242263795767399,spot_peer,Bot_Pepa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,191026,-3.16946775767562,spot_peer,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,191026,-0.0175898656960711,relative_legacy,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,191026,-2.564915152134476,peer,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,191026,67.82040618887407,baseline,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,191026,83.51156152582178,spot_baseline,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,191935,98.5500430304885,spot_baseline,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,191935,0.0268652492474946,relative_legacy,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,191935,1.4956881922124994,peer,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,191935,19.254571789594987,baseline,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,191935,7.655331799297101,spot_peer,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,191975,1.3487708469750486,spot_peer,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,191975,0.0191600188102372,relative_legacy,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,191975,0.5646305377770686,peer,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,191975,34.483656338180744,baseline,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,191975,89.78857823473092,spot_baseline,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,192418,6.849659298299862,peer,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,192418,0.1096890873138893,relative_legacy,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,192418,98.5500430304885,spot_baseline,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,192418,7.655331799297101,spot_peer,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,192418,92.36277967269928,baseline,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,192924,95.60566524124027,spot_baseline,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,192924,84.40986972190495,baseline,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,192924,4.835470193738937,peer,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,192924,0.083187554485427,relative_legacy,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,192924,5.535948976056367,spot_peer,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,204737,3.4953391113229157,peer,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,204737,93.80975610740931,spot_baseline,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,204737,4.243241571374301,spot_peer,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,204737,0.0660578915448541,relative_legacy,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,204737,76.30226185915019,baseline,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,220077,6.601047070341397,spot_peer,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,220077,97.08536543404836,spot_baseline,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,220077,94.12893580275671,baseline,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,220077,5.803796782927828,peer,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,220077,0.0959618792912923,relative_legacy,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,222631,-0.1228581792277821,relative_legacy,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,222631,48.97651374315494,baseline,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,222631,-10.354533916058728,peer,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,222631,67.80719051126377,spot_baseline,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,222631,-14.473579037007209,spot_peer,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236037,2.896167059651125,peer,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236037,3.3724091822997018,spot_peer,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236037,0.056226691887504,relative_legacy,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236037,79.67088087600338,baseline,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236038,-2.242263795767399,spot_peer,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236038,84.79969065549501,spot_baseline,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236038,73.77471414410495,baseline,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236038,-2.0179554906843578,peer,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236038,-0.0110920784731502,relative_legacy,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236040,-2.242263795767399,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236040,73.99548468116359,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236040,-2.0340478801192123,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236040,-0.011096700637456,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236040,84.79969065549501,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236041,84.79969065549501,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236041,-2.242263795767399,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236041,73.71563560485656,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236041,-2.014428522132873,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236041,-0.0110924382679323,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236043,0.056678715736048,relative_legacy,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236043,2.9105415996489667,peer,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236043,3.3724091822997018,spot_peer,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236043,80.44284490199419,baseline,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236045,2.656955496692398,peer,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236045,70.2099311234801,baseline,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236045,0.056208903180616,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236045,3.3724091822997018,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236047,-14.473579037007209,spot_peer,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236047,-0.157038544824416,relative_legacy,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236047,58.32764936611154,baseline,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236047,-12.583397395433437,peer,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,237476,3.3724091822997018,spot_peer,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,237476,70.01684577405635,baseline,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,237476,2.653111089548484,peer,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,237476,0.0562175969239952,relative_legacy,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,239758,0.0939279122784371,relative_legacy,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,239758,97.08536543404836,spot_baseline,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,239758,6.601047070341397,spot_peer,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,239758,5.577461579697493,peer,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,239758,81.63244748191157,baseline,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,239759,2.9002279456194664,peer,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,239759,3.3724091822997018,spot_peer,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,239759,79.91431099531984,baseline,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,239759,0.0562301760245796,relative_legacy,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,240416,79.27601277572047,baseline,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,240416,2.883449783945176,peer,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,240416,0.0562175969239952,relative_legacy,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,240416,3.3724091822997018,spot_peer,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,246118,84.79969065549501,spot_baseline,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,246118,-2.242263795767399,spot_peer,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,246118,-1.485148005024027,peer,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,246118,61.11642697445814,baseline,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,246118,0.0,relative_legacy,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,247214,-1.4233937860618775,peer,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,247214,84.63930208523604,spot_baseline,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,247214,-2.357712561239101,spot_peer,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,247214,55.40529588108644,baseline,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,247214,-0.0010499113263237,relative_legacy,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,250015,54.60074342311537,baseline,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,250015,-8.177945232992833,spot_peer,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,250015,-0.0588079915454934,relative_legacy,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,250015,-5.713634766443514,peer,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,264059,-2.242263795767399,spot_peer,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,264059,22.031989005170114,baseline,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,264059,-0.5637817506158322,peer,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,264059,0.0,relative_legacy,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,265212,0.0,relative_legacy,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,265212,84.79969065549501,spot_baseline,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,265212,-1.4731817121422588,peer,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,265212,-2.242263795767399,spot_peer,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35153,"Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.523858+00,265212,60.717162734743965,baseline,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35703 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,187708,91.9912088677308,spot_baseline,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,187708,9.67452758188176,peer,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,187708,0.0372577920458203,relative_legacy,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,187708,17.405361579481728,spot_peer,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,187708,47.65877286114774,baseline,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,189869,6.293177239778139,spot_peer,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,189869,48.43721369055454,baseline,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,189869,4.958153054632864,peer,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,189869,-0.052175780310166,relative_legacy,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,191026,13.831807982794569,spot_peer,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,191026,87.02660703959828,spot_baseline,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,191026,13.284078902074413,peer,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,191026,70.69103225179308,baseline,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,191026,0.0168057040390518,relative_legacy,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,191935,0.0059495046196301,relative_legacy,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,191935,97.08536543404836,spot_baseline,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,191935,1.0204483864510985,peer,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,191935,21.07216954311235,spot_peer,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,191935,4.701490480251574,baseline,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,191975,15.0367079840175,spot_peer,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,191975,88.70052869403595,spot_baseline,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,191975,31.19756557606394,baseline,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,191975,5.593746581765719,peer,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,191975,0.0137199464648927,relative_legacy,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,192418,8.259525427720959,peer,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,192418,-0.0753952421357124,relative_legacy,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,192418,6.293177239778139,spot_peer,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,192418,70.9048694651649,baseline,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,192924,74.48658889347662,baseline,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,192924,13.830240316221143,peer,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,192924,-0.0009616068364738,relative_legacy,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,192924,12.228858677003569,spot_peer,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,204737,81.0648747782646,spot_baseline,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,204737,9.540513231974922,spot_peer,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,204737,65.42671650558445,baseline,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,204737,9.671552586673382,peer,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,204737,-0.0313108899372406,relative_legacy,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,220077,84.79969065549501,spot_baseline,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,220077,12.228858677003569,spot_peer,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,220077,81.71077935895134,baseline,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,220077,14.103633647496078,peer,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,220077,0.0009823322592586,relative_legacy,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,222631,-6.704533759291718,spot_peer,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,222631,41.84742100630773,baseline,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,222631,-3.5380075601550667,peer,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,222631,-0.1881712333098394,relative_legacy,Grizeu_Bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,224797,92.5999418556223,spot_baseline,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,224797,77.89877660717792,baseline,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,224797,17.45985516172788,peer,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,224797,0.0643354708978286,relative_legacy,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,224797,17.843531655070663,spot_peer,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236037,72.37059565506364,baseline,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236037,12.228858677003569,spot_peer,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236037,13.092145385828676,peer,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236037,-0.0012781626725794,relative_legacy,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236038,-287.92513156605963,spot_peer,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236038,-332.1928094887361,spot_baseline,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236038,-3.622876816717415,relative_legacy,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236038,-288.53064283949186,baseline,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236038,-249.848106186822,peer,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236040,8.58585318347685,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236040,6.293177239778139,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236040,66.5407474650181,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236040,-0.0726328751920138,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236041,-0.0012053358433857,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236041,73.45658346541991,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236041,13.626496189457855,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236041,84.79969065549501,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236041,12.228858677003569,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236043,17.843531655070663,spot_peer,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236043,18.47974451628289,peer,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236043,0.0662144100829204,relative_legacy,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236043,80.12612275780319,baseline,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236045,3.790553094022949e-06,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236045,9.200723004048454,peer,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236045,12.228858677003569,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236045,56.223755763469725,baseline,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236047,-0.1476481820074029,relative_legacy,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236047,58.39729293983117,baseline,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236047,2.7443945995953483,peer,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,236047,-0.0024565642362444,spot_peer,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,237476,17.843531655070663,spot_peer,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,237476,15.58850697006863,peer,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,237476,71.84224345504059,baseline,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,237476,0.0593495178428213,relative_legacy,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,239758,17.189290523509943,peer,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,239758,77.13560387936934,baseline,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,239758,17.843531655070663,spot_peer,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,239758,0.0636889302173286,relative_legacy,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,239759,17.843531655070663,spot_peer,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,239759,79.94127521966371,baseline,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,239759,18.368964807534397,peer,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,239759,0.066058691764926,relative_legacy,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,240416,12.228858677003569,spot_peer,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,240416,-0.0012741016690052,relative_legacy,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,240416,12.802731916278468,peer,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,240416,71.63701272394943,baseline,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,246118,84.79969065549501,spot_baseline,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,246118,61.09753603149736,baseline,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,246118,0.0,relative_legacy,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,246118,12.228858677003569,spot_peer,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,246118,10.15296126400064,peer,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,247214,-3.425672996958256,peer,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,247214,58.496250072115615,spot_baseline,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,247214,-6.704533759291718,spot_peer,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,247214,-0.1769788528617646,relative_legacy,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,247214,39.35834630325713,baseline,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,250015,53.39665375851711,baseline,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,250015,5.607382921904319,peer,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,250015,-0.0575146521904222,relative_legacy,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,250015,6.293177239778139,spot_peer,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,264059,21.76654979057967,baseline,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,264059,12.228858677003569,spot_peer,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,264059,0.0,relative_legacy,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,264059,3.3117347547336062,peer,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,265212,12.228858677003569,spot_peer,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,265212,84.79969065549501,spot_baseline,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,265212,61.34463722123957,baseline,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,265212,0.0,relative_legacy,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35154,"Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.695056+00,265212,10.205095060569787,peer,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35704 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,187708,-3.36231297527376,peer,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,187708,76.55347463629771,spot_baseline,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,187708,-0.026221200492227,relative_legacy,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,187708,43.41726743768768,baseline,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,187708,-5.777467511731015,spot_peer,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,189869,-5.777467511731015,spot_peer,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,189869,69.03495106940753,baseline,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,189869,-5.782072170799589,peer,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,189869,-0.075564849755461,relative_legacy,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,191026,56.54811327361647,baseline,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,191026,-9.109567483865655,peer,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,191026,-10.798519784426594,spot_peer,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,191026,-0.1186453632512261,relative_legacy,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,191026,69.59938131099001,spot_baseline,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,191975,-2.098146639427741,peer,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,191975,-0.0179258099936215,relative_legacy,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,191975,-7.010223516627138,spot_peer,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,191975,74.84612330040356,spot_baseline,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,191975,22.399080939876267,baseline,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,192418,85.09736937629168,baseline,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,192418,4.908512749404789,peer,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,192418,0.0691401534577674,relative_legacy,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,192418,5.808536145584023,spot_peer,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,192924,-0.0349093177237823,relative_legacy,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,192924,80.73549220576041,spot_baseline,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,192924,-2.8278804593544558,peer,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,192924,70.80383429069788,baseline,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,192924,-2.7579324207672324,spot_peer,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,204737,0.0436254428421502,relative_legacy,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,204737,2.6139430873731717,peer,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,204737,3.592140473991835,spot_peer,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,204737,89.53026213333065,spot_baseline,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,204737,71.7605219426818,baseline,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,220077,0.0691401534577674,relative_legacy,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,220077,4.908512749404789,peer,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,220077,5.808536145584023,spot_peer,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,220077,87.91025419694603,baseline,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,224797,-2.170390256644624,peer,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,224797,68.70011104043672,baseline,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,224797,81.55754288625727,spot_baseline,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,224797,-2.164388554659133,spot_peer,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,224797,-0.0247755421421397,relative_legacy,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236037,7.978753531296741,spot_peer,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236037,81.29400536381856,baseline,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236037,6.485624032419148,peer,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236037,0.0937956308613506,relative_legacy,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236037,95.60566524124027,spot_baseline,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236038,-10.9080061371319,peer,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236038,-0.1462318336210572,relative_legacy,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236038,-12.092532284276304,spot_peer,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236038,58.66070502716475,baseline,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236040,4.708694072832814,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236040,80.21018716775907,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236040,5.808536145584023,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236040,0.0682528342227856,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236041,0.068244496249928,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236041,5.808536145584023,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236041,79.8174193253987,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236041,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236041,4.6872974213613015,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236043,4.6872850420994014,peer,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236043,0.068244190547331,relative_legacy,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236043,79.81585145374947,baseline,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236043,5.808536145584023,spot_peer,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236045,9.047138965378922,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236045,0.096851730281719,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236045,5.8266833816883725,peer,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236045,63.80870791016615,baseline,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236045,97.08536543404836,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236047,-10.80562877228084,peer,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236047,-0.1445345348768648,relative_legacy,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236047,-12.092532284276304,spot_peer,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236047,58.195962243057245,baseline,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,237476,4.355911848153312,peer,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,237476,0.0679597977182323,relative_legacy,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,237476,73.40700172254567,baseline,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,237476,5.808536145584023,spot_peer,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,239758,0.0682320439988048,relative_legacy,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,239758,77.40140637589312,baseline,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,239758,4.557096932269627,peer,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,239758,5.808536145584023,spot_peer,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,239759,9.047138965378922,spot_peer,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,239759,97.08536543404836,spot_baseline,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,239759,84.42019785984985,baseline,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,239759,7.564518350718856,peer,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,239759,0.1072615321957225,relative_legacy,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,240416,77.62892158858627,baseline,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,240416,4.567716067336114,peer,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,240416,0.0682291453009784,relative_legacy,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,240416,5.808536145584023,spot_peer,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,246118,-0.1106557529950662,relative_legacy,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,246118,-8.919058248896897,peer,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,246118,-12.092532284276304,spot_peer,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,246118,67.80719051126377,spot_baseline,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,246118,48.85064391309204,baseline,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,247214,-0.0398643656592595,relative_legacy,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,247214,76.55347463629771,spot_baseline,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,247214,-5.777467511731015,spot_peer,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,247214,-4.026078624198265,peer,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,247214,51.36341107999986,baseline,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,250015,49.874882017503325,baseline,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,250015,-3.9001225195541016,peer,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,250015,-0.037153211231546,relative_legacy,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,250015,-5.777467511731015,spot_peer,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,264059,0.1765339299303151,spot_peer,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,264059,21.718603692422377,baseline,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,264059,0.0452132600105649,peer,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,264059,0.008303676813918,relative_legacy,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,265212,0.0677991069765232,relative_legacy,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,265212,92.5999418556223,spot_baseline,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,265212,5.808536145584023,spot_peer,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,265212,66.22745938012574,baseline,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35155,"Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.726833+00,265212,3.992255292355537,peer,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35705 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,187708,53.11453236357519,baseline,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,187708,-0.0189145267586116,relative_legacy,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,187708,87.02660703959828,spot_baseline,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,187708,0.489768652229731,spot_peer,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,187708,0.3566423939139567,peer,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,189869,-1.1131806535612727,spot_peer,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,189869,-0.0461783387889724,relative_legacy,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,189869,-0.8091039140380318,peer,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,189869,75.75667604474732,baseline,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,191026,-0.8826674538133984,spot_peer,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,191026,85.1199338593294,spot_baseline,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,191026,69.17395536826007,baseline,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,191026,-0.5442621400385653,peer,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,191026,-0.042248683617456,relative_legacy,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,191935,97.08536543404836,spot_baseline,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,191935,3.8199400232130274,peer,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,191935,47.726044421486094,baseline,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,191935,7.7301302125475155,spot_peer,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,191935,0.0329524499410058,relative_legacy,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,191975,-0.0081761415152334,relative_legacy,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,191975,86.1293729168408,spot_baseline,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,191975,25.39563780382656,baseline,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,191975,-0.0414430406230703,peer,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,191975,-0.1560664695883979,spot_peer,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,192418,0.0776529384159091,relative_legacy,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,192418,98.5500430304885,spot_baseline,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,192418,89.68221190820287,baseline,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,192418,8.784414941503233,spot_peer,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,192418,8.337336091653853,peer,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,192924,0.0222234544218343,relative_legacy,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,192924,92.5999418556223,spot_baseline,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,192924,4.501492324505821,spot_peer,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,192924,4.2199481585824135,peer,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,192924,81.20253965715412,baseline,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,204737,1.956387271522194,spot_peer,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,204737,-0.0101956441235249,relative_legacy,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,204737,1.7919021310939869,peer,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,204737,72.79518207880297,baseline,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,204737,89.06412439634438,spot_baseline,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,220077,0.0243977417261446,relative_legacy,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,220077,4.473376119223941,peer,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,220077,87.39125323311957,baseline,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,220077,4.501492324505821,spot_peer,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,224797,0.0207204582636687,relative_legacy,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,224797,78.09539925525799,baseline,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,224797,4.049704242752541,peer,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,224797,92.5999418556223,spot_baseline,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,224797,4.501492324505821,spot_peer,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236037,4.501492324505821,spot_peer,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236037,4.055337217341246,peer,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236037,0.0207791124259707,relative_legacy,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236037,78.17256015227558,baseline,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236038,-0.1917609163672046,relative_legacy,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236038,-13.344495894801096,spot_peer,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236038,58.523875769144446,baseline,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236038,-11.348450201019691,peer,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236040,-0.1161945061782761,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236040,-7.048862090786712,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236040,-5.864210955694039,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236040,66.03816254812087,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236041,72.79041870042302,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236041,-0.0450640033200142,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236041,-1.1131806535612727,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236041,84.79969065549501,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236041,-0.6980189556860732,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236043,-1.1131806535612727,spot_peer,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236043,-0.0450640033200142,relative_legacy,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236043,-0.6977608285010117,peer,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236043,72.7500299922543,baseline,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236045,4.501492324505821,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236045,3.150040616811848,peer,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236045,62.935002983879286,baseline,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236045,0.0150989503986125,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236047,-23.175297352534063,peer,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236047,-0.3549610796847657,relative_legacy,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236047,-27.21121743657846,spot_peer,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,236047,41.489723502532414,baseline,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,237476,3.830851212619897,peer,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,237476,4.501492324505821,spot_peer,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,237476,0.018196150738816,relative_legacy,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,237476,74.82863854741166,baseline,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,239758,4.501492324505821,spot_peer,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,239758,0.0198818021678907,relative_legacy,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,239758,3.978098497281262,peer,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,239758,77.10513698253351,baseline,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,239759,6.665032118262492,spot_peer,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,239759,95.60566524124027,spot_baseline,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,239759,0.048413087503228,relative_legacy,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,239759,83.30516828836738,baseline,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,239759,6.106495661856816,peer,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,240416,-0.0450595378523108,relative_legacy,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,240416,-0.7282752224365144,peer,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,240416,70.59422815480319,baseline,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,240416,-1.1131806535612727,spot_peer,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,246118,4.501492324505821,spot_peer,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,246118,3.352406800252723,peer,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,246118,0.0151045779030605,relative_legacy,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,246118,92.5999418556223,spot_baseline,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,246118,66.73208186340678,baseline,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,247214,-6.544327421090902,peer,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,247214,-0.1234622847586707,relative_legacy,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,247214,-7.048862090786712,spot_peer,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,247214,76.55347463629771,spot_baseline,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,247214,70.54012969032843,baseline,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,250015,-7.048862090786712,spot_peer,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,250015,-0.0909384102780794,relative_legacy,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,250015,-4.596421881695063,peer,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,250015,50.58223782933287,baseline,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,264059,1.166013516634209,peer,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,264059,23.98599754472553,baseline,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,264059,0.0091587648110049,relative_legacy,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,264059,4.501492324505821,spot_peer,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,264059,92.5999418556223,spot_baseline,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,264332,81.55754288625727,spot_baseline,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,264332,-0.0207248048893072,relative_legacy,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,264332,-0.9696167892291307,peer,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,264332,23.035463271394605,baseline,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,264332,-3.446900299736591,spot_peer,krm-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,265212,92.5999418556223,spot_baseline,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,265212,66.31439647789634,baseline,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,265212,3.329096019354586,peer,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,265212,0.0151045779030605,relative_legacy,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35156,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:05:19.75786+00,265212,4.501492324505821,spot_peer,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,0.8,2025-03-07 12:00:00+00,35706 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,187708,-34.312457268225266,spot_peer,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,187708,-0.2408952424671581,relative_legacy,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,187708,24.85348361386787,spot_baseline,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,187708,-16.12848343216297,peer,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,187708,11.580439073420289,baseline,twsummerbot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,189869,44.42290282846843,baseline,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,189869,-16.677746080144004,peer,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,189869,-17.235551637426266,spot_peer,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,189869,-0.2536958380659759,relative_legacy,VeritasAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,191026,-0.137434599954005,relative_legacy,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,191026,-8.299042314737703,peer,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,191026,-9.23160335926891,spot_peer,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,191026,59.64581395589856,spot_baseline,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,191026,48.48333980030175,baseline,manticAI,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,191935,83.18772411916731,spot_baseline,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,191935,4.979846448822119,peer,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,191935,0.0564299816778643,relative_legacy,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,191935,7.739125641582962,spot_peer,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,191935,31.944574013170115,baseline,pgodzinai,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,191975,54.06886009403641,spot_baseline,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,191975,-13.25187919855007,spot_peer,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,191975,-0.0913567045824758,relative_legacy,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,191975,-5.483800815199412,peer,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,191975,21.968590430749405,baseline,jkraybill_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,192418,8.522454695100016,peer,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,192418,10.050331867192824,spot_peer,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,192418,86.39384504239716,spot_baseline,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,192418,77.75556479717896,baseline,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,192418,0.0884742404711726,relative_legacy,InstitutPelFutur,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,192924,1.808103147165424,peer,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,192924,0.0,relative_legacy,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,192924,2.9566738644333275,spot_peer,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,192924,66.89991089570299,baseline,acm_bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,204737,1.6653022274897349,peer,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,204737,0.0,relative_legacy,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,204737,2.9566738644333275,spot_peer,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,204737,76.55347463629771,spot_baseline,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,204737,62.33645237780684,baseline,SynapseSeer,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,220077,71.80081868973826,baseline,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,220077,0.0029801062575336,relative_legacy,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,220077,2.3128455425044256,peer,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,220077,2.9566738644333275,spot_peer,mmBot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,224797,0.0,relative_legacy,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,224797,76.55347463629771,spot_baseline,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,224797,64.66636877525487,baseline,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,224797,1.7105448422482827,peer,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,224797,2.9566738644333275,spot_peer,cookics_bot_TEST,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236037,64.59624482608169,baseline,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236037,1.708725755268981,peer,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236037,4.57802645847307e-06,relative_legacy,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236037,76.55347463629771,spot_baseline,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236037,2.9566738644333275,spot_peer,metac-o1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236038,-3.3482868044758964,spot_peer,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236038,-0.0751991519869321,relative_legacy,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236038,-3.7101604706452505,peer,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236038,58.30708414357672,baseline,metac-gpt-4o,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236040,4.60936312860565e-06,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236040,1.753888697299529,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236040,2.9566738644333275,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236040,65.82359981615343,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236041,2.9566738644333275,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236041,1.736518905719357,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236041,65.4624401484243,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236041,0.0,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236043,6.852725774639569,peer,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236043,0.0704673093014672,relative_legacy,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236043,8.901148903787986,spot_peer,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236043,72.48234197956575,baseline,metac-grok-2-1212,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236045,0.0519577574018438,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236045,5.182590300537557,peer,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236045,53.42709475501341,baseline,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236045,8.901148903787986,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236047,-3.3482868044758964,spot_peer,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236047,-0.0744857585017841,relative_legacy,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236047,-3.67965554390847,peer,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236047,57.74646632677136,baseline,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,237476,1.671667371148657,peer,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,237476,63.15166173634815,baseline,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,237476,2.9566738644333275,spot_peer,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,237476,0.0,relative_legacy,NextWorldLab,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,239758,8.901148903787986,spot_peer,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,239758,0.0684405685961238,relative_legacy,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,239758,6.642520559430847,peer,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,239758,70.37689412575514,baseline,metac-perplexity,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,239759,0.0720634980361092,relative_legacy,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,239759,8.901148903787986,spot_peer,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,239759,7.0698220376546494,peer,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,239759,74.20287480150465,baseline,metac-exa,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,240416,76.47556891510199,baseline,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,240416,14.524139915896646,spot_peer,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,240416,11.281930722280007,peer,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,240416,0.1325112491741643,relative_legacy,metac-o1-preview,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,246118,2.9566738644333275,spot_peer,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,246118,76.55347463629771,spot_baseline,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,246118,0.0,relative_legacy,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,246118,1.5512799886867314,peer,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,246118,55.103668696506496,baseline,laylaps,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,247214,-10.0602930027833,spot_peer,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,247214,-9.995540271405176,peer,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,247214,58.496250072115615,spot_baseline,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,247214,-0.162970234226545,relative_legacy,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,247214,53.75949433427839,baseline,ajf-bot,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,250015,2.9566738644333275,spot_peer,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,250015,49.19654719909605,baseline,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,250015,1.430919514598027,peer,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,250015,-0.0001769202027818,relative_legacy,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,264059,67.80719051126377,spot_baseline,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,264059,-3.3482868044758964,spot_peer,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,264059,-0.0224296579586551,relative_legacy,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,264059,-0.9183506509137144,peer,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,264059,17.389008504215653,baseline,wunderplumb,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,265212,-3.3482868044758964,spot_peer,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,265212,67.80719051126377,spot_baseline,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,265212,-0.06267902709227,relative_legacy,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,265212,-2.9889069514770807,peer,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35157,"Will the US military's climate resiliance portal be back online on April 1, 2025?",2025-03-02 04:05:19.788335+00,265212,48.59307873318986,baseline,4Shadower,True,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35707 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,187708,48.1487123543573,baseline,twsummerbot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,187708,-0.0198623547440949,relative_legacy,twsummerbot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,187708,-0.6440438032347682,peer,twsummerbot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,187708,71.7210299019596,spot_baseline,twsummerbot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,187708,-1.0064696163419249,spot_peer,twsummerbot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,189869,69.86297252706188,baseline,VeritasAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,189869,2.482692303260378,spot_peer,VeritasAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,189869,0.0044331961430068,relative_legacy,VeritasAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,189869,1.863007950880283,peer,VeritasAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,191026,-40.986012462902885,spot_peer,manticAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,191026,13.29319975539401,baseline,manticAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,191026,-33.56486717230005,peer,manticAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,191026,-0.4812298858585048,relative_legacy,manticAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,191026,16.34987322828793,spot_baseline,manticAI,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,191975,-8.583178039923713,spot_peer,jkraybill_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,191975,61.227385419755045,spot_baseline,jkraybill_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,191975,21.10422345574799,baseline,jkraybill_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,191975,-2.9091023209383087,peer,jkraybill_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,191975,-0.0486555856540299,relative_legacy,jkraybill_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,192418,67.80719051126377,spot_baseline,InstitutPelFutur,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,192418,60.27400753325369,baseline,InstitutPelFutur,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,192418,-3.7853189989583935,peer,InstitutPelFutur,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,192418,-3.832372469284912,spot_peer,InstitutPelFutur,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,192418,-0.0733127761153041,relative_legacy,InstitutPelFutur,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,192924,90.3038270112912,spot_baseline,acm_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,192924,78.71572178240122,baseline,acm_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,192924,10.638717856835967,peer,acm_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,192924,12.41083603287757,spot_peer,acm_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,192924,0.1242917832906626,relative_legacy,acm_bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,204737,12.96639290531115,spot_peer,SynapseSeer,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,204737,10.65375374130202,peer,SynapseSeer,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,204737,0.1272639620285006,relative_legacy,SynapseSeer,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,204737,75.43785720440647,baseline,SynapseSeer,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,204737,91.07326619029126,spot_baseline,SynapseSeer,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,220077,71.41073286859047,baseline,mmBot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,220077,1.8275180214221625,peer,mmBot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,220077,0.0041749706027612,relative_legacy,mmBot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,220077,2.482692303260378,spot_peer,mmBot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,224797,8.43669374492171,spot_peer,cookics_bot_TEST,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,224797,71.86338251860182,baseline,cookics_bot_TEST,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,224797,7.031443351761777,peer,cookics_bot_TEST,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,224797,0.0759729230862364,relative_legacy,cookics_bot_TEST,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,224797,84.79969065549501,spot_baseline,cookics_bot_TEST,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236037,84.79969065549501,spot_baseline,metac-o1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236037,6.967080124204696,peer,metac-o1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236037,0.0752986471614392,relative_legacy,metac-o1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236037,8.43669374492171,spot_peer,metac-o1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236037,71.18972204696632,baseline,metac-o1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236038,-0.1480997290716557,relative_legacy,metac-gpt-4o,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236038,-9.261342005578674,peer,metac-gpt-4o,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236038,50.06203691684338,baseline,metac-gpt-4o,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236038,-10.555135087781917,spot_peer,metac-gpt-4o,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236038,58.496250072115615,spot_baseline,metac-gpt-4o,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236040,0.0064040670018566,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236040,1.9593144672596907,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236040,65.62633092516518,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236040,2.482692303260378,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236041,57.71331883236323,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236041,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236041,-3.832372469284912,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236041,-0.0680235125963424,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236041,-3.438425023076379,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236043,-17.741892534339367,spot_peer,metac-grok-2-1212,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236043,41.33470850503691,baseline,metac-grok-2-1212,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236043,-15.355961888522346,peer,metac-grok-2-1212,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236043,-0.2321381219352954,relative_legacy,metac-grok-2-1212,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236045,35.86344539710641,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236045,58.496250072115615,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236045,-0.0935463758252806,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236045,-6.3664851627494565,peer,metac-Gemini-Exp-1206,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236045,-10.555135087781917,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236047,-15.284528704004291,peer,metac-Llama-3.1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236047,41.16002526609439,baseline,metac-Llama-3.1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236047,-17.741892534339367,spot_peer,metac-Llama-3.1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,236047,-0.2313895350246111,relative_legacy,metac-Llama-3.1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,237476,14.06869596057541,spot_peer,NextWorldLab,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,237476,78.45338283985514,baseline,NextWorldLab,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,237476,11.82715955187952,peer,NextWorldLab,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,237476,0.1420216624894894,relative_legacy,NextWorldLab,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,239758,80.2968335743973,baseline,metac-perplexity,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,239758,14.246843129883532,peer,metac-perplexity,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,239758,0.1769080619385629,relative_legacy,metac-perplexity,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,239758,17.30729878037032,spot_peer,metac-perplexity,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,239758,97.08536543404836,spot_baseline,metac-perplexity,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,239759,0.1453155661980268,relative_legacy,metac-exa,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,239759,14.06869596057541,spot_peer,metac-exa,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,239759,92.5999418556223,spot_baseline,metac-exa,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,239759,81.30050738589267,baseline,metac-exa,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,239759,12.170644868752936,peer,metac-exa,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,240416,2.482692303260378,spot_peer,metac-o1-preview,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,240416,0.0075282494999356,relative_legacy,metac-o1-preview,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,240416,1.9304858383108388,peer,metac-o1-preview,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,240416,62.91547665637067,baseline,metac-o1-preview,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,246118,92.5999418556223,spot_baseline,laylaps,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,246118,66.61715517713529,baseline,laylaps,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,246118,14.06869596057541,spot_peer,laylaps,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,246118,10.10717936103338,peer,laylaps,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,246118,0.1240546888232712,relative_legacy,laylaps,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,247214,5.276939217128802,peer,ajf-bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,247214,75.2641919016202,baseline,ajf-bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,247214,81.55754288625727,spot_baseline,ajf-bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,247214,6.095771260332262,spot_peer,ajf-bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,247214,0.050354286423864,relative_legacy,ajf-bot,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,250015,-15.602034955083052,peer,metac-deepseek-r1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,250015,-25.46147296701871,spot_peer,metac-deepseek-r1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,250015,-0.2213138091765934,relative_legacy,metac-deepseek-r1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,250015,23.319016469770016,baseline,metac-deepseek-r1,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,264059,0.0414588364966038,relative_legacy,wunderplumb,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,264059,14.06869596057541,spot_peer,wunderplumb,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,264059,92.5999418556223,spot_baseline,wunderplumb,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,264059,23.924804111174662,baseline,wunderplumb,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,264059,3.634892076727633,peer,wunderplumb,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,265212,6.077130477062505,peer,4Shadower,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,265212,61.37782942013226,baseline,4Shadower,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,265212,84.79969065549501,spot_baseline,4Shadower,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,265212,8.43669374492171,spot_peer,4Shadower,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35158,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:05:19.818895+00,265212,0.067939044017608,relative_legacy,4Shadower,True,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,2025-03-07 12:00:00+00,35708 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,187708,50.37349856239722,spot_peer,twsummerbot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,187708,26.897723892108644,peer,twsummerbot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,187708,52.72380400369146,baseline,twsummerbot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,187708,96.44588183026744,spot_baseline,twsummerbot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,187708,0.5614398075729015,relative_legacy,twsummerbot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,189869,0.0,baseline,VeritasAI,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,189869,-51.333135905291336,peer,VeritasAI,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,189869,-1.7130384055001384,relative_legacy,VeritasAI,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,189869,-49.28724599554582,spot_peer,VeritasAI,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,189869,0.0,spot_baseline,VeritasAI,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,190710,34.657359027997266,spot_baseline,Bot_Pepa,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,190710,27.44608932257964,baseline,Bot_Pepa,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,190710,-14.391037660466498,peer,Bot_Pepa,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,190710,-0.6606147434844503,relative_legacy,Bot_Pepa,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,190710,-13.474641666615309,spot_peer,Bot_Pepa,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,191935,-0.4253851195439415,relative_legacy,pgodzinai,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,191935,-13.474641666615309,spot_peer,pgodzinai,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,191935,34.657359027997266,spot_baseline,pgodzinai,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,191935,-8.340587681960349,peer,pgodzinai,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,191935,19.50702876745975,baseline,pgodzinai,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,191975,-251.40843460933337,spot_peer,jkraybill_bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,191975,-91.84003481864464,baseline,jkraybill_bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,191975,-118.04306547371716,peer,jkraybill_bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,191975,-3.4637319080893603,relative_legacy,jkraybill_bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,191975,-195.6011502714073,spot_baseline,jkraybill_bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,192075,100.64099570646395,spot_peer,CumulativeBot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,192075,1.704173048461603,relative_legacy,CumulativeBot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,192075,104.70262183203008,baseline,CumulativeBot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,192075,70.1612436769583,peer,CumulativeBot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,192075,145.09184680839655,spot_baseline,CumulativeBot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,192418,1.0908701711780573,relative_legacy,InstitutPelFutur,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,192418,54.84457145726084,peer,InstitutPelFutur,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,192418,103.9720770839918,spot_baseline,InstitutPelFutur,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,192418,58.1505669912457,spot_peer,InstitutPelFutur,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,192418,101.2967250715442,baseline,InstitutPelFutur,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,192924,12.918015571627537,spot_peer,acm_bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,192924,54.26161090290344,baseline,acm_bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,192924,6.387942448840517,peer,acm_bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,192924,60.1986402262968,spot_baseline,acm_bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,192924,-0.1151348418102356,relative_legacy,acm_bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,218666,48.19762344433735,baseline,GreeneiBot2,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,218666,64.96414919742215,spot_baseline,GreeneiBot2,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,218666,17.842374841790388,spot_peer,GreeneiBot2,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,218666,0.0354975056704388,relative_legacy,GreeneiBot2,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,218666,10.358714538800712,peer,GreeneiBot2,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,220077,-43.52891417714529,spot_peer,mmBot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,220077,5.572579179097292,spot_baseline,mmBot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,220077,-1.6752822163121073,relative_legacy,mmBot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,220077,-51.27420393691376,peer,mmBot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,220077,5.533434345847081,baseline,mmBot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,222631,-0.6043793680570633,relative_legacy,Grizeu_Bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,222631,-12.655295093499488,peer,Grizeu_Bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,222631,25.38342065436031,baseline,Grizeu_Bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,222631,34.657359027997266,spot_baseline,Grizeu_Bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,222631,-13.474641666615309,spot_peer,Grizeu_Bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,224797,84.05935882230504,baseline,cookics_bot_TEST,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,224797,98.70405130110046,spot_baseline,cookics_bot_TEST,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,224797,52.70694034892468,spot_peer,cookics_bot_TEST,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,224797,0.8438847473971696,relative_legacy,cookics_bot_TEST,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,224797,40.28670334648669,peer,cookics_bot_TEST,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236037,0.1192972280257484,relative_legacy,metac-o1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236037,69.31471805599453,spot_baseline,metac-o1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236037,22.337962662315203,spot_peer,metac-o1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236037,61.48838708339477,baseline,metac-o1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236037,14.530347894338156,peer,metac-o1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236038,12.918015571627537,spot_peer,metac-gpt-4o,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236038,6.125641125627824,peer,metac-gpt-4o,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236038,53.59660680461789,baseline,metac-gpt-4o,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236038,60.1986402262968,spot_baseline,metac-gpt-4o,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236038,-0.1151923845887559,relative_legacy,metac-gpt-4o,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236040,30.096397528752597,peer,metac-claude-3-5-sonnet-latest,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236040,86.13832988705518,spot_baseline,metac-claude-3-5-sonnet-latest,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236040,39.72236155441121,spot_peer,metac-claude-3-5-sonnet-latest,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236040,0.5501889424753986,relative_legacy,metac-claude-3-5-sonnet-latest,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236040,76.50330093903408,baseline,metac-claude-3-5-sonnet-latest,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236041,0.3533070109956545,relative_legacy,metac-claude-3-5-sonnet-20240620,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236041,78.43079589569226,spot_baseline,metac-claude-3-5-sonnet-20240620,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236041,23.03995659061415,peer,metac-claude-3-5-sonnet-20240620,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236041,69.84434317390799,baseline,metac-claude-3-5-sonnet-20240620,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236041,31.757909763336187,spot_peer,metac-claude-3-5-sonnet-20240620,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236043,89.58797346140274,spot_baseline,metac-grok-2-1212,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236043,43.28699324790369,spot_peer,metac-grok-2-1212,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236043,0.6390701801410646,relative_legacy,metac-grok-2-1212,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236043,33.32399664419829,peer,metac-grok-2-1212,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236043,79.6531818445213,baseline,metac-grok-2-1212,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236045,31.757909763336187,spot_peer,metac-Gemini-Exp-1206,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236045,0.3450200756709806,relative_legacy,metac-Gemini-Exp-1206,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236045,22.20028829970608,peer,metac-Gemini-Exp-1206,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236045,65.89958984972121,baseline,metac-Gemini-Exp-1206,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236045,78.43079589569226,spot_baseline,metac-Gemini-Exp-1206,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236047,14.360721386975458,peer,metac-Llama-3.1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236047,0.1212713325486278,relative_legacy,metac-Llama-3.1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236047,22.337962662315203,spot_peer,metac-Llama-3.1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236047,69.31471805599453,spot_baseline,metac-Llama-3.1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,236047,59.90078748840703,baseline,metac-Llama-3.1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,237476,0.0,baseline,NextWorldLab,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,237476,-44.26435271517079,peer,NextWorldLab,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,237476,-1.4953493473767216,relative_legacy,NextWorldLab,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,237476,-49.28724599554582,spot_peer,NextWorldLab,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,237476,0.0,spot_baseline,NextWorldLab,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,239758,69.31471805599453,spot_baseline,metac-perplexity,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,239758,61.22746366437031,baseline,metac-perplexity,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,239758,14.496774492700316,peer,metac-perplexity,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,239758,0.1199144778184355,relative_legacy,metac-perplexity,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,239758,22.337962662315203,spot_peer,metac-perplexity,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,239759,62.63814842476839,spot_baseline,metac-exa,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,239759,55.09061469477791,baseline,metac-exa,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,239759,8.35529384590888,peer,metac-exa,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,239759,-0.0490920628329491,relative_legacy,metac-exa,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,239759,15.43884071004819,spot_peer,metac-exa,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,240414,0.0,spot_baseline,minefrac1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,240414,-1.1364466272907106,relative_legacy,minefrac1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,240414,-33.0895642936991,peer,minefrac1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,240414,-49.28724599554582,spot_peer,minefrac1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,240414,0.0,baseline,minefrac1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,240416,60.84788735426818,baseline,metac-o1-preview,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,240416,0.1205598921355234,relative_legacy,metac-o1-preview,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,240416,22.337962662315203,spot_peer,metac-o1-preview,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,240416,69.31471805599453,spot_baseline,metac-o1-preview,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,240416,14.454190364619889,peer,metac-o1-preview,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,246118,54.93061443340548,spot_baseline,laylaps,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,246118,37.27022006759259,baseline,laylaps,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,246118,3.1553777843887545,peer,laylaps,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,246118,-0.1406184700211789,relative_legacy,laylaps,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,246118,7.474388918973177,spot_peer,laylaps,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,247214,67.01252113092418,spot_baseline,ajf-bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,247214,58.353916127256255,baseline,ajf-bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,247214,12.319919561632272,peer,ajf-bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,247214,0.0631541017238719,relative_legacy,ajf-bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,247214,19.959025839742512,spot_peer,ajf-bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,250015,33.8670461468827,spot_peer,metac-deepseek-r1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,250015,80.47189562170502,spot_baseline,metac-deepseek-r1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,250015,67.87193865967566,baseline,metac-deepseek-r1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,250015,24.025247370709216,peer,metac-deepseek-r1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,250015,0.3947681681880323,relative_legacy,metac-deepseek-r1,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,264059,-0.0078070109464681,relative_legacy,wunderplumb,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,264059,32.025352263176416,baseline,wunderplumb,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,264059,60.1986402262968,spot_baseline,wunderplumb,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,264059,12.918015571627537,spot_peer,wunderplumb,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,264059,6.349134418303554,peer,wunderplumb,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,264225,-33.64811571164564,peer,KevinTestBot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,264225,0.0,spot_baseline,KevinTestBot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,264225,-1.155271671140086,relative_legacy,KevinTestBot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,264225,-49.28724599554582,spot_peer,KevinTestBot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,264225,0.0,baseline,KevinTestBot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,264332,0.0,spot_baseline,krm-bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,264332,0.0,baseline,krm-bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,264332,-31.40464831424849,peer,krm-bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,264332,-1.081053042772436,relative_legacy,krm-bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,264332,-49.28724599554582,spot_peer,krm-bot,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,265212,0.0,spot_baseline,4Shadower,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,265212,0.0,baseline,4Shadower,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,265212,-37.32617988231872,peer,4Shadower,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,265212,-1.2836227499588748,relative_legacy,4Shadower,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35322,What will the total number of Tesla vehicle deliveries be for Q1 2025?,2025-03-08 04:57:09.648719+00,265212,-49.28724599554582,spot_peer,4Shadower,True,336681.0,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35888 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,187708,-24.94748334195386,baseline,twsummerbot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,187708,-22.04677695426449,peer,twsummerbot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,187708,-0.2563514190053628,relative_legacy,twsummerbot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,187708,-41.36699636997802,spot_peer,twsummerbot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,187708,-46.59383975788817,spot_baseline,twsummerbot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,189869,26.637353836840436,spot_peer,VeritasAI,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,189869,22.63622293153901,peer,VeritasAI,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,189869,42.99063844748775,baseline,VeritasAI,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,189869,0.3448150237477248,relative_legacy,VeritasAI,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,190710,20.505398822711904,peer,Bot_Pepa,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,190710,38.236097692820046,baseline,Bot_Pepa,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,190710,0.3372364097512179,relative_legacy,Bot_Pepa,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,190710,26.637353836840436,spot_peer,Bot_Pepa,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,190710,48.54268271702416,spot_baseline,Bot_Pepa,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,191935,0.0008095899746196,relative_legacy,pgodzinai,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,191935,-7.035217695489181,spot_peer,pgodzinai,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,191935,1.4355292977070055,spot_baseline,pgodzinai,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,191935,0.7726905219559214,baseline,pgodzinai,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,191935,-3.6818585664479264,peer,pgodzinai,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,192075,-0.2067647336338674,relative_legacy,CumulativeBot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,192075,-26.86325610909872,spot_peer,CumulativeBot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,192075,-19.68350177042064,peer,CumulativeBot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,192075,-19.118026587547917,baseline,CumulativeBot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,192075,-26.3034405833794,spot_baseline,CumulativeBot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,192418,0.0,spot_baseline,InstitutPelFutur,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,192418,-8.061345564722144,spot_peer,InstitutPelFutur,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,192418,0.0,baseline,InstitutPelFutur,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,192418,-5.716287054702711,peer,InstitutPelFutur,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,192418,-0.0671231559676846,relative_legacy,InstitutPelFutur,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,192924,-21.19995071735065,baseline,acm_bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,192924,-23.28267051919263,peer,acm_bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,192924,-0.2933363572606258,relative_legacy,acm_bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,192924,-24.821110169180173,spot_peer,acm_bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,192924,-23.44652536370228,spot_baseline,acm_bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,204737,-3.189466858113067,peer,SynapseSeer,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,204737,0.0024201383147484,relative_legacy,SynapseSeer,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,204737,-3.029859884749464,spot_peer,SynapseSeer,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,204737,7.0389327891398015,spot_baseline,SynapseSeer,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,204737,5.711641055676088,baseline,SynapseSeer,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,218666,-0.3110575419785889,relative_legacy,GreeneiBot2,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,218666,-45.40316308947075,spot_baseline,GreeneiBot2,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,218666,-40.51589112631624,spot_peer,GreeneiBot2,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,218666,-30.054583889803347,baseline,GreeneiBot2,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,218666,-26.790616375599328,peer,GreeneiBot2,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,220077,-44.84344915840392,spot_peer,mmBot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,220077,-50.80598724279007,baseline,mmBot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,220077,-43.84773629923186,peer,mmBot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,220077,-0.5635858212011873,relative_legacy,mmBot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,222631,-37.250182909008124,baseline,Grizeu_Bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,222631,-32.63475814796499,peer,Grizeu_Bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,222631,-0.386980440544755,relative_legacy,Grizeu_Bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,222631,-44.84344915840392,spot_peer,Grizeu_Bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,224797,48.54268271702416,spot_baseline,cookics_bot_TEST,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,224797,41.39742755393691,baseline,cookics_bot_TEST,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,224797,21.77687968323847,peer,cookics_bot_TEST,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,224797,0.3391963644187447,relative_legacy,cookics_bot_TEST,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,224797,26.637353836840436,spot_peer,cookics_bot_TEST,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,227188,42.5593543953401,baseline,ProfessorSP,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,227188,91.07326619029126,spot_baseline,ProfessorSP,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,227188,57.03855642209444,spot_peer,ProfessorSP,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,227188,0.4188851867502727,relative_legacy,ProfessorSP,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,227188,26.6546291630123,peer,ProfessorSP,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236037,-15.200309344505014,spot_baseline,metac-o1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236037,-18.92664874193549,spot_peer,metac-o1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236037,-0.2174433126843961,relative_legacy,metac-o1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236037,-17.93679046380142,peer,metac-o1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236037,-13.394720298929922,baseline,metac-o1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236038,23.328880840394262,baseline,metac-gpt-4o,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236038,8.485376087903463,peer,metac-gpt-4o,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236038,0.1479300456877323,relative_legacy,metac-gpt-4o,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236038,10.740564979654422,spot_peer,metac-gpt-4o,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236040,15.776708484514575,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236040,18.994969208487877,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236040,33.459243775374304,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236040,0.2501281332314573,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236041,15.8530661589152,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236041,18.994969208487877,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236041,33.56231513668475,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236041,0.2502437526246266,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236043,42.96962775449931,baseline,metac-grok-2-1212,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236043,26.637353836840436,spot_peer,metac-grok-2-1212,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236043,0.3447639832540386,relative_legacy,metac-grok-2-1212,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236043,22.620888082214563,peer,metac-grok-2-1212,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236045,0.4234569770618406,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236045,58.496250072115615,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236045,49.51601081001536,baseline,metac-Gemini-Exp-1206,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236045,33.752243708932305,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236045,27.69828653347272,peer,metac-Gemini-Exp-1206,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236047,26.637353836840436,spot_peer,metac-Llama-3.1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236047,41.90618808439228,baseline,metac-Llama-3.1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236047,22.02772782906121,peer,metac-Llama-3.1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236047,0.3403423560792998,relative_legacy,metac-Llama-3.1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,237476,27.77104357946069,peer,NextWorldLab,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,237476,49.670651790581765,baseline,NextWorldLab,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,237476,0.4237146331213265,relative_legacy,NextWorldLab,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,237476,33.752243708932305,spot_peer,NextWorldLab,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,237476,58.496250072115615,spot_baseline,NextWorldLab,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,239758,0.4303906553493011,peer,metac-perplexity,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,239758,13.750352374993504,spot_baseline,metac-perplexity,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,239758,0.0378514462142769,relative_legacy,metac-perplexity,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,239758,1.7675167275988657,spot_peer,metac-perplexity,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,239758,12.102010561598076,baseline,metac-perplexity,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,239759,10.740564979654422,spot_peer,metac-exa,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,239759,23.23843063290986,baseline,metac-exa,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,239759,8.421025228716239,peer,metac-exa,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,239759,0.1481507540934434,relative_legacy,metac-exa,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,239759,26.303440583379377,spot_baseline,metac-exa,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,240414,26.303440583379377,spot_baseline,minefrac1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,240414,0.1589915065820173,relative_legacy,minefrac1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,240414,10.740564979654422,spot_peer,minefrac1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,240414,16.950320966257284,baseline,minefrac1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,240414,6.993926973343168,peer,minefrac1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,240416,0.3427333841122805,relative_legacy,metac-o1-preview,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,240416,48.54268271702416,spot_baseline,metac-o1-preview,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,240416,42.437406579236345,baseline,metac-o1-preview,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,240416,22.30883448867799,peer,metac-o1-preview,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,240416,26.637353836840436,spot_peer,metac-o1-preview,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,241715,-24.72518832921438,baseline,CatrachoCaster,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,241715,-21.78457902823425,peer,CatrachoCaster,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,241715,-0.2539602404952721,relative_legacy,CatrachoCaster,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,241715,-41.93832747121336,spot_peer,CatrachoCaster,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,241715,-47.39311883324123,spot_baseline,CatrachoCaster,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,246118,-21.07022552787696,peer,laylaps,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,246118,-32.19280948873623,spot_baseline,laylaps,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,246118,-31.073024294000017,spot_peer,laylaps,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,246118,-0.2288922379048219,relative_legacy,laylaps,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,246118,-21.83805348242664,baseline,laylaps,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,247214,-0.2110801580016151,relative_legacy,ajf-bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,247214,-18.241430274072798,spot_peer,ajf-bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,247214,-14.24170446158521,spot_baseline,ajf-bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,247214,-12.609006583507734,baseline,ajf-bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,247214,-17.41073883253575,peer,ajf-bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,250015,-25.153876699596427,spot_baseline,metac-deepseek-r1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,250015,-20.269819697944907,baseline,metac-deepseek-r1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,250015,-21.75346105155781,peer,metac-deepseek-r1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,250015,-0.2547615866581275,relative_legacy,metac-deepseek-r1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,250015,-26.041538614027345,spot_peer,metac-deepseek-r1,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,264059,26.637353836840436,spot_peer,wunderplumb,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,264059,25.89378793305064,baseline,wunderplumb,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,264059,14.31379830358204,peer,wunderplumb,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,264059,0.2520612937446821,relative_legacy,wunderplumb,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,264059,48.54268271702416,spot_baseline,wunderplumb,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,264225,26.303440583379377,spot_baseline,KevinTestBot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,264225,10.740564979654422,spot_peer,KevinTestBot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,264225,17.115902411641578,baseline,KevinTestBot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,264225,7.061139911826036,peer,KevinTestBot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,264225,0.1606473210358603,relative_legacy,KevinTestBot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,264332,0.0,spot_baseline,krm-bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,264332,0.0,baseline,krm-bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,264332,-4.694046830015629,peer,krm-bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,264332,-0.0069173152449395,relative_legacy,krm-bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,264332,-8.061345564722144,spot_peer,krm-bot,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,265212,-5.811828637579847,peer,4Shadower,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,265212,0.0,spot_baseline,4Shadower,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,265212,-8.061345564722144,spot_peer,4Shadower,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,265212,-0.0129205152161212,relative_legacy,4Shadower,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35323,Will there be a new world record in the 2025 World Figure Skating Championships?,2025-03-08 04:57:09.68841+00,265212,0.0,baseline,4Shadower,True,no,2025-03-08 17:00:00+00,2025-03-08 17:00:00+00,1.0,2025-03-08 17:00:00+00,35889 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,187708,-46.61806415623183,spot_baseline,twsummerbot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,187708,40.48922315810663,spot_peer,twsummerbot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,187708,22.306448171597378,peer,twsummerbot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,187708,0.1560463042059263,relative_legacy,twsummerbot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,187708,-26.596890252138145,baseline,twsummerbot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,189869,-50.0,spot_baseline,VeritasAI,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,189869,27.132555549731173,peer,VeritasAI,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,189869,0.2098230573693391,relative_legacy,VeritasAI,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,189869,35.63919703063933,spot_peer,VeritasAI,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,189869,-44.77092302838962,baseline,VeritasAI,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,190710,-36.84827970831032,spot_baseline,Bot_Pepa,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,190710,54.50004773346223,spot_peer,Bot_Pepa,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,190710,-30.987091863837342,baseline,Bot_Pepa,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,190710,42.10938008948659,peer,Bot_Pepa,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,190710,0.4135881688731208,relative_legacy,Bot_Pepa,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,191026,-67.91791357579575,baseline,manticAI,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,191026,-116.0964047443681,spot_baseline,manticAI,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,191026,-59.14949937013531,spot_peer,manticAI,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,191026,-0.6520843978831802,relative_legacy,manticAI,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,191026,-35.627441099364106,peer,manticAI,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,191935,-62.770038989969535,baseline,pgodzinai,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,191935,-111.993529414893,spot_peer,pgodzinai,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,191935,-0.7676062545773668,relative_legacy,pgodzinai,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,191935,-152.94468445267842,spot_baseline,pgodzinai,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,191935,-45.39621266171959,peer,pgodzinai,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,191975,0.0329311207178813,relative_legacy,jkraybill_bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,191975,8.032034390832147,peer,jkraybill_bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,191975,-7.417320633821946,baseline,jkraybill_bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,191975,-42.64808369853265,spot_baseline,jkraybill_bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,191975,46.18256266389752,spot_peer,jkraybill_bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,192075,-59.14949937013531,spot_peer,CumulativeBot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,192075,-116.09640474436812,spot_baseline,CumulativeBot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,192075,-85.76651546815134,baseline,CumulativeBot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,192075,-46.08932423765414,peer,CumulativeBot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,192075,-0.7984007956227507,relative_legacy,CumulativeBot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,192924,-102.82926469955822,baseline,acm_bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,192924,-57.74041483109535,peer,acm_bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,192924,-0.961116043526012,relative_legacy,acm_bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,192924,-59.14949937013531,spot_peer,acm_bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,192924,-116.09640474436812,spot_baseline,acm_bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,218666,-93.25613757256284,baseline,GreeneiBot2,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,218666,-55.47310396256395,peer,GreeneiBot2,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,218666,-0.9292613189254462,relative_legacy,GreeneiBot2,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,218666,-70.04886305887598,spot_peer,GreeneiBot2,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,218666,-123.69655941662062,spot_baseline,GreeneiBot2,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,220077,1.656017688704574,spot_peer,mmBot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,220077,-73.25297706199127,baseline,mmBot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,220077,-0.214973600091255,relative_legacy,mmBot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,220077,-3.691112794094413,peer,mmBot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,220077,-73.69655941662063,spot_baseline,mmBot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,222631,-66.09640474436813,spot_baseline,Grizeu_Bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,222631,-52.15800069472567,baseline,Grizeu_Bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,222631,6.90556774249762,peer,Grizeu_Bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,222631,-0.0624313587578924,relative_legacy,Grizeu_Bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,222631,12.55538137744522,spot_peer,Grizeu_Bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,227188,-42.73306161567504,baseline,ProfessorSP,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,227188,-66.09640474436812,spot_baseline,ProfessorSP,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,227188,12.55538137744524,spot_peer,ProfessorSP,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,227188,-0.0699590978229348,relative_legacy,ProfessorSP,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,227188,6.633597304926442,peer,ProfessorSP,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236037,-0.3621438966376828,relative_legacy,metac-o1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236037,-14.336182039774748,peer,metac-o1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236037,-73.00555092014355,baseline,metac-o1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236037,-82.19280948873623,spot_baseline,metac-o1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236037,-10.528434275748891,spot_peer,metac-o1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236038,-41.82506338585603,spot_baseline,metac-gpt-4o,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236038,47.36285413136379,spot_peer,metac-gpt-4o,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236038,0.3561012042396252,relative_legacy,metac-gpt-4o,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236038,37.73708497645913,peer,metac-gpt-4o,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236038,-37.41901799025152,baseline,metac-gpt-4o,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236040,33.65519638950764,peer,metac-claude-3-5-sonnet-latest,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236040,0.2996569293645197,relative_legacy,metac-claude-3-5-sonnet-latest,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236040,42.83154833911626,spot_peer,metac-claude-3-5-sonnet-latest,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236040,-44.984754710215725,spot_baseline,metac-claude-3-5-sonnet-latest,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236040,-40.302171301497935,baseline,metac-claude-3-5-sonnet-latest,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236041,-39.79296416098874,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236041,40.42559435236588,peer,metac-claude-3-5-sonnet-20240620,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236041,-35.66984455025709,baseline,metac-claude-3-5-sonnet-20240620,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236041,0.3928206985625571,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236041,50.277082783091,spot_peer,metac-claude-3-5-sonnet-20240620,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236043,23.30562389325017,peer,metac-grok-2-1212,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236043,-47.38321264279216,baseline,metac-grok-2-1212,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236043,-52.94468445267842,spot_baseline,metac-grok-2-1212,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236043,0.1570897073954788,relative_legacy,metac-grok-2-1212,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236043,31.416232080268117,spot_peer,metac-grok-2-1212,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236045,0.1522887527182527,relative_legacy,metac-Gemini-Exp-1206,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236045,-46.38243835532777,baseline,metac-Gemini-Exp-1206,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236045,31.416232080268117,spot_peer,metac-Gemini-Exp-1206,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236045,-52.94468445267842,spot_baseline,metac-Gemini-Exp-1206,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236045,23.11213519871491,peer,metac-Gemini-Exp-1206,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236047,-31.789850684340184,baseline,metac-Llama-3.1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236047,-36.84827970831029,spot_baseline,metac-Llama-3.1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236047,42.95606800189896,peer,metac-Llama-3.1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236047,0.4252425407290026,relative_legacy,metac-Llama-3.1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,236047,54.500047733462246,spot_peer,metac-Llama-3.1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,237476,31.65590656503761,peer,NextWorldLab,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,237476,-40.34610892268165,spot_baseline,NextWorldLab,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,237476,49.48381919962422,spot_peer,NextWorldLab,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,237476,0.2749070224770721,relative_legacy,NextWorldLab,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,237476,-27.138509981312676,baseline,NextWorldLab,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,239758,-76.97597649799947,spot_baseline,metac-perplexity,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,239758,-67.16940976388761,baseline,metac-perplexity,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,239758,-7.290033254564956,peer,metac-perplexity,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,239758,-0.2670236212288003,relative_legacy,metac-perplexity,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,239758,-3.046986526132396,spot_peer,metac-perplexity,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,239759,31.416232080268117,spot_peer,metac-exa,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,239759,0.1475656932339058,relative_legacy,metac-exa,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,239759,22.87712909527633,peer,metac-exa,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,239759,-45.67098470949964,baseline,metac-exa,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,239759,-52.94468445267842,spot_baseline,metac-exa,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,240414,20.29548681752081,peer,minefrac1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,240414,-52.944684452678416,spot_baseline,minefrac1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,240414,31.41623208026813,spot_peer,minefrac1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,240414,0.1176782667605512,relative_legacy,minefrac1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,240414,-37.40689366321197,baseline,minefrac1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,240416,-80.41161400220015,spot_baseline,metac-o1-preview,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,240416,-7.974026076744934,spot_peer,metac-o1-preview,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,240416,-0.3323144190226577,relative_legacy,metac-o1-preview,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,240416,-12.176704721273172,peer,metac-o1-preview,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,240416,-71.6874279346434,baseline,metac-o1-preview,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,246118,-36.84827970831032,spot_baseline,laylaps,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,246118,54.50004773346223,spot_peer,laylaps,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,246118,30.29048594558296,peer,laylaps,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,246118,0.2671888173596907,relative_legacy,laylaps,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,246118,-21.00116853482692,baseline,laylaps,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,247214,-97.23323639318517,baseline,ajf-bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,247214,-232.9077229616192,spot_baseline,ajf-bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,247214,-226.66833222484885,spot_peer,ajf-bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,247214,-1.4477765622054823,relative_legacy,ajf-bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,247214,-94.12619194933174,peer,ajf-bot,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,250015,2.682299846437281,peer,metac-deepseek-r1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,250015,8.092311992118518,spot_peer,metac-deepseek-r1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,250015,-69.20851464455599,spot_baseline,metac-deepseek-r1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,250015,-58.95395064904882,baseline,metac-deepseek-r1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,250015,-0.130555462551157,relative_legacy,metac-deepseek-r1,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,264059,-11.514704616478284,baseline,wunderplumb,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,264059,12.30205988836728,peer,wunderplumb,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,264059,0.0713438535905759,relative_legacy,wunderplumb,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,264059,45.49887080350054,spot_peer,wunderplumb,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,264059,-43.12482381250325,spot_baseline,wunderplumb,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,264891,-9.911041591148422,peer,swingswish,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,264891,-0.305842155948116,relative_legacy,swingswish,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,264891,-6.305469325377669,spot_peer,swingswish,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,264891,-79.24812503605781,spot_baseline,swingswish,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,264891,-68.28659986564199,baseline,swingswish,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,265212,-122.1111164302537,spot_baseline,4Shadower,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,265212,-67.77518305348542,spot_peer,4Shadower,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,265212,-0.8881036943311138,relative_legacy,4Shadower,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,265212,-90.31111230796068,baseline,4Shadower,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35324,Which party will win the largest number of allocated seats in the Greenlandic general election of March 2025?,2025-03-08 04:57:09.719626+00,265212,-52.55689107690599,peer,4Shadower,True,Another party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35890 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,187708,-0.3318895175864294,relative_legacy,twsummerbot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,187708,29.909010408991687,spot_baseline,twsummerbot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,187708,-47.62581333527606,spot_peer,twsummerbot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,187708,14.952678295026654,baseline,twsummerbot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,187708,-23.500346575642546,peer,twsummerbot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,189869,-0.312443111437746,relative_legacy,VeritasAI,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,189869,-22.24998409027813,peer,VeritasAI,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,189869,48.047734309541184,baseline,VeritasAI,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,189869,-22.13756051180348,spot_peer,VeritasAI,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,189869,52.280831963594856,spot_baseline,VeritasAI,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,190710,85.20688953017238,spot_baseline,Bot_Pepa,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,190710,0.1574424245863673,relative_legacy,Bot_Pepa,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,190710,71.36707200379698,baseline,Bot_Pepa,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,190710,12.141801766869683,peer,Bot_Pepa,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,190710,15.375150631937208,spot_peer,Bot_Pepa,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,191026,61.03557966279905,spot_baseline,manticAI,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,191026,35.71543224166128,baseline,manticAI,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,191026,-6.929518993384877,peer,manticAI,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,191026,-0.1003852585195824,relative_legacy,manticAI,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,191026,-12.163262164286143,spot_peer,manticAI,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,191935,30.13386996914888,spot_peer,pgodzinai,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,191935,98.16107033155328,spot_baseline,pgodzinai,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,191935,3.697325766818536,baseline,pgodzinai,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,191935,1.1350195501594875,peer,pgodzinai,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,191935,0.0151720346007452,relative_legacy,pgodzinai,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,191975,-9.1103343119751,spot_peer,jkraybill_bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,191975,63.715228111204354,spot_baseline,jkraybill_bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,191975,-0.8600981776100589,peer,jkraybill_bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,191975,6.514385486572586,baseline,jkraybill_bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,191975,-0.013931626692497,relative_legacy,jkraybill_bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,192075,68.39683994386155,spot_baseline,CumulativeBot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,192075,48.98494681565453,baseline,CumulativeBot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,192075,-0.0430255656892269,relative_legacy,CumulativeBot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,192075,-3.776566307394565,spot_peer,CumulativeBot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,192075,-3.002791143030265,peer,CumulativeBot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,192924,5.795695210943053,spot_peer,acm_bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,192924,0.0424415147804748,relative_legacy,acm_bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,192924,68.2974246424258,baseline,acm_bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,192924,3.968570649871971,peer,acm_bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,192924,76.79870758247155,spot_baseline,acm_bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,220077,0.1671679026655632,relative_legacy,mmBot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,220077,84.16468399321379,baseline,mmBot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,220077,15.375150631937208,spot_peer,mmBot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,220077,85.20688953017238,spot_baseline,mmBot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,220077,13.564617556902247,peer,mmBot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,222631,83.40437671464697,spot_baseline,Grizeu_Bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,222631,64.84777102065725,baseline,Grizeu_Bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,222631,9.855730044483744,peer,Grizeu_Bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,222631,0.1296297559916318,relative_legacy,Grizeu_Bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,222631,13.321544838259316,spot_peer,Grizeu_Bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,227188,-0.3009616684598872,relative_legacy,ProfessorSP,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,227188,-39.6529642930286,spot_peer,ProfessorSP,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,227188,36.90702464285426,spot_baseline,ProfessorSP,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,227188,20.09579766049011,baseline,ProfessorSP,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,227188,-21.333307783255638,peer,ProfessorSP,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236037,0.2187476708513828,relative_legacy,metac-o1,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236037,89.39263492153087,spot_baseline,metac-o1,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236037,20.14397719034853,spot_peer,metac-o1,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236037,16.763424517242097,peer,metac-o1,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236037,78.73199779265038,baseline,metac-o1,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236038,75.02166456006363,baseline,metac-gpt-4o,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236038,11.50596024306947,peer,metac-gpt-4o,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236038,0.1458183692849777,relative_legacy,metac-gpt-4o,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236038,84.12967077255682,spot_baseline,metac-gpt-4o,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236038,14.14787354261841,spot_peer,metac-gpt-4o,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236040,76.10090086474739,baseline,metac-claude-3-5-sonnet-latest,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236040,85.20688953017238,spot_baseline,metac-claude-3-5-sonnet-latest,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236040,15.375150631937208,spot_peer,metac-claude-3-5-sonnet-latest,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236040,0.1610568848119268,relative_legacy,metac-claude-3-5-sonnet-latest,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236040,12.631128983114664,peer,metac-claude-3-5-sonnet-latest,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236041,85.20688953017238,spot_baseline,metac-claude-3-5-sonnet-20240620,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236041,12.634546223998068,peer,metac-claude-3-5-sonnet-20240620,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236041,15.375150631937208,spot_peer,metac-claude-3-5-sonnet-20240620,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236041,76.11699976150364,baseline,metac-claude-3-5-sonnet-20240620,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236041,0.1610622922854407,relative_legacy,metac-claude-3-5-sonnet-20240620,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236043,70.01981391068581,baseline,metac-grok-2-1212,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236043,78.54362854371081,spot_baseline,metac-grok-2-1212,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236043,7.783686511002923,spot_peer,metac-grok-2-1212,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236043,0.0668972330141985,relative_legacy,metac-grok-2-1212,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236043,5.758723115233699,peer,metac-grok-2-1212,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236045,85.20688953017238,spot_baseline,metac-Gemini-Exp-1206,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236045,12.209697283442916,peer,metac-Gemini-Exp-1206,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236045,71.84542501899723,baseline,metac-Gemini-Exp-1206,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236045,0.1581708875594187,relative_legacy,metac-Gemini-Exp-1206,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236045,15.375150631937208,spot_peer,metac-Gemini-Exp-1206,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236047,70.09827121356034,spot_baseline,metac-Llama-3.1,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236047,59.41161163246842,baseline,metac-Llama-3.1,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236047,-2.453809860977778,peer,metac-Llama-3.1,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236047,-0.0440873498612067,relative_legacy,metac-Llama-3.1,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,236047,-1.838122883912079,spot_peer,metac-Llama-3.1,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,237476,70.2498514695103,spot_baseline,NextWorldLab,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,237476,-0.0195782622188942,relative_legacy,NextWorldLab,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,237476,-1.3616469543997065,peer,NextWorldLab,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,237476,-1.6654272508242685,spot_peer,NextWorldLab,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,237476,48.844130964710175,baseline,NextWorldLab,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,239758,69.15769761486106,baseline,metac-perplexity,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,239758,0.0847854018978923,relative_legacy,metac-perplexity,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,239758,9.088152813936569,spot_peer,metac-perplexity,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,239758,79.68859864249879,spot_baseline,metac-perplexity,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,239758,6.926996213215792,peer,metac-perplexity,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,239759,0.0532540072711341,relative_legacy,metac-exa,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,239759,6.462602356306497,spot_peer,metac-exa,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,239759,4.632290586860976,peer,metac-exa,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,239759,77.38407244654809,spot_baseline,metac-exa,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,239759,67.00347721372009,baseline,metac-exa,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,240416,16.58807327404594,spot_peer,metac-o1-preview,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,240416,13.599657271113124,peer,metac-o1-preview,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,240416,76.01632449228633,baseline,metac-o1-preview,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,240416,86.27150894903679,spot_baseline,metac-o1-preview,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,240416,0.1751972090834467,relative_legacy,metac-o1-preview,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,246118,55.5183299947302,baseline,laylaps,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,246118,1.365593467177204,peer,laylaps,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,246118,0.0153024973767056,relative_legacy,laylaps,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,246118,2.3952691404106607,spot_peer,laylaps,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,246118,73.81404928570852,spot_baseline,laylaps,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,247214,0.0095324803617584,relative_legacy,ajf-bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,247214,2.365851367985418,spot_peer,ajf-bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,247214,73.78822840423072,spot_baseline,ajf-bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,247214,1.242414164494313,peer,ajf-bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,247214,29.223882586196577,baseline,ajf-bot,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,250015,-0.0788156438755092,relative_legacy,metac-deepseek-r1,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,250015,-4.967842939538613,peer,metac-deepseek-r1,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,250015,57.36004123655625,baseline,metac-deepseek-r1,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,250015,-4.759547161939858,spot_peer,metac-deepseek-r1,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,250015,67.53404748720375,spot_baseline,metac-deepseek-r1,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,264059,-0.0122688598529855,relative_legacy,wunderplumb,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,264059,-0.4140753250549481,peer,wunderplumb,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,264059,18.57062680769271,baseline,wunderplumb,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,264059,69.67588566368377,spot_baseline,wunderplumb,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,264059,-2.3193474305123014,spot_peer,wunderplumb,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,264891,-57.734056293227766,spot_peer,swingswish,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,264891,17.987659759111082,baseline,swingswish,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,264891,-0.7099831428927955,relative_legacy,swingswish,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,264891,-50.73869255047825,peer,swingswish,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,264891,21.036695415411067,spot_baseline,swingswish,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,265212,-0.0322872105162021,relative_legacy,4Shadower,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,265212,-2.3193474305123014,spot_peer,4Shadower,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,265212,-2.1240572435987075,peer,4Shadower,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,265212,51.6411465423772,baseline,4Shadower,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35325,Which party will win the majority in the House of Representatives of Belize in the March 2025 Belizean general election?,2025-03-08 04:57:09.750308+00,265212,69.67588566368377,spot_baseline,4Shadower,True,People's United Party,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35891 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,187708,-65.82988907237029,spot_peer,twsummerbot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,187708,-7.737329525993655,peer,twsummerbot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,187708,-5.41478911131582,baseline,twsummerbot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,187708,-0.1163209776351729,relative_legacy,twsummerbot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,187708,-46.06950826518168,spot_baseline,twsummerbot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,189869,0.3827561814519442,relative_legacy,VeritasAI,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,189869,30.26969410294092,spot_baseline,VeritasAI,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,189869,44.06904769430667,spot_peer,VeritasAI,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,189869,27.55641371948102,baseline,VeritasAI,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,189869,33.22463422427494,peer,VeritasAI,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,191026,-4.656525638157321,peer,manticAI,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,191026,-2.434113531278462,baseline,manticAI,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,191026,-4.157061765012293,spot_baseline,manticAI,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,191026,-5.492170511372383,spot_peer,manticAI,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,191026,-0.1137003024009415,relative_legacy,manticAI,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,191935,-0.0874792260982389,relative_legacy,pgodzinai,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,191935,-3.420899327590025,baseline,pgodzinai,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,191935,-22.680208353274235,spot_peer,pgodzinai,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,191935,-16.096404744368115,spot_baseline,pgodzinai,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,191935,-5.064182833357643,peer,pgodzinai,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,192075,41.32585895722492,spot_baseline,CumulativeBot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,192075,30.492357064041958,baseline,CumulativeBot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,192075,41.744068894902654,peer,CumulativeBot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,192075,0.5003069348733784,relative_legacy,CumulativeBot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,192075,59.985650494839646,spot_peer,CumulativeBot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,192924,-65.02055969637792,baseline,acm_bot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,192924,-73.69655941662062,spot_baseline,acm_bot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,192924,-105.6021614220428,spot_peer,acm_bot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,192924,-1.4452320498408069,relative_legacy,acm_bot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,192924,-99.44405771306155,peer,acm_bot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,220077,82.37065555179869,spot_peer,mmBot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,220077,0.8671691847911684,relative_legacy,mmBot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,220077,69.32862014577698,peer,mmBot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,220077,55.475841927196846,baseline,mmBot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,220077,56.87517618749676,spot_baseline,mmBot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,222631,33.90359525563188,spot_baseline,Grizeu_Bot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,222631,49.30046039718161,spot_peer,Grizeu_Bot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,222631,0.3969616626668684,relative_legacy,Grizeu_Bot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,222631,34.53893098407087,peer,Grizeu_Bot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,222631,25.709632674222743,baseline,Grizeu_Bot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,224797,0.4197049586573624,relative_legacy,cookics_bot_TEST,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,224797,27.95124000332812,baseline,cookics_bot_TEST,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,224797,32.07730145437618,spot_baseline,cookics_bot_TEST,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,224797,46.67130341419767,spot_peer,cookics_bot_TEST,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,224797,36.10090941588288,peer,cookics_bot_TEST,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,227188,-22.680208353274235,spot_peer,ProfessorSP,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,227188,-16.096404744368115,spot_baseline,ProfessorSP,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,227188,-0.2636297186815274,relative_legacy,ProfessorSP,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,227188,-15.188820881345707,peer,ProfessorSP,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,227188,-9.691653764813028,baseline,ProfessorSP,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236037,0.3191435616966728,relative_legacy,metac-o1,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236037,38.35917607886891,spot_peer,metac-o1,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236037,26.30344058337939,spot_baseline,metac-o1,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236037,28.782870373638676,peer,metac-o1,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236037,22.910718121756013,baseline,metac-o1,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236038,36.52696625033866,spot_baseline,metac-gpt-4o,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236038,32.398615689288,baseline,metac-gpt-4o,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236038,42.160605363419634,peer,metac-gpt-4o,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236038,0.5004407395250278,relative_legacy,metac-gpt-4o,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236038,53.07710036877248,spot_peer,metac-gpt-4o,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236040,26.12786083762908,spot_peer,metac-claude-3-5-sonnet-latest,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236040,0.1685474942434655,relative_legacy,metac-claude-3-5-sonnet-latest,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236040,17.982346116186047,peer,metac-claude-3-5-sonnet-latest,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236040,15.791459171604291,baseline,metac-claude-3-5-sonnet-latest,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236040,17.807190511263766,spot_baseline,metac-claude-3-5-sonnet-latest,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236041,0.4923912062783245,spot_peer,metac-claude-3-5-sonnet-20240620,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236041,-0.0011785503176889,baseline,metac-claude-3-5-sonnet-20240620,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236041,-5.033739598912446,peer,metac-claude-3-5-sonnet-20240620,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236041,-0.1474180894621332,relative_legacy,metac-claude-3-5-sonnet-20240620,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236041,0.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236043,57.70230363774168,spot_peer,metac-grok-2-1212,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236043,35.15436449669609,baseline,metac-grok-2-1212,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236043,46.2702936328603,peer,metac-grok-2-1212,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236043,0.5567040179909845,relative_legacy,metac-grok-2-1212,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236043,39.73977557071602,spot_baseline,metac-grok-2-1212,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236045,41.20445416763464,spot_peer,metac-Gemini-Exp-1206,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236045,22.420274071115248,baseline,metac-Gemini-Exp-1206,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236045,29.21364514313076,peer,metac-Gemini-Exp-1206,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236045,0.3125356919283354,relative_legacy,metac-Gemini-Exp-1206,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236045,28.279858792711256,spot_baseline,metac-Gemini-Exp-1206,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236047,18.66813481027885,peer,metac-Llama-3.1,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236047,27.778867852361955,spot_peer,metac-Llama-3.1,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236047,18.95403107512171,spot_baseline,metac-Llama-3.1,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236047,15.292801791700136,baseline,metac-Llama-3.1,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,236047,0.1632111614236797,relative_legacy,metac-Llama-3.1,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,237476,-49.4795093106563,baseline,NextWorldLab,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,237476,-94.66087710373009,spot_peer,NextWorldLab,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,237476,-1.101124163306895,relative_legacy,NextWorldLab,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,237476,-66.09640474436812,spot_baseline,NextWorldLab,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,237476,-74.05123289748029,peer,NextWorldLab,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,239758,-15.797094414338432,peer,metac-perplexity,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,239758,-12.782612758209716,spot_peer,metac-perplexity,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,239758,-9.221228556871363,spot_baseline,metac-perplexity,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,239758,-7.92915451985073,baseline,metac-perplexity,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,239758,-0.2915988481825615,relative_legacy,metac-perplexity,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,239759,-52.55488510788226,spot_peer,metac-exa,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,239759,-36.84827970831032,spot_baseline,metac-exa,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,239759,-0.7776162685299932,relative_legacy,metac-exa,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,239759,-50.94724230233082,peer,metac-exa,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,239759,-32.000969207488914,baseline,metac-exa,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,240416,39.57629288526742,baseline,metac-o1-preview,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,240416,0.6534833079610285,relative_legacy,metac-o1-preview,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,240416,45.536633095145625,spot_baseline,metac-o1-preview,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,240416,66.04753726293276,spot_peer,metac-o1-preview,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,240416,53.05201832905919,peer,metac-o1-preview,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,246118,0.0,baseline,laylaps,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,246118,-2.5317443791167897,peer,laylaps,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,246118,0.4923912062783245,spot_peer,laylaps,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,246118,0.0,spot_baseline,laylaps,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,246118,-0.1132258925154493,relative_legacy,laylaps,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,247214,-129.11862254784717,peer,ajf-bot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,247214,-88.33261909831567,baseline,ajf-bot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,247214,-132.19280948873623,spot_baseline,ajf-bot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,247214,-189.8141454137385,spot_peer,ajf-bot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,247214,-1.8502891488680544,relative_legacy,ajf-bot,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,250015,30.57039815133068,peer,metac-deepseek-r1,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,250015,22.467583972115023,baseline,metac-deepseek-r1,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,250015,0.3473342428828324,relative_legacy,metac-deepseek-r1,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,250015,46.67130341419767,spot_peer,metac-deepseek-r1,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,250015,32.07730145437618,spot_baseline,metac-deepseek-r1,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,264059,13.828915405886796,spot_peer,wunderplumb,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,264059,2.478005356314623,baseline,wunderplumb,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,264059,3.2673143660935957,peer,wunderplumb,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,264059,0.0214930981779706,relative_legacy,wunderplumb,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,264059,9.263962415967429,spot_baseline,wunderplumb,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,264891,-49.68696504275962,peer,swingswish,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,264891,-35.98079763474144,spot_baseline,swingswish,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,264891,-0.759758219172541,relative_legacy,swingswish,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,264891,-51.30604631219187,spot_peer,swingswish,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,264891,-31.17220509254569,baseline,swingswish,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,265212,-16.08576987600482,baseline,4Shadower,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,265212,-0.4318065302562669,relative_legacy,4Shadower,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,265212,-21.720141207288748,spot_baseline,4Shadower,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,265212,-30.776214582821225,spot_peer,4Shadower,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35327,"What will be the ranking of the Joe Rogan Experience on the Spotify Podcast Charts on March 31, 2025?",2025-03-08 04:57:10.101409+00,265212,-25.64723217620506,peer,4Shadower,True,3 or 4,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35893 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,187708,-1.1434739362513382,spot_peer,twsummerbot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,187708,1.5065895372083788,baseline,twsummerbot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,187708,-0.0496528527288354,peer,twsummerbot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,187708,-0.001918652153809,relative_legacy,twsummerbot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,187708,34.695808473181195,spot_baseline,twsummerbot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,189869,33.98857240405088,baseline,VeritasAI,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,189869,-0.0162621833289833,relative_legacy,VeritasAI,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,189869,2.4536513900028907,spot_peer,VeritasAI,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,189869,37.84878473063623,spot_baseline,VeritasAI,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,189869,2.3700465104393134,peer,VeritasAI,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,191026,7.648032058000826,spot_baseline,manticAI,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,191026,4.479713222970668,baseline,manticAI,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,191026,-32.00137885445692,spot_peer,manticAI,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,191026,-0.2843915860117924,relative_legacy,manticAI,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,191026,-18.872026465875557,peer,manticAI,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,191935,9.93237589049486,baseline,pgodzinai,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,191935,-1.1780451495907107,peer,pgodzinai,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,191935,-0.0221144374178447,relative_legacy,pgodzinai,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,191935,-3.8932819582445135,spot_peer,pgodzinai,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,191935,32.28552842465917,spot_baseline,pgodzinai,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,191975,44.69084343681574,spot_baseline,jkraybill_bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,191975,8.467880065091467,baseline,jkraybill_bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,191975,1.9397299307878944,peer,jkraybill_bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,191975,0.0229790587091017,relative_legacy,jkraybill_bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,191975,10.259527694184854,spot_peer,jkraybill_bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,192075,-0.0568073230026226,relative_legacy,CumulativeBot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,192075,23.621002512875084,baseline,CumulativeBot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,192075,-1.7693938708005594,peer,CumulativeBot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,192075,33.6815651542671,spot_baseline,CumulativeBot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,192075,-2.300590270642907,spot_peer,CumulativeBot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,192924,0.0311811355872167,relative_legacy,acm_bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,192924,41.348096772912285,spot_baseline,acm_bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,192924,36.17766634241888,baseline,acm_bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,192924,5.650293331802762,peer,acm_bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,192924,6.445899648128931,spot_peer,acm_bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,220077,25.271129720828377,spot_baseline,mmBot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,220077,24.504992119117848,baseline,mmBot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,220077,-10.897081434257156,peer,mmBot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,220077,-0.1952814006431137,relative_legacy,mmBot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,220077,-11.89577521087706,spot_peer,mmBot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,227188,1.37922875361099,spot_peer,ProfessorSP,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,227188,36.90702464285426,spot_baseline,ProfessorSP,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,227188,0.7445443369755521,peer,ProfessorSP,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,227188,20.41768342371176,baseline,ProfessorSP,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,227188,-0.0103050977185725,relative_legacy,ProfessorSP,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236037,0.0379798136754532,relative_legacy,metac-o1,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236037,7.0376172254182165,spot_peer,metac-o1,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236037,41.866753006181376,spot_baseline,metac-o1,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236037,36.16408013012701,baseline,metac-o1,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236037,6.079718094691015,peer,metac-o1,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236038,40.3617425924056,baseline,metac-gpt-4o,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236038,45.58253107832961,spot_baseline,metac-gpt-4o,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236038,11.2768243486755,spot_peer,metac-gpt-4o,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236038,0.0910682434114382,relative_legacy,metac-gpt-4o,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236038,10.141231636691016,peer,metac-gpt-4o,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236040,-0.5364622256406891,relative_legacy,metac-claude-3-5-sonnet-latest,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236040,-39.79185388058787,spot_peer,metac-claude-3-5-sonnet-latest,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236040,0.8194729826723336,spot_baseline,metac-claude-3-5-sonnet-latest,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236040,-35.77743653736341,peer,metac-claude-3-5-sonnet-latest,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236040,0.7147215030555448,baseline,metac-claude-3-5-sonnet-latest,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236041,3.808054235722384,peer,metac-claude-3-5-sonnet-20240620,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236041,39.42066547118072,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236041,4.246957637804369,spot_peer,metac-claude-3-5-sonnet-20240620,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236041,34.88052760481205,baseline,metac-claude-3-5-sonnet-20240620,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236041,0.004574611371929,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236043,35.63836317169181,baseline,metac-grok-2-1212,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236043,40.47704780369384,spot_baseline,metac-grok-2-1212,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236043,4.832519941949401,peer,metac-grok-2-1212,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236043,0.0192694547226492,relative_legacy,metac-grok-2-1212,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236043,5.452148965682511,spot_peer,metac-grok-2-1212,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236045,34.58512098152469,baseline,metac-Gemini-Exp-1206,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236045,46.89697879603186,spot_baseline,metac-Gemini-Exp-1206,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236045,12.77643385705799,spot_peer,metac-Gemini-Exp-1206,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236045,0.0939657701270566,relative_legacy,metac-Gemini-Exp-1206,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236045,9.363308000685093,peer,metac-Gemini-Exp-1206,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236047,35.860208866821104,baseline,metac-Llama-3.1,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236047,8.821448389245933,peer,metac-Llama-3.1,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236047,0.0821949246742861,relative_legacy,metac-Llama-3.1,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236047,11.2768243486755,spot_peer,metac-Llama-3.1,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,236047,45.58253107832961,spot_baseline,metac-Llama-3.1,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,237476,0.9524670881302169,peer,NextWorldLab,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,237476,-0.0254501293678829,relative_legacy,NextWorldLab,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,237476,36.90702464285426,spot_baseline,NextWorldLab,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,237476,28.753645279741427,baseline,NextWorldLab,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,237476,1.37922875361099,spot_peer,NextWorldLab,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,239758,0.0048626577874695,relative_legacy,metac-perplexity,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,239758,33.45059185252893,baseline,metac-perplexity,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,239758,39.42066547118072,spot_baseline,metac-perplexity,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,239758,3.5437920724101715,peer,metac-perplexity,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,239758,4.246957637804369,spot_peer,metac-perplexity,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,239759,0.1782616624986458,relative_legacy,metac-exa,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,239759,51.97279809039444,spot_baseline,metac-exa,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,239759,45.40191614896535,baseline,metac-exa,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,239759,16.37802170773876,peer,metac-exa,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,239759,18.567266595512848,spot_peer,metac-exa,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,240416,5.140086086008767,baseline,metac-o1-preview,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,240416,-29.69710197469018,peer,metac-o1-preview,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,240416,5.98367935664682,spot_baseline,metac-o1-preview,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,240416,-0.4522738496042514,relative_legacy,metac-o1-preview,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,240416,-33.9001832744726,spot_peer,metac-o1-preview,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,246118,-16.637712617326702,peer,laylaps,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,246118,16.595623285353042,spot_baseline,laylaps,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,246118,-0.2653739300971935,relative_legacy,laylaps,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,246118,-21.79337080594157,spot_peer,laylaps,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,246118,12.476490358451382,baseline,laylaps,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,247214,0.3234794896431505,relative_legacy,ajf-bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,247214,69.55594134988894,spot_baseline,ajf-bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,247214,46.064565216009896,baseline,ajf-bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,247214,25.58374845433948,peer,ajf-bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,247214,38.62728759450892,spot_peer,ajf-bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,250015,3.8869989567800816,spot_peer,metac-deepseek-r1,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,250015,26.25745556315928,baseline,metac-deepseek-r1,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,250015,2.4598807365373445,peer,metac-deepseek-r1,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,250015,0.0036127087162349,relative_legacy,metac-deepseek-r1,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,250015,39.10515208980064,spot_baseline,metac-deepseek-r1,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,264059,-9.562055564701746,spot_peer,wunderplumb,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,264059,27.3166972139158,spot_baseline,wunderplumb,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,264059,7.3679605381270274,baseline,wunderplumb,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,264059,-2.560631500278533,peer,wunderplumb,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,264059,-0.0408409404653519,relative_legacy,wunderplumb,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,264332,0.3854780711645623,spot_peer,krm-bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,264332,0.141703845563006,peer,krm-bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,264332,11.205205925524105,baseline,krm-bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,264332,36.03597567363582,spot_baseline,krm-bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,264332,-0.0039400972519331,relative_legacy,krm-bot,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,264891,0.1958915198112639,relative_legacy,swingswish,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,264891,53.50264792820728,spot_baseline,swingswish,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,264891,17.534545797418133,peer,swingswish,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,264891,45.84392486529893,baseline,swingswish,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,264891,20.312621189906263,spot_peer,swingswish,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,265212,-3.72898891235376,spot_peer,4Shadower,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,265212,-0.0752026611505878,relative_legacy,4Shadower,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,265212,23.94137129822315,baseline,4Shadower,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,265212,32.42953565987496,spot_baseline,4Shadower,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35328,Who will win the 2025 Wisconsin Supreme Court Election?,2025-03-08 04:57:10.132724+00,265212,-2.905971708216067,peer,4Shadower,True,Susan Crawford,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35894 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,187708,4.6207988428244455,baseline,twsummerbot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,187708,8.298316198866804,peer,twsummerbot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,187708,0.0679628881703132,relative_legacy,twsummerbot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,187708,64.65334257782449,spot_peer,twsummerbot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,187708,36.00129031105616,spot_baseline,twsummerbot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,189869,-11.57730762721316,spot_baseline,VeritasAI,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,189869,-10.359784515033756,baseline,VeritasAI,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,189869,-9.95750527946757,peer,VeritasAI,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,189869,-0.1758128348047252,relative_legacy,VeritasAI,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,189869,-14.984448738177472,spot_peer,VeritasAI,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,191026,-96.23491133747956,spot_peer,manticAI,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,191026,-0.8506503401465655,relative_legacy,manticAI,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,191026,-60.119375763824266,spot_baseline,manticAI,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,191026,-35.22613277701378,baseline,manticAI,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,191026,-54.148897100129616,peer,manticAI,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,191935,0.0,spot_baseline,pgodzinai,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,191935,0.0,baseline,pgodzinai,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,191935,-0.0694896689911318,relative_legacy,pgodzinai,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,191935,4.393827393737855,spot_peer,pgodzinai,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,191935,3.5905250272471494,peer,pgodzinai,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,192924,45.34352709091627,peer,acm_bot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,192924,22.01785205995683,baseline,acm_bot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,192924,0.5762179807983062,relative_legacy,acm_bot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,192924,46.56219863698692,spot_peer,acm_bot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,192924,25.192963641259222,spot_baseline,acm_bot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,220077,13.86468838532139,spot_baseline,mmBot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,220077,13.367021843015236,baseline,mmBot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,220077,28.488301003902613,peer,mmBot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,220077,0.3501130715402415,relative_legacy,mmBot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,220077,27.600756730415647,spot_peer,mmBot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,224797,-27.68983186814748,baseline,cookics_bot_TEST,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,224797,-38.75129224128008,peer,cookics_bot_TEST,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,224797,-0.5784657239896933,relative_legacy,cookics_bot_TEST,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,224797,-48.7320374779252,spot_peer,cookics_bot_TEST,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,224797,-31.739380551401474,spot_baseline,cookics_bot_TEST,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,227188,13.86468838532139,spot_baseline,ProfessorSP,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,227188,27.600756730415647,spot_peer,ProfessorSP,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,227188,0.0922552748750699,relative_legacy,ProfessorSP,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,227188,15.128023772783088,peer,ProfessorSP,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,227188,6.753213905000593,baseline,ProfessorSP,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236037,-25.525108141247387,spot_peer,metac-o1,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236037,-15.371050637181256,baseline,metac-o1,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236037,-18.018039821839977,peer,metac-o1,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236037,-0.2975179606091671,relative_legacy,metac-o1,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236037,-17.87469216608008,spot_baseline,metac-o1,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236038,-0.2984269550074164,relative_legacy,metac-gpt-4o,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236038,-18.650241057283555,peer,metac-gpt-4o,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236038,-17.87469216608008,spot_baseline,metac-gpt-4o,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236038,-15.79069309284326,baseline,metac-gpt-4o,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236038,-25.525108141247387,spot_peer,metac-gpt-4o,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236040,8.120524396834275,peer,metac-claude-3-5-sonnet-latest,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236040,-0.0001247914034505,baseline,metac-claude-3-5-sonnet-latest,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236040,0.0678577776141317,relative_legacy,metac-claude-3-5-sonnet-latest,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236040,4.393827393737855,spot_peer,metac-claude-3-5-sonnet-latest,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236040,0.0,spot_baseline,metac-claude-3-5-sonnet-latest,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236041,-25.525108141247387,spot_peer,metac-claude-3-5-sonnet-20240620,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236041,-0.2981652409851876,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236041,-17.87469216608008,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236041,-15.763263930425865,baseline,metac-claude-3-5-sonnet-20240620,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236041,-18.57091079564664,peer,metac-claude-3-5-sonnet-20240620,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236043,-48.7320374779252,spot_peer,metac-grok-2-1212,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236043,-27.82763098485869,baseline,metac-grok-2-1212,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236043,-38.96870546196947,peer,metac-grok-2-1212,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236043,-31.739380551401474,spot_baseline,metac-grok-2-1212,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236043,-0.5800347166109975,relative_legacy,metac-grok-2-1212,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236045,12.109028303067731,baseline,metac-Gemini-Exp-1206,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236045,26.904540527258,peer,metac-Gemini-Exp-1206,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236045,0.2944680427733094,relative_legacy,metac-Gemini-Exp-1206,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236045,31.679710898356884,spot_peer,metac-Gemini-Exp-1206,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236045,16.301608309368916,spot_baseline,metac-Gemini-Exp-1206,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236047,-13.51775144646264,baseline,metac-Llama-3.1,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236047,-16.099094987994995,peer,metac-Llama-3.1,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236047,-0.2956874128531429,relative_legacy,metac-Llama-3.1,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236047,-17.87469216608008,spot_baseline,metac-Llama-3.1,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,236047,-25.525108141247387,spot_peer,metac-Llama-3.1,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,237476,-13.36116013273547,baseline,NextWorldLab,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,237476,-16.60368889162354,spot_baseline,NextWorldLab,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,237476,-23.39768325023961,spot_peer,NextWorldLab,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,237476,-0.2732068683281288,relative_legacy,NextWorldLab,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,237476,-15.27230550583368,peer,NextWorldLab,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,239758,0.8030799777498869,relative_legacy,metac-perplexity,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,239758,68.37313385912212,spot_peer,metac-perplexity,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,239758,38.223632880614325,spot_baseline,metac-perplexity,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,239758,32.31506140018673,baseline,metac-perplexity,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,239758,62.30952182092988,peer,metac-perplexity,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,239759,-19.486511504980705,baseline,metac-exa,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,239759,-22.161460295122552,spot_baseline,metac-exa,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,239759,-32.70036677589033,spot_peer,metac-exa,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,239759,-0.3853345547424057,relative_legacy,metac-exa,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,239759,-24.854908192457668,peer,metac-exa,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,240416,-18.928151811828787,baseline,metac-o1-preview,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,240416,-22.161460295122545,spot_baseline,metac-o1-preview,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,240416,-32.70036677589032,spot_peer,metac-o1-preview,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,240416,-0.3825391050293992,relative_legacy,metac-o1-preview,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,240416,-24.11223197568072,peer,metac-o1-preview,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,246118,24.1370978396547,peer,laylaps,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,246118,10.411031804916936,baseline,laylaps,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,246118,0.2578180229653633,relative_legacy,laylaps,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,246118,27.600756730415647,spot_peer,laylaps,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,246118,13.86468838532139,spot_baseline,laylaps,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,247214,42.66076341489173,spot_baseline,ajf-bot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,247214,38.48266451718912,baseline,ajf-bot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,247214,73.05146362949048,peer,ajf-bot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,247214,0.9532536868673912,relative_legacy,ajf-bot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,247214,75.80007140757856,spot_peer,ajf-bot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,250015,7.0198795346151,baseline,metac-deepseek-r1,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,250015,11.328275255937832,spot_baseline,metac-deepseek-r1,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,250015,23.35526930030911,spot_peer,metac-deepseek-r1,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,250015,0.1400070911844355,relative_legacy,metac-deepseek-r1,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,250015,17.123883233796494,peer,metac-deepseek-r1,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,264059,12.822199164774654,peer,wunderplumb,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,264059,25.192963641259237,spot_baseline,wunderplumb,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,264059,46.56219863698696,spot_peer,wunderplumb,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,264059,0.0846549420059164,relative_legacy,wunderplumb,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,264059,6.737067143285779,baseline,wunderplumb,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,264332,0.0265086934181493,relative_legacy,krm-bot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,264332,4.242940693122472,baseline,krm-bot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,264332,13.86468838532139,spot_baseline,krm-bot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,264332,8.995958863216721,peer,krm-bot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,264332,27.600756730415647,spot_peer,krm-bot,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,264891,-32.02350817315478,baseline,swingswish,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,264891,-57.78122068484669,spot_peer,swingswish,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,264891,-37.14570137418081,spot_baseline,swingswish,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,264891,-46.13945058306005,peer,swingswish,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,264891,-0.6831289506205253,relative_legacy,swingswish,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,265212,-0.2259944589966949,relative_legacy,4Shadower,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,265212,-10.770299567027193,peer,4Shadower,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,265212,-10.23959754009984,baseline,4Shadower,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,265212,-13.864688385321388,spot_baseline,4Shadower,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35329,"What will be the US frac spread count for the week ending March 28, 2025?",2025-03-08 04:57:10.164098+00,265212,-18.81310194293997,spot_peer,4Shadower,True,Under 211,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35895 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,187708,-16.59406549482958,baseline,twsummerbot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,187708,-12.072323846198996,peer,twsummerbot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,187708,-28.66347766452879,spot_peer,twsummerbot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,187708,-35.16148527418489,spot_baseline,twsummerbot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,187708,-0.6429289168330873,relative_legacy,twsummerbot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,189869,-130.79139972163006,spot_peer,VeritasAI,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,189869,-133.36141032908995,spot_baseline,VeritasAI,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,189869,-3.7765379079857815,relative_legacy,VeritasAI,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,189869,-115.39148413755558,peer,VeritasAI,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,189869,-121.31244413848982,baseline,VeritasAI,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,191026,34.66269765856932,peer,manticAI,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,191026,0.3287719178362819,relative_legacy,manticAI,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,191026,21.56667002605633,baseline,manticAI,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,191026,33.539472913710355,spot_peer,manticAI,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,191026,24.649044127968143,spot_baseline,manticAI,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,191975,1.1583981412890614,baseline,jkraybill_bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,191975,1.6519648171662,peer,jkraybill_bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,191975,0.0067354075195696,relative_legacy,jkraybill_bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,191975,29.197235230212467,spot_peer,jkraybill_bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,191975,20.47381558614325,spot_baseline,jkraybill_bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,192075,13.383213834830494,spot_peer,CumulativeBot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,192075,5.268025782891358,spot_baseline,CumulativeBot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,192075,-0.0852365871971225,relative_legacy,CumulativeBot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,192075,4.068557217875115,peer,CumulativeBot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,192075,1.4866602295302973,baseline,CumulativeBot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,192924,-99.67701401351393,spot_peer,acm_bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,192924,-83.17358947527656,peer,acm_bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,192924,-103.44373176359365,spot_baseline,acm_bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,192924,-2.9079454586848223,relative_legacy,acm_bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,192924,-90.61568062002796,baseline,acm_bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,220077,31.545734216510887,peer,mmBot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,220077,15.50107295418158,baseline,mmBot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,220077,16.238093684644447,spot_baseline,mmBot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,220077,0.1500006039145219,relative_legacy,mmBot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,220077,24.792084452653707,spot_peer,mmBot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,224797,17.165833812315856,baseline,cookics_bot_TEST,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,224797,29.996264398224216,peer,cookics_bot_TEST,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,224797,0.2019724494255468,relative_legacy,cookics_bot_TEST,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,224797,28.342681862322976,spot_peer,cookics_bot_TEST,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,224797,19.652129655480284,spot_baseline,cookics_bot_TEST,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236037,19.711358326589945,baseline,metac-o1,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236037,31.93031133564446,spot_peer,metac-o1,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236037,0.278190014018354,relative_legacy,metac-o1,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236037,23.10177337982786,spot_baseline,metac-o1,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236037,32.09060154886336,peer,metac-o1,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236038,4.627854300210139,baseline,metac-gpt-4o,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236038,13.383213834830494,spot_peer,metac-gpt-4o,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236038,5.268025782891358,spot_baseline,metac-gpt-4o,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236038,-0.1590901270880282,relative_legacy,metac-gpt-4o,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236038,17.123614007178233,peer,metac-gpt-4o,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236040,28.342681082323335,spot_peer,metac-claude-3-5-sonnet-latest,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236040,30.287996676618057,peer,metac-claude-3-5-sonnet-latest,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236040,19.65212890548064,spot_baseline,metac-claude-3-5-sonnet-latest,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236040,0.2046802364662827,relative_legacy,metac-claude-3-5-sonnet-latest,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236040,17.2708470317031,baseline,metac-claude-3-5-sonnet-latest,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236041,-0.1594276140211599,relative_legacy,metac-claude-3-5-sonnet-20240620,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236041,5.268025782890798,spot_baseline,metac-claude-3-5-sonnet-20240620,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236041,13.383213834829911,spot_peer,metac-claude-3-5-sonnet-20240620,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236041,17.078522584083405,peer,metac-claude-3-5-sonnet-20240620,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236041,4.636946724115471,baseline,metac-claude-3-5-sonnet-20240620,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236043,30.035648532908407,peer,metac-grok-2-1212,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236043,0.2022292105673038,relative_legacy,metac-grok-2-1212,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236043,28.342681862322976,spot_peer,metac-grok-2-1212,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236043,19.652129655480284,spot_baseline,metac-grok-2-1212,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236043,17.179705772242908,baseline,metac-grok-2-1212,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236045,13.383213834830494,spot_peer,metac-Gemini-Exp-1206,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236045,3.73528460877532,baseline,metac-Gemini-Exp-1206,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236045,12.435420936465333,peer,metac-Gemini-Exp-1206,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236045,-0.1272310308549504,relative_legacy,metac-Gemini-Exp-1206,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236045,5.268025782891358,spot_baseline,metac-Gemini-Exp-1206,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236047,12.974298759039092,peer,metac-Llama-3.1,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236047,-0.1319095505600009,relative_legacy,metac-Llama-3.1,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236047,13.383213834830494,spot_peer,metac-Llama-3.1,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236047,5.268025782891358,spot_baseline,metac-Llama-3.1,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,236047,3.869503496903026,baseline,metac-Llama-3.1,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,237476,28.342681862322976,spot_peer,NextWorldLab,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,237476,16.286397107527872,baseline,NextWorldLab,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,237476,27.83444602302379,peer,NextWorldLab,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,237476,0.1862962523732152,relative_legacy,NextWorldLab,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,237476,19.652129655480284,spot_baseline,NextWorldLab,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,239758,46.211986869259405,peer,metac-perplexity,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,239758,39.92538481088862,spot_baseline,metac-perplexity,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,239758,49.42686722394765,spot_peer,metac-perplexity,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,239758,0.6796865872580599,relative_legacy,metac-perplexity,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,239758,33.55000175593819,baseline,metac-perplexity,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,239759,-102.32007998008166,spot_baseline,metac-exa,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,239759,-2.898880862157201,relative_legacy,metac-exa,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,239759,-90.49184267605352,baseline,metac-exa,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,239759,-98.50841615866145,spot_peer,metac-exa,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,239759,-82.6926992617883,peer,metac-exa,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,240416,19.65212890548064,spot_baseline,metac-o1-preview,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,240416,28.342681082323335,spot_peer,metac-o1-preview,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,240416,0.1903806682131428,relative_legacy,metac-o1-preview,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,240416,28.64453860399068,peer,metac-o1-preview,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,240416,16.63759840800474,baseline,metac-o1-preview,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,246118,13.385424227753507,peer,laylaps,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,246118,13.383213834830494,spot_peer,laylaps,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,246118,5.268025782891358,spot_baseline,laylaps,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,246118,-0.1360557441094563,relative_legacy,laylaps,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,246118,3.961507891600327,baseline,laylaps,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,247214,17.474579527094967,baseline,ajf-bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,247214,30.468702450343255,peer,ajf-bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,247214,0.2105413093868058,relative_legacy,ajf-bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,247214,28.602033760897065,spot_peer,ajf-bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,247214,19.901506481032293,spot_baseline,ajf-bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,250015,3.3288073667179083,baseline,metac-deepseek-r1,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,250015,10.88934146675028,peer,metac-deepseek-r1,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,250015,-0.1148582276716473,relative_legacy,metac-deepseek-r1,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,250015,13.383213834830494,spot_peer,metac-deepseek-r1,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,250015,5.268025782891358,spot_baseline,metac-deepseek-r1,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,264059,10.83833123392875,baseline,wunderplumb,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,264059,49.42686722394765,spot_peer,wunderplumb,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,264059,39.92538481088862,spot_baseline,wunderplumb,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,264059,0.1881528603675367,relative_legacy,wunderplumb,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,264059,13.686033272168482,peer,wunderplumb,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,264332,41.96648469690117,spot_baseline,krm-bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,264332,51.54961110540069,spot_peer,krm-bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,264332,12.31443900496176,baseline,krm-bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,264332,0.2232105355453253,relative_legacy,krm-bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,264332,15.480931800237636,peer,krm-bot,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,264891,-160.2679423219077,peer,swingswish,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,264891,-189.6032941183377,spot_peer,swingswish,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,264891,-189.9113087874627,spot_baseline,swingswish,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,264891,-163.82230731730755,baseline,swingswish,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,264891,-5.017324460093611,relative_legacy,swingswish,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,265212,13.383213834830494,spot_peer,4Shadower,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,265212,-0.1325785885478709,relative_legacy,4Shadower,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,265212,13.045312975698405,peer,4Shadower,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,265212,3.8862084416392046,baseline,4Shadower,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35330,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on March 28, 2025?",2025-03-08 04:57:10.19476+00,265212,5.268025782891358,spot_baseline,4Shadower,True,188.28,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35896 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,187708,44.78441194233957,baseline,twsummerbot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,187708,0.1831251413760108,relative_legacy,twsummerbot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,187708,91.9912088677308,spot_baseline,twsummerbot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,187708,31.441979177496584,spot_peer,twsummerbot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,187708,15.441157262782005,peer,twsummerbot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,189869,24.22695512579018,baseline,VeritasAI,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,189869,-12.776244854742012,peer,VeritasAI,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,189869,-0.2458932108310239,relative_legacy,VeritasAI,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,189869,-15.659356736544646,spot_peer,VeritasAI,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,190710,14.100857655018908,spot_peer,Bot_Pepa,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,190710,13.527323685274045,peer,Bot_Pepa,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,190710,56.17386092609889,baseline,Bot_Pepa,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,190710,67.80719051126377,spot_baseline,Bot_Pepa,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,190710,0.1190715666688637,relative_legacy,Bot_Pepa,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,191026,-4.807291396455991,peer,manticAI,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,191026,-8.982957998175204,spot_peer,manticAI,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,191026,35.61438102252753,spot_baseline,manticAI,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,191026,20.874706563167692,baseline,manticAI,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,191026,-0.1041737193799119,relative_legacy,manticAI,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,191935,9.994846842842934,peer,pgodzinai,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,191935,29.268283159443374,baseline,pgodzinai,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,191935,0.1262196137621442,relative_legacy,pgodzinai,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,191935,29.677360256333483,spot_peer,pgodzinai,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,191935,89.53026213333065,spot_baseline,pgodzinai,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,191975,0.0654796275610522,relative_legacy,jkraybill_bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,191975,17.451186865276174,spot_peer,jkraybill_bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,191975,72.47957707034791,spot_baseline,jkraybill_bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,191975,26.302418541969534,baseline,jkraybill_bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,191975,6.285241487177809,peer,jkraybill_bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,192924,14.100857655018908,spot_peer,acm_bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,192924,0.1258137048307109,relative_legacy,acm_bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,192924,14.55204797249349,peer,acm_bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,192924,58.8515708947147,baseline,acm_bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,192924,67.80719051126377,spot_baseline,acm_bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,204737,13.796989280641228,baseline,SynapseSeer,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,204737,-17.529528408733754,peer,SynapseSeer,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,204737,-0.3129490989621306,relative_legacy,SynapseSeer,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,204737,16.349873228287958,spot_baseline,SynapseSeer,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,204737,-22.79655033864305,spot_peer,SynapseSeer,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,220077,0.0506207559956387,relative_legacy,mmBot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,220077,9.500483052509994,peer,mmBot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,220077,58.496250072115615,spot_baseline,mmBot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,220077,7.424458916649478,spot_peer,mmBot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,220077,55.51638078609525,baseline,mmBot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,224797,23.005464576574752,baseline,cookics_bot_TEST,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,224797,-15.659356736544646,spot_peer,cookics_bot_TEST,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,224797,26.303440583379377,spot_baseline,cookics_bot_TEST,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,224797,-0.2354444308659925,relative_legacy,cookics_bot_TEST,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,224797,-11.574034429897004,peer,cookics_bot_TEST,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,227188,36.14498339233356,spot_peer,ProfessorSP,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,227188,98.5500430304885,spot_baseline,ProfessorSP,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,227188,0.188300190015506,relative_legacy,ProfessorSP,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,227188,15.676103399438354,peer,ProfessorSP,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,227188,42.70472578647542,baseline,ProfessorSP,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236037,49.637073544335,baseline,metac-o1,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236037,0.0427063171909364,relative_legacy,metac-o1,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236037,7.424458916649478,spot_peer,metac-o1,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236037,8.29221881655095,peer,metac-o1,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236037,58.496250072115615,spot_baseline,metac-o1,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236038,-87.36423748412517,spot_peer,metac-gpt-4o,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236038,-73.69655941662059,spot_baseline,metac-gpt-4o,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236038,-1.1119564775660338,relative_legacy,metac-gpt-4o,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236038,-75.16096253013906,peer,metac-gpt-4o,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236038,-64.5702478375228,baseline,metac-gpt-4o,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236040,8.845799398556611,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236040,51.1591198649944,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236040,7.424458916649478,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236040,0.0460625609155003,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236041,42.53058824511806,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236041,0.2872653145510521,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236041,48.54268271702416,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236041,-0.0410346503175932,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236041,2.5443738670534675,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236043,-74.61100484114338,peer,metac-grok-2-1212,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236043,-1.1044014478185882,relative_legacy,metac-grok-2-1212,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236043,-87.36423748412517,spot_peer,metac-grok-2-1212,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236043,-73.69655941662059,spot_baseline,metac-grok-2-1212,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236043,-64.10429217270844,baseline,metac-grok-2-1212,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236045,-0.0284001828094917,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236045,0.2872653145510521,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236045,48.54268271702416,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236045,33.03733017175802,baseline,metac-Gemini-Exp-1206,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236045,1.0932119419769784,peer,metac-Gemini-Exp-1206,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236047,-0.0284610744709508,relative_legacy,metac-Llama-3.1,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236047,34.78394268253176,baseline,metac-Llama-3.1,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236047,1.2550066515515352,peer,metac-Llama-3.1,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,236047,0.2872653145510521,spot_peer,metac-Llama-3.1,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,237476,22.728231909855943,baseline,NextWorldLab,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,237476,-0.2335522799680209,relative_legacy,NextWorldLab,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,237476,-11.557531775351812,peer,NextWorldLab,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,237476,-15.659356736544646,spot_peer,NextWorldLab,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,237476,26.303440583379377,spot_baseline,NextWorldLab,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,239758,20.372370256719066,spot_peer,metac-perplexity,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,239758,18.995226881769494,peer,metac-perplexity,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,239758,64.00835614403348,baseline,metac-perplexity,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,239758,0.1929221073164183,relative_legacy,metac-perplexity,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,239759,0.3510765921676174,relative_legacy,metac-exa,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,239759,82.72453002511202,baseline,metac-exa,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,239759,31.171625370578795,peer,metac-exa,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,239759,31.87847044053537,spot_peer,metac-exa,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,240416,0.177607929086354,relative_legacy,metac-o1-preview,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,240416,48.18380480494739,baseline,metac-o1-preview,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,240416,15.367791467451152,peer,metac-o1-preview,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,240416,26.28530961947236,spot_peer,metac-o1-preview,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,241715,19.23578173189984,baseline,CatrachoCaster,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,241715,-8.541388203372573,peer,CatrachoCaster,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,241715,-0.1615245369866879,relative_legacy,CatrachoCaster,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,241715,-13.949428948488375,spot_peer,CatrachoCaster,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,241715,28.688114778816157,spot_baseline,CatrachoCaster,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,246118,0.2393698819828677,relative_legacy,laylaps,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,246118,26.28530961947236,spot_peer,laylaps,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,246118,63.65058168452708,baseline,laylaps,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,246118,84.79969065549501,spot_baseline,laylaps,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,246118,21.0665332163941,peer,laylaps,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,247214,96.51378124631812,spot_baseline,ajf-bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,247214,34.684884308285646,spot_peer,ajf-bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,247214,83.24084600179907,baseline,ajf-bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,247214,32.3099921534595,peer,ajf-bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,247214,0.3719952469640971,relative_legacy,ajf-bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,250015,-0.0913461089004527,relative_legacy,metac-deepseek-r1,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,250015,-7.379076632385693,spot_peer,metac-deepseek-r1,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,250015,-3.871261259812104,peer,metac-deepseek-r1,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,250015,22.29049054069275,baseline,metac-deepseek-r1,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,264059,26.303440583379377,spot_baseline,wunderplumb,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,264059,7.041248513293679,baseline,wunderplumb,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,264059,-4.2093639596013,peer,wunderplumb,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,264059,-0.0624874941053677,relative_legacy,wunderplumb,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,264059,-15.659356736544646,spot_peer,wunderplumb,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,264332,-0.0821636215977869,relative_legacy,krm-bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,264332,-4.981860006376963,peer,krm-bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,264332,8.288243908425741,baseline,krm-bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,264332,26.303440583379377,spot_baseline,krm-bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,264332,-15.659356736544646,spot_peer,krm-bot,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,264891,-0.0417440940552896,relative_legacy,swingswish,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,264891,2.3298750505206867,peer,swingswish,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,264891,41.83876476229324,baseline,swingswish,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,264891,48.54268271702416,spot_baseline,swingswish,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,264891,0.2872653145510521,spot_peer,swingswish,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,265212,48.54268271702416,spot_baseline,4Shadower,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,265212,1.3716131472441666,peer,4Shadower,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,265212,0.2872653145510521,spot_peer,4Shadower,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,265212,-0.0307632712272308,relative_legacy,4Shadower,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35331,"Will Javier Milei have a higher approval rating than Claudia Sheinbaum on March 30, 2025?",2025-03-08 04:57:10.226051+00,265212,35.92920053303401,baseline,4Shadower,True,no,2025-03-10 12:00:00+00,2025-03-10 12:00:00+00,1.0,2025-03-10 12:00:00+00,35897 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,187708,17.3619219388953,spot_peer,twsummerbot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,187708,1.7462976525881135,peer,twsummerbot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,187708,-3.4574520895200163,baseline,twsummerbot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,187708,-34.3744453855,spot_baseline,twsummerbot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,187708,0.0249123676379059,relative_legacy,twsummerbot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,189869,-0.9759092892869063,relative_legacy,VeritasAI,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,189869,-75.20386983881366,spot_baseline,VeritasAI,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,189869,-24.784580722589755,spot_peer,VeritasAI,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,189869,-26.655228537142825,peer,VeritasAI,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,189869,-67.65676005795375,baseline,VeritasAI,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,190710,-75.20386983881366,spot_baseline,Bot_Pepa,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,190710,-58.64565551936178,baseline,Bot_Pepa,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,190710,-22.384668298045543,peer,Bot_Pepa,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,190710,-0.8387956355816921,relative_legacy,Bot_Pepa,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,190710,-24.784580722589755,spot_peer,Bot_Pepa,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,191026,-0.5775957974881528,relative_legacy,manticAI,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,191026,-52.51042654676674,baseline,manticAI,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,191026,-11.956782715897486,peer,manticAI,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,191026,-9.686729287341729,spot_peer,manticAI,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,191026,-60.577826260917135,spot_baseline,manticAI,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,191935,-1.3561727567500077,peer,pgodzinai,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,191935,-51.683904790945775,spot_baseline,pgodzinai,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,191935,-26.676945675200347,baseline,pgodzinai,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,191935,-0.1552238511974599,relative_legacy,pgodzinai,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,191935,-0.5059071247906513,spot_peer,pgodzinai,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,191975,-65.91811209918069,baseline,jkraybill_bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,191975,-1.5335756062266386,relative_legacy,jkraybill_bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,191975,-52.49264405172483,peer,jkraybill_bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,191975,-224.9904835165131,spot_baseline,jkraybill_bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,191975,-179.40302064795694,spot_peer,jkraybill_bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,192075,-45.60923299812159,baseline,CumulativeBot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,192075,-0.5220343612930335,relative_legacy,CumulativeBot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,192075,-13.267494203146672,spot_peer,CumulativeBot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,192075,-64.04669227310316,spot_baseline,CumulativeBot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,192075,-11.937774274149598,peer,CumulativeBot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,192924,-3.85734933636192,spot_peer,acm_bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,192924,-0.4404957210387968,relative_legacy,acm_bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,192924,-6.928615912356199,peer,acm_bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,192924,-54.930614433405445,spot_baseline,acm_bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,192924,-48.68724495569993,baseline,acm_bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,218666,19.652128905480424,spot_baseline,GreeneiBot2,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,218666,1.1955642061995138,relative_legacy,GreeneiBot2,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,218666,49.73663604125528,peer,GreeneiBot2,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,218666,73.13128894893963,spot_peer,GreeneiBot2,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,218666,13.965336535255709,baseline,GreeneiBot2,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,220077,37.54946687807606,peer,mmBot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,220077,0.7682588350815616,relative_legacy,mmBot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,220077,44.57414214959163,spot_peer,mmBot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,220077,-8.012607056387939,spot_baseline,mmBot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,220077,-7.964469062417223,baseline,mmBot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,222631,-49.6625876505142,spot_baseline,Grizeu_Bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,222631,1.5806137943645364,spot_peer,Grizeu_Bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,222631,-35.681882007200755,baseline,Grizeu_Bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,222631,-0.2304483397721932,relative_legacy,Grizeu_Bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,222631,-1.3643923175853487,peer,Grizeu_Bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,224797,-40.54651081081639,spot_baseline,cookics_bot_TEST,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,224797,5.85329891126355,peer,cookics_bot_TEST,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,224797,-0.0672072062034819,relative_legacy,cookics_bot_TEST,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,224797,-33.26194380291776,baseline,cookics_bot_TEST,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,224797,10.99075762889129,spot_peer,cookics_bot_TEST,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236037,-0.0768102584156009,relative_legacy,metac-o1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236037,-35.05939080310272,baseline,metac-o1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236037,-40.54651081081639,spot_baseline,metac-o1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236037,10.99075762889129,spot_peer,metac-o1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236037,6.110908931577417,peer,metac-o1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236038,-24.784580722589755,spot_peer,metac-gpt-4o,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236038,-65.86482633134696,baseline,metac-gpt-4o,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236038,-25.37607475203127,peer,metac-gpt-4o,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236038,-0.9508801044069246,relative_legacy,metac-gpt-4o,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236038,-75.20386983881366,spot_baseline,metac-gpt-4o,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236040,0.3733471305454924,relative_legacy,metac-claude-3-5-sonnet-latest,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236040,22.491633659628707,peer,metac-claude-3-5-sonnet-latest,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236040,-22.712762863879863,spot_baseline,metac-claude-3-5-sonnet-latest,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236040,-19.844942399199365,baseline,metac-claude-3-5-sonnet-latest,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236040,29.399787767664485,spot_peer,metac-claude-3-5-sonnet-latest,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236041,-49.6625876505142,spot_baseline,metac-claude-3-5-sonnet-20240620,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236041,1.5806137943645364,spot_peer,metac-claude-3-5-sonnet-20240620,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236041,-0.305330286971597,relative_legacy,metac-claude-3-5-sonnet-20240620,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236041,-2.028721975249593,peer,metac-claude-3-5-sonnet-20240620,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236041,-43.54642817991312,baseline,metac-claude-3-5-sonnet-20240620,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236043,-22.383427233530007,baseline,metac-grok-2-1212,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236043,0.2997290564407212,relative_legacy,metac-grok-2-1212,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236043,26.39235967352361,spot_peer,metac-grok-2-1212,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236043,-25.626208830078824,spot_baseline,metac-grok-2-1212,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236043,19.82702708706845,peer,metac-grok-2-1212,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236045,29.399787767664485,spot_peer,metac-Gemini-Exp-1206,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236045,-22.712762863879863,spot_baseline,metac-Gemini-Exp-1206,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236045,21.814335665497133,peer,metac-Gemini-Exp-1206,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236045,-19.37020995148073,baseline,metac-Gemini-Exp-1206,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236045,0.3611827960475649,relative_legacy,metac-Gemini-Exp-1206,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236047,36.47598926052608,peer,metac-Llama-3.1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236047,0.770010436362655,relative_legacy,metac-Llama-3.1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236047,46.766095980372334,spot_peer,metac-Llama-3.1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236047,-5.889151782819132,spot_baseline,metac-Llama-3.1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,236047,-4.986463813107124,baseline,metac-Llama-3.1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,237476,73.13128972313324,spot_peer,NextWorldLab,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,237476,1.2549207572259633,relative_legacy,NextWorldLab,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,237476,52.718124485216286,peer,NextWorldLab,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,237476,14.851834286884554,baseline,NextWorldLab,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,237476,19.65212965548049,spot_baseline,NextWorldLab,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,239758,-0.0768328960859723,relative_legacy,metac-perplexity,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,239758,10.99075762889129,spot_peer,metac-perplexity,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,239758,-40.54651081081639,spot_baseline,metac-perplexity,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,239758,6.106478019555723,peer,metac-perplexity,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,239758,-35.04515055146165,baseline,metac-perplexity,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,239759,0.5504458421154325,relative_legacy,metac-exa,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,239759,-12.803214904456578,baseline,metac-exa,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,239759,-15.005228622516931,spot_baseline,metac-exa,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,239759,28.64008143032305,peer,metac-exa,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,239759,37.35595214584559,spot_peer,metac-exa,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,240414,-17.01071488346477,peer,minefrac1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,240414,-46.49015865487196,baseline,minefrac1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,240414,-0.6200492715640624,relative_legacy,minefrac1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,240414,-24.784580722589755,spot_peer,minefrac1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,240414,-75.20386983881366,spot_baseline,minefrac1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,240416,10.99075762889129,spot_peer,metac-o1-preview,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,240416,-23.32431075385387,baseline,metac-o1-preview,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,240416,4.93000703266104,peer,metac-o1-preview,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,240416,0.0039811587217391,relative_legacy,metac-o1-preview,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,240416,-40.54651081081639,spot_baseline,metac-o1-preview,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,246118,-24.784580722589755,spot_peer,laylaps,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,246118,-49.942671741698376,baseline,laylaps,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,246118,-18.50349916008931,peer,laylaps,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,246118,-0.6800075018801276,relative_legacy,laylaps,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,246118,-75.20386983881366,spot_baseline,laylaps,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,247214,-109.86122886681092,spot_baseline,ajf-bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,247214,-96.5658199610822,baseline,ajf-bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,247214,-57.2514890064074,peer,ajf-bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,247214,-1.831456833415129,relative_legacy,ajf-bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,247214,-60.5599190740708,spot_peer,ajf-bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,250015,8.031000161672234,peer,metac-deepseek-r1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,250015,-28.6347791435369,baseline,metac-deepseek-r1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,250015,-37.45274002491212,spot_baseline,metac-deepseek-r1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,250015,14.184327472405382,spot_peer,metac-deepseek-r1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,250015,0.0100934019049475,relative_legacy,metac-deepseek-r1,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264059,4.441732840373966,peer,wunderplumb,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264059,10.99075762889129,spot_peer,wunderplumb,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264059,0.0125514268109965,relative_legacy,wunderplumb,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264059,-19.886633184485305,baseline,wunderplumb,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264059,-40.54651081081639,spot_baseline,wunderplumb,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264225,-75.20386983881366,spot_baseline,KevinTestBot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264225,-0.6351934341285099,relative_legacy,KevinTestBot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264225,-47.417242841120135,baseline,KevinTestBot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264225,-17.39920858810175,peer,KevinTestBot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264225,-24.784580722589755,spot_peer,KevinTestBot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264332,-10.505707012880311,baseline,krm-bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264332,-47.09792293113675,spot_baseline,krm-bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264332,4.228009633721889,spot_peer,krm-bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264332,-0.022851998048861,relative_legacy,krm-bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264332,1.0123104545136417,peer,krm-bot,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264891,-24.784580722589755,spot_peer,swingswish,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264891,-60.97071983992109,baseline,swingswish,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264891,-23.376108382285505,peer,swingswish,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264891,-0.8749836472288627,relative_legacy,swingswish,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,264891,-75.20386983881366,spot_baseline,swingswish,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,265212,-64.04669227310316,spot_baseline,4Shadower,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,265212,-44.31995662623583,baseline,4Shadower,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,265212,-0.4976542907085192,relative_legacy,4Shadower,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,265212,-13.267494203146672,spot_peer,4Shadower,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35332,"What will the ratio of the price of 1 bitcoin to 1 troy ounce of gold be on March 30, 2025?",2025-03-08 04:57:10.567731+00,265212,-11.46323290051584,peer,4Shadower,True,26.45130527,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35898 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,189869,-0.5347703250949022,relative_legacy,VeritasAI,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,189869,-32.150794502034735,peer,VeritasAI,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,189869,-10.687674110133912,baseline,VeritasAI,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,189869,-11.702481351562612,spot_baseline,VeritasAI,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,189869,-37.41461720859357,spot_peer,VeritasAI,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,190710,-4.406242421417452,spot_baseline,Bot_Pepa,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,190710,-3.419926741370075,baseline,Bot_Pepa,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,190710,-17.14353613935627,peer,Bot_Pepa,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,190710,-21.7530922234421,spot_peer,Bot_Pepa,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,190710,-0.2824383961548775,relative_legacy,Bot_Pepa,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,191026,1.4925965220604005,baseline,manticAI,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,191026,-7.773046316241686,peer,manticAI,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,191026,-0.1643619184245129,relative_legacy,manticAI,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,191026,-8.468166292803044,spot_peer,manticAI,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,191026,1.7828096569160348,spot_baseline,manticAI,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,191935,35.25332528027788,peer,pgodzinai,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,191935,62.30690448773866,spot_peer,pgodzinai,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,191935,34.75481124694979,spot_baseline,pgodzinai,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,191935,19.28968937567177,baseline,pgodzinai,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,191935,0.4462215970248953,relative_legacy,pgodzinai,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,191975,3.6585822437293896,peer,jkraybill_bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,191975,38.25738402737789,spot_peer,jkraybill_bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,191975,23.55085456964224,spot_baseline,jkraybill_bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,191975,2.2521858340205947,baseline,jkraybill_bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,191975,0.0353545552749824,relative_legacy,jkraybill_bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,192075,0.4615474806167808,relative_legacy,CumulativeBot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,192075,30.01547754830285,spot_baseline,CumulativeBot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,192075,52.13382848995844,spot_peer,CumulativeBot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,192075,20.77506350780216,baseline,CumulativeBot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,192075,36.2659237383873,peer,CumulativeBot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,192924,10.256781838917412,spot_baseline,acm_bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,192924,0.0378343981752437,relative_legacy,acm_bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,192924,8.99960166674361,baseline,acm_bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,192924,8.282391715237738,peer,acm_bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,192924,9.721387026725196,spot_peer,acm_bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,218666,72.7811713434661,spot_peer,GreeneiBot2,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,218666,25.54755063984553,baseline,GreeneiBot2,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,218666,39.634460813000565,spot_baseline,GreeneiBot2,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,218666,0.6163908192391742,relative_legacy,GreeneiBot2,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,218666,47.27609032017518,peer,GreeneiBot2,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,220077,-106.87985315619883,spot_peer,mmBot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,220077,-43.54275164345778,baseline,mmBot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,220077,-98.02288114222677,peer,mmBot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,220077,-44.06426982957875,spot_baseline,mmBot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,220077,-1.4214342004308946,relative_legacy,mmBot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,222631,-7.627289683196027,spot_baseline,Grizeu_Bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,222631,-0.3271516616217503,relative_legacy,Grizeu_Bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,222631,-20.36206622464925,peer,Grizeu_Bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,222631,-5.41885245660577,baseline,Grizeu_Bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,222631,-28.667135561616497,spot_peer,Grizeu_Bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,224797,-38.614312086816106,spot_baseline,cookics_bot_TEST,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,224797,-95.1814082212824,spot_peer,cookics_bot_TEST,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,224797,-1.1480269900256186,relative_legacy,cookics_bot_TEST,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,224797,-79.11876784273065,peer,cookics_bot_TEST,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,224797,-31.72883769893001,baseline,cookics_bot_TEST,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,227188,-68.62978963511897,spot_baseline,ProfessorSP,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,227188,-36.6127512595036,baseline,ProfessorSP,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,227188,-159.61024012559145,spot_peer,ProfessorSP,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,227188,-1.2267350560574235,relative_legacy,ProfessorSP,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,227188,-84.56283102207027,peer,ProfessorSP,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236037,69.0638049872802,peer,metac-o1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236037,44.29454880765133,spot_baseline,metac-o1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236037,37.04880883001551,baseline,metac-o1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236037,82.78414482884448,spot_peer,metac-o1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236037,0.9028403690179992,relative_legacy,metac-o1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236038,14.786888382520493,spot_baseline,metac-gpt-4o,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236038,0.1564785882875412,relative_legacy,metac-gpt-4o,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236038,16.55241890911806,peer,metac-gpt-4o,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236038,12.89215013858096,baseline,metac-gpt-4o,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236038,19.445352688664705,spot_peer,metac-gpt-4o,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236040,-5.455757803470745,baseline,metac-claude-3-5-sonnet-latest,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236040,-6.246571937499324,spot_baseline,metac-claude-3-5-sonnet-latest,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236040,-25.70339689040488,spot_peer,metac-claude-3-5-sonnet-latest,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236040,-0.3933220607189324,relative_legacy,metac-claude-3-5-sonnet-latest,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236040,-23.24469043804345,peer,metac-claude-3-5-sonnet-latest,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236041,-15.797706277747078,spot_baseline,metac-claude-3-5-sonnet-20240620,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236041,-46.20510065017367,spot_peer,metac-claude-3-5-sonnet-20240620,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236041,-0.6440192478426294,relative_legacy,metac-claude-3-5-sonnet-20240620,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236041,-41.27506710748104,peer,metac-claude-3-5-sonnet-20240620,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236041,-13.80788761470174,baseline,metac-claude-3-5-sonnet-20240620,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236043,22.82548388445576,spot_peer,metac-grok-2-1212,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236043,14.20078079925676,baseline,metac-grok-2-1212,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236043,0.1964132216090074,relative_legacy,metac-grok-2-1212,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236043,19.30679422554889,peer,metac-grok-2-1212,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236043,16.3615910275765,spot_baseline,metac-grok-2-1212,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236045,19.84396828259992,baseline,metac-Gemini-Exp-1206,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236045,24.023874750704383,spot_baseline,metac-Gemini-Exp-1206,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236045,39.27273144885251,spot_peer,metac-Gemini-Exp-1206,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236045,0.395610825497655,relative_legacy,metac-Gemini-Exp-1206,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236045,32.130342180636426,peer,metac-Gemini-Exp-1206,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236047,-19.685316001396643,spot_peer,metac-Llama-3.1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236047,-3.442926947067393,spot_baseline,metac-Llama-3.1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236047,-2.902766973394312,baseline,metac-Llama-3.1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236047,-17.35653365023564,peer,metac-Llama-3.1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,236047,-0.2989628300451125,relative_legacy,metac-Llama-3.1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,237476,2.45159475708344,baseline,NextWorldLab,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,237476,-4.779973557836557,peer,NextWorldLab,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,237476,3.09162285131746,spot_baseline,NextWorldLab,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,237476,-5.658772200687434,spot_peer,NextWorldLab,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,237476,-0.109552362894133,relative_legacy,NextWorldLab,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,239758,31.89372902092782,baseline,metac-perplexity,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,239758,0.7476027310473302,relative_legacy,metac-perplexity,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,239758,38.09133907053607,spot_baseline,metac-perplexity,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,239758,69.46882919621446,spot_peer,metac-perplexity,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,239758,57.91218380400744,peer,metac-perplexity,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,239759,0.9282502084175822,relative_legacy,metac-exa,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,239759,38.498259913687576,baseline,metac-exa,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,239759,71.917068594292,peer,metac-exa,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,239759,44.599882117167205,spot_baseline,metac-exa,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,239759,83.43954897631893,spot_peer,metac-exa,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,240414,-0.338348740666149,relative_legacy,minefrac1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,240414,-6.589489637229006,baseline,minefrac1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,240414,-10.73093649624541,spot_baseline,minefrac1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,240414,-35.32917645323675,spot_peer,minefrac1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,240414,-21.23847286220839,peer,minefrac1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,240416,47.44438335753597,baseline,metac-o1-preview,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,240416,54.73065463654388,spot_baseline,metac-o1-preview,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,240416,105.18545785487412,spot_peer,metac-o1-preview,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,240416,1.1941073138094196,relative_legacy,metac-o1-preview,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,240416,91.2928966468259,peer,metac-o1-preview,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,246118,36.22150024972534,spot_peer,laylaps,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,246118,0.2940427440097682,relative_legacy,laylaps,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,246118,22.602396837087927,spot_baseline,laylaps,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,246118,24.216259740071965,peer,laylaps,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,246118,14.958660689358496,baseline,laylaps,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,247214,10.451863378627186,baseline,ajf-bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,247214,0.0856153586948415,relative_legacy,ajf-bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,247214,12.771175812929426,spot_peer,ajf-bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,247214,11.677587775230784,spot_baseline,ajf-bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,247214,12.436998351125649,peer,ajf-bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,250015,-0.4534452503314627,spot_baseline,metac-deepseek-r1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,250015,-0.3412109862031343,baseline,metac-deepseek-r1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,250015,-9.34662569484032,peer,metac-deepseek-r1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,250015,-0.1738872356270581,relative_legacy,metac-deepseek-r1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,250015,-13.26833284961939,spot_peer,metac-deepseek-r1,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264059,20.447542401992628,baseline,wunderplumb,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264059,42.10114686112646,spot_baseline,wunderplumb,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264059,78.07596302218101,spot_peer,wunderplumb,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264059,0.4920887411337135,relative_legacy,wunderplumb,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264059,38.433251942340064,peer,wunderplumb,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264225,-0.3454178958984811,relative_legacy,KevinTestBot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264225,-35.32917645323675,spot_peer,KevinTestBot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264225,-10.73093649624541,spot_baseline,KevinTestBot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264225,-6.719482371823934,baseline,KevinTestBot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264225,-21.740773764947384,peer,KevinTestBot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264332,-33.017333866341225,baseline,krm-bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264332,-1.1251726573907652,relative_legacy,krm-bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264332,-57.26189237395006,spot_baseline,krm-bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264332,-77.4037080081878,peer,krm-bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264332,-135.20881787379992,spot_peer,krm-bot,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264891,-7.1354411829184325,peer,swingswish,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264891,1.5341394931377086,baseline,swingswish,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264891,1.8861176122122505,spot_baseline,swingswish,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264891,-0.1445980951955142,relative_legacy,swingswish,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,264891,-8.246413669495738,spot_peer,swingswish,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,265212,3.284521563391856,baseline,4Shadower,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,265212,-1.3431232230451258,peer,4Shadower,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,265212,4.758005737202729,spot_baseline,4Shadower,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,265212,-2.081847506747652,spot_peer,4Shadower,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35333,"What will the number of active US drilling rigs be on March 28, 2025?",2025-03-08 04:57:10.60447+00,265212,-0.0628398417085215,relative_legacy,4Shadower,True,590 to 594,2025-03-10 15:00:00+00,2025-03-10 15:00:00+00,1.0,2025-03-10 15:00:00+00,35899 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,185699,84.34613680242894,spot_baseline,MWG,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,185699,8.65957526220701,peer,MWG,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,185699,60.77717398796128,baseline,MWG,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,185699,11.312496393584048,spot_peer,MWG,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,185699,-0.0308555926387375,relative_legacy,MWG,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,189869,-9.488190574664635,peer,VeritasAI,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,189869,-11.098266260250384,spot_peer,VeritasAI,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,189869,64.70250580540151,spot_baseline,VeritasAI,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,189869,57.1960365076579,baseline,VeritasAI,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,189869,-0.3177239686338354,relative_legacy,VeritasAI,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,190710,69.83075994777715,baseline,Bot_Pepa,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,190710,12.294500437949274,spot_peer,Bot_Pepa,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,190710,-0.0262993782279314,relative_legacy,Bot_Pepa,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,190710,11.210326446405295,peer,Bot_Pepa,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,190710,85.20688953017238,spot_baseline,Bot_Pepa,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,191026,15.845804773524623,peer,manticAI,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,191026,90.40967257106156,spot_baseline,manticAI,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,191026,18.2301818751747,spot_peer,manticAI,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,191026,0.0409751144389404,relative_legacy,manticAI,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,191026,73.26158619515469,baseline,manticAI,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,191935,53.27066653717125,baseline,pgodzinai,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,191935,20.51260680366291,spot_peer,pgodzinai,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,191935,0.0502718326219122,relative_legacy,pgodzinai,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,191935,12.051678734475756,peer,pgodzinai,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,191935,92.4102788764417,spot_baseline,pgodzinai,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,192418,0.0722360694736303,relative_legacy,InstitutPelFutur,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,192418,18.902181418364837,peer,InstitutPelFutur,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,192418,87.48297291963705,baseline,InstitutPelFutur,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,192418,92.4102788764417,spot_baseline,InstitutPelFutur,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,192418,20.51260680366291,spot_peer,InstitutPelFutur,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,192924,85.4546463221519,baseline,acm_bot,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,192924,95.80890010276258,spot_baseline,acm_bot,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,192924,0.1185453189715955,relative_legacy,acm_bot,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,192924,24.38998027218749,spot_peer,acm_bot,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,192924,22.1452010477032,peer,acm_bot,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,218666,69.18023018433607,baseline,GreeneiBot2,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,218666,18.446462168793158,peer,GreeneiBot2,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,218666,0.1053856011855124,relative_legacy,GreeneiBot2,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,218666,24.953783819783077,spot_peer,GreeneiBot2,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,218666,96.30308894474236,spot_baseline,GreeneiBot2,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,220077,87.84728294271595,baseline,mmBot,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,220077,88.36410507797413,spot_baseline,mmBot,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,220077,14.26473643479509,peer,mmBot,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,220077,0.0115251546270524,relative_legacy,mmBot,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,220077,15.89646222899939,spot_peer,mmBot,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,222631,88.70824130136278,spot_baseline,Grizeu_Bot,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,222631,0.0188559179009591,relative_legacy,Grizeu_Bot,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,222631,13.423498783461358,peer,Grizeu_Bot,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,222631,68.68881664632548,baseline,Grizeu_Bot,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,222631,16.28907575468194,spot_peer,Grizeu_Bot,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,227188,67.53404748720375,spot_baseline,ProfessorSP,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,227188,-0.1989675013217025,relative_legacy,ProfessorSP,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,227188,-7.867854907842475,spot_peer,ProfessorSP,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,227188,43.84870041860285,baseline,ProfessorSP,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,227188,-4.764940752946747,peer,ProfessorSP,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236037,0.1062498017647652,relative_legacy,metac-o1,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236037,23.40668477765288,spot_peer,metac-o1,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236037,94.94701538451211,spot_baseline,metac-o1,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236037,21.248445982492584,peer,metac-o1,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236037,84.46502950433275,baseline,metac-o1,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236038,-0.0311269572443318,relative_legacy,metac-gpt-4o,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236038,12.294500437949274,spot_peer,metac-gpt-4o,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236038,85.20688953017238,spot_baseline,metac-gpt-4o,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236038,11.28765292302032,peer,metac-gpt-4o,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236038,75.84424742134645,baseline,metac-gpt-4o,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236040,20.51260680366293,spot_peer,metac-claude-3-5-sonnet-latest,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236040,92.4102788764417,spot_baseline,metac-claude-3-5-sonnet-latest,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236040,0.0704988048372829,relative_legacy,metac-claude-3-5-sonnet-latest,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236040,18.658353198075428,peer,metac-claude-3-5-sonnet-latest,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236040,82.32256470654518,baseline,metac-claude-3-5-sonnet-latest,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236041,20.51260680366293,spot_peer,metac-claude-3-5-sonnet-20240620,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236041,82.23115250678745,baseline,metac-claude-3-5-sonnet-20240620,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236041,18.65584788461205,peer,metac-claude-3-5-sonnet-20240620,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236041,0.0704848957690329,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236041,92.4102788764417,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236043,11.28094029024249,peer,metac-grok-2-1212,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236043,75.90689230534552,baseline,metac-grok-2-1212,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236043,12.294500437949274,spot_peer,metac-grok-2-1212,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236043,-0.0312197056750444,relative_legacy,metac-grok-2-1212,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236043,85.20688953017238,spot_baseline,metac-grok-2-1212,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236045,13.501506451470991,peer,metac-Gemini-Exp-1206,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236045,75.42977413546566,baseline,metac-Gemini-Exp-1206,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236045,14.709636124238582,spot_peer,metac-Gemini-Exp-1206,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236045,87.32382035318936,spot_baseline,metac-Gemini-Exp-1206,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236045,2.428695464356508e-05,relative_legacy,metac-Gemini-Exp-1206,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236047,5.9988666339348935,spot_peer,metac-Llama-3.1,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236047,5.812253208663205,peer,metac-Llama-3.1,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236047,69.82897494849819,baseline,metac-Llama-3.1,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236047,79.68859864249879,spot_baseline,metac-Llama-3.1,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,236047,-0.1062014317638438,relative_legacy,metac-Llama-3.1,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,237476,12.294500437949274,spot_peer,NextWorldLab,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,237476,8.901203193836254,peer,NextWorldLab,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,237476,-0.0191193605525664,relative_legacy,NextWorldLab,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,237476,58.69997206407744,baseline,NextWorldLab,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,237476,85.20688953017238,spot_baseline,NextWorldLab,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,239758,80.36759732215708,baseline,metac-perplexity,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,239758,92.80517720803216,spot_baseline,metac-perplexity,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,239758,20.96313312351733,spot_peer,metac-perplexity,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,239758,0.0751010982157154,relative_legacy,metac-perplexity,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,239758,18.94494260471051,peer,metac-perplexity,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,239759,-4.595633048228342,relative_legacy,metac-exa,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,239759,-382.5397369749084,spot_peer,metac-exa,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,239759,-260.87584690021254,spot_baseline,metac-exa,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,239759,-217.2731647074785,baseline,metac-exa,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,239759,-318.7815534005973,peer,metac-exa,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,240416,94.75437209003894,spot_baseline,metac-o1-preview,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,240416,23.186904475836734,spot_peer,metac-o1-preview,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,240416,21.03451674752421,peer,metac-o1-preview,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,240416,0.1034073883048795,relative_legacy,metac-o1-preview,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,240416,83.95878273478576,baseline,metac-o1-preview,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,246118,13.99579021377318,peer,laylaps,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,246118,90.40967257106156,spot_baseline,laylaps,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,246118,18.2301818751747,spot_peer,laylaps,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,246118,0.0386962165352598,relative_legacy,laylaps,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,246118,66.49645003935954,baseline,laylaps,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,250015,71.77963985935874,baseline,metac-deepseek-r1,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,250015,84.12967077255679,spot_baseline,metac-deepseek-r1,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,250015,11.065537528452795,spot_peer,metac-deepseek-r1,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,250015,-0.0428812948021608,relative_legacy,metac-deepseek-r1,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,250015,10.387347833478426,peer,metac-deepseek-r1,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,264059,86.27150894903679,spot_baseline,wunderplumb,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,264059,13.509089182588374,spot_peer,wunderplumb,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,264059,23.22204798616347,baseline,wunderplumb,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,264059,-0.0007788856190689,relative_legacy,wunderplumb,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,264059,3.636295702591065,peer,wunderplumb,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,264891,17.069877582292477,spot_peer,swingswish,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,264891,15.541016177775244,peer,swingswish,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,264891,76.59032808234977,baseline,swingswish,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,264891,89.39263492153087,spot_baseline,swingswish,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,264891,0.0282788693883331,relative_legacy,swingswish,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,265212,11.06553752845284,spot_peer,4Shadower,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,265212,5.199107246212376,peer,4Shadower,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,265212,38.747037421626025,baseline,4Shadower,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,265212,84.12967077255682,spot_baseline,4Shadower,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35334,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 04:57:10.638432+00,265212,-0.0172715990151913,relative_legacy,4Shadower,True,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35900 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,185699,-11.850804259218515,spot_peer,MWG,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,185699,70.09827121356034,spot_baseline,MWG,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,185699,-0.7552537041290652,peer,MWG,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,185699,4.467374351061676,baseline,MWG,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,185699,-0.0080337541602896,relative_legacy,MWG,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,189869,-0.1853218698551036,relative_legacy,VeritasAI,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,189869,63.44022611694526,baseline,VeritasAI,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,189869,-11.4870018033131,peer,VeritasAI,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,189869,-11.572963411148695,spot_peer,VeritasAI,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,189869,70.34245210607163,spot_baseline,VeritasAI,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,190710,-4.897090751035577,spot_peer,Bot_Pepa,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,190710,-0.0921115421517695,relative_legacy,Bot_Pepa,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,190710,61.89226897247588,baseline,Bot_Pepa,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,190710,-4.705015446508822,peer,Bot_Pepa,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,190710,76.2095539226791,spot_baseline,Bot_Pepa,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,191026,72.97171627751891,baseline,manticAI,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,191026,10.829502036696072,spot_peer,manticAI,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,191026,90.03089621179086,spot_baseline,manticAI,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,191026,8.156793258960027,peer,manticAI,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,191026,0.085480794095131,relative_legacy,manticAI,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,191935,8.932946342218566,spot_peer,pgodzinai,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,191935,0.0380926378150324,relative_legacy,pgodzinai,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,191935,4.152024377955726,peer,pgodzinai,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,191935,45.33074497422861,baseline,pgodzinai,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,191935,88.36410507797413,spot_baseline,pgodzinai,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,192075,20.214804342313933,baseline,CumulativeBot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,192075,1.1611949592230926,peer,CumulativeBot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,192075,0.0100627825329768,relative_legacy,CumulativeBot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,192075,85.20688953017238,spot_baseline,CumulativeBot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,192075,5.34051355061568,spot_peer,CumulativeBot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,192418,5.34051355061568,spot_peer,InstitutPelFutur,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,192418,85.20688953017238,spot_baseline,InstitutPelFutur,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,192418,80.05605137793279,baseline,InstitutPelFutur,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,192418,4.0381448169921175,peer,InstitutPelFutur,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,192418,0.0271564811685589,relative_legacy,InstitutPelFutur,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,192924,8.302116917624724,peer,acm_bot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,192924,79.98124057923934,baseline,acm_bot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,192924,0.0865143359200005,relative_legacy,acm_bot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,192924,89.39263492153087,spot_baseline,acm_bot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,192924,10.103257422090234,spot_peer,acm_bot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,218666,60.30800911439443,baseline,GreeneiBot2,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,218666,88.87982273324869,spot_baseline,GreeneiBot2,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,218666,9.519754872699444,spot_peer,GreeneiBot2,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,218666,0.0558512688545385,relative_legacy,GreeneiBot2,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,218666,5.960820644976966,peer,GreeneiBot2,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,220077,4.0381448169921175,peer,mmBot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,220077,5.34051355061568,spot_peer,mmBot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,220077,85.20688953017238,spot_baseline,mmBot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,220077,0.0271564811685589,relative_legacy,mmBot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,220077,84.26472478500462,baseline,mmBot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,224797,4.1148018657475305,spot_peer,cookics_bot_TEST,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,224797,58.10739423989233,baseline,cookics_bot_TEST,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,224797,0.0048007893419887,relative_legacy,cookics_bot_TEST,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,224797,2.304805144147683,peer,cookics_bot_TEST,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,224797,84.12967077255682,spot_baseline,cookics_bot_TEST,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,227188,-22.443970775261835,spot_peer,ProfessorSP,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,227188,-14.920960027437106,peer,ProfessorSP,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,227188,-0.2320469213442443,relative_legacy,ProfessorSP,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,227188,60.78844916119508,spot_baseline,ProfessorSP,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,227188,38.94653524819383,baseline,ProfessorSP,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236037,7.780614880490589,peer,metac-o1,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236037,0.0799016489707712,relative_legacy,metac-o1,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236037,9.63671866669011,spot_peer,metac-o1,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236037,88.98261655858632,spot_baseline,metac-o1,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236037,78.66876822465083,baseline,metac-o1,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236038,68.60517107626379,baseline,metac-gpt-4o,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236038,-4.037207857930728,peer,metac-gpt-4o,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236038,-0.0828618745349546,relative_legacy,metac-gpt-4o,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236038,-3.560666678745096,spot_peer,metac-gpt-4o,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236038,77.38407244654809,spot_baseline,metac-gpt-4o,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236040,85.20688953017238,spot_baseline,metac-claude-3-5-sonnet-latest,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236040,75.56167368210528,baseline,metac-claude-3-5-sonnet-latest,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236040,3.948573080965056,peer,metac-claude-3-5-sonnet-latest,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236040,0.0270583790679969,relative_legacy,metac-claude-3-5-sonnet-latest,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236040,5.34051355061568,spot_peer,metac-claude-3-5-sonnet-latest,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236041,84.12967077255682,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236041,74.58988012463573,baseline,metac-claude-3-5-sonnet-20240620,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236041,2.848673126390361,peer,metac-claude-3-5-sonnet-20240620,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236041,0.0119224049699771,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236041,4.1148018657475305,spot_peer,metac-claude-3-5-sonnet-20240620,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236043,-0.0346004039701769,relative_legacy,metac-grok-2-1212,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236043,71.72657580806897,baseline,metac-grok-2-1212,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236043,-0.531969973730897,peer,metac-grok-2-1212,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236043,80.81934514212307,spot_baseline,metac-grok-2-1212,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236043,0.3481530051926221,spot_peer,metac-grok-2-1212,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236045,4.744645242382044,peer,metac-Gemini-Exp-1206,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236045,6.551889097517631,spot_peer,metac-Gemini-Exp-1206,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236045,71.15037558734195,baseline,metac-Gemini-Exp-1206,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236045,86.27150894903679,spot_baseline,metac-Gemini-Exp-1206,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236045,0.0384276910331351,relative_legacy,metac-Gemini-Exp-1206,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236047,-0.1811064647325863,relative_legacy,metac-Llama-3.1,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236047,70.09827121356034,spot_baseline,metac-Llama-3.1,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236047,60.91757490254581,baseline,metac-Llama-3.1,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236047,-11.188473590154256,peer,metac-Llama-3.1,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,236047,-11.850804259218515,spot_peer,metac-Llama-3.1,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,237476,0.0169258906944495,relative_legacy,NextWorldLab,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,237476,85.20688953017238,spot_baseline,NextWorldLab,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,237476,5.34051355061568,spot_peer,NextWorldLab,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,237476,3.224076259315219,peer,NextWorldLab,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,237476,60.26189094001603,baseline,NextWorldLab,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,239758,87.32382035318936,spot_baseline,metac-perplexity,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,239758,5.97791909328383,peer,metac-perplexity,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,239758,75.16583313132386,baseline,metac-perplexity,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,239758,7.749259989057663,spot_peer,metac-perplexity,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,239758,0.0557272804194267,relative_legacy,metac-perplexity,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,239759,60.79398899556261,baseline,metac-exa,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,239759,-0.1412508064416293,relative_legacy,metac-exa,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,239759,-9.013053361163813,spot_peer,metac-exa,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,239759,-8.329486161171536,peer,metac-exa,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,239759,72.5922333210961,spot_baseline,metac-exa,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,240416,12.177059423440692,spot_peer,metac-o1-preview,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,240416,91.21519926762812,spot_baseline,metac-o1-preview,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,240416,80.36049412731221,baseline,metac-o1-preview,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,240416,10.022368079633113,peer,metac-o1-preview,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,240416,0.1108363442994173,relative_legacy,metac-o1-preview,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,246118,2.5592874848627387,peer,laylaps,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,246118,46.96491791350592,baseline,laylaps,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,246118,0.0141282315271148,relative_legacy,laylaps,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,246118,5.34051355061568,spot_peer,laylaps,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,246118,85.20688953017238,spot_baseline,laylaps,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,247214,-0.9606145840802616,peer,ajf-bot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,247214,-0.0134069278340042,relative_legacy,ajf-bot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,247214,-7.622811969620661,spot_peer,ajf-bot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,247214,9.05451933918116,baseline,ajf-bot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,247214,73.81404928570852,spot_baseline,ajf-bot,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,250015,-10.422210181226584,spot_peer,metac-deepseek-r1,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,250015,60.16809874726634,baseline,metac-deepseek-r1,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,250015,-9.589784444975624,peer,metac-deepseek-r1,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,250015,-0.158586591480142,relative_legacy,metac-deepseek-r1,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,250015,71.35379350059556,spot_baseline,metac-deepseek-r1,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,264059,-2.1789616225791,peer,wunderplumb,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,264059,-0.037682425721249,relative_legacy,wunderplumb,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,264059,73.81404928570852,spot_baseline,wunderplumb,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,264059,-7.622811969620661,spot_peer,wunderplumb,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,264059,19.85027078871143,baseline,wunderplumb,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,264891,-6.161059361362159,peer,swingswish,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,264891,64.30509373489768,baseline,swingswish,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,264891,75.01968178105211,spot_baseline,swingswish,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,264891,-0.1115620699856246,relative_legacy,swingswish,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,264891,-6.250984913368527,spot_peer,swingswish,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,265212,-0.0774229078278592,relative_legacy,4Shadower,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,265212,-4.374413606822745,peer,4Shadower,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,265212,32.825973092041686,baseline,4Shadower,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,265212,-9.013053361163813,spot_peer,4Shadower,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35335,Who will win the special election for Florida's 6th Congressional District?,2025-03-08 04:57:10.670177+00,265212,72.5922333210961,spot_baseline,4Shadower,True,Randy Fine,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35901 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,189869,-0.2004254244466644,relative_legacy,VeritasAI,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,189869,13.270104963232274,spot_baseline,VeritasAI,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,189869,7.460194762423002,peer,VeritasAI,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,189869,11.68711145112588,baseline,VeritasAI,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,189869,5.340046418874831,spot_peer,VeritasAI,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,190710,8.683897731959343,spot_baseline,Bot_Pepa,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,190710,-2.3145477360926603,spot_peer,Bot_Pepa,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,190710,7.00279307825436,baseline,Bot_Pepa,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,190710,-0.2612424015055574,relative_legacy,Bot_Pepa,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,190710,0.7914431927039354,peer,Bot_Pepa,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,191026,53.62407649824024,spot_baseline,manticAI,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,191026,61.97161745834478,peer,manticAI,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,191026,0.5820171524218632,relative_legacy,manticAI,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,191026,72.69271041000052,spot_peer,manticAI,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,191026,43.47378653196236,baseline,manticAI,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,191935,26.0550954014905,baseline,pgodzinai,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,191935,43.06765580733931,spot_baseline,pgodzinai,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,191935,55.07355103862594,spot_peer,pgodzinai,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,191935,0.2467628373840746,relative_legacy,pgodzinai,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,191935,35.90168331514672,peer,pgodzinai,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,192418,12.829785604631638,peer,InstitutPelFutur,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,192418,13.8646883853214,spot_baseline,InstitutPelFutur,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,192418,6.332433931660819,spot_peer,InstitutPelFutur,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,192418,-0.1636183264219636,relative_legacy,InstitutPelFutur,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,192418,12.93569699840438,baseline,InstitutPelFutur,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,192924,-24.893279394079222,spot_peer,acm_bot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,192924,-4.8440229267249775,spot_baseline,acm_bot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,192924,-0.570305680433182,relative_legacy,acm_bot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,192924,-4.26027355045699,baseline,acm_bot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,192924,-19.411065641456588,peer,acm_bot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,218666,-81.38347552805635,baseline,GreeneiBot2,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,218666,-130.43337383553597,spot_baseline,GreeneiBot2,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,218666,-144.230727326706,peer,GreeneiBot2,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,218666,-2.25279880618376,relative_legacy,GreeneiBot2,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,218666,-234.5077740984366,spot_peer,GreeneiBot2,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,220077,-1.3969717790134248,relative_legacy,mmBot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,220077,-81.03415116119562,peer,mmBot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,220077,-42.35606328576771,baseline,mmBot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,220077,-43.06765580733931,spot_baseline,mmBot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,220077,-88.6903086330664,spot_peer,mmBot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,224797,54.65460514958787,peer,cookics_bot_TEST,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,224797,46.099159153475966,spot_baseline,cookics_bot_TEST,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,224797,60.13327176730776,spot_peer,cookics_bot_TEST,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,224797,0.4541303496884947,relative_legacy,cookics_bot_TEST,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,224797,39.54643382064636,baseline,cookics_bot_TEST,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,227188,26.281826318306106,baseline,ProfessorSP,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,227188,55.07355103862594,spot_peer,ProfessorSP,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,227188,43.06765580733931,spot_baseline,ProfessorSP,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,227188,0.2507344389834225,relative_legacy,ProfessorSP,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,227188,36.23899627306758,peer,ProfessorSP,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236037,38.223632880614325,spot_baseline,metac-o1,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236037,44.182052025802896,peer,metac-o1,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236037,33.45980899747769,baseline,metac-o1,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236037,0.3057419696753453,relative_legacy,metac-o1,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236037,46.988650441766936,spot_peer,metac-o1,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236038,-15.778320451275148,baseline,metac-gpt-4o,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236038,-38.8717772516091,peer,metac-gpt-4o,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236038,-17.87469216608008,spot_baseline,metac-gpt-4o,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236038,-0.8384326950509068,relative_legacy,metac-gpt-4o,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236038,-46.64207519962714,spot_peer,metac-gpt-4o,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236040,38.11264623862655,baseline,metac-claude-3-5-sonnet-latest,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236040,52.06124613256081,peer,metac-claude-3-5-sonnet-latest,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236040,0.4117251920517514,relative_legacy,metac-claude-3-5-sonnet-latest,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236040,43.06765580733931,spot_baseline,metac-claude-3-5-sonnet-latest,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236040,55.07355103862594,spot_peer,metac-claude-3-5-sonnet-latest,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236041,39.368666435886034,baseline,metac-claude-3-5-sonnet-20240620,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236041,44.60189409013374,spot_baseline,metac-claude-3-5-sonnet-20240620,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236041,57.634266418368185,spot_peer,metac-claude-3-5-sonnet-20240620,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236041,0.4420443898261177,relative_legacy,metac-claude-3-5-sonnet-20240620,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236041,54.13223370911136,peer,metac-claude-3-5-sonnet-20240620,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236043,-31.03381597259793,peer,metac-grok-2-1212,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236043,-11.132483850428844,baseline,metac-grok-2-1212,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236043,-0.7304263244877887,relative_legacy,metac-grok-2-1212,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236043,-37.86012541280832,spot_peer,metac-grok-2-1212,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236043,-12.61303611984189,spot_baseline,metac-grok-2-1212,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236045,-17.87469216608008,spot_baseline,metac-Gemini-Exp-1206,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236045,-35.252007944129794,peer,metac-Gemini-Exp-1206,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236045,-46.64207519962714,spot_peer,metac-Gemini-Exp-1206,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236045,-0.7600072113361035,relative_legacy,metac-Gemini-Exp-1206,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236045,-14.443536053988698,baseline,metac-Gemini-Exp-1206,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236047,11.390886770550775,spot_baseline,metac-Llama-3.1,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236047,4.442657297839712,peer,metac-Llama-3.1,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236047,-0.2379379804549517,relative_legacy,metac-Llama-3.1,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236047,2.203543450687802,spot_peer,metac-Llama-3.1,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,236047,9.684667373176705,baseline,metac-Llama-3.1,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,237476,-12.591580693039074,spot_peer,NextWorldLab,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,237476,1.8340786337815915,baseline,NextWorldLab,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,237476,-6.44897828939092,peer,NextWorldLab,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,237476,2.5264709750370478,spot_baseline,NextWorldLab,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,237476,-0.3445950541183156,relative_legacy,NextWorldLab,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,239758,-52.71653611349037,baseline,metac-perplexity,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,239758,-61.77636711938568,spot_baseline,metac-perplexity,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,239758,-119.9160219588064,spot_peer,metac-perplexity,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,239758,-1.6851368918231455,relative_legacy,metac-perplexity,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,239758,-100.47680271246357,peer,metac-perplexity,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,239759,21.919764017940185,baseline,metac-exa,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,239759,0.0546157129458191,relative_legacy,metac-exa,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,239759,26.613433706591547,spot_peer,metac-exa,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,239759,26.015935850854355,spot_baseline,metac-exa,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,239759,25.229101100722197,peer,metac-exa,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,240416,25.23985463621903,spot_peer,metac-o1-preview,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,240416,25.192963641259222,spot_baseline,metac-o1-preview,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,240416,24.86148879491834,peer,metac-o1-preview,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,240416,0.040340286112613,relative_legacy,metac-o1-preview,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,240416,21.977811002311206,baseline,metac-o1-preview,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,246118,1.0129728685473316e-14,baseline,laylaps,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,246118,-16.808378797220207,spot_peer,laylaps,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,246118,1.3796407007040915e-14,spot_baseline,laylaps,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,246118,-0.391163357687991,relative_legacy,laylaps,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,246118,-9.665844960794011,peer,laylaps,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,247214,12.747890481882024,peer,ajf-bot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,247214,56.98551791730607,spot_baseline,ajf-bot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,247214,78.30311319842947,spot_peer,ajf-bot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,247214,0.0981514251790895,relative_legacy,ajf-bot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,247214,9.135994070282187,baseline,ajf-bot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,250015,-0.4002298364816334,relative_legacy,metac-deepseek-r1,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,250015,-15.795639508911712,spot_peer,metac-deepseek-r1,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,250015,0.4436973053594133,baseline,metac-deepseek-r1,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,250015,-9.829930581515477,peer,metac-deepseek-r1,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,250015,0.6067770744475764,spot_baseline,metac-deepseek-r1,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,264059,4.465877141517482,baseline,wunderplumb,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,264059,3.530953969144994,peer,wunderplumb,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,264059,-0.0783946002460529,relative_legacy,wunderplumb,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,264059,10.399767147556627,spot_peer,wunderplumb,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,264059,16.301608309368927,spot_baseline,wunderplumb,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,264332,0.7029243059409535,baseline,krm-bot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,264332,0.7934915396555171,peer,krm-bot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,264332,0.0015176608402343,relative_legacy,krm-bot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,264332,35.12387328259345,spot_peer,krm-bot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,264332,31.114918074417723,spot_baseline,krm-bot,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,264891,28.09026188334432,baseline,swingswish,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,264891,35.47507489362888,peer,swingswish,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,264891,38.219736127745605,spot_peer,swingswish,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,264891,0.1916848481853752,relative_legacy,swingswish,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,264891,32.9697869649195,spot_baseline,swingswish,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,265212,19.78664281847989,spot_baseline,4Shadower,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,265212,-0.0780898584669806,relative_legacy,4Shadower,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,265212,8.978132061714458,baseline,4Shadower,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,265212,8.950586140687284,peer,4Shadower,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35336,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 04:57:10.700305+00,265212,16.216452578035224,spot_peer,4Shadower,True,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35902 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,189869,-76.41690559640269,peer,VeritasAI,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,189869,-111.69961507641963,spot_baseline,VeritasAI,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,189869,-72.65965474137744,spot_peer,VeritasAI,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,189869,-2.615337629289373,relative_legacy,VeritasAI,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,189869,-102.53614940398714,baseline,VeritasAI,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,190710,-61.881714482937056,peer,Bot_Pepa,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,190710,-89.00239383033482,baseline,Bot_Pepa,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,190710,-110.78215508724716,spot_baseline,Bot_Pepa,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,190710,-2.176626393972193,relative_legacy,Bot_Pepa,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,190710,-71.70549635263806,spot_peer,Bot_Pepa,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,191026,51.3876556215824,spot_baseline,manticAI,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,191026,1.6552865288996312,relative_legacy,manticAI,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,191026,96.95110678454468,spot_peer,manticAI,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,191026,44.32893673368477,baseline,manticAI,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,191026,78.61035163375816,peer,manticAI,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,191935,-3.6596305757398113,relative_legacy,pgodzinai,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,191935,-221.14243145974933,spot_baseline,pgodzinai,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,191935,-186.48018378004036,spot_peer,pgodzinai,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,191935,-119.16713126954704,peer,pgodzinai,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,191935,-139.64582888196625,baseline,pgodzinai,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,192418,114.63748526908454,spot_peer,InstitutPelFutur,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,192418,2.15872027864214,relative_legacy,InstitutPelFutur,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,192418,100.34827202999236,peer,InstitutPelFutur,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,192418,63.26555363044093,baseline,InstitutPelFutur,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,192418,68.39378877979381,spot_baseline,InstitutPelFutur,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,192924,-7.483371258899735,baseline,acm_bot,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,192924,-8.530520043296296,spot_baseline,acm_bot,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,192924,34.63620409307083,spot_peer,acm_bot,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,192924,24.67203296639711,peer,acm_bot,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,192924,0.1572752844363674,relative_legacy,acm_bot,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,218666,-41.90391165920268,peer,GreeneiBot2,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,218666,-1.4774378034010465,relative_legacy,GreeneiBot2,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,218666,-63.2770549981806,baseline,GreeneiBot2,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,218666,-111.12817773877346,spot_baseline,GreeneiBot2,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,218666,-72.06535991022542,spot_peer,GreeneiBot2,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,220077,49.034152858363896,peer,mmBot,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,220077,16.374312250150165,baseline,mmBot,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,220077,60.92745894116326,spot_peer,mmBot,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,220077,16.749532695254114,spot_baseline,mmBot,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,220077,0.7803141016619621,relative_legacy,mmBot,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,224797,8.195148563497005,spot_baseline,cookics_bot_TEST,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,224797,7.040265609564587,baseline,cookics_bot_TEST,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,224797,0.5806045819348842,relative_legacy,cookics_bot_TEST,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,224797,52.03089944413587,spot_peer,cookics_bot_TEST,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,224797,39.49479204441951,peer,cookics_bot_TEST,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236037,-12.078106841911216,spot_baseline,metac-o1,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236037,30.946713822511317,spot_peer,metac-o1,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236037,0.0718216248221121,relative_legacy,metac-o1,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236037,21.317986257935974,peer,metac-o1,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236037,-10.521881936703249,baseline,metac-o1,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236038,-2.461212507459805,relative_legacy,metac-gpt-4o,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236038,-98.19971238557648,baseline,metac-gpt-4o,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236038,-70.42151908807446,peer,metac-gpt-4o,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236038,-72.65965474137744,spot_peer,metac-gpt-4o,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236038,-111.69961507641963,spot_baseline,metac-gpt-4o,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236040,88.59559119996027,peer,metac-claude-3-5-sonnet-latest,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236040,60.68625478843075,spot_baseline,metac-claude-3-5-sonnet-latest,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236040,106.62164991806696,spot_peer,metac-claude-3-5-sonnet-latest,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236040,1.9125430137603616,relative_legacy,metac-claude-3-5-sonnet-latest,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236040,53.46013918211464,baseline,metac-claude-3-5-sonnet-latest,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236041,88.07455283325277,spot_peer,metac-claude-3-5-sonnet-20240620,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236041,37.78283377101599,baseline,metac-claude-3-5-sonnet-20240620,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236041,72.15647335931455,peer,metac-claude-3-5-sonnet-20240620,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236041,1.4594067337562486,relative_legacy,metac-claude-3-5-sonnet-20240620,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236041,42.85250759149403,spot_baseline,metac-claude-3-5-sonnet-20240620,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236043,-65.94499475051774,peer,metac-grok-2-1212,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236043,-2.337973019607919,relative_legacy,metac-grok-2-1212,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236043,-67.70352539155647,spot_peer,metac-grok-2-1212,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236043,-106.93410608620717,spot_baseline,metac-grok-2-1212,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236043,-93.93770546863315,baseline,metac-grok-2-1212,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236045,20.712101168819228,peer,metac-Gemini-Exp-1206,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236045,0.1210782389111092,relative_legacy,metac-Gemini-Exp-1206,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236045,30.946713822511317,spot_peer,metac-Gemini-Exp-1206,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236045,-9.395829843136775,baseline,metac-Gemini-Exp-1206,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236045,-12.078106841911216,spot_baseline,metac-Gemini-Exp-1206,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236047,51.81037013455694,peer,metac-Llama-3.1,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236047,0.9321501193627976,relative_legacy,metac-Llama-3.1,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236047,66.9903672116281,spot_peer,metac-Llama-3.1,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236047,22.579252186085697,spot_baseline,metac-Llama-3.1,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,236047,19.07948068712365,baseline,metac-Llama-3.1,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,237476,-112.15210456059344,spot_baseline,NextWorldLab,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,237476,-57.35010305548443,peer,NextWorldLab,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,237476,-73.1302438049182,spot_peer,NextWorldLab,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,237476,-83.440980894862,baseline,NextWorldLab,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,237476,-2.016022993990435,relative_legacy,NextWorldLab,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,239758,-111.69961507641963,spot_baseline,metac-perplexity,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,239758,-72.65965474137744,spot_peer,metac-perplexity,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,239758,-2.35128098206358,relative_legacy,metac-perplexity,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,239758,-94.6981149165473,baseline,metac-perplexity,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,239758,-67.14098009111491,peer,metac-perplexity,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,239759,66.99036721162847,spot_peer,metac-exa,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,239759,22.57925218608605,spot_baseline,metac-exa,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,239759,19.155848999438803,baseline,metac-exa,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,239759,51.97428837187657,peer,metac-exa,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,239759,0.9335791291030852,relative_legacy,metac-exa,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,240416,-64.40603357618214,peer,metac-o1-preview,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,240416,-67.70352539155647,spot_peer,metac-o1-preview,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,240416,-106.93410608620717,spot_baseline,metac-o1-preview,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,240416,-92.3017600051904,baseline,metac-o1-preview,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,240416,-2.287010654064102,relative_legacy,metac-o1-preview,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,246118,-72.65965474137744,spot_peer,laylaps,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,246118,-56.08856793498274,peer,laylaps,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,246118,-1.975810195789793,relative_legacy,laylaps,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,246118,-81.9742456901086,baseline,laylaps,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,246118,-111.69961507641963,spot_baseline,laylaps,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,247214,-0.2528027179697979,relative_legacy,ajf-bot,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,247214,-4.13917311935713,spot_peer,ajf-bot,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,247214,-45.8145365937078,spot_baseline,ajf-bot,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,247214,-1.93578949215043,peer,ajf-bot,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,247214,-17.648548294254322,baseline,ajf-bot,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,250015,0.996359918245118,relative_legacy,metac-deepseek-r1,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,250015,51.08299575622506,peer,metac-deepseek-r1,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,250015,21.26719086533685,baseline,metac-deepseek-r1,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,250015,74.43161112508182,spot_peer,metac-deepseek-r1,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,250015,29.73429441056042,spot_baseline,metac-deepseek-r1,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,264059,-19.85073975120341,peer,wunderplumb,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,264059,-112.6005403515592,spot_baseline,wunderplumb,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,264059,-73.5966170275226,spot_peer,wunderplumb,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,264059,-0.6848811166582097,relative_legacy,wunderplumb,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,264059,-30.371015851554567,baseline,wunderplumb,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,264891,39.30849785774656,peer,swingswish,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,264891,0.5812195442315069,relative_legacy,swingswish,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,264891,6.985731976619932,baseline,swingswish,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,264891,8.195148563497005,spot_baseline,swingswish,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,264891,52.03089944413587,spot_peer,swingswish,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,265212,13.390485108435,peer,4Shadower,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,265212,-12.078106841911216,spot_baseline,4Shadower,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,265212,30.946713822511317,spot_peer,4Shadower,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,265212,0.1311144229814225,relative_legacy,4Shadower,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35337,"How many Palestinian fatalities in Gaza will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.007356+00,265212,-5.436497636521319,baseline,4Shadower,True,50144.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35903 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,189869,-153.17439115377016,spot_peer,VeritasAI,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,189869,-4.462644344375794,relative_legacy,VeritasAI,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,189869,-116.19400627033248,baseline,VeritasAI,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,189869,-140.7819270592508,peer,VeritasAI,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,189869,-129.14435290740917,spot_baseline,VeritasAI,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,191026,0.4538601034662661,relative_legacy,manticAI,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,191026,53.77124371543901,baseline,manticAI,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,191026,38.800153670806495,peer,manticAI,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,191026,46.27105516794239,spot_peer,manticAI,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,191026,62.32327556143487,spot_baseline,manticAI,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,191935,-120.31049862996818,baseline,pgodzinai,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,191935,-135.06356365411784,peer,pgodzinai,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,191935,-243.51819612194603,spot_peer,pgodzinai,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,191935,-215.8744056768581,spot_baseline,pgodzinai,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,191935,-4.196077889837735,relative_legacy,pgodzinai,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,192418,-0.2875357547233296,relative_legacy,InstitutPelFutur,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,192418,31.799438335999547,spot_baseline,InstitutPelFutur,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,192418,14.475391391447271,spot_peer,InstitutPelFutur,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,192418,13.09042637457871,peer,InstitutPelFutur,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,192418,29.18528963948993,baseline,InstitutPelFutur,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,192924,69.34475875538723,spot_peer,acm_bot,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,192924,34.98530340562466,baseline,acm_bot,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,192924,29.016791807248044,peer,acm_bot,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,192924,0.4445860845239727,relative_legacy,acm_bot,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,192924,84.47403100538192,spot_baseline,acm_bot,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,218666,-69.077162300626,baseline,GreeneiBot2,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,218666,-2.6665839201558024,relative_legacy,GreeneiBot2,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,218666,-157.75829291383272,spot_peer,GreeneiBot2,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,218666,-133.54489859706922,spot_baseline,GreeneiBot2,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,218666,-80.76621595104592,peer,GreeneiBot2,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,220077,42.95660366641471,spot_baseline,mmBot,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,220077,26.09743861062973,spot_peer,mmBot,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,220077,0.0079271490438257,relative_legacy,mmBot,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,220077,24.17458789895501,peer,mmBot,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,220077,41.732845393593045,baseline,mmBot,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,224797,31.7994383360002,spot_baseline,cookics_bot_TEST,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,224797,27.34567510066704,baseline,cookics_bot_TEST,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,224797,14.475391391447952,spot_peer,cookics_bot_TEST,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,224797,-0.3060866470422499,relative_legacy,cookics_bot_TEST,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,224797,11.04956523800759,peer,cookics_bot_TEST,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236037,8.242918058260583,peer,metac-o1,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236037,-0.3818997986067716,relative_legacy,metac-o1,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236037,11.317859005174968,spot_peer,metac-o1,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236037,28.768207245178136,spot_baseline,metac-o1,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236037,24.654062580617143,baseline,metac-o1,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236038,7.308952820132408,peer,metac-gpt-4o,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236038,-0.4172490963563174,relative_legacy,metac-gpt-4o,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236038,9.664280967956682,spot_peer,metac-gpt-4o,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236038,27.180772329448576,spot_baseline,metac-gpt-4o,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236038,23.79432507777722,baseline,metac-gpt-4o,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236040,20.642260770288733,spot_baseline,metac-claude-3-5-sonnet-latest,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236040,18.087307218282547,baseline,metac-claude-3-5-sonnet-latest,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236040,1.3039272894299732,peer,metac-claude-3-5-sonnet-latest,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236040,-0.5822191469028526,relative_legacy,metac-claude-3-5-sonnet-latest,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236040,2.8533314271651804,spot_peer,metac-claude-3-5-sonnet-latest,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236041,24.6477220734771,spot_peer,metac-claude-3-5-sonnet-20240620,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236041,41.56487579074818,spot_baseline,metac-claude-3-5-sonnet-20240620,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236041,20.724924184589742,peer,metac-claude-3-5-sonnet-20240620,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236041,36.50607514981728,baseline,metac-claude-3-5-sonnet-20240620,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236041,-0.0518000432604859,relative_legacy,metac-claude-3-5-sonnet-20240620,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236043,-39.04029315926724,peer,metac-grok-2-1212,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236043,-23.131176685640632,spot_baseline,metac-grok-2-1212,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236043,-42.743999256094575,spot_peer,metac-grok-2-1212,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236043,-1.6870996052445966,relative_legacy,metac-grok-2-1212,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236043,-20.239907139468105,baseline,metac-grok-2-1212,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236045,1.826144166243543,baseline,metac-Gemini-Exp-1206,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236045,-12.855455449175947,peer,metac-Gemini-Exp-1206,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236045,2.4835808422848777,spot_baseline,metac-Gemini-Exp-1206,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236045,-0.9034248791354348,relative_legacy,metac-Gemini-Exp-1206,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236045,-16.061960164505503,spot_peer,metac-Gemini-Exp-1206,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236047,18.983357949654696,baseline,metac-Llama-3.1,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236047,4.826064983962387,spot_peer,metac-Llama-3.1,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236047,22.536084984814057,spot_baseline,metac-Llama-3.1,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236047,-0.5334922333713326,relative_legacy,metac-Llama-3.1,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,236047,2.498365395876127,peer,metac-Llama-3.1,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,237476,-0.2791211630660449,relative_legacy,NextWorldLab,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,237476,24.463362897439428,baseline,NextWorldLab,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,237476,31.799438335999547,spot_baseline,NextWorldLab,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,237476,14.475391391447271,spot_peer,NextWorldLab,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,237476,10.222530810039524,peer,NextWorldLab,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,239758,61.29758544354,spot_baseline,metac-perplexity,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,239758,45.20262796180191,spot_peer,metac-perplexity,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,239758,0.4110991255604136,relative_legacy,metac-perplexity,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,239758,36.72142491883457,peer,metac-perplexity,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,239758,51.42136569537766,baseline,metac-perplexity,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,239759,29.458832511791417,spot_peer,metac-exa,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,239759,23.81992089111582,peer,metac-exa,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,239759,0.0480593150983238,relative_legacy,metac-exa,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,239759,46.18354181152992,spot_baseline,metac-exa,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,239759,39.43930240402192,baseline,metac-exa,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,240416,18.187576298592468,peer,metac-o1-preview,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,240416,34.06962562566543,baseline,metac-o1-preview,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,240416,-0.1064359738989311,relative_legacy,metac-o1-preview,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,240416,22.939918969456723,spot_peer,metac-o1-preview,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,240416,39.92538481088862,spot_baseline,metac-o1-preview,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,246118,29.458832511791417,spot_peer,laylaps,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,246118,0.0343590347856827,relative_legacy,laylaps,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,246118,20.995649777414407,peer,laylaps,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,246118,46.18354181152992,spot_baseline,laylaps,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,246118,33.87394564557534,baseline,laylaps,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,247214,40.69828293981288,peer,ajf-bot,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,247214,79.25726099325273,spot_baseline,ajf-bot,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,247214,0.6192268387668695,relative_legacy,ajf-bot,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,247214,63.91062332608601,spot_peer,ajf-bot,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,247214,50.26687248444156,baseline,ajf-bot,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,250015,27.70443838089004,peer,metac-deepseek-r1,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,250015,45.76569662212088,spot_peer,metac-deepseek-r1,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,250015,36.72106947619415,baseline,metac-deepseek-r1,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,250015,0.2828941057533322,relative_legacy,metac-deepseek-r1,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,250015,61.8381313574462,spot_baseline,metac-deepseek-r1,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,264059,0.1066151600863332,relative_legacy,wunderplumb,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,264059,12.15127797296863,peer,wunderplumb,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,264059,45.20262796180191,spot_peer,wunderplumb,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,264059,61.29758544354,spot_baseline,wunderplumb,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,264059,16.47789151607898,baseline,wunderplumb,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,264891,0.5465254644636361,relative_legacy,swingswish,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,264891,50.57680704561143,spot_peer,swingswish,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,264891,66.45679736399714,spot_baseline,swingswish,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,264891,56.67163014415727,baseline,swingswish,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,264891,41.93750285107707,peer,swingswish,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,265212,19.858237694227213,peer,4Shadower,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,265212,26.75704812142004,baseline,4Shadower,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,265212,58.50356263251268,spot_baseline,4Shadower,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,265212,42.29218753364845,spot_peer,4Shadower,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35338,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 04:57:11.041823+00,265212,0.1583574250752898,relative_legacy,4Shadower,True,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35904 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,189869,192.11975059088203,spot_baseline,VeritasAI,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,189869,69.8600812704631,spot_peer,VeritasAI,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,189869,-0.0669513196682658,relative_legacy,VeritasAI,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,189869,51.106561592883445,peer,VeritasAI,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,189869,176.48392603536308,baseline,VeritasAI,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,191026,220.48992810045127,spot_baseline,manticAI,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,191026,71.90396335228712,peer,manticAI,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,191026,190.2677505660576,baseline,manticAI,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,191026,0.5949845922210817,relative_legacy,manticAI,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,191026,99.3214194534774,spot_peer,manticAI,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,191935,0.6184181204224375,relative_legacy,pgodzinai,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,191935,109.17575333328382,spot_peer,pgodzinai,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,191935,124.87714892349524,baseline,pgodzinai,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,191935,229.97928665137604,spot_baseline,pgodzinai,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,191935,55.8309452491877,peer,pgodzinai,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,192075,-58.276777561632144,peer,CumulativeBot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,192075,-12.299942519615188,baseline,CumulativeBot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,192075,-34.69737281253435,spot_baseline,CumulativeBot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,192075,-165.6807776484693,spot_peer,CumulativeBot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,192075,-2.260929554621,relative_legacy,CumulativeBot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,192418,143.8557778366008,spot_baseline,InstitutPelFutur,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,192418,3.293668474475752,peer,InstitutPelFutur,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,192418,-1.3415818348566997,relative_legacy,InstitutPelFutur,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,192418,19.73980187178643,spot_peer,InstitutPelFutur,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,192418,130.96522482012705,baseline,InstitutPelFutur,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,192924,-279.7673991326141,spot_peer,acm_bot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,192924,-144.55856387134045,spot_baseline,acm_bot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,192924,-8.664005258758412,relative_legacy,acm_bot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,192924,-264.9583164005514,peer,acm_bot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,192924,-127.4351033775776,baseline,acm_bot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,218666,-232.0868566600694,spot_peer,GreeneiBot2,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,218666,-42.55908882666627,baseline,GreeneiBot2,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,218666,-105.80402014918292,peer,GreeneiBot2,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,218666,-3.7502847308311176,relative_legacy,GreeneiBot2,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,218666,-98.6439674162974,spot_baseline,GreeneiBot2,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,220077,88.53466016049931,spot_baseline,mmBot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,220077,-37.709051099549725,spot_peer,mmBot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,220077,-2.8125365279245527,relative_legacy,mmBot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,220077,-51.38588621590673,peer,mmBot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,220077,85.48350475268465,baseline,mmBot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,224797,201.67841420055916,baseline,cookics_bot_TEST,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,224797,0.933434599973096,relative_legacy,cookics_bot_TEST,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,224797,84.13155225272317,peer,cookics_bot_TEST,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,224797,113.50448683886148,spot_peer,cookics_bot_TEST,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,224797,234.14769669378416,spot_baseline,cookics_bot_TEST,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236037,235.5395550569513,spot_baseline,metac-o1,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236037,200.65601661634963,baseline,metac-o1,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236037,114.94987821599662,spot_peer,metac-o1,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236037,0.9611139926282972,relative_legacy,metac-o1,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236037,84.54950655778973,peer,metac-o1,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236038,0.1099029413475916,relative_legacy,metac-gpt-4o,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236038,200.88720492350663,spot_baseline,metac-gpt-4o,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236038,78.96474538511175,spot_peer,metac-gpt-4o,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236038,54.86293516556267,peer,metac-gpt-4o,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236038,175.29046391148165,baseline,metac-gpt-4o,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236040,-0.2031741941647782,relative_legacy,metac-claude-3-5-sonnet-latest,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236040,164.80889891954664,baseline,metac-claude-3-5-sonnet-latest,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236040,66.01851077782698,spot_peer,metac-claude-3-5-sonnet-latest,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236040,188.42046048686203,spot_baseline,metac-claude-3-5-sonnet-latest,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236040,43.60923334893301,peer,metac-claude-3-5-sonnet-latest,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236041,47.19797247144167,peer,metac-claude-3-5-sonnet-20240620,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236041,-0.1086846112307614,relative_legacy,metac-claude-3-5-sonnet-20240620,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236041,69.8600812704631,spot_peer,metac-claude-3-5-sonnet-20240620,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236041,192.11975059088203,spot_baseline,metac-claude-3-5-sonnet-20240620,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236041,168.33990975235483,baseline,metac-claude-3-5-sonnet-20240620,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236043,215.48275229855517,spot_baseline,metac-grok-2-1212,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236043,0.4767403684691219,relative_legacy,metac-grok-2-1212,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236043,187.99447386782347,baseline,metac-grok-2-1212,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236043,94.12165996689286,spot_peer,metac-grok-2-1212,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236043,68.23507270930521,peer,metac-grok-2-1212,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236045,106.68486778940562,spot_peer,metac-Gemini-Exp-1206,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236045,67.46082885308283,peer,metac-Gemini-Exp-1206,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236045,0.6975457800798135,relative_legacy,metac-Gemini-Exp-1206,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236045,162.287620983222,baseline,metac-Gemini-Exp-1206,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236045,227.58065612764148,spot_baseline,metac-Gemini-Exp-1206,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236047,58.36320228987845,peer,metac-Llama-3.1,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236047,170.28819005210536,baseline,metac-Llama-3.1,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236047,208.1376450439164,spot_baseline,metac-Llama-3.1,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236047,86.49404858707571,spot_peer,metac-Llama-3.1,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,236047,0.2946402252412345,relative_legacy,metac-Llama-3.1,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,237476,165.7989633382148,baseline,NextWorldLab,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,237476,88.60905755715301,spot_peer,NextWorldLab,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,237476,0.3433719831711174,relative_legacy,NextWorldLab,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,237476,58.53429340174831,peer,NextWorldLab,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,237476,210.1743203484353,spot_baseline,NextWorldLab,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,239758,-5.632570496066071,relative_legacy,metac-perplexity,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,239758,-156.34180619128702,peer,metac-perplexity,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,239758,-38.2109773014949,spot_baseline,metac-perplexity,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,239758,-169.32952077162062,spot_peer,metac-perplexity,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,239758,-31.851968158391955,baseline,metac-perplexity,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,239759,-262.6527694605534,spot_peer,metac-exa,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,239759,-110.03166422903443,peer,metac-exa,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,239759,-53.61301044940348,baseline,metac-exa,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,239759,-128.077809372319,spot_baseline,metac-exa,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,239759,-3.8016067049467424,relative_legacy,metac-exa,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,240416,188.49417570000173,baseline,metac-o1-preview,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,240416,103.3695538220609,spot_peer,metac-o1-preview,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,240416,0.6849096541274501,relative_legacy,metac-o1-preview,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,240416,73.81509812914358,peer,metac-o1-preview,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,240416,224.3881315664947,spot_baseline,metac-o1-preview,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,246118,-17.76965495931017,spot_baseline,laylaps,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,246118,-119.55366491097536,peer,laylaps,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,246118,-13.057275549010102,baseline,laylaps,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,246118,-4.488825099325501,relative_legacy,laylaps,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,246118,-148.10199372396727,spot_peer,laylaps,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,247214,-109.86122886681098,spot_baseline,ajf-bot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,247214,-243.73555124329505,spot_peer,ajf-bot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,247214,-43.32682827909783,baseline,ajf-bot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,247214,-95.84303219775154,peer,ajf-bot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,247214,-3.3703270825367326,relative_legacy,ajf-bot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,250015,118.39622872635904,spot_baseline,metac-deepseek-r1,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,250015,75.24967190745437,baseline,metac-deepseek-r1,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,250015,-10.895976729451528,peer,metac-deepseek-r1,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,250015,-1.3505592024653827,relative_legacy,metac-deepseek-r1,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,250015,-6.698960665772321,spot_peer,metac-deepseek-r1,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,264059,31.65356007692056,peer,wunderplumb,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,264059,234.84186872569575,spot_baseline,wunderplumb,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,264059,114.22535779507736,spot_peer,wunderplumb,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,264059,0.3702993443435474,relative_legacy,wunderplumb,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,264059,64.61669529153723,baseline,wunderplumb,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,264332,144.31267391504124,spot_baseline,krm-bot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,264332,3.908551430359484,baseline,krm-bot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,264332,0.5474814872727727,peer,krm-bot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,264332,-0.0318132526208649,relative_legacy,krm-bot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,264332,20.21427087632073,spot_peer,krm-bot,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,264891,83.80552217887794,peer,swingswish,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,264891,234.49598738708963,spot_baseline,swingswish,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,264891,0.936792220423768,relative_legacy,swingswish,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,264891,113.86617332806333,spot_peer,swingswish,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,264891,200.3144521960004,baseline,swingswish,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,265212,34.18974699425899,peer,4Shadower,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,265212,198.78639229085695,spot_baseline,4Shadower,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,265212,76.78313226659094,spot_peer,4Shadower,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,265212,0.1460404048507731,relative_legacy,4Shadower,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35339,What will be the volume of Polymarket's question on Kanye West launching his own blockchain before April 2025?,2025-03-08 04:57:11.073151+00,265212,90.11169487998254,baseline,4Shadower,True,45208.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35905 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,189869,48.02955527569137,baseline,VeritasAI,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,189869,34.015288346210134,peer,VeritasAI,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,189869,0.8171174345637127,relative_legacy,VeritasAI,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,189869,38.471614594353454,spot_peer,VeritasAI,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,189869,54.93061443340543,spot_baseline,VeritasAI,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,191026,-15.823325278652566,baseline,manticAI,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,191026,-18.332326193740226,spot_baseline,manticAI,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,191026,-37.72184365787803,spot_peer,manticAI,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,191026,-1.0135525937565604,relative_legacy,manticAI,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,191026,-32.707398592529735,peer,manticAI,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,191935,14.327156058861268,peer,pgodzinai,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,191935,0.3029869936868026,relative_legacy,pgodzinai,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,191935,23.512146826860803,spot_peer,pgodzinai,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,191935,40.54651081081636,spot_baseline,pgodzinai,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,191935,24.01298790782992,baseline,pgodzinai,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,192418,-0.0586738986986115,relative_legacy,InstitutPelFutur,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,192418,2.0480099215788146,peer,InstitutPelFutur,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,192418,18.330740911743803,baseline,InstitutPelFutur,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,192418,20.273255405408264,spot_baseline,InstitutPelFutur,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,192418,2.427961205236394,spot_peer,InstitutPelFutur,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,192924,23.512146826861063,spot_peer,acm_bot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,192924,35.528131834057575,baseline,acm_bot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,192924,40.546510810816606,spot_baseline,acm_bot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,192924,20.81562201448653,peer,acm_bot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,192924,0.4547317065280579,relative_legacy,acm_bot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,218666,1.859127032809058,peer,GreeneiBot2,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,218666,9.047766945871896,baseline,GreeneiBot2,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,218666,-5.587874376891529,spot_peer,GreeneiBot2,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,218666,-0.0117445074689036,relative_legacy,GreeneiBot2,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,218666,12.565721191823725,spot_baseline,GreeneiBot2,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,220077,-0.0046931763152095,relative_legacy,mmBot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,220077,21.436179116205786,baseline,mmBot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,220077,22.34233706007678,spot_baseline,mmBot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,220077,4.07319285838656,peer,mmBot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,220077,4.579806126091648,spot_peer,mmBot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,224797,5.889151782819094,spot_baseline,cookics_bot_TEST,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,224797,-0.4099813244121685,relative_legacy,cookics_bot_TEST,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,224797,-10.728280736525273,peer,cookics_bot_TEST,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,224797,5.080200126734012,baseline,cookics_bot_TEST,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,224797,-12.53150656225635,spot_peer,cookics_bot_TEST,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236037,46.424821707405776,baseline,metac-o1,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236037,33.105662416008414,peer,metac-o1,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236037,0.7935444582360461,relative_legacy,metac-o1,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236037,54.93061443340552,spot_baseline,metac-o1,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236037,38.47161459435355,spot_peer,metac-o1,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236038,0.4535673743852013,relative_legacy,metac-gpt-4o,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236038,40.546510810816606,spot_baseline,metac-gpt-4o,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236038,35.219169496189885,baseline,metac-gpt-4o,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236038,23.512146826861063,spot_peer,metac-gpt-4o,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236038,20.730115875526256,peer,metac-gpt-4o,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236040,17.70096617068046,baseline,metac-claude-3-5-sonnet-latest,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236040,2.155703288095548,peer,metac-claude-3-5-sonnet-latest,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236040,-0.0563828328792912,relative_legacy,metac-claude-3-5-sonnet-latest,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236040,2.427961205236394,spot_peer,metac-claude-3-5-sonnet-latest,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236040,20.273255405408264,spot_baseline,metac-claude-3-5-sonnet-latest,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236041,40.54651081081636,spot_baseline,metac-claude-3-5-sonnet-20240620,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236041,20.7780639105135,peer,metac-claude-3-5-sonnet-20240620,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236041,35.453884504078616,baseline,metac-claude-3-5-sonnet-20240620,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236041,23.512146826860803,spot_peer,metac-claude-3-5-sonnet-20240620,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236041,0.4541534736160441,relative_legacy,metac-claude-3-5-sonnet-20240620,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236043,10.540150883342772,peer,metac-grok-2-1212,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236043,25.52201580496788,baseline,metac-grok-2-1212,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236043,0.1738961426707009,relative_legacy,metac-grok-2-1212,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236043,11.908682158522026,spot_peer,metac-grok-2-1212,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236043,29.38933324510599,spot_baseline,metac-grok-2-1212,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236045,-0.0402598580908325,relative_legacy,metac-Gemini-Exp-1206,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236045,2.2617209303766708,peer,metac-Gemini-Exp-1206,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236045,14.218723300788772,baseline,metac-Gemini-Exp-1206,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236045,2.427961205236394,spot_peer,metac-Gemini-Exp-1206,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236045,20.273255405408264,spot_baseline,metac-Gemini-Exp-1206,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236047,20.273255405408264,spot_baseline,metac-Llama-3.1,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236047,2.4869894115770093,peer,metac-Llama-3.1,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236047,-0.0434619735428431,relative_legacy,metac-Llama-3.1,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236047,2.427961205236394,spot_peer,metac-Llama-3.1,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,236047,16.487978943561966,baseline,metac-Llama-3.1,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,237476,-81.26281024133684,spot_peer,NextWorldLab,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,237476,-1.9237526393654227,relative_legacy,NextWorldLab,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,237476,-65.86153971836882,peer,NextWorldLab,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,237476,-48.76489827488674,baseline,NextWorldLab,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,237476,-60.19864021629675,spot_baseline,NextWorldLab,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,239758,33.655782945748825,baseline,metac-perplexity,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,239758,0.436615194588452,relative_legacy,metac-perplexity,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,239758,23.512146826860803,spot_peer,metac-perplexity,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,239758,40.54651081081636,spot_baseline,metac-perplexity,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,239758,20.0508884465961,peer,metac-perplexity,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,239759,23.512146826860803,spot_peer,metac-exa,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,239759,0.4528530359718209,relative_legacy,metac-exa,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,239759,20.692589110256836,peer,metac-exa,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,239759,40.54651081081636,spot_baseline,metac-exa,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,239759,35.03330168701803,baseline,metac-exa,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,240416,20.042770291674746,peer,metac-o1-preview,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,240416,33.67450181004165,baseline,metac-o1-preview,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,240416,0.4362493820120612,relative_legacy,metac-o1-preview,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,240416,40.54651081081685,spot_baseline,metac-o1-preview,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,240416,23.51214682686132,spot_peer,metac-o1-preview,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,246118,-1.7413446113357116,relative_legacy,laylaps,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,246118,-44.1869963452252,baseline,laylaps,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,246118,-60.19864021629675,spot_baseline,laylaps,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,246118,-81.26281024133684,spot_peer,laylaps,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,246118,-59.41550592483545,peer,laylaps,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,247214,-0.0243768620392947,relative_legacy,ajf-bot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,247214,15.153158724504149,spot_baseline,ajf-bot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,247214,-2.896939342903889,spot_peer,ajf-bot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,247214,-0.2971486403994345,peer,ajf-bot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,247214,2.226510141398223,baseline,ajf-bot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,250015,40.54651081081636,spot_baseline,metac-deepseek-r1,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,250015,23.512146826860803,spot_peer,metac-deepseek-r1,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,250015,0.3347602314168894,relative_legacy,metac-deepseek-r1,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,250015,15.75065613357265,peer,metac-deepseek-r1,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,250015,26.31244995639773,baseline,metac-deepseek-r1,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,264059,29.38933324510569,spot_baseline,wunderplumb,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,264059,3.528055999936675,peer,wunderplumb,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,264059,0.0655442696063363,relative_legacy,wunderplumb,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,264059,11.908682158521705,spot_peer,wunderplumb,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,264059,8.095677438500767,baseline,wunderplumb,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,264332,40.54651081081636,spot_baseline,krm-bot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,264332,0.3987794063777969,baseline,krm-bot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,264332,0.2312445575904383,peer,krm-bot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,264332,0.0048550304451185,relative_legacy,krm-bot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,264332,23.512146826860803,spot_peer,krm-bot,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,264891,-60.19864021629675,spot_baseline,swingswish,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,264891,-51.44496808731082,baseline,swingswish,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,264891,-69.85368713466812,peer,swingswish,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,264891,-2.0350216748233763,relative_legacy,swingswish,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,264891,-81.26281024133684,spot_peer,swingswish,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,265212,-10.629446740072847,peer,4Shadower,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,265212,-0.3608504446759834,relative_legacy,4Shadower,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,265212,-24.134971230595127,spot_peer,4Shadower,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,265212,-5.268025782891271,spot_baseline,4Shadower,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35340,"How much will it rain in Brasília, Brazil in March 2025?",2025-03-08 04:57:11.10435+00,265212,-2.379860242087656,baseline,4Shadower,True,136.4,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35906 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,189869,44.10569968501255,baseline,VeritasAI,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,189869,-14.2929327113719,peer,VeritasAI,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,189869,-0.2762548964383216,relative_legacy,VeritasAI,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,189869,-16.03935121192297,spot_peer,VeritasAI,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,190710,84.79969065549501,spot_baseline,Bot_Pepa,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,190710,67.65099338059655,baseline,Bot_Pepa,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,190710,8.502145977031319,peer,Bot_Pepa,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,190710,0.0437789062913425,relative_legacy,Bot_Pepa,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,190710,9.98964314574232,spot_peer,Bot_Pepa,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,191026,-14.727495890473694,peer,manticAI,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,191026,36.31581846752975,baseline,manticAI,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,191026,-0.2796242385944891,relative_legacy,manticAI,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,191026,-18.737457064774173,spot_peer,manticAI,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,191026,44.78436443620852,spot_baseline,manticAI,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,191935,7.820130118780331,peer,pgodzinai,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,191935,87.97057662822883,spot_baseline,pgodzinai,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,191935,54.38166872936314,baseline,pgodzinai,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,191935,12.266029913044049,spot_peer,pgodzinai,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,191935,0.0485628078876182,relative_legacy,pgodzinai,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,192418,4.226798953434282,peer,InstitutPelFutur,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,192418,4.069664569461928,spot_peer,InstitutPelFutur,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,192418,-0.0217498902909004,relative_legacy,InstitutPelFutur,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,192418,68.53597475869867,baseline,InstitutPelFutur,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,192924,67.80719051126377,spot_baseline,acm_bot,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,192924,-0.0981716090712102,relative_legacy,acm_bot,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,192924,-2.2093141186688245,spot_peer,acm_bot,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,192924,-1.4404794344893377,peer,acm_bot,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,192924,59.247355453531966,baseline,acm_bot,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,204737,-4.037860982679187,spot_peer,SynapseSeer,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,204737,54.40813818636138,baseline,SynapseSeer,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,204737,-2.830108227061676,peer,SynapseSeer,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,204737,-0.1161612894431272,relative_legacy,SynapseSeer,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,204737,65.26012175965195,spot_baseline,SynapseSeer,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,218666,8.542220302016414,peer,GreeneiBot2,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,218666,48.72923562338708,baseline,GreeneiBot2,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,218666,0.065694462644728,relative_legacy,GreeneiBot2,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,218666,16.13314577980004,spot_peer,GreeneiBot2,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,218666,93.35726382610238,spot_baseline,GreeneiBot2,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,220077,4.356174481993491,peer,mmBot,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,220077,73.00876689610944,baseline,mmBot,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,220077,-0.0217498902909004,relative_legacy,mmBot,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,220077,4.069664569461928,spot_peer,mmBot,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,224797,4.042349896850463,peer,cookics_bot_TEST,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,224797,66.10791418977125,baseline,cookics_bot_TEST,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,224797,76.55347463629771,spot_baseline,cookics_bot_TEST,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,224797,4.069664569461928,spot_peer,cookics_bot_TEST,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,224797,-0.0220072659243147,relative_legacy,cookics_bot_TEST,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,227188,28.189674655430352,baseline,ProfessorSP,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,227188,-0.1846795420204932,relative_legacy,ProfessorSP,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,227188,-16.03935121192297,spot_peer,ProfessorSP,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,227188,48.54268271702416,spot_baseline,ProfessorSP,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,227188,-9.128225422634005,peer,ProfessorSP,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236037,9.98964314574232,spot_peer,metac-o1,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236037,71.35718388747094,baseline,metac-o1,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236037,0.0473908566955401,relative_legacy,metac-o1,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236037,9.001033645157104,peer,metac-o1,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236038,-1.417936100473428,peer,metac-gpt-4o,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236038,-0.0976529774521128,relative_legacy,metac-gpt-4o,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236038,-2.2093141186688245,spot_peer,metac-gpt-4o,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236038,58.6457414325722,baseline,metac-gpt-4o,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236040,-8.893660950774423,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236040,-0.1788606754695798,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236040,-7.275034987346308,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236040,50.84444721268776,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236041,66.67165868593203,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236041,-0.0220332213449141,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236041,4.069664569461928,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236041,4.0665715845389885,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236043,9.210159670266393,peer,metac-grok-2-1212,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236043,73.4575495354067,baseline,metac-grok-2-1212,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236043,0.0494222984401764,relative_legacy,metac-grok-2-1212,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236043,9.98964314574232,spot_peer,metac-grok-2-1212,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236045,-0.022008317455499,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236045,3.069573378919124,peer,metac-Gemini-Exp-1206,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236045,51.66814781650529,baseline,metac-Gemini-Exp-1206,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236045,4.069664569461928,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236047,55.2861358963353,baseline,metac-Llama-3.1,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236047,-1.2820474870842935,peer,metac-Llama-3.1,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236047,-0.0933730403971688,relative_legacy,metac-Llama-3.1,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236047,-2.2093141186688245,spot_peer,metac-Llama-3.1,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,237476,4.069664569461928,spot_peer,NextWorldLab,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,237476,63.51119963994138,baseline,NextWorldLab,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,237476,3.9333252240138634,peer,NextWorldLab,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,237476,-0.0220072659243147,relative_legacy,NextWorldLab,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,239758,70.2021704031403,baseline,metac-perplexity,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,239758,0.0462667618171146,relative_legacy,metac-perplexity,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,239758,9.98964314574232,spot_peer,metac-perplexity,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,239758,8.845377592441947,peer,metac-perplexity,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,239759,15.589462491592291,spot_peer,metac-exa,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,239759,0.1174853394644171,relative_legacy,metac-exa,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,239759,14.1414291032848,peer,metac-exa,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,239759,80.49513739855678,baseline,metac-exa,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,240416,-0.0220315997267193,relative_legacy,metac-o1-preview,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,240416,3.928237522322754,peer,metac-o1-preview,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,240416,63.46646467842301,baseline,metac-o1-preview,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,240416,4.069664569461928,spot_peer,metac-o1-preview,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,241715,-0.8188596920145953,relative_legacy,CatrachoCaster,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,241715,-18.44245711374277,spot_baseline,CatrachoCaster,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,241715,-15.470048478308245,baseline,CatrachoCaster,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,241715,-53.48232554340007,peer,CatrachoCaster,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,241715,-64.12814633978668,spot_peer,CatrachoCaster,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,246118,-11.395195121834425,peer,laylaps,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,246118,35.68497193907169,baseline,laylaps,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,246118,-0.2279217864417191,relative_legacy,laylaps,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,246118,-16.03935121192297,spot_peer,laylaps,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,247214,4.069664569461928,spot_peer,ajf-bot,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,247214,4.356174481993491,peer,ajf-bot,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,247214,-0.0217498902909004,relative_legacy,ajf-bot,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,247214,70.47097463886146,baseline,ajf-bot,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,247214,76.55347463629771,spot_baseline,ajf-bot,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,250015,47.50776628146286,baseline,metac-deepseek-r1,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,250015,4.069664569461928,spot_peer,metac-deepseek-r1,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,250015,2.753391350426425,peer,metac-deepseek-r1,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,250015,-0.0221103832934272,relative_legacy,metac-deepseek-r1,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,264059,22.639521761115628,baseline,wunderplumb,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,264059,9.98964314574232,spot_peer,wunderplumb,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,264059,0.0,relative_legacy,wunderplumb,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,264059,2.6669996274232592,peer,wunderplumb,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,264891,9.98964314574232,spot_peer,swingswish,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,264891,72.76072773595791,baseline,swingswish,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,264891,9.136018508073326,peer,swingswish,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,264891,84.79969065549501,spot_baseline,swingswish,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,264891,0.0487477891928385,relative_legacy,swingswish,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,265212,39.065300116179074,baseline,4Shadower,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,265212,9.98964314574232,spot_peer,4Shadower,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,265212,84.79969065549501,spot_baseline,4Shadower,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,265212,0.0159729965466013,relative_legacy,4Shadower,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35341,Will Jumaane Williams run for mayor of New York City?,2025-03-08 04:57:11.135737+00,265212,4.67366950720143,peer,4Shadower,True,no,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35907 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,189869,31.02000301143848,peer,VeritasAI,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,189869,33.28784175885344,spot_peer,VeritasAI,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,189869,60.19864021629683,spot_baseline,VeritasAI,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,189869,53.34222732952489,baseline,VeritasAI,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,189869,0.3505991251208695,relative_legacy,VeritasAI,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,190710,17.375282163503915,peer,Bot_Pepa,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,190710,69.22880667677634,spot_peer,Bot_Pepa,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,190710,0.2716108426870794,relative_legacy,Bot_Pepa,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,190710,23.807282414469427,baseline,Bot_Pepa,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,190710,94.85599924429393,spot_baseline,Bot_Pepa,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,191026,-0.1675478552968746,relative_legacy,manticAI,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,191026,11.974616999084708,spot_peer,manticAI,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,191026,34.2282358829172,baseline,manticAI,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,191026,39.64660205509127,spot_baseline,manticAI,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,191026,12.108531058042688,peer,manticAI,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,191935,61.19527834724994,spot_baseline,pgodzinai,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,191935,40.064714794797375,baseline,pgodzinai,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,191935,23.888260500019257,peer,pgodzinai,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,191935,0.2232064805124739,relative_legacy,pgodzinai,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,191935,34.321392413175175,spot_peer,pgodzinai,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,192418,12.01912380921692,peer,InstitutPelFutur,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,192418,-0.16821892520112,relative_legacy,InstitutPelFutur,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,192418,12.26372504213381,spot_peer,InstitutPelFutur,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,192418,39.92538481088862,spot_baseline,InstitutPelFutur,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,192418,35.44180820407191,baseline,InstitutPelFutur,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,192924,33.24881517966201,spot_baseline,acm_bot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,192924,28.783650074970115,baseline,acm_bot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,192924,6.307089372609096,peer,acm_bot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,192924,5.339875054195103,spot_peer,acm_bot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,192924,-0.3276392992072575,relative_legacy,acm_bot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,218666,0.561885498410861,relative_legacy,GreeneiBot2,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,218666,77.6557140630808,spot_peer,GreeneiBot2,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,218666,42.10490791897914,baseline,GreeneiBot2,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,218666,102.98194565251606,spot_baseline,GreeneiBot2,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,218666,32.231742933029274,peer,GreeneiBot2,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,220077,0.3197931812857081,relative_legacy,mmBot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,220077,29.908435998495094,peer,mmBot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,220077,55.91019941583822,baseline,mmBot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,220077,58.97820641275544,spot_baseline,mmBot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,220077,32.022206703329026,spot_peer,mmBot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,224797,-9.116077839697322,spot_baseline,cookics_bot_TEST,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,224797,-38.59408807699235,spot_peer,cookics_bot_TEST,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,224797,-1.3839244105644797,relative_legacy,cookics_bot_TEST,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,224797,-32.02989390183016,peer,cookics_bot_TEST,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,224797,-7.880399317529622,baseline,cookics_bot_TEST,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,227188,-181.8149926115342,spot_peer,ProfessorSP,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,227188,-83.0816590025229,baseline,ProfessorSP,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,227188,-3.217417485814215,relative_legacy,ProfessorSP,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,227188,-101.5278475851957,peer,ProfessorSP,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,227188,-147.22195006943411,spot_baseline,ProfessorSP,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236037,33.28784175885344,spot_peer,metac-o1,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236037,0.3211724648011981,relative_legacy,metac-o1,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236037,29.70382405025716,peer,metac-o1,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236037,50.26841463791966,baseline,metac-o1,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236037,60.19864021629683,spot_baseline,metac-o1,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236038,34.51907510412496,baseline,metac-gpt-4o,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236038,12.381717874570525,peer,metac-gpt-4o,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236038,-0.1601838569647133,relative_legacy,metac-gpt-4o,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236038,12.26372504213381,spot_peer,metac-gpt-4o,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236038,39.92538481088862,spot_baseline,metac-gpt-4o,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236040,52.13733065848147,baseline,metac-claude-3-5-sonnet-latest,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236040,33.28784175885344,spot_peer,metac-claude-3-5-sonnet-latest,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236040,60.19864021629683,spot_baseline,metac-claude-3-5-sonnet-latest,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236040,0.34543469216946,relative_legacy,metac-claude-3-5-sonnet-latest,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236040,30.73847125316374,peer,metac-claude-3-5-sonnet-latest,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236041,34.64640120829392,baseline,metac-claude-3-5-sonnet-20240620,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236041,12.350585990097604,peer,metac-claude-3-5-sonnet-20240620,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236041,39.92538481088862,spot_baseline,metac-claude-3-5-sonnet-20240620,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236041,12.26372504213381,spot_peer,metac-claude-3-5-sonnet-20240620,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236041,-0.1612224437472222,relative_legacy,metac-claude-3-5-sonnet-20240620,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236043,34.482843051793566,baseline,metac-grok-2-1212,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236043,12.358715987766931,peer,metac-grok-2-1212,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236043,-0.1606960454124709,relative_legacy,metac-grok-2-1212,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236043,12.26372504213381,spot_peer,metac-grok-2-1212,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236043,39.92538481088862,spot_baseline,metac-grok-2-1212,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236045,9.275234539084616,peer,metac-Gemini-Exp-1206,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236045,25.794817861040556,baseline,metac-Gemini-Exp-1206,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236045,-0.1778019563827554,relative_legacy,metac-Gemini-Exp-1206,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236045,12.26372504213381,spot_peer,metac-Gemini-Exp-1206,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236045,39.92538481088862,spot_baseline,metac-Gemini-Exp-1206,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236047,20.3682066463606,baseline,metac-Llama-3.1,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236047,25.54128118829957,spot_baseline,metac-Llama-3.1,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236047,-2.653123159069644,spot_peer,metac-Llama-3.1,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236047,-0.5032238673746214,relative_legacy,metac-Llama-3.1,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,236047,-0.6061601720527284,peer,metac-Llama-3.1,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,237476,-20.27325540540818,spot_baseline,NextWorldLab,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,237476,-17.11745157428547,baseline,NextWorldLab,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,237476,-40.9695234469777,peer,NextWorldLab,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,237476,-1.629547229850667,relative_legacy,NextWorldLab,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,237476,-50.16449444143324,spot_peer,NextWorldLab,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,239758,-0.1713143175546597,relative_legacy,metac-perplexity,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,239758,39.92538481088862,spot_baseline,metac-perplexity,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,239758,12.26372504213381,spot_peer,metac-perplexity,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,239758,11.67624333891514,peer,metac-perplexity,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,239758,32.64784336063894,baseline,metac-perplexity,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,239759,-42.57386381347171,peer,metac-exa,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,239759,-17.64572247779084,baseline,metac-exa,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,239759,-20.27325540540818,spot_baseline,metac-exa,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,239759,-50.16449444143324,spot_peer,metac-exa,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,239759,-1.6732932421508837,relative_legacy,metac-exa,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,240416,60.19864021629683,spot_baseline,metac-o1-preview,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,240416,0.3073472334920896,relative_legacy,metac-o1-preview,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,240416,49.24960680643118,baseline,metac-o1-preview,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,240416,33.28784175885344,spot_peer,metac-o1-preview,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,240416,29.0208155107148,peer,metac-o1-preview,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,246118,0.2503282444166068,relative_legacy,laylaps,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,246118,60.19864021629683,spot_baseline,laylaps,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,246118,44.21746722218716,baseline,laylaps,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,246118,25.963343551375267,peer,laylaps,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,246118,33.28784175885344,spot_peer,laylaps,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,247214,64.16999689786297,spot_baseline,ajf-bot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,247214,37.40628572492204,spot_peer,ajf-bot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,247214,0.4478811603422488,relative_legacy,ajf-bot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,247214,34.49183442164103,peer,ajf-bot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,247214,55.92269423054282,baseline,ajf-bot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,250015,34.89643118404733,baseline,metac-deepseek-r1,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,250015,23.856380441999253,peer,metac-deepseek-r1,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,250015,0.3097665831677434,relative_legacy,metac-deepseek-r1,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,250015,51.78209804209627,spot_peer,metac-deepseek-r1,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,250015,78.03238734656671,spot_baseline,metac-deepseek-r1,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,264059,0.0258316895277207,relative_legacy,wunderplumb,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,264059,8.985071993625814,peer,wunderplumb,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,264059,60.19864021629683,spot_baseline,wunderplumb,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,264059,33.28784175885344,spot_peer,wunderplumb,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,264059,16.16586817197739,baseline,wunderplumb,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,264332,-0.4881732123060322,relative_legacy,krm-bot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,264332,-5.41067970820238,spot_baseline,krm-bot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,264332,-9.399923560071857,peer,krm-bot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,264332,-1.4725985280943417,baseline,krm-bot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,264332,-34.75145297766426,spot_peer,krm-bot,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,264891,-156.804595018237,peer,swingswish,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,264891,-150.035990086584,spot_baseline,swingswish,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,264891,-184.73325633302295,spot_peer,swingswish,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,264891,-4.824548308117359,relative_legacy,swingswish,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,264891,-127.65596781230032,baseline,swingswish,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,265212,-21.74890030173033,peer,4Shadower,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,265212,-9.037147122261974,baseline,4Shadower,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,265212,-20.27325540540818,spot_baseline,4Shadower,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,265212,-50.16449444143324,spot_peer,4Shadower,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35342,"What percentage of his presidency will Donald Trump have spent golfing, according to Trump Golf Track on April 1, 2025?",2025-03-08 04:57:11.441846+00,265212,-0.9557139744459626,relative_legacy,4Shadower,True,26.76,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35908 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,189869,13.236508997535411,baseline,VeritasAI,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,189869,-0.0461299594146187,relative_legacy,VeritasAI,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,189869,9.692861293373037,peer,VeritasAI,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,189869,16.657716401215474,spot_peer,VeritasAI,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,189869,14.384103622589084,spot_baseline,VeritasAI,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,190710,0.5319177848877013,relative_legacy,Bot_Pepa,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,190710,39.92538481088862,spot_baseline,Bot_Pepa,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,190710,43.22064883704699,spot_peer,Bot_Pepa,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,190710,31.09616761141097,baseline,Bot_Pepa,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,190710,29.535189153473844,peer,Bot_Pepa,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,191026,-0.0230041242847598,relative_legacy,manticAI,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,191026,17.590211370466648,spot_peer,manticAI,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,191026,15.280733400715214,spot_baseline,manticAI,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,191026,13.19548847110518,baseline,manticAI,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,191026,10.639580602304072,peer,manticAI,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,191935,25.06062157042976,spot_baseline,pgodzinai,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,191935,27.76129506696978,spot_peer,pgodzinai,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,191935,0.1750872393518214,relative_legacy,pgodzinai,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,191935,12.85715799175138,peer,pgodzinai,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,191935,13.284289630659393,baseline,pgodzinai,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,192418,28.261181069553995,spot_peer,InstitutPelFutur,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,192418,20.356112634789422,peer,InstitutPelFutur,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,192418,22.474943080515807,baseline,InstitutPelFutur,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,192418,25.5412811882992,spot_baseline,InstitutPelFutur,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,192418,0.2417976024726122,relative_legacy,InstitutPelFutur,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,192924,13.30171330206216,spot_peer,acm_bot,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,192924,6.881525862970426,peer,acm_bot,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,192924,-0.1259461509968689,relative_legacy,acm_bot,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,192924,11.157177565710896,spot_baseline,acm_bot,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,192924,9.61893971066624,baseline,acm_bot,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,218666,6.798064196648372,baseline,GreeneiBot2,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,218666,6.658732069746384,peer,GreeneiBot2,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,218666,0.0252749147959088,relative_legacy,GreeneiBot2,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,218666,16.657716401215474,spot_peer,GreeneiBot2,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,218666,14.384103622589084,spot_baseline,GreeneiBot2,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,220077,29.8371626223138,spot_peer,mmBot,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,220077,22.393464654616444,peer,mmBot,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,220077,25.477220878967568,baseline,mmBot,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,220077,27.05664806595286,spot_baseline,mmBot,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,220077,0.2903498534186556,relative_legacy,mmBot,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,224797,-133.36141032910768,spot_baseline,cookics_bot_TEST,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,224797,-124.07753431352832,peer,cookics_bot_TEST,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,224797,-3.734356563469285,relative_legacy,cookics_bot_TEST,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,224797,-115.43803645773832,baseline,cookics_bot_TEST,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,224797,-136.99761810854918,spot_peer,cookics_bot_TEST,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236037,33.088246050684006,baseline,metac-o1,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236037,43.22064883704699,spot_peer,metac-o1,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236037,0.5626770601808708,relative_legacy,metac-o1,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236037,39.92538481088862,spot_baseline,metac-o1,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236037,31.420625447227867,peer,metac-o1,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236038,19.749849163361443,peer,metac-gpt-4o,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236038,25.54128118829994,spot_baseline,metac-gpt-4o,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236038,28.26118106955477,spot_peer,metac-gpt-4o,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236038,0.2302687109360496,relative_legacy,metac-gpt-4o,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236038,21.918705396762974,baseline,metac-gpt-4o,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236040,22.02190713456176,baseline,metac-claude-3-5-sonnet-latest,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236040,25.5412811882992,spot_baseline,metac-claude-3-5-sonnet-latest,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236040,0.2319430691906828,relative_legacy,metac-claude-3-5-sonnet-latest,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236040,28.261181069553995,spot_peer,metac-claude-3-5-sonnet-latest,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236040,19.86921998875787,peer,metac-claude-3-5-sonnet-latest,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236041,-0.2721623270408899,relative_legacy,metac-claude-3-5-sonnet-20240620,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236041,1.6157842136927207,peer,metac-claude-3-5-sonnet-20240620,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236041,4.559519361017374,baseline,metac-claude-3-5-sonnet-20240620,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236041,5.268025782891358,spot_baseline,metac-claude-3-5-sonnet-20240620,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236041,7.176995447929831,spot_peer,metac-claude-3-5-sonnet-20240620,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236043,12.375204202700084,baseline,metac-grok-2-1212,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236043,16.657716401215474,spot_peer,metac-grok-2-1212,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236043,14.384103622589084,spot_baseline,metac-grok-2-1212,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236043,-0.045731225066248,relative_legacy,metac-grok-2-1212,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236043,9.761209494208543,peer,metac-grok-2-1212,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236045,0.4452538871383315,relative_legacy,metac-Gemini-Exp-1206,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236045,43.22064883704699,spot_peer,metac-Gemini-Exp-1206,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236045,39.92538481088862,spot_baseline,metac-Gemini-Exp-1206,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236045,24.706515539421368,baseline,metac-Gemini-Exp-1206,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236045,23.972176523627528,peer,metac-Gemini-Exp-1206,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236047,-0.8332714712968602,relative_legacy,metac-Llama-3.1,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236047,-19.74385571911352,peer,metac-Llama-3.1,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236047,-16.022405751930673,baseline,metac-Llama-3.1,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236047,-20.27325540540818,spot_baseline,metac-Llama-3.1,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,236047,-19.38593698790168,spot_peer,metac-Llama-3.1,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,237476,0.2330839996894467,relative_legacy,NextWorldLab,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,237476,19.946408128923174,peer,NextWorldLab,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,237476,22.073167375402644,baseline,NextWorldLab,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,237476,28.261181069554382,spot_peer,NextWorldLab,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,237476,25.54128118829957,spot_baseline,NextWorldLab,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,239758,11.689113117318742,baseline,metac-perplexity,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,239758,-0.0466728440978316,relative_legacy,metac-perplexity,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,239758,16.657716401215474,spot_peer,metac-perplexity,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,239758,14.384103622589084,spot_baseline,metac-perplexity,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,239758,9.085971561279193,peer,metac-perplexity,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,239759,-20.27325540540818,spot_baseline,metac-exa,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,239759,-0.9170859966800804,relative_legacy,metac-exa,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,239759,-19.38593698790168,spot_peer,metac-exa,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,239759,-21.838415218051438,peer,metac-exa,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,239759,-17.741686210796477,baseline,metac-exa,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,240416,30.68764782481211,peer,metac-o1-preview,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,240416,0.5503591596022357,relative_legacy,metac-o1-preview,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,240416,43.22064883704699,spot_peer,metac-o1-preview,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,240416,39.92538481088862,spot_baseline,metac-o1-preview,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,240416,32.34854154216182,baseline,metac-o1-preview,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,246118,25.54128118829957,spot_baseline,laylaps,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,246118,18.794522539093748,baseline,laylaps,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,246118,16.954767675938157,peer,laylaps,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,246118,0.2025940766971279,relative_legacy,laylaps,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,246118,28.261181069554382,spot_peer,laylaps,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,247214,-22.662788597226108,spot_baseline,ajf-bot,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,247214,-20.09521890471588,baseline,ajf-bot,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,247214,-24.52831270982942,peer,ajf-bot,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,247214,-0.987457315052672,relative_legacy,ajf-bot,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,247214,-21.871051507392327,spot_peer,ajf-bot,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,250015,5.268025782891358,spot_baseline,metac-deepseek-r1,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,250015,-0.1486053687363867,relative_legacy,metac-deepseek-r1,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,250015,2.995326754269076,baseline,metac-deepseek-r1,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,250015,7.176995447929831,spot_peer,metac-deepseek-r1,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,250015,1.7680142302904047,peer,metac-deepseek-r1,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,264059,-1.147823631886034,relative_legacy,wunderplumb,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,264059,-135.40251005511138,spot_baseline,wunderplumb,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,264059,-37.07853545104093,baseline,wunderplumb,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,264059,-38.09662956571615,peer,wunderplumb,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,264059,-139.12036182359302,spot_peer,wunderplumb,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,264891,-11.334308046039045,peer,swingswish,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,264891,-0.6244496208949722,relative_legacy,swingswish,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,264891,-7.782472319562771,spot_peer,swingswish,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,264891,-7.778115772345532,baseline,swingswish,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,264891,-9.116077839697695,spot_baseline,swingswish,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,265212,-135.40251005511138,spot_baseline,4Shadower,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,265212,-139.12036182359302,spot_peer,4Shadower,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,265212,-1.9336991800028995,relative_legacy,4Shadower,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,265212,-64.22724294286684,peer,4Shadower,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35343,What will be the lowest price of bitcoin in the rest of March 2025?,2025-03-08 04:57:11.47467+00,265212,-61.49354250249623,baseline,4Shadower,True,79506.47,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,2025-03-11 22:00:00+00,35909 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,187708,93.9602720356044,spot_baseline,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,187708,-0.2477548260631746,spot_peer,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,187708,-0.0185939017252154,relative_legacy,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,187708,-0.1429387862543897,peer,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,187708,57.60416608788527,baseline,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,189869,-1.222094155911184,spot_peer,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,189869,92.5999418556223,spot_baseline,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,189869,82.01167620087065,baseline,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,189869,-0.8818406661403718,peer,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,189869,-0.0362801929204771,relative_legacy,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,191026,74.82973894139353,baseline,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,191026,-1.222094155911184,spot_peer,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,191026,-0.0354757450541091,relative_legacy,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,191026,-0.8717161206933765,peer,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,191935,97.08536543404836,spot_baseline,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,191935,1.1465586633696585,peer,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,191935,0.0,relative_legacy,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,191935,1.9905998413253652,spot_peer,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,191935,55.812430079841526,baseline,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,191975,0.000575214044432,relative_legacy,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,191975,0.8110370919729001,peer,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,191975,38.01140945911022,baseline,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,191975,97.23250415571516,spot_baseline,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,191975,2.095988257735737,spot_peer,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,192075,3.039678225940565,spot_peer,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,192075,73.37821493361531,baseline,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,192075,2.330258020679785,peer,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,192075,98.5500430304885,spot_baseline,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,192075,0.0107366121913679,relative_legacy,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,192418,3.934486918660302,peer,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,192418,94.32547046934133,baseline,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,192418,0.0292484758775458,relative_legacy,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,192418,3.974827896332082,spot_peer,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,192418,99.85565831303312,spot_baseline,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,192924,2.928330961099211,peer,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,192924,0.0164554694900445,relative_legacy,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,192924,98.5500430304885,spot_baseline,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,192924,3.039678225940565,spot_peer,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,192924,87.45274114090952,baseline,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,218666,2.5430049677777387,peer,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,218666,98.5500430304885,spot_baseline,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,218666,0.012290294348682,relative_legacy,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,218666,3.039678225940565,spot_peer,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,218666,78.57847979154661,baseline,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,220077,-0.0108977314341712,relative_legacy,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,220077,0.8708719091974412,peer,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,220077,95.02893203076488,baseline,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,220077,95.60566524124027,spot_baseline,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,220077,0.9307614907158206,spot_peer,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,224797,-0.0111865833366518,relative_legacy,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,224797,0.9140685981666276,peer,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,224797,95.60566524124027,spot_baseline,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,224797,0.9307614907158206,spot_peer,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,224797,78.96440157391852,baseline,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236037,2.916730032339451,peer,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236037,87.05510034417412,baseline,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236037,98.5500430304885,spot_baseline,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236037,3.039678225940565,spot_peer,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236037,0.0162819450137926,relative_legacy,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236038,-1.222094155911184,spot_peer,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236038,-0.8814725835873096,peer,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236038,92.5999418556223,spot_baseline,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236038,81.9920827462559,baseline,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236038,-0.0362780232390576,relative_legacy,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236040,-0.8877702414434214,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236040,-1.222094155911184,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236040,-0.036334945965004,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236040,82.12585177118811,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236041,-1.222094155911184,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236041,82.01507592949301,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236041,-0.88261201809571,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236041,-0.0362879437841902,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236041,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236043,75.07641633519862,baseline,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236043,-6.809040353839683,spot_peer,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236043,-0.1053308720411052,relative_legacy,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236043,-5.869851872156771,peer,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236045,82.08738460941302,baseline,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236045,1.8631721800629797,peer,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236045,0.0016373000756514,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236045,1.9905998413253652,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236045,97.08536543404836,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236047,-16.35140180748051,peer,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236047,58.77811733475402,baseline,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236047,-0.2510967883025426,relative_legacy,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,236047,-18.97995403833264,spot_peer,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,237476,2.810403870260316,peer,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,237476,99.85565831303312,spot_baseline,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,237476,3.974827896332082,spot_peer,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,237476,69.74318978986545,baseline,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,237476,0.0189075351227799,relative_legacy,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,239759,0.0143380723713202,relative_legacy,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,239759,3.039678225940565,spot_peer,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,239759,98.5500430304885,spot_baseline,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,239759,83.83417783732492,baseline,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,239759,2.782215906570324,peer,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,240416,1.980793576476608,peer,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,240416,0.0033178767515379,relative_legacy,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,240416,1.9905998413253652,spot_peer,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,240416,97.08536543404836,spot_baseline,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,240416,85.71534699656934,baseline,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,246118,98.5500430304885,spot_baseline,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,246118,66.649122872799,baseline,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,246118,2.080220113281999,peer,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,246118,0.0096728706753782,relative_legacy,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,246118,3.039678225940565,spot_peer,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,247214,-1.222094155911184,spot_peer,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,247214,16.0809418614268,baseline,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,247214,-0.212229345684022,peer,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,247214,92.5999418556223,spot_baseline,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,247214,-0.0077894040042707,relative_legacy,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,250015,70.02220176360613,baseline,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,250015,-7.693287020527232,peer,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,250015,-0.1310758974375808,relative_legacy,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,250015,-9.131235458552403,spot_peer,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,250015,81.55754288625727,spot_baseline,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264059,3.039678225940565,spot_peer,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264059,1.6318850274330443,peer,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264059,52.9940523679132,baseline,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264059,0.007876120482651,relative_legacy,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264059,98.5500430304885,spot_baseline,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264225,-0.0296524045933773,relative_legacy,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264225,-1.222094155911184,spot_peer,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264225,92.5999418556223,spot_baseline,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264225,-0.7911781928777459,peer,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264225,61.2009459389573,baseline,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264332,92.5999418556223,spot_baseline,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264332,57.581275538927976,baseline,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264332,-0.7500113975944582,peer,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264332,-0.0273265494504634,relative_legacy,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264332,-1.222094155911184,spot_peer,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264891,3.039678225940565,spot_peer,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264891,98.5500430304885,spot_baseline,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264891,0.0132190311932605,relative_legacy,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264891,2.691480985919082,peer,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,264891,81.98073781992633,baseline,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,265212,0.7083372796491587,peer,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,265212,0.9307614907158206,spot_peer,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,265212,95.60566524124027,spot_baseline,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,265212,68.53381749388852,baseline,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,265212,-0.0107761181042074,relative_legacy,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,265835,3.039678225940565,spot_peer,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,265835,68.05264925757476,baseline,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,265835,98.5500430304885,spot_baseline,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,265835,2.1279349316894067,peer,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,265835,0.0096728706753782,relative_legacy,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,266158,-1.222094155911184,spot_peer,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,266158,-0.0362780232390576,relative_legacy,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,266158,-0.85548098207084,peer,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,266158,80.17579009077994,baseline,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35344,"Will Canada revoke Elon Musk's citizenship before April 1, 2025?",2025-03-08 04:57:11.505776+00,266158,92.5999418556223,spot_baseline,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35910 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,187708,-0.1407870449510878,relative_legacy,twsummerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,187708,-14.41806337392341,spot_peer,twsummerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,187708,60.7862902831235,spot_baseline,twsummerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,187708,35.63811059572494,baseline,twsummerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,187708,-8.506808208062312,peer,twsummerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,189869,-3.136536272223713,spot_peer,VeritasAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,189869,-0.0688851805410048,relative_legacy,VeritasAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,189869,-3.138712539714605,peer,VeritasAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,189869,68.92441880265706,baseline,VeritasAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,191026,64.15460290875237,spot_baseline,manticAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,191026,-9.784573525763363,peer,manticAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,191026,-0.1608694473577176,relative_legacy,manticAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,191026,51.85575175188092,baseline,manticAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,191026,-12.008012896814636,spot_peer,manticAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,191935,92.5999418556223,spot_baseline,pgodzinai,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,191935,8.344819610122034,spot_peer,pgodzinai,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,191935,0.0458411011002402,relative_legacy,pgodzinai,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,191935,4.863226314550578,peer,pgodzinai,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,191935,54.41982812567199,baseline,pgodzinai,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,191975,-1.4939534354272983,peer,jkraybill_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,191975,18.314365239179867,baseline,jkraybill_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,191975,72.65406147471134,spot_baseline,jkraybill_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,191975,-5.926592776783113,spot_peer,jkraybill_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,191975,-0.0306162497128859,relative_legacy,jkraybill_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,192075,46.18584029106868,baseline,CumulativeBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,192075,62.29303509201767,spot_baseline,CumulativeBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,192075,-9.97079324763163,peer,CumulativeBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,192075,-0.1650260229936688,relative_legacy,CumulativeBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,192075,-13.339977266972882,spot_peer,CumulativeBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,192418,86.54637164515194,baseline,InstitutPelFutur,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,192418,8.344819610122034,spot_peer,InstitutPelFutur,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,192418,0.0755881346393139,relative_legacy,InstitutPelFutur,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,192418,7.369941842478384,peer,InstitutPelFutur,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,192924,0.0552315514907176,relative_legacy,acm_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,192924,80.06034052392184,baseline,acm_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,192924,6.701933901125967,spot_peer,acm_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,192924,5.822513792125188,peer,acm_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,192924,90.3038270112912,spot_baseline,acm_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,204737,65.07645591169023,spot_baseline,SynapseSeer,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,204737,-9.271924523335349,peer,SynapseSeer,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,204737,-0.153793649192122,relative_legacy,SynapseSeer,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,204737,52.7247686006439,baseline,SynapseSeer,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,204737,-11.348420835006015,spot_peer,SynapseSeer,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,218666,64.8722027588189,baseline,GreeneiBot2,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,218666,3.335576679060311,spot_peer,GreeneiBot2,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,218666,85.59896973084807,spot_baseline,GreeneiBot2,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,218666,0.0079021993111103,relative_legacy,GreeneiBot2,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,218666,2.4864697875967234,peer,GreeneiBot2,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,220077,92.5999418556223,spot_baseline,mmBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,220077,91.50168043596464,baseline,mmBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,220077,0.0755881346393139,relative_legacy,mmBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,220077,7.369941842478384,peer,mmBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,220077,8.344819610122034,spot_peer,mmBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,224797,84.79969065549501,spot_baseline,cookics_bot_TEST,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,224797,2.242622131031526,peer,cookics_bot_TEST,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,224797,0.0060034653487268,relative_legacy,cookics_bot_TEST,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,224797,2.763687091900027,spot_peer,cookics_bot_TEST,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,224797,70.11580642085998,baseline,cookics_bot_TEST,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236037,8.344819610122034,spot_peer,metac-o1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236037,81.38008024941713,baseline,metac-o1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236037,7.244255630464904,peer,metac-o1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236037,0.0748121547603409,relative_legacy,metac-o1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236037,92.5999418556223,spot_baseline,metac-o1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236038,76.55347463629771,spot_baseline,metac-gpt-4o,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236038,67.5183176789343,baseline,metac-gpt-4o,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236038,-2.9438210368581186,peer,metac-gpt-4o,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236038,-0.0662174542485818,relative_legacy,metac-gpt-4o,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236038,-3.136536272223713,spot_peer,metac-gpt-4o,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236040,74.95531380869903,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236040,2.3054720701306968,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236040,0.0065896429951531,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236040,2.763687091900027,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236040,84.79969065549501,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236041,-8.518432170686836,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236041,59.85647892274917,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236041,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236041,-9.394561750049236,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236041,-0.1434037235492256,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236043,67.60087604855107,baseline,metac-grok-2-1212,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236043,-2.9482086407224464,peer,metac-grok-2-1212,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236043,76.55347463629771,spot_baseline,metac-grok-2-1212,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236043,-3.136536272223713,spot_peer,metac-grok-2-1212,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236043,-0.06621801233139,relative_legacy,metac-grok-2-1212,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236045,76.75957575240855,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236045,6.894064027855075,peer,metac-Gemini-Exp-1206,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236045,8.344819610122034,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236045,0.0706443180079964,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236047,-9.394561750049236,spot_peer,metac-Llama-3.1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236047,57.79933825267455,baseline,metac-Llama-3.1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236047,-8.154113022426811,peer,metac-Llama-3.1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236047,-0.1388418314685614,relative_legacy,metac-Llama-3.1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,237476,8.344819610122034,spot_peer,NextWorldLab,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,237476,66.5846886056201,baseline,NextWorldLab,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,237476,5.947112648808309,peer,NextWorldLab,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,237476,0.0560882962557235,relative_legacy,NextWorldLab,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,239759,0.0725487896546396,relative_legacy,metac-exa,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,239759,7.066864082075202,peer,metac-exa,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,239759,78.99865021514269,baseline,metac-exa,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,239759,8.344819610122034,spot_peer,metac-exa,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,239759,92.5999418556223,spot_baseline,metac-exa,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,240416,74.24965219683655,baseline,metac-o1-preview,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,240416,2.763687091900027,spot_peer,metac-o1-preview,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,240416,0.0060050507200912,relative_legacy,metac-o1-preview,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,240416,2.296222310010048,peer,metac-o1-preview,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,246118,92.5999418556223,spot_baseline,laylaps,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,246118,0.052696278675192,relative_legacy,laylaps,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,246118,5.573538859177206,peer,laylaps,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,246118,62.5578871261327,baseline,laylaps,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,246118,8.344819610122034,spot_peer,laylaps,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,247214,0.0,relative_legacy,ajf-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,247214,1.1218868707895426,peer,ajf-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,247214,84.79969065549501,spot_baseline,ajf-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,247214,35.37851512803302,baseline,ajf-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,247214,2.763687091900027,spot_peer,ajf-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,250015,-13.415037565961088,peer,metac-deepseek-r1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,250015,-0.2117552318584292,relative_legacy,metac-deepseek-r1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,250015,48.429322475686845,baseline,metac-deepseek-r1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,250015,-16.056602641669485,spot_peer,metac-deepseek-r1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264059,1.4477184673327177,peer,wunderplumb,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264059,2.763687091900027,spot_peer,wunderplumb,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264059,0.0,relative_legacy,wunderplumb,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264059,45.75034875806184,baseline,wunderplumb,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264225,84.79969065549501,spot_baseline,KevinTestBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264225,56.2271105804104,baseline,KevinTestBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264225,1.7647056220436048,peer,KevinTestBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264225,0.0,relative_legacy,KevinTestBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264225,2.763687091900027,spot_peer,KevinTestBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264332,-3.136536272223713,spot_peer,krm-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264332,46.7872699846531,baseline,krm-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264332,-1.970860058040325,peer,krm-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264332,-0.0503984877335692,relative_legacy,krm-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264332,76.55347463629771,spot_baseline,krm-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264891,84.79969065549501,spot_baseline,swingswish,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264891,2.763687091900027,spot_peer,swingswish,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264891,70.46707425373708,baseline,swingswish,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264891,2.2477924283067106,peer,swingswish,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,264891,0.0060034653487268,relative_legacy,swingswish,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,265212,84.79969065549501,spot_baseline,4Shadower,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,265212,60.89522029345365,baseline,4Shadower,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,265212,2.763687091900027,spot_peer,4Shadower,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,265212,0.0,relative_legacy,4Shadower,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,265212,1.9211019122579656,peer,4Shadower,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,265835,2.763687091900027,spot_peer,jonahsingerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,265835,84.79969065549501,spot_baseline,jonahsingerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,265835,0.0,relative_legacy,jonahsingerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,265835,1.8420466591894065,peer,jonahsingerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,265835,58.65068227450402,baseline,jonahsingerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,266158,2.763687091900027,spot_peer,bean_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,266158,84.79969065549501,spot_baseline,bean_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,266158,73.72474910549938,baseline,bean_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,266158,2.289740675928084,peer,bean_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35345,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 04:57:11.536778+00,266158,0.0060034653487268,relative_legacy,bean_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,2025-03-12 22:00:00+00,35911 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,187708,6.775523625497467,baseline,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,187708,30.313303362610995,spot_peer,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,187708,12.167855658825246,spot_baseline,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,187708,-0.0165334904205133,relative_legacy,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,187708,17.207799424543037,peer,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,189869,-91.24943888849684,baseline,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,189869,-39.33530702409566,peer,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,189869,-0.8586765189650356,relative_legacy,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,189869,-49.943556404480205,spot_peer,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,189869,-100.0,spot_baseline,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,191026,0.1681327035718191,relative_legacy,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,191026,21.26486926908913,baseline,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,191026,26.303440583379377,spot_baseline,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,191026,40.42741003205138,spot_peer,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,191026,35.92134569622529,peer,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,191935,-73.69655941662059,spot_baseline,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,191935,-7.4210708025630705,peer,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,191935,-0.2050185513984081,relative_legacy,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,191935,-31.123266670910688,spot_peer,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,191935,-17.596535003897028,baseline,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,191975,38.29438695689903,spot_baseline,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,191975,8.890710295555197,baseline,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,191975,11.377833473064152,peer,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,191975,0.0606573023509603,relative_legacy,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,191975,49.007013305394,spot_peer,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,192075,45.94316186372972,spot_baseline,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,192075,0.2634769541303678,relative_legacy,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,192075,54.47976351071769,spot_peer,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,192075,34.150447594825906,baseline,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,192075,42.48833099054642,peer,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,192418,-1.1587390413413103,relative_legacy,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,192418,-61.650564190981854,peer,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,192418,-122.43932546505772,baseline,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,192418,-132.19280948873626,spot_baseline,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,192418,-72.9777294433664,spot_peer,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,192924,38.19450598737511,baseline,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,192924,52.22975233630419,peer,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,192924,0.4054414500890387,relative_legacy,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,192924,52.58565887400065,spot_peer,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,192924,43.29594072761063,spot_baseline,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,204737,52.00450240398177,spot_baseline,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,204737,58.81669368453901,spot_peer,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,204737,0.3748196039754363,relative_legacy,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,204737,50.77991635956415,peer,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,204737,41.98786531605297,baseline,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,218666,-39.34449522546299,baseline,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,218666,-11.577317469465957,peer,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,218666,-0.4798224945586269,relative_legacy,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,218666,-18.20320030146494,spot_peer,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,218666,-55.63933485243855,spot_baseline,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,220077,-15.2109384306776,spot_peer,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,220077,-50.53065357221651,baseline,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,220077,-51.45731728297583,spot_baseline,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,220077,-6.076760105916002,peer,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,220077,-0.4109525887351251,relative_legacy,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,224797,-0.8577880572169279,relative_legacy,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,224797,-82.78239050176408,baseline,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,224797,-37.99030967033735,peer,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,224797,-49.943556404480205,spot_peer,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,224797,-100.0,spot_baseline,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236037,-44.93968485205476,baseline,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236037,-51.45731728297583,spot_baseline,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236037,-15.2109384306776,spot_peer,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236037,-0.4339001923764771,relative_legacy,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236037,-8.341577886607004,peer,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236038,-49.943556404480205,spot_peer,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236038,-88.05303522391888,baseline,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236038,-39.10469861539918,peer,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236038,-0.8578845791511188,relative_legacy,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236038,-100.0,spot_baseline,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236040,-8.210658122629663,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236040,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236040,-45.33939507422285,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236040,-0.4304351377174141,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236040,-15.2109384306776,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236041,-87.94314677790932,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236041,-100.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236041,-49.943556404480205,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236041,-0.8577747185354242,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236041,-39.07035394567043,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236043,-87.99821302547716,baseline,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236043,-0.857899242702789,relative_legacy,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236043,-39.09000682749392,peer,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236043,-49.943556404480205,spot_peer,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236043,-100.0,spot_baseline,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236045,-76.13871160241263,baseline,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236045,-100.0,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236045,-49.943556404480205,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236045,-35.98366426137023,peer,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236045,-0.8301682113236241,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236047,-31.123266670910688,spot_peer,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236047,-22.322580542353272,peer,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236047,-61.72752155250038,baseline,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236047,-73.69655941662059,spot_baseline,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,236047,-0.6376928566172699,relative_legacy,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,237476,9.638245286475655,peer,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,237476,-15.200309344505014,spot_baseline,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,237476,-11.179211956987473,baseline,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,237476,10.731196101544963,spot_peer,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,237476,-0.1938641792338825,relative_legacy,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,239759,-102.67394337387276,spot_peer,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,239759,-148.6581998843975,baseline,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,239759,-84.0115143423001,peer,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,239759,-1.488507333862734,relative_legacy,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,239759,-173.6965594166206,spot_baseline,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,240416,-58.853600688651134,peer,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,240416,-132.19280948873626,spot_baseline,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,240416,-72.9777294433664,spot_peer,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,240416,-114.34705243497046,baseline,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,240416,-1.13624317270632,relative_legacy,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,246118,0.2369138987753577,relative_legacy,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,246118,39.19531466002141,peer,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,246118,32.805368693812106,baseline,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,246118,56.33973827228449,spot_peer,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,247214,-6.3769110147980745,baseline,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,247214,-15.200309344505014,spot_baseline,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,247214,10.731196101544963,spot_peer,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,247214,4.6246937276351225,peer,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,247214,-0.114816316503216,relative_legacy,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,250015,-9.285612952449904,peer,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,250015,-41.64599911648566,baseline,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,250015,-51.45731728297583,spot_baseline,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,250015,-15.2109384306776,spot_peer,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,250015,-0.4602407835835508,relative_legacy,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264059,63.46158307093755,spot_peer,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264059,31.382576651223584,baseline,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264059,34.33066346435771,peer,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264059,58.496250072115615,spot_baseline,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264059,0.2320131064999379,relative_legacy,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264225,-0.575100198107967,relative_legacy,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264225,-19.70940347025585,peer,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264225,-48.76650746254755,baseline,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264225,-73.69655941662059,spot_baseline,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264225,-31.123266670910688,spot_peer,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264332,38.84133398174982,peer,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264332,0.2562470366207324,relative_legacy,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264332,63.46158307093755,spot_peer,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264332,35.26335154555627,baseline,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264332,58.496250072115615,spot_baseline,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264891,50.43803277014772,peer,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264891,56.33973827228449,spot_peer,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264891,40.135000186566174,baseline,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264891,48.54268271702416,spot_baseline,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,264891,0.3703600930026285,relative_legacy,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,265212,48.48105820415679,baseline,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,265212,0.3996261868388084,relative_legacy,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,265212,70.12362396255782,spot_peer,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,265212,67.80719051126377,spot_baseline,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,265212,51.709915643213975,peer,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,265835,18.224745474674688,baseline,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,265835,0.0937009688624437,relative_legacy,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,265835,29.263077686084102,peer,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,265835,26.303440583379377,spot_baseline,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,265835,40.42741003205138,spot_peer,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,266158,58.496250072115615,spot_baseline,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,266158,50.508797696315256,baseline,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,266158,59.98874541860803,peer,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,266158,0.5107535194905977,relative_legacy,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35346,Will an OpenAI model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.567712+00,266158,63.46158307093755,spot_peer,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35912 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,187708,2.9411460350967107,peer,twsummerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,187708,-2.211218062259694,baseline,twsummerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,187708,-13.92357973711722,spot_baseline,twsummerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,187708,18.519784202705985,spot_peer,twsummerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,187708,0.0468757800300158,relative_legacy,twsummerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,189869,59.9772043871016,peer,VeritasAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,189869,0.828745027453106,relative_legacy,VeritasAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,189869,70.33666249834555,spot_peer,VeritasAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,189869,53.27514137261018,baseline,VeritasAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,191026,11.119175609163928,baseline,manticAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,191026,0.4085307742934807,relative_legacy,manticAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,191026,38.32066989923955,spot_peer,manticAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,191026,13.750352374993504,spot_baseline,manticAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,191026,26.881920785420466,peer,manticAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,191935,-28.685755808782005,baseline,pgodzinai,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,191935,-15.26227449539494,peer,pgodzinai,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,191935,-0.199078350622787,relative_legacy,pgodzinai,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,191935,-155.6393348524385,spot_baseline,pgodzinai,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,191935,-82.87879757701901,spot_peer,pgodzinai,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,191975,0.0139051806867268,relative_legacy,jkraybill_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,191975,-1.4896507007072846,spot_peer,jkraybill_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,191975,-41.88898247744506,spot_baseline,jkraybill_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,191975,-16.715616205819494,baseline,jkraybill_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,191975,-1.0415859383945505,peer,jkraybill_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,192075,-28.179063083567264,peer,CumulativeBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,192075,-33.23000680372254,spot_peer,CumulativeBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,192075,-63.65817397205127,baseline,CumulativeBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,192075,-0.3298509843772909,relative_legacy,CumulativeBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,192075,-86.24964762500649,spot_baseline,CumulativeBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,192418,40.603598511216745,baseline,InstitutPelFutur,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,192418,44.36066514756148,spot_baseline,InstitutPelFutur,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,192418,60.22255582890517,spot_peer,InstitutPelFutur,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,192418,0.703255885248588,relative_legacy,InstitutPelFutur,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,192418,51.21790590343142,peer,InstitutPelFutur,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,192924,-13.397709966435068,baseline,acm_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,192924,10.458868349471944,peer,acm_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,192924,0.1750293638935109,relative_legacy,acm_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,192924,17.606275528952963,spot_peer,acm_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,192924,-15.200309344504996,spot_baseline,acm_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,204737,2.825661408135475,peer,SynapseSeer,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,204737,8.749502387963778,spot_peer,SynapseSeer,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,204737,-27.578631324264176,spot_baseline,SynapseSeer,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,204737,-22.391575826475684,baseline,SynapseSeer,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,204737,0.0743253554301428,relative_legacy,SynapseSeer,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,218666,-2.599616303418162,spot_peer,GreeneiBot2,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,218666,-28.55868222254916,baseline,GreeneiBot2,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,218666,-4.510073758663907,peer,GreeneiBot2,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,218666,0.0011890508577049,relative_legacy,GreeneiBot2,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,218666,-43.440282414577496,spot_baseline,GreeneiBot2,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,220077,-169.7091144261527,baseline,mmBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,220077,-95.7988639464648,spot_peer,mmBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,220077,-173.6965594166206,spot_baseline,mmBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,220077,-1.2926357383829807,relative_legacy,mmBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,220077,-95.91931399122808,peer,mmBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,224797,40.24658922881925,baseline,cookics_bot_TEST,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,224797,48.29076487310745,peer,cookics_bot_TEST,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,224797,0.6961882479034825,relative_legacy,cookics_bot_TEST,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,224797,63.21481769969248,spot_peer,cookics_bot_TEST,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,224797,48.54268271702416,spot_baseline,cookics_bot_TEST,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236037,-42.393760299711616,peer,metac-o1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236037,-86.60624484730329,baseline,metac-o1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236037,-43.068476977072216,spot_peer,metac-o1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236037,-100.0,spot_baseline,metac-o1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236037,-0.5531081426259111,relative_legacy,metac-o1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236038,0.6412404057397758,relative_legacy,metac-gpt-4o,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236038,37.85116232537298,spot_baseline,metac-gpt-4o,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236038,33.264173924623854,baseline,metac-gpt-4o,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236038,44.158233692321126,peer,metac-gpt-4o,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236038,55.56496250963089,spot_peer,metac-gpt-4o,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236040,0.5398219649938916,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236040,47.30248945945938,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236040,23.10190069016272,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236040,26.303440583379377,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236040,36.80362561204646,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236041,70.33666249834555,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236041,0.8217875873908783,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236041,57.12265634002405,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236041,51.2335805448827,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236043,0.5395790325312213,relative_legacy,metac-grok-2-1212,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236043,36.73750002948543,peer,metac-grok-2-1212,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236043,26.303440583379377,spot_baseline,metac-grok-2-1212,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236043,23.02812804092843,baseline,metac-grok-2-1212,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236043,47.30248945945938,spot_peer,metac-grok-2-1212,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236045,38.32066989923955,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236045,10.672758280409306,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236045,13.750352374993504,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236045,0.4081851182280304,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236045,25.977980340915437,peer,metac-Gemini-Exp-1206,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236047,21.85028372873802,baseline,metac-Llama-3.1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236047,35.079521282779766,peer,metac-Llama-3.1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236047,0.5127414574504654,relative_legacy,metac-Llama-3.1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,236047,47.30248945945938,spot_peer,metac-Llama-3.1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,237476,57.425583725569794,baseline,NextWorldLab,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,237476,59.024791421869445,peer,NextWorldLab,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,237476,0.8793271907530685,relative_legacy,NextWorldLab,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,237476,83.25672886779134,spot_peer,NextWorldLab,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,239759,-173.6965594166206,spot_baseline,metac-exa,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,239759,-95.7988639464648,spot_peer,metac-exa,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,239759,-1.1766552953460825,relative_legacy,metac-exa,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,239759,-87.55761817629228,peer,metac-exa,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,239759,-149.1547908746016,baseline,metac-exa,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,240416,-95.7988639464648,spot_peer,metac-o1-preview,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,240416,-173.6965594166206,spot_baseline,metac-o1-preview,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,240416,-147.83386607943578,baseline,metac-o1-preview,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,240416,-86.7007806165623,peer,metac-o1-preview,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,240416,-1.1690723493843898,relative_legacy,metac-o1-preview,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,246118,47.30248945945938,spot_peer,laylaps,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,246118,26.303440583379377,spot_baseline,laylaps,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,246118,17.772478293252288,baseline,laylaps,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,246118,0.4695330075515934,relative_legacy,laylaps,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,246118,29.0969099170614,peer,laylaps,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,247214,-118.81304199984066,baseline,ajf-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,247214,-73.66969241975067,peer,ajf-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,247214,-0.9924578788781652,relative_legacy,ajf-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,247214,-174.47138544807993,spot_peer,ajf-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,247214,-283.65012677171205,spot_baseline,ajf-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,250015,-0.4765330606875056,relative_legacy,metac-deepseek-r1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,250015,-77.80756863620547,baseline,metac-deepseek-r1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,250015,-100.0,spot_baseline,metac-deepseek-r1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,250015,-43.068476977072216,spot_peer,metac-deepseek-r1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,250015,-37.64640450298451,peer,metac-deepseek-r1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264059,-73.69655941662063,spot_baseline,wunderplumb,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264059,-39.71108634526906,baseline,wunderplumb,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264059,-14.61905418977416,peer,wunderplumb,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264059,-0.1493212537750778,relative_legacy,wunderplumb,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264059,-24.248187243502706,spot_peer,wunderplumb,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264225,38.210903802178855,baseline,KevinTestBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264225,43.32120727713546,peer,KevinTestBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264225,58.496250072115615,spot_baseline,KevinTestBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264225,70.33666249834555,spot_peer,KevinTestBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264225,0.6670585778743514,relative_legacy,KevinTestBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264332,-42.32094971178476,baseline,krm-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264332,-0.1600361025522617,relative_legacy,krm-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264332,-15.83202871243344,peer,krm-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264332,-73.69655941662063,spot_baseline,krm-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264332,-24.248187243502706,spot_peer,krm-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264891,-32.19280948873623,spot_baseline,swingswish,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264891,-26.771586218254768,baseline,swingswish,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264891,0.0762878236383933,peer,swingswish,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264891,0.027186638475128,relative_legacy,swingswish,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,264891,5.448026687003718,spot_peer,swingswish,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,265212,-0.2176468018451733,relative_legacy,4Shadower,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,265212,-73.69655941662063,spot_baseline,4Shadower,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,265212,-24.248187243502706,spot_peer,4Shadower,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,265212,-52.74522343315951,baseline,4Shadower,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,265212,-20.72973707104149,peer,4Shadower,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,265835,-19.8876644521536,peer,jonahsingerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,265835,-50.90615115686255,baseline,jonahsingerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,265835,-73.69655941662063,spot_baseline,jonahsingerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,265835,-24.248187243502706,spot_peer,jonahsingerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,265835,-0.206138231612547,relative_legacy,jonahsingerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,266158,-24.248187243502706,spot_peer,bean_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,266158,-63.95329850971569,baseline,bean_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,266158,-26.043133771089035,peer,bean_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,266158,-73.69655941662063,spot_baseline,bean_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35347,Will a Gemini model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.892766+00,266158,-0.3270250075776615,relative_legacy,bean_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35913 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,187708,20.95947090017093,baseline,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,187708,3.765720726524272,peer,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,187708,0.0354621867315673,relative_legacy,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,187708,16.555150202104837,spot_peer,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,187708,92.1436330806298,spot_baseline,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,189869,5.400286336121245,spot_peer,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,189869,70.05122005246166,baseline,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,189869,3.5422997995025685,peer,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,189869,-0.006200359702536,relative_legacy,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,191026,0.0804192486945715,relative_legacy,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,191026,12.667758913150337,spot_peer,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,191026,86.71057295026547,spot_baseline,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,191026,70.13586152602112,baseline,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,191026,9.537573722104352,peer,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,191935,5.052866868912368,peer,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,191935,25.27940997930332,baseline,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,191935,95.60566524124027,spot_baseline,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,191935,19.032257640695832,spot_peer,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,191935,0.05037652696531,relative_legacy,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,191975,-0.5540492733328626,relative_legacy,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,191975,-37.06198082570175,peer,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,191975,-48.87006476627528,spot_baseline,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,191975,-21.58799217472034,baseline,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,191975,-84.34110485122602,spot_peer,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,192075,58.78739155757466,baseline,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,192075,7.20603162102625,spot_peer,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,192075,0.0224210947861138,relative_legacy,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,192075,79.07720378619997,spot_baseline,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,192075,5.025945593660447,peer,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,192418,0.0965302188732854,peer,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,192418,64.69927197780903,baseline,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,192418,1.691175706334073,spot_peer,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,192418,71.36958148433591,spot_baseline,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,192418,-0.0531943459312894,relative_legacy,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,192924,74.62310233290358,baseline,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,192924,11.300509700244968,spot_peer,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,192924,0.0663657330630292,relative_legacy,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,192924,8.748326385200652,peer,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,204737,11.872399287405266,spot_peer,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,204737,69.68055066432511,baseline,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,204737,8.918826813855436,peer,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,204737,0.0714694848360316,relative_legacy,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,204737,85.59896973084807,spot_baseline,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,218666,8.624946192900849,peer,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,218666,14.128790906760011,spot_peer,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,218666,54.3243249614172,baseline,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,218666,88.75252707415875,spot_baseline,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,218666,0.0746688923349751,relative_legacy,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,220077,3.5422997995025685,peer,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,220077,-0.006200359702536,relative_legacy,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,220077,5.400286336121245,spot_peer,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,220077,74.42569384073175,baseline,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,224797,56.3078522503995,baseline,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,224797,67.80719051126377,spot_baseline,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,224797,-0.8577391417042816,spot_peer,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,224797,-0.0759512568880377,relative_legacy,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,224797,-1.635134543330506,peer,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236037,11.300509700244968,spot_peer,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236037,73.01368455801962,baseline,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236037,8.642125252301383,peer,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236037,0.0651696823418576,relative_legacy,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236038,8.716149366052829,peer,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236038,84.79969065549501,spot_baseline,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236038,11.300509700244968,spot_peer,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236038,74.23523668225981,baseline,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236038,0.0659821758523397,relative_legacy,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236040,5.400286336121245,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236040,-0.0061813727278148,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236040,3.498580339663219,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236040,66.99704650916519,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236041,59.15127867468562,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236041,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236041,-0.8577391417042816,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236041,-0.0824543556766596,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236041,-2.010617642347248,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236043,11.300509700244968,spot_peer,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236043,8.702538061412998,peer,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236043,74.00858033775425,baseline,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236043,0.0657871375369914,relative_legacy,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236045,51.96811027100707,baseline,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236045,5.400286336121245,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236045,3.5878389388423075,peer,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236045,0.0043512740930701,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236047,55.386229459498686,baseline,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236047,-0.8577391417042816,spot_peer,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236047,-0.0735668312575761,relative_legacy,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,236047,-1.5214320370642291,peer,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,237476,-0.3838546777551698,relative_legacy,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,237476,20.181551898582825,baseline,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,237476,-30.553953072210717,spot_peer,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,237476,26.303440583379377,spot_baseline,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,237476,-24.019160534284737,peer,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,239759,11.300509700244968,spot_peer,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,239759,8.641175897755911,peer,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,239759,73.00950486717903,baseline,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,239759,0.0651590163299434,relative_legacy,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,240416,8.572238099405228,peer,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,240416,71.48018388277222,baseline,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,240416,11.300509700244968,spot_peer,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,240416,0.0651561885313321,relative_legacy,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,246118,-0.0548033960942758,relative_legacy,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,246118,45.8354729317668,baseline,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,246118,-0.8577391417042816,spot_peer,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,246118,67.80719051126377,spot_baseline,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,246118,-0.6702221489286692,peer,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,247214,21.13897987359464,spot_peer,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,247214,98.5500430304885,spot_baseline,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,247214,65.91997127890968,baseline,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,247214,14.084811690593568,peer,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,247214,0.1510869041195389,relative_legacy,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,250015,3.6780470468506383,peer,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,250015,56.887971817353005,baseline,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,250015,0.0036639765795778,relative_legacy,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,250015,5.400286336121245,spot_peer,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264059,0.0,relative_legacy,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264059,76.55347463629771,spot_baseline,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264059,5.400286336121245,spot_peer,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264059,41.185749534933215,baseline,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264059,2.977561191649021,peer,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264225,-0.8577391417042816,spot_peer,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264225,44.56795854348472,baseline,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264225,-0.642781223076111,peer,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264225,67.80719051126377,spot_baseline,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264225,-0.0535349242074221,relative_legacy,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264332,79.07720378619997,spot_baseline,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264332,7.20603162102625,spot_peer,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264332,0.0144970313752246,relative_legacy,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264332,45.42423676478781,baseline,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264332,4.157452950495785,peer,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264891,-1.6252552753951583,peer,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264891,67.80719051126377,spot_baseline,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264891,-0.8577391417042816,spot_peer,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264891,-0.0757558749005891,relative_legacy,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,264891,56.22988665656136,baseline,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,265212,-0.8577391417042816,spot_peer,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,265212,-0.0584174737363813,relative_legacy,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,265212,-0.8354931507725479,peer,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,265212,67.80719051126377,spot_baseline,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,265212,48.63735368132221,baseline,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,265835,-50.86526567470944,baseline,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,265835,-102.10462977517275,spot_peer,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,265835,-73.69655941662059,spot_baseline,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,265835,-70.75089355149353,peer,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,265835,-1.0327050411844745,relative_legacy,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,266158,8.659115976334993,peer,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,266158,73.32907313602229,baseline,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,266158,11.300509700244968,spot_peer,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,266158,84.79969065549501,spot_baseline,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35348,Will a Claude model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.925232+00,266158,0.0651585996544057,relative_legacy,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35914 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,187708,-70.36894392919075,spot_baseline,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,187708,-0.0714887095170645,relative_legacy,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,187708,-7.28203627798515,peer,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,187708,-38.88725895692225,spot_peer,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,187708,-13.17730321655014,baseline,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,189869,56.25452722971653,peer,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,189869,61.94148609835519,baseline,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,189869,59.97870027721763,spot_peer,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,189869,0.6519791308831182,relative_legacy,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,191026,75.5217050234756,spot_peer,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,191026,89.53026213333067,spot_baseline,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,191026,72.43434738980942,baseline,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,191026,0.7790311220704206,relative_legacy,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,191026,61.68122963039527,peer,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,191935,46.19481458694429,spot_peer,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,191935,17.37638219136435,baseline,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,191935,16.32979653673086,peer,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,191935,0.1694359508721823,relative_legacy,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,191935,48.54268271702416,spot_baseline,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,191975,21.798521688601987,peer,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,191975,66.17495998107049,spot_baseline,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,191975,58.81082828751197,spot_peer,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,191975,0.2394436623511274,relative_legacy,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,191975,24.750800388140632,baseline,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,192075,23.266075679027505,spot_baseline,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,192075,21.23813065011236,peer,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,192075,17.313374427064893,baseline,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,192075,0.248215541387912,relative_legacy,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,192075,28.109231203709147,spot_peer,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,192418,-132.4152886875557,baseline,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,192418,-85.4823199704319,peer,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,192418,-1.2834874609361695,relative_legacy,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,192418,-93.99857732564344,spot_peer,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,192418,-147.39311883324118,spot_baseline,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,192924,-100.8446746042724,baseline,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,192924,-61.90440535870575,peer,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,192924,-0.9590769514834636,relative_legacy,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,192924,-70.96440428675731,spot_peer,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,192924,-115.20030934450504,spot_baseline,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,204737,-0.9196555833995764,relative_legacy,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,204737,-60.44949241300765,peer,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,204737,-97.3111332421257,baseline,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,204737,-74.22689093608183,spot_peer,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,204737,-119.75999598851608,spot_baseline,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,218666,49.81714437391412,spot_peer,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,218666,0.3573353025422394,relative_legacy,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,218666,53.60529002402098,spot_baseline,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,218666,30.35247445494385,baseline,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,218666,28.41787500177478,peer,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,220077,38.54495939688271,spot_peer,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,220077,0.3783325029299866,relative_legacy,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,220077,35.94074893171164,peer,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,220077,36.5932073859098,baseline,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,224797,30.2824863467112,spot_peer,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,224797,25.52945308621169,peer,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,224797,0.2619826153419079,relative_legacy,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,224797,21.866517203741537,baseline,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,224797,26.303440583379377,spot_baseline,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236037,49.97707696529631,baseline,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236037,46.34753963525312,peer,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236037,0.5341527696820078,relative_legacy,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236037,58.496250072115615,spot_baseline,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236037,53.31665938559735,spot_peer,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236038,-151.90699617937213,baseline,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236038,-173.6965594166206,spot_baseline,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236038,-112.81886705921296,spot_peer,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236038,-1.4706094477828184,relative_legacy,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236038,-98.84326787256308,peer,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236040,33.008521410099725,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236040,34.74883628007346,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236040,0.375220126085223,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236040,38.54495939688271,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236041,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236041,-21.53968299306738,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236041,-0.4052593667141944,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236041,-25.3558621160178,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236041,-44.698758897148736,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236043,46.19481458694429,spot_peer,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236043,41.24886101935553,peer,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236043,42.19720566788795,baseline,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236043,0.4635420522452315,relative_legacy,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236045,66.23672575504314,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236045,50.6517671268853,baseline,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236045,44.12772977293463,peer,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236045,0.583061150679137,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236047,-26.06676768012852,baseline,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236047,-9.19827516399621,peer,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236047,-0.2062802132083873,relative_legacy,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236047,-11.571976425744468,spot_peer,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,237476,-100.0,spot_baseline,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,237476,-0.7206772944019346,relative_legacy,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,237476,-47.11246945937586,peer,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,237476,-78.46138422356711,baseline,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,237476,-60.08848008982039,spot_peer,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,239759,73.320404534577,baseline,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,239759,63.53682356240315,peer,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,239759,0.7728574817579609,relative_legacy,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,239759,72.13694911916686,spot_peer,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,240416,48.74348588472338,baseline,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,240416,58.496250072115615,spot_baseline,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,240416,53.31665938559735,spot_peer,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,240416,0.5298176079565992,relative_legacy,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,240416,44.92911969589568,peer,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,246118,-100.0,spot_baseline,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,246118,-60.08848008982039,spot_peer,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,246118,-0.5925586366606141,relative_legacy,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,246118,-40.51314836835762,peer,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,246118,-67.69165386093987,baseline,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,247214,-11.571976425744468,spot_peer,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,247214,-32.19280948873623,spot_baseline,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,247214,-0.1284720912013139,relative_legacy,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,247214,-7.251376098276769,peer,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,247214,-20.656430835460277,baseline,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,250015,29.199014723885817,peer,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,250015,0.3567571821674629,relative_legacy,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,250015,38.54495939688271,spot_peer,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,250015,28.32833543426608,baseline,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264059,-53.55593966775471,baseline,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264059,-32.06711611592619,peer,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264059,-60.08848008982039,spot_peer,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264059,-0.4916198716074331,relative_legacy,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264059,-100.0,spot_baseline,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264225,50.2265593811493,baseline,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264225,0.576995778884505,relative_legacy,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264225,43.74277696940911,peer,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264225,76.55347463629771,spot_baseline,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264225,66.23672575504314,spot_peer,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264332,-0.5235969276410232,relative_legacy,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264332,-34.87434300467271,peer,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264332,-58.27181947231293,baseline,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264332,-100.0,spot_baseline,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264332,-60.08848008982039,spot_peer,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264891,0.7463634626057983,relative_legacy,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264891,84.79969065549501,spot_baseline,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264891,60.24810627778061,peer,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264891,70.1507040154819,baseline,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,264891,72.13694911916686,spot_peer,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,265212,-73.69655941662059,spot_baseline,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,265212,-41.26819035625088,spot_peer,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,265212,-0.4447901604918507,relative_legacy,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,265212,-52.73785883092117,baseline,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,265212,-29.332336713922643,peer,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,265835,-41.27440617801824,peer,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,265835,-68.99578147464328,baseline,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,265835,-60.08848008982039,spot_peer,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,265835,-100.0,spot_baseline,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,265835,-0.6014015596159528,relative_legacy,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,266158,-112.81886705921296,spot_peer,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,266158,-98.1944147039388,peer,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,266158,-150.79074010202328,baseline,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,266158,-1.4664517042452596,relative_legacy,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35349,Will a Grok model be ranked #1 overall on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.9565+00,266158,-173.6965594166206,spot_baseline,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.7,2025-03-12 22:00:00+00,35915 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,187708,84.1570637395517,spot_baseline,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,187708,45.97876842742723,baseline,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,187708,20.06458559607123,peer,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,187708,0.1459597124029828,relative_legacy,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,187708,35.950788814431505,spot_peer,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,189869,12.535316466449853,baseline,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,189869,13.750352374993504,spot_baseline,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,189869,-14.425689611211205,spot_peer,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,189869,-0.3965752678590946,relative_legacy,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,189869,-12.892676183880294,peer,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,191026,27.501810834731614,peer,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,191026,0.1788863836841625,relative_legacy,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,191026,65.73350135119153,baseline,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,191026,33.85594294709588,spot_peer,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,191026,81.22928448732712,spot_baseline,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,191935,9.7875815773684,peer,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,191935,30.510369357340583,spot_peer,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,191935,76.55347463629771,spot_baseline,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,191935,24.273975028865134,baseline,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,191935,0.0576535754643242,relative_legacy,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,191975,48.680016857893534,spot_baseline,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,191975,0.1438508642825821,peer,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,191975,10.566721696377984,spot_peer,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,191975,0.6627090879756014,baseline,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,191975,-0.0009395543471401,relative_legacy,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,192075,-1.6182439764642476,baseline,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,192075,-19.32902902468625,peer,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,192075,-0.4553981816237155,relative_legacy,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,192075,-25.824277235920675,spot_peer,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,192075,-2.1804370318348285,spot_baseline,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,192418,-64.38561897747249,spot_baseline,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,192418,-1.0841975567314546,relative_legacy,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,192418,-70.33250586233322,spot_peer,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,192418,-57.14113591815829,baseline,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,192418,-62.700601362167376,peer,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,192924,50.287784134276336,baseline,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,192924,16.89982679168354,spot_peer,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,192924,57.53123306874368,spot_baseline,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,192924,-0.0080675227404554,relative_legacy,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,192924,15.42007461681121,peer,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,204737,57.11776181853341,baseline,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,204737,70.13272574129405,spot_baseline,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,204737,0.0896931615174562,relative_legacy,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,204737,25.916280073567503,spot_peer,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,204737,21.182758894348694,peer,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,218666,29.150798576811912,baseline,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,218666,55.58161550616397,spot_baseline,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,218666,15.504862232537954,spot_peer,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,218666,-0.0088450893255256,relative_legacy,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,218666,8.531759020509202,peer,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,220077,58.496250072115615,spot_baseline,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,220077,56.25989143924801,baseline,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,220077,17.590302987894813,spot_peer,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,220077,17.5579207074999,peer,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,220077,0.0113444515139737,relative_legacy,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,224797,58.496250072115615,spot_baseline,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,224797,48.68591317793212,baseline,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,224797,14.775741307063107,peer,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,224797,-0.0050385994782245,relative_legacy,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,224797,17.590302987894813,spot_peer,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236037,37.85116232537298,spot_baseline,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236037,-0.1768658445323193,relative_legacy,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236037,32.160628173314414,baseline,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236037,2.818602999180135,spot_peer,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236037,2.632261869840272,peer,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236038,-0.0864513224395781,relative_legacy,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236038,42.32548829675678,baseline,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236038,9.664385058888495,peer,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236038,10.468458189241735,spot_peer,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236040,4.0345639819010274e-05,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236040,50.8398769137885,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236040,15.858903902793909,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236040,17.590302987894813,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236041,-0.1788424458799508,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236041,32.77718941426667,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236041,2.863476135844864,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236041,2.818602999180135,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236043,50.656480593485306,baseline,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236043,15.794151505104466,peer,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236043,1.1438077645673177e-05,relative_legacy,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236043,17.590302987894813,spot_peer,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236043,58.496250072115615,spot_baseline,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236045,16.802670601374857,peer,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236045,0.0797700024269507,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236045,26.801258727553417,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236045,71.36958148433591,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236045,44.40640708225537,baseline,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236047,-0.0514608153017783,relative_legacy,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236047,6.260657337055225,peer,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236047,27.46525882152882,baseline,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,236047,10.468458189241735,spot_peer,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,237476,2.183480116271604,peer,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,237476,30.27510163395157,baseline,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,237476,-0.170205980356785,relative_legacy,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,237476,2.818602999180135,spot_peer,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,239759,30.510369357340583,spot_peer,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,239759,0.1567605047726924,relative_legacy,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,239759,27.16578824427449,peer,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,239759,66.44488731871984,baseline,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,239759,76.55347463629771,spot_baseline,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,240416,14.688726257259075,peer,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,240416,58.496250072115615,spot_baseline,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,240416,17.590302987894813,spot_peer,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,240416,-0.0050552840917189,relative_legacy,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,240416,48.49890500387348,baseline,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,246118,24.252343879515067,spot_peer,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,246118,45.86633424342956,baseline,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,246118,0.0579042631432649,relative_legacy,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,246118,16.385100637648748,peer,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,246118,67.80719051126377,spot_baseline,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,247214,0.1150721363511366,relative_legacy,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,247214,30.510369357340583,spot_peer,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,247214,20.073535264801368,peer,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,247214,50.29927412107517,baseline,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,247214,76.55347463629771,spot_baseline,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,250015,-5.443870050991362,spot_peer,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,250015,17.848258092146555,baseline,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,250015,-3.781191179424731,peer,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,250015,-0.2235490620114726,relative_legacy,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,250015,26.303440583379377,spot_baseline,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264059,-93.63331338608774,baseline,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264059,-79.77908920431295,peer,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264059,-148.54522345691552,spot_peer,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264059,-173.6965594166206,spot_baseline,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264059,-1.2452232750293128,relative_legacy,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264225,1.8291694661230264,peer,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264225,24.99171649048672,baseline,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264225,37.85116232537298,spot_baseline,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264225,2.818602999180135,spot_peer,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264225,-0.1398842637102322,relative_legacy,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264332,-33.68399132084138,peer,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264332,-61.08221851372036,spot_peer,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264332,-0.6062637455076421,relative_legacy,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264332,-51.45731728297583,spot_baseline,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264332,-28.642331421609963,baseline,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264891,24.252343879515067,spot_peer,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264891,56.13199686027477,baseline,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264891,20.2142196764955,peer,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264891,0.0720005518219645,relative_legacy,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,264891,67.80719051126377,spot_baseline,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,265212,67.80719051126377,spot_baseline,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,265212,0.0617939233569383,relative_legacy,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,265212,24.252343879515067,spot_peer,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,265212,17.394856736933693,peer,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,265212,48.69899043811103,baseline,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,265835,0.0592817962431551,relative_legacy,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,265835,46.86952667012677,baseline,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,265835,16.73073938722374,peer,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,265835,24.252343879515067,spot_peer,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,265835,67.80719051126377,spot_baseline,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,266158,-150.15984264030578,baseline,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,266158,-173.6965594166206,spot_baseline,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,266158,-148.54522345691552,spot_peer,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,266158,-2.0072958910938525,relative_legacy,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35350,Will a Chinese model have a higher Arena Score than all xAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:11.987503+00,266158,-129.34162734130652,peer,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35916 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,187708,5.685025017170356,baseline,twsummerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,187708,68.5306818405386,spot_peer,twsummerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,187708,0.0262451313217481,relative_legacy,twsummerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,187708,5.541149950875386,peer,twsummerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,187708,70.31006996041602,spot_baseline,twsummerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,189869,7.34742679659797,spot_peer,VeritasAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,189869,-15.200309344504996,spot_baseline,VeritasAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,189869,0.1035899508888441,relative_legacy,VeritasAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,189869,14.99238284795679,peer,VeritasAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,189869,-13.84521048100105,baseline,VeritasAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,191026,-0.8633111357423322,relative_legacy,manticAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,191026,-132.19280948873623,spot_baseline,manticAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,191026,-106.99338718439888,baseline,manticAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,191026,-56.079774282543895,peer,manticAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,191026,-76.36149874831338,spot_peer,manticAI,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,191935,21.0848244221232,peer,pgodzinai,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,191935,0.2002889149748,relative_legacy,pgodzinai,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,191935,73.11832415721999,spot_baseline,pgodzinai,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,191935,70.54000672189119,spot_peer,pgodzinai,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,191935,21.354941736435,baseline,pgodzinai,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,191975,12.347413197444975,spot_peer,jkraybill_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,191975,-8.212274246522473,spot_baseline,jkraybill_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,191975,-2.963947764366751,baseline,jkraybill_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,191975,5.248211297181459,peer,jkraybill_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,191975,-0.0372452750275312,relative_legacy,jkraybill_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,192075,-0.1774513496618887,relative_legacy,CumulativeBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,192075,-34.519878216179606,baseline,CumulativeBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,192075,-6.438550341053781,peer,CumulativeBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,192075,-14.972377948654756,spot_peer,CumulativeBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,192075,-46.394709975979005,spot_baseline,CumulativeBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,192418,64.24280451404155,peer,InstitutPelFutur,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,192418,64.12640351084539,spot_peer,InstitutPelFutur,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,192418,56.30029450008441,baseline,InstitutPelFutur,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,192418,0.794132202548444,relative_legacy,InstitutPelFutur,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,192418,64.15460290875237,spot_baseline,InstitutPelFutur,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,192924,-23.14906542202345,peer,acm_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,192924,-73.69655941662063,spot_baseline,acm_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,192924,-64.16666247416043,baseline,acm_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,192924,-34.50703597585771,spot_peer,acm_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,192924,-0.411980027042935,relative_legacy,acm_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,204737,-48.37820430265674,baseline,SynapseSeer,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,204737,-59.50968778548695,spot_baseline,SynapseSeer,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,204737,-24.356233320801007,spot_peer,SynapseSeer,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,204737,-0.2750330431408464,relative_legacy,SynapseSeer,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,204737,-13.733149018903504,peer,SynapseSeer,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,218666,69.59938131099001,spot_baseline,GreeneiBot2,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,218666,0.3560560644236096,relative_legacy,GreeneiBot2,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,218666,68.02217930262316,spot_peer,GreeneiBot2,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,218666,32.80933522294534,baseline,GreeneiBot2,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,218666,33.48214751682173,peer,GreeneiBot2,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,220077,-100.0,spot_baseline,mmBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,220077,-95.61314841773776,baseline,mmBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,220077,-53.327325709427214,spot_peer,mmBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,220077,-41.882366088309055,peer,mmBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,220077,-0.6688085176157061,relative_legacy,mmBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,224797,-76.36149874831338,spot_peer,cookics_bot_TEST,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,224797,-132.19280948873623,spot_baseline,cookics_bot_TEST,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,224797,-57.59787966850645,peer,cookics_bot_TEST,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,224797,-110.23446356911688,baseline,cookics_bot_TEST,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,224797,-0.8843079829450291,relative_legacy,cookics_bot_TEST,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236037,51.77708752421656,peer,metac-o1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236037,40.97577045740783,baseline,metac-o1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236037,48.54268271702416,spot_baseline,metac-o1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236037,0.6311114457510197,relative_legacy,metac-o1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236037,52.95596896733749,spot_peer,metac-o1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236038,0.3479983418325996,relative_legacy,metac-gpt-4o,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236038,31.793558182071123,peer,metac-gpt-4o,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236038,11.944544860527618,baseline,metac-gpt-4o,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236038,28.06182116688455,spot_peer,metac-gpt-4o,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236038,13.750352374993504,spot_baseline,metac-gpt-4o,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236040,-86.59876133401576,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236040,-100.0,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236040,-53.327325709427214,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236040,-0.6376462536987264,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236040,-39.52197742572127,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236041,-0.0503932557149226,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236041,-4.810822045351286,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236041,-32.19280948873623,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236041,-27.78127315137021,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236041,2.881873778683764,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236043,-59.41225613606368,peer,metac-grok-2-1212,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236043,-132.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236043,-76.36149874831338,spot_peer,metac-grok-2-1212,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236043,-0.9127160999126548,relative_legacy,metac-grok-2-1212,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236043,-113.98634104770004,baseline,metac-grok-2-1212,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236045,-73.69655941662063,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236045,-34.50703597585771,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236045,-45.06749292034782,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236045,-18.33013928485229,peer,metac-Gemini-Exp-1206,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236045,-0.3428821701282905,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236047,-73.69655941662063,spot_baseline,metac-Llama-3.1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236047,-43.70851663377692,baseline,metac-Llama-3.1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236047,-17.917682987199242,peer,metac-Llama-3.1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236047,-0.3400806941180973,relative_legacy,metac-Llama-3.1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,236047,-34.50703597585771,spot_peer,metac-Llama-3.1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,237476,2.300148596605563,peer,NextWorldLab,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,237476,-32.19280948873623,spot_baseline,NextWorldLab,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,237476,-4.810822045351286,spot_peer,NextWorldLab,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,237476,-26.264841083171756,baseline,NextWorldLab,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,237476,-0.0529613824870813,relative_legacy,NextWorldLab,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,239759,-202.7024251543806,baseline,metac-exa,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,239759,-123.2609459224476,peer,metac-exa,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,239759,-1.7965871434168208,relative_legacy,metac-exa,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,239759,-147.91217545127546,spot_peer,metac-exa,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,239759,-232.19280948873623,spot_baseline,metac-exa,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,240416,-60.21282543369074,baseline,metac-o1-preview,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,240416,-0.391581946724434,relative_legacy,metac-o1-preview,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,240416,-34.50703597585771,spot_peer,metac-o1-preview,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,240416,-73.69655941662063,spot_baseline,metac-o1-preview,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,240416,-22.112051654819386,peer,metac-o1-preview,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,246118,-34.50703597585771,spot_peer,laylaps,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,246118,-73.69655941662063,spot_baseline,laylaps,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,246118,-49.75314043956673,baseline,laylaps,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,246118,-19.805870495356547,peer,laylaps,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,246118,-0.3632904715828285,relative_legacy,laylaps,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,247214,-32.19280948873623,spot_baseline,ajf-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,247214,-4.810822045351286,spot_peer,ajf-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,247214,-29.2894927554765,baseline,ajf-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,247214,3.559109866702066,peer,ajf-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,247214,-0.0513858813238613,relative_legacy,ajf-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,250015,34.73524040543627,peer,metac-deepseek-r1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,250015,0.3956970904543713,relative_legacy,metac-deepseek-r1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,250015,25.87385876844857,baseline,metac-deepseek-r1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,250015,45.3061137772759,spot_peer,metac-deepseek-r1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264059,41.12799464748729,peer,wunderplumb,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264059,76.55347463629771,spot_baseline,wunderplumb,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264059,72.99788013543633,spot_peer,wunderplumb,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264059,0.4690268655067388,relative_legacy,wunderplumb,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264059,41.08046886029119,baseline,wunderplumb,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264225,-0.3541122336229488,relative_legacy,KevinTestBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264225,-73.69655941662063,spot_baseline,KevinTestBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264225,-34.50703597585771,spot_peer,KevinTestBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264225,-48.123397198713896,baseline,KevinTestBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264225,-19.275484507555063,peer,KevinTestBot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264332,35.5925818088604,peer,krm-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264332,32.54777720560591,baseline,krm-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264332,60.07781376599056,spot_peer,krm-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264332,0.3954730135000468,relative_legacy,krm-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264332,58.496250072115615,spot_baseline,krm-bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264891,-26.68320690601848,baseline,swingswish,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264891,-4.810822045351286,spot_peer,swingswish,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264891,-0.0525063428674402,relative_legacy,swingswish,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264891,2.459577656201504,peer,swingswish,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,264891,-32.19280948873623,spot_baseline,swingswish,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,265212,52.95596896733749,spot_peer,4Shadower,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,265212,34.70281966773665,baseline,4Shadower,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,265212,0.4974256917994588,relative_legacy,4Shadower,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,265212,42.17193104376869,peer,4Shadower,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,265212,48.54268271702416,spot_baseline,4Shadower,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,265835,52.92246460828815,baseline,jonahsingerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,265835,54.40579184568062,peer,jonahsingerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,265835,0.6686826282697462,relative_legacy,jonahsingerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,265835,72.99788013543633,spot_peer,jonahsingerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,265835,76.55347463629771,spot_baseline,jonahsingerbot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,266158,0.8924799615744967,relative_legacy,bean_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,266158,71.1207773306408,peer,bean_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,266158,66.44037253443648,baseline,bean_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,266158,72.99788013543633,spot_peer,bean_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35351,Will a Chinese model have a higher Arena Score than all Anthropic models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.018359+00,266158,76.55347463629771,spot_baseline,bean_bot,True,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35917 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,187708,10.00420520900344,baseline,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,187708,62.10555032997394,spot_baseline,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,187708,14.006903639400411,spot_peer,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,187708,0.0091429037200948,relative_legacy,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,187708,2.2562868794621886,peer,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,189869,-2.3790598430426373,peer,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,189869,34.36028164012295,baseline,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,189869,-0.1391245423771453,relative_legacy,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,189869,-3.347275108053649,spot_peer,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,191026,0.2060785608548571,relative_legacy,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,191026,79.2438930064638,spot_baseline,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,191026,26.269503800101432,spot_peer,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,191026,21.724151786794824,peer,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,191026,64.15376142700177,baseline,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,191935,0.0532868762178994,relative_legacy,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,191935,5.94638563343456,peer,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,191935,17.295333998173355,baseline,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,191935,81.55754288625727,spot_baseline,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,191935,27.924935945630924,spot_peer,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,191975,0.0070529006456708,relative_legacy,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,191975,24.931789220440013,baseline,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,191975,4.752142323323749,peer,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,191975,9.945784644464544,spot_peer,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,191975,56.42968647784669,spot_baseline,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,192075,6.129633201946131,spot_peer,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,192075,37.763616623208414,baseline,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,192075,4.793706550636057,peer,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,192075,-0.0204178727079147,relative_legacy,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,192075,51.09619192773795,spot_baseline,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,192418,11.424424880661013,spot_peer,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,192418,0.0403237586904425,relative_legacy,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,192418,10.655786259060129,peer,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,192418,50.70753693462501,baseline,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,192418,58.496250072115615,spot_baseline,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,192924,58.496250072115615,spot_baseline,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,192924,50.872341652567606,baseline,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,192924,11.424424880661013,spot_peer,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,192924,0.0404192670131552,relative_legacy,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,192924,10.673321175314742,peer,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,204737,-0.2701580756544672,relative_legacy,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,204737,-15.644575379700967,spot_peer,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,204737,20.664322398339536,spot_baseline,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,204737,16.876936309845423,baseline,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,204737,-12.513513029218712,peer,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,218666,7.924909868977764,spot_peer,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,218666,22.47973544218897,baseline,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,218666,3.640747850826657,peer,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,218666,-0.0059894987371429,relative_legacy,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,218666,53.60529002402098,spot_baseline,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,220077,35.97659397241721,baseline,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,220077,-2.3790598430426373,peer,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,220077,-3.347275108053649,spot_peer,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,220077,-0.1391245423771453,relative_legacy,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,224797,20.907100112648852,peer,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,224797,63.979307420464494,baseline,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,224797,76.55347463629771,spot_baseline,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,224797,24.344491250106795,spot_peer,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,224797,0.1908997769599882,relative_legacy,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236037,10.07324057535489,peer,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236037,11.424424880661013,spot_peer,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236037,58.496250072115615,spot_baseline,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236037,49.03009936357704,baseline,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236037,0.0399871336030542,relative_legacy,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236038,4.302580082007954,spot_peer,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236038,4.419893302470046,peer,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236038,42.1258550066092,baseline,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236038,-0.0459588463769498,relative_legacy,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236040,50.44962005467486,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236040,10.570778944282374,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236040,0.0400292838963306,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236040,11.424424880661013,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236041,-0.1374688902413124,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236041,32.5450349113739,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236041,-3.347275108053649,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236041,-2.306546674855576,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236043,18.086465772281265,spot_peer,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236043,58.27848472714369,baseline,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236043,16.277671544821146,peer,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236043,0.1200222353550587,relative_legacy,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236045,-0.0293136957938516,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236045,29.95052461063236,baseline,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236045,3.0370328184665394,peer,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236045,48.54268271702416,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236045,4.302580082007954,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236047,4.302580082007954,spot_peer,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236047,-0.0394949618804112,relative_legacy,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236047,37.72740193544141,baseline,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,236047,3.630058946973702,peer,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,237476,31.51828028836576,baseline,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,237476,-0.1319224253653776,relative_legacy,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,237476,-2.407742975275167,peer,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,237476,-3.347275108053649,spot_peer,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,239759,74.31406785608495,baseline,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,239759,27.428125338067023,peer,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,239759,0.2723081047349855,relative_legacy,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,239759,30.244714614230524,spot_peer,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,240416,9.645036750880772,peer,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,240416,0.0382200111270221,relative_legacy,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,240416,58.496250072115615,spot_baseline,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,240416,11.424424880661013,spot_peer,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,240416,47.41874810406728,baseline,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,246118,76.55347463629771,spot_baseline,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,246118,51.70760462368046,baseline,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,246118,16.74887105617845,peer,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,246118,24.344491250106795,spot_peer,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,246118,0.1540986126522836,relative_legacy,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,247214,37.85116232537298,spot_baseline,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,247214,34.74121257259646,baseline,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,247214,-2.3790598430426373,peer,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,247214,-0.1391245423771453,relative_legacy,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,247214,-3.347275108053649,spot_peer,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,250015,-1.4284076200343834,peer,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,250015,-0.0890422660070041,relative_legacy,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,250015,-3.347275108053649,spot_peer,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,250015,21.580276657102623,baseline,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264059,-132.19280948873626,spot_baseline,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264059,-66.74550512522087,peer,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264059,-71.03243750979713,baseline,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264059,-125.01488763364291,spot_peer,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264059,-0.9989569492807876,relative_legacy,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264225,3.125939231767449,peer,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264225,4.302580082007954,spot_peer,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264225,48.54268271702416,spot_baseline,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264225,31.93998363142772,baseline,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264225,-0.0333600876305161,relative_legacy,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264332,6.806986012439264,peer,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264332,58.496250072115615,spot_baseline,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264332,0.0265028914976535,relative_legacy,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264332,11.424424880661013,spot_peer,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264332,32.07416569665855,baseline,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264891,4.302580082007954,spot_peer,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264891,-0.0424703235706296,relative_legacy,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264891,3.973640036860247,peer,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264891,40.21378505252475,baseline,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,264891,48.54268271702416,spot_baseline,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,265212,0.0982518660515738,relative_legacy,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,265212,13.120705882324684,peer,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,265212,18.086465772281265,spot_peer,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,265212,67.80719051126377,spot_baseline,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,265212,48.1518895700175,baseline,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,265835,18.086465772281265,spot_peer,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,265835,0.096580727420576,relative_legacy,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,265835,12.795810791572062,peer,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,265835,46.9348780740964,baseline,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,265835,67.80719051126377,spot_baseline,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,266158,-173.6965594166206,spot_baseline,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,266158,-1.9685715291224213,relative_legacy,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,266158,-134.46452485022783,peer,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,266158,-150.2795028363199,baseline,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35352,Will a Chinese model have a higher Arena Score than all OpenAI models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.305999+00,266158,-154.71110156414932,spot_peer,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35918 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,187708,39.90238195396006,spot_peer,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,187708,82.8631581688019,spot_baseline,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,187708,44.43539869609757,baseline,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,187708,21.50226030291428,peer,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,187708,0.1306676332637151,relative_legacy,twsummerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,189869,-0.1810133942089282,relative_legacy,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,189869,34.64522928157197,baseline,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,189869,7.049008519016662,peer,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,189869,7.695994330477514,spot_peer,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,191026,58.50319714758359,baseline,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,191026,26.266025165035597,peer,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,191026,0.1113608205057171,relative_legacy,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,191026,32.30616449254181,spot_peer,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,191026,72.2466024471091,spot_baseline,manticAI,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,191935,24.30718863737834,baseline,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,191935,72.2466024471091,spot_baseline,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,191935,32.30616449254181,spot_peer,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,191935,0.0462627165414563,relative_legacy,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,191935,10.92666023105414,peer,pgodzinai,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,191975,4.0799404365201815,peer,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,191975,12.166718399993243,baseline,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,191975,-0.0178972033984741,relative_legacy,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,191975,17.100438048907737,spot_peer,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,191975,50.99491463043107,spot_baseline,jkraybill_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,192075,41.683974191282914,spot_baseline,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,192075,10.43839715728749,spot_peer,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,192075,-0.1245025036642603,relative_legacy,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,192075,7.475412259169575,peer,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,192075,30.87358873278253,baseline,CumulativeBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,192418,-123.48053606717023,peer,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,192418,-148.77207791435407,baseline,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,192418,-143.66783212561813,spot_peer,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,192418,-1.9869051572075205,relative_legacy,InstitutPelFutur,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,192924,-25.627953829533222,peer,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,192924,-13.095889217301714,baseline,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,192924,-0.6312919714958544,relative_legacy,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,192924,-30.262692650200435,spot_peer,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,192924,-15.200309344505014,spot_baseline,acm_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,204737,21.828446929406272,baseline,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,204737,26.78353920976152,spot_baseline,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,204737,-0.2229649036759501,spot_peer,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,204737,-0.2584424984776013,relative_legacy,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,204737,-0.190967316960694,peer,SynapseSeer,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,218666,-51.45731728297583,spot_baseline,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,218666,-56.204827182423,spot_peer,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,218666,-0.4111816256008314,relative_legacy,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,218666,-19.242943979381508,baseline,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,218666,-20.912643203748107,peer,GreeneiBot2,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,220077,22.46769431919217,spot_peer,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,220077,0.0079514234037162,relative_legacy,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,220077,21.222433880837794,peer,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,220077,55.28309353229619,baseline,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,220077,58.496250072115615,spot_baseline,mmBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,224797,0.0474165254228209,relative_legacy,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,224797,53.7270292841495,baseline,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,224797,22.588044330510343,peer,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,224797,26.51628406404702,spot_peer,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,224797,64.15460290875237,spot_baseline,cookics_bot_TEST,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236037,48.55216929451635,baseline,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236037,18.895408433678668,peer,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236037,2.444446066372285e-05,relative_legacy,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236037,22.46769431919217,spot_peer,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236037,58.496250072115615,spot_baseline,metac-o1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236038,14.128267261676378,peer,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236038,15.3458495205391,spot_peer,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236038,-0.0818157501652392,relative_legacy,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236038,42.0000781766022,baseline,metac-gpt-4o,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236040,22.46769431919217,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236040,20.10830542308101,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236040,50.27762637776728,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236040,0.002134069985635,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236041,22.46769431919217,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236041,19.951167589525184,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236041,50.06431488230592,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236041,0.0013598933418121,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236043,25.639566392026747,peer,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236043,0.0808582606830397,relative_legacy,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236043,57.96133448007102,baseline,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236043,29.129735210812424,spot_peer,metac-grok-2-1212,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236045,42.58675593045371,baseline,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236045,18.09361831959455,peer,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236045,0.0584652270725109,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236045,29.129735210812424,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236045,67.80719051126377,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236047,-0.076019903379496,relative_legacy,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236047,37.10824235532628,baseline,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236047,15.3458495205391,spot_peer,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,236047,11.561796992461993,peer,metac-Llama-3.1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,237476,7.695994330477514,spot_peer,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,237476,-0.1741769226121418,relative_legacy,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,237476,7.028339845799009,peer,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,237476,32.16345361329368,baseline,NextWorldLab,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,239759,35.38776068863795,spot_peer,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,239759,67.42971071870164,baseline,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,239759,76.55347463629771,spot_baseline,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,239759,32.22764619342243,peer,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,239759,0.1633620831255342,relative_legacy,metac-exa,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,240416,22.46769431919217,spot_peer,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,240416,46.92622329541563,baseline,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,240416,18.03762867016445,peer,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,240416,3.475734154703884e-06,relative_legacy,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,240416,58.496250072115615,spot_baseline,metac-o1-preview,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,246118,58.496250072115615,spot_baseline,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,246118,14.888276901285248,peer,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,246118,39.55095993068846,baseline,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,246118,1.9042392030600065e-05,relative_legacy,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,246118,22.46769431919217,spot_peer,laylaps,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,247214,-31.114825613411963,spot_baseline,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,247214,-41.64963673460634,spot_peer,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,247214,-0.7863745862387643,relative_legacy,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,247214,-36.726171569391525,peer,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,247214,-27.468338561693155,baseline,ajf-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,250015,7.695994330477514,spot_peer,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,250015,25.353368594190584,baseline,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,250015,4.833439637084632,peer,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,250015,-0.1382708454524055,relative_legacy,metac-deepseek-r1,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264059,-77.00746942463186,peer,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264059,-173.6965594166206,spot_baseline,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264059,-143.66783212561813,spot_peer,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264059,-1.2441536950446397,relative_legacy,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264059,-93.07145070106604,baseline,wunderplumb,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264225,15.3458495205391,spot_peer,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264225,32.01967077533202,baseline,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264225,-0.0656365686931695,relative_legacy,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264225,9.831984553075255,peer,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264225,48.54268271702416,spot_baseline,KevinTestBot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264332,31.66386017833095,baseline,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264332,22.46769431919217,spot_peer,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264332,0.0,relative_legacy,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264332,12.233515441268828,peer,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264332,58.496250072115615,spot_baseline,krm-bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264891,56.0779442279533,baseline,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264891,67.80719051126377,spot_baseline,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264891,29.129735210812424,spot_peer,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264891,0.0770178633334321,relative_legacy,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,264891,24.338219092572157,peer,swingswish,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,265212,1.9042392030600065e-05,relative_legacy,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,265212,22.46769431919217,spot_peer,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,265212,58.496250072115615,spot_baseline,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,265212,41.828204305978495,baseline,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,265212,15.78507877498463,peer,4Shadower,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,265835,46.90943080901181,baseline,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,265835,67.80719051126377,spot_baseline,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,265835,29.129735210812424,spot_peer,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,265835,0.064432700147766,relative_legacy,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,265835,19.859000358987263,peer,jonahsingerbot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,266158,-143.66783212561813,spot_peer,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,266158,-124.60530359431104,peer,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,266158,-150.12962099223006,baseline,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,266158,-173.6965594166206,spot_baseline,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35353,Will a Chinese model have a higher Arena Score than all Google models on the Chatbot Arena Leaderboard at the end of the 1st Quarter of 2025?,2025-03-08 04:57:12.342901+00,266158,-2.0026766643470517,relative_legacy,bean_bot,True,no,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,0.5,2025-03-12 22:00:00+00,35919 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,187708,80.57051848385113,spot_baseline,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,187708,45.428145847325055,baseline,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,187708,29.925536841593512,peer,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,187708,0.0225209261827672,relative_legacy,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,187708,48.43907237940025,spot_peer,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,189869,33.633133412303835,baseline,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,189869,21.26911883194433,peer,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,189869,-0.0424537553570932,relative_legacy,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,189869,39.27624812354084,spot_peer,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,191026,57.07502473380195,spot_peer,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,191026,75.16158907042107,baseline,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,191026,57.53269924211188,peer,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,191026,0.2195006408811681,relative_legacy,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,191975,77.56827017390599,spot_baseline,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,191975,20.52887507969037,baseline,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,191975,46.283751001185934,spot_peer,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,191975,0.0022056660752396,relative_legacy,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,191975,13.244390993362472,peer,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,192075,0.0318414216079299,relative_legacy,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,192075,57.889483152895615,spot_peer,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,192075,93.73443921502324,spot_baseline,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,192075,11.210307289754782,peer,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,192075,17.591112577419928,baseline,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,192418,66.72764048259671,peer,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,192418,45.55522681167158,spot_peer,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,192418,0.0892545574601525,relative_legacy,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,192418,72.35899803568121,baseline,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,192924,42.92951980079207,baseline,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,192924,28.035390645727524,peer,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,192924,0.069880014168154,relative_legacy,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,192924,56.52847239121457,spot_peer,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,192924,91.8386234446348,spot_baseline,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,204737,0.0963479126057611,relative_legacy,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,204737,89.99489861896717,spot_baseline,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,204737,59.13367667053336,baseline,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,204737,40.72108297240952,peer,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,204737,55.2048578456947,spot_peer,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,220077,45.55522681167158,spot_peer,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,220077,75.2293177571886,peer,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,220077,76.05004565404116,baseline,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,220077,0.1167872902761931,relative_legacy,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,224797,67.80719051126377,spot_baseline,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,224797,31.88682016055639,peer,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,224797,46.41469583310534,baseline,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,224797,-0.0412251669967595,relative_legacy,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,224797,39.27624812354084,spot_peer,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236037,-0.2119170426769356,relative_legacy,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236037,17.770742485794074,spot_peer,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236037,37.85116232537298,spot_baseline,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236037,19.66710516749517,peer,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236037,27.59757551561283,baseline,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236038,-73.69655941662059,spot_baseline,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236038,-62.3096387955308,spot_peer,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236038,-1.0241066071850928,relative_legacy,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236038,-54.61509492063955,baseline,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236038,-39.81125331966592,peer,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236040,-81.19294289204755,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236040,-53.9998556898896,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236040,-74.06633734619685,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236040,-1.2186406141410853,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236040,-100.0,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236041,13.750352374993504,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236041,0.4687122885375899,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236041,-0.376108263636714,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236041,7.452020287001162,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236041,10.18544287771885,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236043,-1.2183728761822417,relative_legacy,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236043,-100.0,spot_baseline,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236043,-73.9847322576501,baseline,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236043,-81.19294289204755,spot_peer,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236043,-53.96002559165613,peer,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236045,-36.67990045858644,baseline,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236045,-27.727878577175083,peer,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236045,-46.3440326705648,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236045,-0.8666110488464095,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236045,-51.45731728297583,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236047,-0.7293084431814184,relative_legacy,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236047,-22.957368030289835,baseline,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236047,-32.513995577310645,spot_peer,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236047,-17.733374803930634,peer,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,237476,54.99739996111657,baseline,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,237476,0.1270703645934472,relative_legacy,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,237476,62.283921260819966,spot_peer,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,237476,99.85565831303312,spot_baseline,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,237476,36.78478968975341,peer,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,239759,67.41610502597132,baseline,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,239759,0.1703875906801963,relative_legacy,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,239759,95.60566524124027,spot_baseline,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,239759,59.23284087731059,spot_peer,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,239759,47.70315734400069,peer,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,240416,-127.71795765884616,baseline,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,240416,-173.6965594166206,spot_baseline,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,240416,-134.09988249638226,spot_peer,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,240416,-1.7589027387775145,relative_legacy,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,240416,-93.2437092145704,peer,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,246118,84.79969065549501,spot_baseline,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,246118,10.284324078937276,peer,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,246118,0.0154729385980388,relative_legacy,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,246118,51.47520538795198,spot_peer,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,246118,16.32498223622536,baseline,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,247214,8.069755537634906,peer,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,247214,13.088412415383068,baseline,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,247214,76.55347463629771,spot_baseline,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,247214,45.55522681167158,spot_peer,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,247214,-0.0002325812573181,relative_legacy,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,250015,26.33457391027794,baseline,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,250015,17.55987886341109,peer,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,250015,-0.2435370307945174,relative_legacy,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,250015,17.770742485794074,spot_peer,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,264059,-247.884726679865,spot_peer,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,264059,-323.9596535819211,baseline,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,264059,-332.1928094887361,spot_baseline,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,264059,-246.1329948819224,peer,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,264059,-3.869370772923349,relative_legacy,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,264225,51.47520538795198,spot_peer,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,264225,84.79969065549501,spot_baseline,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,264225,1.9435263500792408,baseline,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,264225,0.0016573711703228,relative_legacy,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,264225,1.1797615919810291,peer,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,264891,51.47520538795198,spot_peer,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,264891,84.79969065549501,spot_baseline,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,264891,57.739251570302656,baseline,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,264891,40.04382372779733,peer,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,264891,0.0733906230639701,relative_legacy,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,265212,-247.884726679865,spot_peer,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,265212,-85.36313742771105,baseline,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,265212,-62.906021364002434,peer,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,265212,-332.1928094887361,spot_baseline,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,265212,-1.0507518440407466,relative_legacy,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,265835,15.25794722685578,baseline,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,265835,9.486803296106828,peer,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,265835,-0.0200828942995393,relative_legacy,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,265835,39.27624812354084,spot_peer,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,265835,67.80719051126377,spot_baseline,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,266158,76.55347463629771,spot_baseline,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,266158,21.50138864144812,peer,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,266158,-0.000480046881396,relative_legacy,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,266158,45.55522681167158,spot_peer,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35354,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 04:57:12.378281+00,266158,33.70803090412782,baseline,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35920 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,187708,33.32609416322668,peer,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,187708,29.352817311954595,baseline,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,187708,70.31006996041602,spot_baseline,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,187708,76.26595130009507,spot_peer,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,187708,0.4833396145897726,relative_legacy,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,189869,6.8674816351613535,baseline,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,189869,19.86609760649663,peer,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,189869,0.3006625746885499,relative_legacy,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,189869,35.60973478998891,spot_peer,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,189869,13.750352374993504,spot_baseline,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,191026,-50.9955569937665,peer,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,191026,-67.2434206274348,spot_peer,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,191026,-0.6549612551133841,relative_legacy,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,191026,-129.33589426905914,spot_baseline,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,191026,-105.00257312706457,baseline,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,191975,18.422645772120816,spot_peer,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,191975,-10.15981400078069,spot_baseline,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,191975,0.0142394844789062,relative_legacy,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,191975,1.571449890211874,peer,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,191975,-0.7905003579643022,baseline,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,192075,-41.09649296354987,spot_peer,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,192075,-92.96106721086024,spot_baseline,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,192075,-0.09638937759373,relative_legacy,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,192075,-7.313230094809733,peer,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,192075,-17.5818712971047,baseline,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,192418,24.641446737528717,baseline,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,192418,44.633136848172725,spot_peer,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,192418,49.60828961321428,peer,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,192418,0.6817054988455716,relative_legacy,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,192418,26.303440583379377,spot_baseline,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,192924,-0.0250108783512193,relative_legacy,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,192924,-51.45731728297583,spot_baseline,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,192924,-11.262796561142965,spot_peer,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,192924,-3.629184060182248,peer,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,192924,-23.887537740539614,baseline,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,204737,-46.156213692231695,spot_peer,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,204737,-0.345953008196152,relative_legacy,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,204737,-27.00473728706486,peer,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,204737,-66.11544971995883,baseline,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,204737,-100.0,spot_baseline,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,220077,-8.290416552533436,peer,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,220077,-0.0503499933095758,relative_legacy,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,220077,-11.262796561142965,spot_peer,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,220077,-51.45731728297583,spot_baseline,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,220077,-50.79871172171147,baseline,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236037,2.5849034147334744,spot_peer,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236037,0.1141185872670794,relative_legacy,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236037,6.707153864316944,peer,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236037,-23.2568254373314,baseline,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236037,-32.19280948873623,spot_baseline,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236038,-0.1869319184989742,relative_legacy,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236038,-54.42440475743642,baseline,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236038,-15.307767041215298,peer,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236038,-27.248792987673447,spot_peer,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236038,-73.69655941662063,spot_baseline,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236040,-37.95159906618187,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236040,-11.262796561142965,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236040,-0.0228379588399434,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236040,-3.281053190849961,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236040,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236041,-46.156213692231695,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236041,-100.0,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236041,-73.7790012757638,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236041,-29.500215860929718,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236041,-0.3809977134250462,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236043,-132.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236043,-69.29702642111269,spot_peer,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236043,-0.6173316183457355,relative_legacy,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236043,-46.76596988512495,peer,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236043,-97.26391940630327,baseline,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236045,-51.45731728297583,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236045,-35.46807246109902,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236045,-3.628776149509266,peer,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236045,-0.024984193449357,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236045,-11.262796561142965,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236047,-73.69655941662063,spot_baseline,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236047,-50.086328684711866,baseline,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236047,-14.667366724169831,peer,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236047,-0.1761552465581039,relative_legacy,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,236047,-27.248792987673447,spot_peer,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,237476,-8.659262400109883,baseline,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,237476,0.1815368559523486,relative_legacy,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,237476,14.799440445765828,spot_peer,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,237476,-15.200309344504996,spot_baseline,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,237476,11.239596448803274,peer,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,239759,18.620034201972064,baseline,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,239759,44.633136848172725,spot_peer,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,239759,26.303440583379377,spot_baseline,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,239759,36.589703119746346,peer,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,239759,0.525372372821093,relative_legacy,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,240416,-3.3887807874328986,peer,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,240416,-37.46686415668208,baseline,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,240416,-51.45731728297583,spot_baseline,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,240416,-11.262796561142965,spot_peer,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,240416,-0.0249044479903223,relative_legacy,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,246118,12.989492305697462,baseline,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,246118,14.775576240771397,peer,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,246118,0.2101076896923012,relative_legacy,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,246118,74.46683325057965,spot_peer,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,246118,67.80719051126377,spot_baseline,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,247214,-19.267647980963844,spot_peer,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,247214,-24.983363123322167,baseline,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,247214,-6.487356953672877,peer,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,247214,-0.0628098595296627,relative_legacy,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,247214,-62.59342817774623,spot_baseline,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,250015,-51.45731728297583,spot_baseline,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,250015,-31.375043070175085,baseline,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,250015,-3.703403136827711,peer,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,250015,-0.0249794413982355,relative_legacy,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,250015,-11.262796561142965,spot_peer,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,264059,6.895336174135307,peer,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,264059,2.5849034147334744,spot_peer,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,264059,-31.317016125259865,baseline,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,264059,-32.19280948873623,spot_baseline,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,264059,0.1370542472083211,relative_legacy,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,264225,0.010892240659201,relative_legacy,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,264225,60.61913327470321,spot_peer,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,264225,1.0358443600245584,peer,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,264225,48.54268271702416,spot_baseline,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,264225,0.8294850387422876,baseline,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,264891,34.86904073270924,peer,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,264891,26.303440583379377,spot_baseline,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,264891,44.633136848172725,spot_peer,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,264891,0.503637573658755,relative_legacy,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,264891,17.882121430501446,baseline,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,265212,-0.1432116992159592,relative_legacy,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,265212,-25.71967377927568,baseline,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,265212,-11.112588009873482,peer,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,265212,-46.156213692231695,spot_peer,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,265212,-100.0,spot_baseline,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,265835,-32.19280948873623,spot_baseline,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,265835,2.5849034147334744,spot_peer,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,265835,0.0251173036589075,relative_legacy,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,265835,1.225479868160445,peer,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,265835,-7.26571864211141,baseline,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,266158,35.60973478998891,spot_peer,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,266158,13.750352374993504,spot_baseline,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,266158,0.2643512938614407,relative_legacy,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,266158,17.36674064614575,peer,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35355,"Will Australian Prime Minister Anthony Albanese have a higher approval rating than US President Donald Trump on April 1, 2025?",2025-03-08 04:57:12.410867+00,266158,6.101785039685678,baseline,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35921 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,187708,7.0389327891398015,spot_baseline,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,187708,0.1387429651696613,relative_legacy,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,187708,3.4435649642167587,baseline,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,187708,7.085302595468024,peer,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,187708,14.536789544861405,spot_peer,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,189869,0.1715763648316977,relative_legacy,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,189869,13.750352374993504,spot_baseline,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,189869,6.811330757518561,baseline,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,189869,9.572872063869989,peer,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,189869,19.35493402133245,spot_peer,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,191026,-55.63933485243852,spot_baseline,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,191026,-30.460091542499608,spot_peer,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,191026,-0.2844299441209555,relative_legacy,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,191026,-45.18168407074003,baseline,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,191026,-27.12387829734456,peer,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,191975,-0.0026143290961996,relative_legacy,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,191975,-1.741818781867647,peer,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,191975,-27.462238010900588,spot_baseline,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,191975,-10.2316850521346,spot_peer,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,191975,-4.965824197566599,baseline,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,192075,0.0638711160515788,relative_legacy,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,192075,2.938060374720199,peer,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,192075,7.0389327891398015,spot_baseline,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,192075,1.3660081591323123,baseline,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,192075,14.536789544861405,spot_peer,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,192418,36.65696421858895,spot_peer,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,192418,0.4747556425340516,relative_legacy,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,192418,30.674850576698898,peer,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,192418,35.17044849725727,baseline,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,192924,40.05379295837288,spot_baseline,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,192924,18.47702191542188,baseline,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,192924,17.717918101795995,peer,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,192924,0.2910422231988538,relative_legacy,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,192924,38.23823811784919,spot_peer,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,204737,23.79508685902819,peer,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,204737,23.98064080569416,baseline,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,204737,0.3956805610111841,relative_legacy,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,204737,35.53553021533951,spot_peer,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,204737,36.28906426658603,spot_baseline,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,220077,36.65696421858895,spot_peer,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,220077,0.4798167664055349,relative_legacy,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,220077,37.85116232537298,spot_baseline,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,220077,37.17477292635781,baseline,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,220077,31.407013538889892,peer,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,224797,26.303440583379377,spot_baseline,cookics_bot_TEST,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,224797,0.3441808509613988,relative_legacy,cookics_bot_TEST,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,224797,19.774685782290383,peer,cookics_bot_TEST,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,224797,18.035154775662967,baseline,cookics_bot_TEST,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,224797,28.366826638115533,spot_peer,cookics_bot_TEST,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236037,-0.0568817460411628,relative_legacy,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236037,-23.004847931115183,baseline,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236037,-9.64986143863032,peer,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236037,-13.627773844515785,spot_peer,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236037,-32.19280948873623,spot_baseline,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236038,-11.18537602414009,baseline,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236038,-0.8804554813365137,peer,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236038,0.0660176564284717,relative_legacy,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236038,-1.4288165801046424,spot_peer,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236038,-15.200309344504996,spot_baseline,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236040,28.366826638115533,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236040,19.308849161864867,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236040,21.384318000262223,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236040,0.3707653265298087,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236040,26.303440583379377,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236041,-43.42341706273595,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236041,-54.13981912889019,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236041,-32.231999198653675,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236041,-0.3636997312958522,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236041,-73.69655941662063,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236043,-0.3611040334387626,relative_legacy,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236043,-43.42341706273595,spot_peer,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236043,-73.69655941662063,spot_baseline,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236043,-31.979650051344507,peer,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236043,-53.80748534828328,baseline,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236045,-51.45731728297583,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236045,-27.45781093776992,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236045,-0.1825797139390944,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236045,-18.168074474024127,peer,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236045,-33.78193804784072,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236047,-13.627773844515785,spot_peer,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236047,-21.801921855109168,baseline,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236047,-9.266084634205502,peer,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,236047,-0.0569053808038711,relative_legacy,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,237476,0.35449835331175,relative_legacy,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,237476,36.65696421858895,spot_peer,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,237476,21.60549685138041,peer,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,237476,22.18331539448041,baseline,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,239759,-32.19280948873623,spot_baseline,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,239759,-22.92470538782196,baseline,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,239759,-9.625174612820976,peer,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,239759,-0.056927863171474,relative_legacy,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,239759,-13.627773844515785,spot_peer,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,240416,-0.1945355609740491,relative_legacy,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,240416,-36.97968154821268,baseline,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,240416,-19.782437557163465,peer,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,240416,-27.45781093776992,spot_peer,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,240416,-51.45731728297583,spot_baseline,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,246118,-2.495832090437034,peer,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,246118,-32.19280948873623,spot_baseline,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,246118,-13.627773844515785,spot_peer,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,246118,-0.0111683246968605,relative_legacy,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,246118,-6.1575914805041,baseline,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,247214,-32.19280948873623,spot_baseline,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,247214,-12.928858266096547,baseline,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,247214,-5.412107082328718,peer,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,247214,-13.627773844515785,spot_peer,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,247214,-0.0176201243465003,relative_legacy,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,250015,-27.45781093776992,spot_peer,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,250015,-32.78703478504859,baseline,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,250015,-17.631860479616698,peer,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,250015,-0.1787056305563263,relative_legacy,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,250015,-51.45731728297583,spot_baseline,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,264059,0.2453145835455724,relative_legacy,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,264059,13.750352374993504,spot_baseline,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,264059,13.379167146948411,baseline,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,264059,12.35992929082574,peer,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,264059,19.35493402133245,spot_peer,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,264225,0.0061724839009169,relative_legacy,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,264225,0.2931671458459947,baseline,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,264225,13.750352374993504,spot_baseline,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,264225,19.35493402133245,spot_peer,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,264225,0.412660752999376,peer,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,264891,19.35493402133245,spot_peer,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,264891,9.355590553470712,baseline,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,264891,13.750352374993504,spot_baseline,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,264891,13.400877619553077,peer,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,264891,0.2556891362054158,relative_legacy,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,265212,-43.42341706273595,spot_peer,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,265212,-19.43419713960369,baseline,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,265212,-11.308626146658815,peer,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,265212,-73.69655941662063,spot_baseline,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,265212,-0.1270678468068529,relative_legacy,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,265835,13.750352374993504,spot_baseline,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,265835,0.0860212910561755,relative_legacy,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,265835,19.35493402133245,spot_peer,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,265835,3.101889214018018,baseline,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,265835,4.500587380857957,peer,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,266158,-19.331799462207773,peer,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,266158,-43.42341706273595,spot_peer,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,266158,-32.68512532359866,baseline,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,266158,-73.69655941662063,spot_baseline,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35356,"Will Spanish Prime Minister Pedro Sánchez have a higher approval rating than Turkey's President Recep Tayyip Erdoğan on April 1, 2025?",2025-03-08 04:57:12.447182+00,266158,-0.2181322834207092,relative_legacy,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35922 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,187708,-0.0631379201705039,relative_legacy,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,187708,-3.372423059230821,peer,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,187708,34.03280020584591,baseline,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,187708,59.83652053236445,spot_baseline,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,187708,-2.3281708500417317,spot_peer,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,189869,-6.7319940278914485,peer,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,189869,-10.436044540853452,spot_peer,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,189869,23.840853671217697,baseline,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,189869,-0.1124178148390779,relative_legacy,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,191026,0.9753852605867054,peer,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,191026,0.0044938504861229,relative_legacy,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,191026,59.10623737507541,baseline,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,191026,6.956997462410111,spot_peer,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,191026,72.77026728372381,spot_baseline,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,191975,18.542609346576796,spot_peer,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,191975,3.815929158429972,peer,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,191975,0.0282507729517968,relative_legacy,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,191975,88.90840985981492,spot_baseline,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,191975,18.945318474538357,baseline,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,192075,16.007357344600607,baseline,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,192075,85.59896973084807,spot_baseline,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,192075,16.166754212857704,spot_peer,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,192075,0.0183424993413309,relative_legacy,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,192075,3.006689756300184,peer,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,192418,13.327849537561637,peer,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,192418,85.16338145515519,baseline,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,192418,21.19276916266181,spot_peer,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,192418,0.165556533923494,relative_legacy,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,192924,0.0604415630972821,relative_legacy,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,192924,39.047660886643406,baseline,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,192924,15.59294981681182,spot_peer,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,192924,5.804392927624566,peer,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,204737,-14.52092483765776,peer,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,204737,-0.2127972481740738,relative_legacy,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,204737,25.63770674784826,baseline,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,204737,-17.63459085243285,spot_peer,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,204737,38.51548968843438,spot_baseline,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,220077,13.62936837919476,peer,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,220077,90.495177457757,baseline,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,220077,0.1677021371576421,relative_legacy,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,220077,21.19276916266181,spot_peer,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,224797,-0.0178565297498875,relative_legacy,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,224797,-0.4615604376288558,peer,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,224797,46.57470260739476,baseline,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,224797,67.80719051126377,spot_baseline,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,224797,3.393992552400687,spot_peer,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236037,12.19440383676039,peer,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236037,0.1543055407150614,relative_legacy,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236037,21.19276916266181,spot_peer,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236037,65.82867816475722,baseline,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236038,49.82787898691536,baseline,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236038,-0.0227244717782902,relative_legacy,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236038,3.393992552400687,spot_peer,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236038,-0.7694137374742694,peer,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236040,3.940388698785196,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236040,55.97756215766416,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236040,0.0414218386559793,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236040,9.672971240531425,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236041,-22.900910042652555,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236041,-0.3263149713854822,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236041,-26.40165066581949,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236041,26.303440583379377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236041,19.239244393675914,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236043,-0.7148903657890664,peer,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236043,-0.0223994409381049,relative_legacy,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236043,3.393992552400687,spot_peer,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236043,49.4094520050642,baseline,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236045,0.0796873572400624,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236045,6.949848997425588,peer,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236045,48.66467854476529,baseline,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236045,15.59294981681182,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236047,33.31571249117055,baseline,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236047,-0.1501093884933079,relative_legacy,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236047,-10.074213283274648,peer,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,236047,-10.436044540853452,spot_peer,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,237476,9.672971240531425,spot_peer,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,237476,3.640972500932757,peer,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,237476,46.27657260991125,baseline,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,237476,0.0350532618930272,relative_legacy,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,239759,0.155155076725677,relative_legacy,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,239759,21.19276916266181,spot_peer,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,239759,12.266308896753266,peer,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,239759,66.3134188289407,baseline,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,240416,0.0989696748570957,relative_legacy,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,240416,8.166696306278162,peer,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,240416,60.38756762250581,baseline,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,240416,15.59294981681182,spot_peer,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,246118,-33.46864570348558,baseline,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,246118,-0.4802693012651794,relative_legacy,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,246118,-32.80991745257724,peer,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,246118,-169.98213806752244,spot_peer,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,246118,-173.6965594166206,spot_baseline,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,247214,-0.1438688216110318,relative_legacy,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,247214,16.066817789922137,baseline,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,247214,37.85116232537298,spot_baseline,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,247214,-18.111513085346072,spot_peer,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,247214,-8.931717643414995,peer,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,250015,-3.290354279704903,spot_peer,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,250015,34.53100101489198,baseline,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,250015,-4.126059989575664,peer,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,250015,-0.0727692905107447,relative_legacy,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,264059,7.410090932229849,peer,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,264059,0.091613890805807,relative_legacy,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,264059,15.59294981681182,spot_peer,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,264059,82.7186149216503,baseline,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,264225,-3.290354279704903,spot_peer,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,264225,0.9544314616103484,baseline,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,264225,-0.0536857942265193,peer,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,264225,-0.0015191836196931,relative_legacy,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,264225,58.496250072115615,spot_baseline,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,264891,67.80719051126377,spot_baseline,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,264891,-0.4345884104801554,peer,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,264891,-0.0178180224349523,relative_legacy,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,264891,3.393992552400687,spot_peer,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,264891,46.21268798644572,baseline,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,265212,0.4960404181067982,peer,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,265212,67.80719051126377,spot_baseline,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,265212,3.393992552400687,spot_peer,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,265212,-0.0167134010098927,relative_legacy,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,265212,17.927341918858968,baseline,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,265835,21.113935087041828,baseline,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,265835,92.5999418556223,spot_baseline,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,265835,21.19276916266181,spot_peer,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,265835,0.0398171466366845,relative_legacy,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,265835,4.616400209896315,peer,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,266158,84.79969065549501,spot_baseline,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,266158,15.59294981681182,spot_peer,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,266158,37.85811862250601,baseline,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,266158,0.0580579108765397,relative_legacy,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35357,"Will the Deftones release a new album before April 1, 2025?",2025-03-08 04:57:12.612792+00,266158,5.661533265007908,peer,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35923 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,187708,11.89293707613246,peer,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,187708,34.750828555564034,baseline,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,187708,-0.0063963934720766,relative_legacy,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,187708,26.23820216033297,spot_peer,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,187708,72.77026728372381,spot_baseline,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,189869,-25.149107129817104,peer,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,189869,-15.974369707665588,baseline,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,189869,-0.5245682592868653,relative_legacy,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,189869,-49.11504645052793,spot_peer,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,191026,46.58203969958131,baseline,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,191026,57.33745264459444,spot_baseline,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,191026,10.016231640770826,peer,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,191026,-0.1234620773377284,relative_legacy,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,191026,15.158946921001306,spot_peer,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,191975,15.493317596280033,baseline,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,191975,3.899810297483962,peer,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,191975,-0.0302458865128232,relative_legacy,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,191975,19.34238277688491,spot_peer,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,191975,63.16475680212856,spot_baseline,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,192075,17.70281383459333,spot_peer,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,192075,-0.0265283081574575,relative_legacy,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,192075,2.5137339210533653,peer,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,192075,11.012422614561848,baseline,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,192075,60.88092426755239,spot_baseline,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,192418,40.473973860584685,spot_peer,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,192418,0.1705758126418276,relative_legacy,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,192418,84.20320270741945,baseline,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,192418,32.274099799376145,peer,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,192924,-0.0291317556367044,relative_legacy,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,192924,22.67519725032356,spot_peer,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,192924,31.061801062476,baseline,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,192924,9.67759741291684,peer,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,192924,67.80719051126377,spot_baseline,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,204737,12.33666252466599,spot_peer,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,204737,35.31597574189129,baseline,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,204737,8.233337567430837,peer,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,204737,-0.1255215466810759,relative_legacy,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,204737,53.406160242111845,spot_baseline,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,220077,27.10123713173161,peer,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,220077,84.79969065549501,spot_baseline,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,220077,34.8741545147347,spot_peer,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,220077,0.102202103421097,relative_legacy,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,220077,82.44278812159011,baseline,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,224797,-83.84543133366422,peer,cookics_bot_TEST,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,224797,-132.19280948873623,spot_baseline,cookics_bot_TEST,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,224797,-120.90529015137942,spot_peer,cookics_bot_TEST,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,224797,-1.4067895968963195,relative_legacy,cookics_bot_TEST,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,224797,-90.9196070838678,baseline,cookics_bot_TEST,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236037,54.043859664376924,baseline,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236037,76.55347463629771,spot_baseline,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236037,28.95417593845429,spot_peer,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236037,0.0289261735959228,relative_legacy,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236037,21.08554321382232,peer,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236038,62.10752521577662,baseline,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236038,26.20965944911253,peer,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236038,0.09303426378692,relative_legacy,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236038,34.8741545147347,spot_peer,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236038,84.79969065549501,spot_baseline,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236040,26.18895773436413,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236040,61.74317065691612,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236040,0.0930233255843085,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236040,34.8741545147347,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236040,84.79969065549501,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236041,1.169691612576797,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236041,-0.2489239802832503,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236041,1.258999215275706,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236041,27.563510597743832,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236043,-120.90529015137942,spot_peer,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236043,-132.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236043,-1.4802739539217276,relative_legacy,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236043,-88.48644816730413,peer,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236043,-95.84672724409924,baseline,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236045,9.636773627784391,peer,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236045,58.496250072115615,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236045,15.990850418217963,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236045,-0.0902802741793407,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236045,36.12486026921271,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236047,-4.770528896331557,peer,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236047,-7.120445967896631,spot_peer,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236047,-0.2972624691414616,relative_legacy,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,236047,16.989292980836282,baseline,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,237476,17.806456867257936,peer,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,237476,0.0215158990646049,relative_legacy,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,237476,28.95417593845429,spot_peer,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,237476,47.46334774327345,baseline,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,239759,-192.69553385223088,spot_peer,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,239759,-166.84633772347013,baseline,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,239759,-139.88054793018827,peer,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,239759,-2.185287950096761,relative_legacy,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,239759,-232.19280948873623,spot_baseline,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,240416,29.39834842634112,peer,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,240416,65.50420287211195,baseline,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,240416,40.473973860584685,spot_peer,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,240416,0.1424278676535237,relative_legacy,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,246118,84.79969065549501,spot_baseline,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,246118,16.302684421817123,baseline,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,246118,5.977107154952203,peer,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,246118,0.0176742201485073,relative_legacy,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,246118,34.8741545147347,spot_peer,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,247214,0.0275450639737764,relative_legacy,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,247214,76.55347463629771,spot_baseline,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,247214,28.95417593845429,spot_peer,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,247214,51.69688181996332,baseline,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,247214,19.880374581827603,peer,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,250015,28.95417593845429,spot_peer,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,250015,0.0150408567040644,relative_legacy,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,250015,16.53202968302009,peer,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,250015,44.54919496091548,baseline,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,264059,28.95417593845429,spot_peer,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,264059,0.0220318769945114,relative_legacy,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,264059,20.533773859799503,peer,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,264059,74.68584393775312,baseline,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,264059,76.55347463629771,spot_baseline,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,264225,-132.19280948873623,spot_baseline,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,264225,-2.7521757858368887,baseline,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,264225,-2.5171763367550075,peer,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,264225,-0.0416388122240702,relative_legacy,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,264225,-120.90529015137942,spot_peer,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,264891,20.10256792068465,peer,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,264891,28.95417593845429,spot_peer,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,264891,76.55347463629771,spot_baseline,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,264891,52.10175858198801,baseline,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,264891,0.0275450639737764,relative_legacy,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,265212,76.55347463629771,spot_baseline,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,265212,28.95417593845429,spot_peer,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,265212,0.0025945245191671,relative_legacy,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,265212,6.742934305401086,peer,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,265212,20.07662588346508,baseline,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,265835,17.211973282127357,baseline,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,265835,76.55347463629771,spot_baseline,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,265835,28.95417593845429,spot_peer,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,265835,0.0018209244117032,relative_legacy,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,265835,5.699036884952577,peer,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,266158,28.95417593845429,spot_peer,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,266158,76.55347463629771,spot_baseline,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,266158,0.0092938193564664,relative_legacy,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,266158,11.987692022568362,peer,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35358,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 04:57:12.645297+00,266158,33.63269748126834,baseline,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35924 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,187708,0.0497052875215384,relative_legacy,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,187708,4.817417860964547,baseline,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,187708,33.55703127257193,peer,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,187708,46.130739408203006,spot_peer,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,187708,8.133962745193879,spot_baseline,twsummerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,189869,12.981464251357345,baseline,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,189869,0.0996691344361356,relative_legacy,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,189869,33.11714014487416,peer,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,189869,59.174651827408574,spot_peer,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,191026,1.4489045926103157,peer,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,191026,-74.66157641999254,spot_baseline,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,191026,-13.308379931918264,spot_peer,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,191026,-0.4039833526152216,relative_legacy,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,191026,-60.67032582026969,baseline,manticAI,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,191975,8.18535366965692,peer,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,191975,47.55665143503603,spot_peer,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,191975,10.120182534020303,spot_baseline,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,191975,1.6569284063829015,baseline,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,191975,0.0028851569349472,relative_legacy,jkraybill_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,192075,16.992500144231236,spot_baseline,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,192075,3.172399950546918,baseline,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,192075,10.307534086195888,peer,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,192075,0.0180398723765874,relative_legacy,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,192075,52.49030499530299,spot_peer,CumulativeBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,192418,-66.30921830499975,baseline,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,192418,2.036887746840097,peer,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,192418,-0.3961415819449472,relative_legacy,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,192418,-12.615591873442908,spot_peer,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,192418,-73.69655941662063,spot_baseline,InstitutPelFutur,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,192924,21.43565720101607,peer,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,192924,0.0,spot_baseline,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,192924,40.29134773089186,spot_peer,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,192924,-0.0268989448228018,relative_legacy,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,192924,0.0,baseline,acm_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,204737,32.19280948873624,spot_baseline,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,204737,51.54758738375091,peer,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,204737,21.423518299381342,baseline,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,204737,0.2644175648772072,relative_legacy,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,204737,63.40264411700644,spot_peer,SynapseSeer,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,220077,-173.6965594166206,spot_baseline,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,220077,-84.4058355742944,spot_peer,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,220077,-1.3844159947117245,relative_legacy,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,220077,-77.23711236201497,peer,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,220077,-167.9156904063722,baseline,mmBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,224797,-91.08297135898238,baseline,cookics_bot_TEST,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,224797,-0.8295280621893599,relative_legacy,cookics_bot_TEST,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,224797,-27.8769391856918,peer,cookics_bot_TEST,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,224797,-132.19280948873623,spot_baseline,cookics_bot_TEST,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,224797,-54.610192356074215,spot_peer,cookics_bot_TEST,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236037,-12.615591873442908,spot_peer,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236037,-51.48977827805639,baseline,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236037,1.6065518096380842,peer,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236037,-73.69655941662063,spot_baseline,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236037,-0.420813324994448,relative_legacy,metac-o1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236038,59.174651827408574,spot_peer,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236038,0.3327502707944458,relative_legacy,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236038,55.28629234740219,peer,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236038,19.181784732618915,baseline,metac-gpt-4o,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236040,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236040,-84.4058355742944,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236040,-1.1215745803358912,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236040,-125.87298226428044,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236040,-50.726400773774905,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236041,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236041,-125.85937938757635,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236041,-50.72040654027617,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236041,-1.1215149755418428,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236041,-84.4058355742944,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236043,-126.40043605692568,spot_peer,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236043,-167.3736052120048,baseline,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236043,-81.18300498036618,peer,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236043,-1.5420490116739376,relative_legacy,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236043,-232.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236045,42.86256149543538,peer,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236045,21.05145710081157,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236045,0.200599415797522,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236045,67.46478940788201,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236045,37.85116232537298,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236047,88.97029504562875,spot_peer,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236047,42.257973902051965,baseline,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236047,62.94633161025551,peer,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236047,0.4340739479963318,relative_legacy,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,237476,18.47914638971792,peer,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,237476,-20.447764036825703,baseline,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,237476,-0.1841710119617136,relative_legacy,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,237476,17.18005134477727,spot_peer,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,237476,-32.19280948873623,spot_baseline,NextWorldLab,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,239759,-37.151619624269486,baseline,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,239759,-51.45731728297583,spot_baseline,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,239759,3.3500142515231257,spot_peer,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,239759,-0.2389650048887008,relative_legacy,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,239759,13.775384086328502,peer,metac-exa,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,240416,-0.8295023080577911,relative_legacy,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,240416,-54.610192356074215,spot_peer,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,240416,-28.1571788763014,peer,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,240416,-132.19280948873623,spot_baseline,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,240416,-92.64660050042914,baseline,metac-o1-preview,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,246118,-32.19280948873623,spot_baseline,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,246118,-6.15150114534636,baseline,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,246118,3.812024723072216,peer,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,246118,-0.0737862112031341,relative_legacy,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,246118,17.18005134477727,spot_peer,laylaps,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,247214,75.58318704612657,spot_peer,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,247214,32.081005008974586,baseline,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,247214,58.05149148739514,peer,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,247214,49.159659441044816,spot_baseline,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,247214,0.3539564310471051,relative_legacy,ajf-bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,250015,6.936830590912631,peer,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,250015,-28.627029191606297,baseline,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,250015,-51.45731728297583,spot_baseline,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,250015,-0.2961691748221866,relative_legacy,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,250015,3.3500142515231257,spot_peer,metac-deepseek-r1,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,264059,0.5490211553427834,relative_legacy,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,264059,59.174651827408574,spot_peer,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,264059,81.31088785569514,peer,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,264059,26.303440583379377,spot_baseline,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,264059,25.5290541772631,baseline,wunderplumb,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,264225,0.8964113050004106,baseline,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,264225,48.54268271702416,spot_baseline,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,264225,75.14025795237461,spot_peer,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,264225,0.0070952740150774,relative_legacy,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,264225,1.387574252576966,peer,KevinTestBot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,264891,-564.3856189774725,spot_baseline,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,264891,-364.8824635455947,spot_peer,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,264891,-3.782423831232925,relative_legacy,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,264891,-242.22720329522295,peer,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,264891,-385.6084298022191,baseline,swingswish,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,265212,5.697778902439514,peer,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,265212,-32.19280948873623,spot_baseline,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,265212,17.18005134477727,spot_peer,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,265212,-0.097481182880973,relative_legacy,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,265212,-8.520998313130248,baseline,4Shadower,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,265835,4.632928596890364,peer,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,265835,-0.0843496130116939,relative_legacy,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,265835,17.18005134477727,spot_peer,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,265835,-32.19280948873623,spot_baseline,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,265835,-7.20784132620234,baseline,jonahsingerbot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,266158,39.70636576837251,peer,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,266158,0.2331296337476396,relative_legacy,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,266158,82.28594821352317,spot_peer,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,266158,58.496250072115615,spot_baseline,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35359,"Will Github rank in the top 50 global websites according to Ahrefs on April 1, 2025?",2025-03-08 04:57:12.677953+00,266158,26.00285785704413,baseline,bean_bot,True,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,2025-03-13 03:00:00+00,35925 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,187708,50.79214649573284,spot_baseline,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,187708,4.797464700815976,baseline,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,187708,75.67440783433072,spot_peer,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,187708,0.1096699406205929,relative_legacy,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,187708,7.6237237731141825,peer,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,189869,39.85900807034391,peer,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,189869,23.775547688586204,baseline,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,189869,0.5746020780670886,relative_legacy,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,189869,74.0574498592366,spot_peer,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,191026,89.44869425679414,peer,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,191026,85.75829553841481,spot_baseline,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,191026,100.8087505554888,spot_peer,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,191026,1.209927818748561,relative_legacy,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,191026,69.70301569344619,baseline,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,191975,100.19647598753892,spot_peer,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,191975,3.021168417064226,baseline,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,191975,3.601785171017169,peer,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,191975,0.0485213765915822,relative_legacy,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,191975,84.90651739424413,spot_baseline,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,192418,0.0,baseline,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,192418,0.0,spot_baseline,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,192418,39.16403272814785,spot_peer,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,192418,0.5704255135928553,relative_legacy,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,192418,43.75847472064735,peer,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,192924,-36.77490271747908,baseline,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,192924,-81.09661756099828,spot_baseline,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,192924,-19.129781006293435,spot_peer,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,192924,-0.0495897669737302,relative_legacy,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,192924,-5.495957032051974,peer,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,204737,5.815113196978756,peer,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,204737,-51.45731728297583,spot_baseline,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,204737,2.175520023390418,spot_peer,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,204737,0.1135718033811052,relative_legacy,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,204737,-34.24738838736935,baseline,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,220077,-85.69240623898621,spot_peer,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,220077,-166.87797770177872,baseline,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,220077,-81.28177681107385,peer,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,220077,-1.017830016433469,relative_legacy,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,220077,-173.6965594166206,spot_baseline,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,224797,-22.22456552172481,baseline,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,224797,-32.19280948873623,spot_baseline,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,224797,16.023219999266846,spot_peer,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,224797,0.2485066596162619,relative_legacy,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,224797,15.80987172860006,peer,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236037,0.2493479892213501,relative_legacy,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236037,15.869576453209518,peer,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236037,-32.19280948873623,spot_baseline,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236037,-22.285925559042283,baseline,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236037,16.023219999266846,spot_peer,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236038,39.16403272814785,spot_peer,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236038,33.91484655511806,peer,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236038,-0.0019657055053443,baseline,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236038,0.0,spot_baseline,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236038,0.5128780047590459,relative_legacy,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236040,-0.7402884659973674,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236040,-85.69240623898621,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236040,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236040,-57.88243839882367,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236040,-125.31664707564131,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236041,-0.7403031646840275,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236041,-85.69240623898621,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236041,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236041,-125.31608018762206,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236041,-57.88271400565052,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236043,0.9924937018582718,relative_legacy,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236043,87.90514983511301,spot_peer,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236043,68.83093694717357,peer,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236043,48.59663191100564,baseline,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236045,-0.1694809854835265,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236045,-100.0,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236045,-55.18302592760963,baseline,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236045,-14.50519958768637,peer,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236045,-32.71789710769832,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236047,-73.69655941662059,spot_baseline,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236047,-0.0241091525641453,relative_legacy,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236047,-4.439727197488018,peer,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236047,-44.58308391734366,baseline,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,236047,-13.810476403140044,spot_peer,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,237476,47.93879697847052,peer,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,237476,66.37217867292469,spot_peer,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,237476,24.65256362064285,baseline,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,237476,0.6920719590701161,relative_legacy,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,239759,-55.85870983657935,spot_peer,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,239759,-36.36235803074052,peer,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,239759,-132.19280948873626,spot_baseline,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,239759,-96.04312453477132,baseline,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,239759,-0.4475532405886674,relative_legacy,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,240416,-85.69240623898621,spot_peer,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,240416,-121.1513039818832,baseline,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,240416,-55.8819783594594,peer,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,240416,-0.7303501009306484,relative_legacy,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,240416,-173.6965594166206,spot_baseline,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,246118,-33.17612872886957,baseline,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,246118,-0.1989137262985794,relative_legacy,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,246118,-14.93447100481344,peer,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,246118,-173.6965594166206,spot_baseline,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,246118,-85.69240623898621,spot_peer,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,247214,-0.0344413467416006,relative_legacy,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,247214,-73.69655941662059,spot_baseline,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,247214,-13.810476403140044,spot_peer,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,247214,-4.976868849924111,peer,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,247214,-49.52899841214936,baseline,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,250015,-26.72217427988008,baseline,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,250015,-51.45731728297583,spot_baseline,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,250015,2.175520023390418,spot_peer,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,250015,0.091312021295442,relative_legacy,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,250015,4.636216204397675,peer,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,264059,-71.92696381351367,baseline,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,264059,-73.69655941662059,spot_baseline,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,264059,-13.810476403140044,spot_peer,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,264059,-0.0570857261478293,relative_legacy,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,264059,-2.3932953695965087,peer,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,264225,0.0296027371960258,relative_legacy,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,264225,67.80719051126377,spot_baseline,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,264225,87.90514983511301,spot_peer,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,264225,1.683047603876286,baseline,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,264225,2.1819006315236797,peer,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,264891,-50.24195307315328,baseline,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,264891,-13.810476403140044,spot_peer,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,264891,-73.69655941662059,spot_baseline,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,264891,-0.0344413467416006,relative_legacy,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,264891,-5.017584915509089,peer,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,265212,-51.45731728297583,spot_baseline,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,265212,-13.505493910371031,baseline,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,265212,2.55244400144111,peer,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,265212,0.0423364371692148,relative_legacy,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,265212,2.175520023390418,spot_peer,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,265835,-22.595045612918003,baseline,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,265835,-100.0,spot_baseline,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,265835,-32.71789710769832,spot_peer,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,265835,-0.0673459758472419,relative_legacy,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,265835,-5.673434136261195,peer,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,266158,-77.16418759357953,baseline,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,266158,-173.6965594166206,spot_baseline,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,266158,-85.69240623898621,spot_peer,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,266158,-0.4602797754862549,relative_legacy,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35360,"Will Doge's Agency Efficiency Leaderboard have the Department of Education ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.710554+00,266158,-35.11358498975113,peer,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35926 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,187708,-8.793925531451421,peer,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,187708,-0.1773086551271006,relative_legacy,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,187708,0.0,spot_baseline,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,187708,0.0,baseline,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,187708,-18.99017291420146,spot_peer,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,189869,15.858737307281302,spot_peer,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,189869,0.0345062414602745,relative_legacy,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,189869,7.248383547086671,peer,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,189869,23.81034223295244,baseline,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,191026,0.3438955485322812,relative_legacy,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,191026,67.89195601436305,baseline,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,191026,32.3722014187275,peer,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,191026,83.51156152582178,spot_baseline,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,191026,40.96298062357252,spot_peer,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,191975,0.3972933661970246,peer,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,191975,4.44022495874869,baseline,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,191975,29.081756234733167,spot_baseline,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,191975,-0.0039838381035665,relative_legacy,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,191975,1.8876907592010552,spot_peer,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,192075,0.0579065304660795,relative_legacy,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,192075,65.53518286125541,spot_baseline,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,192075,28.05769457169245,spot_peer,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,192075,5.463185825402364,peer,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,192075,12.409849340792585,baseline,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,192418,26.303440583379377,spot_baseline,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,192418,23.185200837163645,baseline,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,192418,-2.481208026306716,peer,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,192418,-0.1211863107606665,relative_legacy,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,192418,-0.1068688176847268,spot_peer,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,192924,0.0574468574652559,relative_legacy,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,192924,8.392699287826247,peer,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,192924,24.29061350615039,baseline,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,192924,19.493195430591435,spot_peer,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,192924,53.60529002402098,spot_baseline,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,204737,-0.1946157614189977,relative_legacy,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,204737,8.806576060608364,baseline,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,204737,-9.496071245455417,spot_peer,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,204737,13.224779829843978,spot_baseline,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,204737,-7.502893574798284,peer,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,220077,-0.0230186701053144,relative_legacy,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,220077,36.16497972213172,baseline,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,220077,4.806367021734542,peer,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,220077,8.183268762788689,spot_peer,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,224797,48.54268271702416,spot_baseline,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,224797,9.770716290960014,peer,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,224797,0.0406438556515328,relative_legacy,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,224797,15.858737307281302,spot_peer,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,224797,33.04238130817733,baseline,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236037,40.23318610854108,baseline,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236037,58.496250072115615,spot_baseline,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236037,23.00442756842985,spot_peer,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236037,0.1098676482083331,relative_legacy,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236037,14.86475025454783,peer,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236038,-32.19280948873623,spot_baseline,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236038,-0.5360783691473002,relative_legacy,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236038,-42.10146930031604,spot_peer,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236038,-23.36500065817026,baseline,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236038,-32.23069628728593,peer,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236040,27.220749782528124,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236040,8.183268762788689,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236040,-0.0285293676906685,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236040,4.848732347634277,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236041,-23.121485727821128,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236041,-0.5316804757273434,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236041,-31.864601060949475,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236041,-32.19280948873623,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236041,-42.10146930031604,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236043,0.0467922376357577,relative_legacy,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236043,10.32170275531008,peer,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236043,34.56338988468852,baseline,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236043,15.858737307281302,spot_peer,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236045,11.495804578289924,peer,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236045,30.60705001764845,baseline,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236045,0.0865878075862615,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236045,58.496250072115615,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236045,23.00442756842985,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236047,-0.6681771577505821,relative_legacy,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236047,-42.72858487083237,baseline,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236047,-73.69655941662059,spot_baseline,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236047,-42.78486477075508,peer,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,236047,-71.89711251853619,spot_peer,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,237476,58.496250072115615,spot_baseline,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,237476,39.09386305106561,baseline,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,237476,14.461725316861797,peer,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,237476,0.107092450579673,relative_legacy,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,237476,23.00442756842985,spot_peer,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,239759,19.19187550195455,baseline,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,239759,-0.1115883662120702,relative_legacy,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,239759,-0.1068688176847268,spot_peer,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,239759,26.303440583379377,spot_baseline,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,239759,-1.2596289173492543,peer,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,240416,-0.1068688176847268,spot_peer,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,240416,-1.2619057391125388,peer,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,240416,18.153559844553588,baseline,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,240416,26.303440583379377,spot_baseline,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,240416,-0.1117503219333085,relative_legacy,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,246118,3.1948556041295744,peer,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,246118,9.313499211575774,baseline,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,246118,0.0262853306430279,relative_legacy,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,246118,15.858737307281302,spot_peer,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,247214,-16.486277259977136,peer,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,247214,5.030097114556502,baseline,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,247214,-0.3055826894619646,relative_legacy,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,247214,5.658352836636751,spot_baseline,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,247214,-14.928027623325884,spot_peer,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,250015,-29.902512035904916,spot_peer,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,250015,-0.0973260560699547,relative_legacy,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,250015,-5.723024777491404,peer,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,250015,-2.984979330577011,baseline,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,250015,-15.200309344505014,spot_baseline,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,264059,48.54268271702416,spot_baseline,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,264059,0.0791337063102524,relative_legacy,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,264059,13.026871039149674,peer,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,264059,47.215192969432906,baseline,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,264059,15.858737307281302,spot_peer,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,264225,0.4709226725728817,peer,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,264225,1.1974742834834435,baseline,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,264225,23.00442756842985,spot_peer,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,264225,58.496250072115615,spot_baseline,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,264225,0.0020375906014399,relative_legacy,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,264891,76.55347463629771,spot_baseline,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,264891,35.96775308866619,spot_peer,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,264891,0.231047317064769,relative_legacy,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,264891,23.619247805457224,peer,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,264891,52.05706400599049,baseline,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,265212,-42.10146930031604,spot_peer,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,265212,-10.95984709577552,peer,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,265212,-8.474655190824143,baseline,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,265212,-32.19280948873623,spot_baseline,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,265212,-0.1776941329133962,relative_legacy,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,265835,-73.69655941662059,spot_baseline,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,265835,-0.243444954950318,relative_legacy,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,265835,-16.194914248637716,peer,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,265835,-16.777432610287093,baseline,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,265835,-71.89711251853619,spot_peer,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,266158,67.80719051126377,spot_baseline,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,266158,30.080414954932497,baseline,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,266158,12.788328158002674,peer,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,266158,0.1199668517560215,relative_legacy,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35361,"Will Doge's Agency Efficiency Leaderboard have the General Services Administration ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.742691+00,266158,29.688774400535447,spot_peer,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35927 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,187708,35.16283291027821,spot_baseline,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,187708,-0.0598937867746454,relative_legacy,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,187708,17.964534467537113,baseline,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,187708,-2.2046398376714604,spot_peer,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,187708,0.3658735333232236,peer,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,189869,-0.2746815990932505,spot_peer,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,189869,-0.046544196696887,relative_legacy,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,189869,17.917576962055183,baseline,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,189869,1.112444753920442,peer,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,191026,0.2689896582248388,relative_legacy,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,191026,31.948083393666717,peer,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,191026,88.2838655767251,spot_baseline,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,191026,35.93107896997968,spot_peer,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,191026,71.78800906086632,baseline,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,191975,41.287183206072925,spot_baseline,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,191975,2.192046164773375,spot_peer,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,191975,-0.0192425826485481,relative_legacy,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,191975,1.0498385439090003,peer,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,191975,11.62891820463128,baseline,jkraybill_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,192075,0.0055236839282567,relative_legacy,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,192075,72.2466024471091,spot_baseline,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,192075,24.41788868628156,spot_peer,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,192075,0.5690220921855915,peer,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,192075,1.6835502370595603,baseline,CumulativeBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,192418,37.76396118061315,peer,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,192418,92.5999418556223,spot_baseline,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,192418,39.02960064891464,spot_peer,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,192418,0.308712123699923,relative_legacy,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,192418,80.78969282354413,baseline,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,192924,14.935534515654597,peer,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,192924,36.39351505777381,baseline,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,192924,30.51208333151396,spot_peer,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,192924,80.73549220576041,spot_baseline,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,192924,0.1467675008731022,relative_legacy,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,204737,4.005736789066912,peer,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,204737,42.65331381166733,spot_baseline,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,204737,3.172794655801526,spot_peer,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,204737,-0.0530970514962021,relative_legacy,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,204737,28.790176337579624,baseline,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,220077,-99.23836697693488,spot_peer,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,220077,-100.0,spot_baseline,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,220077,-94.99257466528152,baseline,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,220077,-99.19032318603522,peer,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,220077,-1.470155012518359,relative_legacy,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,224797,0.2858901666794484,relative_legacy,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,224797,39.02960064891464,spot_peer,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,224797,92.5999418556223,spot_baseline,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,224797,63.157087279967946,baseline,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,224797,28.806765092561584,peer,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236037,46.22446253870832,baseline,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236037,16.505249190422592,peer,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236037,67.80719051126377,spot_baseline,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236037,21.23082403865352,spot_peer,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236037,0.1166981747159284,relative_legacy,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236038,-99.23836697693488,spot_peer,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236038,-70.72537925248552,peer,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236038,-72.31266045149549,baseline,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236038,-1.0929981751252846,relative_legacy,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236038,-100.0,spot_baseline,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236040,27.09630982323643,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236040,-0.2746815990932505,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236040,-0.0927965511789016,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236040,1.981212128402577,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236041,-44.59942536838629,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236041,-64.38945675545212,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236041,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236041,-36.81579483153227,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236041,-0.7315978366284022,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236043,48.09321791606445,baseline,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236043,17.383412548176302,peer,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236043,21.23082403865352,spot_peer,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236043,0.1198281906841802,relative_legacy,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236045,4.82396112554128,peer,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236045,23.233432901253664,baseline,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236045,48.54268271702416,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236045,0.004024309709969,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236045,7.400786945399366,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236047,-73.69655941662059,spot_baseline,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236047,-0.6614236755755774,relative_legacy,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236047,-42.83329039045704,peer,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236047,-80.35506288041813,spot_peer,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,236047,-40.52632414169979,baseline,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,237476,-0.2524005652544946,relative_legacy,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,237476,-10.310309112385887,peer,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,237476,-17.576711796349745,spot_peer,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,237476,13.750352374993504,spot_baseline,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,237476,9.414560898680577,baseline,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,239759,33.429781303064644,spot_peer,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,239759,27.110677265272702,peer,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,239759,62.24791820650874,baseline,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,239759,0.2434127952102897,relative_legacy,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,240416,17.970058317543575,baseline,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,240416,-8.56481917956667,spot_peer,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,240416,26.303440583379377,spot_baseline,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,240416,-0.1663301029152189,relative_legacy,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,240416,-4.06501893961744,peer,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,246118,67.80719051126377,spot_baseline,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,246118,13.042517808803094,baseline,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,246118,4.292965551892708,peer,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,246118,0.0370547259206173,relative_legacy,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,246118,21.23082403865352,spot_peer,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,247214,15.09739035958506,spot_peer,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,247214,52.52732683006117,baseline,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,247214,16.398388834058924,peer,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,247214,0.0178664383023906,relative_legacy,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,247214,59.26364286065772,spot_baseline,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,250015,-7.664616816235921,baseline,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,250015,-15.200309344505014,spot_baseline,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,250015,-38.36046239778685,spot_peer,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,250015,-0.3134984797511603,relative_legacy,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,250015,-18.001318207539637,peer,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,264059,33.429781303064644,spot_peer,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,264059,82.63135267447124,baseline,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,264059,41.77139370622108,peer,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,264059,0.2853048287529442,relative_legacy,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,264225,0.0,relative_legacy,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,264225,0.1720539390612673,peer,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,264225,1.1285232010708313,baseline,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,264225,48.54268271702416,spot_baseline,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,264225,7.400786945399366,spot_peer,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,264891,57.680356185042726,baseline,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,264891,24.86743085034111,peer,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,264891,0.2322690342357391,relative_legacy,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,264891,33.429781303064644,spot_peer,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,264891,84.79969065549501,spot_baseline,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,265212,20.01099863055777,baseline,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,265212,7.568428845318669,peer,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,265212,0.0732199186778192,relative_legacy,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,265212,27.509802726784244,spot_peer,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,265212,76.55347463629771,spot_baseline,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,265835,0.0,relative_legacy,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,265835,1.927028719096918,peer,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,265835,10.875388896363775,baseline,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,265835,48.54268271702416,spot_baseline,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,265835,7.400786945399366,spot_peer,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,266158,7.400786945399366,spot_peer,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,266158,0.0011932048755045,relative_legacy,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,266158,21.504915094477617,baseline,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,266158,4.365601858199603,peer,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35362,"Will Doge's Agency Efficiency Leaderboard have the Environmental Protection Agency ranked #1 in Most Total Savings on April 1, 2025?",2025-03-08 04:57:12.90439+00,266158,48.54268271702416,spot_baseline,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35928 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,187708,22.86881424840273,peer,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,187708,91.3798964950696,spot_baseline,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,187708,50.111918518072734,spot_peer,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,187708,0.1462463904315826,relative_legacy,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,187708,38.57025961918118,baseline,twsummerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,189869,28.63642021090448,baseline,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,189869,15.28551989468466,peer,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,189869,26.44204991329509,spot_peer,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,189869,0.011605776544272,relative_legacy,VeritasAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,191026,50.99011532765748,spot_peer,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,191026,0.4333011356377387,relative_legacy,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,191026,58.23381101750245,peer,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,191026,75.31472877014936,baseline,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,192418,-2.208350412281209,relative_legacy,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,192418,-182.79787914301707,spot_peer,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,192418,-200.5082553448732,baseline,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,192418,-232.1928094887363,spot_baseline,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,192418,-142.85634931480985,peer,InstitutPelFutur,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,192924,-7.486142926072482,peer,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,192924,-7.400058144377692,spot_baseline,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,192924,-20.990553422798385,spot_peer,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,192924,-3.2715806908862257,baseline,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,192924,-0.2797479602494309,relative_legacy,acm_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,204737,-5.766346487488232,spot_peer,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,204737,1.0541723880755094,peer,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,204737,9.135360708377055,baseline,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,204737,13.750352374993504,spot_baseline,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,204737,-0.2533264368936743,relative_legacy,SynapseSeer,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,220077,-87.64461083300861,spot_peer,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,220077,-94.4646210802926,baseline,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,220077,-100.0,spot_baseline,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,220077,-59.45896600583185,peer,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,220077,-1.0995333825264118,relative_legacy,mmBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,224797,0.1082965196686731,relative_legacy,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,224797,33.14412710835056,spot_peer,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,224797,67.80719051126377,spot_baseline,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,224797,28.14020967221871,peer,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,224797,46.330435509455526,baseline,cookics_bot_TEST,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236037,-0.5684806812655318,relative_legacy,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236037,-38.8365416421053,spot_peer,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236037,-32.19280948873623,spot_baseline,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236037,-21.77714193022492,baseline,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236037,-21.444306577997303,peer,metac-o1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236038,33.14412710835056,spot_peer,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236038,0.1071273649188018,relative_legacy,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236038,30.620739636356,peer,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236038,48.8805253555898,baseline,metac-gpt-4o,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236040,25.13015389949567,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236040,41.75546493183038,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236040,26.44204991329509,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236040,0.0405391850095581,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236041,34.5850453000635,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236041,19.85454426740849,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236041,48.54268271702416,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236041,19.2774055665732,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236041,-0.030198108724656,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236043,45.37544234959039,spot_peer,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236043,0.2263802026818789,relative_legacy,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236043,38.1283932760721,peer,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236043,59.83642735288225,baseline,metac-grok-2-1212,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236045,35.77881562320094,baseline,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236045,76.55347463629771,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236045,39.43976091236495,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236045,0.0959437942332571,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236045,20.557455292900976,peer,metac-Gemini-Exp-1206,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236047,35.57056449533945,baseline,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236047,20.222396087219185,peer,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236047,0.0639373183430334,relative_legacy,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236047,33.14412710835056,spot_peer,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,237476,39.43976091236495,spot_peer,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,237476,0.1680570184516077,relative_legacy,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,237476,33.770943285027435,peer,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,237476,53.89137101714085,baseline,NextWorldLab,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,239759,45.75466667307374,peer,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,239759,50.99011532765748,spot_peer,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,239759,68.22501067649316,baseline,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,239759,0.2858539105487048,relative_legacy,metac-exa,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,240416,37.85116232537298,spot_baseline,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,240416,25.713121974736183,baseline,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,240416,13.125532024703004,peer,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,240416,-0.0953635887458735,relative_legacy,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,240416,11.581577689071322,spot_peer,metac-o1-preview,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,246118,12.963013218623086,baseline,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,246118,67.80719051126377,spot_baseline,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,246118,33.14412710835056,spot_peer,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,246118,0.0,relative_legacy,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,246118,6.561920552255279,peer,laylaps,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,247214,-305.8893689053567,spot_baseline,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,247214,-235.8451554571775,spot_peer,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,247214,-2.9487924426965986,relative_legacy,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,247214,-201.11083571046927,peer,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,247214,-279.6057182492059,baseline,ajf-bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,250015,-0.1714435958323871,relative_legacy,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,250015,-0.8509394842102382,peer,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,250015,5.478877343609496,baseline,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,250015,13.750352374993504,spot_baseline,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,250015,-5.766346487488232,spot_peer,metac-deepseek-r1,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,264059,66.00244751079411,peer,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,264059,66.00619470878934,baseline,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,264059,67.80719051126377,spot_baseline,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,264059,0.4856508840930885,relative_legacy,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,264059,33.14412710835056,spot_peer,wunderplumb,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,264225,0.6961913321783467,peer,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,264225,67.80719051126377,spot_baseline,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,264225,1.4242878727499833,baseline,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,264225,0.0,relative_legacy,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,264225,33.14412710835056,spot_peer,KevinTestBot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,264891,-38.8365416421053,spot_peer,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,264891,-32.19280948873623,spot_baseline,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,264891,-21.47959205736492,peer,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,264891,-21.822545706029928,baseline,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,264891,-0.5695736647793571,relative_legacy,swingswish,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,265212,12.446188520648612,peer,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,265212,22.2840057033709,baseline,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,265212,45.37544234959039,spot_peer,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,265212,84.79969065549501,spot_baseline,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,265212,0.0483732561782255,relative_legacy,4Shadower,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,265835,20.634463056569704,baseline,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,265835,11.681650401495888,peer,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,265835,0.0552468070102598,relative_legacy,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,265835,50.99011532765748,spot_peer,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,265835,92.5999418556223,spot_baseline,jonahsingerbot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,266158,-32.19280948873623,spot_baseline,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,266158,-0.3905411926684052,relative_legacy,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,266158,-14.274535079067329,baseline,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,266158,-38.8365416421053,spot_peer,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35363,"Will Doge claim a total savings of $150 billion or more on April 1, 2025?",2025-03-08 04:57:12.93996+00,266158,-15.448617903756988,peer,bean_bot,True,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,0.85,2025-03-13 03:00:00+00,35929 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,187708,24.602587552157075,baseline,twsummerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,187708,0.3455558215948187,relative_legacy,twsummerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,187708,79.57669477823923,spot_baseline,twsummerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,187708,101.99366566951711,spot_peer,twsummerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,187708,31.5332032373619,peer,twsummerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,189869,22.17329083078831,spot_peer,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,189869,-29.52115424289928,baseline,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,189869,0.2619146034407389,relative_legacy,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,189869,28.847609556403896,peer,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,191026,-12.644089835814013,baseline,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,191026,34.30851268629445,spot_peer,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,191026,-15.200309344505014,spot_baseline,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,191026,34.80501704038724,peer,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,191026,0.3530071674393599,relative_legacy,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,191935,-0.7839978346822015,relative_legacy,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,191935,-78.8818443279956,spot_peer,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,191935,-108.97163437842896,baseline,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,191935,-173.6965594166206,spot_baseline,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,191935,-46.95276147861054,peer,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,192075,-0.1566299999684775,relative_legacy,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,192075,-46.312582681484585,baseline,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,192075,-2.048543214981465,peer,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,192075,-7.466680270304264,spot_peer,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,192075,-73.69655941662059,spot_baseline,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,192418,-37.40415304718373,baseline,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,192418,26.457048907181807,peer,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,192418,0.2084639718464614,relative_legacy,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,192418,-39.592867633113926,spot_baseline,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,192418,16.888527166616427,spot_peer,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,192924,50.19070394122412,spot_peer,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,192924,0.1472534305842521,relative_legacy,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,192924,7.0389327891398015,spot_baseline,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,192924,19.046474708216927,peer,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,192924,2.6420111386114296,baseline,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,204737,-2.653472955968658,peer,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,204737,-63.34410253551495,baseline,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,204737,-77.59597257820697,spot_baseline,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,204737,-10.251452576938382,spot_peer,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,204737,-0.169491697382937,relative_legacy,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,218666,-78.58751946471523,spot_baseline,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,218666,-10.959567412647198,spot_peer,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,218666,-0.1836517801312575,relative_legacy,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,218666,-43.41836068239817,baseline,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,218666,-4.315981408202819,peer,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,220077,-1.0584397185210994,relative_legacy,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,220077,-68.69120913287878,peer,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,220077,-172.42513013118682,baseline,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,220077,-173.6965594166206,spot_baseline,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,220077,-78.8818443279956,spot_peer,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,222631,0.7110536783635064,relative_legacy,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,222631,79.83067504231667,spot_peer,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,222631,48.54268271702416,spot_baseline,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,222631,60.472690359816205,peer,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,222631,34.43578476491528,baseline,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,224797,63.94848378738705,spot_peer,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,224797,26.303440583379377,spot_baseline,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,224797,9.92905147344744,baseline,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,224797,24.35839614033028,peer,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,224797,0.2208510919811971,relative_legacy,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,227188,86.93903149854805,spot_peer,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,227188,35.37891404032811,baseline,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,227188,55.006505999502,peer,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,227188,0.642880744375946,relative_legacy,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,227188,58.496250072115615,spot_baseline,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236037,-116.25617460486544,baseline,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236037,-36.4710303478098,peer,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236037,-0.6280753491499644,relative_legacy,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236037,-49.24187322690307,spot_peer,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236037,-132.19280948873626,spot_baseline,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236038,-88.96501169489616,baseline,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236038,-0.3433707262026255,relative_legacy,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236038,-26.25132551574204,spot_peer,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236038,-100.0,spot_baseline,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236038,-16.14342329610145,peer,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236040,-63.43853370035068,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236040,-154.38827006551557,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236040,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236040,-78.8818443279956,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236040,-0.9984370437741192,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236041,-49.24187322690307,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236041,-36.79576295633093,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236041,-117.48923118545235,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236041,-132.19280948873626,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236041,-0.6295081897491156,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236043,102.27628721763776,peer,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236043,1.296315404901439,relative_legacy,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236043,105.7236767439858,spot_peer,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236043,75.26093358454854,baseline,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236045,-78.8818443279956,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236045,-0.9857124293396904,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236045,-61.773035645679,peer,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236045,-149.71394103017408,baseline,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236045,-173.6965594166206,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236047,-36.177717344043536,peer,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236047,-114.83460684855014,baseline,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236047,-0.6280927327178354,relative_legacy,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236047,-49.24187322690307,spot_peer,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,236047,-132.19280948873626,spot_baseline,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,237476,54.98367524906156,spot_peer,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,237476,45.86477774223218,peer,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,237476,0.5029049397145351,relative_legacy,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,237476,10.327658361208387,baseline,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,237476,13.750352374993504,spot_baseline,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,239758,41.74385322861566,baseline,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,239758,75.94356363578923,peer,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,239758,0.9259480755615952,relative_legacy,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,239758,79.83067504231667,spot_peer,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,239758,48.54268271702416,spot_baseline,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,239759,-173.6965594166206,spot_baseline,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,239759,-78.8818443279956,spot_peer,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,239759,-0.9499938719888162,relative_legacy,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,239759,-58.78701707210018,peer,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,239759,-141.07283995005568,baseline,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,240416,-0.9946427022221483,relative_legacy,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,240416,-78.8818443279956,spot_peer,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,240416,-173.6965594166206,spot_baseline,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,240416,-63.03747359877747,peer,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,240416,-153.39900420878055,baseline,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,246118,22.17329083078831,spot_peer,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,246118,18.541976302736696,peer,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,246118,-22.064683815720866,baseline,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,246118,0.1278332493934426,relative_legacy,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,246118,-32.19280948873623,spot_baseline,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,247214,8.198099188012584,peer,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,247214,-12.960246201544267,baseline,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,247214,-0.0053754998466054,relative_legacy,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,247214,20.877295088263324,spot_peer,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,247214,-34.007544159762176,spot_baseline,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,250015,-16.024473046333043,peer,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,250015,-85.64325900210275,baseline,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,250015,-100.0,spot_baseline,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,250015,-0.3523830206129164,relative_legacy,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,250015,-26.25132551574204,spot_peer,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264059,79.83067504231667,spot_peer,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264059,48.54268271702416,spot_baseline,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264059,24.4576756151504,baseline,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264059,0.4592584438109202,relative_legacy,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264059,41.48137145027639,peer,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264225,-32.19280948873623,spot_baseline,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264225,-21.52007524066632,baseline,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264225,17.952822159401727,peer,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264225,0.120812023701552,relative_legacy,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264225,22.17329083078831,spot_peer,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264332,-49.24187322690307,spot_peer,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264332,-81.77665151585221,baseline,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264332,-27.99895345194561,peer,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264332,-132.19280948873626,spot_baseline,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264332,-0.5184974476483111,relative_legacy,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264891,-0.1332306653863297,relative_legacy,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264891,-0.1737921394694472,peer,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264891,-61.40175661450852,baseline,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264891,-7.466680270304264,spot_peer,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,264891,-73.69655941662059,spot_baseline,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,265212,-94.11976359143178,baseline,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,265212,-132.19280948873626,spot_baseline,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,265212,-49.24187322690307,spot_peer,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,265212,-0.5719051552088226,relative_legacy,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,265212,-31.50306444147663,peer,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,265835,-51.281048766072914,baseline,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,265835,-1.7699908453826505,peer,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,265835,-0.1566299999684775,relative_legacy,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,265835,-7.466680270304264,spot_peer,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,265835,-73.69655941662059,spot_baseline,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,266158,-87.0196106367641,baseline,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,266158,-100.0,spot_baseline,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,266158,-26.25132551574204,spot_peer,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,266158,-0.3479521580165,relative_legacy,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35364,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 04:57:12.972337+00,266158,-16.02960756884457,peer,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35930 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,187708,62.52573985406356,peer,twsummerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,187708,91.3798964950696,spot_baseline,twsummerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,187708,98.63770049627747,spot_peer,twsummerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,187708,1.0605808276745785,relative_legacy,twsummerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,187708,58.70962380571375,baseline,twsummerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,189869,0.239488362606717,relative_legacy,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,189869,10.388049787413976,spot_peer,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,189869,-29.367957604020667,baseline,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,189869,4.012654071635255,peer,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,191026,1.0156525869339603,relative_legacy,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,191026,58.496250072115615,spot_baseline,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,191026,48.66970627243016,baseline,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,191026,58.96125588453528,peer,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,191026,75.15379045517373,spot_peer,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,191935,3.4635119402100214,spot_peer,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,191935,-41.88898247744503,spot_baseline,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,191935,-24.25324350490231,baseline,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,191935,1.51161197608631,peer,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,191935,0.1841622458177679,relative_legacy,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,192075,-38.03656655911636,spot_peer,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,192075,-0.1854102469930247,relative_legacy,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,192075,-28.251157022392672,peer,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,192075,-100.0,spot_baseline,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,192075,-70.54459572500653,baseline,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,192418,0.9916386360136932,relative_legacy,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,192418,68.04543399894236,spot_peer,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,192418,48.54268271702416,spot_baseline,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,192418,45.47413685550784,baseline,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,192418,60.895992020662206,peer,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,192924,-100.0,spot_baseline,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,192924,-38.03656655911636,spot_peer,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,192924,-37.72277986341053,baseline,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,192924,-14.34845027069509,peer,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,192924,-0.0992238898777119,relative_legacy,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,204737,-0.4300377585607808,relative_legacy,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,204737,-96.27443540138854,baseline,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,204737,-45.23568418140368,peer,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,204737,-51.20727756316512,spot_peer,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,204737,-118.44245711374276,spot_baseline,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,218666,-0.0494304748117712,relative_legacy,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,218666,-17.459177934721694,peer,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,218666,-54.17044344056136,baseline,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,218666,-24.53668497785046,spot_peer,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,218666,-81.09661756099828,spot_baseline,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,220077,-132.19280948873626,spot_baseline,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,220077,-61.02711427027738,spot_peer,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,220077,-0.7014673167666929,relative_legacy,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,220077,-130.4585595020068,baseline,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,220077,-65.71036706694373,peer,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,222631,-51.94794665989746,baseline,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,222631,-73.69655941662059,spot_baseline,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,222631,-14.952439322364096,peer,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,222631,-19.251921313678587,spot_peer,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,222631,0.0,relative_legacy,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,224797,88.04938700195011,spot_peer,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,224797,63.6196118824121,baseline,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,224797,69.68808667697371,peer,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,224797,76.55347463629771,spot_baseline,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,224797,1.1654057673054226,relative_legacy,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,227188,-31.1147636373835,baseline,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,227188,-51.45731728297583,spot_baseline,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,227188,-3.36973005874897,spot_peer,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,227188,0.134474317550913,relative_legacy,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,227188,-2.6671463845761147,peer,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236037,0.2465828109023518,relative_legacy,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236037,10.388049787413976,spot_peer,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236037,-32.19280948873623,spot_baseline,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236037,-28.11731417461652,baseline,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236037,4.015864930644074,peer,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236038,12.189680146647389,baseline,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236038,13.750352374993504,spot_baseline,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236038,43.19843420568725,spot_peer,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236038,0.6466847523982077,relative_legacy,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236038,33.219811627551124,peer,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236040,-0.3606466968115437,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236040,-38.03656655911636,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236040,-100.0,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236040,-88.55211945733092,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236040,-39.46861548683911,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236041,68.04543399894236,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236041,55.42710041847939,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236041,42.99016679700084,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236041,48.54268271702416,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236041,0.954789489926438,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236043,52.16324274401272,spot_peer,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236043,41.12975987837419,peer,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236043,23.243092508948685,baseline,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236043,26.303440583379377,spot_baseline,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236043,0.7575940812066633,relative_legacy,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236045,-51.45731728297583,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236045,-6.799510147648397,peer,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236045,-42.92687597891616,baseline,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236045,-3.36973005874897,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236045,0.0999018880053167,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236047,68.04543399894236,spot_peer,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236047,41.46298195122319,baseline,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236047,53.90594514313434,peer,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,236047,0.9385205617580438,relative_legacy,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,237476,-71.97619835497571,peer,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,237476,-0.7898066201394055,relative_legacy,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,237476,-90.66708537136992,spot_peer,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,237476,-173.6965594166206,spot_baseline,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,237476,-132.906808886123,baseline,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,239758,22.486518562574656,baseline,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,239758,52.16324274401272,spot_peer,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,239758,0.7485651704805305,relative_legacy,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,239758,40.26890453819903,peer,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,239758,26.303440583379377,spot_baseline,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,239759,0.9281498112979694,relative_legacy,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,239759,48.54268271702416,spot_baseline,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,239759,68.04543399894236,spot_peer,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,239759,52.34260685117432,peer,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,239759,39.64765406593838,baseline,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,240416,81.8032138451053,spot_peer,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,240416,59.57833838406346,baseline,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,240416,67.2348414521279,peer,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,240416,1.122188964074874,relative_legacy,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,240416,67.80719051126377,spot_baseline,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,246118,-50.5354633385762,baseline,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,246118,0.0,relative_legacy,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,246118,-19.251921313678587,spot_peer,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,246118,-73.69655941662059,spot_baseline,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,246118,-14.36719574709024,peer,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,247214,-1.6184646147143642,spot_peer,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,247214,-49.00508536956894,spot_baseline,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,247214,0.0950919598501514,relative_legacy,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,247214,-0.6324216692718425,peer,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,247214,-18.87286924035516,baseline,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,250015,-35.80304464494443,peer,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,250015,-38.03656655911636,spot_peer,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,250015,-100.0,spot_baseline,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,250015,-0.3037794502451028,relative_legacy,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,250015,-83.30857810977778,baseline,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264059,-173.6965594166206,spot_baseline,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264059,-86.23267531433171,baseline,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264059,-90.66708537136992,spot_peer,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264059,-0.4964558630519443,relative_legacy,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264059,-45.17935483460171,peer,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264225,0.2775561815776193,relative_legacy,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264225,5.909077973493412,peer,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264225,-21.52893001590243,baseline,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264225,-32.19280948873623,spot_baseline,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264225,10.388049787413976,spot_peer,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264332,-90.66708537136992,spot_peer,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264332,-0.5976077755292257,relative_legacy,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264332,-103.8024144900466,baseline,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264332,-54.80639712980931,peer,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264332,-173.6965594166206,spot_baseline,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264891,-143.6586719927657,baseline,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264891,-173.6965594166206,spot_baseline,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264891,-90.66708537136992,spot_peer,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264891,-0.9063299010822864,relative_legacy,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,264891,-79.14858456517702,peer,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,265212,-51.465512013328265,baseline,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,265212,-73.69655941662059,spot_baseline,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,265212,-19.251921313678587,spot_peer,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,265212,0.0,relative_legacy,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,265212,-14.743941474458037,peer,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,265835,-63.58249157377148,peer,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,265835,-0.6873221466938655,relative_legacy,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,265835,-173.6965594166206,spot_baseline,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,265835,-119.38549209157024,baseline,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,265835,-90.66708537136992,spot_peer,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,266158,10.388049787413976,spot_peer,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,266158,-27.991214015862685,baseline,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,266158,4.082924514549442,peer,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,266158,0.2483942229515606,relative_legacy,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35365,"Will the Project 2025 Tracker classify at least 120 objectives as ""Done"" on April 1, 2025?",2025-03-08 04:57:13.004059+00,266158,-32.19280948873623,spot_baseline,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35931 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,189869,34.629935182804275,baseline,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,189869,-10.787075858958609,peer,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,189869,-0.2702950238630512,relative_legacy,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,189869,-10.416631401108374,spot_peer,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,191026,22.07833955094884,peer,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,191026,27.626955812498185,spot_peer,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,191026,91.07326619029126,spot_baseline,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,191026,75.79175891632023,baseline,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,191026,0.1911976099390516,relative_legacy,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,191935,49.76713961076258,baseline,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,191935,76.55347463629771,spot_baseline,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,191935,17.248092216467924,spot_peer,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,191935,0.0568592797641054,relative_legacy,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,191935,10.956626881120751,peer,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,192075,60.88092426755239,spot_baseline,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,192075,3.8341826358401767,peer,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,192075,41.187839357745816,baseline,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,192075,-0.0468583459970574,relative_legacy,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,192075,6.04522736305465,spot_peer,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,192418,-10.787075858958609,peer,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,192418,35.113667275651295,baseline,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,192418,-0.2702950238630512,relative_legacy,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,192418,-10.416631401108374,spot_peer,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,192924,-2.914634565951651,spot_baseline,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,192924,-0.2644765188084966,relative_legacy,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,192924,-39.556350366437584,spot_peer,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,192924,-1.089978097652563,baseline,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,192924,-14.79278261026536,peer,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,204737,-61.7856736175041,peer,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,204737,-42.04448640501853,baseline,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,204737,-51.45731728297583,spot_baseline,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,204737,-74.25504976800018,spot_peer,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,204737,-0.9755811812578448,relative_legacy,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,218666,-0.1681564863434689,relative_legacy,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,218666,41.1426245726465,spot_baseline,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,218666,-8.063867756471941,spot_peer,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,218666,-5.344862590266101,peer,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,218666,25.94604091066433,baseline,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,220077,-0.2702950238630512,relative_legacy,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,220077,-10.787075858958609,peer,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,220077,37.14995873344368,baseline,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,220077,-10.416631401108374,spot_peer,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,222631,-13.65485152633134,peer,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,222631,26.303440583379377,spot_baseline,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,222631,-18.67103562994182,spot_peer,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,222631,-0.2954691262634399,relative_legacy,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,222631,18.72566845260377,baseline,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,224797,63.9656880049762,baseline,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,224797,13.4216102437225,peer,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,224797,0.0703629691042622,relative_legacy,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,224797,17.248092216467924,spot_peer,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,224797,76.55347463629771,spot_baseline,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,227188,67.80719051126377,spot_baseline,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,227188,10.9961780916481,spot_peer,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,227188,41.00562982842326,baseline,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,227188,6.40366808710128,peer,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,227188,0.0,relative_legacy,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236037,66.65286720933507,baseline,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236037,0.0712629998923805,relative_legacy,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236037,17.248092216467924,spot_peer,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236037,76.55347463629771,spot_baseline,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236037,13.713084906083251,peer,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236038,-0.0054102608373763,relative_legacy,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236038,10.9961780916481,spot_peer,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236038,8.340365158851743,peer,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236038,59.96245989738846,baseline,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236040,67.5288145347238,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236040,13.867247276186092,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236040,17.248092216467924,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236040,0.0712539050176794,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236041,67.56882723323812,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236041,13.878398183258575,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236041,0.0713034930826706,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236041,17.248092216467924,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236043,74.62243295920395,baseline,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236043,19.06545230917265,peer,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236043,0.1438242980002983,relative_legacy,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236043,23.142553643712628,spot_peer,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236045,8.138015568948147,peer,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236045,67.80719051126377,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236045,10.9961780916481,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236045,-0.0002525945756252,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236045,54.68182626476824,baseline,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236047,8.184320969634257,peer,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236047,57.356067653397815,baseline,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236047,-0.0027182442832133,relative_legacy,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,236047,10.9961780916481,spot_peer,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,237476,-1.102458233692059,relative_legacy,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,237476,-71.0200980954871,peer,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,237476,-57.41712058163556,baseline,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,237476,-73.69655941662059,spot_baseline,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,237476,-90.15183862518614,spot_peer,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,239758,8.193177324706165,peer,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,239758,57.72423095975706,baseline,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,239758,-0.0031824352666558,relative_legacy,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,239758,10.9961780916481,spot_peer,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,239758,67.80719051126377,spot_baseline,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,239759,18.1574574390261,peer,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,239759,69.34429866708199,baseline,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,239759,23.142553643712628,spot_peer,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,239759,0.1377957701072266,relative_legacy,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,240416,28.718235837209814,spot_peer,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,240416,80.82371775367918,baseline,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,240416,23.827037766482604,peer,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,240416,0.211303452288992,relative_legacy,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,246118,-73.69655941662059,spot_baseline,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,246118,-0.9688204697047224,relative_legacy,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,246118,-62.05849537024304,peer,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,246118,-50.45713300602976,baseline,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,246118,-90.15183862518614,spot_peer,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,247214,-0.2018930419359718,relative_legacy,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,247214,37.85116232537298,spot_baseline,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,247214,25.510345548015987,baseline,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,247214,-10.416631401108374,spot_peer,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,247214,-7.288760278514509,peer,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,250015,10.9961780916481,spot_peer,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,250015,54.56846201139635,baseline,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,250015,8.135449669569581,peer,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,250015,-5.006599598328175e-05,relative_legacy,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,250015,67.80719051126377,spot_baseline,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264059,5.42040269477571,peer,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264059,0.0,relative_legacy,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264059,10.9961780916481,spot_peer,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264059,34.437363625092985,baseline,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264059,67.80719051126377,spot_baseline,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264225,45.20605942533402,baseline,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264225,7.074056027530478,peer,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264225,0.0,relative_legacy,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264225,67.80719051126377,spot_baseline,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264225,10.9961780916481,spot_peer,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264332,6.242503953337359,peer,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264332,67.80719051126377,spot_baseline,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264332,10.9961780916481,spot_peer,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264332,0.0,relative_legacy,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264332,39.9592136708856,baseline,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264891,76.55347463629771,spot_baseline,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264891,13.384757106695446,peer,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264891,0.0703629691042622,relative_legacy,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264891,17.248092216467924,spot_peer,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,264891,63.55194137420036,baseline,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,265212,76.55347463629771,spot_baseline,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,265212,54.39518102538942,baseline,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,265212,11.941012198831675,peer,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,265212,0.0621468470949236,relative_legacy,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,265212,17.248092216467924,spot_peer,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,265835,0.1182510080658075,relative_legacy,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,265835,84.79969065549501,spot_baseline,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,265835,23.142553643712628,spot_peer,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,265835,15.831366965346849,peer,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,265835,59.01220431700394,baseline,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,266158,67.80719051126377,spot_baseline,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,266158,58.76169206773506,baseline,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,266158,8.218218748317025,peer,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,266158,-0.0045313249326521,relative_legacy,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35366,"Will the Project 2025 Tracker spreadsheet mark the objective of reducing regulations on cryptocurrencies as complete on April 1, 2025?",2025-03-08 04:57:13.044231+00,266158,10.9961780916481,spot_peer,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35932 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,187708,-16.726407926280164,spot_peer,twsummerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,187708,-0.0567112441973893,relative_legacy,twsummerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,187708,14.101678905073346,baseline,twsummerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,187708,-4.320221594489257,peer,twsummerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,187708,54.59683691052925,spot_baseline,twsummerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,189869,-19.668234634573583,peer,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,189869,-0.2784753563805552,relative_legacy,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,189869,-21.05396595836785,spot_peer,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,189869,44.50732162788098,baseline,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,191026,0.111317978974155,relative_legacy,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,191026,92.2958964236172,spot_baseline,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,191026,10.221182535330168,spot_peer,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,191026,8.176230774651152,peer,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,191026,76.82765918990805,baseline,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,191935,6.628251066872016,peer,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,191935,60.18733177686936,baseline,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,191935,0.1010051435195432,relative_legacy,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,191935,10.438516651597777,spot_peer,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,191935,92.5999418556223,spot_baseline,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,192075,76.55347463629771,spot_baseline,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,192075,-1.0316269691441209,spot_peer,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,192075,-0.0032923351853539,relative_legacy,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,192075,-0.8988044060925826,peer,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,192075,54.17865339028777,baseline,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,192418,67.80719051126377,spot_baseline,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,192418,-7.283541093963949,spot_peer,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,192418,-0.1019307600169235,relative_legacy,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,192418,-6.6993475508677225,peer,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,192418,62.30151721173734,baseline,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,192924,11.518369450412614,spot_peer,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,192924,4.302213538789106,peer,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,192924,94.11063109464314,spot_baseline,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,192924,35.6555353122019,baseline,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,192924,0.0665185011301047,relative_legacy,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,204737,0.1236432808754185,relative_legacy,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,204737,76.77064292173122,baseline,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,204737,8.935228623590481,peer,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,204737,93.80975610740931,spot_baseline,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,204737,11.303301593526037,spot_peer,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,218666,13.644733443194724,spot_peer,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,218666,97.08536543404836,spot_baseline,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,218666,7.9634528459477725,peer,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,218666,0.1185168915643292,relative_legacy,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,218666,57.59768259398416,baseline,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,220077,-0.7825647464897231,peer,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,220077,-1.0316269691441209,spot_peer,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,220077,74.71219623966984,baseline,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,220077,-0.0215695524744831,relative_legacy,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,222631,41.358460648233866,baseline,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,222631,-10.044586708329756,peer,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,222631,-0.1309618884701116,relative_legacy,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,222631,-13.939076086275987,spot_peer,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,224797,-1.2520803865879953,peer,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,224797,-0.0201042867651951,relative_legacy,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,224797,-1.0316269691441209,spot_peer,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,224797,76.55347463629771,spot_baseline,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,224797,64.07764418868372,baseline,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236037,79.1533755217907,baseline,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236037,0.114355007802048,relative_legacy,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236037,8.601239684888384,peer,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236037,10.438516651597777,spot_peer,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236038,-0.101855198482568,relative_legacy,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236038,-7.283541093963949,spot_peer,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236038,-6.815197198412131,peer,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236038,59.8140119172759,baseline,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236040,8.921951711763292,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236040,10.438516651597777,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236040,0.116117035731652,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236040,81.41176400323022,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236041,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236041,0.1161488406777921,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236041,8.924270339480582,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236041,81.42699799777479,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236041,10.438516651597777,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236043,4.862834458100578,spot_peer,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236043,74.38933821956364,baseline,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236043,3.939611515055432,peer,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236043,0.047485529410601,relative_legacy,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236045,13.644733443194724,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236045,0.1453594249326855,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236045,97.08536543404836,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236045,75.08884820580057,baseline,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236045,10.30450815594554,peer,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236047,56.92343176580339,baseline,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236047,-0.0937558364451043,relative_legacy,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236047,-7.283541093963949,spot_peer,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,236047,-6.533741779238725,peer,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,237476,53.74102653531286,baseline,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,237476,-7.283541093963949,spot_peer,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,237476,67.80719051126377,spot_baseline,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,237476,-0.0827574724237886,relative_legacy,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,237476,-6.111330466527214,peer,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,239758,80.09652024581366,baseline,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,239758,10.223938993402609,peer,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,239758,0.1393868750785215,relative_legacy,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,239758,12.587031863453351,spot_peer,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,239758,95.60566524124027,spot_baseline,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,239759,76.43475241381037,baseline,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,239759,10.438516651597777,spot_peer,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,239759,0.1137640611774716,relative_legacy,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,239759,8.29085194152124,peer,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,240416,80.28156868198705,baseline,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,240416,8.750874730787693,peer,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,240416,10.438516651597777,spot_peer,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,240416,0.1152577110525139,relative_legacy,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,246118,58.06521362056333,baseline,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,246118,0.0531722923403803,relative_legacy,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,246118,84.79969065549501,spot_baseline,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,246118,3.168268375264144,peer,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,246118,4.862834458100578,spot_peer,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,247214,-0.0032923351853539,relative_legacy,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,247214,-1.0316269691441209,spot_peer,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,247214,76.55347463629771,spot_baseline,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,247214,-0.8393500618194107,peer,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,247214,49.80441459863472,baseline,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,250015,60.76072729307048,baseline,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,250015,-1.0316269691441209,spot_peer,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,250015,-0.013623811278593,relative_legacy,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,250015,-1.138270285198458,peer,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264059,-3.7656196596224913,peer,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264059,-0.0441733575363792,relative_legacy,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264059,-7.283541093963949,spot_peer,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264059,34.24621504597897,baseline,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264059,67.80719051126377,spot_baseline,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264225,0.0516092470374066,relative_legacy,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264225,3.0740274087052626,peer,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264225,56.45786113471858,baseline,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264225,84.79969065549501,spot_baseline,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264225,4.862834458100578,spot_peer,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264332,-7.824898589698134,peer,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264332,-0.0999183930379006,relative_legacy,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264332,32.368492096746074,baseline,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264332,-13.939076086275987,spot_peer,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264332,58.496250072115615,spot_baseline,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264891,-6.420079448834249,peer,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264891,-0.0909180341557161,relative_legacy,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264891,-7.283541093963949,spot_peer,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264891,67.80719051126377,spot_baseline,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,264891,55.99747050585475,baseline,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,265212,-0.201884615287454,relative_legacy,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,265212,-15.129998256907976,peer,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,265212,34.41602818952593,baseline,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,265212,48.54268271702416,spot_baseline,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,265212,-21.05396595836785,spot_peer,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,265835,-0.0638577201184262,relative_legacy,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,265835,-5.219984448309525,peer,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,265835,46.95443843163429,baseline,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,265835,67.80719051126377,spot_baseline,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,265835,-7.283541093963949,spot_peer,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,266158,58.742908779676135,baseline,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,266158,67.80719051126377,spot_baseline,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,266158,-0.0995275233212532,relative_legacy,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,266158,-6.7406094846657325,peer,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35367,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 04:57:13.23194+00,266158,-7.283541093963949,spot_peer,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35933 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,189869,-67.67924266993901,baseline,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,189869,-49.05927946283313,peer,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,189869,-73.69655941662059,spot_baseline,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,189869,-51.89575932845384,spot_peer,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,189869,-0.9413523180116228,relative_legacy,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,191026,35.65835291155718,spot_peer,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,191026,29.03325610527077,peer,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,191026,40.416759243523686,baseline,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,191026,48.54268271702416,spot_baseline,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,191026,0.13733658500219,relative_legacy,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,191935,20.163386116965043,spot_baseline,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,191935,-0.0068143694949522,relative_legacy,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,191935,15.606719691078656,peer,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,191935,22.020416454680472,baseline,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,191935,15.331622506131591,spot_peer,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,192075,-13.12216888523016,baseline,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,192075,-0.3700966043756813,relative_legacy,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,192075,-12.908688777168818,spot_peer,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,192075,-9.804299705653648,peer,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,192075,-19.26450779423959,spot_baseline,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,192418,-35.96685574630384,spot_peer,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,192418,-33.52587615442352,peer,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,192418,-46.8336879041686,baseline,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,192418,-0.7335038548872357,relative_legacy,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,192924,25.07455537133275,baseline,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,192924,67.80719051126377,spot_baseline,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,192924,49.456596816091206,spot_peer,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,192924,0.1107749903496663,relative_legacy,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,192924,18.28865295837259,peer,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,204737,-15.200309344505014,spot_baseline,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,204737,-0.3856530634391591,relative_legacy,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,204737,-9.093590697011267,peer,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,204737,-12.449026355489591,baseline,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,204737,-9.99769815727687,spot_peer,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,218666,-42.04704074867362,spot_peer,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,218666,-16.749370683531797,peer,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,218666,-0.3872532178469521,relative_legacy,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,218666,-23.94735085142008,baseline,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,218666,-59.94620704162715,spot_baseline,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,220077,36.69257761207744,baseline,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,220077,26.940306521876707,peer,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,220077,28.000529122339277,spot_peer,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,220077,0.0830462955487011,relative_legacy,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,222631,28.000529122339277,spot_peer,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,222631,18.766237194869998,peer,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,222631,26.71992646850342,baseline,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,222631,0.0202351113859687,relative_legacy,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236037,26.303440583379377,spot_baseline,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236037,-0.0479849317046636,relative_legacy,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236037,15.773883348654524,peer,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236037,21.98593917688765,baseline,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236037,19.72944932940716,spot_peer,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236038,42.63063433866915,baseline,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236038,30.89894183634289,peer,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236038,0.1448259773344166,relative_legacy,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236038,35.65835291155718,spot_peer,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236040,37.094946202245545,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236040,42.78761629854218,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236040,0.2317250076648805,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236040,51.24056732657713,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236041,33.16682117141206,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236041,28.000529122339277,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236041,0.0508820440779716,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236041,24.00129675682644,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236043,42.38842369805661,baseline,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236043,0.1441705179897952,relative_legacy,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236043,35.65835291155718,spot_peer,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236043,30.68707881834184,peer,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236045,-0.4868044184920862,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236045,-22.168611841769817,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236045,-32.19280948873623,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236045,-24.348074055049644,baseline,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236045,-17.753942996001346,peer,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236047,-18.807073739040277,baseline,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236047,-0.3901377566461323,relative_legacy,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236047,-13.102429597466925,peer,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,236047,-22.168611841769817,spot_peer,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,237476,-58.26393799068737,peer,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,237476,-1.0640072635193143,relative_legacy,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,237476,-70.73565353049581,spot_peer,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,237476,-100.0,spot_baseline,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,237476,-80.72799619701173,baseline,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,239758,0.4361449397648803,relative_legacy,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,239758,61.62751050058416,spot_peer,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,239758,70.10675175332199,baseline,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,239758,50.41071966032769,peer,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,239759,-110.44260359504412,baseline,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,239759,-93.79382049963088,spot_peer,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,239759,-1.3720172221741365,relative_legacy,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,239759,-132.19280948873626,spot_baseline,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,239759,-79.76943141960713,peer,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,240416,19.72944932940716,spot_peer,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,240416,22.595260768172377,baseline,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,240416,16.330987818666,peer,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,240416,-0.0478292145938328,relative_legacy,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,240416,26.303440583379377,spot_baseline,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,246118,67.80719051126377,spot_baseline,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,246118,49.456596816091206,spot_peer,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,246118,0.2245820802067815,relative_legacy,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,246118,46.54572816359023,baseline,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,246118,32.998806919849585,peer,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,247214,28.000529122339277,spot_peer,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,247214,17.919140036838062,peer,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,247214,0.0189512121103217,relative_legacy,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,247214,25.47057617345356,baseline,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,247214,37.85116232537298,spot_baseline,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,250015,25.86652787099589,baseline,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,250015,18.16643151491885,peer,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,250015,0.0189686916198724,relative_legacy,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,250015,28.000529122339277,spot_peer,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264059,34.38976196276647,baseline,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264059,67.80719051126377,spot_baseline,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264059,25.17337531753997,peer,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264059,49.456596816091206,spot_peer,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264059,0.1677919530025022,relative_legacy,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264225,55.72114107045614,spot_peer,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264225,51.06116613849272,baseline,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264225,36.306463500847606,peer,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264225,0.2770956279243303,relative_legacy,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264225,76.55347463629771,spot_baseline,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264332,-237.0442378153528,spot_peer,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264332,-183.7121098691744,baseline,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264332,-332.1928094887361,spot_baseline,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264332,-2.027497623159979,relative_legacy,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264332,-131.06556167480926,peer,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264891,40.44887685198664,peer,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264891,0.2966218396563294,relative_legacy,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264891,49.456596816091206,spot_peer,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264891,67.80719051126377,spot_baseline,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,264891,56.274840961188445,baseline,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,265212,29.65341540447581,peer,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,265212,0.169037960485839,relative_legacy,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,265212,42.78761629854218,spot_peer,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,265212,58.496250072115615,spot_baseline,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,265212,41.850628711035306,baseline,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,265835,26.303440583379377,spot_baseline,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,265835,18.34824296209839,baseline,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,265835,19.72944932940716,spot_peer,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,265835,-0.0603172420254278,relative_legacy,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,265835,12.75280082322794,peer,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,266158,-123.52096798631489,spot_peer,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,266158,-173.6965594166206,spot_baseline,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,266158,-1.7847547652856055,relative_legacy,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,266158,-109.06461690053293,peer,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35368,"Will the Project 2025 Tracker spreadsheet mark the objective of expelling transgender people who are currently in the military as complete on April 1, 2025?",2025-03-08 04:57:13.264143+00,266158,-150.76584533063283,baseline,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35934 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,189869,-51.45731728297583,spot_baseline,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,189869,-47.581520599153706,baseline,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,189869,53.25288701224211,peer,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,189869,0.9735969399717492,relative_legacy,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,189869,54.52892692900274,spot_peer,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,191026,-51.45731728297583,spot_baseline,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,191026,48.57610637228638,peer,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,191026,-42.85314356296489,baseline,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,191026,0.9060947624161824,relative_legacy,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,191026,54.52892692900274,spot_peer,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,191935,-68.96598793878492,spot_baseline,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,191935,-42.96858928161631,baseline,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,191935,0.5252086851531697,relative_legacy,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,191935,26.31647116004753,peer,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,191935,42.013588550437696,spot_peer,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,192075,-59.36091767095122,baseline,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,192075,-86.24964762500649,spot_baseline,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,192075,21.9332667010141,peer,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,192075,0.4929447049957483,relative_legacy,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,192075,29.65908981976118,spot_peer,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,192418,0.2425166492005143,relative_legacy,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,192418,-3.181451201837737,spot_peer,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,192418,-132.19280948873626,spot_baseline,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,192418,-119.11664730732068,baseline,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,192418,-0.2426817721896559,peer,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,192924,-47.60593942387206,spot_peer,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,192924,-194.3416471633633,spot_baseline,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,192924,-0.145435584688381,relative_legacy,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,192924,-17.266495198054074,peer,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,192924,-72.28283864572134,baseline,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,204737,-19.192140988631174,peer,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,204737,-165.2901329377731,spot_baseline,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,204737,-0.0414012775251044,relative_legacy,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,204737,-135.2081338402776,baseline,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,204737,-26.839683773142603,spot_peer,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,218666,0.2488877449149095,relative_legacy,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,218666,15.620459342538846,spot_peer,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,218666,-105.88936890535685,spot_baseline,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,218666,-54.67806915515465,baseline,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,218666,8.933775790082993,peer,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,220077,31.07870435246995,peer,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,220077,-83.65012677171204,spot_baseline,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,220077,31.51724819972487,spot_peer,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,220077,0.6759166665503231,relative_legacy,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,220077,-80.57569544074616,baseline,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,222631,47.95327780977413,baseline,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,222631,67.80719051126377,spot_baseline,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,222631,139.780154788651,spot_peer,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,222631,100.6876190597828,peer,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,222631,1.5977626725323075,relative_legacy,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,224797,48.54268271702416,spot_baseline,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,224797,109.3182623084411,peer,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,224797,1.7531616881989498,relative_legacy,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,224797,40.73770721385971,baseline,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,224797,126.00972992424708,spot_peer,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,227188,0.5925478401000924,relative_legacy,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,227188,37.77466295940475,peer,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,227188,67.80719051126377,spot_baseline,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,227188,18.324445066325687,baseline,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,227188,139.780154788651,spot_peer,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236037,-146.14305719232635,spot_peer,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236037,-1.411244983208662,relative_legacy,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236037,-117.71770658074672,peer,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236037,-332.1928094887361,spot_baseline,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236037,-272.7012314794508,baseline,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236038,-152.34789742904152,baseline,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236038,-32.848664923427606,spot_peer,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236038,-0.1134035905046262,relative_legacy,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236038,-173.6965594166206,spot_baseline,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236038,-25.62219092860075,peer,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236040,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236040,-25.420173661605176,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236040,-151.7228784198124,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236040,-0.1119376028838582,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236040,-32.848664923427606,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236041,-82.54557133944347,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236041,-264.3856189774725,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236041,-97.67393292636,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236041,-0.9036457159055844,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236041,-230.8508206889093,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236043,-232.1928094887363,spot_baseline,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236043,-74.6622541970821,spot_peer,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236043,-0.621429397992465,relative_legacy,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236043,-62.10303979747415,peer,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236043,-202.22761335812177,baseline,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236045,-173.6965594166206,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236045,-0.1087693430770927,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236045,-21.07962956397088,peer,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236045,-32.848664923427606,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236045,-118.86511137270256,baseline,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236047,-173.6965594166206,spot_baseline,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236047,-32.848664923427606,spot_peer,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236047,-0.110551433202138,relative_legacy,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236047,-24.55547654179726,peer,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,236047,-144.33948784193157,baseline,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,237476,-109.03641512269718,baseline,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,237476,-132.19280948873626,spot_baseline,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,237476,-3.181451201837737,spot_peer,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,237476,0.2317833824196606,relative_legacy,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,237476,0.2717458759787657,peer,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,239758,-140.02506294422182,baseline,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,239758,-23.866524204563824,peer,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,239758,-0.1102735854021141,relative_legacy,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,239758,-32.848664923427606,spot_peer,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,239758,-173.6965594166206,spot_baseline,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,239759,1.6740105350811454,relative_legacy,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,239759,37.85116232537298,spot_baseline,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,239759,118.36734529589454,spot_peer,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,239759,103.55487742816506,peer,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,239759,31.94860538548832,baseline,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,240416,-197.79396054088312,baseline,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,240416,-232.1928094887363,spot_baseline,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,240416,-74.6622541970821,spot_peer,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,240416,-0.6101448368271125,relative_legacy,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,240416,-60.91623047135279,peer,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,246118,-0.5100635943684521,relative_legacy,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,246118,-232.1928094887363,spot_baseline,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,246118,-74.6622541970821,spot_peer,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,246118,-49.87261456543273,peer,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,246118,-159.30630040137927,baseline,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,247214,-90.31949302053276,baseline,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,247214,0.5279115274401713,relative_legacy,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,247214,-100.5782352594006,spot_baseline,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,247214,19.41690032081898,spot_peer,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,247214,20.53580023151944,peer,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,250015,-173.6965594166206,spot_baseline,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,250015,-32.848664923427606,spot_peer,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,250015,-0.1101530109039943,relative_legacy,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,250015,-21.909835497544563,peer,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,250015,-124.49838551062638,baseline,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264059,-173.6965594166206,spot_baseline,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264059,-87.56172471465787,baseline,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264059,-32.848664923427606,spot_peer,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264059,-0.0980425881084977,relative_legacy,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264059,-15.732862690359152,peer,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264225,126.00972992424708,spot_peer,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264225,48.54268271702416,spot_baseline,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264225,85.1205106059845,peer,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264225,32.236908962218955,baseline,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264225,1.3671538734559432,relative_legacy,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264332,-77.83182523936576,baseline,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264332,-7.860238529907719,peer,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264332,-16.951876066241578,spot_peer,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264332,-151.4573172829758,spot_baseline,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264332,0.0140670820029352,relative_legacy,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264891,-0.1101662555833144,relative_legacy,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264891,-24.303464925908,peer,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264891,-143.10869672759563,baseline,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264891,-173.6965594166206,spot_baseline,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,264891,-32.848664923427606,spot_peer,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,265212,-0.6008966945443361,peer,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,265212,-132.19280948873626,spot_baseline,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,265212,-3.181451201837737,spot_peer,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,265212,0.1867062472495558,relative_legacy,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,265212,-94.55208126072152,baseline,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,265835,-173.6965594166206,spot_baseline,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,265835,-32.848664923427606,spot_peer,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,265835,-0.1089045864946813,relative_legacy,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,265835,-120.25875183051969,baseline,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,265835,-21.29250013735177,peer,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,266158,-32.848664923427606,spot_peer,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,266158,-150.4093030868117,baseline,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,266158,-173.6965594166206,spot_baseline,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,266158,-25.25441576794148,peer,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35369,"Will the Cleveland Cavaliers have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.29547+00,266158,-0.1119015243653982,relative_legacy,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35935 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,189869,-0.0144375481428635,relative_legacy,VeritasAI,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,189869,25.91502599452619,spot_peer,VeritasAI,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,189869,53.926464830242935,baseline,VeritasAI,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,189869,21.55404366926129,peer,VeritasAI,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,191026,-0.9227178883725043,relative_legacy,manticAI,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,191026,-44.885040127094825,peer,manticAI,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,191026,-42.8633602851303,baseline,manticAI,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,191026,-51.45731728297583,spot_baseline,manticAI,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,191026,-52.68066687281003,spot_peer,manticAI,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,191935,-73.69655941662063,spot_baseline,pgodzinai,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,191935,-45.89369651514932,baseline,pgodzinai,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,191935,-42.435763918833885,peer,pgodzinai,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,191935,-0.8161274129495747,relative_legacy,pgodzinai,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,191935,-68.57745572999603,spot_peer,pgodzinai,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,192075,56.0714954474479,spot_baseline,CumulativeBot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,192075,16.969166650676556,peer,CumulativeBot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,192075,39.62315029921183,baseline,CumulativeBot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,192075,24.18179191814939,spot_peer,CumulativeBot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,192075,-0.0248708509525209,relative_legacy,CumulativeBot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,192418,64.15460290875237,spot_baseline,InstitutPelFutur,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,192418,29.95966203845833,spot_peer,InstitutPelFutur,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,192418,24.91779914875316,peer,InstitutPelFutur,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,192418,57.12987747448599,baseline,InstitutPelFutur,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,192418,0.0359502634260498,relative_legacy,InstitutPelFutur,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,192924,72.2466024471091,spot_baseline,acm_bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,192924,0.0502709459729742,relative_legacy,acm_bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,192924,35.743888286847195,spot_peer,acm_bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,192924,13.067876574566515,peer,acm_bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,192924,26.413177999384143,baseline,acm_bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,204737,-3.579558948732439,baseline,SynapseSeer,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,204737,-4.3943347587597055,spot_baseline,SynapseSeer,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,204737,-19.03966905098883,spot_peer,SynapseSeer,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,204737,-0.5178616281930765,relative_legacy,SynapseSeer,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,204737,-16.23414973508369,peer,SynapseSeer,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,218666,-0.7074920681270982,relative_legacy,GreeneiBot2,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,218666,-88.8968687611256,spot_baseline,GreeneiBot2,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,218666,-79.44275890720938,spot_peer,GreeneiBot2,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,218666,-38.013767456417504,peer,GreeneiBot2,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,218666,-42.67080446339513,baseline,GreeneiBot2,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,220077,38.82247511165807,spot_peer,mmBot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,220077,33.88935937468085,peer,mmBot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,220077,73.29102702078598,baseline,mmBot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,220077,0.1525784873089653,relative_legacy,mmBot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,222631,-98.77607919985348,peer,Grizeu_Bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,222631,-1.6400793847531476,relative_legacy,Grizeu_Bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,222631,-140.05825872524042,spot_peer,Grizeu_Bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,222631,-122.11075419262184,baseline,Grizeu_Bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,222631,-173.6965594166206,spot_baseline,Grizeu_Bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,224797,-51.45731728297583,spot_baseline,cookics_bot_TEST,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,224797,-52.68066687281003,spot_peer,cookics_bot_TEST,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,224797,-43.25737094824649,baseline,cookics_bot_TEST,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,224797,-45.44956297033316,peer,cookics_bot_TEST,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,224797,-0.932519724082822,relative_legacy,cookics_bot_TEST,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,227188,-0.2392172290122561,peer,ProfessorSP,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,227188,21.412480535284736,spot_baseline,ProfessorSP,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,227188,-0.5927502513063331,spot_peer,ProfessorSP,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,227188,12.671978736133292,baseline,ProfessorSP,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,227188,-0.2185258617115199,relative_legacy,ProfessorSP,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236037,47.44748219406244,baseline,metac-o1,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236037,25.91502599452619,spot_peer,metac-o1,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236037,-0.0077436169085368,relative_legacy,metac-o1,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236037,20.473724694202605,peer,metac-o1,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236037,58.496250072115615,spot_baseline,metac-o1,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236038,25.91502599452619,spot_peer,metac-gpt-4o,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236038,51.17194929952016,baseline,metac-gpt-4o,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236038,21.188357133725606,peer,metac-gpt-4o,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236038,58.496250072115615,spot_baseline,metac-gpt-4o,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236038,-0.0135361819870173,relative_legacy,metac-gpt-4o,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236040,32.503781782713766,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236040,66.64527457907937,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236040,0.1436442662450406,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236040,38.82247511165807,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236041,32.50105563097639,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236041,66.627621353366,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236041,38.82247511165807,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236041,0.1436263541060609,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236043,66.43337351048356,baseline,metac-grok-2-1212,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236043,0.1436030761522205,relative_legacy,metac-grok-2-1212,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236043,32.46992120899808,peer,metac-grok-2-1212,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236043,38.82247511165807,spot_peer,metac-grok-2-1212,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236043,76.55347463629771,spot_baseline,metac-grok-2-1212,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236045,-0.0077362237831842,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236045,41.60213938802669,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236045,18.29051189404558,peer,metac-Gemini-Exp-1206,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236045,25.91502599452619,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236045,58.496250072115615,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236047,26.538428339284096,peer,metac-Llama-3.1,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236047,0.0706621838887441,relative_legacy,metac-Llama-3.1,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236047,32.570560986838224,spot_peer,metac-Llama-3.1,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,236047,56.55319329402033,baseline,metac-Llama-3.1,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,237476,64.14843588656456,baseline,NextWorldLab,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,237476,31.867919178956036,peer,NextWorldLab,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,237476,0.1435974549335838,relative_legacy,NextWorldLab,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,237476,38.82247511165807,spot_peer,NextWorldLab,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,239758,50.29261873239996,spot_peer,metac-perplexity,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,239758,0.2685225533060629,relative_legacy,metac-perplexity,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,239758,75.0151260408127,baseline,metac-perplexity,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,239758,40.29030892151757,peer,metac-perplexity,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,239759,-1.1606026395475049,relative_legacy,metac-exa,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,239759,-61.51650921016356,peer,metac-exa,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,239759,-68.57745572999603,spot_peer,metac-exa,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,239759,-73.69655941662063,spot_baseline,metac-exa,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,239759,-63.97229702947419,baseline,metac-exa,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,240416,71.61468047696215,baseline,metac-o1-preview,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,240416,44.71693653890277,spot_peer,metac-o1-preview,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,240416,0.2132276464930164,relative_legacy,metac-o1-preview,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,240416,37.00917642707638,peer,metac-o1-preview,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,246118,52.53480066021707,baseline,laylaps,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,246118,26.608637938425662,peer,laylaps,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,246118,0.1161816235819265,relative_legacy,laylaps,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,246118,38.82247511165807,spot_peer,laylaps,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,246118,76.55347463629771,spot_baseline,laylaps,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,247214,12.703173798461991,baseline,ajf-bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,247214,-8.886537011600263,peer,ajf-bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,247214,-0.4276240816246773,relative_legacy,ajf-bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,247214,-6.069700986807243,spot_peer,ajf-bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,247214,13.750352374993504,spot_baseline,ajf-bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,250015,0.1161203237329965,relative_legacy,metac-deepseek-r1,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,250015,52.52881199742591,baseline,metac-deepseek-r1,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,250015,26.60427750708289,peer,metac-deepseek-r1,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,250015,38.82247511165807,spot_peer,metac-deepseek-r1,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264059,19.73601264274949,peer,wunderplumb,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264059,38.82247511165807,spot_peer,wunderplumb,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264059,76.55347463629771,spot_baseline,wunderplumb,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264059,0.0913419252281913,relative_legacy,wunderplumb,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264059,38.72434399501903,baseline,wunderplumb,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264225,-132.19280948873623,spot_baseline,KevinTestBot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264225,-110.39104500365048,spot_peer,KevinTestBot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264225,-87.93311319445301,baseline,KevinTestBot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264225,-73.4856512209182,peer,KevinTestBot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264225,-1.272435764271736,relative_legacy,KevinTestBot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264332,32.357450683806,baseline,krm-bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264332,25.91502599452619,spot_peer,krm-bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264332,14.426800243579402,peer,krm-bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264332,0.0,relative_legacy,krm-bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264332,58.496250072115615,spot_baseline,krm-bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264891,-181.87184799889485,spot_peer,swingswish,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264891,-232.19280948873623,spot_baseline,swingswish,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264891,-2.41085794673804,relative_legacy,swingswish,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264891,-151.91933738170144,peer,swingswish,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,264891,-192.0698803424641,baseline,swingswish,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,265212,84.79969065549501,spot_baseline,4Shadower,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,265212,0.1779953343622985,relative_legacy,4Shadower,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,265212,44.71693653890277,spot_peer,4Shadower,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,265212,31.48837080784551,peer,4Shadower,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,265212,59.878017196169125,baseline,4Shadower,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,265835,53.2627574748047,baseline,jonahsingerbot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,265835,0.1178985141825946,relative_legacy,jonahsingerbot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,265835,38.82247511165807,spot_peer,jonahsingerbot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,265835,76.55347463629771,spot_baseline,jonahsingerbot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,265835,26.94975538841539,peer,jonahsingerbot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,266158,0.1436262534844881,relative_legacy,bean_bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,266158,66.59949869053567,baseline,bean_bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,266158,76.55347463629771,spot_baseline,bean_bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,266158,38.82247511165807,spot_peer,bean_bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35370,"Will the Oklahoma City Thunder have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.325843+00,266158,32.49633030347988,peer,bean_bot,True,yes,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35936 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,189869,9.324790515432635,peer,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,189869,62.33557001834389,baseline,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,189869,-0.1192840113472503,relative_legacy,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,189869,9.242650727792029,spot_peer,VeritasAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,191026,50.58909297299573,spot_baseline,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,191026,-3.0649836530663674,spot_peer,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,191026,-0.2580500265702433,relative_legacy,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,191026,-0.4902262559101223,peer,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,191026,42.14942095609669,baseline,manticAI,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,191935,31.21788857217758,spot_peer,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,191935,60.32163865409981,baseline,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,191935,19.490409919652823,peer,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,191935,0.0860735080533475,relative_legacy,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,191935,98.5500430304885,spot_baseline,pgodzinai,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,192075,68.07542072220396,baseline,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,192075,21.73653384867449,peer,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,192075,0.0856317111004278,relative_legacy,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,192075,29.64343050869001,spot_peer,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,192075,96.3474123974886,spot_baseline,CumulativeBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,192418,-23.9206605103525,spot_peer,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,192418,-0.5231396483717646,relative_legacy,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,192418,-19.53873392557316,peer,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,192418,18.858121667029422,baseline,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,192418,21.412480535284764,spot_baseline,InstitutPelFutur,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,192924,30.4872513533939,baseline,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,192924,7.654915624319155,peer,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,192924,0.0,relative_legacy,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,192924,21.389026279856573,spot_peer,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,204737,80.04911531151329,baseline,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,204737,27.266274531492734,peer,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,204737,0.1288432573192362,relative_legacy,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,204737,31.00934451728589,spot_peer,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,204737,98.25829469225908,spot_baseline,SynapseSeer,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,218666,13.06517412411774,peer,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,218666,29.64343050869001,spot_peer,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,218666,96.3474123974886,spot_baseline,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,218666,42.48074322326127,baseline,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,218666,0.050915306382228,relative_legacy,GreeneiBot2,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,220077,98.5500430304885,spot_baseline,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,220077,31.21788857217758,spot_peer,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,220077,0.1633369350931443,relative_legacy,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,220077,30.464974118936663,peer,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,220077,93.86006698630548,baseline,mmBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,222631,41.25317885337052,baseline,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,222631,-0.181459265323073,relative_legacy,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,222631,2.5517667916724696,peer,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,222631,2.5871157354799896,spot_peer,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,224797,-51.45731728297583,spot_baseline,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,224797,-76.00857713185623,spot_peer,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,224797,-43.32273930921681,baseline,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,224797,-62.33284769945368,peer,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,224797,-1.118493839200376,relative_legacy,cookics_bot_TEST,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,227188,37.85116232537298,spot_baseline,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,227188,-0.1232690507764735,relative_legacy,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,227188,-12.170158764964436,spot_peer,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,227188,9.938281383021188,baseline,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,227188,-3.195422672692426,peer,ProfessorSP,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236037,72.40078996673502,baseline,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236037,22.62509089524113,peer,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236037,0.0712390312585099,relative_legacy,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236037,26.96470847335375,spot_peer,metac-o1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236038,59.18910208798143,baseline,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236038,9.99390612472559,peer,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236038,-0.1149495316304986,relative_legacy,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236038,9.242650727792029,spot_peer,metac-gpt-4o,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236040,15.49456485261186,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236040,66.47853950832175,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236040,15.476804528838748,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236040,-0.0385601801963493,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236041,-12.170158764964436,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236041,-0.3742213341747732,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236041,-8.736676907953193,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236041,32.81343033765423,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236043,9.99934766134568,peer,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236043,58.61243965974027,baseline,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236043,9.242650727792029,spot_peer,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236043,-0.1144632892002533,relative_legacy,metac-grok-2-1212,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236045,73.11832415721999,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236045,-0.0747844295417844,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236045,9.374908570626207,peer,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236045,49.17037391896476,baseline,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236045,13.03909170607215,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236047,-91.90536598904222,spot_peer,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236047,-73.69655941662059,spot_baseline,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236047,-1.288899815991822,relative_legacy,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236047,-74.6389320076106,peer,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,236047,-61.124823966372944,baseline,metac-Llama-3.1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,237476,-1.1296510243384037,relative_legacy,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,237476,-51.45731728297583,spot_baseline,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,237476,-76.00857713185623,spot_peer,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,237476,-43.804122099663466,baseline,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,237476,-63.11291395316971,peer,NextWorldLab,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,239758,0.0124977801613103,relative_legacy,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,239758,67.4235812668485,baseline,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,239758,21.389026279856573,spot_peer,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,239758,18.68697589761522,peer,metac-perplexity,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,239759,83.35273626674743,baseline,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,239759,27.48031718329424,peer,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,239759,0.1273936409797691,relative_legacy,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,239759,29.11322368520933,spot_peer,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,239759,95.60566524124027,spot_baseline,metac-exa,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,240416,0.0931880952120337,relative_legacy,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,240416,26.96470847335375,spot_peer,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,240416,24.8413200784876,peer,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,240416,77.60565357341153,baseline,metac-o1-preview,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,246118,0.0574243251450451,relative_legacy,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,246118,19.179395273110124,peer,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,246118,63.540812229040384,baseline,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,246118,92.5999418556223,spot_baseline,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,246118,26.96470847335375,spot_peer,laylaps,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,247214,5.394795567881604,spot_peer,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,247214,62.424129607252354,spot_baseline,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,247214,55.556891632225486,baseline,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,247214,6.466614749062469,peer,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,247214,-0.1624469249357967,relative_legacy,ajf-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,250015,9.242650727792029,spot_peer,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,250015,67.80719051126377,spot_baseline,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,250015,42.66873680020728,baseline,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,250015,6.245289488122988,peer,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,250015,-0.1030243825771456,relative_legacy,metac-deepseek-r1,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264059,42.6695188730692,baseline,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264059,0.0,relative_legacy,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264059,21.389026279856573,spot_peer,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264059,10.840509741570948,peer,wunderplumb,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264225,-0.7721104781488226,relative_legacy,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264225,-21.353471109835333,baseline,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264225,-32.19280948873623,spot_baseline,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264225,-62.23815226745232,spot_peer,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264225,-40.80066740646265,peer,KevinTestBot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264332,40.29219364983511,baseline,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264332,8.280365296784577,peer,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264332,15.49456485261186,spot_peer,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264332,-0.0414933200041979,relative_legacy,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264332,76.55347463629771,spot_baseline,krm-bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264891,-109.1099616070975,peer,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264891,-133.7189552626967,spot_peer,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264891,-132.19280948873626,spot_baseline,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264891,-1.7680657187258002,relative_legacy,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,264891,-109.20841397846463,baseline,swingswish,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,265212,0.0587773399245818,relative_legacy,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,265212,26.96470847335375,spot_peer,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,265212,19.73361655727101,peer,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,265212,65.14703088406078,baseline,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,265212,92.5999418556223,spot_baseline,4Shadower,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,265835,0.0039000694150137,relative_legacy,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,265835,84.79969065549501,spot_baseline,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,265835,21.389026279856573,spot_peer,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,265835,59.09864801758897,baseline,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,265835,15.621180362256204,peer,jonahsingerbot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,266158,80.57463159117732,baseline,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,266158,92.5999418556223,spot_baseline,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,266158,25.55590055327125,peer,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,266158,0.1007718585722626,relative_legacy,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35371,"Will the Boston Celtics have the highest winning percentage in the NBA on April 1, 2025?",2025-03-08 04:57:13.356215+00,266158,26.96470847335375,spot_peer,bean_bot,True,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,0.85,2025-03-14 23:00:00+00,35937 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,187708,12.697285625776551,spot_baseline,twsummerbot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,187708,2.027971493676525,baseline,twsummerbot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,187708,-4.358390073762042,peer,twsummerbot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,187708,-0.0572511681811676,relative_legacy,twsummerbot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,187708,-27.28821574053793,spot_peer,twsummerbot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,189869,2.7559593600218717,peer,VeritasAI,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,189869,52.63294020701182,baseline,VeritasAI,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,189869,58.496250072115615,spot_baseline,VeritasAI,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,189869,5.449251809211711,spot_peer,VeritasAI,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,189869,0.0537531437130383,relative_legacy,VeritasAI,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,191026,23.791807473808444,spot_peer,manticAI,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,191026,47.972944271141714,baseline,manticAI,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,191026,12.772174283681244,peer,manticAI,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,191026,0.187279410050271,relative_legacy,manticAI,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,191026,84.1570637395517,spot_baseline,manticAI,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,191935,33.13840981199553,baseline,pgodzinai,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,191935,6.997329401327444,peer,pgodzinai,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,191935,0.1091761864062415,relative_legacy,pgodzinai,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,191935,16.520599011013203,spot_peer,pgodzinai,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,191935,73.98481026993274,spot_baseline,pgodzinai,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,191975,-22.67128536845523,spot_peer,jkraybill_bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,191975,19.156265070075563,spot_baseline,jkraybill_bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,191975,-0.0766008274818418,relative_legacy,jkraybill_bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,191975,-6.005106239252502,peer,jkraybill_bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,191975,4.993414894794637,baseline,jkraybill_bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,192075,-0.0011889954313405,relative_legacy,CumulativeBot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,192075,0.1596308254955691,spot_peer,CumulativeBot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,192075,-0.9675661252518728,peer,CumulativeBot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,192075,51.09619192773795,spot_baseline,CumulativeBot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,192075,33.421642659924856,baseline,CumulativeBot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,192418,71.53239602837003,baseline,InstitutPelFutur,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,192418,14.93217169905216,peer,InstitutPelFutur,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,192418,0.2162259209627764,relative_legacy,InstitutPelFutur,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,192418,18.356700926343567,spot_peer,InstitutPelFutur,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,192924,-39.268587477020255,peer,acm_bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,192924,-6.5091963069251575,baseline,acm_bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,192924,-7.400058144377692,spot_baseline,acm_bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,192924,-41.6539584481589,spot_peer,acm_bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,192924,-0.5258801479641193,relative_legacy,acm_bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,204737,-8.50485025824606,peer,SynapseSeer,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,204737,28.764512529228035,baseline,SynapseSeer,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,204737,37.85116232537298,spot_baseline,SynapseSeer,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,204737,-9.30802269123273,spot_peer,SynapseSeer,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,204737,-0.09914016929102,relative_legacy,SynapseSeer,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,218666,5.5232720074306565,peer,GreeneiBot2,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,218666,66.90267655096306,spot_baseline,GreeneiBot2,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,218666,11.45823295949671,spot_peer,GreeneiBot2,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,218666,0.0861847515290367,relative_legacy,GreeneiBot2,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,218666,36.48768608884079,baseline,GreeneiBot2,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,220077,72.89982173235542,baseline,mmBot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,220077,14.93217169905216,peer,mmBot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,220077,0.2162259209627764,relative_legacy,mmBot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,220077,18.356700926343567,spot_peer,mmBot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,224797,-1.6656380628801712,spot_peer,cookics_bot_TEST,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,224797,37.84643457596668,baseline,cookics_bot_TEST,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,224797,-2.797530346130298,peer,cookics_bot_TEST,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,224797,48.54268271702416,spot_baseline,cookics_bot_TEST,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,224797,-0.0208519813042191,relative_legacy,cookics_bot_TEST,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,227188,-17.56242692006618,spot_peer,ProfessorSP,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,227188,26.303440583379377,spot_baseline,ProfessorSP,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,227188,11.930122255352424,baseline,ProfessorSP,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,227188,-8.401111781417944,peer,ProfessorSP,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,227188,-0.1056754954372681,relative_legacy,ProfessorSP,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236037,18.356700926343567,spot_peer,metac-o1,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236037,65.26324651938252,baseline,metac-o1,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236037,13.743532240357125,peer,metac-o1,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236037,0.2034631289782177,relative_legacy,metac-o1,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236037,76.55347463629771,spot_baseline,metac-o1,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236038,8.397835592384475,peer,metac-gpt-4o,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236038,12.10478680152373,spot_peer,metac-gpt-4o,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236038,58.12401238054267,baseline,metac-gpt-4o,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236038,0.1289233692929143,relative_legacy,metac-gpt-4o,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236040,18.356700926343567,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236040,0.2038517212115317,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236040,13.810330145376811,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236040,65.59700953281585,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236041,0.2036904149969785,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236041,18.356700926343567,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236041,65.46048558963503,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236041,13.77943050632351,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236043,58.00124864585868,baseline,metac-grok-2-1212,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236043,8.381254438681333,peer,metac-grok-2-1212,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236043,0.1289272519010091,relative_legacy,metac-grok-2-1212,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236043,12.10478680152373,spot_peer,metac-grok-2-1212,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236045,12.10478680152373,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236045,67.80719051126377,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236045,56.5012974052332,baseline,metac-Gemini-Exp-1206,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236045,0.1293268382965131,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236045,8.269938391131301,peer,metac-Gemini-Exp-1206,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236047,41.1498916112313,baseline,metac-Llama-3.1,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236047,-3.4491958637236597,peer,metac-Llama-3.1,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236047,-1.6656380628801712,spot_peer,metac-Llama-3.1,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,236047,-0.0339374032033132,relative_legacy,metac-Llama-3.1,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,237476,58.496250072115615,spot_baseline,NextWorldLab,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,237476,5.449251809211711,spot_peer,NextWorldLab,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,237476,0.0563080156395835,relative_legacy,NextWorldLab,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,237476,2.7824180550308197,peer,NextWorldLab,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,237476,45.88524079632006,baseline,NextWorldLab,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,239759,67.80719051126377,spot_baseline,metac-exa,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,239759,0.1291291846804108,relative_legacy,metac-exa,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,239759,8.348964247711725,peer,metac-exa,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,239759,57.64429870865665,baseline,metac-exa,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,239759,12.10478680152373,spot_peer,metac-exa,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,240416,0.2034868093367075,relative_legacy,metac-o1-preview,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,240416,65.19109059391957,baseline,metac-o1-preview,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,240416,18.356700926343567,spot_peer,metac-o1-preview,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,240416,13.734037932640632,peer,metac-o1-preview,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,246118,-0.0141741059201861,relative_legacy,laylaps,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,246118,-1.6656380628801712,spot_peer,laylaps,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,246118,26.904606521721064,baseline,laylaps,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,246118,-1.7012782503156,peer,laylaps,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,247214,-11.426059667803791,peer,ajf-bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,247214,34.916198045780284,baseline,ajf-bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,247214,-0.1407875809903823,relative_legacy,ajf-bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,247214,37.85116232537298,spot_baseline,ajf-bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,247214,-9.30802269123273,spot_peer,ajf-bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,250015,0.1293032151917068,relative_legacy,metac-deepseek-r1,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,250015,67.80719051126377,spot_baseline,metac-deepseek-r1,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,250015,12.10478680152373,spot_peer,metac-deepseek-r1,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,250015,8.29481736913042,peer,metac-deepseek-r1,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,250015,56.87062735315048,baseline,metac-deepseek-r1,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264059,48.54268271702416,spot_baseline,wunderplumb,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264059,-0.0047812119112325,relative_legacy,wunderplumb,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264059,21.96644940335289,baseline,wunderplumb,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264059,-1.175481306910131,peer,wunderplumb,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264059,-1.6656380628801712,spot_peer,wunderplumb,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264225,58.496250072115615,spot_baseline,KevinTestBot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264225,2.2094173421686927,peer,KevinTestBot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264225,30.917922852893124,baseline,KevinTestBot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264225,0.0403374003762838,relative_legacy,KevinTestBot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264225,5.449251809211711,spot_peer,KevinTestBot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264332,-15.200309344505014,spot_baseline,krm-bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264332,-7.2034849381352295,baseline,krm-bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264332,-22.88895898099293,peer,krm-bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264332,-0.3089134232208869,relative_legacy,krm-bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264332,-47.2296406416561,spot_peer,krm-bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264891,-47.4082737504548,peer,swingswish,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264891,-0.6395867627526426,relative_legacy,swingswish,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264891,-59.37601619372062,spot_peer,swingswish,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264891,-32.19280948873623,spot_baseline,swingswish,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,264891,-24.754050490362136,baseline,swingswish,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,265212,5.449251809211711,spot_peer,4Shadower,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,265212,35.51265356342273,baseline,4Shadower,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,265212,2.3792088150930226,peer,4Shadower,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,265212,0.0437362264258704,relative_legacy,4Shadower,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,265212,58.496250072115615,spot_baseline,4Shadower,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,265835,48.54268271702416,spot_baseline,jonahsingerbot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,265835,0.0,relative_legacy,jonahsingerbot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,265835,-0.3531626824993335,peer,jonahsingerbot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,265835,9.430940627024938,baseline,jonahsingerbot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,265835,-1.6656380628801712,spot_peer,jonahsingerbot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,266158,48.54268271702416,spot_baseline,bean_bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,266158,-0.0317475817669357,relative_legacy,bean_bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,266158,-3.3387107228144,peer,bean_bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,266158,40.591906621877264,baseline,bean_bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35397,"Will PEPFAR funding be resumed before April 7, 2025?",2025-03-10 14:59:36.387102+00,266158,-1.6656380628801712,spot_peer,bean_bot,True,no,2025-03-12 17:00:00+00,2025-03-12 17:00:00+00,1.0,2025-03-12 17:00:00+00,35966 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,187708,-20.493923245306288,spot_peer,twsummerbot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,187708,-33.45986956099611,spot_baseline,twsummerbot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,187708,-19.381346382732463,baseline,twsummerbot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,187708,-10.984608108532507,peer,twsummerbot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,187708,-0.3744485824230387,relative_legacy,twsummerbot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,189869,-5.889151782819132,spot_baseline,VeritasAI,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,189869,7.818309749268823,peer,VeritasAI,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,189869,8.027508939014728,spot_peer,VeritasAI,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,189869,-4.960987674316328,baseline,VeritasAI,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,189869,0.143539471440924,relative_legacy,VeritasAI,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,191026,20.93796320909401,spot_peer,manticAI,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,191026,0.4561798498034678,relative_legacy,manticAI,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,191026,19.071883721366,peer,manticAI,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,191026,5.810068364376225,baseline,manticAI,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,191026,6.590954011590847,spot_baseline,manticAI,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,192075,6.1600220785937205,peer,CumulativeBot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,192075,-3.8459974728506334,baseline,CumulativeBot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,192075,-5.889151782819132,spot_baseline,CumulativeBot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,192075,8.027508939014728,spot_peer,CumulativeBot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,192075,0.099168946996561,relative_legacy,CumulativeBot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,192418,4.807207982921298,baseline,InstitutPelFutur,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,192418,5.268025782891358,spot_baseline,InstitutPelFutur,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,192418,19.56941676561178,spot_peer,InstitutPelFutur,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,192418,0.4181089318109556,relative_legacy,InstitutPelFutur,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,192418,17.55065881507363,peer,InstitutPelFutur,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,192924,0.3863649086466639,relative_legacy,acm_bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,192924,3.818649380405733,spot_baseline,acm_bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,192924,3.34438418878399,baseline,acm_bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,192924,16.54061751589341,peer,acm_bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,192924,18.070061866488725,spot_peer,acm_bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,218666,34.44952344415155,spot_peer,GreeneiBot2,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,218666,19.6521289054798,spot_baseline,GreeneiBot2,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,218666,0.3649271720139692,relative_legacy,GreeneiBot2,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,218666,15.61262724380705,peer,GreeneiBot2,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,218666,8.606090330876677,baseline,GreeneiBot2,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,220077,26.9030992001558,peer,mmBot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,220077,0.666682363817013,relative_legacy,mmBot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,220077,14.616097671011287,baseline,mmBot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,220077,14.708746574081196,spot_baseline,mmBot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,220077,29.335679653049542,spot_peer,mmBot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,222631,28.768207245178136,spot_baseline,Grizeu_Bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,222631,0.0959560999611421,relative_legacy,Grizeu_Bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,222631,43.879949312805,spot_peer,Grizeu_Bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,222631,4.369316113806627,peer,Grizeu_Bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,222631,2.8645746736312776,baseline,Grizeu_Bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,224797,-4.5606495209203,baseline,cookics_bot_TEST,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,224797,8.027508939014728,spot_peer,cookics_bot_TEST,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,224797,-5.889151782819132,spot_baseline,cookics_bot_TEST,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,224797,0.1217582917462258,relative_legacy,cookics_bot_TEST,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,224797,7.156567148057921,peer,cookics_bot_TEST,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236037,-12.94482359244129,spot_peer,metac-o1,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236037,-26.16240656322661,spot_baseline,metac-o1,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236037,-10.09460658920272,peer,metac-o1,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236037,-22.23212750329159,baseline,metac-o1,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236037,-0.3514686174343495,relative_legacy,metac-o1,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236038,8.027508939014728,spot_peer,metac-gpt-4o,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236038,-5.889151782819132,spot_baseline,metac-gpt-4o,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236038,-5.0492556316535255,baseline,metac-gpt-4o,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236038,0.1471507044008261,relative_legacy,metac-gpt-4o,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236038,7.924578424413255,peer,metac-gpt-4o,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236040,-40.54651081081639,spot_baseline,metac-claude-3-5-sonnet-latest,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236040,-27.824931434775547,spot_peer,metac-claude-3-5-sonnet-latest,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236040,-0.7105540420638815,relative_legacy,metac-claude-3-5-sonnet-latest,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236040,-23.134974124559296,peer,metac-claude-3-5-sonnet-latest,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236040,-34.78724383204617,baseline,metac-claude-3-5-sonnet-latest,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236041,-10.220684346672504,peer,metac-claude-3-5-sonnet-20240620,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236041,-0.3540174186253718,relative_legacy,metac-claude-3-5-sonnet-20240620,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236041,-26.16240843822678,spot_baseline,metac-claude-3-5-sonnet-20240620,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236041,-12.944825532096628,spot_peer,metac-claude-3-5-sonnet-20240620,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236041,-22.42826603623336,baseline,metac-claude-3-5-sonnet-20240620,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236043,-60.819767466226125,spot_baseline,metac-grok-2-1212,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236043,-48.797265905889056,spot_peer,metac-grok-2-1212,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236043,-1.2091468928843736,relative_legacy,metac-grok-2-1212,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236043,-41.16025292936841,peer,metac-grok-2-1212,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236043,-52.052132294266045,baseline,metac-grok-2-1212,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236045,-26.16240656322661,spot_baseline,metac-Gemini-Exp-1206,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236045,-9.804057456660516,peer,metac-Gemini-Exp-1206,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236045,-21.69544349216605,baseline,metac-Gemini-Exp-1206,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236045,-0.3442452791985387,relative_legacy,metac-Gemini-Exp-1206,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236045,-12.94482359244129,spot_peer,metac-Gemini-Exp-1206,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236047,-26.16240656322661,spot_baseline,metac-Llama-3.1,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236047,-12.94482359244129,spot_peer,metac-Llama-3.1,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236047,-0.34490762020474,relative_legacy,metac-Llama-3.1,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236047,-9.831691319548607,peer,metac-Llama-3.1,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,236047,-21.75660372343333,baseline,metac-Llama-3.1,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,237476,7.140771553159572,peer,NextWorldLab,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,237476,8.027508939014728,spot_peer,NextWorldLab,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,237476,-4.550484054886755,baseline,NextWorldLab,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,237476,0.1213218391801662,relative_legacy,NextWorldLab,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,237476,-5.889151782819132,spot_baseline,NextWorldLab,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,239759,-26.16240656322661,spot_baseline,metac-exa,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,239759,-21.718819138104863,baseline,metac-exa,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,239759,-9.813567301682928,peer,metac-exa,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,239759,-0.3444500599659698,relative_legacy,metac-exa,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,239759,-12.94482359244129,spot_peer,metac-exa,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,240416,-4.998502514732088,baseline,metac-o1-preview,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,240416,8.027508939014728,spot_peer,metac-o1-preview,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,240416,7.863127506471885,peer,metac-o1-preview,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,240416,-5.889151782819132,spot_baseline,metac-o1-preview,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,240416,0.1449420231141451,relative_legacy,metac-o1-preview,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,246118,5.298030423245437,peer,laylaps,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,246118,-5.889151782819132,spot_baseline,laylaps,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,246118,8.027508939014728,spot_peer,laylaps,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,246118,0.0778994153443337,relative_legacy,laylaps,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,246118,-3.2533770952939096,baseline,laylaps,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,247214,-8.305478787330971,peer,ajf-bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,247214,-0.3028031136627752,relative_legacy,ajf-bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,247214,-24.442335852361055,spot_baseline,ajf-bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,247214,-20.24905787707252,baseline,ajf-bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,247214,-11.16544009844244,spot_peer,ajf-bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,250015,7.230218724948459,peer,metac-deepseek-r1,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,250015,-4.601845299273291,baseline,metac-deepseek-r1,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,250015,8.027508939014728,spot_peer,metac-deepseek-r1,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,250015,-5.889151782819132,spot_baseline,metac-deepseek-r1,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,250015,0.1240106833893246,relative_legacy,metac-deepseek-r1,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264059,-5.889151782819132,spot_baseline,wunderplumb,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264059,4.162582279317531,peer,wunderplumb,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264059,-2.6502781157985,baseline,wunderplumb,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264059,0.0456786237008422,relative_legacy,wunderplumb,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264059,8.027508939014728,spot_peer,wunderplumb,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264225,-3.0862342401784257,baseline,KevinTestBot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264225,-5.889151782819132,spot_baseline,KevinTestBot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264225,8.027508939014728,spot_peer,KevinTestBot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264225,0.0681973254948806,relative_legacy,KevinTestBot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264225,4.975518465006803,peer,KevinTestBot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264332,-5.430794976034783,peer,krm-bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264332,-12.94482359244129,spot_peer,krm-bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264332,-26.16240656322661,spot_baseline,krm-bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264332,-12.164692893405917,baseline,krm-bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264332,-0.2214136713694354,relative_legacy,krm-bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264891,8.027508939014728,spot_peer,swingswish,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264891,0.1207011735807994,relative_legacy,swingswish,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264891,-5.889151782819132,spot_baseline,swingswish,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264891,7.115844539427942,peer,swingswish,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,264891,-4.533498288640378,baseline,swingswish,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,265212,-12.944825532096628,spot_peer,4Shadower,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,265212,-6.893604992104043,peer,4Shadower,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,265212,-26.16240843822678,spot_baseline,4Shadower,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,265212,-15.746755563105316,baseline,4Shadower,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,265212,-0.261052517495737,relative_legacy,4Shadower,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,265835,-1.0432430589202255,relative_legacy,jonahsingerbot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,265835,-42.30727381012018,baseline,jonahsingerbot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,265835,-75.20386983881366,spot_baseline,jonahsingerbot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,265835,-63.67737180856582,spot_peer,jonahsingerbot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,265835,-34.99887464227216,peer,jonahsingerbot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,266158,-5.889151782819132,spot_baseline,bean_bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,266158,7.779422071954545,peer,bean_bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,266158,8.027508939014728,spot_peer,bean_bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,266158,-4.930929803771024,baseline,bean_bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35398,[Short fuse] How many visitors will AnimeJapan 2025 have?,2025-03-10 14:59:36.428712+00,266158,0.1424887175193521,relative_legacy,bean_bot,True,152400.0,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35967 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,187708,-5.207012009378033,baseline,twsummerbot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,187708,-12.788069020142336,peer,twsummerbot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,187708,-0.2569615683423875,relative_legacy,twsummerbot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,187708,-35.52952817396452,spot_peer,twsummerbot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,187708,-13.92357973711722,spot_baseline,twsummerbot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,189869,10.344208419762518,peer,VeritasAI,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,189869,9.080855638368597,spot_peer,VeritasAI,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,189869,-0.0551366298560533,relative_legacy,VeritasAI,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,189869,38.39375913490134,baseline,VeritasAI,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,191026,11.671958092784417,peer,manticAI,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,191026,48.54268271702416,spot_baseline,manticAI,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,191026,9.080855638368597,spot_peer,manticAI,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,191026,-0.0551194329609588,relative_legacy,manticAI,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,191026,40.781908468508085,baseline,manticAI,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,191935,0.0486876326921365,relative_legacy,pgodzinai,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,191935,30.291377966000613,baseline,pgodzinai,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,191935,67.80719051126377,spot_baseline,pgodzinai,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,191935,10.826335939188754,peer,pgodzinai,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,191935,22.83863548453155,spot_peer,pgodzinai,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,191975,0.0041063230252404,relative_legacy,jkraybill_bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,191975,1.5341350466235968,peer,jkraybill_bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,191975,5.637901161282873,baseline,jkraybill_bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,191975,56.68963160058486,spot_baseline,jkraybill_bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,191975,14.89901254925972,spot_peer,jkraybill_bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,192075,26.009048801712225,spot_peer,CumulativeBot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,192075,72.2466024471091,spot_baseline,CumulativeBot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,192075,46.772852236187234,baseline,CumulativeBot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,192075,18.539809953217866,peer,CumulativeBot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,192075,0.0983238648108581,relative_legacy,CumulativeBot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,192418,-82.22165321400958,peer,InstitutPelFutur,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,192418,-90.35557264089584,baseline,InstitutPelFutur,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,192418,-1.3455773418254406,relative_legacy,InstitutPelFutur,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,192418,-97.00114491969012,spot_peer,InstitutPelFutur,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,192924,6.175919747612125,baseline,acm_bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,192924,-12.40969146726053,peer,acm_bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,192924,-0.4064238102052568,relative_legacy,acm_bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,192924,-20.559115462723973,spot_peer,acm_bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,192924,7.0389327891398015,spot_baseline,acm_bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,204737,27.02299072379977,spot_baseline,SynapseSeer,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,204737,20.62315139850781,baseline,SynapseSeer,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,204737,-2.0866968141766344,peer,SynapseSeer,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,204737,-0.2193685872147386,relative_legacy,SynapseSeer,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,204737,-6.287467703302475,spot_peer,SynapseSeer,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,218666,1.658963619992393,peer,GreeneiBot2,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,218666,83.18772411916731,spot_baseline,GreeneiBot2,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,218666,4.080263706745756,baseline,GreeneiBot2,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,218666,33.822668793564205,spot_peer,GreeneiBot2,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,218666,0.0129970144449055,relative_legacy,GreeneiBot2,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,220077,-100.0,spot_baseline,mmBot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,220077,-97.00114491969012,spot_peer,mmBot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,220077,-1.3618978896990837,relative_legacy,mmBot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,220077,-98.84620466497208,baseline,mmBot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,220077,-84.03633610181718,peer,mmBot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,222631,-0.0149489264493148,relative_legacy,Grizeu_Bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,222631,1.4454888104093804,spot_peer,Grizeu_Bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,222631,3.877666634064849,baseline,Grizeu_Bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,222631,0.2044313565286132,peer,Grizeu_Bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,224797,26.303440583379377,spot_baseline,cookics_bot_TEST,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,224797,20.408957745700985,baseline,cookics_bot_TEST,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,224797,-2.4229587586523955,peer,cookics_bot_TEST,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,224797,-0.2276919089128802,relative_legacy,cookics_bot_TEST,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,224797,-6.80133561656104,spot_peer,cookics_bot_TEST,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,227188,2.822291449097316,peer,ProfessorSP,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,227188,-0.0039959862109806,relative_legacy,ProfessorSP,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,227188,9.080855638368597,spot_peer,ProfessorSP,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,227188,13.275211721543895,baseline,ProfessorSP,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,227188,48.54268271702416,spot_baseline,ProfessorSP,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236037,-0.723644366858133,relative_legacy,metac-o1,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236037,-26.65020576788432,baseline,metac-o1,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236037,-36.94506183615535,peer,metac-o1,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236037,-48.57652857315978,spot_peer,metac-o1,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236037,-32.19280948873623,spot_baseline,metac-o1,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236038,-0.0538689531572708,relative_legacy,metac-gpt-4o,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236038,41.3564979436965,baseline,metac-gpt-4o,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236038,12.178502930066603,peer,metac-gpt-4o,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236038,9.080855638368597,spot_peer,metac-gpt-4o,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236040,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236040,-0.9067243827852524,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236040,-49.509710719848975,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236040,-44.0095027157207,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236040,-62.334308419322745,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236041,1.4454888104093804,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236041,32.311513004720155,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236041,-0.144425429064897,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236041,5.6740467797905305,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236043,24.026966345456664,peer,metac-grok-2-1212,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236043,57.74365010653256,baseline,metac-grok-2-1212,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236043,22.83863548453155,spot_peer,metac-grok-2-1212,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236043,0.1101393399187165,relative_legacy,metac-grok-2-1212,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236045,9.080855638368597,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236045,39.16648013511411,baseline,metac-Gemini-Exp-1206,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236045,48.54268271702416,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236045,-0.0551371104684601,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236045,10.737973012290777,peer,metac-Gemini-Exp-1206,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236047,11.199056429546305,peer,metac-Llama-3.1,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236047,9.080855638368597,spot_peer,metac-Llama-3.1,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236047,-0.0551366298560533,relative_legacy,metac-Llama-3.1,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,236047,40.00238006543961,baseline,metac-Llama-3.1,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,237476,4.275819738513206,peer,NextWorldLab,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,237476,1.4454888104093804,spot_peer,NextWorldLab,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,237476,-0.1398833045700278,relative_legacy,NextWorldLab,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,237476,30.00284359593154,baseline,NextWorldLab,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,239759,40.66570532806469,baseline,metac-exa,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,239759,11.59090672338312,peer,metac-exa,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,239759,9.080855638368597,spot_peer,metac-exa,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,239759,48.54268271702416,spot_baseline,metac-exa,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,239759,-0.0550879021175179,relative_legacy,metac-exa,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,240416,31.813303971397595,baseline,metac-o1-preview,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,240416,5.192959954912405,peer,metac-o1-preview,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,240416,1.4454888104093804,spot_peer,metac-o1-preview,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,240416,37.85116232537298,spot_baseline,metac-o1-preview,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,240416,-0.1449480681220655,relative_legacy,metac-o1-preview,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,246118,13.578776518498987,peer,laylaps,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,246118,67.80719051126377,spot_baseline,laylaps,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,246118,37.42841828387892,baseline,laylaps,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,246118,0.0512001834404761,relative_legacy,laylaps,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,246118,22.83863548453155,spot_peer,laylaps,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,247214,48.54268271702416,spot_baseline,ajf-bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,247214,44.71657366847008,baseline,ajf-bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,247214,18.645598868732645,peer,ajf-bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,247214,0.0064483661823393,relative_legacy,ajf-bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,247214,9.080855638368597,spot_peer,ajf-bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,250015,1.4454888104093804,spot_peer,metac-deepseek-r1,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,250015,19.36322312351167,baseline,metac-deepseek-r1,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,250015,1.5007638390055211,peer,metac-deepseek-r1,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,250015,-0.1022368533240363,relative_legacy,metac-deepseek-r1,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264059,10.92678476226538,peer,wunderplumb,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264059,67.80719051126377,spot_baseline,wunderplumb,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264059,30.56756328260226,baseline,wunderplumb,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264059,0.0486876326921365,relative_legacy,wunderplumb,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264059,22.83863548453155,spot_peer,wunderplumb,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264225,35.33568658277538,baseline,KevinTestBot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264225,12.741003127584897,peer,KevinTestBot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264225,67.80719051126377,spot_baseline,KevinTestBot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264225,0.0512001834404761,relative_legacy,KevinTestBot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264225,22.83863548453155,spot_peer,KevinTestBot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264332,-0.0877489327080813,relative_legacy,krm-bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264332,17.557018966831226,baseline,krm-bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264332,1.4454888104093804,spot_peer,krm-bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264332,37.85116232537298,spot_baseline,krm-bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264332,1.3061773000608097,peer,krm-bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264891,29.084808641376345,spot_peer,swingswish,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264891,0.1599697434507498,relative_legacy,swingswish,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264891,25.33304936554584,peer,swingswish,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264891,58.78855671237807,baseline,swingswish,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,264891,76.55347463629771,spot_baseline,swingswish,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,265212,29.084808641376345,spot_peer,4Shadower,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,265212,76.55347463629771,spot_baseline,4Shadower,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,265212,0.1148875241681972,relative_legacy,4Shadower,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,265212,46.46758934972304,baseline,4Shadower,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,265212,19.01271919142525,peer,4Shadower,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,265835,13.867596462815664,peer,jonahsingerbot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,265835,67.80719051126377,spot_baseline,jonahsingerbot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,265835,0.0531607933007075,relative_legacy,jonahsingerbot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,265835,22.83863548453155,spot_peer,jonahsingerbot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,265835,38.11851349799453,baseline,jonahsingerbot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,266158,67.80719051126377,spot_baseline,bean_bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,266158,22.83863548453155,spot_peer,bean_bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,266158,0.1053142698489336,relative_legacy,bean_bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,266158,23.029342704972795,peer,bean_bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35399,"Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",2025-03-10 14:59:36.465699+00,266158,56.47548766988452,baseline,bean_bot,True,no,2025-03-13 17:00:00+00,2025-03-13 17:00:00+00,1.0,2025-03-13 17:00:00+00,35968 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,185699,37.9257373911197,baseline,MWG,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,185699,51.97279809039444,spot_baseline,MWG,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,185699,3.5970214762225514,spot_peer,MWG,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,185699,-0.0421419092913192,relative_legacy,MWG,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,185699,3.3824971138326005,peer,MWG,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,187708,0.1661901237624003,relative_legacy,twsummerbot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,187708,17.038695361225315,peer,twsummerbot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,187708,74.2982202286759,spot_baseline,twsummerbot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,187708,28.9415706907356,spot_peer,twsummerbot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,187708,42.8205577229916,baseline,twsummerbot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,189869,38.308692495572906,baseline,VeritasAI,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,189869,-4.959081328422735,peer,VeritasAI,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,189869,-0.1687496499164975,relative_legacy,VeritasAI,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,189869,-7.485016660315888,spot_peer,VeritasAI,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,189869,42.21088922957006,spot_baseline,VeritasAI,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,191026,-45.18040372596367,spot_peer,manticAI,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,191026,-37.14293078075302,peer,manticAI,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,191026,7.700775383825411,baseline,manticAI,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,191026,-0.610684917852698,relative_legacy,manticAI,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,191026,9.005902161794713,spot_baseline,manticAI,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,191935,36.90702464285426,spot_baseline,pgodzinai,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,191935,-13.50613716646006,spot_peer,pgodzinai,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,191935,-0.1954920544226581,relative_legacy,pgodzinai,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,191935,-8.26313220235912,peer,pgodzinai,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,191935,23.87084608355025,baseline,pgodzinai,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,191975,0.0053816674140046,relative_legacy,jkraybill_bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,191975,64.2747618510695,spot_baseline,jkraybill_bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,191975,17.56261299052417,spot_peer,jkraybill_bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,191975,2.908533315557522,baseline,jkraybill_bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,191975,0.7947356554901479,peer,jkraybill_bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,192075,-0.115716715830129,relative_legacy,CumulativeBot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,192075,-3.6574185866798055,spot_peer,CumulativeBot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,192075,45.58253107832961,spot_baseline,CumulativeBot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,192075,35.291669212777144,baseline,CumulativeBot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,192075,-1.782523266341463,peer,CumulativeBot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,192418,16.611514057215505,peer,InstitutPelFutur,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,192418,57.29088386554456,baseline,InstitutPelFutur,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,192418,60.78844916119508,spot_baseline,InstitutPelFutur,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,192418,13.60483682851403,spot_peer,InstitutPelFutur,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,192418,0.111690750993801,relative_legacy,InstitutPelFutur,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,192924,0.4623768389115266,relative_legacy,acm_bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,192924,40.74006624528085,peer,acm_bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,192924,77.9486766053813,baseline,acm_bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,192924,86.27150894903679,spot_baseline,acm_bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,192924,42.53403955216065,spot_peer,acm_bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,218666,53.44749677648407,baseline,GreeneiBot2,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,218666,0.2303013903251628,relative_legacy,GreeneiBot2,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,218666,31.780205696426,spot_peer,GreeneiBot2,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,218666,22.747742699273143,peer,GreeneiBot2,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,218666,76.79870758247155,spot_baseline,GreeneiBot2,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,220077,-0.7300089146585473,relative_legacy,mmBot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,220077,4.417841198868371,baseline,mmBot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,220077,-46.58152218969158,peer,mmBot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,220077,4.441072130058007,spot_baseline,mmBot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,220077,-50.36254804012907,spot_peer,mmBot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,227188,5.333757035581919,spot_peer,ProfessorSP,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,227188,-0.0174901225068313,relative_legacy,ProfessorSP,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,227188,25.317299416799635,baseline,ProfessorSP,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,227188,2.777264268725866,peer,ProfessorSP,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,227188,53.50264792820728,spot_baseline,ProfessorSP,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236037,13.60483682851403,spot_peer,metac-o1,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236037,53.57215493678025,baseline,metac-o1,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236037,13.925717301885914,peer,metac-o1,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236037,0.096968266655785,relative_legacy,metac-o1,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236037,60.78844916119508,spot_baseline,metac-o1,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236038,-1.4031730818016894,peer,metac-gpt-4o,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236038,40.39574410609135,baseline,metac-gpt-4o,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236038,45.58253107832961,spot_baseline,metac-gpt-4o,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236038,-3.6574185866798055,spot_peer,metac-gpt-4o,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236038,-0.1153679129174278,relative_legacy,metac-gpt-4o,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236040,-19.890624669837752,peer,metac-claude-3-5-sonnet-latest,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236040,27.3166972139158,spot_baseline,metac-claude-3-5-sonnet-latest,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236040,-24.3933904511021,spot_peer,metac-claude-3-5-sonnet-latest,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236040,-0.371758071208574,relative_legacy,metac-claude-3-5-sonnet-latest,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236040,24.193962179545856,baseline,metac-claude-3-5-sonnet-latest,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236041,32.71862202029864,baseline,metac-claude-3-5-sonnet-20240620,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236041,36.90702464285428,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236041,-13.506137166460032,spot_peer,metac-claude-3-5-sonnet-20240620,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236041,-0.2373450967067216,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236041,-10.198832665230716,peer,metac-claude-3-5-sonnet-20240620,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236043,44.6171026766079,baseline,metac-grok-2-1212,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236043,3.494039703253652,peer,metac-grok-2-1212,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236043,-0.0475238361840491,relative_legacy,metac-grok-2-1212,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236043,50.41679571033508,spot_baseline,metac-grok-2-1212,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236043,1.830596695761524,spot_peer,metac-grok-2-1212,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236045,4.441072130058027,spot_baseline,metac-Gemini-Exp-1206,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236045,3.84138623550183,baseline,metac-Gemini-Exp-1206,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236045,-42.0304950427619,peer,metac-Gemini-Exp-1206,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236045,-0.678186860872127,relative_legacy,metac-Gemini-Exp-1206,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236045,-50.36254804012905,spot_peer,metac-Gemini-Exp-1206,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236047,-60.10171196596019,peer,metac-Llama-3.1,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236047,-69.7946119620995,spot_peer,metac-Llama-3.1,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236047,-11.181947308896588,baseline,metac-Llama-3.1,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236047,-0.929870999146352,relative_legacy,metac-Llama-3.1,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,236047,-12.67617964681067,spot_baseline,metac-Llama-3.1,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,237476,70.14882601778278,spot_baseline,NextWorldLab,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,237476,59.25489079330568,baseline,NextWorldLab,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,237476,22.15526708993173,peer,NextWorldLab,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,237476,0.2119452272861509,relative_legacy,NextWorldLab,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,237476,24.23104270443292,spot_peer,NextWorldLab,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,239759,9.566715188807962,peer,metac-exa,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,239759,0.0366682824431869,relative_legacy,metac-exa,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,239759,8.722038727290984,spot_peer,metac-exa,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,239759,56.4873062249703,spot_baseline,metac-exa,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,239759,49.67145668467976,baseline,metac-exa,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,240416,8.722038727290984,spot_peer,metac-o1-preview,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,240416,49.66712676370864,baseline,metac-o1-preview,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,240416,9.5651920208191,peer,metac-o1-preview,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,240416,0.0366535064282215,relative_legacy,metac-o1-preview,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,240416,56.4873062249703,spot_baseline,metac-o1-preview,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,246118,0.3332756099105725,relative_legacy,laylaps,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,246118,60.86842863340439,baseline,laylaps,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,246118,30.248162800108837,peer,laylaps,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,246118,85.20688953017238,spot_baseline,laylaps,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,246118,41.325448776630886,spot_peer,laylaps,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,247214,44.78581655622348,spot_peer,ajf-bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,247214,78.4414927296898,baseline,ajf-bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,247214,0.4843728631280661,relative_legacy,ajf-bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,247214,41.94035865699716,peer,ajf-bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,247214,88.25504678005056,spot_baseline,ajf-bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,250015,31.067183343920107,baseline,metac-deepseek-r1,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,250015,36.90702464285426,spot_baseline,metac-deepseek-r1,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,250015,-13.50613716646006,spot_peer,metac-deepseek-r1,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,250015,-0.2327572194094052,relative_legacy,metac-deepseek-r1,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,250015,-9.866001923446404,peer,metac-deepseek-r1,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264059,-0.0229069885918244,relative_legacy,wunderplumb,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264059,53.50264792820728,spot_baseline,wunderplumb,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264059,29.668089329173704,baseline,wunderplumb,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264059,5.333757035581919,spot_peer,wunderplumb,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264059,3.2763521009672765,peer,wunderplumb,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264225,37.91183786877922,baseline,KevinTestBot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264225,55.00720983068243,spot_baseline,KevinTestBot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264225,7.041784903873692,spot_peer,KevinTestBot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264225,-0.0105841511660125,relative_legacy,KevinTestBot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264225,5.430478764251847,peer,KevinTestBot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264332,37.41049879360985,baseline,krm-bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264332,55.99661003574309,spot_baseline,krm-bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264332,8.164984368353764,spot_peer,krm-bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264332,0.0001993182597019,relative_legacy,krm-bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264332,5.988091531709477,peer,krm-bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264891,56.516448113614736,baseline,swingswish,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264891,19.394923468233973,peer,swingswish,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264891,67.53404748720375,spot_baseline,swingswish,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264891,21.26266061773195,spot_peer,swingswish,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,264891,0.1736184393191323,relative_legacy,swingswish,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,265212,-0.0407955682938626,relative_legacy,4Shadower,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,265212,3.5970214762225514,spot_peer,4Shadower,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,265212,51.97279809039444,spot_baseline,4Shadower,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,265212,38.65114372397547,baseline,4Shadower,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,265212,3.525073850069741,peer,4Shadower,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,266158,-36.56430413559506,spot_peer,bean_bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,266158,16.595623285353042,spot_baseline,bean_bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,266158,14.53486175962988,baseline,bean_bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,266158,-30.38285876147428,peer,bean_bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35426,Which party will win the most seats in Curaçao in the March 2025 general election?,2025-03-11 14:35:21.855687+00,266158,-0.5173748022177402,relative_legacy,bean_bot,True,Movement for the Future of Curaçao,2025-03-12 12:00:00+00,2025-03-12 12:00:00+00,1.0,2025-03-12 12:00:00+00,35994 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,185699,-23.190358477116508,spot_baseline,MWG,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,185699,-12.296110967018336,baseline,MWG,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,185699,-13.24459160127184,spot_peer,MWG,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,185699,-0.0575681094396468,relative_legacy,MWG,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,185699,-6.944223457699062,peer,MWG,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,189869,-32.64576557096246,spot_baseline,VeritasAI,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,189869,-30.71583852194535,spot_peer,VeritasAI,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,189869,-14.919690506152664,baseline,VeritasAI,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,189869,-13.093869739071264,peer,VeritasAI,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,189869,-0.1266045569459368,relative_legacy,VeritasAI,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,191026,-29.934965586066166,baseline,manticAI,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,191026,-104.43405768552805,spot_peer,manticAI,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,191026,-72.54193186005755,spot_baseline,manticAI,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,191026,-42.13850225873367,peer,manticAI,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,191026,-0.5308418033175906,relative_legacy,manticAI,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,191935,5.675803902749198,baseline,pgodzinai,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,191935,0.4069238769023596,relative_legacy,pgodzinai,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,191935,28.48582065014294,peer,pgodzinai,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,191935,10.175559829607293,spot_baseline,pgodzinai,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,191935,48.407349101651526,spot_peer,pgodzinai,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,191975,41.93032567768799,spot_baseline,jkraybill_bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,191975,8.432552558363094,peer,jkraybill_bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,191975,0.1300106738669094,relative_legacy,jkraybill_bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,191975,107.08227970311412,spot_peer,jkraybill_bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,191975,3.3019438514634363,baseline,jkraybill_bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,192075,0.938023133407645,spot_baseline,CumulativeBot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,192075,11.70589744718853,peer,CumulativeBot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,192075,0.324764828835606,baseline,CumulativeBot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,192075,0.2084660400240323,relative_legacy,CumulativeBot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,192075,31.338672633651765,spot_peer,CumulativeBot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,192418,-10.237366049635654,peer,InstitutPelFutur,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,192418,-13.52211842147065,baseline,InstitutPelFutur,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,192418,-28.509720893846865,spot_baseline,InstitutPelFutur,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,192418,-23.073453893592827,spot_peer,InstitutPelFutur,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,192418,-0.0813911149786403,relative_legacy,InstitutPelFutur,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,192924,18.740135380061638,spot_peer,acm_bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,192924,-5.880282340755185,spot_baseline,acm_bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,192924,0.1861750292610358,relative_legacy,acm_bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,192924,9.498743997280592,peer,acm_bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,192924,-2.649172425413596,baseline,acm_bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,218666,5.296453315758154,baseline,GreeneiBot2,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,218666,10.175559829607293,spot_baseline,GreeneiBot2,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,218666,26.305195272478727,peer,GreeneiBot2,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,218666,0.3926866640449765,relative_legacy,GreeneiBot2,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,218666,48.407349101651526,spot_peer,GreeneiBot2,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,220077,0.5523714389796522,relative_legacy,mmBot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,220077,22.62943855309168,spot_baseline,mmBot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,220077,71.41902783092941,spot_peer,mmBot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,220077,11.243912876055854,baseline,mmBot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,220077,36.65206342742623,peer,mmBot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,224797,-82.86723621655248,spot_peer,cookics_bot_TEST,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,224797,-0.4053133481976307,relative_legacy,cookics_bot_TEST,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,224797,-33.14620375198812,peer,cookics_bot_TEST,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,224797,-25.073130723199792,baseline,cookics_bot_TEST,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,224797,-60.87000726100898,spot_baseline,cookics_bot_TEST,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,227188,-5.452864264967227,peer,ProfessorSP,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,227188,-7.494530959847819,baseline,ProfessorSP,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,227188,-28.509720893846865,spot_baseline,ProfessorSP,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,227188,-23.073453893592827,spot_peer,ProfessorSP,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,227188,-0.0368970731522983,relative_legacy,ProfessorSP,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236037,0.2946774570828618,relative_legacy,metac-o1,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236037,1.8832578915490397,baseline,metac-o1,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236037,4.2952774888520935,spot_baseline,metac-o1,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236037,37.5420459244382,spot_peer,metac-o1,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236037,17.470531296746362,peer,metac-o1,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236038,12.195605988670597,peer,metac-gpt-4o,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236038,-2.2783188938771195,spot_baseline,metac-gpt-4o,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236038,25.39567037237365,spot_peer,metac-gpt-4o,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236038,0.221597639600089,relative_legacy,metac-gpt-4o,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236038,-1.006229911852961,baseline,metac-gpt-4o,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236040,0.0387850892742435,relative_legacy,metac-claude-3-5-sonnet-latest,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236040,-0.9385033387170832,peer,metac-claude-3-5-sonnet-latest,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236040,-8.096860020672421,baseline,metac-claude-3-5-sonnet-latest,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236040,-18.33416106423959,spot_baseline,metac-claude-3-5-sonnet-latest,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236040,-4.2715433492162544,spot_peer,metac-claude-3-5-sonnet-latest,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236041,-0.158641263064153,relative_legacy,metac-claude-3-5-sonnet-20240620,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236041,-15.72844132775712,baseline,metac-claude-3-5-sonnet-20240620,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236041,-35.6442372006009,spot_baseline,metac-claude-3-5-sonnet-20240620,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236041,-15.117885540477848,peer,metac-claude-3-5-sonnet-20240620,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236041,-36.2562703305497,spot_peer,metac-claude-3-5-sonnet-20240620,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236043,-31.963052927568185,spot_baseline,metac-grok-2-1212,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236043,-12.083952984911129,peer,metac-grok-2-1212,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236043,-14.080650099776143,baseline,metac-grok-2-1212,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236043,-0.1165179089986754,relative_legacy,metac-grok-2-1212,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236043,-29.4543549020206,spot_peer,metac-grok-2-1212,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236045,-13.866892491186018,spot_baseline,metac-Gemini-Exp-1206,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236045,-5.979763383365815,baseline,metac-Gemini-Exp-1206,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236045,3.9828608796172,spot_peer,metac-Gemini-Exp-1206,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236045,0.0918327943942666,relative_legacy,metac-Gemini-Exp-1206,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236045,2.704021869732581,peer,metac-Gemini-Exp-1206,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236047,-39.63785883481759,spot_baseline,metac-Llama-3.1,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236047,-43.63549250328466,spot_peer,metac-Llama-3.1,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236047,-0.1946777768612595,relative_legacy,metac-Llama-3.1,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236047,-17.872737855910877,peer,metac-Llama-3.1,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,236047,-17.063995940478407,baseline,metac-Llama-3.1,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,237476,19.1161684499806,peer,NextWorldLab,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,237476,3.090874815571317,baseline,NextWorldLab,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,237476,7.459504867037587,spot_baseline,NextWorldLab,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,237476,43.38875324108192,spot_peer,NextWorldLab,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,237476,0.3229250921679161,relative_legacy,NextWorldLab,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,239758,58.23621139397254,spot_peer,metac-perplexity,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,239758,0.4217564073425421,relative_legacy,metac-perplexity,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,239758,26.594858679661087,peer,metac-perplexity,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,239758,6.796771716741794,baseline,metac-perplexity,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,239758,15.494922246337673,spot_baseline,metac-perplexity,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,239759,0.3152198346033488,relative_legacy,metac-exa,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,239759,2.6809661392643327,baseline,metac-exa,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,239759,6.125312344876477,spot_baseline,metac-exa,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,239759,18.92865072391469,peer,metac-exa,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,239759,40.92349640305913,spot_peer,metac-exa,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,240416,90.36114913789756,spot_peer,metac-o1-preview,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,240416,40.43069452973882,peer,metac-o1-preview,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,240416,32.88088019269576,spot_baseline,metac-o1-preview,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,240416,0.6155982896756553,relative_legacy,metac-o1-preview,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,240416,14.307981145739635,baseline,metac-o1-preview,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,246118,7.068153574426439,baseline,laylaps,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,246118,23.043121052014904,peer,laylaps,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,246118,22.62943855309168,spot_baseline,laylaps,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,246118,71.41902783092941,spot_peer,laylaps,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,246118,0.3633353103949728,relative_legacy,laylaps,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,247214,-42.62005210408178,peer,ajf-bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,247214,-30.78821157525873,baseline,ajf-bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,247214,-0.5359344145135001,relative_legacy,ajf-bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,247214,-94.5542568888372,spot_peer,ajf-bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,247214,-67.19500161730103,spot_baseline,ajf-bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,250015,-11.69096790950679,peer,metac-deepseek-r1,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,250015,-33.163337094629355,spot_baseline,metac-deepseek-r1,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,250015,-31.672182315432455,spot_peer,metac-deepseek-r1,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,250015,-0.1039697586494093,relative_legacy,metac-deepseek-r1,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,250015,-13.33381879998598,baseline,metac-deepseek-r1,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264059,-51.70007937096337,spot_baseline,wunderplumb,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264059,-28.042902155802185,baseline,wunderplumb,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264059,-37.41434507294631,peer,wunderplumb,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264059,-0.4606484535144416,relative_legacy,wunderplumb,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264059,-65.92348405213961,spot_peer,wunderplumb,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264225,-28.509720893846865,spot_baseline,KevinTestBot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264225,-23.073453893592827,spot_peer,KevinTestBot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264225,-0.0437126070564974,relative_legacy,KevinTestBot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264225,-6.214612612218035,peer,KevinTestBot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264225,-8.527933868966661,baseline,KevinTestBot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264332,-28.509720893846865,spot_baseline,krm-bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264332,-0.0374215671037116,relative_legacy,krm-bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264332,-5.550598436351334,peer,krm-bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264332,-7.631086924308761,baseline,krm-bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264332,-23.073453893592827,spot_peer,krm-bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264891,-17.535187650859314,peer,swingswish,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264891,-46.08513262287071,spot_peer,swingswish,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264891,-40.96359961733128,spot_baseline,swingswish,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264891,-16.501181336722443,baseline,swingswish,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,264891,-0.1854320127749961,relative_legacy,swingswish,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,265212,-12.014808090819212,baseline,4Shadower,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,265212,-36.84387875799673,spot_peer,4Shadower,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,265212,-0.1159136870427362,relative_legacy,4Shadower,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,265212,-35.96224981404018,spot_baseline,4Shadower,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,265212,-11.526139657471171,peer,4Shadower,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,265835,-13.866892491186018,spot_baseline,jonahsingerbot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,265835,2.0052490108249224,peer,jonahsingerbot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,265835,-4.416325443743403,baseline,jonahsingerbot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,265835,0.0690822332514465,relative_legacy,jonahsingerbot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,265835,3.9828608796172,spot_peer,jonahsingerbot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,266158,6.008837731381717,peer,bean_bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,266158,-4.186959809015397,baseline,bean_bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,266158,-9.730847814070405,spot_baseline,bean_bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,266158,0.1381458042435974,relative_legacy,bean_bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35573,What will be the UK's Office for Budget Responsibility estimate of CPI inflation for 2025 as of March 2025?,2025-03-15 15:49:24.577327+00,266158,11.62524550796978,spot_peer,bean_bot,True,3.1-3.3,2025-03-15 17:00:00+00,2025-03-15 17:00:00+00,1.0,2025-03-15 17:00:00+00,36136 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,187708,23.143240844796505,spot_baseline,twsummerbot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,187708,18.21239325480766,baseline,twsummerbot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,187708,-0.8106406666456005,peer,twsummerbot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,187708,-0.0261183634343169,relative_legacy,twsummerbot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,187708,-0.0119278277815703,spot_peer,twsummerbot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,189869,8.51099123647683,peer,VeritasAI,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,189869,36.1748873700096,baseline,VeritasAI,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,189869,10.466014097992591,spot_peer,VeritasAI,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,189869,37.85116232537298,spot_baseline,VeritasAI,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,189869,0.107904350546674,relative_legacy,VeritasAI,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,191026,21.9091058246197,spot_baseline,manticAI,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,191026,19.646773118055453,baseline,manticAI,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,191026,-1.9388385192366115,peer,manticAI,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,191026,-0.0398430119915618,relative_legacy,manticAI,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,191026,-0.89112718216035,spot_peer,manticAI,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,191935,-0.0832460496712842,relative_legacy,pgodzinai,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,191935,16.116036884497937,baseline,pgodzinai,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,191935,-4.120014017257632,spot_peer,pgodzinai,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,191935,17.376706773670666,spot_baseline,pgodzinai,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,191935,-5.173912019894843,peer,pgodzinai,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,191975,22.583636224426566,baseline,jkraybill_bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,191975,30.64566861249225,spot_baseline,jkraybill_bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,191975,5.332811233821738,spot_peer,jkraybill_bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,191975,0.0307496552833984,relative_legacy,jkraybill_bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,191975,3.2288814807717383,peer,jkraybill_bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,192075,0.046854694254653,relative_legacy,CumulativeBot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,192075,32.57701611817566,spot_baseline,CumulativeBot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,192075,24.97919116618961,baseline,CumulativeBot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,192075,4.383764587670916,peer,CumulativeBot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,192075,6.708705647574503,spot_peer,CumulativeBot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,192418,-88.8968687611256,spot_baseline,InstitutPelFutur,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,192418,-78.04262051134752,baseline,InstitutPelFutur,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,192418,-71.19696252382003,peer,InstitutPelFutur,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,192418,-1.011781537173898,relative_legacy,InstitutPelFutur,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,192418,-79.82944407972518,spot_peer,InstitutPelFutur,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,192924,11.830742912757684,baseline,acm_bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,192924,13.750352374993504,spot_baseline,acm_bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,192924,-6.703433492388364,spot_peer,acm_bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,192924,-0.1089849332819167,relative_legacy,acm_bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,192924,-6.746785409666226,peer,acm_bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,204737,-6.760875278332219,baseline,SynapseSeer,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,204737,-21.16858267124108,peer,SynapseSeer,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,204737,-7.400058144377692,spot_baseline,SynapseSeer,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,204737,-21.77101278433113,spot_peer,SynapseSeer,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,204737,-0.308360712074895,relative_legacy,SynapseSeer,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,218666,-14.4639319446144,spot_peer,GreeneiBot2,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,218666,-0.2089941984029777,relative_legacy,GreeneiBot2,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,218666,-13.973895690296189,peer,GreeneiBot2,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,218666,2.856915219677092,spot_baseline,GreeneiBot2,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,218666,2.541227354485704,baseline,GreeneiBot2,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,220077,33.03011644340383,peer,mmBot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,220077,68.65189973669928,baseline,mmBot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,220077,38.0375904980013,spot_peer,mmBot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,220077,0.4501968075210425,relative_legacy,mmBot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,222631,-42.59186698228768,baseline,Grizeu_Bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,222631,-44.91616149240142,peer,Grizeu_Bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,222631,-0.6448849645220657,relative_legacy,Grizeu_Bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,222631,-53.1574600993137,spot_peer,Grizeu_Bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,224797,10.466014097992591,spot_peer,cookics_bot_TEST,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,224797,8.082704329008818,peer,cookics_bot_TEST,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,224797,0.0989759264150071,relative_legacy,cookics_bot_TEST,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,224797,37.85116232537298,spot_baseline,cookics_bot_TEST,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,224797,32.76316618763324,baseline,cookics_bot_TEST,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,227188,13.750352374993504,spot_baseline,ProfessorSP,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,227188,-6.703433492388364,spot_peer,ProfessorSP,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,227188,-0.1209073242717607,relative_legacy,ProfessorSP,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,227188,-7.882596160569341,peer,ProfessorSP,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,227188,13.054503822666616,baseline,ProfessorSP,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236037,-16.49920197227733,spot_peer,metac-o1,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236037,-17.105092221776193,peer,metac-o1,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236037,0.001842857148674,baseline,metac-o1,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236037,0.0,spot_baseline,metac-o1,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236037,-0.2500458319501068,relative_legacy,metac-o1,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236038,-0.1208450020294282,relative_legacy,metac-gpt-4o,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236038,-7.876619300282837,peer,metac-gpt-4o,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236038,13.04997955839186,baseline,metac-gpt-4o,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236038,13.750352374993504,spot_baseline,metac-gpt-4o,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236038,-6.703433492388364,spot_peer,metac-gpt-4o,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236040,8.460369075058786,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236040,35.84750706775656,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236040,10.466014097992591,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236040,0.1075740792686878,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236041,10.466014097992591,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236041,35.84154576072353,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236041,8.449823006855674,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236041,0.1074321532289923,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236043,64.26561556432836,baseline,metac-grok-2-1212,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236043,28.758124343447715,peer,metac-grok-2-1212,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236043,0.3915447057221614,relative_legacy,metac-grok-2-1212,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236043,31.80672658908994,spot_peer,metac-grok-2-1212,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236045,45.49397585047963,baseline,metac-Gemini-Exp-1206,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236045,48.54268271702416,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236045,18.08266679156956,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236045,0.2068633893964037,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236045,15.567382330486156,peer,metac-Gemini-Exp-1206,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236047,15.565454457990226,peer,metac-Llama-3.1,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236047,0.2068337452767407,relative_legacy,metac-Llama-3.1,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236047,18.08266679156956,spot_peer,metac-Llama-3.1,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,236047,45.49431436758365,baseline,metac-Llama-3.1,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,237476,-0.212710982511462,relative_legacy,NextWorldLab,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,237476,-14.075912860156988,baseline,NextWorldLab,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,237476,-53.1574600993137,spot_peer,NextWorldLab,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,237476,-51.45731728297583,spot_baseline,NextWorldLab,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,237476,-14.540979120820973,peer,NextWorldLab,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,239758,12.98973657453869,baseline,metac-perplexity,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,239758,-0.1201263947442788,relative_legacy,metac-perplexity,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,239758,13.750352374993504,spot_baseline,metac-perplexity,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,239758,-6.703433492388364,spot_peer,metac-perplexity,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,239758,-7.820076401186534,peer,metac-perplexity,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,239759,24.77845261890917,baseline,metac-exa,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,239759,2.239402475990244,spot_peer,metac-exa,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,239759,-0.0015526384432561,relative_legacy,metac-exa,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,239759,0.6578218211287705,peer,metac-exa,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,239759,26.303440583379377,spot_baseline,metac-exa,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,240416,-0.0015804977976446,relative_legacy,metac-o1-preview,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,240416,2.239402475990244,spot_peer,metac-o1-preview,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,240416,0.652567670313935,peer,metac-o1-preview,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,240416,26.303440583379377,spot_baseline,metac-o1-preview,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,240416,24.86348579293865,baseline,metac-o1-preview,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,241715,-15.304281487554183,peer,CatrachoCaster,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,241715,-5.889368905356857,spot_baseline,CatrachoCaster,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,241715,-20.69479585352577,spot_peer,CatrachoCaster,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,241715,-4.170579307726667,baseline,CatrachoCaster,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,241715,-0.2279746221860669,relative_legacy,CatrachoCaster,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,246118,10.466014097992591,spot_peer,laylaps,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,246118,37.85116232537298,spot_baseline,laylaps,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,246118,37.52510679856312,baseline,laylaps,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,246118,8.706711841093423,peer,laylaps,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,246118,0.1102510133960802,relative_legacy,laylaps,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,247214,-3.212878580463021,spot_peer,ajf-bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,247214,-0.0769617413947232,relative_legacy,ajf-bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,247214,-4.81695821518812,peer,ajf-bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,247214,18.15514512489945,baseline,ajf-bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,247214,18.65005576444948,spot_baseline,ajf-bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,250015,2.239402475990244,spot_peer,metac-deepseek-r1,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,250015,-0.0004608827139834,relative_legacy,metac-deepseek-r1,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,250015,26.303440583379377,spot_baseline,metac-deepseek-r1,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,250015,0.7803404437124621,peer,metac-deepseek-r1,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,250015,24.19371970963221,baseline,metac-deepseek-r1,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264059,2.239402475990244,spot_peer,wunderplumb,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264059,-0.0004372513451732,relative_legacy,wunderplumb,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264059,0.8235791760029186,peer,wunderplumb,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264059,23.956712174860144,baseline,wunderplumb,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264059,26.303440583379377,spot_baseline,wunderplumb,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264225,8.664694701288171,peer,KevinTestBot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264225,37.10778919647329,baseline,KevinTestBot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264225,37.85116232537298,spot_baseline,KevinTestBot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264225,10.466014097992591,spot_peer,KevinTestBot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264225,0.1099539872095423,relative_legacy,KevinTestBot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264332,98.5500430304885,spot_baseline,krm-bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264332,53.70797373366273,spot_peer,krm-bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264332,0.6781425571496917,relative_legacy,krm-bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264332,49.224819625591,peer,krm-bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264332,92.718422170404,baseline,krm-bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264778,2.239402475990244,spot_peer,andrewsiah,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264778,25.924933185685127,baseline,andrewsiah,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264778,26.303440583379377,spot_baseline,andrewsiah,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264778,0.4484771149515456,peer,andrewsiah,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264778,-0.0035644829680099,relative_legacy,andrewsiah,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264891,0.957626398128943,peer,swingswish,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264891,2.239402475990244,spot_peer,swingswish,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264891,26.303440583379377,spot_baseline,swingswish,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264891,22.46932742880162,baseline,swingswish,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,264891,-0.001249417555567,relative_legacy,swingswish,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,265212,0.1831353142091371,relative_legacy,4Shadower,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,265212,14.12060597832928,peer,4Shadower,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,265212,40.246558215114575,baseline,4Shadower,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,265212,48.54268271702416,spot_baseline,4Shadower,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,265212,18.08266679156956,spot_peer,4Shadower,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,265835,31.237979530265683,baseline,jonahsingerbot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,265835,7.769014271906464,peer,jonahsingerbot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,265835,37.85116232537298,spot_baseline,jonahsingerbot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,265835,10.466014097992591,spot_peer,jonahsingerbot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,265835,0.094052146052109,relative_legacy,jonahsingerbot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,266158,14.428511566962676,peer,bean_bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,266158,0.187634713349334,relative_legacy,bean_bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,266158,41.22866409609421,baseline,bean_bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,266158,48.54268271702416,spot_baseline,bean_bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35579,"Will S&P 500 recover half its drop by April 7, 2025?",2025-03-15 15:49:25.112397+00,266158,18.08266679156956,spot_peer,bean_bot,True,no,2025-03-17 01:18:00+00,2025-03-17 01:18:00+00,1.0,2025-03-17 01:18:00+00,36142 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,187708,6.76720143496628,spot_peer,twsummerbot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,187708,0.0640398152898741,relative_legacy,twsummerbot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,187708,42.13491972265181,baseline,twsummerbot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,187708,5.348545558890066,peer,twsummerbot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,187708,54.99155536219554,spot_baseline,twsummerbot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,189869,35.68573026385462,baseline,VeritasAI,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,189869,2.169468746267265,spot_peer,VeritasAI,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,189869,0.0166314899068133,relative_legacy,VeritasAI,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,189869,1.7447095677483622,peer,VeritasAI,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,191026,44.91073046262093,baseline,manticAI,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,191026,2.467036372419891,peer,manticAI,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,191026,0.00535161003765,relative_legacy,manticAI,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,191026,2.169468746267265,spot_peer,manticAI,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,191026,48.54268271702416,spot_baseline,manticAI,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,191935,21.06984908295114,baseline,pgodzinai,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,191935,0.0,relative_legacy,pgodzinai,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,191935,45.206823022381066,spot_baseline,pgodzinai,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,191935,-0.2088370455920239,spot_peer,pgodzinai,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,191935,0.0099630306311261,peer,pgodzinai,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,191975,0.0912330097250805,relative_legacy,jkraybill_bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,191975,6.728866534681858,peer,jkraybill_bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,191975,35.86829236824344,baseline,jkraybill_bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,191975,61.29028906325818,spot_baseline,jkraybill_bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,191975,11.25789235541259,spot_peer,jkraybill_bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,192075,0.1454903976285896,relative_legacy,CumulativeBot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,192075,10.555571446190529,peer,CumulativeBot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,192075,40.28846146985777,baseline,CumulativeBot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,192075,18.44393785408495,spot_peer,CumulativeBot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,192075,71.36958148433588,spot_baseline,CumulativeBot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,192418,-31.424689608419506,baseline,InstitutPelFutur,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,192418,-0.7889017572793464,relative_legacy,InstitutPelFutur,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,192418,-32.19280948873623,spot_baseline,InstitutPelFutur,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,192418,-55.39101229851904,spot_peer,InstitutPelFutur,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,192418,-55.43775789836718,peer,InstitutPelFutur,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,192924,43.29594072761063,spot_baseline,acm_bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,192924,31.51796243249856,baseline,acm_bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,192924,-1.002771940497817,peer,acm_bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,192924,-0.0215629953350539,relative_legacy,acm_bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,192924,-1.5712032255941275,spot_peer,acm_bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,204737,-0.1917579998961248,relative_legacy,SynapseSeer,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,204737,-15.764022502909867,spot_peer,SynapseSeer,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,204737,23.38880601742773,spot_baseline,SynapseSeer,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,204737,19.1903793311755,baseline,SynapseSeer,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,204737,-12.838883229124674,peer,SynapseSeer,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,218666,65.07645591169023,spot_baseline,GreeneiBot2,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,218666,13.957245256564809,spot_peer,GreeneiBot2,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,218666,0.1476446040679079,relative_legacy,GreeneiBot2,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,218666,11.436172131986847,peer,GreeneiBot2,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,218666,52.35491523238532,baseline,GreeneiBot2,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,220077,0.2220121837897758,relative_legacy,mmBot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,220077,19.728140802889428,peer,mmBot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,220077,71.118549746589,baseline,mmBot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,220077,71.36958148433591,spot_baseline,mmBot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,220077,18.44393785408497,spot_peer,mmBot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,222631,-5.4530655324012525,spot_peer,Grizeu_Bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,222631,-0.0483441511049761,relative_legacy,Grizeu_Bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,222631,-3.18433475281018,peer,Grizeu_Bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,222631,23.00330958591177,baseline,Grizeu_Bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,224797,67.80719051126377,spot_baseline,cookics_bot_TEST,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,224797,15.904126273361031,spot_peer,cookics_bot_TEST,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,224797,0.1733840972901374,relative_legacy,cookics_bot_TEST,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,224797,13.412944649530523,peer,cookics_bot_TEST,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,224797,56.13923658902199,baseline,cookics_bot_TEST,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,227188,9.265878384925134,spot_peer,ProfessorSP,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,227188,3.5596878649098964,baseline,ProfessorSP,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,227188,0.5638589619656965,peer,ProfessorSP,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,227188,0.00808705039079,relative_legacy,ProfessorSP,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,227188,58.496250072115615,spot_baseline,ProfessorSP,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236037,8.199245341811332,peer,metac-o1,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236037,0.0969612911144231,relative_legacy,metac-o1,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236037,9.265878384925134,spot_peer,metac-o1,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236037,58.496250072115615,spot_baseline,metac-o1,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236037,50.02430788951604,baseline,metac-o1,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236038,-0.1791345065317995,relative_legacy,metac-gpt-4o,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236038,-13.686029750250718,spot_peer,metac-gpt-4o,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236038,22.60092016839474,baseline,metac-gpt-4o,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236038,-11.583107463434771,peer,metac-gpt-4o,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236040,9.265878384925134,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236040,0.0971018342601382,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236040,8.250940184055308,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236040,50.18109186886366,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236041,-59.53746063962721,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236041,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236041,-69.12566982561282,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236041,-0.8468307330209176,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236041,-44.1894146079533,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236043,-4.471850541351429,peer,metac-grok-2-1212,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236043,-0.0800476642619916,relative_legacy,metac-grok-2-1212,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236043,-5.4530655324012525,spot_peer,metac-grok-2-1212,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236043,37.85116232537298,spot_baseline,metac-grok-2-1212,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236043,32.45982516283411,baseline,metac-grok-2-1212,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236045,60.48900716886555,baseline,metac-Gemini-Exp-1206,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236045,15.927154676081486,peer,metac-Gemini-Exp-1206,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236045,0.2060653533599394,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236045,18.44393785408497,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236045,71.36958148433591,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236047,0.0128345727944524,relative_legacy,metac-Llama-3.1,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236047,40.95766601888771,baseline,metac-Llama-3.1,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236047,2.0219134196160837,peer,metac-Llama-3.1,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,236047,2.169468746267265,spot_peer,metac-Llama-3.1,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,237476,-0.075343248009002,relative_legacy,NextWorldLab,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,237476,31.590696827086013,baseline,NextWorldLab,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,237476,-4.40044673003383,peer,NextWorldLab,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,237476,-5.4530655324012525,spot_peer,NextWorldLab,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,239758,58.496250072115615,spot_baseline,metac-perplexity,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,239758,50.13194138016883,baseline,metac-perplexity,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,239758,8.233432999567944,peer,metac-perplexity,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,239758,0.0969612911144231,relative_legacy,metac-perplexity,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,239758,9.265878384925134,spot_peer,metac-perplexity,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,239759,67.80719051126377,spot_baseline,metac-exa,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,239759,15.904126273361031,spot_peer,metac-exa,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,239759,57.96967309221502,baseline,metac-exa,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,239759,13.909553210194892,peer,metac-exa,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,239759,0.1765632187836853,relative_legacy,metac-exa,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,240416,57.8779288502724,baseline,metac-o1-preview,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,240416,67.80719051126377,spot_baseline,metac-o1-preview,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,240416,15.904126273361031,spot_peer,metac-o1-preview,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,240416,13.88020356868135,peer,metac-o1-preview,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,240416,0.1764361403170753,relative_legacy,metac-o1-preview,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,241715,18.903382439001717,spot_baseline,CatrachoCaster,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,241715,-10.433506434133742,peer,CatrachoCaster,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,241715,10.52125132428377,baseline,CatrachoCaster,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,241715,-0.1483350330460262,relative_legacy,CatrachoCaster,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,241715,-18.96191145868448,spot_peer,CatrachoCaster,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,246118,-13.686029750250718,spot_peer,laylaps,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,246118,15.06311632883832,baseline,laylaps,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,246118,-7.715288785565701,peer,laylaps,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,246118,-0.1107253439881292,relative_legacy,laylaps,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,246118,26.303440583379377,spot_baseline,laylaps,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,247214,67.80719051126377,spot_baseline,ajf-bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,247214,16.082096244049662,peer,ajf-bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,247214,64.46988497102518,baseline,ajf-bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,247214,15.904126273361031,spot_peer,ajf-bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,247214,0.1835830279602386,relative_legacy,ajf-bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,250015,48.54268271702416,spot_baseline,metac-deepseek-r1,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,250015,40.94014522121153,baseline,metac-deepseek-r1,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,250015,2.0274965544211456,peer,metac-deepseek-r1,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,250015,0.0130039610297824,relative_legacy,metac-deepseek-r1,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,250015,2.169468746267265,spot_peer,metac-deepseek-r1,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264059,56.8465531095468,baseline,wunderplumb,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264059,10.150452185402523,peer,wunderplumb,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264059,0.0950562427390998,relative_legacy,wunderplumb,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264059,9.265878384925134,spot_peer,wunderplumb,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264059,58.496250072115615,spot_baseline,wunderplumb,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264225,9.265878384925134,spot_peer,KevinTestBot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264225,0.0649501552500135,relative_legacy,KevinTestBot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264225,4.669500112345283,peer,KevinTestBot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264225,58.496250072115615,spot_baseline,KevinTestBot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264225,28.746802739650345,baseline,KevinTestBot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264332,-1.7372244540622988,peer,krm-bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264332,-3.882696970377315,spot_peer,krm-bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264332,40.05379295837285,spot_baseline,krm-bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264332,19.040444784107425,baseline,krm-bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264332,-0.02431843518944,relative_legacy,krm-bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264891,48.54268271702416,spot_baseline,swingswish,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264891,2.169468746267265,spot_peer,swingswish,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264891,39.08689587376273,baseline,swingswish,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264891,1.906068793984804,peer,swingswish,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,264891,0.0146280957238006,relative_legacy,swingswish,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,265212,1.462947621091722,peer,4Shadower,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,265212,0.0166314899068133,relative_legacy,4Shadower,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,265212,2.169468746267265,spot_peer,4Shadower,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,265212,29.642097645472923,baseline,4Shadower,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,265212,48.54268271702416,spot_baseline,4Shadower,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,265835,-2.6265811154540906,peer,jonahsingerbot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,265835,19.0312553838946,baseline,jonahsingerbot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,265835,-0.0371246017203214,relative_legacy,jonahsingerbot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,265835,-5.4530655324012525,spot_peer,jonahsingerbot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,265835,37.85116232537298,spot_baseline,jonahsingerbot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,266158,37.85116232537298,spot_baseline,bean_bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,266158,-5.4530655324012525,spot_peer,bean_bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,266158,-0.059469466539609,relative_legacy,bean_bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,266158,-3.747599983774938,peer,bean_bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35580,"Will an Ivy League team make it to the second round of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:25.158572+00,266158,26.942002166679835,baseline,bean_bot,True,no,2025-03-17 04:00:00+00,2025-03-17 04:00:00+00,0.7,2025-03-17 04:00:00+00,36143 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,185699,-30.833195790625638,spot_peer,MWG,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,185699,-38.614312086816106,spot_baseline,MWG,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,185699,-0.7129020507968348,relative_legacy,MWG,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,185699,-25.378203304603595,peer,MWG,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,185699,-33.349896822301616,baseline,MWG,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,189869,-13.726363354677844,peer,VeritasAI,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,189869,-32.308549218963066,spot_baseline,VeritasAI,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,189869,-17.31096599187373,spot_peer,VeritasAI,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,189869,-30.79371753540488,baseline,VeritasAI,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,189869,-0.5520023619307111,relative_legacy,VeritasAI,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,191026,-0.6947165455547253,relative_legacy,manticAI,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,191026,-37.48273390869089,spot_baseline,manticAI,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,191026,-34.70318593866188,baseline,manticAI,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,191026,-23.980321006589364,peer,manticAI,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,191026,-28.406612285897072,spot_peer,manticAI,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,191935,53.88904534828314,spot_baseline,pgodzinai,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,191935,40.10579567384727,baseline,pgodzinai,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,191935,124.80253566758618,peer,pgodzinai,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,191935,1.4319381224336338,relative_legacy,pgodzinai,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,191935,167.5332322858844,spot_peer,pgodzinai,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,191975,46.8860466277296,peer,jkraybill_bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,191975,61.43048729443503,spot_peer,jkraybill_bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,191975,0.3348519861502977,relative_legacy,jkraybill_bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,191975,4.410611724405871,spot_baseline,jkraybill_bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,191975,3.351432030689534,baseline,jkraybill_bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,192075,3.7933701309802417,baseline,CumulativeBot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,192075,52.14698929656112,peer,CumulativeBot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,192075,0.3763626688420608,relative_legacy,CumulativeBot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,192075,61.7689060257845,spot_peer,CumulativeBot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,192075,4.568425065969287,spot_baseline,CumulativeBot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,192418,-0.4258207306816459,relative_legacy,InstitutPelFutur,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,192418,-4.572064420082378,peer,InstitutPelFutur,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,192418,-7.821517061347767,spot_peer,InstitutPelFutur,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,192418,-27.19081989516553,baseline,InstitutPelFutur,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,192418,-27.88337559057069,spot_baseline,InstitutPelFutur,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,192924,-41.3819940880576,baseline,acm_bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,192924,-44.06426982957875,spot_baseline,acm_bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,192924,-42.520216462910334,spot_peer,acm_bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,192924,-0.8834511601790698,relative_legacy,acm_bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,192924,-37.4522956875992,peer,acm_bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,218666,70.77417580598848,spot_peer,GreeneiBot2,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,218666,7.564701093095842,baseline,GreeneiBot2,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,218666,62.42536972501078,peer,GreeneiBot2,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,218666,0.5137110457707361,relative_legacy,GreeneiBot2,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,218666,8.767813527793127,spot_baseline,GreeneiBot2,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,220077,-27.883375590570683,spot_baseline,mmBot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,220077,-7.821517061347742,spot_peer,mmBot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,220077,-0.4258207306816457,relative_legacy,mmBot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,220077,-4.572064420082356,peer,mmBot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,220077,-27.78784888499236,baseline,mmBot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,224797,-83.545088867493,spot_baseline,cookics_bot_TEST,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,224797,-127.1838358951116,spot_peer,cookics_bot_TEST,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,224797,-1.9242306387194672,relative_legacy,cookics_bot_TEST,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,224797,-111.7311403959798,peer,cookics_bot_TEST,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,224797,-74.42118622010281,baseline,cookics_bot_TEST,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,227188,11.31581389401372,peer,ProfessorSP,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,227188,-15.31438728790991,spot_baseline,ProfessorSP,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,227188,19.13172424001302,spot_peer,ProfessorSP,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,227188,-9.057979002666205,baseline,ProfessorSP,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,227188,-0.1060224428699169,relative_legacy,ProfessorSP,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236037,-54.79520632582416,spot_baseline,metac-o1,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236037,-50.61767817728907,baseline,metac-o1,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236037,-58.3576556589058,peer,metac-o1,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236037,-1.1742928610681325,relative_legacy,metac-o1,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236037,-65.53189519218822,spot_peer,metac-o1,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236038,-44.06426982957875,spot_baseline,metac-gpt-4o,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236038,-0.8778315140617481,relative_legacy,metac-gpt-4o,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236038,-37.13423722687447,peer,metac-gpt-4o,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236038,-40.90114651434444,baseline,metac-gpt-4o,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236038,-42.520216462910334,spot_peer,metac-gpt-4o,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236040,-0.5064253290643965,relative_legacy,metac-claude-3-5-sonnet-latest,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236040,-28.469998429918498,baseline,metac-claude-3-5-sonnet-latest,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236040,-30.713005510121125,spot_baseline,metac-claude-3-5-sonnet-latest,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236040,-13.889443626212763,spot_peer,metac-claude-3-5-sonnet-latest,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236040,-10.483674662678048,peer,metac-claude-3-5-sonnet-latest,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236041,-39.135472369894686,baseline,metac-claude-3-5-sonnet-20240620,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236041,-38.47558041897819,spot_peer,metac-claude-3-5-sonnet-20240620,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236041,-0.82527769494203,relative_legacy,metac-claude-3-5-sonnet-20240620,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236041,-33.36045431831181,peer,metac-claude-3-5-sonnet-20240620,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236041,-42.178152217366495,spot_baseline,metac-claude-3-5-sonnet-20240620,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236043,-37.11738316451821,peer,metac-grok-2-1212,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236043,-42.520216462910334,spot_peer,metac-grok-2-1212,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236043,-0.8777355934853011,relative_legacy,metac-grok-2-1212,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236043,-40.86667523732668,baseline,metac-grok-2-1212,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236043,-44.06426982957875,spot_baseline,metac-grok-2-1212,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236045,-0.9286632585155676,relative_legacy,metac-Gemini-Exp-1206,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236045,-46.02739279803103,spot_baseline,metac-Gemini-Exp-1206,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236045,-40.71987224996434,peer,metac-Gemini-Exp-1206,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236045,-42.20475085412405,baseline,metac-Gemini-Exp-1206,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236045,-46.72998464781165,spot_peer,metac-Gemini-Exp-1206,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236047,-44.06426982957875,spot_baseline,metac-Llama-3.1,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236047,-36.8617887373627,peer,metac-Llama-3.1,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236047,-0.8747434724382153,relative_legacy,metac-Llama-3.1,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236047,-42.520216462910334,spot_peer,metac-Llama-3.1,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,236047,-40.42532910236366,baseline,metac-Llama-3.1,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,237476,33.778163478649034,peer,NextWorldLab,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,237476,-6.966080131193909,baseline,NextWorldLab,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,237476,0.1070013620260055,relative_legacy,NextWorldLab,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,237476,35.35798622090257,spot_peer,NextWorldLab,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,237476,-7.747664801608663,spot_baseline,NextWorldLab,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,239758,-17.983984331999643,spot_baseline,metac-perplexity,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,239758,13.40697602845508,spot_peer,metac-perplexity,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,239758,-16.646792011747888,baseline,metac-perplexity,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,239758,14.843970941393115,peer,metac-perplexity,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,239758,-0.1532690776510799,relative_legacy,metac-perplexity,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,239759,1.4026851843432566,relative_legacy,metac-exa,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,239759,38.09133907053606,spot_baseline,metac-exa,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,239759,35.236944691120094,baseline,metac-exa,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,239759,126.4069473338087,peer,metac-exa,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,239759,133.6562503793932,spot_peer,metac-exa,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,240416,-52.44889539611089,spot_baseline,metac-o1-preview,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,240416,-60.50040951221553,spot_peer,metac-o1-preview,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,240416,-1.110317944699694,relative_legacy,metac-o1-preview,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,240416,-53.781725629669225,peer,metac-o1-preview,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,240416,-48.54830209737636,baseline,metac-o1-preview,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,246118,23.343015309939624,peer,laylaps,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,246118,-10.73093649624541,spot_baseline,laylaps,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,246118,-8.488442364195361,baseline,laylaps,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,246118,28.960586532334027,spot_peer,laylaps,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,246118,-0.0103372241068182,relative_legacy,laylaps,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,247214,-13.365688605015128,peer,ajf-bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,247214,-16.897638785252546,spot_peer,ajf-bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,247214,-32.1158041324962,spot_baseline,ajf-bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,247214,-30.745913423661555,baseline,ajf-bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,247214,-0.5473775950077094,relative_legacy,ajf-bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,250015,-31.999288766029373,spot_baseline,metac-deepseek-r1,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,250015,-0.547313806066042,relative_legacy,metac-deepseek-r1,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,250015,-13.08062665567096,peer,metac-deepseek-r1,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,250015,-16.647780426562555,spot_peer,metac-deepseek-r1,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,250015,-28.62540401745332,baseline,metac-deepseek-r1,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264059,-11.696469685974296,baseline,wunderplumb,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264059,-15.797706277747078,spot_baseline,wunderplumb,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264059,18.09528335512069,spot_peer,wunderplumb,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264059,-0.1227230875924384,relative_legacy,wunderplumb,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264059,13.489330201859188,peer,wunderplumb,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264225,-25.36532446568244,baseline,KevinTestBot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264225,-13.628729956530968,peer,KevinTestBot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264225,-32.59912312233337,spot_baseline,KevinTestBot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264225,-17.934079670144907,spot_peer,KevinTestBot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264225,-0.5203908014726297,relative_legacy,KevinTestBot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264332,-0.9328864664614448,relative_legacy,krm-bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264332,-38.87813962991702,baseline,krm-bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264332,-51.38314907150157,spot_baseline,krm-bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264332,-58.21499742004638,spot_peer,krm-bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264332,-43.87986328587362,peer,krm-bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264891,47.76249707671059,spot_peer,swingswish,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264891,0.2509911917832597,relative_legacy,swingswish,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264891,-1.739245883954608,baseline,swingswish,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264891,44.081630551597485,peer,swingswish,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,264891,-1.9631229684522855,spot_baseline,swingswish,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,265212,33.00522257626616,spot_peer,4Shadower,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,265212,-8.84481888403316,spot_baseline,4Shadower,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,265212,0.0352108246796468,relative_legacy,4Shadower,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,265212,-7.21707276801773,baseline,4Shadower,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,265212,27.59949694182387,peer,4Shadower,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,265835,12.476189247700976,spot_peer,jonahsingerbot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,265835,-14.757022905902732,baseline,jonahsingerbot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,265835,10.511877651190666,peer,jonahsingerbot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,265835,-0.1946403574214776,relative_legacy,jonahsingerbot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,265835,-18.4180341009593,spot_baseline,jonahsingerbot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,266158,-13.304726006502795,baseline,bean_bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,266158,21.552965119827768,peer,bean_bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,266158,-0.0598408227536845,relative_legacy,bean_bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,266158,20.920802568270005,spot_peer,bean_bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35581,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Wide Release?,2025-03-15 15:49:25.192062+00,266158,-14.48009413819249,spot_baseline,bean_bot,True,My Old Ass,2025-03-17 06:00:00+00,2025-03-17 06:00:00+00,1.0,2025-03-17 06:00:00+00,36144 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,185699,-31.487141178236048,spot_peer,MWG,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,185699,-26.007121911113337,baseline,MWG,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,185699,-25.05898765738308,peer,MWG,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,185699,-0.7426756539348871,relative_legacy,MWG,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,185699,-30.10299956639813,spot_baseline,MWG,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,189869,-0.7548578295534287,baseline,VeritasAI,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,189869,-0.7968929671275293,spot_baseline,VeritasAI,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,189869,38.10140689185056,spot_peer,VeritasAI,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,189869,0.1480332712625342,relative_legacy,VeritasAI,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,189869,39.901916972791525,peer,VeritasAI,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,191026,-5.10362091387664,spot_baseline,manticAI,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,191026,-4.7352736205612445,baseline,manticAI,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,191026,29.163265489617302,peer,manticAI,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,191026,0.0041857306403746,relative_legacy,manticAI,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,191026,27.874905335530038,spot_peer,manticAI,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,191935,-26.377737096369867,spot_peer,pgodzinai,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,191935,-19.565918560869704,baseline,pgodzinai,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,191935,-27.95125556778631,spot_baseline,pgodzinai,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,191935,-17.850245711921367,peer,pgodzinai,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,191935,-0.5975558527077232,relative_legacy,pgodzinai,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,191975,-4.326340909198107,baseline,jkraybill_bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,191975,27.05619001756315,spot_peer,jkraybill_bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,191975,-5.4484098058453005,spot_baseline,jkraybill_bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,191975,-0.0616634962671559,relative_legacy,jkraybill_bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,191975,22.833882444832877,peer,jkraybill_bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,192075,-15.438586289243624,spot_peer,CumulativeBot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,192075,-23.344406760763345,spot_baseline,CumulativeBot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,192075,-0.5339792316250217,relative_legacy,CumulativeBot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,192075,-10.969189137467906,peer,CumulativeBot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,192075,-18.60588346017997,baseline,CumulativeBot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,192418,-54.49881990751393,spot_peer,InstitutPelFutur,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,192418,-38.77973935395496,baseline,InstitutPelFutur,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,192418,-1.0916134452347133,relative_legacy,InstitutPelFutur,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,192418,-39.79400086720376,spot_baseline,InstitutPelFutur,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,192418,-50.56097036586343,peer,InstitutPelFutur,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,192924,-4.430826405026028,spot_peer,acm_bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,192924,-17.381156727652588,baseline,acm_bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,192924,-0.9942536656158808,peer,acm_bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,192924,-0.415295675791092,relative_legacy,acm_bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,192924,-18.708664335714445,spot_baseline,acm_bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,218666,-25.96373105057561,spot_baseline,GreeneiBot2,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,218666,-0.6146777863376005,relative_legacy,GreeneiBot2,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,218666,-21.65827888591504,spot_peer,GreeneiBot2,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,218666,-16.32082226876458,peer,GreeneiBot2,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,218666,-21.811100441712,baseline,GreeneiBot2,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,220077,3.211558223326513,spot_peer,mmBot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,220077,7.91774389943207,peer,mmBot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,220077,-15.44504843681905,baseline,mmBot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,220077,-15.49019599857432,spot_baseline,mmBot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,220077,-0.3048362235120835,relative_legacy,mmBot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,224797,-16.79922927526272,spot_baseline,cookics_bot_TEST,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,224797,0.1032051982801644,spot_peer,cookics_bot_TEST,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,224797,-0.3614311613334026,relative_legacy,cookics_bot_TEST,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,224797,2.4231891599183264,peer,cookics_bot_TEST,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,224797,-14.656275740523528,baseline,cookics_bot_TEST,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,227188,0.0504182551037404,relative_legacy,ProfessorSP,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,227188,0.0,baseline,ProfessorSP,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,227188,27.667406454111934,peer,ProfessorSP,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,227188,39.99366181700832,spot_peer,ProfessorSP,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,227188,0.0,spot_baseline,ProfessorSP,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236037,-52.28787452803376,spot_baseline,metac-o1,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236037,-47.749145667314224,baseline,metac-o1,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236037,-74.07954857829063,peer,metac-o1,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236037,-1.4316579872558404,relative_legacy,metac-o1,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236037,-84.16603362910381,spot_peer,metac-o1,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236038,-50.57320349827224,baseline,metac-gpt-4o,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236038,-55.284196865778085,spot_baseline,metac-gpt-4o,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236038,-80.74282668236391,peer,metac-gpt-4o,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236038,-1.5246692950532317,relative_legacy,metac-gpt-4o,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236038,-91.28092350119572,spot_peer,metac-gpt-4o,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236040,-5.449116824881203,peer,metac-claude-3-5-sonnet-latest,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236040,-19.004879604309902,baseline,metac-claude-3-5-sonnet-latest,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236040,-0.4757242175509169,relative_legacy,metac-claude-3-5-sonnet-latest,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236040,-9.303780155238528,spot_peer,metac-claude-3-5-sonnet-latest,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236040,-20.760831050174605,spot_baseline,metac-claude-3-5-sonnet-latest,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236041,-0.0132752900413697,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236041,27.742229880930548,peer,metac-claude-3-5-sonnet-20240620,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236041,26.81084538005144,spot_peer,metac-claude-3-5-sonnet-20240620,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236041,-5.551732784983133,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236041,-5.081006475760499,baseline,metac-claude-3-5-sonnet-20240620,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236043,-10.002978918410244,baseline,metac-grok-2-1212,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236043,-10.95475269778064,spot_baseline,metac-grok-2-1212,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236043,13.981153737057731,spot_peer,metac-grok-2-1212,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236043,-0.1779109575852379,relative_legacy,metac-grok-2-1212,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236043,15.894271092215217,peer,metac-grok-2-1212,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236045,36.27550495704001,peer,metac-Gemini-Exp-1206,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236045,-1.224441009780136,baseline,metac-Gemini-Exp-1206,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236045,-1.353364098264553,spot_baseline,metac-Gemini-Exp-1206,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236045,36.78004344401174,spot_peer,metac-Gemini-Exp-1206,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236045,0.1067303739051975,relative_legacy,metac-Gemini-Exp-1206,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236047,-27.21404303906016,spot_baseline,metac-Llama-3.1,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236047,-19.4935071707441,peer,metac-Llama-3.1,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236047,-24.833894477154207,baseline,metac-Llama-3.1,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236047,-0.6709485895808186,relative_legacy,metac-Llama-3.1,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,236047,-24.627195811762427,spot_peer,metac-Llama-3.1,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,237476,19.02412902764897,spot_peer,NextWorldLab,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,237476,-8.830984124613883,spot_baseline,NextWorldLab,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,237476,-7.759277185094634,baseline,NextWorldLab,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,237476,19.19098346509459,peer,NextWorldLab,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,237476,-0.1287497070387868,relative_legacy,NextWorldLab,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,239758,-31.875876262441285,spot_baseline,metac-perplexity,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,239758,-35.69690936313737,spot_peer,metac-perplexity,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,239758,-29.652616896516744,peer,metac-perplexity,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,239758,-0.8126702362437591,relative_legacy,metac-perplexity,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,239758,-29.121891468094,baseline,metac-perplexity,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,239759,-1.2659069634227276,relative_legacy,metac-exa,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,239759,-62.18911632703762,peer,metac-exa,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,239759,-71.25858451197196,spot_peer,metac-exa,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,239759,-42.7372298486113,baseline,metac-exa,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,239759,-46.852108295774485,spot_baseline,metac-exa,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,240416,-47.24692418027372,spot_baseline,metac-o1-preview,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,240416,-43.10395925000937,baseline,metac-o1-preview,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,240416,-63.05617367446706,peer,metac-o1-preview,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,240416,-1.2780096437547936,relative_legacy,metac-o1-preview,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,240416,-72.19609096866355,spot_peer,metac-o1-preview,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,246118,33.984680666723335,spot_peer,laylaps,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,246118,-2.530586526477013,spot_baseline,laylaps,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,246118,-0.0035100517256245,relative_legacy,laylaps,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,246118,26.427537598203703,peer,laylaps,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,246118,-1.898409108459995,baseline,laylaps,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,247214,-24.114116002400703,spot_peer,ajf-bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,247214,-25.282405852854133,baseline,ajf-bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,247214,-19.542969352674177,peer,ajf-bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,247214,-0.6717667427017839,relative_legacy,ajf-bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,247214,-26.997967664532386,spot_baseline,ajf-bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,250015,-21.12158122619363,baseline,metac-deepseek-r1,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,250015,-15.545032610366777,spot_peer,metac-deepseek-r1,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,250015,-11.244357489438396,peer,metac-deepseek-r1,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,250015,-0.5556103662421107,relative_legacy,metac-deepseek-r1,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,250015,-23.38923493034656,spot_baseline,metac-deepseek-r1,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264059,29.663933180668828,peer,wunderplumb,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264059,0.0547366476538742,relative_legacy,wunderplumb,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264059,39.99366181700834,spot_peer,wunderplumb,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264059,1.9286549331065742e-14,spot_baseline,wunderplumb,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264059,1.3942080738291808e-14,baseline,wunderplumb,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264225,0.0276641396349248,relative_legacy,KevinTestBot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264225,9.643274665532873e-15,spot_baseline,KevinTestBot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264225,12.486703232885407,peer,KevinTestBot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264225,3.0107947977522447e-15,baseline,KevinTestBot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264225,39.99366181700834,spot_peer,KevinTestBot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264332,3.0706304022733835,baseline,krm-bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264332,4.351496682253017,spot_baseline,krm-bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264332,50.32646856580119,spot_peer,krm-bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264332,0.1549608638508953,relative_legacy,krm-bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264332,36.18438717438701,peer,krm-bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264891,39.99366181700834,spot_peer,swingswish,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264891,9.643274665532873e-15,spot_baseline,swingswish,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264891,8.343837702750885e-15,baseline,swingswish,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264891,36.92464560490748,peer,swingswish,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,264891,0.1218893332772977,relative_legacy,swingswish,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,265212,74.69236121857087,spot_peer,4Shadower,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,265212,11.351199553120864,baseline,4Shadower,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,265212,14.6128035678238,spot_baseline,4Shadower,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,265212,0.4479059798712487,relative_legacy,4Shadower,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,265212,59.21906197319952,peer,4Shadower,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,265835,-0.0359681192705541,relative_legacy,jonahsingerbot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,265835,-2.444874629860331,baseline,jonahsingerbot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,265835,-4.139268515822511,spot_baseline,jonahsingerbot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,265835,30.1647995246873,spot_peer,jonahsingerbot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,265835,18.173494205351457,peer,jonahsingerbot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,266158,9.643274665532873e-15,spot_baseline,bean_bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,266158,39.99366181700834,spot_peer,bean_bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,266158,0.1463799280500486,relative_legacy,bean_bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,266158,39.114545017841145,peer,bean_bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35582,Which movie will win the 2025 GLAAD Media Award for Outstanding Film -- Limited Release?,2025-03-15 15:49:25.227648+00,266158,8.712434046122755e-15,baseline,bean_bot,True,Crossing,2025-03-17 08:00:00+00,2025-03-17 08:00:00+00,1.0,2025-03-17 08:00:00+00,36145 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,185699,50.00880816701658,baseline,MWG,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,185699,7.659004920463257,spot_peer,MWG,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,185699,0.1239575176592423,relative_legacy,MWG,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,185699,61.27838567197356,spot_baseline,MWG,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,185699,6.055385072280025,peer,MWG,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,189869,48.61761219898259,baseline,VeritasAI,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,189869,-12.944642874039795,peer,VeritasAI,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,189869,-0.141484030308829,relative_legacy,VeritasAI,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,189869,-13.503954224997695,spot_peer,VeritasAI,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,189869,52.374646681156456,spot_baseline,VeritasAI,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,191026,49.34850312796715,baseline,manticAI,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,191026,-12.582926333857118,spot_peer,manticAI,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,191026,-12.2055874981638,peer,manticAI,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,191026,52.762144095370246,spot_baseline,manticAI,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,191026,-0.1315303525014899,relative_legacy,manticAI,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,191935,47.84293580477745,baseline,pgodzinai,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,191935,66.6517980554881,spot_baseline,pgodzinai,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,191935,0.2518662480060467,relative_legacy,pgodzinai,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,191935,14.665359094687371,peer,pgodzinai,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,191935,20.430864794311205,spot_peer,pgodzinai,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,192075,77.17558366411453,spot_baseline,CumulativeBot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,192075,45.444451234867074,spot_peer,CumulativeBot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,192075,0.5534682285893682,relative_legacy,CumulativeBot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,192075,36.79207590255714,peer,CumulativeBot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,192075,62.76645184142371,baseline,CumulativeBot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,192418,-0.1847016062899673,spot_peer,InstitutPelFutur,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,192418,0.0336223870726404,relative_legacy,InstitutPelFutur,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,192418,0.1661692566410688,peer,InstitutPelFutur,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,192418,56.42512969679593,baseline,InstitutPelFutur,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,192418,57.97835966168102,spot_baseline,InstitutPelFutur,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,192924,62.83889300503115,spot_baseline,acm_bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,192924,11.368115550250463,spot_peer,acm_bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,192924,0.1811131244233985,relative_legacy,acm_bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,192924,10.320624877044152,peer,acm_bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,192924,58.59332504973787,baseline,acm_bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,218666,51.18833609788744,spot_baseline,GreeneiBot2,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,218666,43.230536816125046,baseline,GreeneiBot2,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,218666,-14.016613940275784,peer,GreeneiBot2,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,218666,-0.1557227861042855,relative_legacy,GreeneiBot2,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,218666,-16.32365080791,spot_peer,GreeneiBot2,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,220077,39.79400086720376,spot_baseline,mmBot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,220077,39.66249513644225,baseline,mmBot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,220077,-43.34395977647708,peer,mmBot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,220077,-0.55426597305042,relative_legacy,mmBot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,220077,-43.40641359165101,spot_peer,mmBot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,224797,66.04977051981265,baseline,cookics_bot_TEST,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,224797,75.49147982418312,spot_baseline,cookics_bot_TEST,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,224797,41.44156876066827,spot_peer,cookics_bot_TEST,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,224797,0.5410922021916391,relative_legacy,cookics_bot_TEST,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,224797,36.085934224439626,peer,cookics_bot_TEST,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,227188,-0.3891157191670374,relative_legacy,ProfessorSP,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,227188,-31.20577823499998,peer,ProfessorSP,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,227188,28.60937741811684,baseline,ProfessorSP,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,227188,39.79400086720376,spot_baseline,ProfessorSP,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,227188,-43.40641359165101,spot_peer,ProfessorSP,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236037,58.09712629443854,baseline,metac-o1,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236037,63.74897295125106,spot_baseline,metac-o1,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236037,13.531250020029873,spot_peer,metac-o1,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236037,0.2056624832627349,relative_legacy,metac-o1,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236037,12.037030681730458,peer,metac-o1,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236038,-0.1847016062899673,spot_peer,metac-gpt-4o,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236038,57.97835966168102,spot_baseline,metac-gpt-4o,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236038,53.04786518278184,baseline,metac-gpt-4o,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236038,-0.5138345849825614,peer,metac-gpt-4o,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236038,0.0305419164289442,relative_legacy,metac-gpt-4o,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236040,55.09030098032429,baseline,metac-claude-3-5-sonnet-latest,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236040,4.347701595859382,peer,metac-claude-3-5-sonnet-latest,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236040,0.0982493263071522,relative_legacy,metac-claude-3-5-sonnet-latest,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236040,5.110090072424936,spot_peer,metac-claude-3-5-sonnet-latest,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236040,60.20599913279624,spot_baseline,metac-claude-3-5-sonnet-latest,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236041,6.692166802298314,peer,metac-claude-3-5-sonnet-20240620,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236041,56.10420200072491,baseline,metac-claude-3-5-sonnet-20240620,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236041,0.1308481059607703,relative_legacy,metac-claude-3-5-sonnet-20240620,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236041,7.659004920463257,spot_peer,metac-claude-3-5-sonnet-20240620,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236041,61.27838567197356,spot_baseline,metac-claude-3-5-sonnet-20240620,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236043,65.40331184491743,baseline,metac-grok-2-1212,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236043,29.16018908913384,peer,metac-grok-2-1212,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236043,0.4440474674391931,relative_legacy,metac-grok-2-1212,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236043,32.19285285616593,spot_peer,metac-grok-2-1212,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236043,71.60033436347993,spot_baseline,metac-grok-2-1212,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236045,66.07903632924089,spot_baseline,metac-Gemini-Exp-1206,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236045,0.2748814009344734,relative_legacy,metac-Gemini-Exp-1206,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236045,19.069489194110577,spot_peer,metac-Gemini-Exp-1206,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236045,59.72059317068024,baseline,metac-Gemini-Exp-1206,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236045,16.992628552565996,peer,metac-Gemini-Exp-1206,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236047,-12.935737287308609,peer,metac-Llama-3.1,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236047,-14.10152460592363,spot_peer,metac-Llama-3.1,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236047,46.7588403019449,baseline,metac-Llama-3.1,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236047,52.12323520963977,spot_baseline,metac-Llama-3.1,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,236047,-0.1420359700592475,relative_legacy,metac-Llama-3.1,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,237476,48.81274962474585,spot_baseline,NextWorldLab,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,237476,-0.2351446299834558,relative_legacy,NextWorldLab,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,237476,-19.600911634059,peer,NextWorldLab,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,237476,42.94814959642982,baseline,NextWorldLab,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,237476,-21.970092098412334,spot_peer,NextWorldLab,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,239758,49.80143807663996,baseline,metac-perplexity,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,239758,-7.723026316563131,peer,metac-perplexity,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,239758,54.65426634781311,spot_baseline,metac-perplexity,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,239758,-0.069646467944144,relative_legacy,metac-perplexity,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,239758,-8.085612793111585,spot_peer,metac-perplexity,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,239759,54.87999414532224,baseline,metac-exa,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,239759,4.338924930759816,peer,metac-exa,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,239759,5.110090072424936,spot_peer,metac-exa,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,239759,0.0983972948791989,relative_legacy,metac-exa,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,239759,60.20599913279624,spot_baseline,metac-exa,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,240416,38.40320558273929,spot_peer,metac-o1-preview,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,240416,0.5210542653646697,relative_legacy,metac-o1-preview,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,240416,34.66560555501942,peer,metac-o1-preview,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,240416,67.4094767049719,baseline,metac-o1-preview,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,240416,74.21317122330905,spot_baseline,metac-o1-preview,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,246118,-0.0493520723490339,relative_legacy,laylaps,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,246118,54.40680443502757,spot_baseline,laylaps,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,246118,-8.67379561784838,spot_peer,laylaps,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,246118,-6.712708599988537,peer,laylaps,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,246118,41.63188059766879,baseline,laylaps,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,247214,77.75920872714093,baseline,ajf-bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,247214,53.581391336570405,peer,ajf-bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,247214,55.74278933599666,spot_peer,ajf-bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,247214,81.50832909264366,spot_baseline,ajf-bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,247214,0.7741194179502473,relative_legacy,ajf-bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,250015,-84.10720090290638,peer,metac-deepseek-r1,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,250015,18.52850905911961,spot_baseline,metac-deepseek-r1,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,250015,-93.9515536509868,spot_peer,metac-deepseek-r1,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,250015,-1.134263056515175,relative_legacy,metac-deepseek-r1,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,250015,16.49737052675643,baseline,metac-deepseek-r1,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264059,51.18833609788744,spot_baseline,wunderplumb,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264059,37.0712944821281,baseline,wunderplumb,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264059,-11.825319064564654,peer,wunderplumb,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264059,-0.1178353880164064,relative_legacy,wunderplumb,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264059,-16.32365080791,spot_peer,wunderplumb,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264225,0.2015882309403961,relative_legacy,KevinTestBot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264225,11.204417479639888,peer,KevinTestBot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264225,14.948560245774592,spot_peer,KevinTestBot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264225,64.34526764861876,spot_baseline,KevinTestBot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264225,48.46336470330933,baseline,KevinTestBot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264332,38.024803295239685,baseline,krm-bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264332,-10.028495742674728,peer,krm-bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264332,52.2618610812001,spot_baseline,krm-bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264332,-13.772030035231374,spot_peer,krm-bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264332,-0.0928122379809374,relative_legacy,krm-bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264891,24.64474809962785,spot_peer,swingswish,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264891,68.42467475153124,spot_baseline,swingswish,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264891,59.46470331685979,baseline,swingswish,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264891,21.214184637347586,peer,swingswish,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,264891,0.3339205468126511,relative_legacy,swingswish,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,265212,7.382583924118894,peer,4Shadower,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,265212,49.10617010070917,baseline,4Shadower,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,265212,62.0539555530735,spot_baseline,4Shadower,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,265212,9.502427523607428,spot_peer,4Shadower,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,265212,0.1453417702948335,relative_legacy,4Shadower,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,265835,-0.2225974334483688,relative_legacy,jonahsingerbot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,265835,-19.08432041414611,peer,jonahsingerbot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,265835,47.712125471966246,spot_baseline,jonahsingerbot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,265835,36.85399394668326,baseline,jonahsingerbot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,265835,-24.586123858081496,spot_peer,jonahsingerbot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,266158,-0.2329586248074273,relative_legacy,bean_bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,266158,49.13616938342726,spot_baseline,bean_bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,266158,44.32748720507095,baseline,bean_bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,266158,-19.45423614154292,peer,bean_bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35583,Which show will win the 2025 GLAAD Media Award for Outstanding Reality Competition Program?,2025-03-15 15:49:25.565921+00,266158,-21.201367953772785,spot_peer,bean_bot,True,RuPaul’s Drag Race,2025-03-17 10:00:00+00,2025-03-17 10:00:00+00,1.0,2025-03-17 10:00:00+00,36146 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,185699,35.27547820830635,spot_peer,MWG,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,185699,29.73989034884951,spot_baseline,MWG,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,185699,30.182938588633757,peer,MWG,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,185699,0.3160583323003699,relative_legacy,MWG,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,185699,25.5946162861746,baseline,MWG,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,189869,31.468815865896357,peer,VeritasAI,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,189869,27.64571590195694,baseline,VeritasAI,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,189869,0.3274057845992782,relative_legacy,VeritasAI,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,189869,32.11604073254896,spot_peer,VeritasAI,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,189869,28.26656355183168,spot_baseline,VeritasAI,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,191026,-2.858129978199996,baseline,manticAI,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,191026,-0.5605513335891601,relative_legacy,manticAI,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,191026,-32.19079018585639,peer,manticAI,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,191026,-3.1529117007284158,spot_baseline,manticAI,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,191026,-35.26063888971713,spot_peer,manticAI,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,191935,-9.7744409704609,baseline,pgodzinai,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,191935,-44.93588826661749,peer,pgodzinai,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,191935,-0.7276816294006515,relative_legacy,pgodzinai,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,191935,-53.59454200687914,spot_peer,pgodzinai,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,191935,-11.702481351562628,spot_baseline,pgodzinai,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,191975,14.37505664757405,spot_baseline,jkraybill_bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,191975,9.928625728628043,baseline,jkraybill_bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,191975,1.607055658084084,peer,jkraybill_bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,191975,2.3267586826394866,spot_peer,jkraybill_bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,191975,-0.0361756117596247,relative_legacy,jkraybill_bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,192075,-7.457549856281793,peer,CumulativeBot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,192075,9.57606506934904,spot_baseline,CumulativeBot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,192075,8.88047034151543,baseline,CumulativeBot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,192075,-0.2156025643619029,relative_legacy,CumulativeBot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,192075,-7.9643144647286785,spot_peer,CumulativeBot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,192418,-0.242100178219751,relative_legacy,InstitutPelFutur,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,192418,8.534908456285544,baseline,InstitutPelFutur,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,192418,-9.697548541105506,spot_peer,InstitutPelFutur,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,192418,8.767813527793127,spot_baseline,InstitutPelFutur,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,192418,-9.949667662650487,peer,InstitutPelFutur,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,192924,8.767813527793127,spot_baseline,acm_bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,192924,7.864250875321856,baseline,acm_bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,192924,-8.893857192346346,peer,acm_bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,192924,-0.2361090898974538,relative_legacy,acm_bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,192924,-9.697548541105506,spot_peer,acm_bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,218666,-5.875700455611168,baseline,GreeneiBot2,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,218666,-0.6661720955403865,relative_legacy,GreeneiBot2,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,218666,-41.68227552243895,spot_peer,GreeneiBot2,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,218666,-6.147485704580915,spot_baseline,GreeneiBot2,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,218666,-40.38323742287498,peer,GreeneiBot2,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,220077,-10.681543474939,peer,mmBot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,220077,8.740327900863752,baseline,mmBot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,220077,-9.697548541105506,spot_peer,mmBot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,220077,8.767813527793127,spot_baseline,mmBot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,220077,-0.2490578785734077,relative_legacy,mmBot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,224797,33.333333333333336,spot_baseline,cookics_bot_TEST,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,224797,42.981343909762295,spot_peer,cookics_bot_TEST,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,224797,25.104929222000973,baseline,cookics_bot_TEST,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,224797,32.26716337584353,peer,cookics_bot_TEST,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,224797,0.3758366633869024,relative_legacy,cookics_bot_TEST,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,227188,-9.697548541105506,spot_peer,ProfessorSP,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,227188,6.274230499511688,baseline,ProfessorSP,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,227188,-6.942455560644497,peer,ProfessorSP,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,227188,-0.1602430775443507,relative_legacy,ProfessorSP,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,227188,8.767813527793127,spot_baseline,ProfessorSP,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236037,-23.300803271989288,peer,metac-o1,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236037,1.0066356164658128,baseline,metac-o1,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236037,1.140523844597089,spot_baseline,metac-o1,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236037,-26.05369227807137,spot_peer,metac-o1,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236037,-0.4367427930413449,relative_legacy,metac-o1,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236038,27.84353811220137,baseline,metac-gpt-4o,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236038,31.37021036488105,spot_baseline,metac-gpt-4o,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236038,38.77157572486098,spot_peer,metac-gpt-4o,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236038,0.3658533670272263,relative_legacy,metac-gpt-4o,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236038,34.25671682402265,peer,metac-gpt-4o,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236040,22.173927046900364,baseline,metac-claude-3-5-sonnet-latest,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236040,24.948707766801192,spot_baseline,metac-claude-3-5-sonnet-latest,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236040,25.00115086045709,spot_peer,metac-claude-3-5-sonnet-latest,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236040,0.1953947552306355,relative_legacy,metac-claude-3-5-sonnet-latest,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236040,22.04315373724746,peer,metac-claude-3-5-sonnet-latest,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236041,19.96966518048441,spot_peer,metac-claude-3-5-sonnet-20240620,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236041,22.602396837087927,spot_baseline,metac-claude-3-5-sonnet-20240620,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236041,17.51045131265694,peer,metac-claude-3-5-sonnet-20240620,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236041,20.03985014897264,baseline,metac-claude-3-5-sonnet-20240620,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236041,0.132334700519698,relative_legacy,metac-claude-3-5-sonnet-20240620,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236043,15.759896995583102,spot_peer,metac-grok-2-1212,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236043,20.63927386863564,spot_baseline,metac-grok-2-1212,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236043,18.319108034193032,baseline,metac-grok-2-1212,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236043,13.78462731362645,peer,metac-grok-2-1212,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236043,0.0801171910934174,relative_legacy,metac-grok-2-1212,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236045,17.312216469401726,peer,metac-Gemini-Exp-1206,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236045,0.1311294364577679,relative_legacy,metac-Gemini-Exp-1206,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236045,19.96966518048441,spot_peer,metac-Gemini-Exp-1206,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236045,22.602396837087927,spot_baseline,metac-Gemini-Exp-1206,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236045,19.824239086008483,baseline,metac-Gemini-Exp-1206,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236047,0.2466770267650403,relative_legacy,metac-Llama-3.1,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236047,25.183984722495023,peer,metac-Llama-3.1,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236047,23.247080249115264,baseline,metac-Llama-3.1,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236047,27.05581645075563,spot_baseline,metac-Llama-3.1,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,236047,29.519685482276543,spot_peer,metac-Llama-3.1,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,237476,-10.73093649624541,spot_baseline,NextWorldLab,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,237476,-42.73206199171841,peer,NextWorldLab,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,237476,-0.6943168147612784,relative_legacy,NextWorldLab,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,237476,-8.871266785925462,baseline,NextWorldLab,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,237476,-51.51113781475994,spot_peer,NextWorldLab,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,239758,-0.5853011864008764,relative_legacy,metac-perplexity,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,239758,-3.919134160615841,baseline,metac-perplexity,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,239758,-33.92179491612706,peer,metac-perplexity,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,239758,-37.998848254099535,spot_peer,metac-perplexity,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,239758,-4.429809016578184,spot_baseline,metac-perplexity,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,239759,0.1698478258045806,relative_legacy,metac-exa,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,239759,20.16823666431344,peer,metac-exa,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,239759,24.023874750704383,spot_baseline,metac-exa,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,239759,21.245197545552266,baseline,metac-exa,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,239759,23.01791666164368,spot_peer,metac-exa,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,240416,-18.43764044352247,peer,metac-o1-preview,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,240416,3.694058513554032,spot_baseline,metac-o1-preview,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,240416,-20.57783101967424,spot_peer,metac-o1-preview,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,240416,3.2597914390862126,baseline,metac-o1-preview,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,240416,-0.3686573338591576,relative_legacy,metac-o1-preview,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,246118,19.483795792247477,baseline,laylaps,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,246118,0.1318526582112753,relative_legacy,laylaps,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,246118,19.969665180484437,spot_peer,laylaps,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,246118,22.602396837087927,spot_baseline,laylaps,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,246118,17.015674869360012,peer,laylaps,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,247214,-38.328321377803086,spot_peer,ajf-bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,247214,-4.27034395142923,baseline,ajf-bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,247214,-35.97044589436011,peer,ajf-bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,247214,-0.6118454820110353,relative_legacy,ajf-bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,247214,-4.583450791664499,spot_baseline,ajf-bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,250015,-13.738846654423083,spot_baseline,metac-deepseek-r1,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,250015,-41.68710647509448,peer,metac-deepseek-r1,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,250015,-0.6473547549263334,relative_legacy,metac-deepseek-r1,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,250015,-57.96137281808272,spot_peer,metac-deepseek-r1,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,250015,-9.879379856914085,baseline,metac-deepseek-r1,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264059,19.969665180484437,spot_peer,wunderplumb,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264059,22.602396837087927,spot_baseline,wunderplumb,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264059,19.27693113851838,peer,wunderplumb,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264059,21.83268853990005,baseline,wunderplumb,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264059,0.1584837261677903,relative_legacy,wunderplumb,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264225,31.520187429946883,peer,KevinTestBot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264225,0.3716270319301072,relative_legacy,KevinTestBot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264225,33.333333333333336,spot_baseline,KevinTestBot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264225,24.494786991013424,baseline,KevinTestBot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264225,42.981343909762295,spot_peer,KevinTestBot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264332,-0.5092740228028313,relative_legacy,krm-bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264332,-5.434601191885103,baseline,krm-bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264332,-31.95991020072382,peer,krm-bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264332,-7.627289683196034,spot_baseline,krm-bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264332,-44.855602822447935,spot_peer,krm-bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264891,27.185847628752423,spot_baseline,swingswish,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264891,29.79852747280542,spot_peer,swingswish,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264891,0.2992898147022077,relative_legacy,swingswish,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264891,29.71369696672466,peer,swingswish,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,264891,26.97952951122746,baseline,swingswish,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,265212,14.096055842590632,baseline,4Shadower,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,265212,0.0378780352761208,relative_legacy,4Shadower,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,265212,10.959147584752042,spot_peer,4Shadower,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,265212,18.400561184172908,spot_baseline,4Shadower,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,265212,8.282570192491427,peer,4Shadower,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,265835,19.96966518048441,spot_peer,jonahsingerbot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,265835,17.055329972098413,baseline,jonahsingerbot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,265835,14.95866091513573,peer,jonahsingerbot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,265835,0.1333114399396926,relative_legacy,jonahsingerbot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,265835,22.602396837087927,spot_baseline,jonahsingerbot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,266158,22.89167077134816,peer,bean_bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,266158,22.461334916038325,baseline,bean_bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,266158,25.517824878765907,spot_baseline,bean_bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,266158,26.22157930530427,spot_peer,bean_bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35585,What will the flash consumer confidence in the Euro Area be for March 2025?,2025-03-15 15:49:25.675638+00,266158,0.2081407959058749,relative_legacy,bean_bot,True,-14.6 to -14.3,2025-03-17 15:00:00+00,2025-03-17 15:00:00+00,1.0,2025-03-17 15:00:00+00,36148 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,185699,-1.5441842896083298,relative_legacy,MWG,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,185699,-30.10299956639812,spot_baseline,MWG,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,185699,-26.03790640081668,baseline,MWG,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,185699,-106.06896276875712,peer,MWG,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,185699,-122.71632400182324,spot_peer,MWG,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,189869,-15.777313118677975,baseline,VeritasAI,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,189869,-86.20294272041218,peer,VeritasAI,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,189869,-1.2694536213273424,relative_legacy,VeritasAI,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,189869,-16.771232748291066,spot_baseline,VeritasAI,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,189869,-91.08856835594558,spot_peer,VeritasAI,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,191026,32.63358609287515,spot_baseline,manticAI,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,191026,26.117467374817547,spot_peer,manticAI,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,191026,30.13239459568581,baseline,manticAI,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,191026,24.087920239003417,peer,manticAI,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,191026,0.2583542538136674,relative_legacy,manticAI,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,191935,54.78084061392682,spot_peer,pgodzinai,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,191935,0.5316327877411015,relative_legacy,pgodzinai,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,191935,44.715803134221936,spot_baseline,pgodzinai,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,191935,39.56293346215383,peer,pgodzinai,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,191935,32.277894210091496,baseline,pgodzinai,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,191975,11.15614152348459,baseline,jkraybill_bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,191975,-13.2732335216911,spot_peer,jkraybill_bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,191975,16.029573938680418,spot_baseline,jkraybill_bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,191975,-0.1468317649718376,relative_legacy,jkraybill_bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,191975,-9.237804585992366,peer,jkraybill_bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,192075,37.39554278619962,peer,CumulativeBot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,192075,45.85432022669041,spot_peer,CumulativeBot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,192075,40.9530863094122,spot_baseline,CumulativeBot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,192075,0.4768446185555756,relative_legacy,CumulativeBot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,192075,33.21087083460882,baseline,CumulativeBot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,192418,73.70619718287104,peer,InstitutPelFutur,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,192418,0.9381569902906092,relative_legacy,InstitutPelFutur,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,192418,75.73111763396625,spot_peer,InstitutPelFutur,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,192418,53.5467872588358,spot_baseline,InstitutPelFutur,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,192418,52.2239497931567,baseline,InstitutPelFutur,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,192924,-1.5482817759480918,relative_legacy,acm_bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,192924,-24.24308782261077,baseline,acm_bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,192924,-105.8901514686573,peer,acm_bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,192924,-112.896487294711,spot_peer,acm_bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,192924,-25.96373105057561,spot_baseline,acm_bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,218666,23.855385742275917,baseline,GreeneiBot2,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,218666,12.964395031879713,peer,GreeneiBot2,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,218666,0.1201564821364904,relative_legacy,GreeneiBot2,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,218666,14.82924044938756,spot_peer,GreeneiBot2,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,218666,27.875360095282893,spot_baseline,GreeneiBot2,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,220077,39.67359651774453,baseline,mmBot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,220077,39.79400086720376,spot_baseline,mmBot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,220077,43.10455182472043,spot_peer,mmBot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,220077,0.4925856777653026,relative_legacy,mmBot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,220077,40.83274765100442,peer,mmBot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,222631,91.52916817125072,spot_peer,Grizeu_Bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,222631,0.8902690301063159,relative_legacy,Grizeu_Bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,222631,65.11214449142254,peer,Grizeu_Bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,222631,42.832664885640426,baseline,Grizeu_Bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,222631,60.20599913279624,spot_baseline,Grizeu_Bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,224797,58.39630992781526,spot_peer,cookics_bot_TEST,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,224797,0.6600327021363871,relative_legacy,cookics_bot_TEST,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,224797,40.959611430624975,baseline,cookics_bot_TEST,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,224797,52.03718016558661,peer,cookics_bot_TEST,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,224797,46.23979978989562,spot_baseline,cookics_bot_TEST,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,227188,12.566672082012223,baseline,ProfessorSP,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,227188,17.609125905568124,spot_baseline,ProfessorSP,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,227188,-9.52596698753316,spot_peer,ProfessorSP,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,227188,-0.1167218081592273,relative_legacy,ProfessorSP,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,227188,-6.799147752231447,peer,ProfessorSP,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236037,0.8114777740461985,relative_legacy,metac-o1,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236037,50.6808647994532,spot_baseline,metac-o1,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236037,46.746970583290576,baseline,metac-o1,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236037,63.70110171753653,peer,metac-o1,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236037,68.9321166851741,spot_peer,metac-o1,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236038,43.13637641589872,spot_baseline,metac-gpt-4o,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236038,51.033871214503336,spot_peer,metac-gpt-4o,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236038,39.96414538192979,baseline,metac-gpt-4o,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236038,0.5815515931439832,relative_legacy,metac-gpt-4o,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236038,47.36498028719679,peer,metac-gpt-4o,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236040,47.95552018102322,baseline,metac-claude-3-5-sonnet-latest,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236040,71.70903377727043,spot_peer,metac-claude-3-5-sonnet-latest,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236040,0.8484486402749639,relative_legacy,metac-claude-3-5-sonnet-latest,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236040,51.85139398778874,spot_baseline,metac-claude-3-5-sonnet-latest,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236040,66.44937410762127,peer,metac-claude-3-5-sonnet-latest,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236041,0.2951986994959188,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236041,31.33750516894816,baseline,metac-claude-3-5-sonnet-20240620,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236041,33.845649360460484,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236041,28.99291827172843,spot_peer,metac-claude-3-5-sonnet-20240620,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236041,26.8351242945897,peer,metac-claude-3-5-sonnet-20240620,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236043,50.3988517212494,peer,metac-grok-2-1212,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236043,54.48530709317245,spot_peer,metac-grok-2-1212,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236043,44.5912295150962,spot_baseline,metac-grok-2-1212,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236043,0.6251242019251505,relative_legacy,metac-grok-2-1212,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236043,41.194923750599,baseline,metac-grok-2-1212,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236045,26.874429520639648,baseline,metac-Gemini-Exp-1206,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236045,16.827218606475718,peer,metac-Gemini-Exp-1206,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236045,0.1604467275887973,relative_legacy,metac-Gemini-Exp-1206,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236045,18.363978124361584,spot_peer,metac-Gemini-Exp-1206,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236045,29.365326660522683,spot_baseline,metac-Gemini-Exp-1206,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236047,19.04750465800956,spot_baseline,metac-Llama-3.1,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236047,-5.4760969243607605,peer,metac-Llama-3.1,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236047,-6.113614196704816,spot_peer,metac-Llama-3.1,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236047,-0.1478359204170506,relative_legacy,metac-Llama-3.1,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,236047,17.219079605419942,baseline,metac-Llama-3.1,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,237476,-79.44099424139051,spot_peer,NextWorldLab,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,237476,-11.861534322942717,spot_baseline,NextWorldLab,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,237476,-10.5833042577646,baseline,NextWorldLab,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,237476,-70.88808065188735,peer,NextWorldLab,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,237476,-1.0586012170057597,relative_legacy,NextWorldLab,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,239758,-94.11184204927324,spot_peer,metac-perplexity,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,239758,-16.647464839655182,baseline,metac-perplexity,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,239758,-1.2945632564013234,relative_legacy,metac-perplexity,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,239758,-18.04560644581313,spot_baseline,metac-perplexity,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,239758,-87.23235556641544,peer,metac-perplexity,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,239759,0.1133896315638224,relative_legacy,metac-exa,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,239759,14.82924044938756,spot_peer,metac-exa,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,239759,25.655491614411304,baseline,metac-exa,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,239759,13.604663302167772,peer,metac-exa,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,239759,27.875360095282893,spot_baseline,metac-exa,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,240416,56.749993837766766,spot_peer,metac-o1-preview,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,240416,52.33278710233112,peer,metac-o1-preview,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,240416,41.93232529666837,baseline,metac-o1-preview,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,240416,0.6536506212941288,relative_legacy,metac-o1-preview,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,240416,45.545842796324216,spot_baseline,metac-o1-preview,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,246118,-57.0924328955135,peer,laylaps,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,246118,-9.69100130080564,spot_baseline,laylaps,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,246118,-74.29170765529291,spot_peer,laylaps,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,246118,-0.831683597054362,relative_legacy,laylaps,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,246118,-7.473192907664471,baseline,laylaps,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,247214,3.1905629536824502,baseline,ajf-bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,247214,-42.53962415667728,peer,ajf-bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,247214,-0.6610409106416476,relative_legacy,ajf-bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,247214,-43.38682569044266,spot_peer,ajf-bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,247214,3.336058997423506,spot_baseline,ajf-bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,250015,34.05923525498897,peer,metac-deepseek-r1,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,250015,0.403461238859667,relative_legacy,metac-deepseek-r1,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,250015,37.45156649183468,spot_peer,metac-deepseek-r1,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,250015,37.41114818780301,spot_baseline,metac-deepseek-r1,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,250015,33.89219599728927,baseline,metac-deepseek-r1,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264059,-0.1180772898926031,relative_legacy,wunderplumb,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264059,17.609125905568124,spot_baseline,wunderplumb,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264059,12.69993413673048,baseline,wunderplumb,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264059,-6.854622390684232,peer,wunderplumb,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264059,-9.52596698753316,spot_peer,wunderplumb,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264225,-26.760624017703147,spot_baseline,KevinTestBot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264225,-87.14091175466565,peer,KevinTestBot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264225,-20.35703179172693,baseline,KevinTestBot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264225,-114.78700461204028,spot_peer,KevinTestBot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264225,-1.2489582776069674,relative_legacy,KevinTestBot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264332,0.3399300797835755,relative_legacy,krm-bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264332,26.842575767715587,baseline,krm-bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264332,26.164726409639364,peer,krm-bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264332,36.64479288777579,spot_baseline,krm-bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264332,35.633495526607184,spot_peer,krm-bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264891,-59.64342699305519,spot_peer,swingswish,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264891,-3.0973309317740365,baseline,swingswish,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264891,-0.7978371735011422,relative_legacy,swingswish,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264891,-52.42682405142388,peer,swingswish,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,264891,-3.516441706325095,spot_baseline,swingswish,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,265212,39.79400086720376,spot_baseline,4Shadower,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,265212,0.4419827570099512,relative_legacy,4Shadower,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,265212,31.758556088764305,baseline,4Shadower,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,265212,34.60451036753953,peer,4Shadower,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,265212,43.10455182472043,spot_peer,4Shadower,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,265835,13.764745966719644,baseline,jonahsingerbot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,265835,17.609125905568124,spot_baseline,jonahsingerbot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,265835,-9.52596698753316,spot_peer,jonahsingerbot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,265835,-0.1373286027581163,relative_legacy,jonahsingerbot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,265835,-7.242204718800497,peer,jonahsingerbot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,266158,9.643274665532873e-15,spot_baseline,bean_bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,266158,8.798306972973134e-15,baseline,bean_bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,266158,-46.949471774978285,peer,bean_bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,266158,-0.7291179304849793,relative_legacy,bean_bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35586,Who will win the 2025 GLAAD Media Award for Outstanding Music Artist?,2025-03-15 15:49:25.70957+00,266158,-51.30115994413189,spot_peer,bean_bot,True,Doechii,2025-03-17 18:00:00+00,2025-03-17 18:00:00+00,1.0,2025-03-17 18:00:00+00,36149 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,187708,-112.63128783854631,baseline,twsummerbot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,187708,-44.55877996991482,spot_peer,twsummerbot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,187708,-0.7338723095575397,relative_legacy,twsummerbot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,187708,-33.53070684714073,peer,twsummerbot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,187708,-149.00508536956892,spot_baseline,twsummerbot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,189869,76.66409716509025,peer,VeritasAI,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,189869,0.7884208615286726,relative_legacy,VeritasAI,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,189869,25.067799125412375,baseline,VeritasAI,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,189869,80.33123636950256,spot_peer,VeritasAI,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,191026,-37.85350411121807,spot_peer,manticAI,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,191026,-139.59286763311394,spot_baseline,manticAI,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,191026,-129.83723184047798,baseline,manticAI,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,191026,-0.7800176128568228,relative_legacy,manticAI,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,191026,-35.88884194650049,peer,manticAI,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,191935,7.711521277815978,spot_peer,pgodzinai,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,191935,-54.1451297140069,baseline,pgodzinai,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,191935,5.520616827531504,peer,pgodzinai,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,191935,-0.1730724501423482,relative_legacy,pgodzinai,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,191935,-75.6330919033137,spot_baseline,pgodzinai,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,191975,41.67000714388279,peer,jkraybill_bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,191975,53.69096903115048,spot_peer,jkraybill_bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,191975,-11.091590140185058,spot_baseline,jkraybill_bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,191975,-8.587746431023177,baseline,jkraybill_bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,191975,0.3162058779627608,relative_legacy,jkraybill_bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,192075,-60.335885186320006,baseline,CumulativeBot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,192075,-0.2322030739341707,relative_legacy,CumulativeBot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,192075,-83.65012677171204,spot_baseline,CumulativeBot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,192075,2.000175464682625,spot_peer,CumulativeBot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,192075,1.4438690386871909,peer,CumulativeBot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,192418,-73.69655941662063,spot_baseline,InstitutPelFutur,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,192418,-71.66293961614248,baseline,InstitutPelFutur,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,192418,-0.1595046076750979,relative_legacy,InstitutPelFutur,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,192418,9.091109478619291,spot_peer,InstitutPelFutur,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,192418,8.689205999602311,peer,InstitutPelFutur,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,192924,-69.19687109496938,baseline,acm_bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,192924,-73.69655941662063,spot_baseline,acm_bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,192924,-0.1671070542870776,relative_legacy,acm_bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,192924,8.002360381404094,peer,acm_bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,192924,9.091109478619291,spot_peer,acm_bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,204737,-21.008910809530963,baseline,SynapseSeer,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,204737,-24.12704315421373,spot_baseline,SynapseSeer,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,204737,44.404495763154976,spot_peer,SynapseSeer,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,204737,0.2645734162472656,relative_legacy,SynapseSeer,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,204737,38.618343237608855,peer,SynapseSeer,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,218666,-1.0183655453686633,relative_legacy,GreeneiBot2,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,218666,-147.8690069480809,baseline,GreeneiBot2,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,218666,-53.06789620913898,peer,GreeneiBot2,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,218666,-62.149017412263966,spot_peer,GreeneiBot2,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,218666,-173.6965594166206,spot_baseline,GreeneiBot2,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,220077,-32.58169329916424,spot_peer,mmBot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,220077,-132.19280948873623,spot_baseline,mmBot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,220077,-131.71646239190562,baseline,mmBot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,220077,-33.104998622340034,peer,mmBot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,220077,-0.7283253599425877,relative_legacy,mmBot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,222631,24.934373794198613,spot_peer,Grizeu_Bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,222631,-40.60580481379278,baseline,Grizeu_Bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,222631,19.73676797700815,peer,Grizeu_Bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,222631,0.0069757034539424,relative_legacy,Grizeu_Bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,224797,-152.6315974436256,baseline,cookics_bot_TEST,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,224797,-173.6965594166206,spot_baseline,cookics_bot_TEST,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,224797,-62.149017412263966,spot_peer,cookics_bot_TEST,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,224797,-1.045784571465325,relative_legacy,cookics_bot_TEST,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,224797,-54.94931145782381,peer,cookics_bot_TEST,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,227188,13.750352374993504,spot_baseline,ProfessorSP,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,227188,9.937480652130596,baseline,ProfessorSP,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,227188,51.59493097176027,peer,ProfessorSP,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,227188,0.4712606178551841,relative_legacy,ProfessorSP,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,227188,71.38840040112396,spot_peer,ProfessorSP,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236037,-173.6965594166206,spot_baseline,metac-o1,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236037,-1.0905378518661124,relative_legacy,metac-o1,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236037,-57.96975241786526,peer,metac-o1,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236037,-160.07773607959325,baseline,metac-o1,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236037,-62.149017412263966,spot_peer,metac-o1,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236038,9.091109478619291,spot_peer,metac-gpt-4o,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236038,-73.69655941662063,spot_baseline,metac-gpt-4o,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236038,-68.04710712567834,baseline,metac-gpt-4o,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236038,7.977567874853622,peer,metac-gpt-4o,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236038,-0.1688951568251697,relative_legacy,metac-gpt-4o,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236040,0.036217126029461,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236040,24.934373794198613,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236040,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236040,-47.490904984346045,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236040,22.656231833714987,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236041,-68.01731679874797,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236041,7.976256654618394,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236041,-0.1689419689754176,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236041,9.091109478619291,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236041,-73.69655941662063,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236043,-67.98408179558017,baseline,metac-grok-2-1212,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236043,-73.69655941662063,spot_baseline,metac-grok-2-1212,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236043,9.091109478619291,spot_peer,metac-grok-2-1212,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236043,-0.1689849168411626,relative_legacy,metac-grok-2-1212,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236043,7.97088416237472,peer,metac-grok-2-1212,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236045,-91.30332156309598,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236045,-9.64749496964826,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236045,-0.4091039816636043,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236045,-9.261176665742328,peer,metac-Gemini-Exp-1206,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236045,-100.0,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236047,-0.1670981170213167,relative_legacy,metac-Llama-3.1,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236047,-56.60356280683052,baseline,metac-Llama-3.1,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236047,-73.69655941662063,spot_baseline,metac-Llama-3.1,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236047,9.091109478619291,spot_peer,metac-Llama-3.1,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,236047,7.1000217806893815,peer,metac-Llama-3.1,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,237476,50.76391225640287,spot_peer,NextWorldLab,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,237476,-15.200309344504996,spot_baseline,NextWorldLab,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,237476,-13.486116789750971,baseline,NextWorldLab,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,237476,44.89712151621328,peer,NextWorldLab,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,237476,0.3500446015297728,relative_legacy,NextWorldLab,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,239758,-92.0448119332776,baseline,metac-perplexity,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,239758,-9.361062394438308,peer,metac-perplexity,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,239758,-0.4110642014435683,relative_legacy,metac-perplexity,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,239758,-9.64749496964826,spot_peer,metac-perplexity,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,239758,-100.0,spot_baseline,metac-perplexity,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,239759,0.2130268394244608,relative_legacy,metac-exa,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,239759,35.2892415269931,peer,metac-exa,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,239759,-29.629496658414364,baseline,metac-exa,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,239759,-32.19280948873623,spot_baseline,metac-exa,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,239759,38.65843359171902,spot_peer,metac-exa,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,240416,-0.1691278850849537,relative_legacy,metac-o1-preview,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,240416,9.091109478619291,spot_peer,metac-o1-preview,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,240416,-73.69655941662063,spot_baseline,metac-o1-preview,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,240416,7.939862592037037,peer,metac-o1-preview,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,240416,-67.76385353683175,baseline,metac-o1-preview,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,241715,0.0034804269694429,relative_legacy,CatrachoCaster,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,241715,19.08086149935705,peer,CatrachoCaster,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,241715,-39.021602659134,baseline,CatrachoCaster,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,241715,-51.45731728297583,spot_baseline,CatrachoCaster,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,241715,24.934373794198613,spot_peer,CatrachoCaster,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,246118,0.1516829184054836,relative_legacy,laylaps,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,246118,29.82642432429668,peer,laylaps,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,246118,-24.73415021833843,baseline,laylaps,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,246118,-32.19280948873623,spot_baseline,laylaps,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,246118,38.65843359171902,spot_peer,laylaps,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,247214,-9.64749496964826,spot_peer,ajf-bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,247214,-9.992825931044324,peer,ajf-bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,247214,-100.0,spot_baseline,ajf-bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,247214,-94.84639758202763,baseline,ajf-bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,247214,-0.4140813773504964,relative_legacy,ajf-bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,250015,50.76391225640287,spot_peer,metac-deepseek-r1,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,250015,45.16555574782889,peer,metac-deepseek-r1,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,250015,-13.578268390141728,baseline,metac-deepseek-r1,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,250015,-15.200309344504996,spot_baseline,metac-deepseek-r1,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,250015,0.3535492175768823,relative_legacy,metac-deepseek-r1,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264059,-32.19280948873623,spot_baseline,wunderplumb,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264059,-23.320184547880128,baseline,wunderplumb,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264059,28.00981058908081,peer,wunderplumb,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264059,0.1395503791438051,relative_legacy,wunderplumb,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264059,38.65843359171902,spot_peer,wunderplumb,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264225,-340.4763991922133,spot_peer,KevinTestBot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264225,-258.50171455121165,peer,KevinTestBot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264225,-428.687277114757,baseline,KevinTestBot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264225,-564.3856189774725,spot_baseline,KevinTestBot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264225,-3.892266183409234,relative_legacy,KevinTestBot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264332,-51.45731728297583,spot_baseline,krm-bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264332,24.934373794198613,spot_peer,krm-bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264332,18.253729619279955,peer,krm-bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264332,-37.60854809767144,baseline,krm-bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264332,0.0,relative_legacy,krm-bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264778,18.530939968618824,peer,andrewsiah,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264778,-38.09071050791425,baseline,andrewsiah,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264778,0.0,relative_legacy,andrewsiah,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264778,-51.45731728297583,spot_baseline,andrewsiah,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264778,24.934373794198613,spot_peer,andrewsiah,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264891,-54.46177745585733,peer,swingswish,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264891,-173.6965594166206,spot_baseline,swingswish,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264891,-151.42259921345195,baseline,swingswish,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264891,-1.038824167446764,relative_legacy,swingswish,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,264891,-62.149017412263966,spot_peer,swingswish,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,265212,-0.3760824899426808,relative_legacy,4Shadower,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,265212,-100.0,spot_baseline,4Shadower,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,265212,-9.64749496964826,spot_peer,4Shadower,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,265212,-7.632255403367537,peer,4Shadower,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,265212,-79.46619226535161,baseline,4Shadower,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,265835,38.65843359171902,spot_peer,jonahsingerbot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,265835,-32.19280948873623,spot_baseline,jonahsingerbot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,265835,-24.991886164161176,baseline,jonahsingerbot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,265835,0.1536836829943095,relative_legacy,jonahsingerbot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,265835,30.099273126281904,peer,jonahsingerbot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,266158,38.65843359171902,spot_peer,bean_bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,266158,0.209901255386659,relative_legacy,bean_bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,266158,35.00833834365693,peer,bean_bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,266158,-32.19280948873623,spot_baseline,bean_bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35587,Will Dragon Age: The Veilguard win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:25.748385+00,266158,-29.385956300375145,baseline,bean_bot,True,yes,2025-03-17 20:00:00+00,2025-03-17 20:00:00+00,0.8,2025-03-17 20:00:00+00,36150 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,187708,6.906071337616265,peer,twsummerbot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,187708,11.611261124294732,spot_peer,twsummerbot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,187708,0.0884438603924341,relative_legacy,twsummerbot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,187708,63.41285575250407,spot_baseline,twsummerbot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,187708,37.71629118153719,baseline,twsummerbot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,189869,-0.7787101452504497,relative_legacy,VeritasAI,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,189869,-54.43729114815878,peer,VeritasAI,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,189869,-30.947194980260075,baseline,VeritasAI,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,189869,-56.49833610843792,spot_peer,VeritasAI,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,191026,80.24000401148393,spot_baseline,manticAI,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,191026,0.2944686526103789,relative_legacy,manticAI,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,191026,22.382439964455813,peer,manticAI,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,191026,23.59894289610904,spot_peer,manticAI,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,191026,74.7087080914953,baseline,manticAI,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,191935,56.55971758542251,spot_baseline,pgodzinai,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,191935,43.55024267743938,baseline,pgodzinai,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,191935,6.729076798058278,spot_peer,pgodzinai,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,191935,0.0617301197702988,relative_legacy,pgodzinai,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,191935,5.249352789707402,peer,pgodzinai,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,191975,35.31350603529371,spot_baseline,jkraybill_bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,191975,-6.411073555033294,peer,jkraybill_bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,191975,-0.1019184864973753,relative_legacy,jkraybill_bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,191975,27.20576778601373,baseline,jkraybill_bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,191975,-8.40675126975897,spot_peer,jkraybill_bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,192075,-26.931011995338253,spot_peer,CumulativeBot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,192075,-0.3286937549801944,relative_legacy,CumulativeBot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,192075,-22.430251978184643,peer,CumulativeBot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,192075,7.800948409743229,baseline,CumulativeBot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,192075,9.310940439148116,spot_baseline,CumulativeBot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,192418,26.94847900610563,peer,InstitutPelFutur,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,192418,82.75786507071616,baseline,InstitutPelFutur,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,192418,84.79969065549501,spot_baseline,InstitutPelFutur,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,192418,26.84726944712919,spot_peer,InstitutPelFutur,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,192418,0.3477822638426205,relative_legacy,InstitutPelFutur,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,192924,11.373999961397526,peer,acm_bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,192924,59.937678201315286,baseline,acm_bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,192924,11.478730122335692,spot_peer,acm_bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,192924,63.22682154995129,spot_baseline,acm_bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,192924,0.1371021013468204,relative_legacy,acm_bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,204737,26.363723209286857,baseline,SynapseSeer,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,204737,29.395897902869443,spot_baseline,SynapseSeer,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,204737,-12.62246281220325,spot_peer,SynapseSeer,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,204737,-0.1717180189072838,relative_legacy,SynapseSeer,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,204737,-11.068274697302314,peer,SynapseSeer,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,218666,0.3025864074075759,relative_legacy,GreeneiBot2,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,218666,25.698902441210763,spot_peer,GreeneiBot2,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,218666,83.18772411916731,spot_baseline,GreeneiBot2,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,218666,22.689540244554728,peer,GreeneiBot2,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,218666,72.65534565091984,baseline,GreeneiBot2,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,220077,58.496250072115615,spot_baseline,mmBot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,220077,8.177516723884235,peer,mmBot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,220077,0.0910812582294763,relative_legacy,mmBot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,220077,58.30909651059391,baseline,mmBot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,220077,8.108664998861622,spot_peer,mmBot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,222631,-12.126427936917288,peer,Grizeu_Bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,222631,21.729788525967948,baseline,Grizeu_Bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,222631,-0.1837227441824686,relative_legacy,Grizeu_Bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,222631,-14.825533330654382,spot_peer,Grizeu_Bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,222631,26.303440583379377,spot_baseline,Grizeu_Bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,224797,-13.107349085756894,peer,cookics_bot_TEST,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,224797,-0.2005391046787866,relative_legacy,cookics_bot_TEST,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,224797,-14.825533330654382,spot_peer,cookics_bot_TEST,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,224797,26.303440583379377,spot_baseline,cookics_bot_TEST,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,224797,23.71874182071359,baseline,cookics_bot_TEST,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,227188,48.54268271702416,spot_baseline,ProfessorSP,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,227188,1.0177309849249472,spot_peer,ProfessorSP,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,227188,0.0,relative_legacy,ProfessorSP,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,227188,0.8553542679134342,peer,ProfessorSP,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,227188,37.54456840388475,baseline,ProfessorSP,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236037,37.85116232537298,spot_baseline,metac-o1,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236037,35.25481382146793,baseline,metac-o1,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236037,-6.59892170865202,spot_peer,metac-o1,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236037,-0.1002429034677279,relative_legacy,metac-o1,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236037,-5.828585725592388,peer,metac-o1,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236038,-32.19280948873623,spot_baseline,metac-gpt-4o,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236038,-30.06080474780744,baseline,metac-gpt-4o,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236038,-52.5955107735093,peer,metac-gpt-4o,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236038,-0.7546440903718524,relative_legacy,metac-gpt-4o,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236038,-56.49833610843792,spot_peer,metac-gpt-4o,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236040,8.108664998861622,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236040,54.57396513673605,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236040,7.938489456518719,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236040,0.0920491136048095,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236041,1.3015746534421826,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236041,45.29118623463256,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236041,48.54268271702416,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236041,1.0177309849249472,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236041,-0.0007923721519657,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236043,14.145135582986804,peer,metac-grok-2-1212,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236043,0.1788846405906653,relative_legacy,metac-grok-2-1212,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236043,14.741790782445342,spot_peer,metac-grok-2-1212,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236043,63.24870763663735,baseline,metac-grok-2-1212,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236045,7.283088019079981e-06,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236045,44.78385890843284,baseline,metac-Gemini-Exp-1206,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236045,1.265999455052718,peer,metac-Gemini-Exp-1206,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236045,1.0177309849249472,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236045,48.54268271702416,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236047,1.0177309849249472,spot_peer,metac-Llama-3.1,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236047,5.667087122359685e-06,relative_legacy,metac-Llama-3.1,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236047,44.59484152342167,baseline,metac-Llama-3.1,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,236047,1.254165606273383,peer,metac-Llama-3.1,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,237476,53.11570024695837,baseline,NextWorldLab,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,237476,0.0903802721318313,relative_legacy,NextWorldLab,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,237476,7.678827816850843,peer,NextWorldLab,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,237476,8.108664998861622,spot_peer,NextWorldLab,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,237476,58.496250072115615,spot_baseline,NextWorldLab,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,239758,58.496250072115615,spot_baseline,metac-perplexity,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,239758,54.47865072460361,baseline,metac-perplexity,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,239758,7.914488543464773,peer,metac-perplexity,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,239758,0.0920238679542407,relative_legacy,metac-perplexity,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,239758,8.108664998861622,spot_peer,metac-perplexity,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,239759,0.0920126299422166,relative_legacy,metac-exa,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,239759,54.43765952612569,baseline,metac-exa,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,239759,7.906148118913414,peer,metac-exa,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,239759,8.108664998861622,spot_peer,metac-exa,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,239759,58.496250072115615,spot_baseline,metac-exa,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,240416,1.0177309849249472,spot_peer,metac-o1-preview,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,240416,-0.0001166350889304,relative_legacy,metac-o1-preview,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,240416,1.2732765491791078,peer,metac-o1-preview,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,240416,44.92877795180456,baseline,metac-o1-preview,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,240416,48.54268271702416,spot_baseline,metac-o1-preview,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,241715,67.80719051126377,spot_baseline,CatrachoCaster,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,241715,10.827517892418292,peer,CatrachoCaster,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,241715,0.1408969806543628,relative_legacy,CatrachoCaster,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,241715,14.741790782445342,spot_peer,CatrachoCaster,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,241715,49.59290168082555,baseline,CatrachoCaster,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,246118,39.44043790873263,baseline,laylaps,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,246118,1.0177309849249472,spot_peer,laylaps,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,246118,0.0,relative_legacy,laylaps,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,246118,0.9357780654007176,peer,laylaps,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,247214,-6.59892170865202,spot_peer,ajf-bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,247214,36.03490216354629,baseline,ajf-bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,247214,37.85116232537298,spot_baseline,ajf-bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,247214,-5.878653438629115,peer,ajf-bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,247214,-0.1034537354743305,relative_legacy,ajf-bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,250015,-15.200309344505014,spot_baseline,metac-deepseek-r1,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,250015,-0.5734455828068158,relative_legacy,metac-deepseek-r1,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,250015,-39.73626074485711,peer,metac-deepseek-r1,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,250015,-13.676683734243374,baseline,metac-deepseek-r1,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,250015,-44.39285744375409,spot_peer,metac-deepseek-r1,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264059,-14.825533330654382,spot_peer,wunderplumb,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264059,-0.1678196800778537,relative_legacy,wunderplumb,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264059,26.303440583379377,spot_baseline,wunderplumb,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264059,-11.128003106875491,peer,wunderplumb,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264059,19.848855267291047,baseline,wunderplumb,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264225,26.84726944712919,spot_peer,KevinTestBot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264225,67.76243354516531,baseline,KevinTestBot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264225,21.551769873782405,peer,KevinTestBot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264225,0.2897254780042003,relative_legacy,KevinTestBot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264225,84.79969065549501,spot_baseline,KevinTestBot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264332,0.2829127190814481,relative_legacy,krm-bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264332,84.79969065549501,spot_baseline,krm-bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264332,26.84726944712919,spot_peer,krm-bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264332,66.16903165679037,baseline,krm-bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264332,21.025525167667727,peer,krm-bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264778,13.750352374993504,spot_baseline,andrewsiah,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264778,-23.76836929903298,spot_peer,andrewsiah,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264778,-0.2755636829639549,relative_legacy,andrewsiah,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264778,-18.74718943033497,peer,andrewsiah,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264778,10.890612112658568,baseline,andrewsiah,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264891,29.31443252701072,peer,swingswish,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264891,92.5999418556223,spot_baseline,swingswish,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264891,32.40417829990752,spot_peer,swingswish,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264891,0.3941401552301702,relative_legacy,swingswish,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,264891,82.84073083725886,baseline,swingswish,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,265212,76.85845190698387,baseline,4Shadower,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,265212,92.5999418556223,spot_baseline,4Shadower,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,265212,32.40417829990752,spot_peer,4Shadower,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,265212,0.3656776305472244,relative_legacy,4Shadower,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,265212,27.053228542445176,peer,4Shadower,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,265835,0.0,relative_legacy,jonahsingerbot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,265835,1.0177309849249472,spot_peer,jonahsingerbot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,265835,39.62153109360863,baseline,jonahsingerbot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,265835,0.9454514321403884,peer,jonahsingerbot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,265835,48.54268271702416,spot_baseline,jonahsingerbot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,266158,26.303440583379377,spot_baseline,bean_bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,266158,-0.2056017195761661,relative_legacy,bean_bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,266158,-13.419691958031128,peer,bean_bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,266158,24.31686293815668,baseline,bean_bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35588,Will Paper Mario: The Thousand-Year Door win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.115749+00,266158,-14.825533330654382,spot_peer,bean_bot,True,no,2025-03-17 22:00:00+00,2025-03-17 22:00:00+00,0.8,2025-03-17 22:00:00+00,36151 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,185699,0.1552739387559541,relative_legacy,MWG,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,185699,21.981258470506205,peer,MWG,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,185699,-0.1877312530290374,baseline,MWG,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,185699,-0.2236919333411197,spot_baseline,MWG,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,185699,22.49911257867811,spot_peer,MWG,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,187708,-0.3064429242922741,relative_legacy,twsummerbot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,187708,-15.851762848167178,baseline,twsummerbot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,187708,-15.826279956524775,peer,twsummerbot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,187708,-31.752978124289523,spot_peer,twsummerbot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,187708,-29.637255457748093,spot_baseline,twsummerbot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,189869,5.598491861914617,peer,VeritasAI,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,189869,-10.736479753632096,spot_baseline,VeritasAI,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,189869,3.108714067657209,spot_peer,VeritasAI,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,189869,-9.192087912769225,baseline,VeritasAI,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,189869,-0.0716056142918164,relative_legacy,VeritasAI,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,191026,-21.758647358588348,baseline,manticAI,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,191026,-24.21444340499478,spot_baseline,manticAI,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,191026,-21.750827548178727,spot_peer,manticAI,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,191026,-0.3701347128593288,relative_legacy,manticAI,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,191026,-16.625076702210407,peer,manticAI,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,191935,46.702615468773374,spot_peer,pgodzinai,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,191935,12.898590739021284,spot_baseline,pgodzinai,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,191935,0.102337311229711,baseline,pgodzinai,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,191935,0.3705381611969829,peer,pgodzinai,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,191935,0.0037690960615929,relative_legacy,pgodzinai,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,191975,-46.518777799967474,spot_baseline,jkraybill_bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,191975,-62.89024173923009,spot_peer,jkraybill_bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,191975,-0.7763537459756764,relative_legacy,jkraybill_bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,191975,-46.68103351440371,peer,jkraybill_bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,191975,-35.71225008948823,baseline,jkraybill_bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,192075,0.3961325495544703,relative_legacy,CumulativeBot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,192075,12.589792318420274,baseline,CumulativeBot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,192075,32.804998382698955,spot_baseline,CumulativeBot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,192075,32.76698139202636,peer,CumulativeBot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,192075,83.41915381540757,spot_peer,CumulativeBot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,192418,-0.1205061382449768,relative_legacy,InstitutPelFutur,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,192418,-2.665201617009034,spot_peer,InstitutPelFutur,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,192418,-13.866892491186018,spot_baseline,InstitutPelFutur,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,192418,-13.18773320055905,baseline,InstitutPelFutur,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,192418,2.815984841340057,peer,InstitutPelFutur,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,192924,-9.730847814070405,spot_baseline,acm_bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,192924,-0.0467883463039484,relative_legacy,acm_bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,192924,-7.735179906983658,baseline,acm_bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,192924,6.338481975470143,peer,acm_bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,192924,4.9635602223446895,spot_peer,acm_bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,218666,-17.690287341588746,baseline,GreeneiBot2,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,218666,-19.769660232859074,peer,GreeneiBot2,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,218666,-0.3574419465034894,relative_legacy,GreeneiBot2,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,218666,-40.519223100497584,spot_peer,GreeneiBot2,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,218666,-34.39000323460206,spot_baseline,GreeneiBot2,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,220077,-25.49982970675275,peer,mmBot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,220077,-28.509720893846865,spot_baseline,mmBot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,220077,-29.673287665133117,spot_peer,mmBot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,220077,-0.4804793841581118,relative_legacy,mmBot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,220077,-27.70950559714824,baseline,mmBot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,222631,-7.811914156507568,peer,Grizeu_Bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,222631,-0.1499652836066252,relative_legacy,Grizeu_Bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,222631,-29.673287665133092,spot_peer,Grizeu_Bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,222631,-28.509720893846865,spot_baseline,Grizeu_Bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,222631,-7.909845435946108,baseline,Grizeu_Bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,224797,-0.1904025449842782,relative_legacy,cookics_bot_TEST,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,224797,-20.226242688916983,spot_baseline,cookics_bot_TEST,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,224797,-14.39475772648732,spot_peer,cookics_bot_TEST,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,224797,-6.972542296807984,peer,cookics_bot_TEST,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,224797,-11.608299247342092,baseline,cookics_bot_TEST,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236037,-4.3183363647211,baseline,metac-o1,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236037,-5.880282340755199,spot_baseline,metac-o1,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236037,12.065767581295551,spot_peer,metac-o1,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236037,0.0289488293311399,relative_legacy,metac-o1,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236037,10.92253971392036,peer,metac-o1,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236038,-4.319906443659185,baseline,metac-gpt-4o,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236038,10.927984094090176,peer,metac-gpt-4o,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236038,0.0289981771713438,relative_legacy,metac-gpt-4o,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236038,12.065767581295551,spot_peer,metac-gpt-4o,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236038,-5.880282340755199,spot_baseline,metac-gpt-4o,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236040,-20.053731957022165,peer,metac-claude-3-5-sonnet-latest,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236040,-28.509720893846865,spot_baseline,metac-claude-3-5-sonnet-latest,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236040,-29.673287665133117,spot_peer,metac-claude-3-5-sonnet-latest,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236040,-0.4008953366453608,relative_legacy,metac-claude-3-5-sonnet-latest,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236040,-20.957328823133576,baseline,metac-claude-3-5-sonnet-latest,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236041,3.482366661099141,spot_peer,metac-claude-3-5-sonnet-20240620,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236041,-7.74472070175989,baseline,metac-claude-3-5-sonnet-20240620,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236041,4.567485558037213,peer,metac-claude-3-5-sonnet-20240620,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236041,-0.0593222158133844,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236041,-10.533898541537676,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236043,-29.673287665133092,spot_peer,metac-grok-2-1212,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236043,-20.96241984564271,baseline,metac-grok-2-1212,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236043,-20.05691178402999,peer,metac-grok-2-1212,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236043,-0.4009840532133804,relative_legacy,metac-grok-2-1212,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236043,-28.509720893846865,spot_baseline,metac-grok-2-1212,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236045,-2.8489972844040463,baseline,metac-Gemini-Exp-1206,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236045,-3.930352567182796,spot_baseline,metac-Gemini-Exp-1206,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236045,15.662331692015623,spot_peer,metac-Gemini-Exp-1206,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236045,0.0643976118539778,relative_legacy,metac-Gemini-Exp-1206,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236045,13.369474789578028,peer,metac-Gemini-Exp-1206,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236047,-9.42471614710068,spot_baseline,metac-Llama-3.1,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236047,-6.925490847094344,baseline,metac-Llama-3.1,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236047,5.528207309383672,spot_peer,metac-Llama-3.1,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236047,-0.0382905481718904,relative_legacy,metac-Llama-3.1,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,236047,6.079681086537509,peer,metac-Llama-3.1,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,237476,13.090066345592284,spot_peer,NextWorldLab,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,237476,-5.324943802069806,spot_baseline,NextWorldLab,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,237476,0.0315924007373667,relative_legacy,NextWorldLab,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,237476,9.51063177950307,peer,NextWorldLab,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,237476,-3.258555940683434,baseline,NextWorldLab,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,239758,-0.9001979454771726,spot_baseline,metac-perplexity,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,239758,0.1228194623511351,relative_legacy,metac-perplexity,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,239758,21.25132546505438,spot_peer,metac-perplexity,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,239758,17.652325794437477,peer,metac-perplexity,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,239758,-0.6585317894418038,baseline,metac-perplexity,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,239759,-4.261220819240762,spot_peer,metac-exa,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,239759,-14.732197617361516,spot_baseline,metac-exa,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,239759,-10.77146014520432,baseline,metac-exa,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,239759,-1.1964055360505963,peer,metac-exa,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,239759,-0.1386750073433555,relative_legacy,metac-exa,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,240416,-31.400055263582445,peer,metac-o1-preview,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,240416,-0.5577086469982805,relative_legacy,metac-o1-preview,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,240416,-45.199173373104976,spot_peer,metac-o1-preview,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,240416,-36.92730664265069,spot_baseline,metac-o1-preview,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,240416,-26.97694909761219,baseline,metac-o1-preview,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,246118,-0.8535151388525193,baseline,laylaps,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,246118,-5.880282340755199,spot_baseline,laylaps,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,246118,12.065767581295551,spot_peer,laylaps,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,246118,0.0022702849186149,relative_legacy,laylaps,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,246118,1.9045020329120343,peer,laylaps,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,247214,-3.017549073903856,spot_baseline,ajf-bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,247214,17.34595965060224,spot_peer,ajf-bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,247214,0.0912132103760693,relative_legacy,ajf-bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,247214,16.63504331125077,peer,ajf-bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,247214,-2.4353797291117485,baseline,ajf-bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,250015,-1.5401502386953263,spot_peer,metac-deepseek-r1,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,250015,-0.1105600083906449,relative_legacy,metac-deepseek-r1,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,250015,0.7976816433703309,peer,metac-deepseek-r1,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,250015,-9.667140206432196,baseline,metac-deepseek-r1,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,250015,-13.256929450951665,spot_baseline,metac-deepseek-r1,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264059,15.06348472325794,peer,wunderplumb,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264059,-1.5850048519031057,spot_baseline,wunderplumb,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264059,0.0976145391086629,relative_legacy,wunderplumb,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264059,19.98822769824996,spot_peer,wunderplumb,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264059,-1.0570823844615906,baseline,wunderplumb,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264225,4.9635602223446895,spot_peer,KevinTestBot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264225,-0.9887965664990748,baseline,KevinTestBot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264225,0.6075667161446954,peer,KevinTestBot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264225,-0.0082669553511004,relative_legacy,KevinTestBot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264225,-9.730847814070405,spot_baseline,KevinTestBot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264332,-0.9762993031954356,baseline,krm-bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264332,-21.524232880328523,spot_baseline,krm-bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264332,-16.788846478691347,spot_peer,krm-bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264332,-0.0152416764799839,relative_legacy,krm-bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264332,-0.7106043807681961,peer,krm-bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264891,0.1087597489864544,relative_legacy,swingswish,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264891,22.91170301666004,spot_peer,swingswish,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264891,0.0,spot_baseline,swingswish,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264891,0.0,baseline,swingswish,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,264891,14.43589651261369,peer,swingswish,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,265212,-28.509720893846865,spot_baseline,4Shadower,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,265212,-8.482700096214861,baseline,4Shadower,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,265212,-8.366377785108375,peer,4Shadower,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,265212,-0.1600410777401485,relative_legacy,4Shadower,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,265212,-29.673287665133117,spot_peer,4Shadower,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,265835,21.668937301367617,spot_peer,jonahsingerbot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,265835,-0.6737835876748777,spot_baseline,jonahsingerbot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,265835,0.038747501522914,relative_legacy,jonahsingerbot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,265835,5.608362227330224,peer,jonahsingerbot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,265835,-0.1635443200804891,baseline,jonahsingerbot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,266158,17.716907177038415,peer,bean_bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,266158,-0.2797552857752633,spot_baseline,bean_bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,266158,22.39570606423636,spot_peer,bean_bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,266158,0.1283663050765186,relative_legacy,bean_bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,266158,-0.1971550981875667,baseline,bean_bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,266572,5.299119410151152,peer,cobyj-bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,266572,1.105205672763182,spot_baseline,cobyj-bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,266572,24.950208767737383,spot_peer,cobyj-bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,266572,0.0388319071502298,relative_legacy,cobyj-bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35589,Who will win the 2025 Goldsmith Prize for Investigative Reporting?,2025-03-15 15:49:26.157639+00,266572,0.2237059105198346,baseline,cobyj-bot,True,Right to Remain Secret,2025-03-18 01:57:00+00,2025-03-18 01:57:00+00,1.0,2025-03-18 01:57:00+00,36152 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,187708,68.52674065168416,spot_baseline,twsummerbot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,187708,20.03572538464492,spot_peer,twsummerbot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,187708,42.13182404418743,baseline,twsummerbot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,187708,11.961668598097985,peer,twsummerbot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,187708,0.1769263506062378,relative_legacy,twsummerbot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,189869,19.69913306567893,baseline,VeritasAI,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,189869,-8.90337464178613,peer,VeritasAI,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,189869,-0.1380723514409543,relative_legacy,VeritasAI,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,189869,-10.044207161533812,spot_peer,VeritasAI,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,191026,46.46682670034443,spot_baseline,manticAI,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,191026,43.27646849323521,baseline,manticAI,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,191026,-0.4301644079208373,peer,manticAI,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,191026,-0.013767165911466,relative_legacy,manticAI,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,191026,4.320214693690822,spot_peer,manticAI,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,191935,0.1705470313083427,relative_legacy,pgodzinai,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,191935,34.70932553535308,baseline,pgodzinai,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,191935,11.307486267633124,peer,pgodzinai,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,191935,74.416109557041,spot_baseline,pgodzinai,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,191935,24.23131926589335,spot_peer,pgodzinai,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,191975,41.07029090149528,spot_baseline,jkraybill_bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,191975,0.4757157428787562,spot_peer,jkraybill_bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,191975,-0.0300694093486478,relative_legacy,jkraybill_bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,191975,-1.1589950878590578,peer,jkraybill_bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,191975,31.15595273950515,baseline,jkraybill_bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,192075,3.322364352864286,spot_peer,CumulativeBot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,192075,27.087597997695397,baseline,CumulativeBot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,192075,1.6879051021566058,peer,CumulativeBot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,192075,0.0358143138878366,relative_legacy,CumulativeBot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,192075,45.06614090095651,spot_baseline,CumulativeBot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,192418,71.36958148433591,spot_baseline,InstitutPelFutur,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,192418,69.56212069352058,baseline,InstitutPelFutur,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,192418,16.745102045020772,peer,InstitutPelFutur,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,192418,0.2194549590271838,relative_legacy,InstitutPelFutur,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,192418,22.06096880113185,spot_peer,InstitutPelFutur,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,192924,2.0612715031500457,spot_peer,acm_bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,192924,43.29594072761063,spot_baseline,acm_bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,192924,15.77750693666078,baseline,acm_bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,192924,0.7511495279406488,peer,acm_bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,192924,0.0198413586969602,relative_legacy,acm_bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,204737,16.890940550071452,peer,SynapseSeer,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,204737,73.63884007034605,spot_baseline,SynapseSeer,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,204737,23.677591497287736,spot_peer,SynapseSeer,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,204737,0.2210304621916661,relative_legacy,SynapseSeer,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,204737,60.9571715445596,baseline,SynapseSeer,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,220077,76.31321064191238,baseline,mmBot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,220077,0.2713509048414603,relative_legacy,mmBot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,220077,25.753980860477245,spot_peer,mmBot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,220077,20.691169941091687,peer,mmBot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,222631,67.80719051126377,spot_baseline,Grizeu_Bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,222631,19.523116951565893,spot_peer,Grizeu_Bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,222631,0.1725023900298467,relative_legacy,Grizeu_Bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,222631,41.58856155026872,baseline,Grizeu_Bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,222631,11.622902174239208,peer,Grizeu_Bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,224797,19.523116951565893,spot_peer,cookics_bot_TEST,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,224797,13.4454682205855,peer,cookics_bot_TEST,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,224797,56.76920107202425,baseline,cookics_bot_TEST,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,224797,67.80719051126377,spot_baseline,cookics_bot_TEST,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,224797,0.172756906793299,relative_legacy,cookics_bot_TEST,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,227188,-32.19280948873623,spot_baseline,ProfessorSP,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,227188,-14.964823833656064,baseline,ProfessorSP,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,227188,-24.03890198531457,peer,ProfessorSP,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,227188,-0.3255993234061981,relative_legacy,ProfessorSP,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,227188,-51.71700993931736,spot_peer,ProfessorSP,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236037,73.36718901746222,baseline,metac-o1,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236037,31.628595616249758,spot_peer,metac-o1,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236037,0.3196539630340084,relative_legacy,metac-o1,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236037,24.06384182303315,peer,metac-o1,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236038,0.0055788040582031,relative_legacy,metac-gpt-4o,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236038,5.799057154045504,spot_peer,metac-gpt-4o,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236038,1.5148870620016877,peer,metac-gpt-4o,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236038,42.13235705619952,baseline,metac-gpt-4o,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236040,0.2485663515142229,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236040,25.753980860477245,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236040,18.9682526928723,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236040,66.41353500890904,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236041,25.753980860477245,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236041,0.2484512069628825,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236041,18.962384271206822,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236041,66.38279074681871,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236043,0.1726335788476464,relative_legacy,metac-grok-2-1212,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236043,58.78625641634415,baseline,metac-grok-2-1212,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236043,13.516221086488434,peer,metac-grok-2-1212,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236043,19.523116951565893,spot_peer,metac-grok-2-1212,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236045,13.492342620804374,peer,metac-Gemini-Exp-1206,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236045,19.523116951565893,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236045,58.08757480115107,baseline,metac-Gemini-Exp-1206,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236045,0.1727588426358632,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236045,67.80719051126377,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236047,57.28000950119996,baseline,metac-Llama-3.1,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236047,0.1727435591936882,relative_legacy,metac-Llama-3.1,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236047,19.523116951565893,spot_peer,metac-Llama-3.1,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,236047,13.461778241848968,peer,metac-Llama-3.1,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,237476,19.523116951565893,spot_peer,NextWorldLab,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,237476,57.00076325013801,baseline,NextWorldLab,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,237476,13.452986413160144,peer,NextWorldLab,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,237476,67.80719051126377,spot_baseline,NextWorldLab,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,237476,0.172756906793299,relative_legacy,NextWorldLab,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,239758,-0.0864320856260543,relative_legacy,metac-perplexity,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,239758,-1.8175955395314507,spot_peer,metac-perplexity,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,239758,37.85116232537298,spot_baseline,metac-perplexity,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,239758,32.73609022061987,baseline,metac-perplexity,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,239758,-5.094778706781062,peer,metac-perplexity,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,239759,32.61249098206897,peer,metac-exa,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,239759,85.2880226089301,baseline,metac-exa,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,239759,98.5500430304885,spot_baseline,metac-exa,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,239759,41.42436409613869,spot_peer,metac-exa,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,239759,0.4386847672964018,relative_legacy,metac-exa,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,240416,13.508678324552498,peer,metac-o1-preview,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,240416,19.523116951565893,spot_peer,metac-o1-preview,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,240416,67.80719051126377,spot_baseline,metac-o1-preview,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,240416,58.59120481548965,baseline,metac-o1-preview,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,240416,0.1727714698898085,relative_legacy,metac-o1-preview,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,241715,1.2971209363773442,spot_peer,CatrachoCaster,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,241715,42.22330006830476,spot_baseline,CatrachoCaster,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,241715,22.27774712154984,baseline,CatrachoCaster,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,241715,0.5802474766971757,peer,CatrachoCaster,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,241715,0.0210584962354891,relative_legacy,CatrachoCaster,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,246118,-6.11190902181154,peer,laylaps,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,246118,-10.044207161533812,spot_peer,laylaps,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,246118,26.303440583379377,spot_baseline,laylaps,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,246118,-0.0732786602433672,relative_legacy,laylaps,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,246118,15.327887393001374,baseline,laylaps,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,247214,5.799057154045504,spot_peer,ajf-bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,247214,48.54268271702416,spot_baseline,ajf-bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,247214,0.0055661356891935,relative_legacy,ajf-bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,247214,0.9114163512464716,peer,ajf-bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,247214,45.48465997878716,baseline,ajf-bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,250015,1.6375459735534093,peer,metac-deepseek-r1,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,250015,41.63809413240959,baseline,metac-deepseek-r1,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,250015,48.54268271702416,spot_baseline,metac-deepseek-r1,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,250015,5.799057154045504,spot_peer,metac-deepseek-r1,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,250015,0.0075429324692395,relative_legacy,metac-deepseek-r1,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264059,47.81229448419671,baseline,wunderplumb,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264059,48.54268271702416,spot_baseline,wunderplumb,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264059,5.799057154045504,spot_peer,wunderplumb,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264059,-0.0045424238785402,relative_legacy,wunderplumb,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264059,0.0481132252162406,peer,wunderplumb,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264225,-0.3480860559430826,relative_legacy,KevinTestBot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264225,-32.19280948873623,spot_baseline,KevinTestBot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264225,-15.969391994324177,baseline,KevinTestBot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264225,-25.68623782990436,peer,KevinTestBot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264225,-51.71700993931736,spot_peer,KevinTestBot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264332,-0.8703401244516694,peer,krm-bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264332,37.85116232537298,spot_baseline,krm-bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264332,-1.8175955395314507,spot_peer,krm-bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264332,0.0,relative_legacy,krm-bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264332,18.03583579132181,baseline,krm-bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264778,0.0,relative_legacy,andrewsiah,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264778,-1.8175955395314507,spot_peer,andrewsiah,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264778,-0.8687404666285339,peer,andrewsiah,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264778,18.01300472731109,baseline,andrewsiah,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264778,37.85116232537298,spot_baseline,andrewsiah,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264891,84.79969065549501,spot_baseline,swingswish,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264891,70.63842048124313,baseline,swingswish,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264891,23.586401839591,peer,swingswish,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264891,0.3143049903932962,relative_legacy,swingswish,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,264891,31.628595616249758,spot_peer,swingswish,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,265212,-10.044207161533812,spot_peer,4Shadower,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,265212,26.303440583379377,spot_baseline,4Shadower,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,265212,16.206714533016964,baseline,4Shadower,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,265212,-6.581606546563345,peer,4Shadower,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,265212,-0.0829660755286307,relative_legacy,4Shadower,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,265835,-28.782811609801367,spot_peer,jonahsingerbot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,265835,-0.2353235897198803,relative_legacy,jonahsingerbot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,265835,-17.64993426281625,peer,jonahsingerbot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,265835,0.0,spot_baseline,jonahsingerbot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,265835,0.0,baseline,jonahsingerbot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,266158,-2.693735787160744,relative_legacy,bean_bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,266158,-238.0570653458824,baseline,bean_bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,266158,-332.1928094887361,spot_baseline,bean_bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,266158,-265.43739061196703,spot_peer,bean_bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,266158,-191.7646187903053,peer,bean_bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,266572,15.625794473262886,baseline,cobyj-bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,266572,-0.0754036831093732,relative_legacy,cobyj-bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,266572,-10.044207161533812,spot_peer,cobyj-bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,266572,26.303440583379377,spot_baseline,cobyj-bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35590,Will Life is Strange: Double Exposure win the 2025 GLAAD Media Award for Outstanding Video Game?,2025-03-15 15:49:26.192474+00,266572,-6.2617789390362,peer,cobyj-bot,True,no,2025-03-18 04:00:00+00,2025-03-18 04:00:00+00,0.8,2025-03-18 04:00:00+00,36153 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,187708,24.806018496912436,baseline,twsummerbot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,187708,33.11319222172021,spot_baseline,twsummerbot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,187708,-0.4177770185364365,peer,twsummerbot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,187708,0.0288856925710778,relative_legacy,twsummerbot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,187708,-1.1375019627506346,spot_peer,twsummerbot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,189869,-0.5915205838572939,relative_legacy,VeritasAI,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,189869,-30.77657886636336,baseline,VeritasAI,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,189869,-32.19280948873623,spot_baseline,VeritasAI,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,189869,-47.69750637797493,spot_peer,VeritasAI,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,189869,-46.52100110185019,peer,VeritasAI,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,191026,0.1502687297514059,relative_legacy,manticAI,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,191026,45.62804815107251,spot_baseline,manticAI,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,191026,42.33927204096327,baseline,manticAI,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,191026,6.746522427759935,peer,manticAI,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,191026,7.784981914152242,spot_peer,manticAI,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,191935,14.179292288426122,spot_peer,pgodzinai,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,191935,40.91676407538676,baseline,pgodzinai,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,191935,11.067566702973014,peer,pgodzinai,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,191935,0.1899124681072207,relative_legacy,pgodzinai,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,191935,54.59683691052925,spot_baseline,pgodzinai,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,192075,-0.3419193764163187,relative_legacy,CumulativeBot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,192075,-13.078660753535416,spot_baseline,CumulativeBot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,192075,-34.07004755037825,spot_peer,CumulativeBot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,192075,-10.620159857321838,baseline,CumulativeBot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,192075,-27.37731119223689,peer,CumulativeBot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,192418,36.832217067929726,baseline,InstitutPelFutur,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,192418,2.240440388142863,spot_peer,InstitutPelFutur,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,192418,0.0754156908982032,relative_legacy,InstitutPelFutur,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,192418,1.4839707622087013,peer,InstitutPelFutur,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,192924,40.05379295837285,spot_baseline,acm_bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,192924,37.66792028901088,baseline,acm_bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,192924,3.149137471521372,peer,acm_bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,192924,0.0988195629924034,relative_legacy,acm_bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,192924,3.810808950166801,spot_peer,acm_bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,204737,6.122302694949992,spot_peer,SynapseSeer,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,204737,43.29594072761063,spot_baseline,SynapseSeer,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,204737,0.1278169253284331,relative_legacy,SynapseSeer,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,204737,5.259935917631298,peer,SynapseSeer,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,204737,38.20514471391921,baseline,SynapseSeer,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,220077,67.58469732988448,baseline,mmBot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,220077,22.875062866671037,peer,mmBot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,220077,0.3669118735388451,relative_legacy,mmBot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,220077,67.80719051126377,spot_baseline,mmBot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,220077,23.597632193905145,spot_peer,mmBot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,222631,92.5999418556223,spot_baseline,Grizeu_Bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,222631,75.10987305846146,baseline,Grizeu_Bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,222631,33.84196301482917,peer,Grizeu_Bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,222631,0.5156176101685921,relative_legacy,Grizeu_Bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,222631,41.273658620647225,spot_peer,Grizeu_Bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,224797,23.46381589613447,baseline,cookics_bot_TEST,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,224797,-5.585863279779978,peer,cookics_bot_TEST,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,224797,-0.0221280616960988,relative_legacy,cookics_bot_TEST,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,224797,26.303440583379377,spot_baseline,cookics_bot_TEST,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,224797,-5.992523829706609,spot_peer,cookics_bot_TEST,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,227188,-11.439982774439128,baseline,ProfessorSP,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,227188,-15.200309344505014,spot_baseline,ProfessorSP,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,227188,-35.58267985331837,spot_peer,ProfessorSP,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,227188,-0.3344915626542355,relative_legacy,ProfessorSP,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,227188,-26.35788324414127,peer,ProfessorSP,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236037,37.77865366227133,peer,metac-o1,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236037,41.273658620647225,spot_peer,metac-o1,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236037,0.5840854847519343,relative_legacy,metac-o1,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236037,85.54709788290621,baseline,metac-o1,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236038,85.85492591186808,baseline,metac-gpt-4o,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236038,92.5999418556223,spot_baseline,metac-gpt-4o,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236038,41.273658620647225,spot_peer,metac-gpt-4o,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236038,37.91559338544205,peer,metac-gpt-4o,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236038,0.5857306554347987,relative_legacy,metac-gpt-4o,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236040,-0.5704097596564462,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236040,-47.69750637797493,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236040,-32.19280948873623,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236040,-44.843883598045984,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236040,-29.80762143157537,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236041,-14.079792345943362,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236041,-33.59439016819838,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236041,-35.58267985331837,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236041,-15.200309344505014,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236041,-0.413231426984226,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236043,91.34104764943132,baseline,metac-grok-2-1212,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236043,98.5500430304885,spot_baseline,metac-grok-2-1212,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236043,45.515791498435135,spot_peer,metac-grok-2-1212,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236043,0.6407334180517289,relative_legacy,metac-grok-2-1212,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236043,41.85057718941165,peer,metac-grok-2-1212,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236045,90.1824958757654,baseline,metac-Gemini-Exp-1206,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236045,98.5500430304885,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236045,45.515791498435135,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236045,0.6345237052086539,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236045,41.35558475448825,peer,metac-Gemini-Exp-1206,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236047,-0.0260260340042232,relative_legacy,metac-Llama-3.1,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236047,-5.903387757002846,peer,metac-Llama-3.1,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236047,-5.992523829706609,spot_peer,metac-Llama-3.1,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,236047,24.00633535098776,baseline,metac-Llama-3.1,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,237476,-13.746441497704044,peer,NextWorldLab,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,237476,-0.1356854413081559,relative_legacy,NextWorldLab,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,237476,13.750352374993504,spot_baseline,NextWorldLab,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,237476,12.355964771281643,baseline,NextWorldLab,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,237476,-14.94226546292566,spot_peer,NextWorldLab,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,239758,44.92288385492174,baseline,metac-perplexity,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,239758,9.86297466681139,spot_peer,metac-perplexity,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,239758,8.663235676464428,peer,metac-perplexity,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,239758,0.1771377080901121,relative_legacy,metac-perplexity,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,239758,48.54268271702416,spot_baseline,metac-perplexity,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,239759,2.240440388142863,spot_peer,metac-exa,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,239759,1.5792460601811709,peer,metac-exa,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,239759,0.0782826671165091,relative_legacy,metac-exa,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,239759,37.85116232537298,spot_baseline,metac-exa,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,239759,34.98353382518433,baseline,metac-exa,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,240416,91.09900999665784,baseline,metac-o1-preview,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,240416,98.5500430304885,spot_baseline,metac-o1-preview,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,240416,0.6393619082099444,relative_legacy,metac-o1-preview,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,240416,45.515791498435135,spot_peer,metac-o1-preview,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,240416,41.73689081085537,peer,metac-o1-preview,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,241715,-19.851492224072395,peer,CatrachoCaster,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,241715,-5.889368905356857,spot_baseline,CatrachoCaster,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,241715,-28.944431964882465,spot_peer,CatrachoCaster,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,241715,-0.2449336790554669,relative_legacy,CatrachoCaster,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,241715,-4.123011627565261,baseline,CatrachoCaster,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,246118,-12.024014489748822,baseline,laylaps,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,246118,-15.200309344505014,spot_baseline,laylaps,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,246118,-35.58267985331837,spot_peer,laylaps,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,246118,-0.3504382817063248,relative_legacy,laylaps,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,246118,-27.75777571902177,peer,laylaps,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,247214,1.7415085829361572,peer,ajf-bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,247214,35.92187468170508,baseline,ajf-bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,247214,37.85116232537298,spot_baseline,ajf-bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,247214,0.0781052912638308,relative_legacy,ajf-bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,247214,2.240440388142863,spot_peer,ajf-bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,250015,84.51442042605218,baseline,metac-deepseek-r1,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,250015,92.5999418556223,spot_baseline,metac-deepseek-r1,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,250015,41.273658620647225,spot_peer,metac-deepseek-r1,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,250015,0.5790278394256949,relative_legacy,metac-deepseek-r1,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,250015,37.37897997324078,peer,metac-deepseek-r1,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264059,9.86297466681139,spot_peer,wunderplumb,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264059,48.54268271702416,spot_baseline,wunderplumb,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264059,35.8147835485395,baseline,wunderplumb,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264059,7.709977349557365,peer,wunderplumb,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264059,0.1419530312140615,relative_legacy,wunderplumb,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264225,-25.1344179190196,baseline,KevinTestBot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264225,-32.19280948873623,spot_baseline,KevinTestBot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264225,-47.69750637797493,spot_peer,KevinTestBot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264225,-0.4788353883811024,relative_legacy,KevinTestBot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264225,-36.83584688172136,peer,KevinTestBot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264332,28.67286947049598,baseline,krm-bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264332,37.85116232537298,spot_baseline,krm-bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264332,2.240440388142863,spot_peer,krm-bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264332,0.065347803732699,relative_legacy,krm-bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264332,2.13531591567721,peer,krm-bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264778,24.356491297532724,baseline,andrewsiah,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264778,10.257468904289928,peer,andrewsiah,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264778,0.1484559365218153,relative_legacy,andrewsiah,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264778,35.71245871856173,spot_peer,andrewsiah,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264778,84.79969065549501,spot_baseline,andrewsiah,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264891,23.3588601741415,baseline,swingswish,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264891,-0.0221280616960988,relative_legacy,swingswish,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264891,26.303440583379377,spot_baseline,swingswish,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264891,-5.992523829706609,spot_peer,swingswish,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,264891,-5.531123792642897,peer,swingswish,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,265212,-11.961876459936702,peer,4Shadower,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,265212,11.253715202130534,baseline,4Shadower,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,265212,-0.1248664321405613,relative_legacy,4Shadower,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,265212,-14.94226546292566,spot_peer,4Shadower,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,265212,13.750352374993504,spot_baseline,4Shadower,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,265835,-47.69750637797493,spot_peer,jonahsingerbot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,265835,-32.19280948873623,spot_baseline,jonahsingerbot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,265835,-0.4908898404684633,relative_legacy,jonahsingerbot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,265835,-37.88136217661757,peer,jonahsingerbot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,265835,-25.797822289489652,baseline,jonahsingerbot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,266158,-5.961156283432662,peer,bean_bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,266158,-0.0268228870506771,relative_legacy,bean_bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,266158,26.303440583379377,spot_baseline,bean_bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,266158,24.1154835124522,baseline,bean_bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,266158,-5.992523829706609,spot_peer,bean_bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,266572,-5.992523829706609,spot_peer,cobyj-bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,266572,-0.0221280616960988,relative_legacy,cobyj-bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,266572,21.002358214729576,baseline,cobyj-bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,266572,-4.398619033468803,peer,cobyj-bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35591,Will a Netflix show win the 2025 GLAAD Media Award for Outstanding New Series?,2025-03-15 15:49:26.230344+00,266572,26.303440583379377,spot_baseline,cobyj-bot,True,no,2025-03-18 06:00:00+00,2025-03-18 06:00:00+00,1.0,2025-03-18 06:00:00+00,36154 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,187708,-0.0754704986028227,relative_legacy,twsummerbot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,187708,6.488285158485438,spot_baseline,twsummerbot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,187708,8.444791466506274,spot_peer,twsummerbot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,187708,6.2326804494299575,peer,twsummerbot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,187708,4.741975036601799,baseline,twsummerbot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,189869,26.303440583379377,spot_baseline,VeritasAI,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,189869,0.1595017943820667,relative_legacy,VeritasAI,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,189869,23.24159771602485,peer,VeritasAI,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,189869,25.04325862204628,baseline,VeritasAI,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,189869,22.56113333482646,spot_peer,VeritasAI,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,191026,-39.13497858088603,peer,manticAI,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,191026,-43.33868705484482,spot_peer,manticAI,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,191026,-61.415709434864944,baseline,manticAI,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,191026,-0.7087915646597318,relative_legacy,manticAI,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,191026,-66.20035364849842,spot_baseline,manticAI,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,191935,-20.40448872532882,spot_peer,pgodzinai,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,191935,-0.3541599731469997,relative_legacy,pgodzinai,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,191935,-14.232741225440122,peer,pgodzinai,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,191935,-23.775791582004643,baseline,pgodzinai,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,191935,-34.007544159762176,spot_baseline,pgodzinai,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,191975,9.162835387770864,spot_peer,jkraybill_bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,191975,5.672056766858507,baseline,jkraybill_bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,191975,7.049705399547133,peer,jkraybill_bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,191975,-0.0727010752269637,relative_legacy,jkraybill_bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,191975,7.496205768122192,spot_baseline,jkraybill_bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,192075,24.01056906899336,baseline,CumulativeBot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,192075,0.1023420672222349,relative_legacy,CumulativeBot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,192075,30.25627700204313,spot_baseline,CumulativeBot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,192075,25.377139015271567,spot_peer,CumulativeBot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,192075,20.45931965243573,peer,CumulativeBot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,192418,-5.343470687447211,peer,InstitutPelFutur,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,192418,-0.2356515088270627,relative_legacy,InstitutPelFutur,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,192418,-7.006190778273234,spot_peer,InstitutPelFutur,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,192418,-15.200309344504996,spot_baseline,InstitutPelFutur,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,192418,-14.824206319085032,baseline,InstitutPelFutur,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,192924,-37.33766545814563,spot_peer,acm_bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,192924,-0.6305960247869816,relative_legacy,acm_bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,192924,-33.50933155765094,peer,acm_bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,192924,-57.77669993169522,spot_baseline,acm_bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,192924,-53.55770867759402,baseline,acm_bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,204737,0.2700466396042841,relative_legacy,SynapseSeer,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,204737,44.36066514756148,spot_baseline,SynapseSeer,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,204737,38.43549717521093,baseline,SynapseSeer,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,204737,31.637408638658933,peer,SynapseSeer,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,204737,35.42512302732153,spot_peer,SynapseSeer,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,220077,-15.15977850717878,baseline,mmBot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,220077,-5.343470687447211,peer,mmBot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,220077,-0.2356515088270627,relative_legacy,mmBot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,220077,-7.006190778273234,spot_peer,mmBot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,220077,-15.200309344504996,spot_baseline,mmBot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,222631,37.85116232537298,spot_baseline,Grizeu_Bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,222631,29.3257676754196,baseline,Grizeu_Bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,222631,24.06038639155896,peer,Grizeu_Bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,222631,0.1591678048428856,relative_legacy,Grizeu_Bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,222631,30.787744956828828,spot_peer,Grizeu_Bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,224797,-73.69655941662063,spot_baseline,cookics_bot_TEST,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,224797,-41.86024987983051,peer,cookics_bot_TEST,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,224797,-0.7571342581788028,relative_legacy,cookics_bot_TEST,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,224797,-64.6157694298805,baseline,cookics_bot_TEST,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,224797,-48.6789935560568,spot_peer,cookics_bot_TEST,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,227188,26.303440583379377,spot_baseline,ProfessorSP,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,227188,0.0674939388855659,relative_legacy,ProfessorSP,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,227188,15.893945433157572,peer,ProfessorSP,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,227188,18.48736163308909,baseline,ProfessorSP,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,227188,22.56113333482646,spot_peer,ProfessorSP,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236037,-32.19280948873623,spot_baseline,metac-o1,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236037,-29.308551680275077,baseline,metac-o1,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236037,-19.111669442957083,spot_peer,metac-o1,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236037,-16.381280708067543,peer,metac-o1,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236037,-0.3938263155895825,relative_legacy,metac-o1,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236038,38.40439765040578,spot_peer,metac-gpt-4o,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236038,0.3443283262844501,relative_legacy,metac-gpt-4o,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236038,36.5002158758063,peer,metac-gpt-4o,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236038,44.51228168547603,baseline,metac-gpt-4o,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236040,-29.501387496853337,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236040,-32.19280948873623,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236040,-19.111669442957083,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236040,-0.3959974601855112,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236040,-16.47908629173824,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236041,34.69467631890452,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236041,29.4657034282468,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236041,0.2459340035444148,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236041,30.787744956828828,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236043,26.303440583379377,spot_baseline,metac-grok-2-1212,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236043,21.865495390811954,peer,metac-grok-2-1212,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236043,24.086569455673477,baseline,metac-grok-2-1212,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236043,0.1397418594263057,relative_legacy,metac-grok-2-1212,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236043,22.56113333482646,spot_peer,metac-grok-2-1212,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236045,-48.6789935560568,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236045,-0.769451209367153,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236045,-43.16086536910536,peer,metac-Gemini-Exp-1206,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236045,-66.70080450524584,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236045,-73.69655941662063,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236047,23.649669654314565,baseline,metac-Llama-3.1,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236047,0.1321320680390381,relative_legacy,metac-Llama-3.1,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236047,22.56113333482646,spot_peer,metac-Llama-3.1,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,236047,21.394780728194227,peer,metac-Llama-3.1,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,237476,-32.83572924047748,spot_peer,NextWorldLab,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,237476,-51.45731728297583,spot_baseline,NextWorldLab,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,237476,-0.5642482849602791,relative_legacy,NextWorldLab,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,237476,-28.160190148953987,peer,NextWorldLab,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,237476,-45.52482076960524,baseline,NextWorldLab,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,239758,-16.370482296637874,peer,metac-perplexity,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,239758,-0.3938214045549807,relative_legacy,metac-perplexity,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,239758,-19.111669442957083,spot_peer,metac-perplexity,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,239758,-32.19280948873623,spot_baseline,metac-perplexity,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,239758,-29.28823734945436,baseline,metac-perplexity,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,239759,-51.45731728297583,spot_baseline,metac-exa,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,239759,-47.03825683365826,baseline,metac-exa,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,239759,-0.5710758138247792,relative_legacy,metac-exa,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,239759,-29.042830137890803,peer,metac-exa,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,239759,-32.83572924047748,spot_peer,metac-exa,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,240416,42.77798199179121,peer,metac-o1-preview,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,240416,0.432425996325597,relative_legacy,metac-o1-preview,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,240416,45.49533166434247,spot_peer,metac-o1-preview,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,240416,58.496250072115615,spot_baseline,metac-o1-preview,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,240416,53.36844512830126,baseline,metac-o1-preview,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,241715,4.222600744131568,peer,CatrachoCaster,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,241715,-0.0435080924500334,relative_legacy,CatrachoCaster,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,241715,7.853546627312821,spot_peer,CatrachoCaster,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,241715,5.658352836636751,spot_baseline,CatrachoCaster,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,241715,3.042315278990908,baseline,CatrachoCaster,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,246118,17.13873430537611,peer,laylaps,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,246118,22.56113333482646,spot_peer,laylaps,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,246118,26.303440583379377,spot_baseline,laylaps,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,246118,19.848986521499526,baseline,laylaps,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,246118,0.0693489260618688,relative_legacy,laylaps,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,247214,-51.45731728297583,spot_baseline,ajf-bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,247214,-29.88876545866429,peer,ajf-bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,247214,-32.83572924047748,spot_peer,ajf-bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,247214,-0.5778843035462631,relative_legacy,ajf-bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,247214,-48.57097290650886,baseline,ajf-bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,250015,30.787744956828828,spot_peer,metac-deepseek-r1,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,250015,28.1385088880954,peer,metac-deepseek-r1,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,250015,33.316338869772174,baseline,metac-deepseek-r1,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,250015,0.2227021424946794,relative_legacy,metac-deepseek-r1,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264059,-32.19280948873623,spot_baseline,wunderplumb,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264059,-23.30050675587314,baseline,wunderplumb,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264059,-13.782316829772697,peer,wunderplumb,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264059,-0.3540351437489578,relative_legacy,wunderplumb,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264059,-19.111669442957083,spot_peer,wunderplumb,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264225,26.303440583379377,spot_baseline,KevinTestBot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264225,19.44631618413189,baseline,KevinTestBot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264225,16.752882137533902,peer,KevinTestBot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264225,0.0693489260618688,relative_legacy,KevinTestBot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264225,22.56113333482646,spot_peer,KevinTestBot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264332,21.86881324190724,peer,krm-bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264332,26.83657665974966,baseline,krm-bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264332,30.787744956828828,spot_peer,krm-bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264332,37.85116232537298,spot_baseline,krm-bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264332,0.1493675989625066,relative_legacy,krm-bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264778,37.85116232537298,spot_baseline,andrewsiah,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264778,28.199100855353947,baseline,andrewsiah,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264778,23.023583636365974,peer,andrewsiah,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264778,0.1553794070423052,relative_legacy,andrewsiah,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264778,30.787744956828828,spot_peer,andrewsiah,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264891,-1.2658044779841282,relative_legacy,swingswish,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264891,-132.19280948873623,spot_baseline,swingswish,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264891,-115.34713104533655,baseline,swingswish,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264891,-78.13963214294591,peer,swingswish,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,264891,-90.35179633384034,spot_peer,swingswish,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,265212,10.942547876129709,peer,4Shadower,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,265212,10.792776504756722,baseline,4Shadower,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,265212,13.750352374993504,spot_baseline,4Shadower,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,265212,13.618297366447855,spot_peer,4Shadower,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,265212,-0.0275569111166275,relative_legacy,4Shadower,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,265835,-48.6789935560568,spot_peer,jonahsingerbot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,265835,-56.25203931810118,baseline,jonahsingerbot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,265835,-37.03675371243644,peer,jonahsingerbot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,265835,-0.6935925496095678,relative_legacy,jonahsingerbot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,265835,-73.69655941662063,spot_baseline,jonahsingerbot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,266158,22.56113333482646,spot_peer,bean_bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,266158,0.1356959637692097,relative_legacy,bean_bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,266158,21.570259987889337,peer,bean_bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,266158,23.809923891925283,baseline,bean_bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,266158,26.303440583379377,spot_baseline,bean_bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,266572,0.1576608200514883,relative_legacy,cobyj-bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,266572,30.787744956828828,spot_peer,cobyj-bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,266572,37.85116232537298,spot_baseline,cobyj-bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,266572,28.862905410672965,baseline,cobyj-bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35592,Will a Max show win the 2025 GLAAD Media Award for Outstanding Comedy Series?,2025-03-15 15:49:26.262278+00,266572,23.62929380182245,peer,cobyj-bot,True,yes,2025-03-18 08:00:00+00,2025-03-18 08:00:00+00,1.0,2025-03-18 08:00:00+00,36155 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,187708,54.939540580778406,spot_peer,twsummerbot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,187708,0.4767223576244894,relative_legacy,twsummerbot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,187708,45.206823022381066,spot_baseline,twsummerbot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,187708,33.7785536534669,peer,twsummerbot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,187708,30.380805424239316,baseline,twsummerbot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,189869,-15.200309344505014,spot_baseline,VeritasAI,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,189869,-0.0264735422991556,relative_legacy,VeritasAI,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,189869,4.951581979089309,peer,VeritasAI,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,189869,-14.49483835706883,baseline,VeritasAI,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,189869,11.90542283146496,spot_peer,VeritasAI,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,191026,-55.6393348524385,spot_baseline,manticAI,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,191026,-51.6579394008584,baseline,manticAI,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,191026,-23.17635953980144,peer,manticAI,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,191026,-16.903390253823517,spot_peer,manticAI,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,191026,-0.4115844153203126,relative_legacy,manticAI,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,191935,57.032324431169485,peer,pgodzinai,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,191935,62.37767936217735,baseline,pgodzinai,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,191935,0.8066471870171329,relative_legacy,pgodzinai,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,191935,84.28122733041391,spot_peer,pgodzinai,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,191935,86.39384504239716,spot_baseline,pgodzinai,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,191975,40.95756903492261,spot_peer,jkraybill_bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,191975,0.3714153291551503,relative_legacy,jkraybill_bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,191975,26.55748341511313,peer,jkraybill_bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,191975,19.29072602903245,baseline,jkraybill_bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,191975,25.58028366027179,spot_baseline,jkraybill_bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,192075,40.57868714189142,peer,CumulativeBot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,192075,48.54268271702416,spot_baseline,CumulativeBot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,192075,57.31601126014397,spot_peer,CumulativeBot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,192075,0.5491007476201549,relative_legacy,CumulativeBot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,192075,38.62932635052861,baseline,CumulativeBot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,192418,-796.5784284662085,spot_baseline,InstitutPelFutur,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,192418,-377.5201736635776,baseline,InstitutPelFutur,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,192418,-544.7493407284336,spot_peer,InstitutPelFutur,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,192418,-3.5313315204370337,relative_legacy,InstitutPelFutur,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,192418,-258.1715225591772,peer,InstitutPelFutur,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,192924,-247.3931188332413,spot_baseline,acm_bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,192924,-231.1977990314289,baseline,acm_bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,192924,-151.8301885381597,peer,acm_bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,192924,-2.1963991553435958,relative_legacy,acm_bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,192924,-153.5090292798176,spot_peer,acm_bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,204737,0.4422610168484326,relative_legacy,SynapseSeer,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,204737,48.58651792732717,spot_peer,SynapseSeer,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,204737,36.28906426658603,spot_baseline,SynapseSeer,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,204737,31.634346368120063,baseline,SynapseSeer,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,204737,35.559471863800674,peer,SynapseSeer,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,220077,-173.6965594166206,spot_baseline,mmBot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,220077,-101.00750683720184,spot_peer,mmBot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,220077,-1.5448724662617166,relative_legacy,mmBot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,220077,-105.45809658439492,peer,mmBot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,220077,-173.21251497022607,baseline,mmBot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,222631,-25.596445593058007,baseline,Grizeu_Bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,222631,-32.19280948873623,spot_baseline,Grizeu_Bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,222631,-0.2000558332188908,spot_peer,Grizeu_Bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,222631,-0.092825715615853,relative_legacy,Grizeu_Bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,222631,-5.251019867405858,peer,Grizeu_Bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,224797,43.595716124406096,peer,cookics_bot_TEST,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,224797,57.31601126014397,spot_peer,cookics_bot_TEST,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,224797,48.54268271702416,spot_baseline,cookics_bot_TEST,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,224797,0.5479081597354462,relative_legacy,cookics_bot_TEST,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,224797,42.88759781196307,baseline,cookics_bot_TEST,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,227188,27.32750881470362,baseline,ProfessorSP,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,227188,0.4435725490130727,relative_legacy,ProfessorSP,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,227188,51.26851542445359,spot_peer,ProfessorSP,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,227188,40.05379295837285,spot_baseline,ProfessorSP,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,227188,31.68417254186981,peer,ProfessorSP,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236037,77.74301094769073,baseline,metac-o1,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236037,68.76074167387003,peer,metac-o1,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236037,0.8774902904484062,relative_legacy,metac-o1,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236037,83.14554972234822,spot_peer,metac-o1,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236038,0.3414455490343466,relative_legacy,metac-gpt-4o,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236038,41.47274694456466,spot_peer,metac-gpt-4o,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236038,24.17094104857197,baseline,metac-gpt-4o,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236038,30.485545825603637,peer,metac-gpt-4o,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236040,-47.18772828502258,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236040,-0.3719289644448205,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236040,-13.92411563073928,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236040,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236040,-20.70740338897684,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236041,49.69935856656701,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236041,0.4472502898550655,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236041,38.03170898429488,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236041,34.760911270809224,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236043,45.06733866755662,peer,metac-grok-2-1212,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236043,57.31601126014397,spot_peer,metac-grok-2-1212,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236043,0.5454432487795946,relative_legacy,metac-grok-2-1212,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236043,44.58079272184333,baseline,metac-grok-2-1212,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236045,-66.82128297293043,baseline,metac-Gemini-Exp-1206,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236045,-73.69655941662059,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236045,-29.767379946318584,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236045,-0.5625695430574699,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236045,-34.8399945765655,peer,metac-Gemini-Exp-1206,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236047,58.04500596885698,baseline,metac-Llama-3.1,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236047,68.43796301483458,spot_peer,metac-Llama-3.1,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236047,0.687027216829349,relative_legacy,metac-Llama-3.1,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236047,54.5198677033009,peer,metac-Llama-3.1,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,236047,64.15460290875237,spot_baseline,metac-Llama-3.1,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,237476,50.09562728107867,peer,NextWorldLab,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,237476,58.496250072115615,spot_baseline,NextWorldLab,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,237476,64.40694527408067,spot_peer,NextWorldLab,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,237476,0.6358482095279016,relative_legacy,NextWorldLab,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,237476,51.96537249606376,baseline,NextWorldLab,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,239758,67.80719051126377,spot_baseline,metac-perplexity,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,239758,0.721230095525113,relative_legacy,metac-perplexity,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,239758,57.49098713757119,peer,metac-perplexity,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,239758,62.05665888207111,baseline,metac-perplexity,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,239758,71.04007105766436,spot_peer,metac-perplexity,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,239759,0.6362032514079833,relative_legacy,metac-exa,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,239759,58.496250072115615,spot_baseline,metac-exa,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,239759,64.40694527408067,spot_peer,metac-exa,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,239759,51.44110345089588,peer,metac-exa,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,239759,53.58781079278752,baseline,metac-exa,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,240416,0.7212856034446976,relative_legacy,metac-o1-preview,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,240416,62.07614591126053,baseline,metac-o1-preview,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,240416,57.50946376617652,peer,metac-o1-preview,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,240416,67.80719051126377,spot_baseline,metac-o1-preview,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,240416,71.04007105766436,spot_peer,metac-o1-preview,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,241715,-51.45731728297583,spot_baseline,CatrachoCaster,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,241715,-6.853576363447688,peer,CatrachoCaster,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,241715,-13.92411563073928,spot_peer,CatrachoCaster,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,241715,-24.837490318585825,baseline,CatrachoCaster,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,241715,-0.0067440414077417,relative_legacy,CatrachoCaster,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,246118,39.7022970449125,peer,laylaps,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,246118,37.5273233197151,baseline,laylaps,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,246118,0.5464036822859117,relative_legacy,laylaps,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,246118,48.54268271702416,spot_baseline,laylaps,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,246118,57.31601126014397,spot_peer,laylaps,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,247214,42.3900166166613,peer,ajf-bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,247214,0.4828826728273401,relative_legacy,ajf-bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,247214,36.28159561055354,baseline,ajf-bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,247214,37.85116232537298,spot_baseline,ajf-bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,247214,49.69935856656701,spot_peer,ajf-bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,250015,-29.767379946318584,spot_peer,metac-deepseek-r1,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,250015,-73.69655941662059,spot_baseline,metac-deepseek-r1,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,250015,-0.3783820415777164,relative_legacy,metac-deepseek-r1,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,250015,-26.87338723433133,peer,metac-deepseek-r1,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,250015,-55.65135972797718,baseline,metac-deepseek-r1,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264059,-100.0,spot_baseline,wunderplumb,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264059,-72.16308100024858,baseline,wunderplumb,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264059,-38.879388722399725,peer,wunderplumb,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264059,-0.5386620587832716,relative_legacy,wunderplumb,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264059,-48.50598439458614,spot_peer,wunderplumb,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264225,67.80719051126377,spot_baseline,KevinTestBot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264225,71.04007105766436,spot_peer,KevinTestBot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264225,0.6909709725045228,relative_legacy,KevinTestBot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264225,49.54335549046653,peer,KevinTestBot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264225,51.48176053483976,baseline,KevinTestBot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264332,-0.5523031370034477,relative_legacy,krm-bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264332,-39.75456127589617,peer,krm-bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264332,-73.55601048469543,baseline,krm-bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264332,-48.50598439458614,spot_peer,krm-bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264332,-100.0,spot_baseline,krm-bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264778,-37.49600487789857,baseline,andrewsiah,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264778,-14.10277382272323,peer,andrewsiah,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264778,-51.45731728297583,spot_baseline,andrewsiah,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264778,-0.1899435626938974,relative_legacy,andrewsiah,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264778,-13.92411563073928,spot_peer,andrewsiah,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264891,-0.321103498766961,relative_legacy,swingswish,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264891,-44.78451119206393,baseline,swingswish,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264891,-51.45731728297583,spot_baseline,swingswish,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264891,-13.92411563073928,spot_peer,swingswish,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,264891,-19.07130978306685,peer,swingswish,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,265212,-132.19280948873626,spot_baseline,4Shadower,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,265212,-105.3438938839878,baseline,4Shadower,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,265212,-62.15234490086271,peer,4Shadower,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,265212,-0.8910535594900487,relative_legacy,4Shadower,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,265212,-71.44018272410217,spot_peer,4Shadower,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,265835,-77.78228447172377,baseline,jonahsingerbot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,265835,-100.0,spot_baseline,jonahsingerbot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,265835,-0.6081451732181309,relative_legacy,jonahsingerbot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,265835,-42.517212957957504,peer,jonahsingerbot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,265835,-48.50598439458614,spot_peer,jonahsingerbot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,266158,52.91975024004741,baseline,bean_bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,266158,50.85024450013131,peer,bean_bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,266158,58.496250072115615,spot_baseline,bean_bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,266158,0.6358490849174314,relative_legacy,bean_bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,266158,64.40694527408067,spot_peer,bean_bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,266572,-71.44018272410217,spot_peer,cobyj-bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,266572,-0.8512167089638951,relative_legacy,cobyj-bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,266572,-59.987149178159896,peer,cobyj-bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,266572,-132.19280948873626,spot_baseline,cobyj-bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35593,"Will Walmart have a higher market cap than Tesla on March 29, 2025?",2025-03-15 15:49:26.621322+00,266572,-102.2473499542024,baseline,cobyj-bot,True,no,2025-03-18 10:00:00+00,2025-03-18 10:00:00+00,1.0,2025-03-18 10:00:00+00,36156 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,187708,2.4900775363526177,peer,twsummerbot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,187708,79.2438930064638,spot_baseline,twsummerbot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,187708,3.345281604888348,spot_peer,twsummerbot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,187708,0.0248698702175831,relative_legacy,twsummerbot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,187708,52.21841694742038,baseline,twsummerbot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,189869,-4.796288324817846,spot_peer,VeritasAI,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,189869,-0.0709696145893752,relative_legacy,VeritasAI,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,189869,-4.736236011423977,peer,VeritasAI,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,189869,65.13820473276391,baseline,VeritasAI,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,191026,6.842873949955441,spot_peer,manticAI,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,191026,78.1154994911029,baseline,manticAI,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,191026,6.643240125249543,peer,manticAI,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,191026,84.1570637395517,spot_baseline,manticAI,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,191026,0.0846871598074091,relative_legacy,manticAI,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,191935,59.78842160666489,baseline,pgodzinai,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,191935,0.0288454268938195,relative_legacy,pgodzinai,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,191935,2.9293603428262784,spot_peer,pgodzinai,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,191935,78.65963618908069,spot_baseline,pgodzinai,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,191935,2.62099324826072,peer,pgodzinai,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,191975,2.544111801493856,peer,jkraybill_bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,191975,0.0281336131403974,relative_legacy,jkraybill_bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,191975,89.32327572180095,spot_baseline,jkraybill_bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,191975,10.520601524212234,spot_peer,jkraybill_bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,191975,21.402886213645104,baseline,jkraybill_bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,192075,2.1126739855616803,peer,CumulativeBot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,192075,77.39963251111732,spot_baseline,CumulativeBot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,192075,2.032387805494706,spot_peer,CumulativeBot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,192075,64.3290115414324,baseline,CumulativeBot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,192075,0.0250108584639618,relative_legacy,CumulativeBot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,192418,5.192361442011358,peer,InstitutPelFutur,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,192418,42.40729244745782,baseline,InstitutPelFutur,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,192418,0.0590021129039258,relative_legacy,InstitutPelFutur,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,192418,10.667951194685452,spot_peer,InstitutPelFutur,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,192418,89.53026213333065,spot_baseline,InstitutPelFutur,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,192924,83.18772411916731,spot_baseline,acm_bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,192924,0.0528880090736997,relative_legacy,acm_bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,192924,4.464439960754825,peer,acm_bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,192924,56.24610752569173,baseline,acm_bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,192924,6.152819600084337,spot_peer,acm_bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,204737,-15.759839832875862,spot_peer,SynapseSeer,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,204737,52.40636757772108,spot_baseline,SynapseSeer,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,204737,-13.875178782792188,peer,SynapseSeer,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,204737,47.049352246634434,baseline,SynapseSeer,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,204737,-0.2003292976810103,relative_legacy,SynapseSeer,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,218666,0.0062437325711265,relative_legacy,GreeneiBot2,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,218666,83.99595874895317,spot_baseline,GreeneiBot2,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,218666,9.827897350649884,baseline,GreeneiBot2,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,218666,0.7872274588458495,peer,GreeneiBot2,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,218666,6.728186386163941,spot_peer,GreeneiBot2,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,220077,94.11063109464314,spot_baseline,mmBot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,220077,13.832596516130437,peer,mmBot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,220077,0.1817113894424378,relative_legacy,mmBot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,220077,13.928628318885576,spot_peer,mmBot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,220077,93.82692106831348,baseline,mmBot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,222631,48.52933639382956,baseline,Grizeu_Bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,222631,-9.082334892843432,peer,Grizeu_Bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,222631,-0.1318143404560661,relative_legacy,Grizeu_Bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,222631,-11.42456887408192,spot_peer,Grizeu_Bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,222631,58.496250072115615,spot_baseline,Grizeu_Bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,224797,83.18772411916731,spot_baseline,cookics_bot_TEST,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,224797,6.152819600084337,spot_peer,cookics_bot_TEST,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,224797,0.0760072906660782,relative_legacy,cookics_bot_TEST,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,224797,75.44225715678436,baseline,cookics_bot_TEST,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,224797,5.922635546829625,peer,cookics_bot_TEST,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,227188,-2.2602902749959077,spot_peer,ProfessorSP,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,227188,-0.0269692081055983,relative_legacy,ProfessorSP,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,227188,53.43866089073856,baseline,ProfessorSP,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,227188,-1.315391062887469,peer,ProfessorSP,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,227188,71.36958148433591,spot_baseline,ProfessorSP,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236037,67.80719051126377,spot_baseline,metac-o1,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236037,-4.796288324817846,spot_peer,metac-o1,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236037,-0.0674086926611348,relative_legacy,metac-o1,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236037,-4.2474973052871485,peer,metac-o1,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236037,63.17172223041011,baseline,metac-o1,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236038,63.39871373923129,baseline,metac-gpt-4o,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236038,-4.270392364967993,peer,metac-gpt-4o,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236038,-0.0674594010538788,relative_legacy,metac-gpt-4o,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236038,-4.796288324817846,spot_peer,metac-gpt-4o,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236040,71.53014961057855,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236040,1.594236441846547,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236040,0.014278585142355,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236040,1.4300241860592304,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236041,1.4300241860592304,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236041,1.5548907910192933,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236041,60.49558802694836,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236041,0.0154724261340849,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236043,-4.796288324817846,spot_peer,metac-grok-2-1212,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236043,-0.0674112417817298,relative_legacy,metac-grok-2-1212,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236043,-4.254583249357438,peer,metac-grok-2-1212,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236043,63.269042531741455,baseline,metac-grok-2-1212,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236045,7.044702538082986,peer,metac-Gemini-Exp-1206,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236045,7.300347769621518,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236045,0.0906464309275775,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236045,78.24434954588861,baseline,metac-Gemini-Exp-1206,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236047,-4.26109337941248,peer,metac-Llama-3.1,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236047,63.335924275560025,baseline,metac-Llama-3.1,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236047,-4.796288324817846,spot_peer,metac-Llama-3.1,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,236047,-0.0674168788429374,relative_legacy,metac-Llama-3.1,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,237476,-4.796288324817846,spot_peer,NextWorldLab,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,237476,61.65012559918917,baseline,NextWorldLab,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,237476,-4.073351085140539,peer,NextWorldLab,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,237476,-0.0638544813277372,relative_legacy,NextWorldLab,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,237476,67.80719051126377,spot_baseline,NextWorldLab,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,239758,0.1204923748471577,relative_legacy,metac-perplexity,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,239758,81.98028861159743,baseline,metac-perplexity,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,239758,9.212446991231038,peer,metac-perplexity,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,239758,9.557640892090337,spot_peer,metac-perplexity,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,239758,87.97057662822883,spot_baseline,metac-perplexity,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,239759,78.87750225486951,baseline,metac-exa,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,239759,7.0823856744540965,peer,metac-exa,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,239759,0.0906538768783328,relative_legacy,metac-exa,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,239759,7.300347769621518,spot_peer,metac-exa,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,240416,0.1630236909082117,relative_legacy,metac-o1-preview,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,240416,12.853197521703892,spot_peer,metac-o1-preview,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,240416,12.253192744839469,peer,metac-o1-preview,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,240416,85.9466362931758,baseline,metac-o1-preview,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,241715,-1.3020042601644195,peer,CatrachoCaster,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,241715,71.36958148433591,spot_baseline,CatrachoCaster,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,241715,52.68807692393981,baseline,CatrachoCaster,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,241715,-0.0270185550775761,relative_legacy,CatrachoCaster,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,241715,-2.2602902749959077,spot_peer,CatrachoCaster,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,246118,-4.796288324817846,spot_peer,laylaps,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,246118,-0.0536429533078189,relative_legacy,laylaps,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,246118,-3.492776219496428,peer,laylaps,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,246118,55.3014961261468,baseline,laylaps,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,246118,67.80719051126377,spot_baseline,laylaps,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,247214,0.107040582639422,relative_legacy,ajf-bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,247214,80.54728147877286,baseline,ajf-bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,247214,86.55229591399637,spot_baseline,ajf-bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,247214,8.547993957606964,spot_peer,ajf-bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,247214,8.253737329074731,peer,ajf-bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,250015,46.07171770407846,baseline,metac-deepseek-r1,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,250015,52.60688116675877,spot_baseline,metac-deepseek-r1,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,250015,-13.351895023861012,peer,metac-deepseek-r1,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,250015,-0.1917988158626097,relative_legacy,metac-deepseek-r1,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,250015,-15.617098041027052,spot_peer,metac-deepseek-r1,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264059,50.152095488358974,baseline,wunderplumb,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264059,67.80719051126377,spot_baseline,wunderplumb,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264059,-3.182332247127185,peer,wunderplumb,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264059,-0.0533176485735312,relative_legacy,wunderplumb,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264059,-4.796288324817846,spot_peer,wunderplumb,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264225,-11.42456887408192,spot_peer,KevinTestBot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264225,46.93205244717674,baseline,KevinTestBot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264225,-8.757907523213127,peer,KevinTestBot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264225,58.496250072115615,spot_baseline,KevinTestBot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264225,-0.1283454418406597,relative_legacy,KevinTestBot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264332,0.0146230252662561,relative_legacy,krm-bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264332,1.4300241860592304,spot_peer,krm-bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264332,59.75106439012728,baseline,krm-bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264332,1.5308623669398036,peer,krm-bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264332,76.55347463629771,spot_baseline,krm-bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264778,43.29594072761063,spot_baseline,andrewsiah,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264778,-22.245378590291104,spot_peer,andrewsiah,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264778,-0.2469332697526097,relative_legacy,andrewsiah,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264778,-17.155333291380806,peer,andrewsiah,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264778,34.14222513286916,baseline,andrewsiah,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264891,84.79969065549501,spot_baseline,swingswish,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264891,76.23691394947373,baseline,swingswish,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264891,6.929433105980076,peer,swingswish,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264891,0.0904992484986487,relative_legacy,swingswish,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,264891,7.300347769621518,spot_peer,swingswish,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,265212,7.300347769621518,spot_peer,4Shadower,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,265212,70.55583791567204,baseline,4Shadower,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,265212,6.508469904439151,peer,4Shadower,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,265212,0.0865293517062945,relative_legacy,4Shadower,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,265212,84.79969065549501,spot_baseline,4Shadower,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,265835,-0.0536429533078189,relative_legacy,jonahsingerbot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,265835,67.80719051126377,spot_baseline,jonahsingerbot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,265835,55.59891839145504,baseline,jonahsingerbot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,265835,-3.515206782301222,peer,jonahsingerbot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,265835,-4.796288324817846,spot_peer,jonahsingerbot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,266158,67.80719051126377,spot_baseline,bean_bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,266158,62.65473595988691,baseline,bean_bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,266158,-4.19071930503202,peer,bean_bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,266158,-0.0663614295480953,relative_legacy,bean_bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,266158,-4.796288324817846,spot_peer,bean_bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,266572,67.80719051126377,spot_baseline,cobyj-bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,266572,55.53844857935648,baseline,cobyj-bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,266572,-4.796288324817846,spot_peer,cobyj-bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,266572,-0.0536429533078189,relative_legacy,cobyj-bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35594,"Will an Ivy League team make it to the Sweet Sixteen of the 2025 NCAA men's tournament (""March Madness"")?",2025-03-15 15:49:26.654186+00,266572,-3.510482722708756,peer,cobyj-bot,True,no,2025-03-18 12:00:00+00,2025-03-18 12:00:00+00,0.7,2025-03-18 12:00:00+00,36157 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,185699,-0.4216348103349391,relative_legacy,MWG,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,185699,-17.239624709293565,peer,MWG,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,185699,-15.467079958304357,baseline,MWG,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,185699,-17.874692166080074,spot_baseline,MWG,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,185699,-19.64902703853273,spot_peer,MWG,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,187708,-65.55284330888445,spot_peer,twsummerbot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,187708,-45.60406893672286,spot_baseline,twsummerbot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,187708,-0.6656430341623161,relative_legacy,twsummerbot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,187708,-37.53772350367922,peer,twsummerbot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,187708,-26.1137890782804,baseline,twsummerbot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,189869,-54.89219480292673,peer,VeritasAI,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,189869,-40.870171607168906,spot_baseline,VeritasAI,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,189869,-38.62722399678466,baseline,VeritasAI,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,189869,-0.9335585033566096,relative_legacy,VeritasAI,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,189869,-57.71624622067962,spot_peer,VeritasAI,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,191026,-24.76200607836649,baseline,manticAI,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,191026,-26.766047497970384,spot_baseline,manticAI,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,191026,-31.97124757688836,peer,manticAI,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,191026,-0.630762435185783,relative_legacy,manticAI,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,191026,-34.367970955859136,spot_peer,manticAI,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,191935,27.26033080783918,peer,pgodzinai,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,191935,23.08654180207135,spot_baseline,pgodzinai,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,191935,48.15909478956296,spot_peer,pgodzinai,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,191935,0.2450435965592142,relative_legacy,pgodzinai,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,191935,13.070354795624963,baseline,pgodzinai,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,191975,49.36420366297924,spot_peer,jkraybill_bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,191975,23.81451870498928,spot_baseline,jkraybill_bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,191975,0.3251881876568588,relative_legacy,jkraybill_bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,191975,35.004529989779485,peer,jkraybill_bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,191975,16.98407914946582,baseline,jkraybill_bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,192075,7.044293973361851,baseline,CumulativeBot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,192075,9.577920256278912,spot_baseline,CumulativeBot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,192075,25.796627481596992,spot_peer,CumulativeBot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,192075,0.0904623954371782,relative_legacy,CumulativeBot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,192075,18.71525163565694,peer,CumulativeBot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,192418,0.5201798460787582,relative_legacy,InstitutPelFutur,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,192418,25.192963641259237,spot_baseline,InstitutPelFutur,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,192418,51.29386325469804,peer,InstitutPelFutur,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,192418,24.546051026261797,baseline,InstitutPelFutur,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,192418,51.64611153334735,spot_peer,InstitutPelFutur,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,192924,23.2180042070186,baseline,acm_bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,192924,25.192963641259222,spot_baseline,acm_bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,192924,51.64611153334734,spot_peer,acm_bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,192924,0.4824106178158035,relative_legacy,acm_bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,192924,48.09725903955695,peer,acm_bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,218666,59.8790757511968,spot_peer,GreeneiBot2,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,218666,30.16629669469031,spot_baseline,GreeneiBot2,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,218666,0.4877595012606485,relative_legacy,GreeneiBot2,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,218666,47.74640176363184,peer,GreeneiBot2,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,218666,24.15114250067279,baseline,GreeneiBot2,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,220077,32.31913599048683,peer,mmBot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,220077,13.86468838532139,spot_baseline,mmBot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,220077,32.89303712025485,spot_peer,mmBot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,220077,0.2638997180558351,relative_legacy,mmBot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,220077,13.819544701703895,baseline,mmBot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,222631,0.0114212535122061,relative_legacy,Grizeu_Bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,222631,12.328974080297003,peer,Grizeu_Bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,222631,3.4172277080847024,baseline,Grizeu_Bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,222631,4.973333053431098,spot_baseline,Grizeu_Bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,222631,18.174093202928475,spot_peer,Grizeu_Bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,224797,22.794778151061493,baseline,cookics_bot_TEST,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,224797,0.461966306444282,relative_legacy,cookics_bot_TEST,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,224797,45.97378355413775,peer,cookics_bot_TEST,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,224797,27.230309883053646,spot_baseline,cookics_bot_TEST,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,224797,55.01877902371209,spot_peer,cookics_bot_TEST,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,227188,-9.957152625302676,baseline,ProfessorSP,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,227188,-19.649027038532743,spot_peer,ProfessorSP,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,227188,-0.2877301335413226,relative_legacy,ProfessorSP,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,227188,-10.945551360746888,peer,ProfessorSP,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,227188,-17.87469216608008,spot_baseline,ProfessorSP,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236037,13.45559808534508,peer,metac-o1,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236037,14.959545871077747,spot_peer,metac-o1,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236037,0.0016749147956346,relative_legacy,metac-o1,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236037,3.0315033461366783,spot_baseline,metac-o1,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236037,2.732744927145594,baseline,metac-o1,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236038,-0.5142787834481976,relative_legacy,metac-gpt-4o,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236038,-23.5318164539822,peer,metac-gpt-4o,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236038,-19.49560929443846,baseline,metac-gpt-4o,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236038,-21.589755359919884,spot_baseline,metac-gpt-4o,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236038,-25.79902383410857,spot_peer,metac-gpt-4o,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236040,16.301608309368927,spot_baseline,metac-claude-3-5-sonnet-latest,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236040,14.70575139999044,baseline,metac-claude-3-5-sonnet-latest,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236040,33.40301769534887,peer,metac-claude-3-5-sonnet-latest,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236040,0.2797037554152691,relative_legacy,metac-claude-3-5-sonnet-latest,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236040,36.92716761602095,spot_peer,metac-claude-3-5-sonnet-latest,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236041,2.732942371533776,baseline,metac-claude-3-5-sonnet-20240620,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236041,3.0315033461366783,spot_baseline,metac-claude-3-5-sonnet-20240620,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236041,14.959545871077747,spot_peer,metac-claude-3-5-sonnet-20240620,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236041,0.0016165138123991,relative_legacy,metac-claude-3-5-sonnet-20240620,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236041,13.458239902192233,peer,metac-claude-3-5-sonnet-20240620,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236043,-9.099172201412456,baseline,metac-grok-2-1212,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236043,-6.24806168578863,peer,metac-grok-2-1212,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236043,-10.097868842419825,spot_baseline,metac-grok-2-1212,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236043,-0.272983225846087,relative_legacy,metac-grok-2-1212,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236043,-6.775103763263558,spot_peer,metac-grok-2-1212,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236045,-8.993620067905029,baseline,metac-Gemini-Exp-1206,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236045,-10.097868842419809,spot_baseline,metac-Gemini-Exp-1206,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236045,-6.775103763263546,spot_peer,metac-Gemini-Exp-1206,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236045,-0.2697279899037948,relative_legacy,metac-Gemini-Exp-1206,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236045,-6.183327906698708,peer,metac-Gemini-Exp-1206,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236047,-17.106750818094582,baseline,metac-Llama-3.1,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236047,-18.981707343538748,spot_baseline,metac-Llama-3.1,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236047,-21.48160415466732,spot_peer,metac-Llama-3.1,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236047,-0.4588840026452223,relative_legacy,metac-Llama-3.1,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,236047,-19.58192030857957,peer,metac-Llama-3.1,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,237476,-17.87469216608008,spot_baseline,NextWorldLab,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,237476,-0.4178264834164725,relative_legacy,NextWorldLab,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,237476,-15.22412649175178,baseline,NextWorldLab,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,237476,-17.002572194994634,peer,NextWorldLab,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,237476,-19.649027038532743,spot_peer,NextWorldLab,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,239758,-16.077569276668395,baseline,metac-perplexity,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,239758,-17.8862542280258,peer,metac-perplexity,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,239758,-0.4350373992446389,relative_legacy,metac-perplexity,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,239758,-19.649027038532743,spot_peer,metac-perplexity,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,239758,-17.87469216608008,spot_baseline,metac-perplexity,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,239759,6.808181929508998,spot_peer,metac-exa,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,239759,-0.1012478420303781,relative_legacy,metac-exa,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,239759,6.04242684840708,peer,metac-exa,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,239759,-1.7022725463462511,baseline,metac-exa,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,239759,-1.892536968924904,spot_baseline,metac-exa,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,240416,16.589621192751867,baseline,metac-o1-preview,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,240416,40.50381562511129,spot_peer,metac-o1-preview,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,240416,18.462174211687877,spot_baseline,metac-o1-preview,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,240416,0.3234027929042939,relative_legacy,metac-o1-preview,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,240416,36.48438871650274,peer,metac-o1-preview,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,246118,-13.019602019217343,peer,laylaps,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,246118,-11.755901137907731,baseline,laylaps,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,246118,-17.87469216608008,spot_baseline,laylaps,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,246118,-0.3377265865523869,relative_legacy,laylaps,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,246118,-19.649027038532743,spot_peer,laylaps,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,247214,-87.20349363855141,spot_peer,ajf-bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,247214,-58.68269919231961,spot_baseline,ajf-bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,247214,-56.09792012453497,baseline,ajf-bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,247214,-84.5725802810064,peer,ajf-bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,247214,-1.3438761570534057,relative_legacy,ajf-bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,250015,0.0,spot_baseline,metac-deepseek-r1,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,250015,-0.0726227492425341,relative_legacy,metac-deepseek-r1,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,250015,9.941128985079017,spot_peer,metac-deepseek-r1,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,250015,-0.0001817528137527,baseline,metac-deepseek-r1,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,250015,7.207604981651163,peer,metac-deepseek-r1,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264059,-19.649027038532743,spot_peer,wunderplumb,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264059,-14.193558594532004,peer,wunderplumb,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264059,-12.68934624429494,baseline,wunderplumb,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264059,-0.3634529856033376,relative_legacy,wunderplumb,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264059,-17.87469216608008,spot_baseline,wunderplumb,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264225,-31.3534893265503,peer,KevinTestBot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264225,-0.5910421780855979,relative_legacy,KevinTestBot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264225,-22.724501430077023,baseline,KevinTestBot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264225,-49.23918306214448,spot_peer,KevinTestBot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264225,-35.74938433216015,spot_baseline,KevinTestBot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264332,19.744461764952437,spot_peer,krm-bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264332,3.4812304009228687,baseline,krm-bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264332,0.0194070438772702,relative_legacy,krm-bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264332,11.591144620749356,peer,krm-bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264332,5.921954433158508,spot_baseline,krm-bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264891,-34.36797095585915,spot_peer,swingswish,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264891,-22.30786110556783,baseline,swingswish,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264891,-29.002235292327164,peer,swingswish,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264891,-26.76604749797039,spot_baseline,swingswish,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,264891,-0.5852845459910907,relative_legacy,swingswish,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,265212,-18.77264252048098,peer,4Shadower,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,265212,-15.390267323460044,baseline,4Shadower,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,265212,-22.161460295122552,spot_baseline,4Shadower,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,265212,-26.745436677190607,spot_peer,4Shadower,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,265212,-0.4247872825099077,relative_legacy,4Shadower,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,265835,1.0294458614752424,baseline,jonahsingerbot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,265835,1.5342382827944268,spot_baseline,jonahsingerbot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,265835,12.480940565802936,spot_peer,jonahsingerbot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,265835,-0.0423321028856107,relative_legacy,jonahsingerbot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,265835,8.251189078459275,peer,jonahsingerbot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,266158,-19.649027038532743,spot_peer,bean_bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,266158,-0.4303265655916911,relative_legacy,bean_bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,266158,-17.69547410516217,peer,bean_bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,266158,-15.906794652517174,baseline,bean_bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,266158,-17.87469216608008,spot_baseline,bean_bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,266572,-2.1264179694826586,baseline,cobyj-bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,266572,-3.187031571163564,spot_baseline,cobyj-bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,266572,4.66524727664523,spot_peer,cobyj-bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,266572,-0.1152265957264857,relative_legacy,cobyj-bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35595,"What will be the ranking of the All-In podcast on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.684764+00,266572,2.9967368261418543,peer,cobyj-bot,True,31-40,2025-03-18 14:00:00+00,2025-03-18 14:00:00+00,1.0,2025-03-18 14:00:00+00,36158 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,185699,0.0285699983693781,relative_legacy,MWG,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,185699,70.58275424987532,spot_peer,MWG,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,185699,52.829176418318376,spot_baseline,MWG,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,185699,61.50619412327271,peer,MWG,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,185699,45.739329658687424,baseline,MWG,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,187708,86.35047643437773,peer,twsummerbot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,187708,77.88888356974628,spot_baseline,twsummerbot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,187708,106.31546012851106,spot_peer,twsummerbot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,187708,0.418998173737377,relative_legacy,twsummerbot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,187708,63.36242616909461,baseline,twsummerbot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,189869,-35.76352615334441,spot_baseline,VeritasAI,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,189869,-34.324389100876246,baseline,VeritasAI,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,189869,-49.88479005438019,peer,VeritasAI,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,189869,-1.5581304034488397,relative_legacy,VeritasAI,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,189869,-55.74182587620577,spot_peer,VeritasAI,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,191026,-58.05772549104229,peer,manticAI,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,191026,-64.3849886152163,spot_peer,manticAI,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,191026,-38.76907332204004,baseline,manticAI,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,191026,-41.82506338585602,spot_baseline,manticAI,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,191026,-1.6712086359811256,relative_legacy,manticAI,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,191935,-21.657098217623464,peer,pgodzinai,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,191935,-16.096404744368126,spot_baseline,pgodzinai,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,191935,-27.698422952946704,spot_peer,pgodzinai,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,191935,-1.0609115164805285,relative_legacy,pgodzinai,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,191935,-12.55747806547053,baseline,pgodzinai,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,191975,-37.243345166085,spot_baseline,jkraybill_bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,191975,-1.2257730082084568,relative_legacy,jkraybill_bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,191975,-39.97903879179379,peer,jkraybill_bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,191975,-25.73732307076131,baseline,jkraybill_bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,191975,-57.85190390769862,spot_peer,jkraybill_bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,192075,59.452214115451376,spot_peer,CumulativeBot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,192075,45.02321632245428,spot_baseline,CumulativeBot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,192075,-0.1177749772285495,relative_legacy,CumulativeBot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,192075,50.38579747244013,peer,CumulativeBot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,192075,38.13543893721619,baseline,CumulativeBot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,192418,23.659820898286466,baseline,InstitutPelFutur,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,192418,-0.3936027336671771,relative_legacy,InstitutPelFutur,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,192418,29.862058091839582,spot_peer,InstitutPelFutur,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,192418,24.271341358512046,spot_baseline,InstitutPelFutur,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,192418,35.986159003853864,peer,InstitutPelFutur,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,192924,65.16330804897015,baseline,acm_bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,192924,68.9255811626865,spot_baseline,acm_bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,192924,0.4164582431423501,relative_legacy,acm_bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,192924,93.53466238505118,spot_peer,acm_bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,192924,91.62292483366885,peer,acm_bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,218666,25.91653225758929,baseline,GreeneiBot2,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,218666,36.958467730497496,spot_peer,GreeneiBot2,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,218666,-0.3711352110368709,relative_legacy,GreeneiBot2,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,218666,33.55348504281467,peer,GreeneiBot2,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,218666,29.248125036057807,spot_baseline,GreeneiBot2,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,220077,-3.1302258841018182,relative_legacy,mmBot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,220077,-116.09640474436812,spot_baseline,mmBot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,220077,-170.28870009670686,spot_peer,mmBot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,220077,-115.70515431392263,baseline,mmBot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,220077,-163.79917268877327,peer,mmBot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,222631,-27.698422952946704,spot_peer,Grizeu_Bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,222631,-16.096404744368126,spot_baseline,Grizeu_Bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,222631,-1.147651972474318,relative_legacy,Grizeu_Bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,222631,-23.40146655749404,peer,Grizeu_Bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,222631,-13.56504776513689,baseline,Grizeu_Bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,224797,-27.69842295294669,spot_peer,cookics_bot_TEST,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,224797,-1.185498720148634,relative_legacy,cookics_bot_TEST,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,224797,-14.669437315018245,baseline,cookics_bot_TEST,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,224797,-23.955379425409173,peer,cookics_bot_TEST,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,224797,-16.096404744368115,spot_baseline,cookics_bot_TEST,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,227188,-116.09640474436812,spot_baseline,ProfessorSP,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,227188,-170.28870009670686,spot_peer,ProfessorSP,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,227188,-2.619896597890225,relative_legacy,ProfessorSP,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,227188,-132.8471687412839,peer,ProfessorSP,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,227188,-90.52812353443002,baseline,ProfessorSP,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236037,-19.796433816556963,spot_baseline,metac-o1,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236037,-18.52225900012218,baseline,metac-o1,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236037,-28.743744106053175,peer,metac-o1,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236037,-1.2639831841969014,relative_legacy,metac-o1,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236037,-32.97430466138046,spot_peer,metac-o1,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236038,-98.99356152482676,spot_peer,metac-gpt-4o,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236038,-62.02345013257093,baseline,metac-gpt-4o,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236038,-90.80221054637754,peer,metac-gpt-4o,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236038,-2.1308245445420253,relative_legacy,metac-gpt-4o,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236038,-66.09640474436812,spot_baseline,metac-gpt-4o,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236040,-2.272995337113373,relative_legacy,metac-claude-3-5-sonnet-latest,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236040,-73.69655941662057,spot_baseline,metac-claude-3-5-sonnet-latest,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236040,-109.830643135346,spot_peer,metac-claude-3-5-sonnet-latest,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236040,-69.10786180465975,baseline,metac-claude-3-5-sonnet-latest,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236040,-100.9615664871713,peer,metac-claude-3-5-sonnet-latest,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236041,-114.4066971662622,baseline,metac-claude-3-5-sonnet-20240620,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236041,-122.1111164302537,spot_baseline,metac-claude-3-5-sonnet-20240620,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236041,-165.80206307824196,peer,metac-claude-3-5-sonnet-20240620,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236041,-3.1799690406153704,relative_legacy,metac-claude-3-5-sonnet-20240620,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236041,-178.86509415900926,spot_peer,metac-claude-3-5-sonnet-20240620,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236043,-90.75078675248636,peer,metac-grok-2-1212,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236043,-66.09640474436817,spot_baseline,metac-grok-2-1212,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236043,-98.99356152482684,spot_peer,metac-grok-2-1212,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236043,-61.95871911109108,baseline,metac-grok-2-1212,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236043,-2.130424295952257,relative_legacy,metac-grok-2-1212,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236045,2.8291764183183603,spot_baseline,metac-Gemini-Exp-1206,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236045,1.0354540554514504,peer,metac-Gemini-Exp-1206,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236045,-0.8427004466036405,relative_legacy,metac-Gemini-Exp-1206,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236045,-0.7123843220047754,spot_peer,metac-Gemini-Exp-1206,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236045,2.6153905098674466,baseline,metac-Gemini-Exp-1206,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236047,61.29524457494247,baseline,metac-Llama-3.1,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236047,85.16668009768122,peer,metac-Llama-3.1,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236047,65.78118820116038,spot_baseline,metac-Llama-3.1,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236047,89.05106374672219,spot_peer,metac-Llama-3.1,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,236047,0.3285489185059007,relative_legacy,metac-Llama-3.1,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,237476,-1.458889156161278,relative_legacy,NextWorldLab,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,237476,-49.30911369874861,spot_peer,NextWorldLab,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,237476,-43.6003213784601,peer,NextWorldLab,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,237476,-28.36310064153009,baseline,NextWorldLab,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,237476,-31.25220020159548,spot_baseline,NextWorldLab,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,239758,51.42845760983855,spot_baseline,metac-perplexity,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,239758,68.58546541885916,spot_peer,metac-perplexity,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,239758,0.0609349207820558,relative_legacy,metac-perplexity,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,239758,66.02572694475653,peer,metac-perplexity,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,239758,47.91710135682544,baseline,metac-perplexity,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,239759,72.60341151119053,spot_baseline,metac-exa,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,239759,98.7788908718604,spot_peer,metac-exa,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,239759,67.71047776432616,baseline,metac-exa,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,239759,0.4570763286804041,relative_legacy,metac-exa,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,239759,94.37472524205047,peer,metac-exa,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,240416,-1.1528866777534208,spot_peer,metac-o1-preview,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,240416,-0.8469288810704348,relative_legacy,metac-o1-preview,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,240416,1.0871083822428869,peer,metac-o1-preview,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,240416,2.3529904474296988,baseline,metac-o1-preview,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,240416,2.520247671862159,spot_baseline,metac-o1-preview,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,246118,0.0786229854902025,relative_legacy,laylaps,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,246118,47.09869544367374,baseline,laylaps,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,246118,63.10566736600813,peer,laylaps,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,246118,76.35195653398266,spot_peer,laylaps,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,246118,56.87517618749676,spot_baseline,laylaps,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,247214,-2.139644608924888,relative_legacy,ajf-bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,247214,-66.09640474436812,spot_baseline,ajf-bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,247214,-98.99356152482676,spot_peer,ajf-bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,247214,-91.73317851861266,peer,ajf-bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,247214,-63.35699095357003,baseline,ajf-bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,250015,-51.93357959725176,baseline,metac-deepseek-r1,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,250015,-89.19022874495336,spot_peer,metac-deepseek-r1,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,250015,-59.22122855687138,spot_baseline,metac-deepseek-r1,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,250015,-1.9261242538549144,relative_legacy,metac-deepseek-r1,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,250015,-77.72284187556147,peer,metac-deepseek-r1,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264059,98.21079229008907,spot_peer,wunderplumb,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264059,72.20499824406535,spot_baseline,wunderplumb,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264059,0.3017257248306293,relative_legacy,wunderplumb,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264059,72.95039476274012,peer,wunderplumb,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264059,53.69429031759,baseline,wunderplumb,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264225,-16.096404744368105,spot_baseline,KevinTestBot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264225,-13.204103999852874,baseline,KevinTestBot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264225,-22.881348979342405,peer,KevinTestBot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264225,-1.1190102238923207,relative_legacy,KevinTestBot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264225,-27.698422952946668,spot_peer,KevinTestBot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264332,71.11165003415238,spot_baseline,krm-bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264332,76.95286788359633,peer,krm-bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264332,0.3036270628757767,relative_legacy,krm-bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264332,96.65178404742788,spot_peer,krm-bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264332,56.70245791911893,baseline,krm-bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264891,68.9255811626865,spot_baseline,swingswish,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264891,62.48774840591066,baseline,swingswish,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264891,86.16777476607182,peer,swingswish,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264891,0.3579208421528475,relative_legacy,swingswish,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,264891,93.53466238505118,spot_peer,swingswish,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,265212,102.6161876914638,spot_peer,4Shadower,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,265212,75.29454648649785,spot_baseline,4Shadower,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,265212,86.99502970915162,peer,4Shadower,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,265212,63.79232590112529,baseline,4Shadower,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,265212,0.3951899498896022,relative_legacy,4Shadower,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,265835,0.3702104355153252,relative_legacy,jonahsingerbot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,265835,74.27134135851207,spot_baseline,jonahsingerbot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,265835,84.4129381478146,peer,jonahsingerbot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,265835,62.03855062864589,baseline,jonahsingerbot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,265835,101.15719666371972,spot_peer,jonahsingerbot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,266158,85.7973962006136,spot_peer,bean_bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,266158,58.76880390544252,baseline,bean_bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,266158,81.32836712149916,peer,bean_bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,266158,0.2797873205123389,relative_legacy,bean_bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,266158,63.49935832377805,spot_baseline,bean_bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,266572,60.08169305848252,spot_baseline,cobyj-bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,266572,67.57213030061557,peer,cobyj-bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,266572,50.23173054185872,baseline,cobyj-bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,266572,80.92413782698272,spot_peer,cobyj-bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35596,"What will be the ranking of the Giggly Squad on the Spotify Podcast Charts on March 31, 2025?",2025-03-15 15:49:26.71627+00,266572,0.1333165756880416,relative_legacy,cobyj-bot,True,≥56,2025-03-18 16:00:00+00,2025-03-18 16:00:00+00,1.0,2025-03-18 16:00:00+00,36159 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,185699,-0.8622642410171901,spot_peer,MWG,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,185699,-1.166124562555979,peer,MWG,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,185699,10.49118881227957,baseline,MWG,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,185699,12.167855658825246,spot_baseline,MWG,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,185699,-0.0399236418022227,relative_legacy,MWG,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,187708,4.03144400920094,baseline,twsummerbot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,187708,6.763871687536329,spot_baseline,twsummerbot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,187708,-4.715042101749817,spot_peer,twsummerbot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,187708,-0.0571350703693348,relative_legacy,twsummerbot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,187708,-2.810288117862439,peer,twsummerbot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,189869,23.346175111460003,baseline,VeritasAI,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,189869,7.835067099012138,spot_peer,VeritasAI,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,189869,0.0672107781713396,relative_legacy,VeritasAI,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,189869,7.012241811245813,peer,VeritasAI,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,189869,24.36690809668627,spot_baseline,VeritasAI,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,191026,28.273165740297006,baseline,manticAI,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,191026,30.56787432422877,spot_baseline,manticAI,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,191026,10.63041556513494,peer,manticAI,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,191026,0.1230741504390711,relative_legacy,manticAI,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,191026,12.256054563734049,spot_peer,manticAI,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,191935,55.77776713949258,spot_baseline,pgodzinai,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,191935,21.78091256188044,peer,pgodzinai,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,191935,0.2835204611598,relative_legacy,pgodzinai,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,191935,40.18661411498004,baseline,pgodzinai,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,191935,30.22948258019881,spot_peer,pgodzinai,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,191975,17.504548611091383,spot_baseline,jkraybill_bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,191975,11.264765332560737,baseline,jkraybill_bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,191975,1.88733133375604,peer,jkraybill_bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,191975,0.0068821665602445,relative_legacy,jkraybill_bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,191975,2.942538394456713,spot_peer,jkraybill_bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,192075,5.135865675667951,spot_peer,CumulativeBot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,192075,20.580953714084373,spot_baseline,CumulativeBot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,192075,0.033060261385394,relative_legacy,CumulativeBot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,192075,3.996804752468512,peer,CumulativeBot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,192075,16.641784685122694,baseline,CumulativeBot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,192418,13.352585580948512,baseline,InstitutPelFutur,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,192418,13.750352374993504,spot_baseline,InstitutPelFutur,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,192418,0.2659789856704039,spot_peer,InstitutPelFutur,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,192418,-0.0317658935686275,relative_legacy,InstitutPelFutur,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,192418,0.07912874609934,peer,InstitutPelFutur,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,192924,0.0266131868077478,relative_legacy,acm_bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,192924,3.845432911327255,peer,acm_bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,192924,20.163386116965043,spot_baseline,acm_bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,192924,18.92960658644664,baseline,acm_bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,192924,4.838160278670446,spot_peer,acm_bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,218666,-0.0147171677454067,relative_legacy,GreeneiBot2,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,218666,12.9090870742437,baseline,GreeneiBot2,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,218666,0.6315653393220472,peer,GreeneiBot2,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,218666,15.05596765753814,spot_baseline,GreeneiBot2,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,218666,1.1968192105762618,spot_peer,GreeneiBot2,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,220077,-32.19280948873623,spot_baseline,mmBot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,220077,-32.53586982975986,peer,mmBot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,220077,-0.477907187925901,relative_legacy,mmBot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,220077,-32.489261929378856,spot_peer,mmBot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,220077,-32.09839662091264,baseline,mmBot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,222631,-5.389300799520199,spot_baseline,Grizeu_Bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,222631,-4.278838024052182,baseline,Grizeu_Bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,222631,-10.733535199266411,peer,Grizeu_Bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,222631,-0.1731468368579027,relative_legacy,Grizeu_Bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,222631,-13.37966326727638,spot_peer,Grizeu_Bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,224797,2.1193109802316115,spot_peer,cookics_bot_TEST,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,224797,14.528337031165163,baseline,cookics_bot_TEST,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,224797,1.3276065826517525,peer,cookics_bot_TEST,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,224797,16.349873228287958,spot_baseline,cookics_bot_TEST,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,224797,-0.0052018345443758,relative_legacy,cookics_bot_TEST,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,227188,26.303440583379377,spot_baseline,ProfessorSP,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,227188,18.384807152459125,baseline,ProfessorSP,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,227188,6.433252360342941,peer,ProfessorSP,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,227188,0.0690219671114922,relative_legacy,ProfessorSP,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,227188,9.215720618889469,spot_peer,ProfessorSP,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236037,16.34987322828793,spot_baseline,metac-o1,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236037,15.156573207784133,baseline,metac-o1,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236037,1.2113037375650684,peer,metac-o1,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236037,-0.0086324186755369,relative_legacy,metac-o1,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236037,2.119310980231589,spot_peer,metac-o1,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236038,12.58838810925422,spot_peer,metac-gpt-4o,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236038,10.974119411311824,peer,metac-gpt-4o,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236038,28.811883805263044,baseline,metac-gpt-4o,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236038,0.1275473743841977,relative_legacy,metac-gpt-4o,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236038,31.034012061215023,spot_baseline,metac-gpt-4o,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236040,10.915877391013971,spot_peer,metac-claude-3-5-sonnet-latest,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236040,28.688114778816157,spot_baseline,metac-claude-3-5-sonnet-latest,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236040,0.1057786116568056,relative_legacy,metac-claude-3-5-sonnet-latest,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236040,9.417347317748147,peer,metac-claude-3-5-sonnet-latest,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236040,26.64175986064812,baseline,metac-claude-3-5-sonnet-latest,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236041,24.42765558382956,baseline,metac-claude-3-5-sonnet-20240620,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236041,0.0836350563597854,relative_legacy,metac-claude-3-5-sonnet-20240620,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236041,7.8314993125312915,peer,metac-claude-3-5-sonnet-20240620,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236041,9.215720618889469,spot_peer,metac-claude-3-5-sonnet-20240620,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236041,26.303440583379377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236043,12.58838810925424,spot_peer,metac-grok-2-1212,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236043,10.965806048614548,peer,metac-grok-2-1212,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236043,28.789987002494996,baseline,metac-grok-2-1212,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236043,31.034012061215048,spot_baseline,metac-grok-2-1212,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236043,0.1275110010780923,relative_legacy,metac-grok-2-1212,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236045,4.560419657507328,peer,metac-Gemini-Exp-1206,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236045,19.622201471110102,baseline,metac-Gemini-Exp-1206,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236045,21.412480535284764,spot_baseline,metac-Gemini-Exp-1206,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236045,5.728703875105105,spot_peer,metac-Gemini-Exp-1206,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236045,0.0388163572908898,relative_legacy,metac-Gemini-Exp-1206,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236047,24.174975747633415,baseline,metac-Llama-3.1,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236047,7.778832328602865,peer,metac-Llama-3.1,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236047,0.0836159395621595,relative_legacy,metac-Llama-3.1,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,236047,9.215720618889469,spot_peer,metac-Llama-3.1,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,237476,0.0832445889709908,relative_legacy,NextWorldLab,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,237476,23.56824728067665,baseline,NextWorldLab,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,237476,26.303440583379377,spot_baseline,NextWorldLab,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,237476,9.215720618889469,spot_peer,NextWorldLab,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,237476,7.681830374602978,peer,NextWorldLab,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,239758,24.360842684534195,baseline,metac-perplexity,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,239758,26.30344058337941,spot_baseline,metac-perplexity,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,239758,7.8128134682325,peer,metac-perplexity,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,239758,0.0836345142734112,relative_legacy,metac-perplexity,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,239758,9.21572061888949,spot_peer,metac-perplexity,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,239759,16.34987322828793,spot_baseline,metac-exa,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,239759,-0.0084419666423731,relative_legacy,metac-exa,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,239759,2.119310980231589,spot_peer,metac-exa,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,239759,15.124280380120313,baseline,metac-exa,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,239759,1.2146710999765846,peer,metac-exa,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,240416,10.94434391761954,peer,metac-o1-preview,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,240416,31.034012061215023,spot_baseline,metac-o1-preview,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,240416,12.58838810925422,spot_peer,metac-o1-preview,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,240416,0.1274120131783891,relative_legacy,metac-o1-preview,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,240416,28.72365097642564,baseline,metac-o1-preview,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,246118,26.303440583379377,spot_baseline,laylaps,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,246118,20.29857336312844,baseline,laylaps,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,246118,7.05319048750928,peer,laylaps,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,246118,0.0762639097841294,relative_legacy,laylaps,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,246118,9.215720618889469,spot_peer,laylaps,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,247214,18.082146320690956,baseline,ajf-bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,247214,3.939838910455693,spot_peer,ajf-bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,247214,18.903382439001685,spot_baseline,ajf-bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,247214,3.2045215531001485,peer,ajf-bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,247214,0.0147841349892863,relative_legacy,ajf-bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,250015,14.662700283235557,baseline,metac-deepseek-r1,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,250015,0.0256818416899995,relative_legacy,metac-deepseek-r1,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,250015,3.437322013327947,peer,metac-deepseek-r1,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,250015,4.659122560955537,spot_peer,metac-deepseek-r1,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,250015,19.91226420136009,spot_baseline,metac-deepseek-r1,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264059,-0.0193530575459502,relative_legacy,wunderplumb,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264059,0.1914599213218462,peer,wunderplumb,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264059,9.946775391560054,baseline,wunderplumb,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264059,13.750352374993504,spot_baseline,wunderplumb,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264059,0.2659789856704039,spot_peer,wunderplumb,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264225,12.42747742426185,baseline,KevinTestBot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264225,16.34987322828793,spot_baseline,KevinTestBot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264225,2.119310980231589,spot_peer,KevinTestBot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264225,-0.0005485575969746,relative_legacy,KevinTestBot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264225,1.5709158903968343,peer,KevinTestBot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264332,-98.76598361526024,spot_peer,krm-bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264332,-72.45198806053239,peer,krm-bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264332,-125.15387669959644,spot_baseline,krm-bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264332,-91.79314078519684,baseline,krm-bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264332,-1.0383968433469168,relative_legacy,krm-bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264891,0.0397839975691312,relative_legacy,swingswish,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264891,21.412480535284736,spot_baseline,swingswish,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264891,18.92350778742567,baseline,swingswish,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264891,4.541664965411766,peer,swingswish,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,264891,5.728703875105083,spot_peer,swingswish,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,265212,-64.38561897747249,spot_baseline,4Shadower,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,265212,-55.44117006455474,spot_peer,4Shadower,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,265212,-0.6448153316974876,relative_legacy,4Shadower,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,265212,-44.387276344399226,peer,4Shadower,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,265212,-51.36777707723128,baseline,4Shadower,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,265835,16.34987322828793,spot_baseline,jonahsingerbot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,265835,12.794197605173762,baseline,jonahsingerbot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,265835,1.5782523542995022,peer,jonahsingerbot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,265835,-0.0005485575969746,relative_legacy,jonahsingerbot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,265835,2.119310980231589,spot_peer,jonahsingerbot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,266158,2.9147525114863315,peer,bean_bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,266158,18.903382439001685,spot_baseline,bean_bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,266158,3.939838910455693,spot_peer,bean_bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,266158,0.015820536266074,relative_legacy,bean_bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,266158,17.323606116886435,baseline,bean_bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,266572,-0.0005485575969746,relative_legacy,cobyj-bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,266572,12.694809262253916,baseline,cobyj-bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,266572,1.575323778980977,peer,cobyj-bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,266572,2.119310980231589,spot_peer,cobyj-bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35597,"Which podcast will be ranked higher on Spotify on March 31, 2025: The New York Times Daily or The Tucker Carlson Show?",2025-03-15 15:49:26.747073+00,266572,16.34987322828793,spot_baseline,cobyj-bot,True,The Tucker Carlson Show,2025-03-18 18:00:00+00,2025-03-18 18:00:00+00,1.0,2025-03-18 18:00:00+00,36160 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,187708,20.686152028569897,spot_peer,twsummerbot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,187708,39.89675791746208,spot_baseline,twsummerbot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,187708,22.68190479551717,baseline,twsummerbot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,187708,11.69250174121158,peer,twsummerbot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,187708,0.1262856661032273,relative_legacy,twsummerbot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,189869,-21.80833058930372,peer,VeritasAI,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,189869,-20.45737957381296,spot_peer,VeritasAI,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,189869,-9.436895709313841e-14,spot_baseline,VeritasAI,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,189869,-9.0462774477461e-14,baseline,VeritasAI,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,189869,-0.9065187019278348,relative_legacy,VeritasAI,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,191026,4.849143461521184,peer,manticAI,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,191026,24.54170854805409,baseline,manticAI,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,191026,26.19867610477722,spot_baseline,manticAI,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,191026,6.560005159238648,spot_peer,manticAI,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,191026,-0.1700707813179776,relative_legacy,manticAI,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,191935,63.34867128638299,baseline,pgodzinai,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,191935,49.55335086485663,peer,pgodzinai,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,191935,1.1176989683554504,relative_legacy,pgodzinai,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,191935,81.55906100486246,spot_baseline,pgodzinai,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,191935,63.65040208745155,spot_peer,pgodzinai,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,191975,33.81537267175832,peer,jkraybill_bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,191975,45.85861543016256,baseline,jkraybill_bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,191975,69.70151804813004,spot_baseline,jkraybill_bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,191975,51.42231091332125,spot_peer,jkraybill_bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,191975,0.7115461038526377,relative_legacy,jkraybill_bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,192418,1.014517217112661,relative_legacy,InstitutPelFutur,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,192418,51.023423421431545,spot_peer,InstitutPelFutur,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,192418,69.31471805599458,spot_baseline,InstitutPelFutur,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,192418,67.69443463281193,baseline,InstitutPelFutur,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,192418,47.80415603025307,peer,InstitutPelFutur,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,192924,60.19864031629679,spot_baseline,acm_bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,192924,0.7532790647769126,relative_legacy,acm_bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,192924,41.622468252368215,spot_peer,acm_bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,192924,57.03441663438716,baseline,acm_bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,192924,38.07541807340836,peer,acm_bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,218666,-18.11865068509002,baseline,GreeneiBot2,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,218666,-26.37476300040213,spot_baseline,GreeneiBot2,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,218666,-47.65635391797756,spot_peer,GreeneiBot2,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,218666,-32.74149487457395,peer,GreeneiBot2,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,218666,-1.1558025074757812,relative_legacy,GreeneiBot2,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,220077,31.255233986321457,peer,mmBot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,220077,53.34360480619037,spot_baseline,mmBot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,220077,0.5644605203776181,relative_legacy,mmBot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,220077,34.55321288257095,spot_peer,mmBot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,220077,53.16134942292141,baseline,mmBot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,222631,-34.65735902799736,spot_baseline,Grizeu_Bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,222631,-28.86036115500352,baseline,Grizeu_Bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,222631,-46.77772339521604,peer,Grizeu_Bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,222631,-1.5799979113287022,relative_legacy,Grizeu_Bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,222631,-56.197781071435145,spot_peer,Grizeu_Bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,224797,26.78886128844819,spot_peer,cookics_bot_TEST,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,224797,45.81453659370768,spot_baseline,cookics_bot_TEST,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,224797,23.61558306270333,peer,cookics_bot_TEST,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,224797,41.871619557304015,baseline,cookics_bot_TEST,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,224797,0.3605695534149838,relative_legacy,cookics_bot_TEST,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236037,80.47189562170495,spot_baseline,metac-o1,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236037,1.2970051398146836,relative_legacy,metac-o1,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236037,57.508401495632896,peer,metac-o1,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236037,75.3980306638572,baseline,metac-o1,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236037,62.52926278607037,spot_peer,metac-o1,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236038,-9.436895709313841e-14,spot_baseline,metac-gpt-4o,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236038,-20.74635815575273,peer,metac-gpt-4o,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236038,-0.8832791818234863,relative_legacy,metac-gpt-4o,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236038,-20.45737957381296,spot_peer,metac-gpt-4o,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236038,-8.881427035063049e-14,baseline,metac-gpt-4o,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236040,37.96476298360743,peer,metac-claude-3-5-sonnet-latest,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236040,60.19864001629677,spot_baseline,metac-claude-3-5-sonnet-latest,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236040,41.62246794299318,spot_peer,metac-claude-3-5-sonnet-latest,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236040,0.751654998782085,relative_legacy,metac-claude-3-5-sonnet-latest,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236040,56.69352461331026,baseline,metac-claude-3-5-sonnet-latest,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236041,5.882066445371176,spot_peer,metac-claude-3-5-sonnet-20240620,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236041,24.05680283358895,baseline,metac-claude-3-5-sonnet-20240620,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236041,25.54128098829967,spot_baseline,metac-claude-3-5-sonnet-20240620,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236041,-0.1902875358625945,relative_legacy,metac-claude-3-5-sonnet-20240620,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236041,4.137508501130118,peer,metac-claude-3-5-sonnet-20240620,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236043,41.622468252368215,spot_peer,metac-grok-2-1212,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236043,60.19864031629679,spot_baseline,metac-grok-2-1212,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236043,56.6387777597112,baseline,metac-grok-2-1212,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236043,0.7512608487741198,relative_legacy,metac-grok-2-1212,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236043,37.94488182597201,peer,metac-grok-2-1212,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236045,56.05959656181141,baseline,metac-Gemini-Exp-1206,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236045,37.68118548373521,peer,metac-Gemini-Exp-1206,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236045,41.62246794299318,spot_peer,metac-Gemini-Exp-1206,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236045,60.19864001629677,spot_baseline,metac-Gemini-Exp-1206,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236045,0.746552134010453,relative_legacy,metac-Gemini-Exp-1206,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236047,0.0020297058551898,baseline,metac-Llama-3.1,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236047,-20.03579058508496,peer,metac-Llama-3.1,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236047,-9.436895709313841e-14,spot_baseline,metac-Llama-3.1,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236047,-20.45737957381296,spot_peer,metac-Llama-3.1,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,236047,-0.8592175501267821,relative_legacy,metac-Llama-3.1,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,237476,-31.799876464514508,baseline,NextWorldLab,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,237476,-52.7429694363448,peer,NextWorldLab,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,237476,-1.7697362039186788,relative_legacy,NextWorldLab,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,237476,-56.197781071435145,spot_peer,NextWorldLab,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,237476,-34.65735902799736,spot_baseline,NextWorldLab,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,239758,-1.8203587880164875,relative_legacy,metac-perplexity,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,239758,-54.38768793878776,peer,metac-perplexity,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,239758,-32.556006729043226,baseline,metac-perplexity,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,239758,-34.65735902799736,spot_baseline,metac-perplexity,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,239758,-56.197781071435145,spot_peer,metac-perplexity,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,239759,75.26108505742442,baseline,metac-exa,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,239759,62.52926278607037,spot_peer,metac-exa,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,239759,1.295113895100225,relative_legacy,metac-exa,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,239759,57.42282703020145,peer,metac-exa,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,239759,80.47189562170495,spot_baseline,metac-exa,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,240416,73.74988384340344,baseline,metac-o1-preview,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,240416,56.51312856064747,peer,metac-o1-preview,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,240416,80.47189562170506,spot_baseline,metac-o1-preview,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,240416,62.52926278607049,spot_peer,metac-o1-preview,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,240416,1.2768200497096591,relative_legacy,metac-o1-preview,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,246118,-23.500181462286733,spot_baseline,laylaps,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,246118,-19.184187472177545,baseline,laylaps,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,246118,-36.40504889071819,peer,laylaps,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,246118,-1.2870690459562366,relative_legacy,laylaps,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,246118,-44.69194170679605,spot_peer,laylaps,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,247214,10.51304627415982,spot_baseline,ajf-bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,247214,9.844134025207664,baseline,ajf-bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,247214,-10.357235665072109,peer,ajf-bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,247214,-0.5936559343236814,relative_legacy,ajf-bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,247214,-9.615800603585551,spot_peer,ajf-bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,250015,60.19864031629679,spot_baseline,metac-deepseek-r1,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,250015,50.516276637082136,baseline,metac-deepseek-r1,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,250015,0.7027355341447072,relative_legacy,metac-deepseek-r1,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,250015,35.02900411707964,peer,metac-deepseek-r1,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,250015,41.622468252368215,spot_peer,metac-deepseek-r1,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264059,-7.123921460026964e-14,baseline,wunderplumb,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264059,-9.436895709313841e-14,spot_baseline,wunderplumb,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264059,-20.45737957381296,spot_peer,wunderplumb,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264059,-0.6901627617291464,relative_legacy,wunderplumb,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264059,-15.401553552399442,peer,wunderplumb,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264225,-16.393942916795996,peer,KevinTestBot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264225,-7.606420026276966e-14,baseline,KevinTestBot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264225,-0.7269989869558121,relative_legacy,KevinTestBot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264225,-20.45737957381296,spot_peer,KevinTestBot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264225,-9.436895709313841e-14,spot_baseline,KevinTestBot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264332,11.15717756571031,spot_baseline,krm-bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264332,3.427519175873388,baseline,krm-bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264332,-8.951540209174105,spot_peer,krm-bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264332,-2.7499406135509155,peer,krm-bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264332,-0.1791189666432913,relative_legacy,krm-bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264891,-8.566791784766472e-14,baseline,swingswish,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264891,-0.8393015847512284,relative_legacy,swingswish,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264891,-19.491611483951523,peer,swingswish,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264891,-20.45737957381296,spot_peer,swingswish,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,264891,-9.436895709313841e-14,spot_baseline,swingswish,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,265212,-112.03548386379406,spot_baseline,4Shadower,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,265212,-135.99397230835046,spot_peer,4Shadower,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,265212,-3.4543385118743246,relative_legacy,4Shadower,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,265212,-113.84658125248356,peer,4Shadower,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,265212,-93.68526968637322,baseline,4Shadower,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,265835,-45.36131404521325,baseline,jonahsingerbot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,265835,-63.64344114025016,peer,jonahsingerbot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,265835,-2.0493836594415904,relative_legacy,jonahsingerbot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,265835,-77.10457467701228,spot_peer,jonahsingerbot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,265835,-54.93061343340551,spot_baseline,jonahsingerbot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,266158,-9.436895709313841e-14,spot_baseline,bean_bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,266158,-8.831960249989379e-14,baseline,bean_bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,266158,-20.533998119817568,peer,bean_bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,266158,-0.8771185536229699,relative_legacy,bean_bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,266158,-20.45737957381296,spot_peer,bean_bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,266572,-7.796659644274724e-14,baseline,cobyj-bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,266572,-20.45737957381296,spot_peer,cobyj-bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,266572,-16.798751279936674,peer,cobyj-bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,266572,-0.7408840813265197,relative_legacy,cobyj-bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35599,"What percentage of the Great Lakes will be covered in ice on March 30, 2025?",2025-03-15 15:49:27.136405+00,266572,-9.436895709313841e-14,spot_baseline,cobyj-bot,True,4.49,2025-03-18 22:00:00+00,2025-03-18 22:00:00+00,1.0,2025-03-18 22:00:00+00,36162 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,187708,58.47217477537692,spot_peer,twsummerbot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,187708,-19.21433819262449,baseline,twsummerbot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,187708,42.70072815751233,peer,twsummerbot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,187708,-0.4279256585275547,relative_legacy,twsummerbot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,187708,-24.280066841065835,spot_baseline,twsummerbot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,191026,69.8054882439457,peer,manticAI,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,191026,0.0558773554424844,relative_legacy,manticAI,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,191026,76.72101960853452,spot_peer,manticAI,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,191026,-6.991687525442837,spot_baseline,manticAI,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,191026,-6.580528183514804,baseline,manticAI,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,191935,0.6313782644794612,relative_legacy,pgodzinai,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,191935,40.074403025829376,spot_baseline,pgodzinai,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,191935,126.40189296821076,spot_peer,pgodzinai,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,191935,21.54819934329852,baseline,pgodzinai,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,191935,66.06675513783117,peer,pgodzinai,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,191975,65.72956828329227,spot_peer,jkraybill_bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,191975,43.66798533652465,peer,jkraybill_bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,191975,-12.450142104035644,baseline,jkraybill_bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,191975,-0.2673677187187346,relative_legacy,jkraybill_bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,191975,-17.404641412514437,spot_baseline,jkraybill_bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,192075,40.70370739460735,spot_baseline,CumulativeBot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,192075,105.0400277654273,peer,CumulativeBot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,192075,1.134826616742776,relative_legacy,CumulativeBot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,192075,34.63144324404372,baseline,CumulativeBot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,192075,127.06615869080971,spot_peer,CumulativeBot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,192418,-58.10970204941561,spot_baseline,InstitutPelFutur,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,192418,-1.3929560817105002,relative_legacy,InstitutPelFutur,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,192418,-56.68225842907688,baseline,InstitutPelFutur,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,192418,15.117223819220936,peer,InstitutPelFutur,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,192418,22.76311538878548,spot_peer,InstitutPelFutur,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,192924,87.50837512146416,spot_baseline,acm_bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,192924,18.217609518925908,baseline,acm_bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,192924,36.73798452838156,peer,acm_bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,192924,0.4435530326248152,relative_legacy,acm_bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,192924,176.47108573582523,spot_peer,acm_bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,218666,26.17828022398374,spot_baseline,GreeneiBot2,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,218666,23.21435490682421,baseline,GreeneiBot2,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,218666,0.8324227456219209,relative_legacy,GreeneiBot2,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,218666,96.1981132499029,peer,GreeneiBot2,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,218666,111.73376334404036,spot_peer,GreeneiBot2,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,220077,113.5179140271346,peer,mmBot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,220077,33.07866428021795,spot_baseline,mmBot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,220077,119.01750207006536,spot_peer,mmBot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,220077,32.97604843770067,baseline,mmBot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,220077,1.1735510004757863,relative_legacy,mmBot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,222631,-142.32012291059195,spot_peer,Grizeu_Bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,222631,-49.30190131385205,peer,Grizeu_Bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,222631,-75.16477679019152,baseline,Grizeu_Bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,222631,-2.168857790523006,relative_legacy,Grizeu_Bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,222631,-214.5043488593521,spot_baseline,Grizeu_Bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236037,-204.54913527317507,baseline,metac-o1,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236037,-145.9614867092343,spot_peer,metac-o1,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236037,-217.9540619317501,spot_baseline,metac-o1,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236037,-5.659267994327454,relative_legacy,metac-o1,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236037,-143.33211461574592,peer,metac-o1,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236038,-97.6016614030034,spot_peer,metac-gpt-4o,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236038,-172.13949058900508,spot_baseline,metac-gpt-4o,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236038,-82.75342695928144,peer,metac-gpt-4o,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236038,-3.827194531816336,relative_legacy,metac-gpt-4o,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236038,-137.09564010991448,baseline,metac-gpt-4o,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236043,-149.36766198292392,spot_peer,metac-grok-2-1212,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236043,-5.767240555372549,relative_legacy,metac-grok-2-1212,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236043,-147.32570999288427,peer,metac-grok-2-1212,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236043,-208.43539010098416,baseline,metac-grok-2-1212,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236043,-221.180964822614,spot_baseline,metac-grok-2-1212,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236047,-120.81595205315142,baseline,metac-Llama-3.1,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236047,-53.09855731069541,peer,metac-Llama-3.1,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236047,-3.240267113391308,relative_legacy,metac-Llama-3.1,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236047,-51.39634247858639,spot_peer,metac-Llama-3.1,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,236047,-128.36603055534687,spot_baseline,metac-Llama-3.1,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,237476,-27.773671972907497,baseline,NextWorldLab,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,237476,-30.060388315858923,spot_baseline,NextWorldLab,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,237476,52.37072432976199,spot_peer,NextWorldLab,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,237476,-0.5807558639234491,relative_legacy,NextWorldLab,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,237476,45.312554352916095,peer,NextWorldLab,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,246118,-49.28378993557926,peer,laylaps,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,246118,-2.139641617328861,relative_legacy,laylaps,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,246118,-221.180964822614,spot_baseline,laylaps,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,246118,-149.36766198292392,spot_peer,laylaps,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,246118,-73.99396734005055,baseline,laylaps,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,247214,-25.55237300973063,baseline,ajf-bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,247214,49.5288689009696,peer,ajf-bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,247214,-0.489519915900839,relative_legacy,ajf-bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,247214,55.553471715773846,spot_peer,ajf-bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,247214,-27.045153950163485,spot_baseline,ajf-bot,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,250015,-204.4655956967017,spot_baseline,metac-deepseek-r1,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,250015,-186.33722661008576,baseline,metac-deepseek-r1,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,250015,-5.172779821417484,relative_legacy,metac-deepseek-r1,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,250015,-126.00233536798626,peer,metac-deepseek-r1,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,250015,-131.72366123890544,spot_peer,metac-deepseek-r1,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,264059,-124.5618782043075,spot_peer,wunderplumb,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,264059,-1.557501654174512,relative_legacy,wunderplumb,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,264059,-32.595808023742684,peer,wunderplumb,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,264059,-52.597946426429466,baseline,wunderplumb,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35600,"How many subscribers will the ""datascience"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.169354+00,264059,-197.68074861129315,spot_baseline,wunderplumb,True,2648766.0,2025-03-19 00:00:00+00,2025-03-19 00:00:00+00,1.0,2025-03-19 00:00:00+00,36163 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,187708,-2.443295987480969,relative_legacy,twsummerbot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,187708,-96.37260490181993,baseline,twsummerbot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,187708,-157.68817550242323,spot_baseline,twsummerbot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,187708,-38.64774829026236,peer,twsummerbot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,187708,-54.44973678751436,spot_peer,twsummerbot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,189869,-132.14137617343263,baseline,VeritasAI,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,189869,-88.51403138169664,spot_peer,VeritasAI,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,189869,-3.4079067472493465,relative_legacy,VeritasAI,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,189869,-67.3553900830244,peer,VeritasAI,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,189869,-190.33312448851456,spot_baseline,VeritasAI,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,191026,-19.45419054869102,baseline,manticAI,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,191026,-20.72769767399244,spot_baseline,manticAI,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,191026,88.46554442476122,spot_peer,manticAI,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,191026,-0.0519843854854274,relative_legacy,manticAI,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,191026,57.166991525248015,peer,manticAI,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,191935,-107.548901318105,spot_baseline,pgodzinai,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,191935,-83.97201860103664,baseline,pgodzinai,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,191935,-14.73538568190984,peer,pgodzinai,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,191935,-1.9708467369307496,relative_legacy,pgodzinai,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,191935,-2.1304941603997265,spot_peer,pgodzinai,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,191975,192.91216105389844,spot_peer,jkraybill_bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,191975,53.7812474308801,baseline,jkraybill_bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,191975,126.22263447964669,peer,jkraybill_bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,191975,79.36697659559741,spot_baseline,jkraybill_bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,191975,1.9077798615274448,relative_legacy,jkraybill_bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,192418,-0.6072984459357695,baseline,InstitutPelFutur,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,192418,-0.6211253749274922,spot_baseline,InstitutPelFutur,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,192418,109.44631551943768,spot_peer,InstitutPelFutur,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,192418,0.5036408345764146,relative_legacy,InstitutPelFutur,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,192418,78.98342753417695,peer,InstitutPelFutur,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,218666,0.3864125848826858,relative_legacy,GreeneiBot2,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,218666,45.45500054255776,peer,GreeneiBot2,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,218666,4.89813885487359,baseline,GreeneiBot2,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,218666,12.58745051898169,spot_baseline,GreeneiBot2,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,218666,123.2291773217777,spot_peer,GreeneiBot2,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,220077,-23.28492661022125,baseline,mmBot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,220077,-0.1378407105675649,relative_legacy,mmBot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,220077,85.71946250646218,spot_peer,mmBot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,220077,-23.35935951236235,spot_baseline,mmBot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,220077,53.52916553916357,peer,mmBot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,222631,-222.66453273475784,spot_baseline,Grizeu_Bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,222631,-122.2511530299505,spot_peer,Grizeu_Bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,222631,-65.80691842084448,baseline,Grizeu_Bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,222631,-1.680265688716978,relative_legacy,Grizeu_Bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,222631,-37.4117624666822,peer,Grizeu_Bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236037,-30.591110474438658,baseline,metac-o1,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236037,45.92477496184161,peer,metac-o1,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236037,-40.54651081081639,spot_baseline,metac-o1,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236037,67.78504376024925,spot_peer,metac-o1,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236037,-0.3393665846197038,relative_legacy,metac-o1,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236038,-117.838520461616,baseline,metac-gpt-4o,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236038,-155.67576546051728,spot_baseline,metac-gpt-4o,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236038,-52.34983065682992,spot_peer,metac-gpt-4o,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236038,-46.04056847568488,peer,metac-gpt-4o,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236038,-2.8546807819419024,relative_legacy,metac-gpt-4o,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236040,-2.096044398068362,relative_legacy,metac-claude-3-5-sonnet-latest,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236040,-18.286858900348467,peer,metac-claude-3-5-sonnet-latest,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236040,-91.53981562304578,baseline,metac-claude-3-5-sonnet-latest,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236040,-121.01840643252002,spot_baseline,metac-claude-3-5-sonnet-latest,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236040,-16.185629931963213,spot_peer,metac-claude-3-5-sonnet-latest,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236041,-3.291757154261559,relative_legacy,metac-claude-3-5-sonnet-20240620,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236041,-62.03237030929688,peer,metac-claude-3-5-sonnet-20240620,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236041,-132.96144034739618,baseline,metac-claude-3-5-sonnet-20240620,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236041,-73.50450586248488,spot_peer,metac-claude-3-5-sonnet-20240620,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236041,-175.94899586593664,spot_baseline,metac-claude-3-5-sonnet-20240620,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236045,-10.688553028081566,spot_peer,metac-Gemini-Exp-1206,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236045,-13.609086054771687,peer,metac-Gemini-Exp-1206,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236045,-115.75037439963344,spot_baseline,metac-Gemini-Exp-1206,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236045,-1.960095602075098,relative_legacy,metac-Gemini-Exp-1206,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236045,-86.13001765102928,baseline,metac-Gemini-Exp-1206,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236047,-3.5988261703945605,relative_legacy,metac-Llama-3.1,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236047,-190.33312448851456,spot_baseline,metac-Llama-3.1,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236047,-143.5432984390816,baseline,metac-Llama-3.1,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236047,-88.51403138169664,spot_peer,metac-Llama-3.1,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,236047,-73.28398396660846,peer,metac-Llama-3.1,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,237476,77.57083363344978,peer,NextWorldLab,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,237476,12.397477512606915,baseline,NextWorldLab,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,237476,19.6521289054798,spot_baseline,NextWorldLab,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,237476,130.60101563812356,spot_peer,NextWorldLab,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,237476,0.6993380170888255,relative_legacy,NextWorldLab,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,239758,-143.3803022045631,baseline,metac-perplexity,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,239758,-190.33312448851456,spot_baseline,metac-perplexity,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,239758,-88.51403138169664,spot_peer,metac-perplexity,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,239758,-3.595397129264432,relative_legacy,metac-perplexity,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,239758,-73.1741762244954,peer,metac-perplexity,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,246118,-35.79775982533543,baseline,laylaps,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,246118,-19.430553349285127,peer,laylaps,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,246118,-219.722507733642,spot_baseline,laylaps,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,246118,-0.8838451087405572,relative_legacy,laylaps,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,246118,-119.18121389835136,spot_peer,laylaps,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,247214,38.29922522561069,spot_baseline,ajf-bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,247214,35.959348098141,baseline,ajf-bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,247214,118.64688494735198,peer,ajf-bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,247214,1.5467321812810924,relative_legacy,ajf-bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,247214,150.058855276521,spot_peer,ajf-bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,250015,-3.554254315419123,relative_legacy,metac-deepseek-r1,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,250015,-141.24314600671806,baseline,metac-deepseek-r1,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,250015,-71.90121581074878,peer,metac-deepseek-r1,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,250015,-88.51403138169664,spot_peer,metac-deepseek-r1,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,250015,-190.33312448851456,spot_baseline,metac-deepseek-r1,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,264059,-107.17968808404304,baseline,wunderplumb,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,264059,-155.67576546051728,spot_baseline,wunderplumb,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,264059,-52.34983065682992,spot_peer,wunderplumb,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,264059,-2.7040658914912825,relative_legacy,wunderplumb,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,264059,-41.77420172749669,peer,wunderplumb,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,264332,0.1346678482096106,peer,krm-bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,264332,-0.1350382897702121,relative_legacy,krm-bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,264332,1.9868871091427311,spot_peer,krm-bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,264332,-7.022041395447838,baseline,krm-bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,264332,-103.60307760146014,spot_baseline,krm-bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,266158,-4.543357689478365,spot_peer,bean_bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,266158,-109.86122886680538,spot_baseline,bean_bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,266158,-79.71154530096025,baseline,bean_bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,266158,-8.746958424614915,peer,bean_bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,266158,-1.8162285278028305,relative_legacy,bean_bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,266572,-190.3331244885215,spot_baseline,cobyj-bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,266572,-36.61666438016557,baseline,cobyj-bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,266572,-88.51403138170387,spot_peer,cobyj-bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,266572,-0.8877188014237233,relative_legacy,cobyj-bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35601,"How many subscribers will the ""goodnews"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.201271+00,266572,-17.20412124641594,peer,cobyj-bot,True,114214.0,2025-03-19 02:00:00+00,2025-03-19 02:00:00+00,1.0,2025-03-19 02:00:00+00,36164 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,187708,-1.1177346417045977,relative_legacy,twsummerbot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,187708,-4.38613594498789,spot_peer,twsummerbot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,187708,-128.47161956290222,spot_baseline,twsummerbot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,187708,-68.28047442728409,baseline,twsummerbot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,187708,-9.07682452210228,peer,twsummerbot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,191026,-0.8970424204501858,relative_legacy,manticAI,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,191026,-75.20386983881366,spot_baseline,manticAI,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,191026,-70.12186390505688,baseline,manticAI,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,191026,19.95339559302735,peer,manticAI,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,191026,52.01501082169413,spot_peer,manticAI,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,191935,-202.3912455111821,spot_baseline,pgodzinai,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,191935,-82.65397518434305,spot_peer,pgodzinai,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,191935,-1.9957020973301451,relative_legacy,pgodzinai,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,191935,-45.08906881684924,peer,pgodzinai,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,191935,-96.75510429736524,baseline,pgodzinai,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,191975,-106.58258013117008,spot_peer,jkraybill_bot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,191975,-165.46175054775878,baseline,jkraybill_bot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,191975,-95.62491916541342,peer,jkraybill_bot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,191975,-224.9904835165188,spot_baseline,jkraybill_bot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,191975,-3.81171653667857,relative_legacy,jkraybill_bot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,192075,-48.72071893484083,spot_peer,CumulativeBot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,192075,-3.834747408124646,peer,CumulativeBot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,192075,-12.864035072135238,baseline,CumulativeBot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,192075,-170.34317016443,spot_baseline,CumulativeBot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,192075,-0.2129924653393596,relative_legacy,CumulativeBot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,192418,17.833478725872283,baseline,InstitutPelFutur,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,192418,24.4176381684244,spot_baseline,InstitutPelFutur,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,192418,157.49660753524034,spot_peer,InstitutPelFutur,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,192418,102.19690773061043,peer,InstitutPelFutur,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,192418,1.4692107701402397,relative_legacy,InstitutPelFutur,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,218666,159.69032512470716,spot_peer,GreeneiBot2,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,218666,93.33409417964532,peer,GreeneiBot2,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,218666,26.48948255847641,spot_baseline,GreeneiBot2,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,218666,1.3963616119215414,relative_legacy,GreeneiBot2,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,218666,17.214428259508466,baseline,GreeneiBot2,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,220077,-22.19952580232032,baseline,mmBot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,220077,108.07064857603302,spot_peer,mmBot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,220077,74.489269096225,peer,mmBot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,220077,0.5086386688150353,relative_legacy,mmBot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,220077,-22.26243418193805,spot_baseline,mmBot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236037,-3.59474285371765,relative_legacy,metac-o1,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236037,-190.3331244885215,spot_baseline,metac-o1,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236037,-163.0609460132598,baseline,metac-o1,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236037,-82.62011554288358,peer,metac-o1,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236037,-69.88655292505533,spot_peer,metac-o1,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236041,-194.68372970162528,spot_baseline,metac-claude-3-5-sonnet-20240620,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236041,-168.7717957343024,baseline,metac-claude-3-5-sonnet-20240620,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236041,-88.17025718448295,peer,metac-claude-3-5-sonnet-20240620,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236041,-3.747422007093984,relative_legacy,metac-claude-3-5-sonnet-20240620,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236041,-74.49307609187113,spot_peer,metac-claude-3-5-sonnet-20240620,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236043,-2.650396684476634,relative_legacy,metac-grok-2-1212,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236043,-46.48369449155118,peer,metac-grok-2-1212,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236043,-130.7375678012284,baseline,metac-grok-2-1212,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236043,-150.91025647030293,spot_baseline,metac-grok-2-1212,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236043,-28.144692670470988,spot_peer,metac-grok-2-1212,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236047,-23.931592984409097,peer,metac-Llama-3.1,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236047,-150.91025647030293,spot_baseline,metac-Llama-3.1,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236047,-1.5819432067126526,relative_legacy,metac-Llama-3.1,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236047,-28.144692670470988,spot_peer,metac-Llama-3.1,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,236047,-85.28096384647678,baseline,metac-Llama-3.1,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,237476,120.80058105104916,spot_peer,NextWorldLab,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,237476,85.18121051242717,peer,NextWorldLab,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,237476,-8.664242470283167,baseline,NextWorldLab,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,237476,-10.23972017775614,spot_baseline,NextWorldLab,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,237476,0.8425638720579884,relative_legacy,NextWorldLab,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,239758,-216.0559013520703,spot_baseline,metac-perplexity,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,239758,-121.13958691985827,baseline,metac-perplexity,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,239758,-62.74560193242704,peer,metac-perplexity,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,239758,-2.618974150221865,relative_legacy,metac-perplexity,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,239758,-97.12243430998936,spot_peer,metac-perplexity,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,246118,-4.223940786752173,peer,laylaps,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,246118,-9.842374719954872,baseline,laylaps,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,246118,-0.1816972235868149,relative_legacy,laylaps,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,246118,-89.72326495433855,spot_peer,laylaps,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,246118,-209.06779696062236,spot_baseline,laylaps,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,247214,37.0194039385547,baseline,ajf-bot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,247214,140.78261306500036,peer,ajf-bot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,247214,2.186260527250148,relative_legacy,ajf-bot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,247214,172.95495259403185,spot_peer,ajf-bot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,247214,39.01718627950528,spot_baseline,ajf-bot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,264059,-41.83314648833717,peer,wunderplumb,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,264059,-88.08651240262704,baseline,wunderplumb,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,264059,-1.8157405551002084,relative_legacy,wunderplumb,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,264059,-88.14276413703821,spot_peer,wunderplumb,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,264059,-207.5751017442831,spot_baseline,wunderplumb,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,264225,-174.41043793258467,spot_baseline,KevinTestBot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,264225,-53.02723774818105,spot_peer,KevinTestBot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,264225,-36.02809574743999,baseline,KevinTestBot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,264225,-0.6503662313577729,relative_legacy,KevinTestBot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35602,"How many subscribers will the ""environment"" subreddit have on March 30, 2025?",2025-03-15 15:49:27.232289+00,264225,-12.303580853603284,peer,KevinTestBot,True,1549921.0,2025-03-19 04:00:00+00,2025-03-19 04:00:00+00,1.0,2025-03-19 04:00:00+00,36165 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,187708,0.0178385055232625,relative_legacy,twsummerbot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,187708,73.6958916743803,baseline,twsummerbot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,187708,5.604354126100192,peer,twsummerbot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,187708,7.098362929501231,spot_peer,twsummerbot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,187708,93.35726382610238,spot_baseline,twsummerbot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,189869,81.2103024458782,baseline,VeritasAI,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,189869,1.001936943980353,spot_peer,VeritasAI,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,189869,0.4174288767440842,peer,VeritasAI,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,189869,-0.0623271937961797,relative_legacy,VeritasAI,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,191026,86.00914681957701,baseline,manticAI,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,191026,5.837521044343943,peer,manticAI,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,191026,0.0131920541522391,relative_legacy,manticAI,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,191026,6.55884579675868,spot_peer,manticAI,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,191935,7.170425548682768,peer,pgodzinai,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,191935,96.79063702901466,spot_baseline,pgodzinai,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,191935,9.544302355893516,spot_peer,pgodzinai,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,191935,0.0422113187569906,relative_legacy,pgodzinai,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,191935,72.61277621592815,baseline,pgodzinai,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,191975,63.84886915068429,baseline,jkraybill_bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,191975,91.3798964950696,spot_baseline,jkraybill_bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,191975,5.689683933774601,spot_peer,jkraybill_bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,191975,0.0,relative_legacy,jkraybill_bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,191975,3.9754902219212505,peer,jkraybill_bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,192075,73.18811693945347,baseline,CumulativeBot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,192075,5.441084677943726,peer,CumulativeBot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,192075,0.015832470332167,relative_legacy,CumulativeBot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,192075,6.918838381187797,spot_peer,CumulativeBot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,192075,93.10526462825084,spot_baseline,CumulativeBot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,192418,96.3474123974886,spot_baseline,InstitutPelFutur,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,192418,0.0480979620473244,relative_legacy,InstitutPelFutur,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,192418,9.228548565982695,spot_peer,InstitutPelFutur,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,192418,93.6999076921678,baseline,InstitutPelFutur,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,192418,8.391381923168304,peer,InstitutPelFutur,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,192924,90.14137864382072,baseline,acm_bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,192924,7.863818651911362,peer,acm_bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,192924,0.0412685915411618,relative_legacy,acm_bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,192924,8.700126950661886,spot_peer,acm_bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,192924,95.60566524124027,spot_baseline,acm_bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,204737,6.882895811219173,spot_peer,SynapseSeer,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,204737,82.50419201760145,baseline,SynapseSeer,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,204737,5.93502980780656,peer,SynapseSeer,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,204737,0.0171485056916409,relative_legacy,SynapseSeer,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,204737,93.05481192478548,spot_baseline,SynapseSeer,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,218666,-43.54404852141236,peer,GreeneiBot2,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,218666,6.847574241742556,baseline,GreeneiBot2,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,218666,-0.672694713344903,relative_legacy,GreeneiBot2,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,218666,-53.42072139155103,spot_peer,GreeneiBot2,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,218666,8.406426478847456,spot_baseline,GreeneiBot2,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,220077,98.5500430304885,spot_baseline,mmBot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,220077,10.797705423869289,spot_peer,mmBot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,220077,0.0695190134130391,relative_legacy,mmBot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,220077,9.96201224480172,peer,mmBot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,220077,98.2160644339906,baseline,mmBot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,222631,67.80719051126377,spot_baseline,Grizeu_Bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,222631,55.236225244789445,baseline,Grizeu_Bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,222631,-9.048835365523118,peer,Grizeu_Bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,222631,-0.1888479963443067,relative_legacy,Grizeu_Bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,222631,-11.103541720703502,spot_peer,Grizeu_Bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,224797,92.5999418556223,spot_baseline,cookics_bot_TEST,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,224797,6.55884579675868,spot_peer,cookics_bot_TEST,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,224797,0.0131155398779404,relative_legacy,cookics_bot_TEST,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,224797,5.677240251191878,peer,cookics_bot_TEST,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,224797,82.74295941962001,baseline,cookics_bot_TEST,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,227188,97.08536543404836,spot_baseline,ProfessorSP,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,227188,72.37985055394813,baseline,ProfessorSP,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,227188,7.279955841286547,peer,ProfessorSP,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,227188,0.0439961197869418,relative_legacy,ProfessorSP,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,227188,9.754267245622987,spot_peer,ProfessorSP,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236037,85.95741542180572,baseline,metac-o1,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236037,5.834481595669708,peer,metac-o1,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236037,0.0131219835451159,relative_legacy,metac-o1,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236037,6.55884579675868,spot_peer,metac-o1,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236038,-11.103541720703502,spot_peer,metac-gpt-4o,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236038,63.07563056702671,baseline,metac-gpt-4o,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236038,-0.2173227644539686,relative_legacy,metac-gpt-4o,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236038,-10.654462630523197,peer,metac-gpt-4o,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236040,-4.825015032381555,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236040,-0.1358515550925999,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236040,-4.8726778117921485,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236040,71.1500080261698,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236041,-4.8726778117921485,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236041,-0.1358626529445656,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236041,-4.825919837046791,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236041,71.14984773727555,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236043,86.10169302746299,baseline,metac-grok-2-1212,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236043,5.841429418442197,peer,metac-grok-2-1212,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236043,0.0132754109774594,relative_legacy,metac-grok-2-1212,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236043,6.55884579675868,spot_peer,metac-grok-2-1212,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236045,6.55884579675868,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236045,84.99541370171922,baseline,metac-Gemini-Exp-1206,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236045,5.788866142366205,peer,metac-Gemini-Exp-1206,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236045,0.0131195881225338,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236047,62.98167360202977,baseline,metac-Llama-3.1,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236047,-11.103541720703502,spot_peer,metac-Llama-3.1,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236047,-0.2170609078378121,relative_legacy,metac-Llama-3.1,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,236047,-10.62884958443796,peer,metac-Llama-3.1,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,237476,5.718505197131684,peer,NextWorldLab,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,237476,6.55884579675868,spot_peer,NextWorldLab,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,237476,0.0131155398779404,relative_legacy,NextWorldLab,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,237476,83.57357336245862,baseline,NextWorldLab,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,239758,0.0131255414191789,relative_legacy,metac-perplexity,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,239758,85.82788044074904,baseline,metac-perplexity,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,239758,5.829051103977269,peer,metac-perplexity,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,239758,6.55884579675868,spot_peer,metac-perplexity,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,239759,98.5500430304885,spot_baseline,metac-exa,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,239759,9.784616876201694,peer,metac-exa,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,239759,91.48428495078332,baseline,metac-exa,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,239759,0.0683569606259356,relative_legacy,metac-exa,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,239759,10.797705423869289,spot_peer,metac-exa,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,240416,85.9592421486231,baseline,metac-o1-preview,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,240416,6.55884579675868,spot_peer,metac-o1-preview,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,240416,0.013123930845565,relative_legacy,metac-o1-preview,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,240416,5.8347064759148335,peer,metac-o1-preview,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,241715,-34.0377400502195,spot_peer,CatrachoCaster,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,241715,35.61438102252753,spot_baseline,CatrachoCaster,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,241715,-25.593832154644065,peer,CatrachoCaster,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,241715,-0.4177180538559128,relative_legacy,CatrachoCaster,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,241715,26.78919883450909,baseline,CatrachoCaster,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,246118,97.08536543404836,spot_baseline,laylaps,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,246118,77.08057977586172,baseline,laylaps,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,246118,7.745356724907563,peer,laylaps,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,246118,0.0474720934470652,relative_legacy,laylaps,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,246118,9.754267245622987,spot_peer,laylaps,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,247214,62.64917222055555,baseline,ajf-bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,247214,67.80719051126377,spot_baseline,ajf-bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,247214,-11.103541720703502,spot_peer,ajf-bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,247214,-0.2159463854783966,relative_legacy,ajf-bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,247214,-10.559843360945534,peer,ajf-bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,250015,-4.658043468464512,peer,metac-deepseek-r1,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,250015,-4.8726778117921485,spot_peer,metac-deepseek-r1,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,250015,-0.1324070089962572,relative_legacy,metac-deepseek-r1,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,250015,69.4278873927023,baseline,metac-deepseek-r1,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264059,1.001936943980353,spot_peer,wunderplumb,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264059,62.97212920443556,baseline,wunderplumb,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264059,-0.0473685193610076,relative_legacy,wunderplumb,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264059,0.7510112749631402,peer,wunderplumb,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264225,53.05319136562564,baseline,KevinTestBot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264225,-11.103541720703502,spot_peer,KevinTestBot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264225,67.80719051126377,spot_baseline,KevinTestBot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264225,-8.68678755432882,peer,KevinTestBot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264225,-0.1821213451539237,relative_legacy,KevinTestBot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264332,2.499840434475849,peer,krm-bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264332,3.260880134521144,spot_peer,krm-bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264332,67.20393083103856,baseline,krm-bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264332,87.97057662822883,spot_baseline,krm-bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264332,-0.0238938474454758,relative_legacy,krm-bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264778,-3.739743305283932,peer,andrewsiah,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264778,-0.1115241452157854,relative_legacy,andrewsiah,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264778,58.863441577694125,baseline,andrewsiah,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264778,-4.8726778117921485,spot_peer,andrewsiah,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,264778,76.55347463629771,spot_baseline,andrewsiah,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,265212,1.001936943980353,spot_peer,4Shadower,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,265212,0.8153332720724856,peer,4Shadower,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,265212,69.33123586505378,baseline,4Shadower,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,265212,-0.0506584021709448,relative_legacy,4Shadower,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,265212,84.79969065549501,spot_baseline,4Shadower,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,265835,92.5999418556223,spot_baseline,jonahsingerbot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,265835,74.69349677640604,baseline,jonahsingerbot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,265835,5.293203091762916,peer,jonahsingerbot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,265835,0.0124963184954587,relative_legacy,jonahsingerbot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,265835,6.55884579675868,spot_peer,jonahsingerbot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,266158,84.79969065549501,spot_baseline,bean_bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,266158,77.91783511251089,baseline,bean_bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,266158,0.6704124091516007,peer,bean_bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,266158,-0.0585507212974312,relative_legacy,bean_bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,266158,1.001936943980353,spot_peer,bean_bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,266572,-0.0500695834714684,relative_legacy,cobyj-bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,266572,0.8028235820522476,peer,cobyj-bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,266572,68.01792655460719,baseline,cobyj-bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,266572,84.79969065549501,spot_baseline,cobyj-bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35603,"Will Canada's petition to revoke Elon Musk's dual citizenship reach 1 million signatures before April 1, 2025?",2025-03-15 15:49:27.568108+00,266572,1.001936943980353,spot_peer,cobyj-bot,True,no,2025-03-19 06:00:00+00,2025-03-19 06:00:00+00,1.0,2025-03-19 06:00:00+00,36166 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,187708,24.907455001923637,peer,twsummerbot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,187708,-35.17200414011151,baseline,twsummerbot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,187708,-46.59383975788817,spot_baseline,twsummerbot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,187708,32.59500442327391,spot_peer,twsummerbot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,187708,0.0067422189957814,relative_legacy,twsummerbot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,189869,-1.1046413422231554,relative_legacy,VeritasAI,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,189869,-173.6965594166206,spot_baseline,VeritasAI,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,189869,-165.7634935109298,baseline,VeritasAI,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,189869,-50.18746595201108,peer,VeritasAI,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,189869,-57.95313434337067,spot_peer,VeritasAI,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,191026,1.0126794009256597,relative_legacy,manticAI,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,191026,103.26572388666338,spot_peer,manticAI,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,191026,52.60688116675877,spot_baseline,manticAI,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,191026,48.76807120314648,baseline,manticAI,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,191026,100.48142228563968,peer,manticAI,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,191935,11.122703707378651,peer,pgodzinai,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,191935,-69.8997743967186,spot_baseline,pgodzinai,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,191935,15.991827013464816,spot_peer,pgodzinai,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,191935,-0.1620984302750281,relative_legacy,pgodzinai,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,191935,-48.61698911404523,baseline,pgodzinai,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,191975,-0.7412206961541026,relative_legacy,jkraybill_bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,191975,-106.53291856693494,baseline,jkraybill_bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,191975,-30.120551387920237,peer,jkraybill_bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,191975,-43.29123680210299,spot_peer,jkraybill_bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,191975,-153.1156057025362,spot_baseline,jkraybill_bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,192075,-100.34698886579793,baseline,CumulativeBot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,192075,-132.1928094887362,spot_baseline,CumulativeBot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,192075,-0.6418889070675862,relative_legacy,CumulativeBot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,192075,-28.385810230270952,spot_peer,CumulativeBot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,192075,-21.22536511771731,peer,CumulativeBot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,192418,-76.60289797110282,baseline,InstitutPelFutur,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,192418,18.953972495576515,peer,InstitutPelFutur,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,192418,-78.58751946471523,spot_baseline,InstitutPelFutur,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,192418,9.802666403067557,spot_peer,InstitutPelFutur,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,192418,-0.1812564284641764,relative_legacy,InstitutPelFutur,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,192924,2.856915219677092,spot_baseline,acm_bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,192924,67.8237850177912,spot_peer,acm_bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,192924,0.5606923877954522,relative_legacy,acm_bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,192924,68.50676509277339,peer,acm_bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,192924,2.67402081804023,baseline,acm_bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,204737,13.286992547512588,spot_peer,SynapseSeer,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,204737,-73.69655941662059,spot_baseline,SynapseSeer,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,204737,-0.1900864756241277,relative_legacy,SynapseSeer,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,204737,13.951074362427018,peer,SynapseSeer,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,204737,-63.72345916436509,baseline,SynapseSeer,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,218666,-29.418761415214213,spot_peer,GreeneiBot2,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,218666,-105.27194460569812,baseline,GreeneiBot2,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,218666,-22.386115275056262,peer,GreeneiBot2,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,218666,-0.6622896448827826,relative_legacy,GreeneiBot2,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,218666,-133.64276645824776,spot_baseline,GreeneiBot2,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,220077,-2.6532647433931693,relative_legacy,mmBot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,220077,-170.8660640120374,spot_peer,mmBot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,220077,-331.14668630213066,baseline,mmBot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,220077,-163.01739248189224,peer,mmBot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,220077,-332.1928094887361,spot_baseline,mmBot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,222631,-99.62593712115428,spot_peer,Grizeu_Bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,222631,-232.1928094887363,spot_baseline,Grizeu_Bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,222631,-180.08532574438644,baseline,Grizeu_Bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,222631,-76.73898575961582,peer,Grizeu_Bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,222631,-1.422993714420314,relative_legacy,Grizeu_Bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,224797,40.27953980957122,peer,cookics_bot_TEST,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,224797,-32.19280948873623,spot_baseline,cookics_bot_TEST,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,224797,42.85431666061229,spot_peer,cookics_bot_TEST,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,224797,0.17912162114404,relative_legacy,cookics_bot_TEST,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,224797,-28.16901887878208,baseline,cookics_bot_TEST,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,227188,-10.70228076610461,baseline,ProfessorSP,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,227188,-15.200309344505014,spot_baseline,ProfessorSP,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,227188,54.95979532529613,spot_peer,ProfessorSP,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,227188,0.2183496212300429,relative_legacy,ProfessorSP,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,227188,38.69351961881642,peer,ProfessorSP,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236037,-0.6908199403509894,relative_legacy,metac-o1,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236037,-132.19280948873626,spot_baseline,metac-o1,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236037,-121.16711792305072,baseline,metac-o1,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236037,-22.120639102656583,peer,metac-o1,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236037,-28.38581023027101,spot_peer,metac-o1,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236038,-99.62593712115428,spot_peer,metac-gpt-4o,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236038,-232.1928094887363,spot_baseline,metac-gpt-4o,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236038,-1.608295712020365,relative_legacy,metac-gpt-4o,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236038,-87.84888372857915,peer,metac-gpt-4o,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236038,-213.25664387685148,baseline,metac-gpt-4o,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236040,-1.6092815898214283,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236040,-87.92192163835139,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236040,-213.45017991157772,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236040,-232.1928094887363,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236040,-99.62593712115428,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236041,-153.37456114170809,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236041,-170.8660640120374,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236041,-332.1928094887361,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236041,-304.6628713450964,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236041,-2.5248699654909093,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236043,-87.8574196146513,peer,metac-grok-2-1212,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236043,-232.1928094887363,spot_baseline,metac-grok-2-1212,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236043,-99.62593712115428,spot_peer,metac-grok-2-1212,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236043,-1.6083324783770347,relative_legacy,metac-grok-2-1212,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236043,-213.29150693349712,baseline,metac-grok-2-1212,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236045,-301.7637710876628,baseline,metac-Gemini-Exp-1206,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236045,-332.1928094887361,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236045,-170.8660640120374,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236045,-2.512119147996905,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236045,-152.11033026018234,peer,metac-Gemini-Exp-1206,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236047,-0.6940718568749414,relative_legacy,metac-Llama-3.1,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236047,-120.4757367397408,baseline,metac-Llama-3.1,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236047,-22.139054814992463,peer,metac-Llama-3.1,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236047,-28.38581023027101,spot_peer,metac-Llama-3.1,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,236047,-132.19280948873626,spot_baseline,metac-Llama-3.1,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,237476,37.85116232537298,spot_baseline,NextWorldLab,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,237476,84.98853296888042,peer,NextWorldLab,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,237476,0.804746654384157,relative_legacy,NextWorldLab,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,237476,33.40357572286028,baseline,NextWorldLab,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,237476,92.7537310603982,spot_peer,NextWorldLab,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,239758,115.00094553593456,peer,metac-perplexity,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,239758,70.2719768598105,baseline,metac-perplexity,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,239758,76.55347463629771,spot_baseline,metac-perplexity,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,239758,120.32530746040688,spot_peer,metac-perplexity,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,239758,1.225887922736546,relative_legacy,metac-perplexity,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,239759,34.70804848986772,baseline,metac-exa,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,239759,37.85116232537298,spot_baseline,metac-exa,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,239759,92.7537310603982,spot_peer,metac-exa,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,239759,89.455508344534,peer,metac-exa,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,239759,0.8685152590684423,relative_legacy,metac-exa,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,240416,-1.607157266909636,relative_legacy,metac-o1-preview,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,240416,-212.78443822197417,baseline,metac-o1-preview,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,240416,-232.1928094887363,spot_baseline,metac-o1-preview,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,240416,-99.62593712115428,spot_peer,metac-o1-preview,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,240416,-87.68793693563683,peer,metac-o1-preview,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,241715,-4.137297337275484,baseline,CatrachoCaster,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,241715,61.59292110887982,spot_peer,CatrachoCaster,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,241715,-5.889368905356857,spot_baseline,CatrachoCaster,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,241715,0.2837592257317737,relative_legacy,CatrachoCaster,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,241715,43.26470906886805,peer,CatrachoCaster,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,246118,0.9958373986363088,relative_legacy,laylaps,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,246118,84.79969065549501,spot_baseline,laylaps,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,246118,126.1999222161794,spot_peer,laylaps,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,246118,63.8349277917072,baseline,laylaps,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,246118,95.3122844988553,peer,laylaps,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,247214,-5.451611900754986,spot_peer,ajf-bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,247214,-95.3384619984362,baseline,ajf-bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,247214,0.5135428722798725,peer,ajf-bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,247214,-0.4020296792874574,relative_legacy,ajf-bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,247214,-100.0,spot_baseline,ajf-bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,250015,-158.80395631001622,baseline,metac-deepseek-r1,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,250015,-173.6965594166206,spot_baseline,metac-deepseek-r1,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,250015,-57.95313434337067,spot_peer,metac-deepseek-r1,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,250015,-1.072354425071118,relative_legacy,metac-deepseek-r1,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,250015,-49.275564266149566,peer,metac-deepseek-r1,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264059,0.8201426467012422,relative_legacy,wunderplumb,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264059,82.11283711367315,peer,wunderplumb,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264059,114.09444355149552,spot_peer,wunderplumb,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264059,67.80719051126377,spot_baseline,wunderplumb,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264059,48.7703309106428,baseline,wunderplumb,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264225,-2.0978527459087664,relative_legacy,KevinTestBot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264225,-244.79476059957773,baseline,KevinTestBot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264225,-170.8660640120374,spot_peer,KevinTestBot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264225,-332.1928094887361,spot_baseline,KevinTestBot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264225,-125.71551277471102,peer,KevinTestBot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264332,48.67605922286893,baseline,krm-bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264332,81.94464795002307,peer,krm-bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264332,67.80719051126377,spot_baseline,krm-bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264332,114.09444355149552,spot_peer,krm-bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264332,0.8185521401302982,relative_legacy,krm-bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264778,-42.58667775826497,peer,andrewsiah,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264778,-0.932162804713184,relative_legacy,andrewsiah,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264778,-128.30927038784523,baseline,andrewsiah,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264778,-57.95313434337067,spot_peer,andrewsiah,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,264778,-173.6965594166206,spot_baseline,andrewsiah,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,265212,0.9121313104923952,relative_legacy,4Shadower,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,265212,52.99130167056589,baseline,4Shadower,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,265212,67.80719051126377,spot_baseline,4Shadower,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,265212,114.09444355149552,spot_peer,4Shadower,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,265212,89.92056458749366,peer,4Shadower,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,265835,51.81338758077968,baseline,jonahsingerbot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,265835,87.60399378175872,peer,jonahsingerbot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,265835,67.80719051126377,spot_baseline,jonahsingerbot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,265835,0.8813349766738452,relative_legacy,jonahsingerbot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,265835,114.09444355149552,spot_peer,jonahsingerbot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,266158,61.505596172709325,baseline,bean_bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,266158,107.58885637437496,peer,bean_bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,266158,1.1182439473525256,relative_legacy,bean_bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,266158,114.09444355149552,spot_peer,bean_bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,266158,67.80719051126377,spot_baseline,bean_bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,266572,67.80719051126377,spot_baseline,cobyj-bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,266572,51.8698363053127,baseline,cobyj-bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,266572,114.09444355149552,spot_peer,cobyj-bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,266572,0.882512979499186,relative_legacy,cobyj-bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35604,"Will the ISW warmap show Kursk as having been completely retaken by Russia on March 31, 2025?",2025-03-15 15:49:27.599959+00,266572,87.71150253931381,peer,cobyj-bot,True,no,2025-03-19 08:00:00+00,2025-03-19 08:00:00+00,1.0,2025-03-19 08:00:00+00,36167 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,185699,47.27182304256453,peer,MWG,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,185699,15.455388041013752,baseline,MWG,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,185699,16.301608309368927,spot_baseline,MWG,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,185699,52.243023286799776,spot_peer,MWG,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,185699,0.6784772922777675,relative_legacy,MWG,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,187708,77.93207606028709,peer,twsummerbot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,187708,37.93416802464972,baseline,twsummerbot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,187708,130.3019259208637,spot_peer,twsummerbot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,187708,63.41659652187354,spot_baseline,twsummerbot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,187708,1.0761809225089358,relative_legacy,twsummerbot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,189869,3.4336632838150623,spot_baseline,VeritasAI,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,189869,27.088905744733488,peer,VeritasAI,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,189869,3.281545371994811,baseline,VeritasAI,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,189869,0.3989671495634418,relative_legacy,VeritasAI,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,189869,30.92374239640136,spot_peer,VeritasAI,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,191026,39.93926465584303,baseline,manticAI,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,191026,96.5883234727877,spot_peer,manticAI,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,191026,1.2463292627005491,relative_legacy,manticAI,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,191026,43.06765580733931,spot_baseline,manticAI,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,191026,87.70806941165937,peer,manticAI,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,191935,-0.0557160434876563,relative_legacy,pgodzinai,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,191935,-12.637269080892548,baseline,pgodzinai,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,191935,-17.87469216608008,spot_baseline,pgodzinai,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,191935,-2.865981240795685,peer,pgodzinai,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,191935,-4.379393749007631,spot_peer,pgodzinai,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,191975,3.936772236985115,baseline,jkraybill_bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,191975,0.3309467489799421,relative_legacy,jkraybill_bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,191975,34.39730877753914,spot_peer,jkraybill_bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,191975,5.530247191353119,spot_baseline,jkraybill_bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,191975,24.731102562861565,peer,jkraybill_bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,192075,-84.3676386281919,spot_peer,CumulativeBot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,192075,-53.20580076018494,baseline,CumulativeBot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,192075,-66.15419760941064,spot_baseline,CumulativeBot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,192075,-67.63114917704675,peer,CumulativeBot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,192075,-0.92207863333969,relative_legacy,CumulativeBot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,192418,-7.155949771540412,peer,InstitutPelFutur,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,192418,-0.0738785112473441,relative_legacy,InstitutPelFutur,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,192418,-4.379393749007631,spot_peer,InstitutPelFutur,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,192418,-17.436897117091632,baseline,InstitutPelFutur,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,192418,-17.87469216608008,spot_baseline,InstitutPelFutur,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,192924,-0.0667361327827151,relative_legacy,acm_bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,192924,-16.716519140683417,baseline,acm_bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,192924,-6.64198504739417,peer,acm_bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,192924,-17.874692166080074,spot_baseline,acm_bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,192924,-4.379393749007619,spot_peer,acm_bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,218666,-52.43880883967223,spot_baseline,GreeneiBot2,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,218666,-42.200531608513,baseline,GreeneiBot2,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,218666,-49.365848158202326,peer,GreeneiBot2,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,218666,-61.64433470340816,spot_peer,GreeneiBot2,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,218666,-0.666386868553432,relative_legacy,GreeneiBot2,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,220077,-17.825786700738412,baseline,mmBot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,220077,-17.87469216608008,spot_baseline,mmBot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,220077,-4.379393749007631,spot_peer,mmBot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,220077,-0.0738785112473441,relative_legacy,mmBot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,220077,-7.155949771540412,peer,mmBot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,222631,-59.1841474629217,peer,Grizeu_Bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,222631,-60.94234797341938,spot_baseline,Grizeu_Bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,222631,-47.907721149714256,baseline,Grizeu_Bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,222631,-75.73277998311963,spot_peer,Grizeu_Bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,222631,-0.8106054111985327,relative_legacy,Grizeu_Bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,224797,-0.3186076427103433,relative_legacy,cookics_bot_TEST,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,224797,-25.357176031983325,peer,cookics_bot_TEST,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,224797,-31.739380551401474,spot_baseline,cookics_bot_TEST,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,224797,-27.35005344311747,spot_peer,cookics_bot_TEST,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,224797,-27.982752953149053,baseline,cookics_bot_TEST,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,227188,-29.351745531902623,baseline,ProfessorSP,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,227188,-31.2373300292064,peer,ProfessorSP,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,227188,-0.4539809158037438,relative_legacy,ProfessorSP,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,227188,-46.11844899543632,spot_peer,ProfessorSP,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,227188,-43.06765580733931,spot_baseline,ProfessorSP,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236037,34.36506740100132,peer,metac-o1,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236037,8.683897731959343,spot_baseline,metac-o1,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236037,39.622196012589086,spot_peer,metac-o1,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236037,0.5068326526107324,relative_legacy,metac-o1,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236037,7.9365995532030515,baseline,metac-o1,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236038,-39.67098136931575,baseline,metac-gpt-4o,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236038,-0.6009691931274692,relative_legacy,metac-gpt-4o,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236038,-43.06765580733931,spot_baseline,metac-gpt-4o,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236038,-46.11844899543632,spot_peer,metac-gpt-4o,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236038,-44.861279141655935,peer,metac-gpt-4o,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236040,23.08654180207135,spot_baseline,metac-claude-3-5-sonnet-latest,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236040,0.8136717990832257,relative_legacy,metac-claude-3-5-sonnet-latest,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236040,56.55368802538142,peer,metac-claude-3-5-sonnet-latest,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236040,21.257589101745324,baseline,metac-claude-3-5-sonnet-latest,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236040,63.48412687143129,spot_peer,metac-claude-3-5-sonnet-latest,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236041,-13.864688385321388,spot_baseline,metac-claude-3-5-sonnet-20240620,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236041,-12.765414141852728,baseline,metac-claude-3-5-sonnet-20240620,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236041,-0.0774749081971198,peer,metac-claude-3-5-sonnet-20240620,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236041,0.0236774264464364,relative_legacy,metac-claude-3-5-sonnet-20240620,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236041,2.264277544565867,spot_peer,metac-claude-3-5-sonnet-20240620,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236043,56.00995574221401,spot_peer,metac-grok-2-1212,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236043,0.7169493194443843,relative_legacy,metac-grok-2-1212,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236043,49.62192659843557,peer,metac-grok-2-1212,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236043,17.095217350749625,baseline,metac-grok-2-1212,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236043,18.5752628477392,spot_baseline,metac-grok-2-1212,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236045,18.98625313068264,baseline,metac-Gemini-Exp-1206,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236045,0.7659000298596543,relative_legacy,metac-Gemini-Exp-1206,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236045,52.74082686925396,peer,metac-Gemini-Exp-1206,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236045,59.8717851261535,spot_peer,metac-Gemini-Exp-1206,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236045,20.90619551221676,spot_baseline,metac-Gemini-Exp-1206,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236047,27.230309883053664,spot_baseline,metac-Llama-3.1,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236047,70.34941542276522,spot_peer,metac-Llama-3.1,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236047,0.9016207936065368,relative_legacy,metac-Llama-3.1,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236047,62.834173578654,peer,metac-Llama-3.1,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,236047,25.03584236876553,baseline,metac-Llama-3.1,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,237476,-14.685589512985825,spot_baseline,NextWorldLab,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,237476,-13.08594112548801,baseline,NextWorldLab,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,237476,-0.5759125132005071,peer,NextWorldLab,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,237476,0.0282998953473413,relative_legacy,NextWorldLab,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,237476,0.9042296356597964,spot_peer,NextWorldLab,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,239758,-110.2364162071864,peer,metac-perplexity,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,239758,-78.97417783077981,baseline,metac-perplexity,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,239758,-1.5123165517341537,relative_legacy,metac-perplexity,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,239758,-117.47183522954832,spot_peer,metac-perplexity,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,239758,-86.13531161467861,spot_baseline,metac-perplexity,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,239759,36.52123889719705,spot_baseline,metac-exa,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,239759,85.74238803742323,spot_peer,metac-exa,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,239759,1.0974035777963635,relative_legacy,metac-exa,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,239759,76.6655283150076,peer,metac-exa,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,239759,33.36364983151641,baseline,metac-exa,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,240416,0.8575980157749534,relative_legacy,metac-o1-preview,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,240416,23.09193328480321,baseline,metac-o1-preview,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,240416,66.97399248510438,spot_peer,metac-o1-preview,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,240416,25.192963641259222,spot_baseline,metac-o1-preview,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,240416,59.59960718957371,peer,metac-o1-preview,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,246118,-27.173159536828173,peer,laylaps,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,246118,-0.3971896003467606,relative_legacy,laylaps,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,246118,-46.11844899543632,spot_peer,laylaps,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,246118,-43.06765580733931,spot_baseline,laylaps,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,246118,-25.375620985125536,baseline,laylaps,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,247214,-104.212892745784,spot_peer,ajf-bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,247214,-85.51158407570504,peer,ajf-bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,247214,-1.1692385658021187,relative_legacy,ajf-bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,247214,-78.13244585878435,spot_baseline,ajf-bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,247214,-64.06919339978666,baseline,ajf-bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,250015,-0.3267023329904346,relative_legacy,metac-deepseek-r1,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,250015,-31.739380551401474,spot_baseline,metac-deepseek-r1,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,250015,-25.94805108679065,peer,metac-deepseek-r1,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,250015,-28.347909661059,baseline,metac-deepseek-r1,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,250015,-27.35005344311747,spot_peer,metac-deepseek-r1,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,264059,1.898708975748204,peer,wunderplumb,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,264059,0.0145446610853555,relative_legacy,wunderplumb,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,264059,2.264277544565867,spot_peer,wunderplumb,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,264059,-13.864688385321388,spot_baseline,wunderplumb,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,264059,-10.014949199600569,baseline,wunderplumb,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,264225,-43.06765580733931,spot_baseline,KevinTestBot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,264225,-46.11844899543632,spot_peer,KevinTestBot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,264225,-34.37921326065204,peer,KevinTestBot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,264225,-32.42558070624977,baseline,KevinTestBot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,264225,-0.4795629231071043,relative_legacy,KevinTestBot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,264332,25.23493723867568,spot_peer,krm-bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,264332,0.2454305750450982,relative_legacy,krm-bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,264332,18.4365905495502,peer,krm-bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,264332,-4.967990599185941e-15,baseline,krm-bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,264332,-6.898203503520461e-15,spot_baseline,krm-bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,265212,-82.83498734207053,spot_peer,4Shadower,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,265212,-65.29911534638684,peer,4Shadower,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,265212,-51.67273580201901,baseline,4Shadower,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,265212,-65.22911610246187,spot_baseline,4Shadower,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,265212,-0.8943698783130742,relative_legacy,4Shadower,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,265835,-37.1457013741808,spot_baseline,jonahsingerbot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,265835,-36.30710695675581,spot_peer,jonahsingerbot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,265835,-27.83336162463167,peer,jonahsingerbot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,265835,-28.87001428433665,baseline,jonahsingerbot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,265835,-0.3783417614046863,relative_legacy,jonahsingerbot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,266158,4.024649790382662,peer,bean_bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,266158,-11.328275255937816,spot_baseline,bean_bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,266158,-10.301578583979646,baseline,bean_bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,266158,6.466541686356877,spot_peer,bean_bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,266158,0.0855716160216054,relative_legacy,bean_bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,266572,-0.0326909964698812,relative_legacy,cobyj-bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,266572,-13.80343088681316,baseline,cobyj-bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,266572,-2.9816597232292303,peer,cobyj-bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,266572,-4.379393749007631,spot_peer,cobyj-bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35605,How many Mediterranean migrants and refugees will enter Europe in March 2025?,2025-03-15 15:49:27.630816+00,266572,-17.87469216608008,spot_baseline,cobyj-bot,True,"Under 10,000",2025-03-19 10:00:00+00,2025-03-19 10:00:00+00,1.0,2025-03-19 10:00:00+00,36168 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,187708,24.997585082485305,spot_peer,twsummerbot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,187708,59.9307364995813,baseline,twsummerbot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,187708,18.769563266793263,peer,twsummerbot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,187708,0.1155915404467981,relative_legacy,twsummerbot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,187708,79.57669477823923,spot_baseline,twsummerbot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,189869,2.19463588013324,peer,VeritasAI,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,189869,-0.1547205936349032,relative_legacy,VeritasAI,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,189869,2.888915510743693,spot_peer,VeritasAI,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,189869,48.54268271702416,spot_baseline,VeritasAI,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,189869,46.60939678168986,baseline,VeritasAI,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,191026,-0.132754685622796,relative_legacy,manticAI,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,191026,4.346780773805882,spot_peer,manticAI,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,191026,50.58909297299573,spot_baseline,manticAI,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,191026,3.521940323627508,peer,manticAI,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,191026,47.039075631398106,baseline,manticAI,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,191935,54.719891136661865,baseline,pgodzinai,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,191935,14.621082729589633,peer,pgodzinai,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,191935,0.0542664117649086,relative_legacy,pgodzinai,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,191935,19.15082715783004,spot_peer,pgodzinai,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,191935,71.36958148433591,spot_baseline,pgodzinai,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,191975,20.1900450893852,spot_peer,jkraybill_bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,191975,0.068255098483571,relative_legacy,jkraybill_bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,191975,16.431084149421473,peer,jkraybill_bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,191975,59.90571466279151,baseline,jkraybill_bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,191975,72.82833510664054,spot_baseline,jkraybill_bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,192075,48.44691725867798,baseline,CumulativeBot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,192075,64.15460290875237,spot_baseline,CumulativeBot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,192075,-0.0006296947842167,relative_legacy,CumulativeBot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,192075,14.010867265434287,spot_peer,CumulativeBot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,192075,10.52183296382339,peer,CumulativeBot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,192418,0.1160979793499105,relative_legacy,InstitutPelFutur,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,192418,74.42912905971976,baseline,InstitutPelFutur,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,192418,22.843839217175425,spot_peer,InstitutPelFutur,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,192418,21.843988170126693,peer,InstitutPelFutur,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,192924,72.09036296172715,baseline,acm_bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,192924,21.08285018426155,peer,acm_bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,192924,0.1090568724957315,relative_legacy,acm_bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,192924,22.843839217175425,spot_peer,acm_bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,204737,67.69666662562221,baseline,SynapseSeer,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,204737,75.87295684578628,spot_baseline,SynapseSeer,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,204737,22.35903747970004,spot_peer,SynapseSeer,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,204737,0.0989189036330461,relative_legacy,SynapseSeer,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,204737,19.594025373004065,peer,SynapseSeer,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,218666,24.015409851951297,peer,GreeneiBot2,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,218666,85.43946777531006,spot_baseline,GreeneiBot2,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,218666,29.174232004923013,spot_peer,GreeneiBot2,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,218666,0.1732327557398888,relative_legacy,GreeneiBot2,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,218666,70.88166748924928,baseline,GreeneiBot2,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,220077,-4.727737182833282,spot_peer,mmBot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,220077,-0.2601853195578015,relative_legacy,mmBot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,220077,-5.521484226961665,peer,mmBot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,220077,37.72927514769201,baseline,mmBot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,222631,-1.1405926998600338,relative_legacy,Grizeu_Bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,222631,-73.69655941662059,spot_baseline,Grizeu_Bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,222631,-60.8069480317063,baseline,Grizeu_Bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,222631,-69.70835362815076,peer,Grizeu_Bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,222631,-84.19447569571888,spot_peer,Grizeu_Bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,224797,60.93639496633357,baseline,cookics_bot_TEST,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,224797,14.551375395986575,peer,cookics_bot_TEST,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,224797,0.0269531443786459,relative_legacy,cookics_bot_TEST,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,224797,16.612975308264083,spot_peer,cookics_bot_TEST,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,224797,67.80719051126377,spot_baseline,cookics_bot_TEST,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,227188,-23.010673971179767,baseline,ProfessorSP,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,227188,-39.04622165647501,peer,ProfessorSP,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,227188,-32.19280948873623,spot_baseline,ProfessorSP,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,227188,-54.627151582619184,spot_peer,ProfessorSP,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,227188,-0.6886689698272884,relative_legacy,ProfessorSP,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236037,9.979849524680375,spot_peer,metac-o1,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236037,8.764535968372344,peer,metac-o1,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236037,54.31018602654692,baseline,metac-o1,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236037,-0.0593030811323557,relative_legacy,metac-o1,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236037,58.496250072115615,spot_baseline,metac-o1,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236038,24.49245990105249,baseline,metac-gpt-4o,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236038,-12.636633028213522,peer,metac-gpt-4o,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236038,-0.3587925725077663,relative_legacy,metac-gpt-4o,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236038,-12.954348804835645,spot_peer,metac-gpt-4o,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236038,26.303440583379377,spot_baseline,metac-gpt-4o,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236040,-0.2511970990419515,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236040,35.22340445583029,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236040,-4.945196877748713,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236040,-4.727737182833282,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236041,-25.357043474177324,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236041,-54.627151582619184,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236041,-32.19280948873623,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236041,-0.7608727198469162,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236041,-43.12548258573629,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236043,63.07282923207301,baseline,metac-grok-2-1212,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236043,14.973762690931077,peer,metac-grok-2-1212,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236043,0.0274453654457873,relative_legacy,metac-grok-2-1212,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236043,16.612975308264083,spot_peer,metac-grok-2-1212,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236045,0.0269398802056008,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236045,67.80719051126377,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236045,62.327116521069605,baseline,metac-Gemini-Exp-1206,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236045,14.823455262460064,peer,metac-Gemini-Exp-1206,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236045,16.612975308264083,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236047,24.46754710083893,baseline,metac-Llama-3.1,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236047,-12.954348804835645,spot_peer,metac-Llama-3.1,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236047,-0.35867009331527,relative_legacy,metac-Llama-3.1,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,236047,-12.630490740444106,peer,metac-Llama-3.1,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,237476,-62.555396987739925,peer,NextWorldLab,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,237476,-46.64963845949155,baseline,NextWorldLab,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,237476,-51.45731728297583,spot_baseline,NextWorldLab,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,237476,-68.35121138013956,spot_peer,NextWorldLab,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,237476,-1.0542626016841925,relative_legacy,NextWorldLab,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,239758,62.968366024080645,baseline,metac-perplexity,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,239758,67.80719051126377,spot_baseline,metac-perplexity,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,239758,16.612975308264083,spot_peer,metac-perplexity,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,239758,0.0271387344141446,relative_legacy,metac-perplexity,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,239758,14.946580903134182,peer,metac-perplexity,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,239759,28.718453972947923,spot_peer,metac-exa,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,239759,78.7313632761821,baseline,metac-exa,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,239759,26.220909810608067,peer,metac-exa,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,239759,0.1848983893779522,relative_legacy,metac-exa,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,240416,62.99839024129548,baseline,metac-o1-preview,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,240416,14.95371575182646,peer,metac-o1-preview,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,240416,67.80719051126377,spot_baseline,metac-o1-preview,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,240416,16.612975308264083,spot_peer,metac-o1-preview,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,240416,0.0272135759337481,relative_legacy,metac-o1-preview,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,241715,-63.42966249182092,peer,CatrachoCaster,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,241715,-45.19542328050057,baseline,CatrachoCaster,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,241715,-1.069591626721927,relative_legacy,CatrachoCaster,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,241715,-65.45587124745134,spot_peer,CatrachoCaster,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,241715,-47.39311883324123,spot_baseline,CatrachoCaster,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,246118,92.5999418556223,spot_baseline,laylaps,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,246118,74.7451617187076,baseline,laylaps,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,246118,27.521584975105867,peer,laylaps,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,246118,0.2270761867424428,relative_legacy,laylaps,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,246118,34.27536282572625,spot_peer,laylaps,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,247214,84.79969065549501,spot_baseline,ajf-bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,247214,0.1935531321291484,relative_legacy,ajf-bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,247214,28.718453972947923,spot_peer,ajf-bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,247214,27.279257167206733,peer,ajf-bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,247214,81.57003305177717,baseline,ajf-bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,250015,-21.89718477321424,spot_peer,metac-deepseek-r1,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,250015,-0.471842519605413,relative_legacy,metac-deepseek-r1,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,250015,12.69130993722903,baseline,metac-deepseek-r1,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,250015,-20.784118435937227,peer,metac-deepseek-r1,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,250015,13.750352374993504,spot_baseline,metac-deepseek-r1,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264059,2.09669396888074,peer,wunderplumb,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264059,48.54268271702416,spot_baseline,wunderplumb,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264059,2.888915510743693,spot_peer,wunderplumb,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264059,-0.1152033530054758,relative_legacy,wunderplumb,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264059,35.820576483891806,baseline,wunderplumb,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264225,0.225233517255424,relative_legacy,KevinTestBot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264225,74.05693198176921,baseline,KevinTestBot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264225,27.290916821161524,peer,KevinTestBot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264225,34.27536282572625,spot_peer,KevinTestBot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264225,92.5999418556223,spot_baseline,KevinTestBot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264332,-0.6150240864699761,relative_legacy,krm-bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264332,-15.200309344505014,spot_baseline,krm-bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264332,-11.755868467287163,baseline,krm-bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264332,-32.953400242888506,peer,krm-bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264332,-42.52167291793536,spot_peer,krm-bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264778,-42.52167291793536,spot_peer,andrewsiah,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264778,-15.200309344505014,spot_baseline,andrewsiah,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264778,-33.70289915216943,peer,andrewsiah,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264778,-0.6290964462649904,relative_legacy,andrewsiah,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,264778,-12.01356111248557,baseline,andrewsiah,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,265212,38.82229989163522,baseline,4Shadower,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,265212,2.180702059889198,peer,4Shadower,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,265212,48.54268271702416,spot_baseline,4Shadower,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,265212,-0.1271159051653392,relative_legacy,4Shadower,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,265212,2.888915510743693,spot_peer,4Shadower,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,265835,67.80719051126377,spot_baseline,jonahsingerbot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,265835,13.424367390661953,peer,jonahsingerbot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,265835,0.0269531443786459,relative_legacy,jonahsingerbot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,265835,55.50548269104944,baseline,jonahsingerbot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,265835,16.612975308264083,spot_peer,jonahsingerbot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,266158,78.11463499634328,baseline,bean_bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,266158,26.03533753828067,peer,bean_bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,266158,84.79969065549501,spot_baseline,bean_bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,266158,0.1834905022504672,relative_legacy,bean_bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,266158,28.718453972947923,spot_peer,bean_bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,266572,13.379731457048509,peer,cobyj-bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,266572,16.612975308264083,spot_peer,cobyj-bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,266572,67.80719051126377,spot_baseline,cobyj-bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,266572,0.0269531443786459,relative_legacy,cobyj-bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35606,Will Elon Musk be interviewed by Jon Stewart on the Daily Show?,2025-03-15 15:49:27.661532+00,266572,55.30377640563686,baseline,cobyj-bot,True,no,2025-03-19 12:00:00+00,2025-03-19 12:00:00+00,1.0,2025-03-19 12:00:00+00,36169 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,187708,87.02660703959828,spot_baseline,twsummerbot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,187708,-0.0876796225403394,peer,twsummerbot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,187708,-0.0309777388723257,relative_legacy,twsummerbot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,187708,-0.1898973171854198,spot_peer,twsummerbot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,187708,60.9717205261703,baseline,twsummerbot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,189869,-1.776355374974464,spot_peer,VeritasAI,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,189869,-1.3215818405482005,peer,VeritasAI,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,189869,80.23952611675857,baseline,VeritasAI,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,189869,-0.0639160935586642,relative_legacy,VeritasAI,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,191026,85.91191653486969,baseline,manticAI,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,191026,3.804422316059722,peer,manticAI,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,191026,0.0084526916292571,relative_legacy,manticAI,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,191026,3.780553477803865,spot_peer,manticAI,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,191935,6.344789046620825,spot_peer,pgodzinai,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,191935,54.77006740995235,baseline,pgodzinai,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,191935,0.0241606217379595,relative_legacy,pgodzinai,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,191935,3.6204978384851993,peer,pgodzinai,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,191935,96.19936774202552,spot_baseline,pgodzinai,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,191975,-2.656641896826258,peer,jkraybill_bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,191975,-3.736282654566062,spot_peer,jkraybill_bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,191975,82.0485342986379,spot_baseline,jkraybill_bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,191975,59.48921964090307,baseline,jkraybill_bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,191975,-0.0684332820945659,relative_legacy,jkraybill_bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,192075,3.843109516054226,peer,CumulativeBot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,192075,0.0243172569544282,relative_legacy,CumulativeBot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,192075,5.921834631707075,spot_peer,CumulativeBot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,192075,95.60566524124027,spot_baseline,CumulativeBot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,192075,61.62647092042956,baseline,CumulativeBot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,192418,0.0774325545863287,relative_legacy,InstitutPelFutur,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,192418,9.053315904343652,peer,InstitutPelFutur,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,192418,96.17221962691248,baseline,InstitutPelFutur,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,192418,99.27684307689242,spot_baseline,InstitutPelFutur,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,192418,8.537186380215644,spot_peer,InstitutPelFutur,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,192924,89.78990071131052,baseline,acm_bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,192924,97.08536543404836,spot_baseline,acm_bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,192924,6.975974926668188,spot_peer,acm_bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,192924,0.0497086029757615,relative_legacy,acm_bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,192924,6.763968574156561,peer,acm_bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,204737,88.90840985981492,spot_baseline,SynapseSeer,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,204737,1.150701399773132,spot_peer,SynapseSeer,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,204737,-0.0225588048358463,relative_legacy,SynapseSeer,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,204737,1.081715804863229,peer,SynapseSeer,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,204737,73.76675865242295,baseline,SynapseSeer,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,218666,5.700120158272313,peer,GreeneiBot2,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,218666,70.9018125368584,baseline,GreeneiBot2,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,218666,98.25829469225908,spot_baseline,GreeneiBot2,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,218666,7.811571218557786,spot_peer,GreeneiBot2,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,218666,0.0488994916381166,relative_legacy,GreeneiBot2,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,220077,76.29485545723881,baseline,mmBot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,220077,-7.650970130746958,spot_peer,mmBot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,220077,-0.1426949910326947,relative_legacy,mmBot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,220077,-7.098014964225608,peer,mmBot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,222631,2.64475061564932,peer,Grizeu_Bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,222631,63.747121658245945,baseline,Grizeu_Bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,222631,92.5999418556223,spot_baseline,Grizeu_Bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,222631,3.780553477803865,spot_peer,Grizeu_Bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,222631,0.0074201350046533,relative_legacy,Grizeu_Bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,224797,92.5999418556223,spot_baseline,cookics_bot_TEST,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,224797,0.0080696081817507,relative_legacy,cookics_bot_TEST,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,224797,78.0530171884339,baseline,cookics_bot_TEST,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,224797,3.333590741553225,peer,cookics_bot_TEST,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,224797,3.780553477803865,spot_peer,cookics_bot_TEST,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,227188,84.79969065549501,spot_baseline,ProfessorSP,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,227188,-1.776355374974464,spot_peer,ProfessorSP,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,227188,-0.0396753668307136,relative_legacy,ProfessorSP,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,227188,-0.9802276521236772,peer,ProfessorSP,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,227188,47.11998263417895,baseline,ProfessorSP,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236037,83.49397947271747,baseline,metac-o1,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236037,3.780553477803865,spot_peer,metac-o1,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236037,0.0080712878984224,relative_legacy,metac-o1,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236037,3.627527831636595,peer,metac-o1,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236038,-1.4138946130444872,peer,metac-gpt-4o,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236038,76.63728841215762,baseline,metac-gpt-4o,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236038,84.79969065549501,spot_baseline,metac-gpt-4o,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236038,-1.776355374974464,spot_peer,metac-gpt-4o,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236038,-0.0622772724108767,relative_legacy,metac-gpt-4o,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236040,84.79969065549501,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236040,-1.776355374974464,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236040,-0.0622702526878252,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236040,-1.4134144248908909,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236040,76.5938318284482,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236041,69.11936241025356,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236041,-0.1367263646292241,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236041,-7.650970130746958,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236041,-6.752430106229299,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236043,3.631412631013654,peer,metac-grok-2-1212,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236043,3.780553477803865,spot_peer,metac-grok-2-1212,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236043,83.5457866267484,baseline,metac-grok-2-1212,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236043,0.0081133899626545,relative_legacy,metac-grok-2-1212,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236045,3.780553477803865,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236045,0.008066256273165,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236045,3.573829660865269,peer,metac-Gemini-Exp-1206,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236045,82.53069606702215,baseline,metac-Gemini-Exp-1206,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236047,58.496250072115615,spot_baseline,metac-Llama-3.1,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236047,52.78100947285062,baseline,metac-Llama-3.1,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236047,-18.42945668492135,peer,metac-Llama-3.1,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236047,-0.2995984875716144,relative_legacy,metac-Llama-3.1,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,236047,-20.514959823242016,spot_peer,metac-Llama-3.1,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,237476,79.53543834071398,baseline,NextWorldLab,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,237476,3.4112354407369154,peer,NextWorldLab,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,237476,0.0080696081817507,relative_legacy,NextWorldLab,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,237476,3.780553477803865,spot_peer,NextWorldLab,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,239758,6.975974926668188,spot_peer,metac-perplexity,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,239758,87.4708174190728,baseline,metac-perplexity,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,239758,6.52011178000301,peer,metac-perplexity,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,239758,0.0484801648299818,relative_legacy,metac-perplexity,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,239758,97.08536543404836,spot_baseline,metac-perplexity,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,239759,7.477950990798655,peer,metac-exa,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,239759,88.89749152232771,baseline,metac-exa,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,239759,98.5500430304885,spot_baseline,metac-exa,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,239759,8.019413104914475,spot_peer,metac-exa,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,239759,0.0617725951126138,relative_legacy,metac-exa,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,240416,3.780553477803865,spot_peer,metac-o1-preview,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,240416,0.0080710832998174,relative_legacy,metac-o1-preview,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,240416,3.623286169303761,peer,metac-o1-preview,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,240416,83.43026672913214,baseline,metac-o1-preview,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,241715,0.0,relative_legacy,CatrachoCaster,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,241715,45.36050298852066,baseline,CatrachoCaster,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,241715,1.851921328369304,peer,CatrachoCaster,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,241715,92.5999418556223,spot_baseline,CatrachoCaster,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,241715,3.780553477803865,spot_peer,CatrachoCaster,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,246118,3.780553477803865,spot_peer,laylaps,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,246118,60.94715802834967,baseline,laylaps,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,246118,2.517909983323685,peer,laylaps,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,246118,0.005708172854593,relative_legacy,laylaps,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,246118,92.5999418556223,spot_baseline,laylaps,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,247214,-19.67330000427473,peer,ajf-bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,247214,58.496250072115615,spot_baseline,ajf-bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,247214,-20.514959823242016,spot_peer,ajf-bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,247214,-0.3157204102915338,relative_legacy,ajf-bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,247214,56.2948115730782,baseline,ajf-bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,250015,-7.650970130746958,spot_peer,metac-deepseek-r1,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,250015,-6.612284796368299,peer,metac-deepseek-r1,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,250015,67.55842977258949,baseline,metac-deepseek-r1,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,250015,-0.1335342933136237,relative_legacy,metac-deepseek-r1,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264059,-1.776355374974464,spot_peer,wunderplumb,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264059,-1.2123847758248525,peer,wunderplumb,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264059,60.15836846955092,baseline,wunderplumb,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264059,-0.0472667240884552,relative_legacy,wunderplumb,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264225,3.780553477803865,spot_peer,KevinTestBot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264225,2.446433519628868,peer,KevinTestBot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264225,92.5999418556223,spot_baseline,KevinTestBot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264225,59.33503028426233,baseline,KevinTestBot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264225,0.0047296084730092,relative_legacy,KevinTestBot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264332,-1.776355374974464,spot_peer,krm-bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264332,84.79969065549501,spot_baseline,krm-bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264332,49.89553483094239,baseline,krm-bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264332,-1.0330160451024732,peer,krm-bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264332,-0.0411665147837602,relative_legacy,krm-bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264778,-4.912695273701047,peer,andrewsiah,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264778,76.55347463629771,spot_baseline,andrewsiah,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264778,-7.650970130746958,spot_peer,andrewsiah,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264778,-0.0985219093461455,relative_legacy,andrewsiah,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,264778,49.374042949644014,baseline,andrewsiah,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,265212,59.27524303030507,baseline,4Shadower,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,265212,-1.1982890067630565,peer,4Shadower,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,265212,84.79969065549501,spot_baseline,4Shadower,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,265212,-1.776355374974464,spot_peer,4Shadower,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,265212,-0.0465137109639167,relative_legacy,4Shadower,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,265835,-1.776355374974464,spot_peer,jonahsingerbot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,265835,-0.0457227708308138,relative_legacy,jonahsingerbot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,265835,57.2315728669424,baseline,jonahsingerbot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,265835,-1.1646872669597923,peer,jonahsingerbot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,265835,84.79969065549501,spot_baseline,jonahsingerbot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,266158,-1.408214049835229,peer,bean_bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,266158,-0.0614964365059535,relative_legacy,bean_bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,266158,-1.776355374974464,spot_peer,bean_bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,266158,84.79969065549501,spot_baseline,bean_bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,266158,75.62806528009496,baseline,bean_bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,266572,-0.0456312916232799,relative_legacy,cobyj-bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,266572,-1.776355374974464,spot_peer,cobyj-bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,266572,84.79969065549501,spot_baseline,cobyj-bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,266572,56.883225324319824,baseline,cobyj-bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35607,"Will Ukraine's parliament initiate impeachment proceedings against Volodymyr Zelensky before April 1, 2025?",2025-03-15 15:49:27.691871+00,266572,-1.1588977809376917,peer,cobyj-bot,True,no,2025-03-19 14:00:00+00,2025-03-19 14:00:00+00,1.0,2025-03-19 14:00:00+00,36170 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,187708,65.81387279632665,baseline,twsummerbot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,187708,12.571694465147058,peer,twsummerbot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,187708,0.0600966756708233,relative_legacy,twsummerbot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,187708,16.894485781276362,spot_peer,twsummerbot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,187708,84.1570637395517,spot_baseline,twsummerbot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,189869,3.534088352529859,peer,VeritasAI,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,189869,5.2468153469454935,spot_peer,VeritasAI,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,189869,-0.0851906808901915,relative_legacy,VeritasAI,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,189869,64.70282954828747,baseline,VeritasAI,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,191026,-31.483249540583657,peer,manticAI,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,191026,14.18681710185869,baseline,manticAI,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,191026,15.315678806142024,spot_baseline,manticAI,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,191026,-32.14820419872608,spot_peer,manticAI,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,191026,-0.572755656979358,relative_legacy,manticAI,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,191935,97.08536543404836,spot_baseline,pgodzinai,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,191935,75.54745256150265,baseline,pgodzinai,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,191935,19.678732124962632,peer,pgodzinai,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,191935,0.1602375499612021,relative_legacy,pgodzinai,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,191935,26.104624313271973,spot_peer,pgodzinai,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,191975,63.72238066009559,spot_baseline,jkraybill_bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,191975,47.79995365057236,baseline,jkraybill_bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,191975,1.1389932550104092,peer,jkraybill_bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,191975,-0.0957820159369059,relative_legacy,jkraybill_bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,191975,2.3367916257219634,spot_peer,jkraybill_bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,192075,43.65172266892955,spot_baseline,CumulativeBot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,192075,-0.2663766911910433,relative_legacy,CumulativeBot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,192075,-10.491716346652026,peer,CumulativeBot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,192075,35.77002166087297,baseline,CumulativeBot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,192075,-11.961570595019916,spot_peer,CumulativeBot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,192418,-12.979180668243073,spot_peer,InstitutPelFutur,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,192418,-0.3293167226907082,relative_legacy,InstitutPelFutur,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,192418,42.22330006830476,spot_baseline,InstitutPelFutur,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,192418,40.959940630063095,baseline,InstitutPelFutur,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,192418,-14.146764824821837,peer,InstitutPelFutur,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,192924,40.98229142334654,baseline,acm_bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,192924,-0.3181408228155259,relative_legacy,acm_bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,192924,-12.215030101470358,spot_peer,acm_bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,192924,43.29594072761063,spot_baseline,acm_bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,192924,-13.281090262796816,peer,acm_bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,204737,25.99969548559984,spot_peer,SynapseSeer,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,204737,96.93807649416078,spot_baseline,SynapseSeer,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,204737,0.1804521434258296,relative_legacy,SynapseSeer,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,204737,22.178421892864847,peer,SynapseSeer,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,204737,87.5128321376273,baseline,SynapseSeer,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,218666,17.775763365360138,peer,GreeneiBot2,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,218666,91.3798964950696,spot_baseline,GreeneiBot2,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,218666,76.97432474432271,baseline,GreeneiBot2,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,218666,22.04004100142359,spot_peer,GreeneiBot2,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,218666,0.1265193725895033,relative_legacy,GreeneiBot2,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,220077,0.0997280187445432,relative_legacy,mmBot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,220077,22.90920286440768,spot_peer,mmBot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,220077,57.55041661755754,baseline,mmBot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,220077,13.83313858910532,peer,mmBot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,222631,17.35229401162934,spot_peer,Grizeu_Bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,222631,71.76381323122796,baseline,Grizeu_Bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,222631,13.869296883557691,peer,Grizeu_Bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,222631,84.79969065549501,spot_baseline,Grizeu_Bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,222631,0.0710906710252339,relative_legacy,Grizeu_Bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,224797,48.54268271702416,spot_baseline,cookics_bot_TEST,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,224797,-0.2600569883050188,relative_legacy,cookics_bot_TEST,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,224797,-9.220853565724578,peer,cookics_bot_TEST,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,224797,44.30619961924059,baseline,cookics_bot_TEST,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,224797,-8.477244450574903,spot_peer,cookics_bot_TEST,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,227188,-8.477244450574903,spot_peer,ProfessorSP,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,227188,37.86597876357816,baseline,ProfessorSP,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,227188,48.54268271702416,spot_baseline,ProfessorSP,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,227188,-7.263580650454377,peer,ProfessorSP,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,227188,-0.2178658233649273,relative_legacy,ProfessorSP,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236037,71.69140602548187,baseline,metac-o1,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236037,76.55347463629771,spot_baseline,metac-o1,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236037,11.477679255856827,spot_peer,metac-o1,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236037,-0.0061659769866844,relative_legacy,metac-o1,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236037,9.110317191389282,peer,metac-o1,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236038,14.673604007667752,peer,metac-gpt-4o,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236038,79.57150430575334,baseline,metac-gpt-4o,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236038,84.79969065549501,spot_baseline,metac-gpt-4o,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236038,17.35229401162934,spot_peer,metac-gpt-4o,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236038,0.0713082176896186,relative_legacy,metac-gpt-4o,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236040,-0.0061660339742045,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236040,11.477679255856827,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236040,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236040,71.7185494137166,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236040,9.113239494347972,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236041,-0.5598553729691416,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236041,-79.71737134145816,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236041,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236041,-22.50555939238014,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236041,-34.86448500918248,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236043,17.35229401162934,spot_peer,metac-grok-2-1212,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236043,79.50127679475588,baseline,metac-grok-2-1212,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236043,14.65336364128262,peer,metac-grok-2-1212,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236043,0.0711553087193324,relative_legacy,metac-grok-2-1212,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236045,0.1430529145539017,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236045,85.70102563293321,baseline,metac-Gemini-Exp-1206,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236045,19.70722572062142,peer,metac-Gemini-Exp-1206,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236045,22.90920286440768,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236047,63.55613661990468,baseline,metac-Llama-3.1,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236047,3.2490670403477897,peer,metac-Llama-3.1,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236047,-0.0881090001722544,relative_legacy,metac-Llama-3.1,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,236047,5.2468153469454935,spot_peer,metac-Llama-3.1,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,237476,84.45717266886277,baseline,NextWorldLab,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,237476,19.51425589119367,peer,NextWorldLab,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,237476,0.1420137482187032,relative_legacy,NextWorldLab,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,237476,22.90920286440768,spot_peer,NextWorldLab,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,239758,0.1437257482737496,relative_legacy,metac-perplexity,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,239758,19.8200584028894,peer,metac-perplexity,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,239758,22.90920286440768,spot_peer,metac-perplexity,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,239758,86.49637557030972,baseline,metac-perplexity,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,239759,79.2258336645077,baseline,metac-exa,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,239759,17.35229401162934,spot_peer,metac-exa,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,239759,0.0708703814661832,relative_legacy,metac-exa,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,239759,14.608426593931483,peer,metac-exa,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,240416,19.824070199182263,peer,metac-o1-preview,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,240416,22.90920286440768,spot_peer,metac-o1-preview,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,240416,86.52075031389298,baseline,metac-o1-preview,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,240416,0.1437491769147693,relative_legacy,metac-o1-preview,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,241715,-15.996183189433289,peer,CatrachoCaster,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,241715,-0.3404656341169072,relative_legacy,CatrachoCaster,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,241715,33.34237337251918,spot_baseline,CatrachoCaster,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,241715,-19.305964115407047,spot_peer,CatrachoCaster,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,241715,26.49454400109259,baseline,CatrachoCaster,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,246118,63.27974761816973,baseline,laylaps,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,246118,76.55347463629771,spot_baseline,laylaps,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,246118,0.0029267541058713,relative_legacy,laylaps,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,246118,11.477679255856827,spot_peer,laylaps,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,246118,8.784665588382442,peer,laylaps,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,247214,0.1436855253035651,relative_legacy,ajf-bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,247214,92.5999418556223,spot_baseline,ajf-bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,247214,22.90920286440768,spot_peer,ajf-bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,247214,19.81199885449827,peer,ajf-bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,247214,86.44180696950224,baseline,ajf-bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,250015,-0.1656298290471756,relative_legacy,metac-deepseek-r1,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,250015,52.64312023091213,baseline,metac-deepseek-r1,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,250015,-2.588671018974477,peer,metac-deepseek-r1,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,250015,-1.3863104366382293,spot_peer,metac-deepseek-r1,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,250015,58.496250072115615,spot_baseline,metac-deepseek-r1,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264059,17.35229401162934,spot_peer,wunderplumb,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264059,63.15724071061077,baseline,wunderplumb,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264059,12.321035095621308,peer,wunderplumb,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264059,0.0614162912683207,relative_legacy,wunderplumb,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264225,-114.29924010530505,spot_peer,KevinTestBot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264225,-100.0,spot_baseline,KevinTestBot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264225,-82.28845623466704,baseline,KevinTestBot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264225,-1.4495974546432366,relative_legacy,KevinTestBot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264225,-94.8405152400089,peer,KevinTestBot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264332,10.97899229423222,baseline,krm-bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264332,-27.22486922589916,peer,krm-bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264332,-0.4982187678835207,relative_legacy,krm-bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264332,13.750352374993504,spot_baseline,krm-bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264332,-33.26334473453282,spot_peer,krm-bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264778,8.333961286875534,peer,andrewsiah,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264778,76.55347463629771,spot_baseline,andrewsiah,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264778,11.477679255856827,spot_peer,andrewsiah,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264778,59.873764787892895,baseline,andrewsiah,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,264778,0.0006409081543234,relative_legacy,andrewsiah,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,265212,-68.61614046921022,peer,4Shadower,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,265212,-1.0854145695132025,relative_legacy,4Shadower,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,265212,-79.71737134145816,spot_peer,4Shadower,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,265212,-51.45731728297583,spot_baseline,4Shadower,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,265212,-43.67530008341564,baseline,4Shadower,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,265835,3.615083482633386,peer,jonahsingerbot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,265835,56.7696622639276,baseline,jonahsingerbot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,265835,5.2468153469454935,spot_peer,jonahsingerbot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,265835,67.80719051126377,spot_baseline,jonahsingerbot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,265835,-0.0711742550002003,relative_legacy,jonahsingerbot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,266158,14.562611539718604,peer,bean_bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,266158,0.0708703814661832,relative_legacy,bean_bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,266158,17.35229401162934,spot_peer,bean_bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,266158,84.79969065549501,spot_baseline,bean_bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,266158,78.6875674635438,baseline,bean_bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,266572,17.35229401162934,spot_peer,cobyj-bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,266572,70.78777610414251,baseline,cobyj-bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,266572,13.735006384620892,peer,cobyj-bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,266572,0.0710906710252339,relative_legacy,cobyj-bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35608,"Will the temperature reach 90 degrees F in Miami FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.020496+00,266572,84.79969065549501,spot_baseline,cobyj-bot,True,no,2025-03-19 16:00:00+00,2025-03-19 16:00:00+00,1.0,2025-03-19 16:00:00+00,36171 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,187708,3.024420132646297,spot_peer,twsummerbot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,187708,2.318164243744331,peer,twsummerbot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,187708,65.04327692422294,baseline,twsummerbot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,187708,82.37493603082727,spot_baseline,twsummerbot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,187708,-0.0191458705918183,relative_legacy,twsummerbot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,189869,-0.1592710061147699,relative_legacy,VeritasAI,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,189869,-7.275616353975662,peer,VeritasAI,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,189869,64.85556371971316,baseline,VeritasAI,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,189869,-7.353660260631702,spot_peer,VeritasAI,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,191026,-39.51807583820004,peer,manticAI,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,191026,-42.5540531246059,spot_peer,manticAI,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,191026,-0.6103334706913738,relative_legacy,manticAI,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,191026,17.016533534741885,baseline,manticAI,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,191026,18.396283484259488,spot_baseline,manticAI,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,191935,0.0343276164933408,relative_legacy,pgodzinai,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,191935,5.88908397413889,peer,pgodzinai,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,191935,89.53026213333065,spot_baseline,pgodzinai,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,191935,64.96805972515156,baseline,pgodzinai,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,191935,8.121883527526197,spot_peer,pgodzinai,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,191975,-1.9092730026922868,peer,jkraybill_bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,191975,-0.0738485332695171,relative_legacy,jkraybill_bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,191975,-2.706836137305942,spot_peer,jkraybill_bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,191975,74.32995278882566,spot_baseline,jkraybill_bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,191975,52.42880061899252,baseline,jkraybill_bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,192075,9.946619284937876,peer,CumulativeBot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,192075,76.94455859797839,baseline,CumulativeBot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,192075,95.60566524124027,spot_baseline,CumulativeBot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,192075,12.45000841073369,spot_peer,CumulativeBot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,192075,0.0869102196708337,relative_legacy,CumulativeBot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,192418,4.751818404052149,spot_peer,InstitutPelFutur,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,192418,0.0024987424232198,relative_legacy,InstitutPelFutur,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,192418,4.34649198941316,peer,InstitutPelFutur,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,192418,82.73551754854672,baseline,InstitutPelFutur,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,192418,84.79969065549501,spot_baseline,InstitutPelFutur,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,192924,1.6967199713213703,peer,acm_bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,192924,1.856478271363911,spot_peer,acm_bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,192924,-0.0338305597273662,relative_legacy,acm_bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,192924,80.73549220576041,spot_baseline,acm_bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,192924,75.75489001113557,baseline,acm_bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,204737,95.30789526125076,spot_baseline,SynapseSeer,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,204737,12.237876699146176,spot_peer,SynapseSeer,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,204737,0.0958220318406285,relative_legacy,SynapseSeer,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,204737,10.82105650181489,peer,SynapseSeer,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,204737,84.2647019552639,baseline,SynapseSeer,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,218666,4.516777658769319,peer,GreeneiBot2,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,218666,69.80581588413658,baseline,GreeneiBot2,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,218666,5.661362196408695,spot_peer,GreeneiBot2,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,218666,86.07642026288279,spot_baseline,GreeneiBot2,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,218666,0.010296427791566,relative_legacy,GreeneiBot2,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,220077,10.308727256830482,spot_peer,mmBot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,220077,9.93662464098096,peer,mmBot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,220077,92.25416510596833,baseline,mmBot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,220077,92.5999418556223,spot_baseline,mmBot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,220077,0.0786025365600428,relative_legacy,mmBot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,222631,84.79969065549501,spot_baseline,Grizeu_Bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,222631,4.751818404052149,spot_peer,Grizeu_Bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,222631,67.7553719317757,baseline,Grizeu_Bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,222631,3.720980837847777,peer,Grizeu_Bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,222631,0.0,relative_legacy,Grizeu_Bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,224797,43.284855250213305,baseline,cookics_bot_TEST,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,224797,48.54268271702416,spot_baseline,cookics_bot_TEST,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,224797,-21.07772005815209,spot_peer,cookics_bot_TEST,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,224797,-0.3197601403777325,relative_legacy,cookics_bot_TEST,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,224797,-18.86497254232293,peer,cookics_bot_TEST,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,227188,19.007241957725,baseline,ProfessorSP,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,227188,26.303440583379377,spot_baseline,ProfessorSP,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,227188,-26.681421870538585,peer,ProfessorSP,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,227188,-0.4227022602673688,relative_legacy,ProfessorSP,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,227188,-36.920984373731415,spot_peer,ProfessorSP,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236037,78.60418454828964,baseline,metac-o1,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236037,4.751818404052149,spot_peer,metac-o1,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236037,0.0038970101105115,relative_legacy,metac-o1,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236037,4.414456525098755,peer,metac-o1,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236038,84.79969065549501,spot_baseline,metac-gpt-4o,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236038,78.75013525219634,baseline,metac-gpt-4o,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236038,4.421272737262776,peer,metac-gpt-4o,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236038,0.003907078514001,relative_legacy,metac-gpt-4o,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236038,4.751818404052149,spot_peer,metac-gpt-4o,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236040,9.601854721092762,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236040,10.308727256830482,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236040,0.0763243656037482,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236040,85.97866237861504,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236041,54.26657017822184,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236041,-13.071876551377937,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236041,-0.2405944624757041,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236041,-13.986786044215403,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236041,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236043,4.751818404052149,spot_peer,metac-grok-2-1212,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236043,78.69813416487415,baseline,metac-grok-2-1212,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236043,0.0039071341760412,relative_legacy,metac-grok-2-1212,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236043,4.417388693899445,peer,metac-grok-2-1212,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236045,10.308727256830482,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236045,84.93390677148557,baseline,metac-Gemini-Exp-1206,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236045,9.47798942176003,peer,metac-Gemini-Exp-1206,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236045,0.0754318730481736,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236047,-7.353660260631702,spot_peer,metac-Llama-3.1,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236047,62.85874799150832,baseline,metac-Llama-3.1,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236047,-6.851826770234479,peer,metac-Llama-3.1,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,236047,-0.153617057028204,relative_legacy,metac-Llama-3.1,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,237476,-1.0248465022046007,peer,NextWorldLab,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,237476,-0.0699916879958474,relative_legacy,NextWorldLab,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,237476,-1.1227963517203452,spot_peer,NextWorldLab,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,237476,76.55347463629771,spot_baseline,NextWorldLab,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,237476,68.59432936544411,baseline,NextWorldLab,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,239758,-0.2393178815150315,relative_legacy,metac-perplexity,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,239758,58.496250072115615,spot_baseline,metac-perplexity,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,239758,-13.986786044215403,spot_peer,metac-perplexity,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,239758,-12.98502289048007,peer,metac-perplexity,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,239758,54.090021694496734,baseline,metac-perplexity,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,239759,85.76775085673133,baseline,metac-exa,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,239759,9.580400194180374,peer,metac-exa,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,239759,0.0761420842345412,relative_legacy,metac-exa,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,239759,10.308727256830482,spot_peer,metac-exa,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,240416,4.414394652209671,peer,metac-o1-preview,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,240416,4.751818404052149,spot_peer,metac-o1-preview,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,240416,0.0039033590818577,relative_legacy,metac-o1-preview,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,240416,78.56867731383258,baseline,metac-o1-preview,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,241715,48.54268271702416,spot_baseline,CatrachoCaster,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,241715,-16.028155593521777,peer,CatrachoCaster,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,241715,-0.275157959797525,relative_legacy,CatrachoCaster,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,241715,36.83951406630681,baseline,CatrachoCaster,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,241715,-21.07772005815209,spot_peer,CatrachoCaster,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,246118,95.60566524124027,spot_baseline,laylaps,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,246118,12.45000841073369,spot_peer,laylaps,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,246118,0.0835108360498331,relative_legacy,laylaps,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,246118,9.573609068746816,peer,laylaps,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,246118,73.88606156753958,baseline,laylaps,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,247214,88.13034774541396,baseline,ajf-bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,247214,9.779359939736146,peer,ajf-bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,247214,0.0774947141654727,relative_legacy,ajf-bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,247214,10.308727256830482,spot_peer,ajf-bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,247214,92.5999418556223,spot_baseline,ajf-bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,250015,-1.0406276688204543,peer,metac-deepseek-r1,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,250015,-0.0713900702133902,relative_legacy,metac-deepseek-r1,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,250015,-1.1227963517203452,spot_peer,metac-deepseek-r1,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,250015,69.88402861729321,baseline,metac-deepseek-r1,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264059,3.4479993487351224,peer,wunderplumb,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264059,4.751818404052149,spot_peer,wunderplumb,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264059,0.0,relative_legacy,wunderplumb,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264059,61.63437865912713,baseline,wunderplumb,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264225,-7.353660260631702,spot_peer,KevinTestBot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264225,67.80719051126377,spot_baseline,KevinTestBot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264225,-0.1298149410526042,relative_legacy,KevinTestBot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264225,-5.655192584692771,peer,KevinTestBot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264225,51.80159696600459,baseline,KevinTestBot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264332,7.010761594592943,spot_peer,krm-bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264332,87.97057662822883,spot_baseline,krm-bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264332,0.0235186445547047,relative_legacy,krm-bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264332,5.182483550955352,peer,krm-bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264332,65.24828520427599,baseline,krm-bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264778,-1.1227963517203452,spot_peer,andrewsiah,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264778,76.55347463629771,spot_baseline,andrewsiah,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264778,57.72428984140585,baseline,andrewsiah,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264778,-0.8723536478893743,peer,andrewsiah,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,264778,-0.062179667983521,relative_legacy,andrewsiah,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,265212,74.40506192498373,baseline,4Shadower,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,265212,10.308727256830482,spot_peer,4Shadower,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,265212,92.5999418556223,spot_baseline,4Shadower,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,265212,8.208500080527507,peer,4Shadower,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,265212,0.0626183392333451,relative_legacy,4Shadower,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,265835,72.72067555460043,baseline,jonahsingerbot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,265835,92.5999418556223,spot_baseline,jonahsingerbot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,265835,10.308727256830482,spot_peer,jonahsingerbot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,265835,0.0612570078773111,relative_legacy,jonahsingerbot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,265835,8.031893559997542,peer,jonahsingerbot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,266158,4.375134137510852,peer,bean_bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,266158,84.79969065549501,spot_baseline,bean_bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,266158,77.9491506623,baseline,bean_bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,266158,4.751818404052149,spot_peer,bean_bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,266158,0.0038970101105115,relative_legacy,bean_bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,266572,66.45629920831169,baseline,cobyj-bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,266572,4.751818404052149,spot_peer,cobyj-bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,266572,0.0,relative_legacy,cobyj-bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,266572,3.660006082269234,peer,cobyj-bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35609,"Will the temperature reach 90 degrees F in Jacksonville FL after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.055486+00,266572,84.79969065549501,spot_baseline,cobyj-bot,True,no,2025-03-19 18:00:00+00,2025-03-19 18:00:00+00,1.0,2025-03-19 18:00:00+00,36172 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,187708,154.34494201784662,spot_peer,twsummerbot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,187708,1.8529139453585497,relative_legacy,twsummerbot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,187708,56.32403986910477,baseline,twsummerbot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,187708,121.84230721137143,peer,twsummerbot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,187708,71.7210299019596,spot_baseline,twsummerbot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,189869,-0.134100848059861,relative_legacy,VeritasAI,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,189869,-20.49086002525671,spot_peer,VeritasAI,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,189869,-173.6965594166206,spot_baseline,VeritasAI,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,189869,-165.06565949943402,baseline,VeritasAI,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,189869,-11.515994376967669,peer,VeritasAI,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,191026,50.90395551242036,baseline,manticAI,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,191026,1.9827931982913207,relative_legacy,manticAI,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,191026,54.99155540161343,spot_baseline,manticAI,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,191026,136.8910788924077,peer,manticAI,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,191026,142.42684315562204,spot_peer,manticAI,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,191935,-48.69686916682652,spot_peer,pgodzinai,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,191935,-0.2758270438828772,relative_legacy,pgodzinai,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,191935,-33.62064241143534,peer,pgodzinai,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,191935,-148.58987406458263,baseline,pgodzinai,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,191935,-213.2894270497345,spot_baseline,pgodzinai,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,191975,153.9691544775269,spot_peer,jkraybill_bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,191975,44.31114887733506,baseline,jkraybill_bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,191975,95.83103381074376,peer,jkraybill_bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,191975,1.5242060050580122,relative_legacy,jkraybill_bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,191975,71.19353569789214,spot_baseline,jkraybill_bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,192075,149.3928952576101,spot_peer,CumulativeBot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,192075,50.85672671635015,baseline,CumulativeBot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,192075,64.76982560691188,spot_baseline,CumulativeBot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,192075,1.7981830522283937,relative_legacy,CumulativeBot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,192075,117.92940002695067,peer,CumulativeBot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,192418,1.03789317932446,relative_legacy,InstitutPelFutur,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,192418,-49.99669269135998,baseline,InstitutPelFutur,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,192418,74.22604968276553,peer,InstitutPelFutur,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,192418,66.59253118120587,spot_peer,InstitutPelFutur,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,192418,-51.45731728297583,spot_baseline,InstitutPelFutur,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,192924,18.26948526509639,baseline,acm_bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,192924,117.61521116346688,spot_peer,acm_bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,192924,20.163386116965043,spot_baseline,acm_bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,192924,109.8596993709574,peer,acm_bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,192924,1.6148066390740994,relative_legacy,acm_bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,204737,64.19913506659209,peer,SynapseSeer,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,204737,-38.7832224831236,baseline,SynapseSeer,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,204737,71.46714690934785,spot_peer,SynapseSeer,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,204737,-44.61480318188741,spot_baseline,SynapseSeer,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,204737,0.9857928235910838,relative_legacy,SynapseSeer,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,218666,1.6563741036905777,relative_legacy,GreeneiBot2,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,218666,108.29568605551404,peer,GreeneiBot2,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,218666,46.04804700400107,spot_baseline,GreeneiBot2,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,218666,136.05547642466618,spot_peer,GreeneiBot2,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,218666,36.4202916989257,baseline,GreeneiBot2,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,220077,-0.1498014278723544,relative_legacy,mmBot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,220077,-13.321108182452056,peer,mmBot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,220077,-173.1585906552089,baseline,mmBot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,220077,-20.49086002525671,spot_peer,mmBot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,220077,-173.6965594166206,spot_baseline,mmBot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,222631,-564.3856189774725,spot_baseline,Grizeu_Bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,222631,-437.17196117616606,baseline,Grizeu_Bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,222631,-231.06382850370727,peer,Grizeu_Bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,222631,-3.077946557546676,relative_legacy,Grizeu_Bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,222631,-298.81824180520607,spot_peer,Grizeu_Bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,224797,1.716289660768252,relative_legacy,cookics_bot_TEST,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,224797,130.21600537851216,spot_peer,cookics_bot_TEST,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,224797,37.85116232537298,spot_baseline,cookics_bot_TEST,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,224797,33.15892974511328,baseline,cookics_bot_TEST,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,224797,116.47647922752245,peer,cookics_bot_TEST,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,227188,1.642435170256468,relative_legacy,ProfessorSP,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,227188,41.3778095273966,baseline,ProfessorSP,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,227188,102.86236073035607,peer,ProfessorSP,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,227188,58.496250072115615,spot_baseline,ProfessorSP,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,227188,144.92359208602582,spot_peer,ProfessorSP,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236037,43.8326602178649,baseline,metac-o1,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236037,137.83265807208917,spot_peer,metac-o1,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236037,1.865657464765252,relative_legacy,metac-o1,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236037,48.54268271702416,spot_baseline,metac-o1,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236037,127.75732030740772,peer,metac-o1,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236038,-62.16366280304027,spot_peer,metac-gpt-4o,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236038,-53.81027511383184,peer,metac-gpt-4o,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236038,-0.6719603290183443,relative_legacy,metac-gpt-4o,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236038,-213.61475325893804,baseline,metac-gpt-4o,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236038,-232.19280948873623,spot_baseline,metac-gpt-4o,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236040,-305.6746509466412,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236040,-1.592489544030445,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236040,-119.74841114069794,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236040,-332.1928094887362,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236040,-133.40378969392353,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236041,-119.72821040976196,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236041,-1.5920456016024322,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236041,-332.1928094887362,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236041,-133.40378969392353,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236041,-305.54030908676646,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236043,-0.6721348016011636,relative_legacy,metac-grok-2-1212,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236043,-62.16366280304027,spot_peer,metac-grok-2-1212,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236043,-53.83350145369605,peer,metac-grok-2-1212,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236043,-232.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236043,-213.58793282030675,baseline,metac-grok-2-1212,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236045,-53.838709051491705,peer,metac-Gemini-Exp-1206,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236045,-211.0568862013598,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236045,-232.19280948873623,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236045,-62.16366280304027,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236045,-0.6718423845404599,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236047,-121.58162044400368,baseline,metac-Llama-3.1,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236047,9.076464087842997,spot_peer,metac-Llama-3.1,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236047,-132.19280948873623,spot_baseline,metac-Llama-3.1,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236047,0.2474984123703481,relative_legacy,metac-Llama-3.1,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,236047,12.0319757122644,peer,metac-Llama-3.1,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,237476,-1.5320360741841608,relative_legacy,NextWorldLab,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,237476,-115.93685353775636,peer,NextWorldLab,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,237476,-293.20897716480187,baseline,NextWorldLab,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,237476,-332.1928094887362,spot_baseline,NextWorldLab,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,237476,-133.40378969392353,spot_peer,NextWorldLab,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,239758,-20.49086002525671,spot_peer,metac-perplexity,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,239758,-0.1363368226277378,relative_legacy,metac-perplexity,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,239758,-15.988033568540429,peer,metac-perplexity,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,239758,-151.9037654381576,baseline,metac-perplexity,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,239758,-173.6965594166206,spot_baseline,metac-perplexity,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,239759,-332.1928094887362,spot_baseline,metac-exa,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,239759,-1.5743135511273023,relative_legacy,metac-exa,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,239759,-300.42783074902536,baseline,metac-exa,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,239759,-133.40378969392353,spot_peer,metac-exa,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,239759,-118.39631058544995,peer,metac-exa,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,240416,62.10483660880979,baseline,metac-o1-preview,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,240416,142.84992801969665,peer,metac-o1-preview,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,240416,2.07550282609816,relative_legacy,metac-o1-preview,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,240416,67.80719051126377,spot_baseline,metac-o1-preview,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,240416,151.55671786960954,spot_peer,metac-o1-preview,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,241715,-170.98315570217648,baseline,CatrachoCaster,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,241715,-45.308174631098034,peer,CatrachoCaster,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,241715,-0.4307572424872696,relative_legacy,CatrachoCaster,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,241715,-232.19280948873623,spot_baseline,CatrachoCaster,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,241715,-62.16366280304027,spot_peer,CatrachoCaster,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,246118,-134.45797464920295,peer,laylaps,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,246118,-1.6847741104312717,relative_legacy,laylaps,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,246118,-405.8893689053569,spot_baseline,laylaps,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,246118,-294.51036917842447,baseline,laylaps,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,246118,-185.90531213653924,spot_peer,laylaps,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,247214,-7.003549030965415,relative_legacy,ajf-bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,247214,-535.4728208073718,spot_peer,ajf-bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,247214,-896.5784284662087,spot_baseline,ajf-bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,247214,-852.0062986718818,baseline,ajf-bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,247214,-507.8717380795858,peer,ajf-bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,250015,-0.0816890649196653,relative_legacy,metac-deepseek-r1,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,250015,-20.49086002525671,spot_peer,metac-deepseek-r1,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,250015,-173.6965594166206,spot_baseline,metac-deepseek-r1,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,250015,-143.2343651882984,baseline,metac-deepseek-r1,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,250015,-15.795344696121086,peer,metac-deepseek-r1,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264059,-62.16366280304027,spot_peer,wunderplumb,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264059,-44.34549642381366,peer,wunderplumb,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264059,-167.1879549425676,baseline,wunderplumb,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264059,-0.4211960070124591,relative_legacy,wunderplumb,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264059,-232.19280948873623,spot_baseline,wunderplumb,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264225,76.55347463629771,spot_baseline,KevinTestBot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264225,56.53474595246086,baseline,KevinTestBot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264225,117.0496116044832,peer,KevinTestBot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264225,1.8453656870329995,relative_legacy,KevinTestBot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264225,157.7875817785209,spot_peer,KevinTestBot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264332,0.8799900699598926,relative_legacy,krm-bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264332,48.37130601638112,peer,krm-bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264332,-37.04369189910988,baseline,krm-bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264332,-51.45731728297583,spot_baseline,krm-bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264332,66.59253118120587,spot_peer,krm-bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264778,0.0,relative_legacy,andrewsiah,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264778,-117.33002138121935,baseline,andrewsiah,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264778,-20.49086002525671,spot_peer,andrewsiah,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264778,-173.6965594166206,spot_baseline,andrewsiah,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,264778,-13.614966526565643,peer,andrewsiah,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,265212,58.496250072115615,spot_baseline,4Shadower,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,265212,45.767850075624246,baseline,4Shadower,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,265212,114.01770503253488,peer,4Shadower,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,265212,1.7478558547808691,relative_legacy,4Shadower,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,265212,144.92359208602582,spot_peer,4Shadower,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,265835,-172.6842647182125,baseline,jonahsingerbot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,265835,-45.74155006317238,peer,jonahsingerbot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,265835,-0.4377738159699564,relative_legacy,jonahsingerbot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,265835,-62.16366280304027,spot_peer,jonahsingerbot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,265835,-232.19280948873623,spot_baseline,jonahsingerbot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,266158,163.66219653429337,spot_peer,bean_bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,266158,84.79969065549501,spot_baseline,bean_bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,266158,77.1185481137629,baseline,bean_bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,266158,152.48008420899689,peer,bean_bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,266158,2.21057171233561,relative_legacy,bean_bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,266572,-132.11133427881813,baseline,cobyj-bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,266572,-0.0245151878115539,relative_legacy,cobyj-bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,266572,-20.49086002525671,spot_peer,cobyj-bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,266572,-173.6965594166206,spot_baseline,cobyj-bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35610,"Will the Guatemala City, Guatemala fail to reach reach 80 degrees F on any day after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.086688+00,266572,-15.034037571599011,peer,cobyj-bot,True,yes,2025-03-19 20:00:00+00,2025-03-19 20:00:00+00,1.0,2025-03-19 20:00:00+00,36173 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,185699,33.05971383121215,baseline,MWG,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,185699,2.117099554628636,peer,MWG,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,185699,0.0190452675060573,relative_legacy,MWG,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,185699,95.60566524124027,spot_baseline,MWG,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,185699,6.12245805682411,spot_peer,MWG,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,187708,2.567631051845083,spot_peer,twsummerbot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,187708,68.03465293611708,baseline,twsummerbot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,187708,1.966993342403862,peer,twsummerbot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,187708,0.0047790740843646,relative_legacy,twsummerbot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,187708,90.61209529971,spot_baseline,twsummerbot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,189869,84.79969065549501,spot_baseline,VeritasAI,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,189869,-1.5701087285231263,spot_peer,VeritasAI,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,189869,-0.0479363782946238,relative_legacy,VeritasAI,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,189869,-1.6969578839867816,peer,VeritasAI,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,189869,81.29870601717559,baseline,VeritasAI,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,191026,-0.1337535485134041,relative_legacy,manticAI,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,191026,-7.838507743235313,peer,manticAI,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,191026,69.65471173231502,baseline,manticAI,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,191026,75.1892138404309,spot_baseline,manticAI,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,191026,-8.411623499105268,spot_peer,manticAI,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,191935,85.43946777531006,spot_baseline,pgodzinai,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,191935,64.77413865558663,baseline,pgodzinai,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,191935,-0.8063154321899131,peer,pgodzinai,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,191935,-0.0342434197678019,relative_legacy,pgodzinai,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,191935,-1.114663624255835,spot_peer,pgodzinai,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,191975,61.00319849109463,baseline,jkraybill_bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,191975,90.0979482691263,spot_baseline,jkraybill_bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,191975,2.2016196070772804,spot_peer,jkraybill_bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,191975,0.0006728233539267,relative_legacy,jkraybill_bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,191975,1.5295895449517516,peer,jkraybill_bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,192075,89.53026213333065,spot_baseline,CumulativeBot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,192075,1.7974946965408,spot_peer,CumulativeBot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,192075,1.508192905536887,peer,CumulativeBot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,192075,74.91653363978338,baseline,CumulativeBot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,192075,-0.0040142752104093,relative_legacy,CumulativeBot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,192418,6.12245805682411,spot_peer,InstitutPelFutur,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,192418,92.81333459868372,baseline,InstitutPelFutur,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,192418,95.60566524124027,spot_baseline,InstitutPelFutur,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,192418,5.751119478285967,peer,InstitutPelFutur,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,192418,0.0555724908208757,relative_legacy,InstitutPelFutur,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,192924,4.721338051636219,peer,acm_bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,192924,94.11063109464314,spot_baseline,acm_bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,192924,5.058171820740928,spot_peer,acm_bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,192924,0.041648213354064,relative_legacy,acm_bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,192924,89.04329852476917,baseline,acm_bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,204737,-2.775351259063654,spot_peer,SynapseSeer,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,204737,-0.0587265252548269,relative_legacy,SynapseSeer,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,204737,-2.4930900228856347,peer,SynapseSeer,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,204737,74.25963039203663,baseline,SynapseSeer,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,204737,83.10665106050726,spot_baseline,SynapseSeer,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,218666,89.8401859992193,spot_baseline,GreeneiBot2,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,218666,1.682596115287168,peer,GreeneiBot2,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,218666,74.66441022986997,baseline,GreeneiBot2,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,218666,-0.0017078700034579,relative_legacy,GreeneiBot2,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,218666,2.018123573446214,spot_peer,GreeneiBot2,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,220077,0.0699373204315785,relative_legacy,mmBot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,220077,96.78188123356048,baseline,mmBot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,220077,6.797484185040992,peer,mmBot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,220077,7.175828344265148,spot_peer,mmBot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,220077,97.08536543404836,spot_baseline,mmBot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,222631,3.3121759355007905,peer,Grizeu_Bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,222631,76.8221869426439,baseline,Grizeu_Bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,222631,92.5999418556223,spot_baseline,Grizeu_Bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,222631,3.9827410235592415,spot_peer,Grizeu_Bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,222631,0.0211828994473735,relative_legacy,Grizeu_Bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,224797,76.54592761597613,baseline,cookics_bot_TEST,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,224797,-1.5701087285231263,spot_peer,cookics_bot_TEST,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,224797,-0.0435984346677888,relative_legacy,cookics_bot_TEST,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,224797,84.79969065549501,spot_baseline,cookics_bot_TEST,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,224797,-1.4303397773240818,peer,cookics_bot_TEST,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,227188,64.9107547685617,baseline,ProfessorSP,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,227188,-1.5701087285231263,spot_peer,ProfessorSP,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,227188,-1.162223018671399,peer,ProfessorSP,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,227188,-0.0393262070358692,relative_legacy,ProfessorSP,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,227188,84.79969065549501,spot_baseline,ProfessorSP,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236037,-13.6667448229625,spot_peer,metac-o1,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236037,67.80719051126377,spot_baseline,metac-o1,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236037,63.19472171262214,baseline,metac-o1,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236037,-12.812311354601002,peer,metac-o1,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236037,-0.203501586651507,relative_legacy,metac-o1,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236038,-1.5701087285231263,spot_peer,metac-gpt-4o,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236038,-0.0451790662368815,relative_legacy,metac-gpt-4o,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236038,84.79969065549501,spot_baseline,metac-gpt-4o,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236038,79.07903244797231,baseline,metac-gpt-4o,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236038,-1.4944746733593548,peer,metac-gpt-4o,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236040,0.0275530177870009,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236040,3.706073926369584,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236040,3.9827410235592415,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236040,86.3985958356109,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236041,5.710431628202192,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236041,6.12245805682411,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236041,0.0555930608985893,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236041,95.60566524124027,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236041,89.19381775087486,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236043,86.29563884891611,baseline,metac-grok-2-1212,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236043,92.5999418556223,spot_baseline,metac-grok-2-1212,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236043,0.0275479213702257,relative_legacy,metac-grok-2-1212,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236043,3.703543863266919,peer,metac-grok-2-1212,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236043,3.9827410235592415,spot_peer,metac-grok-2-1212,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236045,-1.5701087285231263,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236045,-0.0444684098561575,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236045,-1.469294372082788,peer,metac-Gemini-Exp-1206,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236045,78.26360707066966,baseline,metac-Gemini-Exp-1206,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236047,-12.848234506220214,peer,metac-Llama-3.1,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236047,-13.6667448229625,spot_peer,metac-Llama-3.1,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236047,63.329474210439685,baseline,metac-Llama-3.1,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,236047,-0.2040164498639533,relative_legacy,metac-Llama-3.1,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,237476,90.79527880396084,baseline,NextWorldLab,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,237476,0.0927856078863555,relative_legacy,NextWorldLab,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,237476,9.147946899372084,spot_peer,NextWorldLab,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,237476,99.85565831303312,spot_baseline,NextWorldLab,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,237476,8.334014132249063,peer,NextWorldLab,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,239758,95.60566524124027,spot_baseline,metac-perplexity,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,239758,0.0555330546184769,relative_legacy,metac-perplexity,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,239758,5.703856648539667,peer,metac-perplexity,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,239758,89.07006343458063,baseline,metac-perplexity,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,239758,6.12245805682411,spot_peer,metac-perplexity,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,239759,-1.4918024388148765,peer,metac-exa,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,239759,-0.0451314852529351,relative_legacy,metac-exa,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,239759,-1.5701087285231263,spot_peer,metac-exa,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,239759,79.00154290015777,baseline,metac-exa,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,240416,86.3124244102323,baseline,metac-o1-preview,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,240416,3.7029475988952,peer,metac-o1-preview,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,240416,3.9827410235592415,spot_peer,metac-o1-preview,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,240416,0.0275389708061097,relative_legacy,metac-o1-preview,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,241715,45.41791328804195,baseline,CatrachoCaster,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,241715,74.84612330040356,spot_baseline,CatrachoCaster,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,241715,-5.210954196957578,peer,CatrachoCaster,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,241715,-0.0918778704386678,relative_legacy,CatrachoCaster,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,241715,-8.655863097453274,spot_peer,CatrachoCaster,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,246118,0.020851865155444,relative_legacy,laylaps,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,246118,74.94560188122085,baseline,laylaps,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,246118,3.9827410235592415,spot_peer,laylaps,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,246118,92.5999418556223,spot_baseline,laylaps,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,246118,3.246505570732304,peer,laylaps,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,247214,6.767570213071059,peer,ajf-bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,247214,0.0697938282261142,relative_legacy,ajf-bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,247214,7.175828344265148,spot_peer,ajf-bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,247214,97.08536543404836,spot_baseline,ajf-bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,247214,92.72051255383118,baseline,ajf-bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,250015,-0.2000575001610401,relative_legacy,metac-deepseek-r1,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,250015,-13.6667448229625,spot_peer,metac-deepseek-r1,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,250015,67.80719051126377,spot_baseline,metac-deepseek-r1,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,250015,62.21931737543769,baseline,metac-deepseek-r1,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,250015,-12.596714083015698,peer,metac-deepseek-r1,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264059,3.9827410235592415,spot_peer,wunderplumb,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264059,69.25112147534871,baseline,wunderplumb,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264059,3.017938682277908,peer,wunderplumb,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264059,0.0195664858984194,relative_legacy,wunderplumb,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264059,92.5999418556223,spot_baseline,wunderplumb,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264225,67.80719051126377,spot_baseline,KevinTestBot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264225,-0.1762951018253946,relative_legacy,KevinTestBot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264225,-13.6667448229625,spot_peer,KevinTestBot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264225,-10.843178392639643,peer,KevinTestBot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264225,53.91891268182858,baseline,KevinTestBot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264332,-0.0152162705176033,relative_legacy,krm-bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264332,68.25122032829911,baseline,krm-bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264332,0.5752263883782329,peer,krm-bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264332,87.97057662822883,spot_baseline,krm-bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264332,0.687184393945686,spot_peer,krm-bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264778,-0.2456121244821786,relative_legacy,andrewsiah,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264778,-20.29502537222657,spot_peer,andrewsiah,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264778,58.496250072115615,spot_baseline,andrewsiah,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264778,-15.827777384505268,peer,andrewsiah,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,264778,45.705152016985714,baseline,andrewsiah,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,265212,7.175828344265148,spot_peer,4Shadower,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,265212,5.958871185647178,peer,4Shadower,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,265212,80.45745572038167,baseline,4Shadower,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,265212,97.08536543404836,spot_baseline,4Shadower,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,265212,0.0583277441567441,relative_legacy,4Shadower,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,265835,75.72064637872494,baseline,jonahsingerbot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,265835,3.272462768220327,peer,jonahsingerbot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,265835,0.020851865155444,relative_legacy,jonahsingerbot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,265835,3.9827410235592415,spot_peer,jonahsingerbot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,265835,92.5999418556223,spot_baseline,jonahsingerbot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,266158,92.5999418556223,spot_baseline,bean_bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,266158,85.37226189744871,baseline,bean_bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,266158,3.6721298654893504,peer,bean_bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,266158,0.0274634715921568,relative_legacy,bean_bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,266158,3.9827410235592415,spot_peer,bean_bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,266572,3.264013695878152,peer,cobyj-bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,266572,0.020851865155444,relative_legacy,cobyj-bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,266572,3.9827410235592415,spot_peer,cobyj-bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,266572,92.5999418556223,spot_baseline,cobyj-bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35611,"Will the temperature reach 70 degrees F in Warsaw, Poland after the launch of this question and before April 1, 2025?",2025-03-15 15:49:28.117447+00,266572,75.4749968803769,baseline,cobyj-bot,True,no,2025-03-19 22:00:00+00,2025-03-19 22:00:00+00,1.0,2025-03-19 22:00:00+00,36174 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,185699,-107.6910276696492,baseline,MWG,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,185699,-132.19280948873623,spot_baseline,MWG,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,185699,-77.70740369208949,spot_peer,MWG,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,185699,-1.692545869984362,relative_legacy,MWG,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,185699,-63.1624559211882,peer,MWG,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,187708,45.20682302238109,spot_baseline,twsummerbot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,187708,35.54814494014361,baseline,twsummerbot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,187708,38.319501994051336,peer,twsummerbot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,187708,-0.2412690734608626,relative_legacy,twsummerbot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,187708,48.6723196127911,spot_peer,twsummerbot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,189869,-36.034600914305926,spot_peer,VeritasAI,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,189869,-73.69655941662063,spot_baseline,VeritasAI,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,189869,-31.7395542279949,peer,VeritasAI,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,189869,-1.3416208453044585,relative_legacy,VeritasAI,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,189869,-70.85250229779231,baseline,VeritasAI,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,191026,-9.06938484403602,spot_peer,manticAI,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,191026,-33.22298057868762,baseline,manticAI,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,191026,-6.3772086522928415,peer,manticAI,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,191026,-0.9861546809180606,relative_legacy,manticAI,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,191026,-35.845397091247655,spot_baseline,manticAI,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,191935,63.3960434447507,baseline,pgodzinai,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,191935,80.90027749390862,spot_baseline,pgodzinai,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,191935,74.10038187004695,spot_peer,pgodzinai,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,191935,0.0388485868482341,relative_legacy,pgodzinai,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,191935,58.11253511671657,peer,pgodzinai,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,192075,0.0859111387661341,relative_legacy,CumulativeBot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,192075,63.94695480613844,peer,CumulativeBot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,192075,85.9969548221026,spot_baseline,CumulativeBot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,192075,77.73126126587123,spot_peer,CumulativeBot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,192075,70.51683633580517,baseline,CumulativeBot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,192418,74.50027844573835,peer,InstitutPelFutur,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,192418,0.1122368954690277,relative_legacy,InstitutPelFutur,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,192418,71.0037139985884,spot_peer,InstitutPelFutur,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,192418,74.53327177955633,baseline,InstitutPelFutur,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,192418,76.55347463629771,spot_baseline,InstitutPelFutur,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,192924,-19.24540697081071,peer,acm_bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,192924,-55.63933485243852,spot_baseline,acm_bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,192924,-23.170611221810866,spot_peer,acm_bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,192924,-1.1706090567689875,relative_legacy,acm_bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,192924,-52.69349191632246,baseline,acm_bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,204737,51.26142614449361,peer,SynapseSeer,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,204737,53.60529002402098,spot_baseline,SynapseSeer,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,204737,54.65539816164831,spot_peer,SynapseSeer,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,204737,-0.1746826824867557,relative_legacy,SynapseSeer,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,204737,48.67205286089722,baseline,SynapseSeer,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,218666,59.64581395589854,spot_baseline,GreeneiBot2,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,218666,58.95867507559206,spot_peer,GreeneiBot2,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,218666,50.62136095864148,baseline,GreeneiBot2,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,218666,50.65122817202352,peer,GreeneiBot2,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,218666,-0.1234237174792392,relative_legacy,GreeneiBot2,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,220077,-2.3242238778040374,relative_legacy,mmBot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,220077,-103.15611464174204,peer,mmBot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,220077,-173.2698530948414,baseline,mmBot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,220077,-173.6965594166206,spot_baseline,mmBot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,220077,-107.2747278051892,spot_peer,mmBot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,222631,84.79969065549501,spot_baseline,Grizeu_Bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,222631,0.0892666173703252,relative_legacy,Grizeu_Bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,222631,76.8783287543609,spot_peer,Grizeu_Bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,222631,71.74312649921849,baseline,Grizeu_Bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,222631,65.62539685582021,peer,Grizeu_Bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,224797,0.1207760042308657,relative_legacy,cookics_bot_TEST,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,224797,77.85477187945692,baseline,cookics_bot_TEST,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,224797,72.52488945871696,peer,cookics_bot_TEST,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,224797,76.8783287543609,spot_peer,cookics_bot_TEST,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,224797,84.79969065549501,spot_baseline,cookics_bot_TEST,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,227188,-2.187520197872372,relative_legacy,ProfessorSP,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,227188,-159.76126380284398,baseline,ProfessorSP,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,227188,-100.98461038944092,peer,ProfessorSP,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,227188,-130.2089261347052,spot_peer,ProfessorSP,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,227188,-205.8893689053569,spot_baseline,ProfessorSP,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236037,69.52418409626239,peer,metac-o1,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236037,71.0037139985884,spot_peer,metac-o1,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236037,76.55347463629771,spot_baseline,metac-o1,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236037,71.98040272807671,baseline,metac-o1,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236037,0.0708461844603775,relative_legacy,metac-o1,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236038,-32.19280948873623,spot_baseline,metac-gpt-4o,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236038,-6.467276801206217,spot_peer,metac-gpt-4o,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236038,-30.35446127876111,baseline,metac-gpt-4o,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236038,-0.9495395034511156,relative_legacy,metac-gpt-4o,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236038,-3.4413821247923297,peer,metac-gpt-4o,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236040,-2.2829713578112005,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236040,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236040,-163.65869194135257,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236040,-98.77477448285212,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236040,-107.2747278051892,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236041,-205.41278628726144,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236041,-312.7935590977979,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236041,-332.1928094887362,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236041,-220.187657473856,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236041,-3.7746634728273385,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236043,-2.832604009024287,relative_legacy,metac-grok-2-1212,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236043,-218.43517863909105,baseline,metac-grok-2-1212,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236043,-148.94753058297275,spot_peer,metac-grok-2-1212,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236043,-232.19280948873623,spot_baseline,metac-grok-2-1212,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236043,-138.01708793120147,peer,metac-grok-2-1212,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236045,-123.11120673930388,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236045,-132.19280948873623,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236045,-77.70740369208949,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236045,-1.879984684073608,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236045,-70.34962562027715,peer,metac-Gemini-Exp-1206,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236047,-123.781208896544,baseline,metac-Llama-3.1,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236047,-132.19280948873623,spot_baseline,metac-Llama-3.1,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236047,-77.70740369208949,spot_peer,metac-Llama-3.1,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236047,-1.886499462364544,relative_legacy,metac-Llama-3.1,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,236047,-70.59954252633617,peer,metac-Llama-3.1,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,237476,85.72230373473123,baseline,NextWorldLab,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,237476,82.43523760713924,spot_peer,NextWorldLab,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,237476,0.2021846523492015,relative_legacy,NextWorldLab,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,237476,78.51477465213472,peer,NextWorldLab,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,239758,91.19467579981608,baseline,metac-perplexity,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,239758,97.08536543404836,spot_baseline,metac-perplexity,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,239758,85.63065905600354,spot_peer,metac-perplexity,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,239758,0.2624735713588357,relative_legacy,metac-perplexity,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,239758,83.18897895782932,peer,metac-perplexity,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,239759,84.79969065549501,spot_baseline,metac-exa,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,239759,79.41505236837936,baseline,metac-exa,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,239759,74.60193041812435,peer,metac-exa,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,239759,0.1454235098640468,relative_legacy,metac-exa,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,239759,76.8783287543609,spot_peer,metac-exa,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,240416,35.205525976577334,spot_peer,metac-o1-preview,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,240416,26.303440583379377,spot_baseline,metac-o1-preview,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,240416,-0.4012643137872625,relative_legacy,metac-o1-preview,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,240416,35.77524704263916,peer,metac-o1-preview,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,240416,24.72437013538932,baseline,metac-o1-preview,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,241715,48.10916764503576,peer,CatrachoCaster,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,241715,-0.1229870600780261,relative_legacy,CatrachoCaster,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,241715,59.50103927762324,spot_peer,CatrachoCaster,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,241715,60.40713236688608,spot_baseline,CatrachoCaster,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,241715,48.73589843663678,baseline,CatrachoCaster,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,246118,71.68405172012783,peer,laylaps,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,246118,97.08536543404836,spot_baseline,laylaps,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,246118,85.63065905600354,spot_peer,laylaps,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,246118,0.1821433658974725,relative_legacy,laylaps,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,246118,80.83783828750157,baseline,laylaps,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,247214,-1.580765788460044,relative_legacy,ajf-bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,247214,-100.0,spot_baseline,ajf-bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,247214,-92.85058551364476,baseline,ajf-bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,247214,-48.8762397552038,peer,ajf-bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,247214,-54.773205362573485,spot_peer,ajf-bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,250015,64.77285008967704,spot_peer,metac-deepseek-r1,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,250015,67.80719051126377,spot_baseline,metac-deepseek-r1,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,250015,-0.0460697459862484,relative_legacy,metac-deepseek-r1,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,250015,60.26891134701084,peer,metac-deepseek-r1,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,250015,61.41150561768899,baseline,metac-deepseek-r1,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264059,0.0618858014563288,relative_legacy,wunderplumb,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264059,63.64005996504212,baseline,wunderplumb,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264059,57.69527476009387,peer,wunderplumb,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264059,76.8783287543609,spot_peer,wunderplumb,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264225,68.10568322682988,peer,KevinTestBot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264225,92.5999418556223,spot_baseline,KevinTestBot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264225,82.43523760713924,spot_peer,KevinTestBot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264225,76.22890214851208,baseline,KevinTestBot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264225,0.1411144492491154,relative_legacy,KevinTestBot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264332,69.70190599843,peer,krm-bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264332,98.5500430304885,spot_baseline,krm-bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264332,86.67409723424984,spot_peer,krm-bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264332,0.1833639525316523,relative_legacy,krm-bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264332,79.15207557541481,baseline,krm-bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264778,0.0079241238314016,relative_legacy,andrewsiah,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264778,76.55347463629771,spot_baseline,andrewsiah,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264778,71.0037139985884,spot_peer,andrewsiah,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264778,62.32631610994928,baseline,andrewsiah,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,264778,57.96785079515023,peer,andrewsiah,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,265212,-73.69655941662063,spot_baseline,4Shadower,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,265212,-62.49489286093042,baseline,4Shadower,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,265212,-1.2541708519049466,relative_legacy,4Shadower,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,265212,-36.034600914305926,spot_peer,4Shadower,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,265212,-30.00486445678393,peer,4Shadower,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,265835,-148.94753058297275,spot_peer,jonahsingerbot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,265835,-232.19280948873623,spot_baseline,jonahsingerbot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,265835,-2.576753391708865,relative_legacy,jonahsingerbot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,265835,-195.18247435499617,baseline,jonahsingerbot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,265835,-124.77563705689316,peer,jonahsingerbot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,266158,-132.19280948873623,spot_baseline,bean_bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,266158,-123.292900298648,baseline,bean_bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,266158,-70.41170440928249,peer,bean_bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,266158,-1.8807601851330635,relative_legacy,bean_bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,266158,-77.70740369208949,spot_peer,bean_bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,266572,-132.19280948873623,spot_baseline,cobyj-bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,266572,-110.89344643524304,baseline,cobyj-bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,266572,-64.7511761990133,peer,cobyj-bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,266572,-1.7329364785816816,relative_legacy,cobyj-bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35612,"Will the highest high in Denver Colorado exceed the lowest low in Honolulu Hawaii before April 1, 2025?",2025-03-15 15:49:28.149214+00,266572,-77.70740369208949,spot_peer,cobyj-bot,True,yes,2025-03-20 00:00:00+00,2025-03-20 00:00:00+00,1.0,2025-03-20 00:00:00+00,36175 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,185699,0.0508188301944552,relative_legacy,MWG,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,185699,86.39181826801882,baseline,MWG,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,185699,17.204102021248982,spot_peer,MWG,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,185699,12.715725532607111,peer,MWG,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,185699,98.5500430304885,spot_baseline,MWG,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,187708,63.41285575250407,spot_baseline,twsummerbot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,187708,-7.847004338851041,spot_peer,twsummerbot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,187708,-0.1796958612866667,relative_legacy,twsummerbot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,187708,-5.58096749848132,peer,twsummerbot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,187708,39.04133386537675,baseline,twsummerbot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,189869,59.82210150240383,baseline,VeritasAI,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,189869,-7.175838858858383,peer,VeritasAI,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,189869,-0.2200726294694006,relative_legacy,VeritasAI,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,189869,-4.714057283281011,spot_peer,VeritasAI,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,191026,12.961969143461062,spot_peer,manticAI,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,191026,-0.0013414777636384,relative_legacy,manticAI,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,191026,8.788423630260125,peer,manticAI,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,191026,86.06127620293273,baseline,manticAI,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,191935,15.528184816964352,spot_peer,pgodzinai,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,191935,3.90324040526357,baseline,pgodzinai,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,191935,0.6312858419757787,peer,pgodzinai,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,191935,0.0014604487415381,relative_legacy,pgodzinai,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,191935,96.19936774202552,spot_baseline,pgodzinai,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,191975,15.774296710150606,spot_peer,jkraybill_bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,191975,0.0291366317113253,relative_legacy,jkraybill_bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,191975,10.637078019673035,peer,jkraybill_bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,191975,71.31176856501854,baseline,jkraybill_bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,191975,96.54456924961237,spot_baseline,jkraybill_bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,192075,6.185475833010994,peer,CumulativeBot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,192075,33.0277567920978,baseline,CumulativeBot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,192075,0.0199409851532037,relative_legacy,CumulativeBot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,192075,17.204102021248982,spot_peer,CumulativeBot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,192075,98.5500430304885,spot_baseline,CumulativeBot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,192418,95.91134099430307,baseline,InstitutPelFutur,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,192418,0.0531159742943064,relative_legacy,InstitutPelFutur,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,192418,17.10015340921112,spot_peer,InstitutPelFutur,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,192418,98.40424260970237,spot_baseline,InstitutPelFutur,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,192418,12.897008217545498,peer,InstitutPelFutur,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,192924,77.92509518336847,baseline,acm_bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,192924,10.171896552542783,peer,acm_bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,192924,0.0172250089294755,relative_legacy,acm_bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,192924,14.573341151456422,spot_peer,acm_bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,192924,94.86008474933556,spot_baseline,acm_bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,218666,0.0214665498904618,relative_legacy,GreeneiBot2,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,218666,97.96595517158244,spot_baseline,GreeneiBot2,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,218666,39.19094009704754,baseline,GreeneiBot2,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,218666,6.861071655066126,peer,GreeneiBot2,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,218666,16.78767577286038,spot_peer,GreeneiBot2,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,220077,97.08536543404836,spot_baseline,mmBot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,220077,0.0402613173029945,relative_legacy,mmBot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,220077,16.15985809923569,spot_peer,mmBot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,220077,96.84829560491146,baseline,mmBot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,220077,11.916426532233396,peer,mmBot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,222631,30.20459669261178,baseline,Grizeu_Bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,222631,5.637857401075273,peer,Grizeu_Bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,222631,0.0182364614707949,relative_legacy,Grizeu_Bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,222631,98.5500430304885,spot_baseline,Grizeu_Bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,222631,17.204102021248982,spot_peer,Grizeu_Bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,224797,12.961969143461062,spot_peer,cookics_bot_TEST,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,224797,92.5999418556223,spot_baseline,cookics_bot_TEST,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,224797,0.0,relative_legacy,cookics_bot_TEST,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,224797,6.717197574591964,peer,cookics_bot_TEST,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,224797,51.0313436467686,baseline,cookics_bot_TEST,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,227188,97.08536543404836,spot_baseline,ProfessorSP,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,227188,3.686106694827008,baseline,ProfessorSP,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,227188,16.15985809923569,spot_peer,ProfessorSP,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,227188,0.0017030115514992,relative_legacy,ProfessorSP,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,227188,0.6135524222495915,peer,ProfessorSP,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236037,8.774276116891858,peer,metac-o1,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236037,92.5999418556223,spot_baseline,metac-o1,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236037,12.961969143461062,spot_peer,metac-o1,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236037,0.0,relative_legacy,metac-o1,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236037,70.31279246876313,baseline,metac-o1,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236038,-0.0594023390543002,relative_legacy,metac-gpt-4o,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236038,84.79969065549501,spot_baseline,metac-gpt-4o,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236038,7.400769241375557,spot_peer,metac-gpt-4o,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236038,64.58967058510675,baseline,metac-gpt-4o,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236038,4.49260860971489,peer,metac-gpt-4o,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236040,70.46552186853262,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236040,8.776085169428402,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236040,3.811862440778643e-06,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236040,12.961969143461062,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236041,7.400769241375557,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236041,4.501350496337567,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236041,64.43662698794283,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236041,-0.0592685062467176,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236041,84.79969065549501,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236043,74.96270776332526,baseline,metac-grok-2-1212,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236043,0.0452590285464073,relative_legacy,metac-grok-2-1212,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236043,17.204102021248982,spot_peer,metac-grok-2-1212,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236043,98.5500430304885,spot_baseline,metac-grok-2-1212,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236043,12.03960691492684,peer,metac-grok-2-1212,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236045,0.0336603278849037,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236045,97.08536543404836,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236045,16.15985809923569,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236045,72.86876371240193,baseline,metac-Gemini-Exp-1206,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236045,11.100493016579671,peer,metac-Gemini-Exp-1206,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236047,84.79969065549501,spot_baseline,metac-Llama-3.1,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236047,-0.0593037767467787,relative_legacy,metac-Llama-3.1,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236047,4.4991690576861485,peer,metac-Llama-3.1,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236047,64.47568211012346,baseline,metac-Llama-3.1,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,236047,7.400769241375557,spot_peer,metac-Llama-3.1,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,237476,12.961969143461062,spot_peer,NextWorldLab,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,237476,59.32269240988136,baseline,NextWorldLab,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,237476,7.568752848531767,peer,NextWorldLab,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,237476,0.0,relative_legacy,NextWorldLab,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,237476,92.5999418556223,spot_baseline,NextWorldLab,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,239758,0.0337946306308982,relative_legacy,metac-perplexity,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,239758,73.1593489568699,baseline,metac-perplexity,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,239758,97.08536543404836,spot_baseline,metac-perplexity,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,239758,16.15985809923569,spot_peer,metac-perplexity,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,239758,11.14834729794055,peer,metac-perplexity,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,239759,-173.6965594166206,spot_baseline,metac-exa,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,239759,-131.61831973468526,baseline,metac-exa,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,239759,-136.71728433387378,peer,metac-exa,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,239759,-2.017888779920175,relative_legacy,metac-exa,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,239759,-176.8944904506529,spot_peer,metac-exa,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,240416,70.20802732186273,baseline,metac-o1-preview,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,240416,92.5999418556223,spot_baseline,metac-o1-preview,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,240416,12.961969143461062,spot_peer,metac-o1-preview,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,240416,0.0,relative_legacy,metac-o1-preview,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,240416,8.772983038988095,peer,metac-o1-preview,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,241715,-0.0729446921048624,relative_legacy,CatrachoCaster,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,241715,-1.6474642209339905,peer,CatrachoCaster,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,241715,64.15460290875237,spot_baseline,CatrachoCaster,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,241715,16.451685687519653,baseline,CatrachoCaster,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,241715,-7.318174675950833,spot_peer,CatrachoCaster,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,246118,97.08536543404836,spot_baseline,laylaps,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,246118,2.9718982291079885,peer,laylaps,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,246118,17.087641845643088,baseline,laylaps,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,246118,0.0078946308016127,relative_legacy,laylaps,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,246118,16.15985809923569,spot_peer,laylaps,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,247214,-0.0028010470865216,relative_legacy,ajf-bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,247214,12.961969143461062,spot_peer,ajf-bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,247214,92.5999418556223,spot_baseline,ajf-bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,247214,89.07450409702298,baseline,ajf-bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,247214,8.672380223425156,peer,ajf-bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,250015,69.67832709587077,baseline,metac-deepseek-r1,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,250015,92.5999418556223,spot_baseline,metac-deepseek-r1,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,250015,8.69776537270265,peer,metac-deepseek-r1,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,250015,1.5345259190203593e-06,relative_legacy,metac-deepseek-r1,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,250015,12.961969143461062,spot_peer,metac-deepseek-r1,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,264059,8.051128163127677,peer,wunderplumb,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,264059,12.961969143461062,spot_peer,wunderplumb,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,264059,92.5999418556223,spot_baseline,wunderplumb,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,264059,63.973468812828585,baseline,wunderplumb,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,264059,0.0,relative_legacy,wunderplumb,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,264225,-0.0343912929538319,relative_legacy,KevinTestBot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,264225,67.80719051126377,spot_baseline,KevinTestBot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,264225,-4.714057283281011,spot_peer,KevinTestBot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,264225,-0.5618741428214276,peer,KevinTestBot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,264225,9.4058820695582,baseline,KevinTestBot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,264778,92.5999418556223,spot_baseline,andrewsiah,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,264778,12.961969143461062,spot_peer,andrewsiah,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,264778,0.0,relative_legacy,andrewsiah,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,264778,3.5304054819045487,peer,andrewsiah,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,264778,23.5340558897858,baseline,andrewsiah,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,265212,-76.46811612590542,baseline,4Shadower,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,265212,-232.1928094887363,spot_baseline,4Shadower,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,265212,-218.59947299892127,spot_peer,4Shadower,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,265212,-1.0696407817856024,relative_legacy,4Shadower,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,265212,-71.81356880222758,peer,4Shadower,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,265835,92.5999418556223,spot_baseline,jonahsingerbot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,265835,0.0,relative_legacy,jonahsingerbot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,265835,3.910124903926352,peer,jonahsingerbot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,265835,25.891526015186454,baseline,jonahsingerbot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,265835,12.961969143461062,spot_peer,jonahsingerbot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,266158,12.961969143461062,spot_peer,bean_bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,266158,0.0,relative_legacy,bean_bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,266158,8.475038817508258,peer,bean_bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,266158,67.85620892879527,baseline,bean_bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,266158,92.5999418556223,spot_baseline,bean_bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,266572,3.741584885636346,peer,cobyj-bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,266572,0.0,relative_legacy,cobyj-bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,266572,92.5999418556223,spot_baseline,cobyj-bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,266572,12.961969143461062,spot_peer,cobyj-bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35613,"Will Fivethirtyeight update its polling tracker again before April 1, 2025?",2025-03-15 15:49:28.337394+00,266572,24.86447387603665,baseline,cobyj-bot,True,no,2025-03-20 02:00:00+00,2025-03-20 02:00:00+00,1.0,2025-03-20 02:00:00+00,36176 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,185699,99.30944852941523,spot_peer,MWG,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,185699,54.59683691052925,spot_baseline,MWG,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,185699,45.91506662686416,baseline,MWG,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,185699,84.17569788762776,peer,MWG,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,185699,0.0946597767311111,relative_legacy,MWG,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,187708,-120.98902857064289,peer,twsummerbot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,187708,-305.8893689053567,spot_baseline,twsummerbot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,187708,-157.31379182997048,spot_peer,twsummerbot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,187708,-2.702600521909269,relative_legacy,twsummerbot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,187708,-237.02088706147885,baseline,twsummerbot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,189869,-130.7591911936738,baseline,VeritasAI,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,189869,-46.14236953191533,peer,VeritasAI,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,189869,-1.6292770964747176,relative_legacy,VeritasAI,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,189869,-63.20825720505735,spot_peer,VeritasAI,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,189869,-173.6965594166206,spot_baseline,VeritasAI,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,191026,81.5367862920607,spot_peer,manticAI,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,191026,27.42836548977967,baseline,manticAI,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,191026,80.79034966569738,peer,manticAI,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,191026,-0.0119259478477467,relative_legacy,manticAI,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,191026,29.631056070809237,spot_baseline,manticAI,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,191935,111.99839203315734,spot_peer,pgodzinai,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,191935,0.0671464195971612,relative_legacy,pgodzinai,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,191935,72.42136867573585,spot_baseline,pgodzinai,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,191935,34.92132273571755,baseline,pgodzinai,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,191935,53.59147618623499,peer,pgodzinai,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,191975,-408.97864943794576,peer,jkraybill_bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,191975,-635.9944230049412,baseline,jkraybill_bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,191975,-577.8140441662943,spot_peer,jkraybill_bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,191975,-6.664382422587439,relative_legacy,jkraybill_bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,191975,-896.5784284662086,spot_baseline,jkraybill_bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,192075,37.85116232537298,spot_baseline,CumulativeBot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,192075,87.38852283318646,spot_peer,CumulativeBot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,192075,-0.1044641762577345,relative_legacy,CumulativeBot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,192075,46.12051146524356,peer,CumulativeBot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,192075,20.12017529600017,baseline,CumulativeBot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,192418,-63.20825720505735,spot_peer,InstitutPelFutur,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,192418,-1.894053988923099,relative_legacy,InstitutPelFutur,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,192418,-56.22273095870037,peer,InstitutPelFutur,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,192418,-168.9379356909053,baseline,InstitutPelFutur,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,192924,78.49147201122952,peer,acm_bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,192924,0.1302083836895063,relative_legacy,acm_bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,192924,103.44568681925772,spot_peer,acm_bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,192924,60.40713236688608,spot_baseline,acm_bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,192924,44.7106303928684,baseline,acm_bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,204737,-55.381440368349296,baseline,SynapseSeer,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,204737,11.724419747728454,peer,SynapseSeer,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,204737,-0.91897974916012,relative_legacy,SynapseSeer,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,204737,13.64073261029113,spot_peer,SynapseSeer,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,204737,-65.74452545226796,spot_baseline,SynapseSeer,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,218666,60.557115633411584,peer,GreeneiBot2,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,218666,43.08204965197712,spot_baseline,GreeneiBot2,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,218666,28.14858052566852,baseline,GreeneiBot2,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,218666,91.11229154902354,spot_peer,GreeneiBot2,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,218666,-0.0597600075572048,relative_legacy,GreeneiBot2,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,220077,-1.919606842294605,relative_legacy,mmBot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,220077,-63.20825720505735,spot_peer,mmBot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,220077,-173.2524941479388,baseline,mmBot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,220077,-173.6965594166206,spot_baseline,mmBot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,220077,-58.794936268323085,peer,mmBot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,222631,-1.1727432047191164,relative_legacy,Grizeu_Bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,222631,-33.662530845144765,spot_peer,Grizeu_Bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,222631,-83.8753281651362,baseline,Grizeu_Bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,222631,-132.19280948873626,spot_baseline,Grizeu_Bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,222631,-20.70070624354248,peer,Grizeu_Bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,224797,67.80719051126377,spot_baseline,cookics_bot_TEST,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,224797,57.87646704632903,baseline,cookics_bot_TEST,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,224797,93.40983489250026,peer,cookics_bot_TEST,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,224797,0.2064292903686987,relative_legacy,cookics_bot_TEST,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,224797,108.71364678338456,spot_peer,cookics_bot_TEST,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,227188,-130.8103282365849,baseline,ProfessorSP,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,227188,-332.1928094887361,spot_baseline,ProfessorSP,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,227188,-176.03870847367395,spot_peer,ProfessorSP,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,227188,-1.5384488363325206,relative_legacy,ProfessorSP,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,227188,-69.32022783162193,peer,ProfessorSP,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236037,0.0444732126922707,relative_legacy,metac-o1,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236037,48.54268271702416,spot_baseline,metac-o1,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236037,42.21102672633568,baseline,metac-o1,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236037,83.35591711256251,peer,metac-o1,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236037,94.99961186519032,spot_peer,metac-o1,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236038,-332.1928094887361,spot_baseline,metac-gpt-4o,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236038,-176.03870847367395,spot_peer,metac-gpt-4o,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236038,-3.2776079282574084,relative_legacy,metac-gpt-4o,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236038,-289.99505047354523,baseline,metac-gpt-4o,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236038,-154.4532142356444,peer,metac-gpt-4o,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236040,32.99038860918929,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236040,87.38852283318646,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236040,-0.0485332958797473,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236040,76.94682662420477,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236041,0.2886239833210713,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236041,66.69483680175418,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236041,114.93995929426164,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236041,101.04538329372993,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236043,-332.1928094887361,spot_baseline,metac-grok-2-1212,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236043,-176.03870847367395,spot_peer,metac-grok-2-1212,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236043,-3.271580939867331,relative_legacy,metac-grok-2-1212,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236043,-154.15977607878216,peer,metac-grok-2-1212,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236043,-289.3373036826496,baseline,metac-grok-2-1212,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236045,73.03866862824965,baseline,metac-Gemini-Exp-1206,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236045,84.79969065549501,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236045,120.81028287782392,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236045,0.3548035407968242,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236045,104.79088796798432,peer,metac-Gemini-Exp-1206,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236047,59.156126371359534,baseline,metac-Llama-3.1,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236047,95.78661996850008,peer,metac-Llama-3.1,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236047,0.212960018440995,relative_legacy,metac-Llama-3.1,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,236047,108.71364678338456,spot_peer,metac-Llama-3.1,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,237476,58.071541458678645,baseline,NextWorldLab,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,237476,67.80719051126377,spot_baseline,NextWorldLab,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,237476,108.71364678338456,spot_peer,NextWorldLab,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,237476,0.2069835107262788,relative_legacy,NextWorldLab,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,237476,93.72744194464786,peer,NextWorldLab,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,239758,-3.2651107252508766,relative_legacy,metac-perplexity,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,239758,-176.03870847367395,spot_peer,metac-perplexity,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,239758,-332.1928094887361,spot_baseline,metac-perplexity,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,239758,-288.7604227306969,baseline,metac-perplexity,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,239758,-153.86678399249527,peer,metac-perplexity,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,239759,0.4676263721999713,relative_legacy,metac-exa,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,239759,113.89774110735092,peer,metac-exa,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,239759,84.60222307818151,baseline,metac-exa,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,239759,97.08536543404836,spot_baseline,metac-exa,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,239759,129.5562199506122,spot_peer,metac-exa,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,240416,79.16792042347191,spot_peer,metac-o1-preview,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,240416,22.84492632215949,baseline,metac-o1-preview,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,240416,69.47003922921003,peer,metac-o1-preview,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,240416,-0.1491511074445776,relative_legacy,metac-o1-preview,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,240416,26.303440583379377,spot_baseline,metac-o1-preview,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,241715,0.0668616883511357,relative_legacy,CatrachoCaster,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,241715,39.35963371146671,baseline,CatrachoCaster,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,241715,63.16476075263388,peer,CatrachoCaster,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,241715,67.80719051126377,spot_baseline,CatrachoCaster,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,241715,108.71364678338456,spot_peer,CatrachoCaster,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,246118,-1.716672467927285,relative_legacy,laylaps,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,246118,-104.85061965940942,spot_peer,laylaps,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,246118,-138.6085092410539,baseline,laylaps,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,246118,-232.1928094887363,spot_baseline,laylaps,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,246118,-62.42673087762217,peer,laylaps,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,247214,-5.624862649416803,relative_legacy,ajf-bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,247214,-538.9489937358469,baseline,ajf-bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,247214,-327.674665813814,peer,ajf-bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,247214,-564.3856189774723,spot_baseline,ajf-bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,247214,-341.33233191285177,spot_peer,ajf-bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,250015,40.99524451973853,baseline,metac-deepseek-r1,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,250015,48.54268271702416,spot_baseline,metac-deepseek-r1,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,250015,94.99961186519032,spot_peer,metac-deepseek-r1,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,250015,0.0437380450485293,relative_legacy,metac-deepseek-r1,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,250015,80.82751517619732,peer,metac-deepseek-r1,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264059,108.71364678338456,spot_peer,wunderplumb,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264059,67.80719051126377,spot_baseline,wunderplumb,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264059,66.99144632384696,baseline,wunderplumb,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264059,119.49912512430892,peer,wunderplumb,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264059,0.4663769122769852,relative_legacy,wunderplumb,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264225,120.81028287782392,spot_peer,KevinTestBot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264225,84.79969065549501,spot_baseline,KevinTestBot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264225,61.674415107613605,peer,KevinTestBot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264225,0.1368239508300966,relative_legacy,KevinTestBot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264225,43.58210845719746,baseline,KevinTestBot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264332,29.100111219758457,baseline,krm-bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264332,102.08536623412049,spot_peer,krm-bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264332,0.0,relative_legacy,krm-bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264332,50.34512418574535,peer,krm-bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264332,58.496250072115615,spot_baseline,krm-bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264778,60.85070113977349,peer,andrewsiah,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264778,102.08536623412049,spot_peer,andrewsiah,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264778,58.496250072115615,spot_baseline,andrewsiah,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264778,0.0148963210039481,relative_legacy,andrewsiah,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,264778,34.74480913336326,baseline,andrewsiah,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,265212,0.0374882916389613,relative_legacy,4Shadower,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,265212,102.08536623412049,spot_peer,4Shadower,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,265212,58.496250072115615,spot_baseline,4Shadower,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,265212,37.238371111977735,baseline,4Shadower,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,265212,65.7725202636449,peer,4Shadower,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,265835,-2.408604935767291,relative_legacy,jonahsingerbot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,265835,-176.03870847367395,spot_peer,jonahsingerbot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,265835,-207.7327573863571,baseline,jonahsingerbot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,265835,-109.61475194592134,peer,jonahsingerbot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,265835,-332.1928094887361,spot_baseline,jonahsingerbot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,266158,-1.9859910297090864,relative_legacy,bean_bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,266158,-104.85061965940942,spot_peer,bean_bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,266158,-167.76510983946602,baseline,bean_bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,266158,-232.1928094887363,spot_baseline,bean_bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,266158,-74.09942227140587,peer,bean_bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,266572,67.42809757059524,peer,cobyj-bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,266572,67.80719051126377,spot_baseline,cobyj-bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,266572,108.71364678338456,spot_peer,cobyj-bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,266572,0.0797860833537608,relative_legacy,cobyj-bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35614,"Will the CDC's H5N1 tracker show greater than 4 cases for 2025 on April 1, 2025?",2025-03-15 15:49:28.369094+00,266572,41.74436703896333,baseline,cobyj-bot,True,no,2025-03-20 04:00:00+00,2025-03-20 04:00:00+00,1.0,2025-03-20 04:00:00+00,36177 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,185699,50.87676706124433,spot_peer,MWG,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,185699,-10.067759074972418,baseline,MWG,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,185699,42.566276125578376,peer,MWG,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,185699,0.5129091869092808,relative_legacy,MWG,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,185699,-12.029423371771196,spot_baseline,MWG,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,187708,-97.86633130789713,peer,twsummerbot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,187708,-257.34668618833257,spot_baseline,twsummerbot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,187708,-203.08666808567065,baseline,twsummerbot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,187708,-123.7599038693324,spot_peer,twsummerbot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,187708,-1.4549530909998558,relative_legacy,twsummerbot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,189869,-12.375081563270223,peer,VeritasAI,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,189869,-0.2412589709822532,relative_legacy,VeritasAI,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,189869,-100.0,spot_baseline,VeritasAI,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,189869,-11.747805159279933,spot_peer,VeritasAI,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,189869,-95.75651101271312,baseline,VeritasAI,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,191026,85.32716881745688,peer,manticAI,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,191026,46.04804700400107,spot_baseline,manticAI,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,191026,42.48029429085105,baseline,manticAI,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,191026,92.22100825342734,spot_peer,manticAI,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,191026,1.1074313425173292,relative_legacy,manticAI,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,191935,-59.78700827413024,baseline,pgodzinai,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,191935,-80.59129478836981,spot_baseline,pgodzinai,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,191935,2.068881144474193,spot_peer,pgodzinai,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,191935,-0.0611846268393422,relative_legacy,pgodzinai,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,191935,1.4165816632269137,peer,pgodzinai,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,191975,-88.8968687611256,spot_baseline,jkraybill_bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,191975,-3.843698231785656,spot_peer,jkraybill_bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,191975,-0.1256213374953497,relative_legacy,jkraybill_bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,191975,-3.1136645564328664,peer,jkraybill_bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,191975,-70.9805595066956,baseline,jkraybill_bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,192075,-42.14637684382769,spot_baseline,CumulativeBot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,192075,21.735690080599163,peer,CumulativeBot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,192075,0.2239578771502565,relative_legacy,CumulativeBot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,192075,29.43708347540598,spot_peer,CumulativeBot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,192075,-31.25958922496382,baseline,CumulativeBot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,192418,13.391025441301592,baseline,InstitutPelFutur,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,192418,67.96770844115017,peer,InstitutPelFutur,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,192418,69.22889671596944,spot_peer,InstitutPelFutur,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,192418,0.8554646880271306,relative_legacy,InstitutPelFutur,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,192418,13.750352374993504,spot_baseline,InstitutPelFutur,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,192924,40.303732381263785,spot_peer,acm_bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,192924,37.45784635767095,peer,acm_bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,192924,0.4392207623286085,relative_legacy,acm_bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,192924,-25.01758050295479,baseline,acm_bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,192924,-26.881675842779984,spot_baseline,acm_bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,204737,-73.35891751528928,baseline,SynapseSeer,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,204737,-83.13579644411614,spot_baseline,SynapseSeer,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,204737,0.2574990459010423,spot_peer,SynapseSeer,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,204737,-0.0864919337408212,relative_legacy,SynapseSeer,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,204737,0.0378915078030941,peer,SynapseSeer,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,218666,-5.37660284863348,spot_peer,GreeneiBot2,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,218666,-0.1436974040363308,relative_legacy,GreeneiBot2,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,218666,-4.403281912328639,peer,GreeneiBot2,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,218666,-91.0501849160898,spot_baseline,GreeneiBot2,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,218666,-73.71539539001587,baseline,GreeneiBot2,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,220077,-0.252313368177977,relative_legacy,mmBot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,220077,-99.7385457654794,baseline,mmBot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,220077,-100.0,spot_baseline,mmBot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,220077,-13.660479286968972,peer,mmBot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,220077,-11.747805159279933,spot_peer,mmBot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,222631,-64.2109773298411,spot_peer,Grizeu_Bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,222631,-0.8162228149884129,relative_legacy,Grizeu_Bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,222631,-52.360555272837146,peer,Grizeu_Bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,222631,-141.21922569326037,baseline,Grizeu_Bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,222631,-173.6965594166206,spot_baseline,Grizeu_Bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,224797,22.808802926141933,spot_peer,cookics_bot_TEST,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,224797,0.1949824115370772,relative_legacy,cookics_bot_TEST,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,224797,20.2127422190726,peer,cookics_bot_TEST,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,224797,-45.85564120513175,baseline,cookics_bot_TEST,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,224797,-51.45731728297583,spot_baseline,cookics_bot_TEST,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,227188,-32.19280948873623,spot_baseline,ProfessorSP,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,227188,0.294628057953738,relative_legacy,ProfessorSP,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,227188,26.724578982092854,peer,ProfessorSP,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,227188,-23.632433002569652,baseline,ProfessorSP,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,227188,36.52283784433616,spot_peer,ProfessorSP,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236037,-132.19280948873626,spot_baseline,metac-o1,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236037,-34.665250969928515,spot_peer,metac-o1,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236037,-122.4078813103138,baseline,metac-o1,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236037,-32.50437698872694,peer,metac-o1,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236037,-0.5373555466904696,relative_legacy,metac-o1,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236038,-64.2109773298411,spot_peer,metac-gpt-4o,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236038,-0.924064053484264,relative_legacy,metac-gpt-4o,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236038,-60.24007968469575,peer,metac-gpt-4o,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236038,-161.29057461641065,baseline,metac-gpt-4o,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236038,-173.6965594166206,spot_baseline,metac-gpt-4o,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236040,1.0391946022062333,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236040,86.38580270840271,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236040,80.3816424636746,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236040,35.1143988794023,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236041,-64.2109773298411,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236041,-0.9235262964287168,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236041,-161.16036038123204,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236041,-60.1780529776054,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236041,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236043,45.00404100663141,baseline,metac-grok-2-1212,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236043,1.1376932810878917,relative_legacy,metac-grok-2-1212,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236043,93.99689174040658,spot_peer,metac-grok-2-1212,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236043,87.43699777753318,peer,metac-grok-2-1212,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236045,-159.02070363111935,baseline,metac-Gemini-Exp-1206,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236045,-173.6965594166206,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236045,-64.2109773298411,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236045,-0.9142721310518568,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236045,-59.277219522239264,peer,metac-Gemini-Exp-1206,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236047,-32.53746764559743,peer,metac-Llama-3.1,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236047,-122.49212994375812,baseline,metac-Llama-3.1,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236047,-0.5375777878861084,relative_legacy,metac-Llama-3.1,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236047,-34.665250969928515,spot_peer,metac-Llama-3.1,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,236047,-132.19280948873626,spot_baseline,metac-Llama-3.1,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,237476,-66.2658594688545,baseline,NextWorldLab,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,237476,-73.69655941662059,spot_baseline,NextWorldLab,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,237476,6.977111484423543,spot_peer,NextWorldLab,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,237476,-0.0032002302719338,relative_legacy,NextWorldLab,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,237476,6.100976622345923,peer,NextWorldLab,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,239758,6.272881126594763,peer,metac-perplexity,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,239758,-68.17261304052185,baseline,metac-perplexity,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,239758,-73.69655941662059,spot_baseline,metac-perplexity,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,239758,6.977111484423543,spot_peer,metac-perplexity,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,239758,0.0036529169583608,relative_legacy,metac-perplexity,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,239759,-11.13818030264037,peer,metac-exa,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,239759,-100.0,spot_baseline,metac-exa,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,239759,-0.2399315942663226,relative_legacy,metac-exa,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,239759,-92.41581008212547,baseline,metac-exa,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,239759,-11.747805159279933,spot_peer,metac-exa,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,240416,-214.7761440358604,baseline,metac-o1-preview,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,240416,-98.68514266436232,peer,metac-o1-preview,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,240416,-1.4623684439103926,relative_legacy,metac-o1-preview,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,240416,-105.85333978419315,spot_peer,metac-o1-preview,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,240416,-232.1928094887363,spot_baseline,metac-o1-preview,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,241715,-42.38489038780772,baseline,CatrachoCaster,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,241715,19.831704544564666,spot_peer,CatrachoCaster,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,241715,0.127520460883207,relative_legacy,CatrachoCaster,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,241715,15.007415935552505,peer,CatrachoCaster,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,241715,-55.63933485243855,spot_baseline,CatrachoCaster,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,246118,-27.48642341389343,peer,laylaps,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,246118,-132.19280948873626,spot_baseline,laylaps,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,246118,-104.49545559150825,baseline,laylaps,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,246118,-34.665250969928515,spot_peer,laylaps,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,246118,-0.4678660533079831,relative_legacy,laylaps,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,247214,76.55347463629771,spot_baseline,ajf-bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,247214,113.93723916947788,spot_peer,ajf-bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,247214,0.8614602924798943,relative_legacy,ajf-bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,247214,65.2710859873301,peer,ajf-bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,247214,43.89202243196184,baseline,ajf-bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,250015,-73.69655941662059,spot_baseline,metac-deepseek-r1,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,250015,6.977111484423543,spot_peer,metac-deepseek-r1,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,250015,0.0011190718319837,relative_legacy,metac-deepseek-r1,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,250015,6.22901990387565,peer,metac-deepseek-r1,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,250015,-67.5233110276466,baseline,metac-deepseek-r1,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264059,-0.5401103937625885,relative_legacy,wunderplumb,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264059,-93.8153171017178,baseline,wunderplumb,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264059,-34.68101624950112,peer,wunderplumb,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264059,-173.6965594166206,spot_baseline,wunderplumb,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264059,-64.2109773298411,spot_peer,wunderplumb,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264225,76.55347463629771,spot_baseline,KevinTestBot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264225,59.67603370330362,baseline,KevinTestBot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264225,88.84694751331241,peer,KevinTestBot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264225,1.1639130946566962,relative_legacy,KevinTestBot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264225,113.93723916947788,spot_peer,KevinTestBot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264332,-73.69655941662059,spot_baseline,krm-bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264332,-44.8123335925331,baseline,krm-bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264332,4.233367645211404,peer,krm-bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264332,0.0,relative_legacy,krm-bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264332,6.977111484423543,spot_peer,krm-bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264778,-51.45731728297583,spot_baseline,andrewsiah,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264778,22.808802926141933,spot_peer,andrewsiah,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264778,0.1650619549080336,relative_legacy,andrewsiah,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264778,17.64028994574433,peer,andrewsiah,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,264778,-39.98029715517796,baseline,andrewsiah,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,265212,8.81363783331677,baseline,4Shadower,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,265212,44.40632034170054,peer,4Shadower,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,265212,13.750352374993504,spot_baseline,4Shadower,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,265212,69.22889671596944,spot_peer,4Shadower,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,265212,0.5613508018386368,relative_legacy,4Shadower,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,265835,-0.632577886706741,relative_legacy,jonahsingerbot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,265835,-40.71079336978225,peer,jonahsingerbot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,265835,-110.19190002025644,baseline,jonahsingerbot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,265835,-64.2109773298411,spot_peer,jonahsingerbot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,265835,-173.6965594166206,spot_baseline,jonahsingerbot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,266158,-0.6729745182424323,relative_legacy,bean_bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,266158,-117.03884580306764,baseline,bean_bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,266158,-43.26897553638232,peer,bean_bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,266158,-64.2109773298411,spot_peer,bean_bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,266158,-173.6965594166206,spot_baseline,bean_bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,266572,-0.6337461566853702,relative_legacy,cobyj-bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,266572,-173.6965594166206,spot_baseline,cobyj-bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,266572,-40.7863072023642,peer,cobyj-bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,266572,-110.39482449601408,baseline,cobyj-bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35615,Will the closing price of WTI crude oil through the end of March 2025 remain above $60 and below $70?,2025-03-15 15:49:28.39963+00,266572,-64.2109773298411,spot_peer,cobyj-bot,True,no,2025-03-20 06:00:00+00,2025-03-20 06:00:00+00,1.0,2025-03-20 06:00:00+00,36178 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,185699,2.856915219677092,spot_baseline,MWG,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,185699,9.221526890263664,spot_peer,MWG,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,185699,0.1377504151067468,relative_legacy,MWG,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,185699,6.174007944616777,peer,MWG,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,185699,2.3814261388881413,baseline,MWG,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,187708,43.2259908895098,spot_peer,twsummerbot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,187708,50.58909297299573,spot_baseline,twsummerbot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,187708,36.924233790325765,baseline,twsummerbot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,187708,31.55038558546125,peer,twsummerbot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,187708,0.4999067378702732,relative_legacy,twsummerbot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,189869,13.430569065839649,peer,VeritasAI,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,189869,13.086426776245974,baseline,VeritasAI,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,189869,0.2081141430993941,relative_legacy,VeritasAI,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,189869,16.982025342489703,spot_peer,VeritasAI,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,189869,13.750352374993504,spot_baseline,VeritasAI,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,191026,-2.7329190098748826,spot_peer,manticAI,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,191026,-13.92357973711724,spot_baseline,manticAI,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,191026,-12.727486907477507,baseline,manticAI,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,191026,-5.540980299902391,peer,manticAI,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,191026,-0.0408250976475809,relative_legacy,manticAI,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,191935,50.8150071445086,peer,pgodzinai,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,191935,64.22264264942706,baseline,pgodzinai,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,191935,72.06696726023611,spot_peer,pgodzinai,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,191935,0.7676657533659319,relative_legacy,pgodzinai,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,191935,91.07326619029126,spot_baseline,pgodzinai,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,191975,-13.781728535919989,baseline,jkraybill_bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,191975,-18.114943910456645,spot_baseline,jkraybill_bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,191975,-5.7188521654209055,spot_peer,jkraybill_bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,191975,-0.0008849893325248,relative_legacy,jkraybill_bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,191975,-4.545850851327429,peer,jkraybill_bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,192075,26.303440583379377,spot_baseline,CumulativeBot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,192075,20.85572496528389,baseline,CumulativeBot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,192075,19.835561253196943,peer,CumulativeBot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,192075,0.3378897205944612,relative_legacy,CumulativeBot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,192075,25.924861310868305,spot_peer,CumulativeBot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,192418,-169.36866723738947,baseline,InstitutPelFutur,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,192418,-173.6965594166206,spot_baseline,InstitutPelFutur,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,192418,-116.55539247089824,spot_peer,InstitutPelFutur,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,192418,-1.6164367970369606,relative_legacy,InstitutPelFutur,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,192418,-119.62488558891746,peer,InstitutPelFutur,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,192924,0.0826917014120856,relative_legacy,acm_bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,192924,3.5915000034163604,peer,acm_bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,192924,0.0,baseline,acm_bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,192924,0.0,spot_baseline,acm_bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,192924,7.18625686260075,spot_peer,acm_bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,204737,46.48223210708112,baseline,SynapseSeer,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,204737,53.60529002402098,spot_baseline,SynapseSeer,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,204737,45.37473349593928,spot_peer,SynapseSeer,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,204737,0.5660576378113851,relative_legacy,SynapseSeer,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,204737,37.26024843928972,peer,SynapseSeer,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,218666,0.5831118165753044,relative_legacy,GreeneiBot2,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,218666,37.30249961666091,peer,GreeneiBot2,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,218666,45.30645373203895,baseline,GreeneiBot2,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,218666,57.33745264459446,spot_baseline,GreeneiBot2,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,218666,48.03353088260993,spot_peer,GreeneiBot2,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,220077,0.8237102551560855,relative_legacy,mmBot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,220077,76.55347463629771,spot_baseline,mmBot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,220077,61.72304933287936,spot_peer,mmBot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,220077,60.70543790819429,peer,mmBot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,220077,76.31089158207371,baseline,mmBot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,222631,-32.19280948873623,spot_baseline,Grizeu_Bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,222631,-25.05877326674238,baseline,Grizeu_Bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,222631,-12.72091680572108,peer,Grizeu_Bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,222631,-0.1166652560007474,relative_legacy,Grizeu_Bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,222631,-15.747941466915252,spot_peer,Grizeu_Bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,227188,-22.292337046893504,baseline,ProfessorSP,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,227188,-10.904870514580448,peer,ProfessorSP,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,227188,-0.0974840435972736,relative_legacy,ProfessorSP,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,227188,-15.747941466915252,spot_peer,ProfessorSP,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,227188,-32.19280948873623,spot_baseline,ProfessorSP,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236037,-15.747941466915252,spot_peer,metac-o1,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236037,-17.436589077069808,peer,metac-o1,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236037,-29.38146567943873,baseline,metac-o1,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236037,-0.2069016903357202,relative_legacy,metac-o1,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236037,-32.19280948873623,spot_baseline,metac-o1,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236038,12.546834211202908,peer,metac-gpt-4o,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236038,13.750352374993504,spot_baseline,metac-gpt-4o,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236038,16.982025342489703,spot_peer,metac-gpt-4o,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236038,0.210759982637553,relative_legacy,metac-gpt-4o,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236038,12.644396331267082,baseline,metac-gpt-4o,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236040,28.38569590996958,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236040,34.15147293287065,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236040,34.77719243611531,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236040,0.4322880587654235,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236041,0.4322702529480727,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236041,28.38623690507672,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236041,34.77863820492552,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236041,34.15147293287065,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236043,35.42810066825162,peer,metac-grok-2-1212,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236043,44.61820996125582,baseline,metac-grok-2-1212,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236043,0.5305511593072297,relative_legacy,metac-grok-2-1212,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236043,41.76812562644761,spot_peer,metac-grok-2-1212,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236045,19.43059892319441,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236045,21.412480535284736,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236045,17.542469046257693,peer,metac-Gemini-Exp-1206,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236045,0.2831241517838663,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236045,22.440535166423267,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236047,24.18187371332548,baseline,metac-Llama-3.1,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236047,20.802402806851664,peer,metac-Llama-3.1,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236047,0.3261793677481505,relative_legacy,metac-Llama-3.1,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236047,25.924861310868305,spot_peer,metac-Llama-3.1,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,236047,26.303440583379377,spot_baseline,metac-Llama-3.1,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,237476,51.81576577741301,baseline,NextWorldLab,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,237476,48.859059640384295,spot_peer,NextWorldLab,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,237476,58.496250072115615,spot_baseline,NextWorldLab,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,237476,0.6123238445974232,relative_legacy,NextWorldLab,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,237476,40.8803279146671,peer,NextWorldLab,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,239758,0.6217250741906889,relative_legacy,metac-perplexity,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,239758,41.921814059100505,peer,metac-perplexity,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,239758,53.68132765737076,baseline,metac-perplexity,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,239758,58.496250072115615,spot_baseline,metac-perplexity,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,239758,48.859059640384295,spot_peer,metac-perplexity,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,239759,0.5301764354026725,relative_legacy,metac-exa,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,239759,35.345287562874134,peer,metac-exa,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,239759,44.45655970991454,baseline,metac-exa,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,239759,41.76812562644761,spot_peer,metac-exa,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,239759,48.54268271702416,spot_baseline,metac-exa,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,240416,48.04324025732171,peer,metac-o1-preview,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,240416,62.23828183682938,baseline,metac-o1-preview,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,240416,0.7072198845731748,relative_legacy,metac-o1-preview,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,240416,55.49218542396801,spot_peer,metac-o1-preview,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,240416,67.80719051126377,spot_baseline,metac-o1-preview,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,241715,7.905865663931147,baseline,CatrachoCaster,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,241715,11.103131238874395,spot_baseline,CatrachoCaster,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,241715,10.754855725602091,peer,CatrachoCaster,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,241715,0.2057413417089094,relative_legacy,CatrachoCaster,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,241715,15.096141646036171,spot_peer,CatrachoCaster,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,246118,-73.69655941662063,spot_baseline,laylaps,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,246118,-45.31526558001496,spot_peer,laylaps,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,246118,-34.464286706122934,peer,laylaps,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,246118,-55.78615642610512,baseline,laylaps,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,246118,-0.4216216860775837,relative_legacy,laylaps,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,247214,0.4280245072120464,relative_legacy,ajf-bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,247214,33.59655878543311,spot_peer,ajf-bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,247214,37.07222751481672,spot_baseline,ajf-bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,247214,34.956739123131385,baseline,ajf-bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,247214,28.88865973790209,peer,ajf-bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,250015,34.15147293287065,spot_peer,metac-deepseek-r1,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,250015,34.081151673344635,baseline,metac-deepseek-r1,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,250015,28.075990487648028,peer,metac-deepseek-r1,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,250015,0.4311322149448968,relative_legacy,metac-deepseek-r1,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264059,-53.06884636454796,baseline,wunderplumb,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264059,-73.69655941662063,spot_baseline,wunderplumb,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264059,-45.31526558001496,spot_peer,wunderplumb,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264059,-0.4014110102303739,relative_legacy,wunderplumb,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264059,-32.6108629182499,peer,wunderplumb,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264225,-2.3358191196215223,relative_legacy,KevinTestBot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264225,-246.96051957807296,baseline,KevinTestBot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264225,-170.65256059756106,peer,KevinTestBot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264225,-332.1928094887362,spot_baseline,KevinTestBot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264225,-229.46832213956503,spot_peer,KevinTestBot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264332,-173.6965594166206,spot_baseline,krm-bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264332,-125.17989961451566,baseline,krm-bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264332,-83.98134012243926,peer,krm-bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264332,-1.1224160883436238,relative_legacy,krm-bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264332,-116.55539247089824,spot_peer,krm-bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264778,5.292572349418791,peer,andrewsiah,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264778,0.1322564160360482,relative_legacy,andrewsiah,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264778,0.0,baseline,andrewsiah,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264778,7.18625686260075,spot_peer,andrewsiah,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,264778,0.0,spot_baseline,andrewsiah,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,265212,-0.4447686198580555,relative_legacy,4Shadower,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,265212,-57.73655115118777,baseline,4Shadower,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,265212,-36.07417208008439,peer,4Shadower,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,265212,-45.31526558001496,spot_peer,4Shadower,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,265212,-73.69655941662063,spot_baseline,4Shadower,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,265835,-45.31526558001496,spot_peer,jonahsingerbot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,265835,-73.69655941662063,spot_baseline,jonahsingerbot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,265835,-35.17693314352907,peer,jonahsingerbot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,265835,-56.6889414489314,baseline,jonahsingerbot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,265835,-0.4305534419644168,relative_legacy,jonahsingerbot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,266158,-45.31526558001496,spot_peer,bean_bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,266158,-73.69655941662063,spot_baseline,bean_bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,266158,-66.94332328959112,baseline,bean_bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,266158,-44.244661136357735,peer,bean_bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,266158,-0.5808139892399579,relative_legacy,bean_bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,266572,-34.98079476146677,peer,cobyj-bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,266572,-56.44840246906298,baseline,cobyj-bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,266572,-0.427699252960004,relative_legacy,cobyj-bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,266572,-45.31526558001496,spot_peer,cobyj-bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35616,"Will UK Prime Minister Keir Starmer have a higher approval rating than Japanese Prime Minister Shiguru Ishiba on April 1, 2025?",2025-03-15 15:49:28.429976+00,266572,-73.69655941662063,spot_baseline,cobyj-bot,True,yes,2025-03-20 08:00:00+00,2025-03-20 08:00:00+00,1.0,2025-03-20 08:00:00+00,36179 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,185699,13.45884425553956,spot_peer,MWG,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,185699,72.00631318111166,baseline,MWG,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,185699,11.293071092864505,peer,MWG,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,185699,0.105349114499579,relative_legacy,MWG,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,185699,86.39384504239716,spot_baseline,MWG,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,187708,71.72102990195957,spot_baseline,twsummerbot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,187708,2.387902053187349,peer,twsummerbot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,187708,3.013547581811985,spot_peer,twsummerbot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,187708,-0.0150690183187367,relative_legacy,twsummerbot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,187708,56.448184488882696,baseline,twsummerbot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,189869,-0.0540882247972101,relative_legacy,VeritasAI,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,189869,0.8700636276766163,peer,VeritasAI,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,189869,64.77832859768034,baseline,VeritasAI,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,189869,0.2273601203157685,spot_peer,VeritasAI,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,191026,-4.232972856005223,spot_peer,manticAI,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,191026,61.541629726287006,spot_baseline,manticAI,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,191026,56.96879563957353,baseline,manticAI,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,191026,-3.691777416501485,peer,manticAI,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,191026,-0.1120882247182721,relative_legacy,manticAI,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,191935,0.0803941977404561,relative_legacy,pgodzinai,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,191935,11.866522395089063,spot_peer,pgodzinai,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,191935,61.452604742132905,baseline,pgodzinai,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,191935,8.66524595954468,peer,pgodzinai,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,191935,84.1570637395517,spot_baseline,pgodzinai,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,191975,-0.1392026391406262,relative_legacy,jkraybill_bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,191975,-6.85041322669761,peer,jkraybill_bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,191975,40.79834296068537,baseline,jkraybill_bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,191975,-9.176838133653524,spot_peer,jkraybill_bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,191975,54.59683691052925,spot_baseline,jkraybill_bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,192075,61.92218410889091,baseline,CumulativeBot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,192075,5.25065160840826,peer,CumulativeBot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,192075,76.55347463629771,spot_baseline,CumulativeBot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,192075,0.0224882611991222,relative_legacy,CumulativeBot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,192075,6.453672631192862,spot_peer,CumulativeBot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,192418,-21.097763829882304,spot_peer,InstitutPelFutur,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,192418,-0.3402675256465296,relative_legacy,InstitutPelFutur,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,192418,-19.872145710719508,peer,InstitutPelFutur,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,192418,36.84305254779745,baseline,InstitutPelFutur,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,192418,37.85116232537298,spot_baseline,InstitutPelFutur,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,192924,70.42959498747358,baseline,acm_bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,192924,6.146796583370292,peer,acm_bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,192924,6.453672631192862,spot_peer,acm_bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,192924,76.55347463629771,spot_baseline,acm_bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,192924,0.026021529548259,relative_legacy,acm_bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,204737,9.430771012770125,spot_peer,SynapseSeer,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,204737,0.0614333839303449,relative_legacy,SynapseSeer,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,204737,80.73549220576041,spot_baseline,SynapseSeer,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,204737,8.43089307614592,peer,SynapseSeer,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,204737,70.72937941417268,baseline,SynapseSeer,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,218666,0.0758236214655279,relative_legacy,GreeneiBot2,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,218666,9.01288043334901,peer,GreeneiBot2,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,218666,66.87790754771314,baseline,GreeneiBot2,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,218666,83.18772411916731,spot_baseline,GreeneiBot2,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,218666,11.176468045217964,spot_peer,GreeneiBot2,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,220077,37.85116232537298,spot_baseline,mmBot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,220077,-0.3402675256465296,relative_legacy,mmBot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,220077,37.73646103290244,baseline,mmBot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,220077,-19.872145710719508,peer,mmBot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,220077,-21.097763829882304,spot_peer,mmBot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,222631,10.870189697807264,baseline,Grizeu_Bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,222631,-0.4735183316684691,relative_legacy,Grizeu_Bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,222631,-38.25466982231559,spot_peer,Grizeu_Bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,222631,13.750352374993504,spot_baseline,Grizeu_Bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,222631,-30.237315953947903,peer,Grizeu_Bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,224797,-13.48667479787845,spot_peer,cookics_bot_TEST,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,224797,42.92149965865102,baseline,cookics_bot_TEST,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,224797,-11.78585429276398,peer,cookics_bot_TEST,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,224797,-0.222163701240006,relative_legacy,cookics_bot_TEST,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,224797,48.54268271702416,spot_baseline,cookics_bot_TEST,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,227188,67.80719051126377,spot_baseline,ProfessorSP,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,227188,0.2273601203157685,spot_peer,ProfessorSP,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,227188,-0.0386471085997114,relative_legacy,ProfessorSP,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,227188,0.1651315914737535,peer,ProfessorSP,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,227188,49.24419778763033,baseline,ProfessorSP,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236037,6.453672631192862,spot_peer,metac-o1,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236037,76.55347463629771,spot_baseline,metac-o1,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236037,70.13025431512986,baseline,metac-o1,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236037,6.104464878799134,peer,metac-o1,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236037,0.0257465817980586,relative_legacy,metac-o1,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236038,0.2273601203157685,spot_peer,metac-gpt-4o,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236038,62.32721019405888,baseline,metac-gpt-4o,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236038,0.3883843155671359,peer,metac-gpt-4o,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236038,-0.0544459698885961,relative_legacy,metac-gpt-4o,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236040,53.76057273776659,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236040,-6.400920428948298,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236040,58.496250072115615,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236040,-5.728121159367087,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236040,-0.1400127216654531,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236041,6.453672631192862,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236041,70.37477516370582,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236041,6.135524542156347,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236041,0.0259513452467628,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236043,67.80719051126377,spot_baseline,metac-grok-2-1212,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236043,0.3893618155604424,peer,metac-grok-2-1212,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236043,-0.0544446743815586,relative_legacy,metac-grok-2-1212,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236043,0.2273601203157685,spot_peer,metac-grok-2-1212,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236043,62.33864416609546,baseline,metac-grok-2-1212,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236045,66.14849949274131,baseline,metac-Gemini-Exp-1206,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236045,3.80924271275863,peer,metac-Gemini-Exp-1206,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236045,-0.0053528143684393,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236045,4.0082546572433815,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236045,73.11832415721999,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236047,-13.48667479787845,spot_peer,metac-Llama-3.1,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236047,-0.2302186788521107,relative_legacy,metac-Llama-3.1,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236047,-12.198734123349585,peer,metac-Llama-3.1,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236047,44.35310033106305,baseline,metac-Llama-3.1,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,237476,12.236985724204024,baseline,NextWorldLab,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,237476,-38.25466982231559,spot_peer,NextWorldLab,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,237476,-33.95725444576218,peer,NextWorldLab,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,237476,13.750352374993504,spot_baseline,NextWorldLab,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,237476,-0.5332047821222888,relative_legacy,NextWorldLab,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,239758,11.512734306588865,peer,metac-perplexity,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,239758,77.74770673091325,baseline,metac-perplexity,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,239758,0.101345599362464,relative_legacy,metac-perplexity,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,239758,12.323996214755152,spot_peer,metac-perplexity,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,239759,84.85128911800274,baseline,metac-exa,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,239759,92.5999418556223,spot_baseline,metac-exa,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,239759,17.87684596683753,spot_peer,metac-exa,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,239759,0.1727706585169246,relative_legacy,metac-exa,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,239759,16.612449680181204,peer,metac-exa,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,240416,77.82444468641776,baseline,metac-o1-preview,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,240416,0.1014984231420773,relative_legacy,metac-o1-preview,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,240416,11.526989461299175,peer,metac-o1-preview,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,240416,12.323996214755152,spot_peer,metac-o1-preview,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,241715,-10.593449595893423,spot_peer,CatrachoCaster,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,241715,52.60688116675877,spot_baseline,CatrachoCaster,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,241715,39.37173375503321,baseline,CatrachoCaster,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,241715,-7.920955279406936,peer,CatrachoCaster,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,241715,-0.1543479106238707,relative_legacy,CatrachoCaster,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,246118,65.41173509697244,baseline,laylaps,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,246118,84.79969065549501,spot_baseline,laylaps,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,246118,9.511229738306838,peer,laylaps,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,246118,0.0867938477653219,relative_legacy,laylaps,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,246118,12.323996214755152,spot_peer,laylaps,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,247214,65.25296139600202,baseline,ajf-bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,247214,1.0154058133701258,peer,ajf-bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,247214,-0.0519913802918902,relative_legacy,ajf-bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,247214,0.2273601203157685,spot_peer,ajf-bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,247214,67.80719051126377,spot_baseline,ajf-bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,250015,43.2518393613799,baseline,metac-deepseek-r1,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,250015,-11.867839992829738,peer,metac-deepseek-r1,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,250015,-0.2238320706812821,relative_legacy,metac-deepseek-r1,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,250015,-13.48667479787845,spot_peer,metac-deepseek-r1,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,250015,48.54268271702416,spot_baseline,metac-deepseek-r1,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264059,-0.0384546045756244,relative_legacy,wunderplumb,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264059,49.09495547113516,baseline,wunderplumb,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264059,67.80719051126377,spot_baseline,wunderplumb,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264059,0.2273601203157685,spot_peer,wunderplumb,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264059,0.1646172758176786,peer,wunderplumb,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264225,9.365115894489444,peer,KevinTestBot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264225,84.79969065549501,spot_baseline,KevinTestBot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264225,0.0866029957076444,relative_legacy,KevinTestBot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264225,12.323996214755152,spot_peer,KevinTestBot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264225,64.40773190662793,baseline,KevinTestBot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264332,4.776892685100078,peer,krm-bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264332,56.62109148734704,baseline,krm-bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264332,76.55347463629771,spot_baseline,krm-bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264332,6.453672631192862,spot_peer,krm-bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264332,0.0248717810803492,relative_legacy,krm-bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264778,-10.099408258552286,peer,andrewsiah,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264778,36.37630892503477,baseline,andrewsiah,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264778,48.54268271702416,spot_baseline,andrewsiah,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264778,-13.48667479787845,spot_peer,andrewsiah,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,264778,-0.1850952392571714,relative_legacy,andrewsiah,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,265212,12.323996214755152,spot_peer,4Shadower,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,265212,68.00382641545718,baseline,4Shadower,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,265212,84.79969065549501,spot_baseline,4Shadower,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,265212,9.910003520948935,peer,4Shadower,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,265212,0.0886175404947322,relative_legacy,4Shadower,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,265835,0.0874675219554877,relative_legacy,jonahsingerbot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,265835,9.652445916364671,peer,jonahsingerbot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,265835,66.3311228506568,baseline,jonahsingerbot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,265835,84.79969065549501,spot_baseline,jonahsingerbot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,265835,12.323996214755152,spot_peer,jonahsingerbot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,266158,0.1006632475312361,relative_legacy,bean_bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,266158,11.405884114619171,peer,bean_bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,266158,12.323996214755152,spot_peer,bean_bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,266158,84.79969065549501,spot_baseline,bean_bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,266158,77.045386202296,baseline,bean_bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,266572,0.0870080096643659,relative_legacy,cobyj-bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,266572,9.578582872669331,peer,cobyj-bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,266572,65.85858490053748,baseline,cobyj-bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,266572,12.323996214755152,spot_peer,cobyj-bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35617,"Will the UK recall its ambassador to Russia before April 1, 2025?",2025-03-15 15:49:28.460756+00,266572,84.79969065549501,spot_baseline,cobyj-bot,True,no,2025-03-20 10:00:00+00,2025-03-20 10:00:00+00,1.0,2025-03-20 10:00:00+00,36180 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,185699,15.265963666716836,peer,MWG,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,185699,87.97057662822883,spot_baseline,MWG,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,185699,18.81228947141635,spot_peer,MWG,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,185699,72.27818809153673,baseline,MWG,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,185699,0.0934457036124079,relative_legacy,MWG,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,187708,20.477555350786844,baseline,twsummerbot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,187708,-19.68469536517337,peer,twsummerbot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,187708,-0.3912027593636408,relative_legacy,twsummerbot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,187708,-25.087366105404477,spot_peer,twsummerbot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,187708,26.303440583379377,spot_baseline,twsummerbot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,189869,64.85112443862765,baseline,VeritasAI,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,189869,-0.0763667694881167,relative_legacy,VeritasAI,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,189869,3.861495220199617,peer,VeritasAI,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,189869,4.4583602545081655,spot_peer,VeritasAI,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,191026,86.39384504239716,spot_baseline,manticAI,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,191026,79.73517310684193,baseline,manticAI,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,191026,16.13023630104234,peer,manticAI,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,191026,0.0959626148015559,relative_legacy,manticAI,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,191026,17.68984438973194,spot_peer,manticAI,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,191935,10.73372111808002,peer,pgodzinai,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,191935,62.268718808964366,baseline,pgodzinai,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,191935,81.55754288625727,spot_baseline,pgodzinai,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,191935,14.246973315492871,spot_peer,pgodzinai,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,191935,0.0382057756683721,relative_legacy,pgodzinai,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,191975,17.100766214240142,baseline,jkraybill_bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,191975,-0.4287796868934727,relative_legacy,jkraybill_bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,191975,21.826453571377165,spot_baseline,jkraybill_bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,191975,-22.31136685830485,peer,jkraybill_bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,191975,-28.27444759571171,spot_peer,jkraybill_bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,192075,82.10298589546805,spot_baseline,CumulativeBot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,192075,14.635263769321046,spot_peer,CumulativeBot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,192075,12.11835845341865,peer,CumulativeBot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,192075,69.07424934496872,baseline,CumulativeBot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,192075,0.0463294850859826,relative_legacy,CumulativeBot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,192418,25.3009334217358,spot_peer,InstitutPelFutur,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,192418,94.2769293468889,baseline,InstitutPelFutur,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,192418,24.21915370574907,peer,InstitutPelFutur,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,192418,0.205244310705719,relative_legacy,InstitutPelFutur,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,192418,97.08536543404836,spot_baseline,InstitutPelFutur,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,192924,13.661771146962518,spot_peer,acm_bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,192924,0.0455041561254255,relative_legacy,acm_bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,192924,80.73549220576041,spot_baseline,acm_bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,192924,76.10674160836895,baseline,acm_bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,192924,12.632056609023508,peer,acm_bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,204737,-0.2918221793902865,relative_legacy,SynapseSeer,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,204737,43.50951516200971,spot_baseline,SynapseSeer,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,204737,-12.838690452920504,spot_peer,SynapseSeer,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,204737,-11.76997381316151,peer,SynapseSeer,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,204737,39.01536350424099,baseline,SynapseSeer,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,218666,16.505497010535787,peer,GreeneiBot2,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,218666,74.42143579934175,baseline,GreeneiBot2,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,218666,20.143228650916868,spot_peer,GreeneiBot2,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,218666,89.8401859992193,spot_baseline,GreeneiBot2,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,218666,0.109704667324677,relative_legacy,GreeneiBot2,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,220077,0.0058647637015399,relative_legacy,mmBot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,220077,10.684672765385244,spot_peer,mmBot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,220077,76.3108014512813,baseline,mmBot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,220077,9.691860004365743,peer,mmBot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,222631,-66.93415846606469,peer,Grizeu_Bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,222631,-1.0616219694674196,relative_legacy,Grizeu_Bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,222631,-42.66025737422876,baseline,Grizeu_Bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,222631,-80.44376347795071,spot_peer,Grizeu_Bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,224797,69.14849572499429,baseline,cookics_bot_TEST,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,224797,76.55347463629771,spot_baseline,cookics_bot_TEST,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,224797,9.437899978783232,peer,cookics_bot_TEST,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,224797,0.0044859007407548,relative_legacy,cookics_bot_TEST,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,224797,10.684672765385244,spot_peer,cookics_bot_TEST,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,227188,58.496250072115615,spot_baseline,ProfessorSP,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,227188,-0.1380414544927967,relative_legacy,ProfessorSP,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,227188,-1.8053043122694128,peer,ProfessorSP,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,227188,44.71843064047846,baseline,ProfessorSP,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,227188,-2.1699202947559075,spot_peer,ProfessorSP,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236037,0.0816518512875442,relative_legacy,metac-o1,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236037,15.18153760176263,peer,metac-o1,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236037,78.75598603281627,baseline,metac-o1,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236037,16.55499634894754,spot_peer,metac-o1,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236038,3.946042214650085,peer,metac-gpt-4o,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236038,4.4583602545081655,spot_peer,metac-gpt-4o,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236038,63.32109402132057,baseline,metac-gpt-4o,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236038,-0.0756047047021042,relative_legacy,metac-gpt-4o,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236040,-0.3549953110530797,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236040,35.302309501646874,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236040,-16.86676369568993,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236040,-16.00946020240069,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236041,26.303440583379377,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236041,-25.087366105404477,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236041,-23.724118382962,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236041,-0.4628970963202554,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236041,24.54115009254114,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236043,-9.255674663686063,spot_peer,metac-grok-2-1212,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236043,-0.2553266270381084,relative_legacy,metac-grok-2-1212,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236043,-8.892902830202766,peer,metac-grok-2-1212,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236043,45.2930404705018,baseline,metac-grok-2-1212,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236043,48.54268271702416,spot_baseline,metac-grok-2-1212,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236045,54.59683691052925,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236045,-4.945837999461137,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236045,-0.1972179484867258,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236045,-4.820308852164645,peer,metac-Gemini-Exp-1206,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236045,50.33672841332521,baseline,metac-Gemini-Exp-1206,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236047,-66.72972855975648,spot_peer,metac-Llama-3.1,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236047,-1.0082502034435896,relative_legacy,metac-Llama-3.1,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236047,-62.68336893922106,peer,metac-Llama-3.1,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236047,-30.01945349881469,baseline,metac-Llama-3.1,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,237476,67.80719051126377,spot_baseline,NextWorldLab,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,237476,3.8333571109711055,peer,NextWorldLab,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,237476,-0.0745167040793185,relative_legacy,NextWorldLab,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,237476,4.4583602545081655,spot_peer,NextWorldLab,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,237476,61.818441908740496,baseline,NextWorldLab,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,239758,20.389173408399177,peer,metac-perplexity,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,239758,0.1543237692353948,relative_legacy,metac-perplexity,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,239758,22.107846101029903,spot_peer,metac-perplexity,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,239758,92.5999418556223,spot_baseline,metac-perplexity,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,239758,86.12056118302594,baseline,metac-perplexity,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,239759,16.55499634894754,spot_peer,metac-exa,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,239759,0.0817342596888325,relative_legacy,metac-exa,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,239759,78.84620341811703,baseline,metac-exa,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,239759,15.2018170516346,peer,metac-exa,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,240416,0.0054912563946344,relative_legacy,metac-o1-preview,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,240416,71.3075988744414,baseline,metac-o1-preview,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,240416,10.684672765385244,spot_peer,metac-o1-preview,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,240416,76.55347463629771,spot_baseline,metac-o1-preview,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,240416,9.753878384554238,peer,metac-o1-preview,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,241715,-30.355326069531277,spot_peer,CatrachoCaster,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,241715,18.903382439001717,spot_baseline,CatrachoCaster,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,241715,10.912418623215478,baseline,CatrachoCaster,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,241715,-17.523320314966057,peer,CatrachoCaster,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,241715,-0.3327986098540177,relative_legacy,CatrachoCaster,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,246118,92.5999418556223,spot_baseline,laylaps,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,246118,0.1295361093311121,relative_legacy,laylaps,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,246118,17.712199051043495,peer,laylaps,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,246118,74.95918618948785,baseline,laylaps,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,246118,22.107846101029903,spot_peer,laylaps,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,247214,-12.686875639315586,spot_peer,ajf-bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,247214,-0.3071465934842562,relative_legacy,ajf-bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,247214,-12.740329223635609,peer,ajf-bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,247214,41.87464386452579,baseline,ajf-bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,247214,43.72277389129098,spot_baseline,ajf-bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,250015,-0.3523199069122395,relative_legacy,metac-deepseek-r1,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,250015,-16.86676369568993,spot_peer,metac-deepseek-r1,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,250015,34.96287478288077,baseline,metac-deepseek-r1,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,250015,-15.87327999047347,peer,metac-deepseek-r1,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264059,10.684672765385244,spot_peer,wunderplumb,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264059,56.51575763921319,baseline,wunderplumb,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264059,0.0,relative_legacy,wunderplumb,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264059,7.757072866817978,peer,wunderplumb,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264059,76.55347463629771,spot_baseline,wunderplumb,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264225,0.0,relative_legacy,KevinTestBot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264225,61.35133138743172,baseline,KevinTestBot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264225,8.385080891632377,peer,KevinTestBot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264225,76.55347463629771,spot_baseline,KevinTestBot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264225,10.684672765385244,spot_peer,KevinTestBot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264332,0.0,relative_legacy,krm-bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264332,8.15349825266224,peer,krm-bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264332,59.46987937332592,baseline,krm-bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264332,10.684672765385244,spot_peer,krm-bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264332,76.55347463629771,spot_baseline,krm-bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264778,58.496250072115615,spot_baseline,andrewsiah,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264778,-1.9268242776290072,peer,andrewsiah,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264778,-0.145003432544354,relative_legacy,andrewsiah,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264778,-2.1699202947559075,spot_peer,andrewsiah,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,264778,46.9737584603932,baseline,andrewsiah,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,265212,63.84146187579294,baseline,4Shadower,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,265212,76.55347463629771,spot_baseline,4Shadower,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,265212,-0.0003592339999092,relative_legacy,4Shadower,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,265212,8.718884629700367,peer,4Shadower,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,265212,10.684672765385244,spot_peer,4Shadower,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,265835,16.55499634894754,spot_peer,jonahsingerbot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,265835,84.79969065549501,spot_baseline,jonahsingerbot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,265835,13.388074282753202,peer,jonahsingerbot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,265835,69.56208216478812,baseline,jonahsingerbot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,265835,0.0672853472293294,relative_legacy,jonahsingerbot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,266158,16.55499634894754,spot_peer,bean_bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,266158,0.0813100133371606,relative_legacy,bean_bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,266158,84.79969065549501,spot_baseline,bean_bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,266158,78.40188767091743,baseline,bean_bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,266158,15.107257589016848,peer,bean_bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,266572,10.684672765385244,spot_peer,cobyj-bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,266572,62.838545893214864,baseline,cobyj-bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,266572,76.55347463629771,spot_baseline,cobyj-bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,266572,-0.0003592339999092,relative_legacy,cobyj-bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35618,"Will the IMF and Lebanon announce an agreement before April 1, 2025?",2025-03-15 15:49:28.630497+00,266572,8.575296425115841,peer,cobyj-bot,True,no,2025-03-20 12:00:00+00,2025-03-20 12:00:00+00,1.0,2025-03-20 12:00:00+00,36181 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,185699,78.24237189585239,baseline,MWG,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,185699,0.0538972028393746,relative_legacy,MWG,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,185699,9.48163470828224,peer,MWG,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,185699,10.822423041641349,spot_peer,MWG,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,185699,91.07326619029126,spot_baseline,MWG,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,187708,5.125101082982456,peer,twsummerbot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,187708,56.06974297668717,baseline,twsummerbot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,187708,87.02660703959828,spot_baseline,twsummerbot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,187708,7.941683731435449,spot_peer,twsummerbot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,187708,0.0143476384446919,relative_legacy,twsummerbot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,189869,63.6385046044858,baseline,VeritasAI,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,189869,-5.403228447187608,peer,VeritasAI,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,189869,-5.740251576338771,spot_peer,VeritasAI,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,189869,-0.1545298593615258,relative_legacy,VeritasAI,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,191026,85.8780629476244,baseline,manticAI,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,191026,11.228085105852568,peer,manticAI,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,191026,0.0772886722790505,relative_legacy,manticAI,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,191026,11.90923427018297,spot_peer,manticAI,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,191935,0.0598824360234245,relative_legacy,pgodzinai,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,191935,13.62455936607864,spot_peer,pgodzinai,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,191935,95.0095094173686,spot_baseline,pgodzinai,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,191935,55.72479788327276,baseline,pgodzinai,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,191935,7.989931673801502,peer,pgodzinai,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,191975,62.48027652529473,spot_baseline,jkraybill_bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,191975,43.392888616578624,baseline,jkraybill_bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,191975,-6.617333345019073,peer,jkraybill_bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,191975,-9.532379835729898,spot_peer,jkraybill_bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,191975,-0.1550095334400415,relative_legacy,jkraybill_bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,192075,63.42153465128794,baseline,CumulativeBot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,192075,88.49234755533075,spot_baseline,CumulativeBot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,192075,6.445568929540027,peer,CumulativeBot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,192075,0.0264648835744602,relative_legacy,CumulativeBot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,192075,8.985116391561753,spot_peer,CumulativeBot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,192418,6.1923836641983385,peer,InstitutPelFutur,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,192418,0.0054374551709519,relative_legacy,InstitutPelFutur,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,192418,6.356384518100607,spot_peer,InstitutPelFutur,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,192418,84.79969065549501,spot_baseline,InstitutPelFutur,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,192418,82.48078321286617,baseline,InstitutPelFutur,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,192924,6.025500401761764,peer,acm_bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,192924,78.42472286098774,baseline,acm_bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,192924,84.79969065549501,spot_baseline,acm_bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,192924,6.356384518100607,spot_peer,acm_bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,192924,0.0049484040080133,relative_legacy,acm_bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,204737,6.356384518100607,spot_peer,SynapseSeer,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,204737,70.02942597959282,baseline,SynapseSeer,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,204737,5.364311145684545,peer,SynapseSeer,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,204737,0.0,relative_legacy,SynapseSeer,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,204737,84.79969065549501,spot_baseline,SynapseSeer,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,218666,69.95930280953641,baseline,GreeneiBot2,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,218666,14.048951303447833,spot_peer,GreeneiBot2,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,218666,0.079072557707617,relative_legacy,GreeneiBot2,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,218666,10.298293035643804,peer,GreeneiBot2,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,218666,95.60566524124027,spot_baseline,GreeneiBot2,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,220077,76.36743481719087,baseline,mmBot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,220077,0.4860609345383072,spot_peer,mmBot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,220077,-0.0747697190001253,relative_legacy,mmBot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,220077,0.3124374304802312,peer,mmBot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,222631,-5.740251576338771,spot_peer,Grizeu_Bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,222631,47.55680353443389,baseline,Grizeu_Bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,222631,-4.0237904957956285,peer,Grizeu_Bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,222631,-0.1191774773183981,relative_legacy,Grizeu_Bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,222631,67.80719051126377,spot_baseline,Grizeu_Bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,224797,-0.0690830662120507,relative_legacy,cookics_bot_TEST,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,224797,0.4860609345383072,spot_peer,cookics_bot_TEST,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,224797,76.55347463629771,spot_baseline,cookics_bot_TEST,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,224797,64.13303683471418,baseline,cookics_bot_TEST,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,224797,0.5231738749001045,peer,cookics_bot_TEST,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,227188,-3.322547533501942,peer,ProfessorSP,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,227188,-0.0983552527122111,relative_legacy,ProfessorSP,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,227188,-5.740251576338771,spot_peer,ProfessorSP,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,227188,67.80719051126377,spot_baseline,ProfessorSP,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,227188,39.24786406845797,baseline,ProfessorSP,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236037,6.356384518100607,spot_peer,metac-o1,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236037,5.95654011886677,peer,metac-o1,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236037,76.17822945396051,baseline,metac-o1,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236037,0.0046297991657885,relative_legacy,metac-o1,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236037,84.79969065549501,spot_baseline,metac-o1,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236038,61.140218873882695,baseline,metac-gpt-4o,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236038,67.80719051126377,spot_baseline,metac-gpt-4o,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236038,-0.1482954177420111,relative_legacy,metac-gpt-4o,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236038,-4.988527258268828,peer,metac-gpt-4o,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236038,-5.740251576338771,spot_peer,metac-gpt-4o,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236040,-0.1480714127136714,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236040,-4.974945519592444,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236040,67.80719051126377,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236040,-5.740251576338771,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236040,61.0641089191323,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236041,-27.065375526536847,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236041,34.060218982756346,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236041,-24.273033575375315,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236041,-0.4177488036679456,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236041,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236043,5.975407158840708,peer,metac-grok-2-1212,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236043,6.356384518100607,spot_peer,metac-grok-2-1212,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236043,0.0049531499301535,relative_legacy,metac-grok-2-1212,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236043,76.37343300346686,baseline,metac-grok-2-1212,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236045,48.54268271702416,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236045,43.16820258270752,baseline,metac-Gemini-Exp-1206,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236045,-19.454286494533,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236045,-0.3184909201260881,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236045,-17.1661088027848,peer,metac-Gemini-Exp-1206,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236047,43.6985330077002,baseline,metac-Llama-3.1,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236047,-19.454286494533,spot_peer,metac-Llama-3.1,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236047,-0.3213955146925307,relative_legacy,metac-Llama-3.1,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236047,-17.37827355969101,peer,metac-Llama-3.1,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,236047,48.54268271702416,spot_baseline,metac-Llama-3.1,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,237476,84.79969065549501,spot_baseline,NextWorldLab,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,237476,6.356384518100607,spot_peer,NextWorldLab,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,237476,0.0,relative_legacy,NextWorldLab,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,237476,5.565289013638472,peer,NextWorldLab,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,237476,72.19442967395726,baseline,NextWorldLab,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,239758,6.356384518100607,spot_peer,metac-perplexity,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,239758,0.0039241646472791,relative_legacy,metac-perplexity,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,239758,5.925902058338682,peer,metac-perplexity,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,239758,75.80930161820956,baseline,metac-perplexity,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,239759,76.19746021358375,baseline,metac-exa,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,239759,6.356384518100607,spot_peer,metac-exa,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,239759,84.79969065549501,spot_baseline,metac-exa,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,239759,0.0046863039184555,relative_legacy,metac-exa,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,239759,5.9601666449112045,peer,metac-exa,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,240416,-4.964271231698535,peer,metac-o1-preview,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,240416,-5.740251576338771,spot_peer,metac-o1-preview,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,240416,60.92456511921051,baseline,metac-o1-preview,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,240416,-0.148003863381601,relative_legacy,metac-o1-preview,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,240416,67.80719051126377,spot_baseline,metac-o1-preview,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,241715,81.35830816413146,baseline,CatrachoCaster,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,241715,84.79969065549501,spot_baseline,CatrachoCaster,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,241715,0.0049484040080133,relative_legacy,CatrachoCaster,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,241715,6.356384518100607,spot_peer,CatrachoCaster,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,241715,6.120164196919445,peer,CatrachoCaster,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,246118,8.006137469794002,peer,laylaps,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,246118,92.5999418556223,spot_baseline,laylaps,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,246118,11.90923427018297,spot_peer,laylaps,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,246118,0.0523537060264455,relative_legacy,laylaps,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,246118,62.15120525728798,baseline,laylaps,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,247214,6.123604077999789,peer,ajf-bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,247214,84.79969065549501,spot_baseline,ajf-bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,247214,6.356384518100607,spot_peer,ajf-bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,247214,0.0049484040080133,relative_legacy,ajf-bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,247214,81.46037567507452,baseline,ajf-bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,250015,-23.775553226224247,peer,metac-deepseek-r1,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,250015,37.85116232537298,spot_baseline,metac-deepseek-r1,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,250015,-0.4102268767509869,relative_legacy,metac-deepseek-r1,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,250015,-27.065375526536847,spot_peer,metac-deepseek-r1,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,250015,33.390059042043035,baseline,metac-deepseek-r1,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264059,6.356384518100607,spot_peer,wunderplumb,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264059,60.16512697005591,baseline,wunderplumb,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264059,4.513973167136566,peer,wunderplumb,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264059,0.0,relative_legacy,wunderplumb,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264225,67.80719051126377,spot_baseline,KevinTestBot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264225,-0.1109354420074689,relative_legacy,KevinTestBot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264225,-3.738262664676849,peer,KevinTestBot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264225,44.267886342819374,baseline,KevinTestBot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264225,-5.740251576338771,spot_peer,KevinTestBot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264332,67.80719051126377,spot_baseline,krm-bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264332,41.98663474575532,baseline,krm-bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264332,-3.548740118298887,peer,krm-bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264332,-0.1052186193814526,relative_legacy,krm-bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264332,-5.740251576338771,spot_peer,krm-bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264778,25.307150025132675,baseline,andrewsiah,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264778,-18.089217765980838,peer,andrewsiah,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264778,-0.3138961598315679,relative_legacy,andrewsiah,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264778,-27.065375526536847,spot_peer,andrewsiah,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,264778,37.85116232537298,spot_baseline,andrewsiah,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,265212,84.79969065549501,spot_baseline,4Shadower,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,265212,60.25159633042637,baseline,4Shadower,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,265212,4.520258017454602,peer,4Shadower,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,265212,0.0,relative_legacy,4Shadower,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,265212,6.356384518100607,spot_peer,4Shadower,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,265835,4.37728343955218,peer,jonahsingerbot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,265835,84.79969065549501,spot_baseline,jonahsingerbot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,265835,6.356384518100607,spot_peer,jonahsingerbot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,265835,0.0,relative_legacy,jonahsingerbot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,265835,58.28682886162501,baseline,jonahsingerbot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,266158,6.356384518100607,spot_peer,bean_bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,266158,5.903203407768885,peer,bean_bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,266158,75.54533626729359,baseline,bean_bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,266158,0.0039096025216053,relative_legacy,bean_bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,266158,84.79969065549501,spot_baseline,bean_bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,266572,57.63859323030376,baseline,cobyj-bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,266572,4.329483719747159,peer,cobyj-bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,266572,0.0,relative_legacy,cobyj-bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,266572,6.356384518100607,spot_peer,cobyj-bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35619,"Will Mahmoud Khalil be deported before April 1, 2025?",2025-03-15 15:49:28.662302+00,266572,84.79969065549501,spot_baseline,cobyj-bot,True,no,2025-03-20 14:00:00+00,2025-03-20 14:00:00+00,1.0,2025-03-20 14:00:00+00,36182 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,185699,-19.81860532370082,peer,MWG,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,185699,-0.2895122933362254,relative_legacy,MWG,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,185699,40.41072490150628,baseline,MWG,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,185699,-23.803401554490605,spot_peer,MWG,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,185699,48.54268271702416,spot_baseline,MWG,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,189869,76.55347463629771,spot_baseline,VeritasAI,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,189869,73.40389481452819,baseline,VeritasAI,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,189869,-4.039256486400603,peer,VeritasAI,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,189869,-0.0669384556917186,relative_legacy,VeritasAI,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,189869,-3.848477848058862,spot_peer,VeritasAI,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,191026,-0.0482566265321291,relative_legacy,manticAI,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,191026,-2.6457114636389103,peer,manticAI,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,191026,73.41711734721058,baseline,manticAI,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,191026,78.24085649273731,spot_baseline,manticAI,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,191026,-2.6463848723975345,spot_peer,manticAI,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,191935,93.50825233186616,spot_baseline,pgodzinai,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,191935,72.5846836713469,baseline,pgodzinai,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,191935,6.388141307584197,peer,pgodzinai,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,191935,0.0754635629713232,relative_legacy,pgodzinai,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,191935,8.23012729633127,spot_peer,pgodzinai,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,191975,67.25061720530788,baseline,jkraybill_bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,191975,83.94221708169404,spot_baseline,jkraybill_bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,191975,1.4152716456820376,spot_peer,jkraybill_bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,191975,0.0030492734987869,relative_legacy,jkraybill_bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,191975,1.138553935143864,peer,jkraybill_bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,192075,66.60717551092397,baseline,CumulativeBot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,192075,-2.2697182688664155,peer,CumulativeBot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,192075,-0.0426246932859398,relative_legacy,CumulativeBot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,192075,-2.6463848723975345,spot_peer,CumulativeBot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,192075,78.24085649273731,spot_baseline,CumulativeBot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,192418,95.4441223343906,baseline,InstitutPelFutur,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,192418,0.1373496541991759,relative_legacy,InstitutPelFutur,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,192418,10.67245900252798,peer,InstitutPelFutur,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,192418,11.30151046429084,spot_peer,InstitutPelFutur,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,192418,97.81956296816516,spot_baseline,InstitutPelFutur,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,192924,87.18436485093177,spot_baseline,acm_bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,192924,82.52216000426296,baseline,acm_bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,192924,3.330771740454224,peer,acm_bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,192924,0.0356645665711531,relative_legacy,acm_bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,192924,3.7249818304769633,spot_peer,acm_bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,204737,6.759208489365615,peer,SynapseSeer,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,204737,7.5830457604919825,spot_peer,SynapseSeer,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,204737,92.5999418556223,spot_baseline,SynapseSeer,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,204737,83.54020917922674,baseline,SynapseSeer,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,204737,0.0835822307021848,relative_legacy,SynapseSeer,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,218666,86.39384504239716,spot_baseline,GreeneiBot2,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,218666,0.0262462417662972,relative_legacy,GreeneiBot2,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,218666,72.74169204680172,baseline,GreeneiBot2,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,218666,2.6602616702121558,peer,GreeneiBot2,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,218666,3.1618145157793323,spot_peer,GreeneiBot2,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,220077,92.5999418556223,spot_baseline,mmBot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,220077,92.22189002650629,baseline,mmBot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,220077,7.5830457604919825,spot_peer,mmBot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,220077,0.0864209707243951,relative_legacy,mmBot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,220077,6.959130201038018,peer,mmBot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,222631,64.4139062175618,baseline,Grizeu_Bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,222631,-0.0565617970305992,relative_legacy,Grizeu_Bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,222631,-3.242955538119069,peer,Grizeu_Bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,222631,76.55347463629771,spot_baseline,Grizeu_Bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,222631,-3.848477848058862,spot_peer,Grizeu_Bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,224797,-3.6166577351021134,peer,cookics_bot_TEST,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,224797,69.68723792129964,baseline,cookics_bot_TEST,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,224797,76.55347463629771,spot_baseline,cookics_bot_TEST,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,224797,-3.848477848058862,spot_peer,cookics_bot_TEST,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,224797,-0.0618546838994771,relative_legacy,cookics_bot_TEST,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,227188,0.0080567182091064,relative_legacy,ProfessorSP,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,227188,1.5771070716238107,peer,ProfessorSP,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,227188,66.02256056668129,baseline,ProfessorSP,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,227188,84.79969065549501,spot_baseline,ProfessorSP,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,227188,2.0261369077136533,spot_peer,ProfessorSP,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236037,84.79969065549501,spot_baseline,metac-o1,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236037,2.0261369077136533,spot_peer,metac-o1,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236037,0.0132954124170285,relative_legacy,metac-o1,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236037,1.7558596186688311,peer,metac-o1,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236037,79.45442917778507,baseline,metac-o1,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236038,-3.848477848058862,spot_peer,metac-gpt-4o,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236038,71.75644573057907,baseline,metac-gpt-4o,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236038,76.55347463629771,spot_baseline,metac-gpt-4o,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236038,-3.767154799652895,peer,metac-gpt-4o,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236038,-0.0639659818955076,relative_legacy,metac-gpt-4o,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236040,92.5999418556223,spot_baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236040,7.5830457604919825,spot_peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236040,0.0864764368033127,relative_legacy,metac-claude-3-5-sonnet-latest,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236040,6.984238220867832,peer,metac-claude-3-5-sonnet-latest,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236040,86.88226988552017,baseline,metac-claude-3-5-sonnet-latest,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236041,71.81573082370902,baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236041,76.55347463629771,spot_baseline,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236041,-3.848477848058862,spot_peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236041,-0.064065048096674,relative_legacy,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236041,-3.775069538874914,peer,metac-claude-3-5-sonnet-20240620,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236043,84.79969065549501,spot_baseline,metac-grok-2-1212,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236043,2.0261369077136533,spot_peer,metac-grok-2-1212,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236043,0.0132088619270424,relative_legacy,metac-grok-2-1212,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236043,1.7557600018879196,peer,metac-grok-2-1212,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236043,79.2898404510598,baseline,metac-grok-2-1212,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236045,7.5830457604919825,spot_peer,metac-Gemini-Exp-1206,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236045,6.909591532964618,peer,metac-Gemini-Exp-1206,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236045,85.74241533744964,baseline,metac-Gemini-Exp-1206,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236045,0.0854266052930874,relative_legacy,metac-Gemini-Exp-1206,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236045,92.5999418556223,spot_baseline,metac-Gemini-Exp-1206,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236047,67.80719051126377,spot_baseline,metac-Llama-3.1,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236047,-9.613942447242396,peer,metac-Llama-3.1,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236047,63.49841272182432,baseline,metac-Llama-3.1,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236047,-10.079341756970203,spot_peer,metac-Llama-3.1,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,236047,-0.1458261948941511,relative_legacy,metac-Llama-3.1,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,237476,77.20983907923399,baseline,NextWorldLab,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,237476,84.79969065549501,spot_baseline,NextWorldLab,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,237476,2.0261369077136533,spot_peer,NextWorldLab,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,237476,0.0132112775621547,relative_legacy,NextWorldLab,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,237476,1.742731224292719,peer,NextWorldLab,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,239758,79.41842723472912,baseline,metac-perplexity,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,239758,0.0132874393922352,relative_legacy,metac-perplexity,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,239758,1.7559090124205037,peer,metac-perplexity,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,239758,84.79969065549501,spot_baseline,metac-perplexity,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,239758,2.0261369077136533,spot_peer,metac-perplexity,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,239759,79.29169069762713,baseline,metac-exa,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,239759,0.0132068435844379,relative_legacy,metac-exa,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,239759,2.0261369077136533,spot_peer,metac-exa,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,239759,1.7556165585404009,peer,metac-exa,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,239759,84.79969065549501,spot_baseline,metac-exa,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,240416,1.7564570004494318,peer,metac-o1-preview,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,240416,0.0132177558849923,relative_legacy,metac-o1-preview,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,240416,2.0261369077136533,spot_peer,metac-o1-preview,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,240416,84.79969065549501,spot_baseline,metac-o1-preview,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,240416,79.3092352134905,baseline,metac-o1-preview,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,241715,61.34795914133125,baseline,CatrachoCaster,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,241715,84.79969065549501,spot_baseline,CatrachoCaster,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,241715,0.0062033544419425,relative_legacy,CatrachoCaster,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,241715,1.4657997366303583,peer,CatrachoCaster,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,241715,2.0261369077136533,spot_peer,CatrachoCaster,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,246118,1.6789226475048686,peer,laylaps,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,246118,69.981085423309,baseline,laylaps,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,246118,84.79969065549501,spot_baseline,laylaps,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,246118,2.0261369077136533,spot_peer,laylaps,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,246118,0.0117234762418708,relative_legacy,laylaps,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,247214,10.114646847021511,peer,ajf-bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,247214,10.778467209356291,spot_peer,ajf-bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,247214,97.08536543404836,spot_baseline,ajf-bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,247214,0.1299331768006972,relative_legacy,ajf-bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,247214,93.40256672198068,baseline,ajf-bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,250015,-3.848477848058862,spot_peer,metac-deepseek-r1,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,250015,71.12429917766977,baseline,metac-deepseek-r1,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,250015,-3.7178705269182624,peer,metac-deepseek-r1,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,250015,-0.0633913952816083,relative_legacy,metac-deepseek-r1,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,250015,76.55347463629771,spot_baseline,metac-deepseek-r1,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264059,-3.848477848058862,spot_peer,wunderplumb,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264059,56.634207554490416,baseline,wunderplumb,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264059,-2.846228722674865,peer,wunderplumb,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264059,-0.0534535286794258,relative_legacy,wunderplumb,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264059,76.55347463629771,spot_baseline,wunderplumb,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264225,-3.848477848058862,spot_peer,KevinTestBot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264225,-3.1283559148674867,peer,KevinTestBot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264225,62.34723715389024,baseline,KevinTestBot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264225,-0.0561459094614594,relative_legacy,KevinTestBot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264225,76.55347463629771,spot_baseline,KevinTestBot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264332,76.55347463629771,spot_baseline,krm-bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264332,60.80429666390536,baseline,krm-bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264332,-3.053748766787949,peer,krm-bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264332,-0.0561459094614594,relative_legacy,krm-bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264332,-3.848477848058862,spot_peer,krm-bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264778,-3.848477848058862,spot_peer,andrewsiah,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264778,76.55347463629771,spot_baseline,andrewsiah,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264778,62.21257035280456,baseline,andrewsiah,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264778,-3.121668837310165,peer,andrewsiah,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,264778,-0.0561459094614594,relative_legacy,andrewsiah,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,265212,76.55347463629771,spot_baseline,4Shadower,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,265212,-3.848477848058862,spot_peer,4Shadower,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,265212,64.90855599420293,baseline,4Shadower,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,265212,-3.2757173887536752,peer,4Shadower,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,265212,-0.0567071652995586,relative_legacy,4Shadower,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,265835,1.695743072552395,peer,jonahsingerbot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,265835,84.79969065549501,spot_baseline,jonahsingerbot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,265835,2.0261369077136533,spot_peer,jonahsingerbot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,265835,0.0123599308312443,relative_legacy,jonahsingerbot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,265835,70.75270534387728,baseline,jonahsingerbot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,266158,-3.848477848058862,spot_peer,bean_bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,266158,71.17537479045237,baseline,bean_bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,266158,-3.7223519540607457,peer,bean_bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,266158,-0.0634576807781252,relative_legacy,bean_bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,266158,76.55347463629771,spot_baseline,bean_bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,266572,-3.201895178779864,peer,cobyj-bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,266572,63.77641455768817,baseline,cobyj-bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,266572,76.55347463629771,spot_baseline,cobyj-bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,266572,-3.848477848058862,spot_peer,cobyj-bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35620,Will BC Hydro still exclude Tesla from its EV charger rebate program for single-family homes in April 2025?,2025-03-15 15:49:28.692427+00,266572,-0.056338987653014,relative_legacy,cobyj-bot,True,yes,2025-03-20 16:00:00+00,2025-03-20 16:00:00+00,1.0,2025-03-20 16:00:00+00,36183 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,185699,32.624547042066936,spot_peer,MWG,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,185699,24.16625743489968,baseline,MWG,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,185699,81.55754288625727,spot_baseline,MWG,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,185699,9.66695629385415,peer,MWG,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,185699,0.0,relative_legacy,MWG,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,189869,24.211608383192317,peer,VeritasAI,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,189869,22.828778562178,spot_peer,VeritasAI,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,189869,-0.0646788976143876,relative_legacy,VeritasAI,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,189869,64.87519315533277,baseline,VeritasAI,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,189869,67.80719051126377,spot_baseline,VeritasAI,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,191026,85.74634529063651,baseline,manticAI,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,191026,92.5999418556223,spot_baseline,manticAI,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,191026,40.49116607964018,spot_peer,manticAI,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,191026,0.1651930478600007,relative_legacy,manticAI,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,191026,39.79338948057946,peer,manticAI,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,191935,-0.0179398431382863,relative_legacy,pgodzinai,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,191935,23.204716139911312,peer,pgodzinai,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,191935,31.449931082416818,spot_peer,pgodzinai,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,191935,58.07695885674646,baseline,pgodzinai,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,191935,79.90873060740036,spot_baseline,pgodzinai,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,191975,26.07279442057937,peer,jkraybill_bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,191975,36.59565351456782,spot_peer,jkraybill_bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,191975,61.341319022025466,baseline,jkraybill_bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,191975,87.1317980789569,spot_baseline,jkraybill_bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,191975,0.0332866763722038,relative_legacy,jkraybill_bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,192075,36.35190422379637,spot_peer,CumulativeBot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,192075,86.78964639926548,spot_baseline,CumulativeBot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,192075,0.032077352421344,relative_legacy,CumulativeBot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,192075,26.77561662267059,peer,CumulativeBot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,192075,63.09007004147805,baseline,CumulativeBot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,192418,-1.6840913818396683,relative_legacy,InstitutPelFutur,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,192418,-96.74164749847516,baseline,InstitutPelFutur,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,192418,-92.96867196719386,peer,InstitutPelFutur,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,192418,-96.71727689007253,spot_peer,InstitutPelFutur,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,192418,-100.0,spot_baseline,InstitutPelFutur,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,192924,81.00297099730759,baseline,acm_bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,192924,36.121083478473366,peer,acm_bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,192924,0.1095897944647209,relative_legacy,acm_bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,192924,36.06993483492753,spot_peer,acm_bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,192924,86.39384504239716,spot_baseline,acm_bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,204737,-0.9507433191914004,relative_legacy,SynapseSeer,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,204737,-47.89873989562624,spot_peer,SynapseSeer,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,204737,-31.473259348315835,spot_baseline,SynapseSeer,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,204737,-27.694006523557047,baseline,SynapseSeer,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,204737,-40.46429781716903,peer,SynapseSeer,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,218666,10.668175945209123,baseline,GreeneiBot2,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,218666,-0.5393989298527021,relative_legacy,GreeneiBot2,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,218666,-16.055800067368477,spot_peer,GreeneiBot2,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,218666,13.224779829843978,spot_baseline,GreeneiBot2,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,218666,-11.995689564964987,peer,GreeneiBot2,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,220077,0.0239160189499008,relative_legacy,mmBot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,220077,31.365457614986187,peer,mmBot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,220077,76.32244429887216,baseline,mmBot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,220077,76.55347463629771,spot_baseline,mmBot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,220077,29.05964247108936,spot_peer,mmBot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,222631,-40.83364588643719,baseline,Grizeu_Bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,222631,-48.53709225164738,peer,Grizeu_Bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,222631,-1.050394295062777,relative_legacy,Grizeu_Bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,222631,-62.13540812622566,spot_peer,Grizeu_Bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,224797,75.36752437758247,baseline,cookics_bot_TEST,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,224797,84.79969065549501,spot_baseline,cookics_bot_TEST,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,224797,34.934257226861845,spot_peer,cookics_bot_TEST,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,224797,0.0765223761824067,relative_legacy,cookics_bot_TEST,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,224797,33.07372560744149,peer,cookics_bot_TEST,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,227188,9.104718764657605,spot_peer,ProfessorSP,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,227188,7.020732675508489,peer,ProfessorSP,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,227188,-0.2474884847888519,relative_legacy,ProfessorSP,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,227188,35.513142459697214,baseline,ProfessorSP,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,227188,48.54268271702416,spot_baseline,ProfessorSP,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236037,17.174506161540624,peer,metac-o1,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236037,54.13753677204052,baseline,metac-o1,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236037,16.1956527785943,spot_peer,metac-o1,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236037,58.496250072115615,spot_baseline,metac-o1,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236037,-0.1507121102826602,relative_legacy,metac-o1,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236038,45.073601619492365,baseline,metac-gpt-4o,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236038,48.54268271702416,spot_baseline,metac-gpt-4o,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236038,-0.2418931529600314,relative_legacy,metac-gpt-4o,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236038,10.626090004585665,peer,metac-gpt-4o,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236038,9.104718764657605,spot_peer,metac-gpt-4o,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236040,37.85116232537298,spot_baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236040,1.488066071080657,spot_peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236040,-0.3409732583012202,relative_legacy,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236040,3.523679763298935,peer,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236040,35.13005848771869,baseline,metac-claude-3-5-sonnet-latest,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236041,-1.1691492204156184,relative_legacy,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236041,-47.72138323088112,baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236041,-55.77450684080437,peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236041,-51.45731728297583,spot_baseline,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236041,-62.13540812622566,spot_peer,metac-claude-3-5-sonnet-20240620,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236043,-48.41134832870526,spot_peer,metac-grok-2-1212,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236043,-32.19280948873623,spot_baseline,metac-grok-2-1212,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236043,-29.861607727026747,baseline,metac-grok-2-1212,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236043,-43.00063185993673,peer,metac-grok-2-1212,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236043,-0.990768910819462,relative_legacy,metac-grok-2-1212,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236045,-0.3408337329318065,relative_legacy,metac-Gemini-Exp-1206,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236045,34.69558793230783,baseline,metac-Gemini-Exp-1206,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236045,3.457093138493969,peer,metac-Gemini-Exp-1206,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236045,1.488066071080657,spot_peer,metac-Gemini-Exp-1206,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236045,37.85116232537298,spot_baseline,metac-Gemini-Exp-1206,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236047,-29.85682167678004,baseline,metac-Llama-3.1,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236047,-42.98517675650372,peer,metac-Llama-3.1,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236047,-0.9905144808803892,relative_legacy,metac-Llama-3.1,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236047,-48.41134832870526,spot_peer,metac-Llama-3.1,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,236047,-32.19280948873623,spot_baseline,metac-Llama-3.1,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,237476,-149.2187993326882,spot_peer,NextWorldLab,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,237476,-2.236346570331765,relative_legacy,NextWorldLab,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,237476,-132.21762528328156,peer,NextWorldLab,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,237476,-155.64331279943144,baseline,NextWorldLab,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,237476,-173.6965594166206,spot_baseline,NextWorldLab,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,239758,-29.672470158887545,baseline,metac-perplexity,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,239758,-32.19280948873623,spot_baseline,metac-perplexity,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,239758,-48.41134832870526,spot_peer,metac-perplexity,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,239758,-0.9870144790333936,relative_legacy,metac-perplexity,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,239758,-42.722465029613375,peer,metac-perplexity,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,239759,97.08536543404836,spot_baseline,metac-exa,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,239759,89.77678792161059,baseline,metac-exa,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,239759,42.699796048442735,peer,metac-exa,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,239759,0.2060500173985732,relative_legacy,metac-exa,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,239759,43.686587528504496,spot_peer,metac-exa,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,240416,-0.242948447336712,relative_legacy,metac-o1-preview,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,240416,9.104718764657605,spot_peer,metac-o1-preview,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,240416,48.54268271702416,spot_baseline,metac-o1-preview,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,240416,10.562816191778175,peer,metac-o1-preview,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,240416,44.88379603478465,baseline,metac-o1-preview,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,241715,-15.681381519300322,spot_peer,CatrachoCaster,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,241715,13.750352374993504,spot_baseline,CatrachoCaster,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,241715,7.154139782316961,baseline,CatrachoCaster,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,241715,-0.3527925001005702,relative_legacy,CatrachoCaster,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,241715,-7.958408373704929,peer,CatrachoCaster,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,246118,0.0788037779116808,relative_legacy,laylaps,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,246118,40.49116607964018,spot_peer,laylaps,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,246118,71.41204234824633,baseline,laylaps,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,246118,31.875674605204804,peer,laylaps,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,246118,92.5999418556223,spot_baseline,laylaps,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,247214,88.85816744479129,baseline,ajf-bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,247214,92.5999418556223,spot_baseline,ajf-bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,247214,40.49116607964018,spot_peer,ajf-bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,247214,0.1729826544763043,relative_legacy,ajf-bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,247214,41.53425981154266,peer,ajf-bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,250015,-1.158369966984079,relative_legacy,metac-deepseek-r1,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,250015,-51.45731728297583,spot_baseline,metac-deepseek-r1,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,250015,-62.13540812622566,spot_peer,metac-deepseek-r1,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,250015,-55.04840238790661,peer,metac-deepseek-r1,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,250015,-47.10924597894835,baseline,metac-deepseek-r1,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264059,34.934257226861845,spot_peer,wunderplumb,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264059,84.79969065549501,spot_baseline,wunderplumb,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264059,61.43692751432755,baseline,wunderplumb,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264059,25.65224312830574,peer,wunderplumb,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264059,0.0175327678818002,relative_legacy,wunderplumb,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264225,34.934257226861845,spot_peer,KevinTestBot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264225,27.04877401913069,peer,KevinTestBot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264225,0.0180233900799827,relative_legacy,KevinTestBot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264225,64.31193724164709,baseline,KevinTestBot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264225,84.79969065549501,spot_baseline,KevinTestBot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264332,60.32218864818351,baseline,krm-bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264332,24.54909631215661,peer,krm-bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264332,-0.0059564212826522,relative_legacy,krm-bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264332,32.624547042066936,spot_peer,krm-bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264332,81.55754288625727,spot_baseline,krm-bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264778,-51.45731728297583,spot_baseline,andrewsiah,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264778,-39.11394415872402,baseline,andrewsiah,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264778,-46.73484751173559,peer,andrewsiah,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264778,-1.0170731697023805,relative_legacy,andrewsiah,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,264778,-62.13540812622566,spot_peer,andrewsiah,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,265212,84.79969065549501,spot_baseline,4Shadower,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,265212,0.0352222597119198,relative_legacy,4Shadower,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,265212,29.02670343081648,peer,4Shadower,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,265212,68.0793011923802,baseline,4Shadower,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,265212,34.934257226861845,spot_peer,4Shadower,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,265835,84.79969065549501,spot_baseline,jonahsingerbot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,265835,34.934257226861845,spot_peer,jonahsingerbot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,265835,0.0236522360129248,relative_legacy,jonahsingerbot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,265835,28.12972655494792,peer,jonahsingerbot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,265835,66.43773761366728,baseline,jonahsingerbot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,266158,39.34568815091904,peer,bean_bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,266158,0.1607766138405326,relative_legacy,bean_bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,266158,40.49116607964018,spot_peer,bean_bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,266158,92.5999418556223,spot_baseline,bean_bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,266158,84.83663094808252,baseline,bean_bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,266572,0.0212303757156867,relative_legacy,cobyj-bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,266572,34.934257226861845,spot_peer,cobyj-bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,266572,84.79969065549501,spot_baseline,cobyj-bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,266572,66.00029471327962,baseline,cobyj-bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35621,"Will Elon Musk, Donald Trump, or JD Vance visit Fort Knox before April 1, 2025?",2025-03-15 15:49:28.723389+00,266572,27.895587606101586,peer,cobyj-bot,True,no,2025-03-20 18:00:00+00,2025-03-20 18:00:00+00,1.0,2025-03-20 18:00:00+00,36184 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,187708,-53.67090347770403,baseline,twsummerbot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,187708,-2.465227727818343,peer,twsummerbot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,187708,-0.5091872489569433,relative_legacy,twsummerbot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,187708,-1.8182740798084351,spot_peer,twsummerbot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,187708,-72.43622643099995,spot_baseline,twsummerbot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,191026,3.238817351071118,spot_baseline,manticAI,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,191026,2.9884794078054284,baseline,manticAI,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,191026,1.2715475071476,relative_legacy,manticAI,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,191026,76.76734830926537,spot_peer,manticAI,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,191026,67.5149852863257,peer,manticAI,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,191935,2.0252713667805056,relative_legacy,pgodzinai,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,191935,105.34424342355754,spot_peer,pgodzinai,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,191935,30.75730894261173,spot_baseline,pgodzinai,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,191935,29.004223835962456,baseline,pgodzinai,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,191935,95.7007779839217,peer,pgodzinai,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,192418,-98.70405130110044,spot_baseline,InstitutPelFutur,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,192418,-29.096399906451257,spot_peer,InstitutPelFutur,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,192418,-1.3240610297977191,relative_legacy,InstitutPelFutur,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,192418,-86.67898886460003,baseline,InstitutPelFutur,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,192418,-27.9176831618412,peer,InstitutPelFutur,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,192924,-15.00522862251735,spot_baseline,acm_bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,192924,0.7978079461194387,relative_legacy,acm_bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,192924,-12.738431305581887,baseline,acm_bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,192924,47.45138728641476,peer,acm_bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,192924,57.82160825976965,spot_peer,acm_bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,218666,-84.50551962233435,spot_baseline,GreeneiBot2,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,218666,-14.342849742214865,peer,GreeneiBot2,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,218666,-0.930385502659272,relative_legacy,GreeneiBot2,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,218666,-14.351770855424926,spot_peer,GreeneiBot2,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,218666,-72.9061049939949,baseline,GreeneiBot2,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,220077,35.53461554462189,baseline,mmBot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,220077,39.605788566093686,spot_baseline,mmBot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,220077,114.5330491864042,spot_peer,mmBot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,220077,2.2032997189337493,relative_legacy,mmBot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,220077,100.11840286274273,peer,mmBot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,222631,-2.5066278997815603,relative_legacy,Grizeu_Bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,222631,-126.65870447199788,baseline,Grizeu_Bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,222631,-72.23418314498538,peer,Grizeu_Bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,222631,-85.42844328251759,spot_peer,Grizeu_Bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,222631,-152.94972270027543,spot_baseline,Grizeu_Bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,224797,-133.36141032910768,spot_baseline,cookics_bot_TEST,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,224797,-58.02343942748287,peer,cookics_bot_TEST,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,224797,-2.1408460517572805,relative_legacy,cookics_bot_TEST,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,224797,-114.8340472419696,baseline,cookics_bot_TEST,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,224797,-65.08673428168957,spot_peer,cookics_bot_TEST,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236037,-2.225332934268396,relative_legacy,metac-o1,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236037,-126.68484869787396,spot_baseline,metac-o1,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236037,-118.25297544011212,baseline,metac-o1,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236037,-58.26239709296687,peer,metac-o1,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236037,-58.15338181848533,spot_peer,metac-o1,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236040,-86.13973858728869,spot_peer,metac-claude-3-5-sonnet-latest,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236040,-2.9996425857895628,relative_legacy,metac-claude-3-5-sonnet-latest,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236040,-85.81898506574612,peer,metac-claude-3-5-sonnet-latest,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236040,-145.25845855269105,baseline,metac-claude-3-5-sonnet-latest,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236040,-153.63467373449944,spot_baseline,metac-claude-3-5-sonnet-latest,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236041,21.831270769157683,spot_peer,metac-claude-3-5-sonnet-20240620,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236041,-49.66259065051405,spot_baseline,metac-claude-3-5-sonnet-20240620,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236041,16.699288787886605,peer,metac-claude-3-5-sonnet-20240620,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236041,-46.95353726742424,baseline,metac-claude-3-5-sonnet-20240620,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236041,-0.1631865202854224,relative_legacy,metac-claude-3-5-sonnet-20240620,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236043,-136.6084254832405,baseline,metac-grok-2-1212,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236043,-144.51858789481372,spot_baseline,metac-grok-2-1212,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236043,-76.67303406146124,spot_peer,metac-grok-2-1212,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236043,-2.750244564199375,relative_legacy,metac-grok-2-1212,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236043,-76.80770391739112,peer,metac-grok-2-1212,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236045,-86.99799080399401,spot_peer,metac-Gemini-Exp-1206,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236045,-154.46113883206755,spot_baseline,metac-Gemini-Exp-1206,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236045,-74.86690927029188,peer,metac-Gemini-Exp-1206,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236045,-2.5907930513790447,relative_legacy,metac-Gemini-Exp-1206,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236045,-130.01917152281965,baseline,metac-Gemini-Exp-1206,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236047,-34.8230446326544,peer,metac-Llama-3.1,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236047,-62.10869905483151,baseline,metac-Llama-3.1,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236047,-1.1972468720837277,relative_legacy,metac-Llama-3.1,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236047,-86.13973858728869,spot_peer,metac-Llama-3.1,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,236047,-153.63467373449944,spot_baseline,metac-Llama-3.1,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,239758,1.3287039189754308,relative_legacy,metac-perplexity,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,239758,5.268025782891358,spot_baseline,metac-perplexity,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,239758,70.21455338361905,peer,metac-perplexity,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,239758,4.932657400942976,baseline,metac-perplexity,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,239758,78.87460321923254,spot_peer,metac-perplexity,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,239759,37.40906982363143,baseline,metac-exa,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,239759,104.1065969210416,peer,metac-exa,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,239759,2.265757429309097,relative_legacy,metac-exa,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,239759,114.86493759446046,spot_peer,metac-exa,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,239759,39.92538481088862,spot_baseline,metac-exa,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,240416,70.49583561616869,peer,metac-o1-preview,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,240416,5.268025782891358,spot_baseline,metac-o1-preview,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,240416,1.330358651800617,relative_legacy,metac-o1-preview,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,240416,4.950189970140174,baseline,metac-o1-preview,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,240416,78.87460321923254,spot_peer,metac-o1-preview,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,246118,1.3501258764044783,relative_legacy,laylaps,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,246118,5.268025782891358,spot_baseline,laylaps,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,246118,78.87460321923254,spot_peer,laylaps,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,246118,72.88743733785623,peer,laylaps,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,246118,5.126738619071215,baseline,laylaps,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,247214,3.927721228687888,baseline,ajf-bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,247214,71.2142767365595,peer,ajf-bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,247214,1.312674530489078,relative_legacy,ajf-bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,247214,77.61325187430128,spot_peer,ajf-bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,247214,4.05339115443903,spot_baseline,ajf-bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,250015,-26.939006198715283,baseline,metac-deepseek-r1,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,250015,0.4074545768056649,relative_legacy,metac-deepseek-r1,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,250015,36.07249889944247,peer,metac-deepseek-r1,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,250015,42.8842688440046,spot_peer,metac-deepseek-r1,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,250015,-29.38933324510591,spot_baseline,metac-deepseek-r1,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,264059,-92.36710745705444,peer,wunderplumb,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,264059,-3.146354336308849,relative_legacy,wunderplumb,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,264059,-97.72601967476994,spot_peer,wunderplumb,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,264059,-164.79183330022212,spot_baseline,wunderplumb,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,264059,-150.06516433624725,baseline,wunderplumb,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,264225,-29.38933324510591,spot_baseline,KevinTestBot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,264225,42.8842688440046,spot_peer,KevinTestBot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,264225,0.3769581975791837,relative_legacy,KevinTestBot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,264225,37.38181666108181,peer,KevinTestBot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,264225,-28.593823952175565,baseline,KevinTestBot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,264332,-29.38933324510591,spot_baseline,krm-bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,264332,-27.746429967186035,baseline,krm-bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,264332,42.8842688440046,spot_peer,krm-bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,264332,0.3891732623218378,relative_legacy,krm-bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,264332,36.61814436570016,peer,krm-bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,265212,-126.68483469787256,spot_baseline,4Shadower,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,265212,-105.0042321728422,baseline,4Shadower,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,265212,-49.67617054980848,peer,4Shadower,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,265212,-1.8809933728500767,relative_legacy,4Shadower,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,265212,-58.1533672800223,spot_peer,4Shadower,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,266158,-81.18570337554769,peer,bean_bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,266158,-161.34220772587125,spot_baseline,bean_bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,266158,-94.14371619371326,spot_peer,bean_bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,266158,-136.24953672469357,baseline,bean_bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,266158,-2.768516015009196,relative_legacy,bean_bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,266572,-94.14371619371326,spot_peer,cobyj-bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,266572,-3.328297186358027,relative_legacy,cobyj-bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,266572,-97.68459756295758,peer,cobyj-bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,266572,-159.9531937230087,baseline,cobyj-bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35622,"What will be the the global surface air temperature on April 1, 2025?",2025-03-15 15:49:28.758488+00,266572,-161.34220772587125,spot_baseline,cobyj-bot,True,14.39,2025-03-21 01:18:00+00,2025-03-21 01:18:00+00,1.0,2025-03-21 01:18:00+00,36185 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,185699,0.048760814434885,relative_legacy,MWG,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,185699,22.674003825139906,spot_peer,MWG,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,185699,-56.49048483799026,spot_baseline,MWG,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,185699,3.209618103662955,peer,MWG,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,185699,-11.397364252779502,baseline,MWG,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,189869,1.5500242689220016,peer,VeritasAI,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,189869,0.0239939366748996,relative_legacy,VeritasAI,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,189869,-6.140197938768181,baseline,VeritasAI,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,189869,17.644960127802488,spot_peer,VeritasAI,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,189869,-63.48674065474705,spot_baseline,VeritasAI,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,191026,0.0390436004269156,relative_legacy,manticAI,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,191026,-4.490805242020237,baseline,manticAI,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,191026,2.64119010193525,peer,manticAI,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,191026,29.213366073583742,spot_peer,manticAI,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,191026,-47.39311883324122,spot_baseline,manticAI,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,191935,13.56706354297264,peer,pgodzinai,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,191935,0.1908685703708509,relative_legacy,pgodzinai,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,191935,79.73944469414666,spot_peer,pgodzinai,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,191935,4.176766922110443,baseline,pgodzinai,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,191935,22.897256976016077,spot_baseline,pgodzinai,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,192075,-27.75339755289088,spot_baseline,CumulativeBot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,192075,0.095962329341994,relative_legacy,CumulativeBot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,192075,43.33077674428091,spot_peer,CumulativeBot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,192075,6.465561483149606,peer,CumulativeBot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,192075,-4.84064243479602,baseline,CumulativeBot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,218666,-18.442457113742744,spot_baseline,GreeneiBot2,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,218666,-2.942534108908025,baseline,GreeneiBot2,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,218666,50.02366041780681,spot_peer,GreeneiBot2,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,218666,0.1038104996405111,relative_legacy,GreeneiBot2,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,218666,7.072308600912514,peer,GreeneiBot2,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,220077,-12.166703694396547,baseline,mmBot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,220077,-100.0,spot_baseline,mmBot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,220077,-1.5523752444832088,peer,mmBot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,220077,-0.0163512380559818,relative_legacy,mmBot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,220077,-8.601475335532786,spot_peer,mmBot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,222631,26.29194179555596,spot_peer,Grizeu_Bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,222631,3.490613064349734,peer,Grizeu_Bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,222631,-9.324546153513968,baseline,Grizeu_Bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,222631,-51.45731728297583,spot_baseline,Grizeu_Bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,222631,0.0551752459250957,relative_legacy,Grizeu_Bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,227188,-11.625050454673897,baseline,ProfessorSP,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,227188,-73.69655941662063,spot_baseline,ProfessorSP,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,227188,10.305945369025464,spot_peer,ProfessorSP,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,227188,0.0156513787161323,relative_legacy,ProfessorSP,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,227188,0.6214678436180308,peer,ProfessorSP,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236037,-0.6203303288231697,spot_peer,metac-o1,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236037,-88.8968687611256,spot_baseline,metac-o1,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236037,0.0011089062771711,relative_legacy,metac-o1,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236037,-0.0588704391323215,peer,metac-o1,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236037,-7.527931177963494,baseline,metac-o1,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236038,10.305945369025464,spot_peer,metac-gpt-4o,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236038,0.0141193853165656,relative_legacy,metac-gpt-4o,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236038,-6.38777119284992,baseline,metac-gpt-4o,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236038,0.8733493176129328,peer,metac-gpt-4o,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236038,-73.69655941662063,spot_baseline,metac-gpt-4o,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236040,-0.071706082981692,relative_legacy,metac-claude-3-5-sonnet-latest,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236040,-5.302352897601742,peer,metac-claude-3-5-sonnet-latest,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236040,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-latest,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236040,-61.57598446682072,spot_peer,metac-claude-3-5-sonnet-latest,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236040,-14.90484138224776,baseline,metac-claude-3-5-sonnet-latest,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236041,-5.296419558272104,peer,metac-claude-3-5-sonnet-20240620,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236041,-14.890244090302534,baseline,metac-claude-3-5-sonnet-20240620,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236041,-0.0716272039853827,relative_legacy,metac-claude-3-5-sonnet-20240620,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236041,-173.6965594166206,spot_baseline,metac-claude-3-5-sonnet-20240620,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236041,-61.57598446682072,spot_peer,metac-claude-3-5-sonnet-20240620,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236043,-0.0191950507267249,relative_legacy,metac-grok-2-1212,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236043,-112.0294233717712,spot_baseline,metac-grok-2-1212,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236043,-17.248457003286234,spot_peer,metac-grok-2-1212,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236043,-1.525815640629136,peer,metac-grok-2-1212,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236043,-9.735754281596204,baseline,metac-grok-2-1212,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236045,-11.69694104716556,baseline,metac-Gemini-Exp-1206,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236045,-155.63933485243854,spot_baseline,metac-Gemini-Exp-1206,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236045,-48.59610297529415,spot_peer,metac-Gemini-Exp-1206,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236045,-0.0490173894313794,relative_legacy,metac-Gemini-Exp-1206,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236045,-3.639852304375722,peer,metac-Gemini-Exp-1206,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236047,0.2556097414060768,peer,metac-Llama-3.1,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236047,-7.215886520737089,baseline,metac-Llama-3.1,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236047,-83.65012677171204,spot_baseline,metac-Llama-3.1,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236047,3.151129066674963,spot_peer,metac-Llama-3.1,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,236047,0.0055279927617762,relative_legacy,metac-Llama-3.1,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,239758,-7.461490762570406,baseline,metac-perplexity,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,239758,-88.8968687611256,spot_baseline,metac-perplexity,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,239758,-0.6203303288231697,spot_peer,metac-perplexity,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,239758,0.0011200329320442,relative_legacy,metac-perplexity,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,239758,-0.0549407069557362,peer,metac-perplexity,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,239759,-132.19280948873623,spot_baseline,metac-exa,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,239759,-10.675159392740976,baseline,metac-exa,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,239759,-2.557975072231764,peer,metac-exa,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,239759,-0.0338333340045099,relative_legacy,metac-exa,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,239759,-31.74228806441379,spot_peer,metac-exa,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,240416,-139.5928676331139,spot_baseline,metac-o1-preview,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,240416,-3.0494226217086595,peer,metac-o1-preview,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,240416,-11.488497935892251,baseline,metac-o1-preview,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,240416,-0.0405930740250095,relative_legacy,metac-o1-preview,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,240416,-37.06159266756717,spot_peer,metac-o1-preview,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,246118,-132.19280948873623,spot_baseline,laylaps,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,246118,-6.831760253241891,peer,laylaps,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,246118,-0.0846180096244419,relative_legacy,laylaps,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,246118,-31.74228806441379,spot_peer,laylaps,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,246118,-22.78085394752267,baseline,laylaps,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,247214,-73.69655941662063,spot_baseline,ajf-bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,247214,0.7350920660330669,peer,ajf-bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,247214,0.0106727081745451,relative_legacy,ajf-bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,247214,10.305945369025464,spot_peer,ajf-bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,247214,-5.174512270080631,baseline,ajf-bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,264059,10.305945369025464,spot_peer,wunderplumb,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,264059,-73.69655941662063,spot_baseline,wunderplumb,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,264059,-3.041432923707046,baseline,wunderplumb,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,264059,0.0062731179931424,relative_legacy,wunderplumb,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,264059,0.4253229974832593,peer,wunderplumb,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,264225,-15.160628406461257,baseline,KevinTestBot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,264225,-1.3150466418169264,peer,KevinTestBot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,264225,-0.0097339999997096,relative_legacy,KevinTestBot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,264225,-0.6203303288231697,spot_peer,KevinTestBot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,264225,-88.8968687611256,spot_baseline,KevinTestBot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,264332,-12.586895231459373,baseline,krm-bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,264332,-79.83661388303496,spot_baseline,krm-bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,264332,5.892355725594775,spot_peer,krm-bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,264332,0.0059710806016059,relative_legacy,krm-bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,264332,-0.0871995441324571,peer,krm-bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,265212,-132.19280948873623,spot_baseline,4Shadower,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,265212,-31.74228806441379,spot_peer,4Shadower,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,265212,-0.0924070871117189,relative_legacy,4Shadower,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,265212,-7.4575925721033025,peer,4Shadower,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,265212,-24.24315990154155,baseline,4Shadower,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,265835,-13.8931115800801,baseline,jonahsingerbot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,265835,-78.58751946471526,spot_baseline,jonahsingerbot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,265835,6.790228898954806,spot_peer,jonahsingerbot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,265835,0.0072130594776316,relative_legacy,jonahsingerbot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,265835,-0.0879713782163088,peer,jonahsingerbot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,266158,-2.643643386218232,peer,bean_bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,266158,-94.34164716336323,spot_baseline,bean_bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,266158,-4.5341421196369485,spot_peer,bean_bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,266158,-0.0256533857392693,relative_legacy,bean_bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,266158,-18.54727248908804,baseline,bean_bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,266572,-73.69655941662063,spot_baseline,cobyj-bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,266572,0.5540171290613339,peer,cobyj-bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,266572,-12.983941898265414,baseline,cobyj-bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,266572,10.305945369025464,spot_peer,cobyj-bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 +35705,"Which podcast will be ranked higher on Spotify on March 31, 2025: Call Her Daddy or Candace?",2025-03-20 19:35:15.771896+00,266572,0.015830007350625,relative_legacy,cobyj-bot,True,Candace,2025-03-20 20:00:00+00,2025-03-20 20:00:00+00,1.0,2025-03-20 20:00:00+00,36264 diff --git a/scores/pros_score_data_q4.csv b/scores/pros_score_data_q4.csv index ebe121f..e0bd156 100644 --- a/scores/pros_score_data_q4.csv +++ b/scores/pros_score_data_q4.csv @@ -1,6401 +1,4791 @@ question_id,question_title,created_at,user_id,score,score_type,forecaster,resolution,scheduled_close_time,actual_close_time,question_weight,post_id -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,101465,0.1568881545380358,spot_peer,Jgalt,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,101465,0.0544149404222901,peer,Jgalt,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,101465,74.77277494564233,baseline,Jgalt,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,101465,99.4217647405994,spot_baseline,Jgalt,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,101465,-1.4759289351697806e-05,relative_legacy,Jgalt,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,103777,-0.5144801183467005,spot_peer,datscilly,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,103777,-0.0045182078931133,relative_legacy,datscilly,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,103777,98.5500430304885,spot_baseline,datscilly,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,103777,-0.3140214571375507,peer,datscilly,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,103777,55.18049664434193,baseline,datscilly,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,115725,0.4950465732619168,peer,Sergio,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,115725,0.379779124189785,spot_peer,Sergio,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,115725,87.65607568899921,baseline,Sergio,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,115725,99.71117206751734,spot_baseline,Sergio,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,115725,0.0042538723017232,relative_legacy,Sergio,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,117580,0.2457127092793065,peer,MaciekK,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,117580,0.2683895297869232,spot_peer,MaciekK,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,117580,0.0019561870025108,relative_legacy,MaciekK,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,117580,84.49416412888053,baseline,MaciekK,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,117580,99.56654097361088,spot_baseline,MaciekK,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,119215,43.167862682536665,baseline,rappatoni,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,119215,0.0330382044764983,peer,rappatoni,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,119215,98.6956962524401,spot_baseline,rappatoni,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,119215,-0.402303318196436,spot_peer,rappatoni,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,119215,-0.0001560606973126,relative_legacy,rappatoni,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,120160,78.74562781821831,baseline,OpenSystem,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,120160,-0.0041741879645671,relative_legacy,OpenSystem,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,120160,-0.2944856398207168,peer,OpenSystem,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,120160,-0.290239656542569,spot_peer,OpenSystem,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,120160,98.84120257247882,spot_baseline,OpenSystem,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,126626,0.0854577845254644,peer,skmmcj,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,126626,0.0004034991189934,relative_legacy,skmmcj,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,126626,0.1568881545380358,spot_peer,skmmcj,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,126626,73.26175342229213,baseline,skmmcj,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,126626,99.4217647405994,spot_baseline,skmmcj,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,131306,0.0014406719665631,relative_legacy,draaglom,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,131306,49.60023124017007,baseline,draaglom,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,131306,0.1639545819411808,peer,draaglom,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,131306,0.379779124189785,spot_peer,draaglom,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,131306,99.71117206751734,spot_baseline,draaglom,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,133827,99.71117206751734,spot_baseline,partlygloudy,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,133827,0.2408994096974786,peer,partlygloudy,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,133827,0.002421821641989,relative_legacy,partlygloudy,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,133827,70.93252689364124,baseline,partlygloudy,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,133827,0.379779124189785,spot_peer,partlygloudy,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,139161,-0.5144801183467005,spot_peer,Zaldath,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,139161,-0.0088150780514759,relative_legacy,Zaldath,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,139161,-0.7100171066459304,peer,Zaldath,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28887,"Will a senolytic therapy be approved for commercial sale by the US FDA before January 1, 2025?",2024-10-18 22:22:15.921432+00,139161,88.80161070395492,baseline,Zaldath,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28948 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,101465,0.0450940087880199,spot_peer,Jgalt,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,101465,0.0932552835715958,peer,Jgalt,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,101465,73.58092777243152,baseline,Jgalt,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,101465,99.56654097361088,spot_baseline,Jgalt,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,101465,-0.0003209314077684,relative_legacy,Jgalt,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,103777,0.267761640645252,spot_peer,datscilly,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,103777,0.001385921926398,relative_legacy,datscilly,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,103777,99.85565831303312,spot_baseline,datscilly,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,103777,0.1815941338991382,peer,datscilly,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,103777,55.612897334769954,baseline,datscilly,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,115725,-0.6258757799954626,peer,Sergio,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,115725,-0.5135351775414936,spot_peer,Sergio,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,115725,85.25808918444802,baseline,Sergio,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,115725,98.84120257247882,spot_baseline,Sergio,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,115725,-0.0096808474126759,relative_legacy,Sergio,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,117580,-0.0038468957843259,peer,MaciekK,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,117580,0.1564836031908514,spot_peer,MaciekK,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,117580,-0.0019576921173594,relative_legacy,MaciekK,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,117580,84.25680273057887,baseline,MaciekK,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,117580,99.71117206751734,spot_baseline,MaciekK,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,119215,74.79119213626186,baseline,rappatoni,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,119215,0.2659227424471738,peer,rappatoni,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,119215,99.85565831303312,spot_baseline,rappatoni,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,119215,0.267761640645252,spot_peer,rappatoni,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,119215,0.0018701568934922,relative_legacy,rappatoni,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,120160,81.16134765112325,baseline,OpenSystem,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,120160,-0.0005028783554129,relative_legacy,OpenSystem,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,120160,0.1076063884032257,peer,OpenSystem,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,120160,0.0450940087880199,spot_peer,OpenSystem,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,120160,99.56654097361088,spot_baseline,OpenSystem,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,126626,0.2560312223217029,peer,skmmcj,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,126626,0.0018016985873103,relative_legacy,skmmcj,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,126626,0.267761640645252,spot_peer,skmmcj,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,126626,73.31223007559763,baseline,skmmcj,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,126626,99.85565831303312,spot_baseline,skmmcj,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,131306,-0.0008398490664688,relative_legacy,draaglom,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,131306,50.89235902476199,baseline,draaglom,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,131306,-0.0056721923675281,peer,draaglom,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,131306,-0.0664073664608865,spot_peer,draaglom,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,131306,99.4217647405994,spot_baseline,draaglom,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,133827,99.85565831303312,spot_baseline,partlygloudy,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,133827,0.2440145034531483,peer,partlygloudy,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,133827,0.0016678640707278,relative_legacy,partlygloudy,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,133827,72.78381209333351,baseline,partlygloudy,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,133827,0.267761640645252,spot_peer,partlygloudy,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,139161,-0.7377756393456263,spot_peer,Zaldath,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,139161,-0.0083606342252062,relative_legacy,Zaldath,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,139161,-0.5130294059487326,peer,Zaldath,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28888,"Will a nuclear weapon be detonated as an act of war before January 1, 2025? -",2024-10-18 22:22:15.930291+00,139161,89.79323468987417,baseline,Zaldath,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28949 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,101465,68.74230341291228,baseline,Jgalt,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,101465,-0.0005710116140386,relative_legacy,Jgalt,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,101465,97.08536543404836,spot_baseline,Jgalt,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,101465,0.0162118758887922,peer,Jgalt,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,101465,0.0291871106914476,spot_peer,Jgalt,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,103777,95.60566524124027,spot_baseline,datscilly,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,103777,53.99064137515287,baseline,datscilly,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,103777,-0.6498880748599929,peer,datscilly,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,103777,-0.0089300059014027,relative_legacy,datscilly,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,103777,-1.1104240189962298,spot_peer,datscilly,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,115725,94.11063109464314,spot_baseline,Sergio,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,115725,-1.7702661513839122,peer,Sergio,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,115725,70.39635661371872,baseline,Sergio,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,115725,-2.261844800723628,spot_peer,Sergio,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,115725,-0.023009284599463,relative_legacy,Sergio,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,117580,97.08536543404836,spot_baseline,MaciekK,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,117580,0.0291871106914476,spot_peer,MaciekK,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,117580,0.0016896427548846,relative_legacy,MaciekK,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,117580,0.2169854158310166,peer,MaciekK,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,117580,26.083721214261093,baseline,MaciekK,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,119215,0.0,relative_legacy,rappatoni,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,119215,-0.0079007810224752,peer,rappatoni,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,119215,17.004863964804834,baseline,rappatoni,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,119215,0.0291871106914476,spot_peer,rappatoni,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,119215,97.08536543404836,spot_baseline,rappatoni,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,120160,79.20500393212566,baseline,OpenSystem,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,120160,-0.0516872280216709,peer,OpenSystem,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,120160,-0.0012556342428919,relative_legacy,OpenSystem,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,120160,0.0291871106914476,spot_peer,OpenSystem,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,120160,97.08536543404836,spot_baseline,OpenSystem,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,126626,0.0184576177649502,relative_legacy,skmmcj,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,126626,1.541990835006948,peer,skmmcj,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,126626,99.71117206751734,spot_baseline,skmmcj,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,126626,2.051487627007723,spot_peer,skmmcj,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,126626,72.95167563653122,baseline,skmmcj,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,131306,98.5500430304885,spot_baseline,draaglom,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,131306,50.63315950158843,baseline,draaglom,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,131306,0.0059797901690418,relative_legacy,draaglom,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,131306,0.5664570793172925,peer,draaglom,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,131306,1.1572283844712383,spot_peer,draaglom,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,133827,-1.1104240189962298,spot_peer,partlygloudy,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,133827,-0.0110913649563284,relative_legacy,partlygloudy,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,133827,68.35462848259482,baseline,partlygloudy,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,133827,95.60566524124027,spot_baseline,partlygloudy,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,133827,-0.8279834095288139,peer,partlygloudy,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,139161,0.0106936224001335,relative_legacy,Zaldath,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,139161,0.9660804387727642,peer,Zaldath,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,139161,1.1572283844712383,spot_peer,Zaldath,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28889,"Will a book written by a language model make the NY Times Best Seller list before 2025? - -",2024-10-18 22:22:15.938125+00,139161,89.38808677784625,baseline,Zaldath,no,2024-10-22 14:30:00+00,2024-10-22 14:30:00+00,1.0,28950 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,101465,69.8097214119002,baseline,Jgalt,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,101465,-0.0684462161561825,relative_legacy,Jgalt,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,101465,81.55754288625727,spot_baseline,Jgalt,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,101465,-4.179405357460785,peer,Jgalt,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,101465,-5.131892195843581,spot_peer,Jgalt,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,103777,87.97057662822883,spot_baseline,datscilly,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,103777,50.063647955775394,baseline,datscilly,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,103777,0.7241617289574569,peer,datscilly,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,103777,0.0005808269477255,relative_legacy,datscilly,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,103777,-0.1928074657509262,spot_peer,datscilly,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,115725,84.79969065549501,spot_baseline,Sergio,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,115725,-1.8375193165146195,peer,Sergio,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,115725,76.21696284026692,baseline,Sergio,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,115725,-2.634908212281505,spot_peer,Sergio,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,115725,-0.0296592004151735,relative_legacy,Sergio,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,117580,92.5999418556223,spot_baseline,MaciekK,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,117580,3.3725608177491333,spot_peer,MaciekK,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,117580,0.0023967414687596,relative_legacy,MaciekK,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,117580,0.2054741060834508,peer,MaciekK,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,117580,4.37514301030524,baseline,MaciekK,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,119215,0.0149627282328943,relative_legacy,rappatoni,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,119215,1.390112575761492,peer,rappatoni,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,119215,29.626617089681066,baseline,rappatoni,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,119215,3.3725608177491333,spot_peer,rappatoni,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,119215,92.5999418556223,spot_baseline,rappatoni,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,120160,47.24940521657475,baseline,OpenSystem,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,120160,1.2566860959912274,peer,OpenSystem,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,120160,0.0083912254691923,relative_legacy,OpenSystem,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,120160,1.0084054347174691,spot_peer,OpenSystem,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,120160,89.53026213333065,spot_baseline,OpenSystem,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,126626,-0.0011091474254466,relative_legacy,skmmcj,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,126626,-0.0782337107199277,peer,skmmcj,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,126626,92.5999418556223,spot_baseline,skmmcj,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,126626,3.3725608177491333,spot_peer,skmmcj,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,126626,3.238151733875357,baseline,skmmcj,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,131306,86.39384504239716,spot_baseline,draaglom,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,131306,1.980971162386508,baseline,draaglom,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,131306,-0.0023759323556584,relative_legacy,draaglom,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,131306,-0.1860151996678915,peer,draaglom,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,131306,-1.4071486359942942,spot_peer,draaglom,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,133827,-5.131892195843581,spot_peer,partlygloudy,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,133827,-0.0421342566629786,relative_legacy,partlygloudy,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,133827,66.25855501276574,baseline,partlygloudy,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,133827,81.55754288625727,spot_baseline,partlygloudy,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,133827,-2.322573330255624,peer,partlygloudy,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,139161,0.0450271409509199,relative_legacy,Zaldath,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,139161,5.027312407825212,peer,Zaldath,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,139161,3.3725608177491333,spot_peer,Zaldath,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,139161,92.5999418556223,spot_baseline,Zaldath,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28942,"Will IBM lower its Pay-as-you-go quantum computing prices before January 1, 2025?",2024-10-21 14:17:29.631621+00,139161,74.11133155413738,baseline,Zaldath,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29017 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,101465,-0.1867754986912412,relative_legacy,Jgalt,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,101465,-49.0816016497745,baseline,Jgalt,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,101465,-35.31799662485355,spot_peer,Jgalt,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,101465,-47.39311883324123,spot_baseline,Jgalt,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,101465,-18.70739133201016,peer,Jgalt,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,103777,26.303440583379377,spot_baseline,datscilly,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,103777,22.149886048820385,spot_peer,datscilly,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,103777,14.024231769812438,baseline,datscilly,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,103777,17.263361411096167,peer,datscilly,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,103777,0.2233986003981214,relative_legacy,datscilly,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,115725,0.0992886578485936,relative_legacy,Sergio,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,115725,-11.980614430362872,baseline,Sergio,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,115725,-15.200309344505014,spot_baseline,Sergio,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,115725,6.624274373816825,peer,Sergio,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,115725,-10.214347102004966,spot_peer,Sergio,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,117580,0.0098683437051347,relative_legacy,MaciekK,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,117580,26.303440583379377,spot_baseline,MaciekK,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,117580,0.8142934425320577,peer,MaciekK,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,117580,0.8729374667718066,baseline,MaciekK,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,117580,22.149886048820385,spot_peer,MaciekK,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,119215,-5.32227200878435,spot_peer,rappatoni,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,119215,-0.0018235637056637,relative_legacy,rappatoni,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,119215,-3.046688654344716,baseline,rappatoni,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,119215,-8.926733809708741,spot_baseline,rappatoni,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,119215,0.754910690650622,peer,rappatoni,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,120160,1.6387109095005004,spot_peer,OpenSystem,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,120160,8.870564138593112,peer,OpenSystem,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,120160,0.1225442584266502,relative_legacy,OpenSystem,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,120160,0.0,baseline,OpenSystem,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,120160,0.0,spot_baseline,OpenSystem,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,126626,0.8268995725801846,peer,skmmcj,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,126626,0.0,spot_baseline,skmmcj,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,126626,1.6387109095005004,spot_peer,skmmcj,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,126626,0.0042387315312593,relative_legacy,skmmcj,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,126626,-1.317750485416055,baseline,skmmcj,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,131306,0.4618921457460919,peer,draaglom,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,131306,0.0052361191696593,relative_legacy,draaglom,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,131306,26.742360432349106,spot_peer,draaglom,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,131306,32.19280948873624,spot_baseline,draaglom,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,131306,0.523611916965933,baseline,draaglom,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,139161,-23.464938613348085,spot_peer,Zaldath,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,139161,-40.019041833655,baseline,Zaldath,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,139161,-0.1493503400803339,relative_legacy,Zaldath,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,139161,-32.19280948873623,spot_baseline,Zaldath,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28943,Will the Liberal Democratic Party win a majority of seats in the 2024 Japanese general election?,2024-10-21 14:17:29.643258+00,139161,-16.90880444300487,peer,Zaldath,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29018 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,101465,-0.308160052398394,relative_legacy,Jgalt,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,101465,-150.4445812596919,baseline,Jgalt,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,101465,-57.62350080912294,spot_peer,Jgalt,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,101465,-173.6965594166206,spot_baseline,Jgalt,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,101465,-19.096469041768863,peer,Jgalt,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,103777,-73.69655941662059,spot_baseline,datscilly,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,103777,20.35555700387091,spot_peer,datscilly,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,103777,-42.11983476214009,baseline,datscilly,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,103777,18.505799422573677,peer,datscilly,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,103777,0.0801747415765814,relative_legacy,datscilly,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,115725,-0.3654096941433601,relative_legacy,Sergio,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,115725,-168.42817859509432,baseline,Sergio,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,115725,-132.19280948873626,spot_baseline,Sergio,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,115725,-25.01880562432798,peer,Sergio,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,115725,-25.259267658297627,spot_peer,Sergio,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,117580,0.0088220958843707,relative_legacy,MaciekK,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,117580,-55.63933485243855,spot_baseline,MaciekK,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,117580,1.052911210207748,peer,MaciekK,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,117580,-1.6862434105205015,baseline,MaciekK,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,117580,34.43641058619655,spot_peer,MaciekK,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,119215,-43.54264722679726,spot_peer,rappatoni,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,119215,-0.3704982350744581,relative_legacy,rappatoni,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,119215,-73.42449014604512,baseline,rappatoni,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,119215,-155.6393348524385,spot_baseline,rappatoni,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,119215,-23.9530938690366,peer,rappatoni,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,120160,65.97038166603937,spot_peer,OpenSystem,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,120160,13.939573355674051,peer,OpenSystem,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,120160,0.147871936233347,relative_legacy,OpenSystem,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,120160,-2.5864973432440075,baseline,OpenSystem,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,120160,-15.200309344505014,spot_baseline,OpenSystem,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,126626,0.7803586527208238,peer,skmmcj,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,126626,-118.44245711374276,spot_baseline,skmmcj,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,126626,-14.536872430311076,spot_peer,skmmcj,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,126626,-0.0278057653605835,relative_legacy,skmmcj,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,126626,-24.64782954753997,baseline,skmmcj,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,131306,-0.0019816832475187,peer,draaglom,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,131306,0.0,relative_legacy,draaglom,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,131306,-0.1556181354490084,spot_peer,draaglom,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,131306,-100.0,spot_baseline,draaglom,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,131306,-1.2734269317653444,baseline,draaglom,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,139161,20.35555700387091,spot_peer,Zaldath,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,139161,-81.83797975294358,baseline,Zaldath,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,139161,0.2774281806429788,relative_legacy,Zaldath,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,139161,-73.69655941662059,spot_baseline,Zaldath,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28944,Will the Botswana Democratic Party win the 2024 general election?,2024-10-21 14:17:29.651167+00,139161,33.79170757720463,peer,Zaldath,no,2024-10-23 14:30:00+00,2024-10-23 14:30:00+00,1.0,29019 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,101465,70.61865682132937,baseline,Jgalt,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,101465,7.684539234290457e-06,relative_legacy,Jgalt,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,101465,94.11063109464314,spot_baseline,Jgalt,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,101465,-0.3312324372947546,peer,Jgalt,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,101465,-0.0610937749156163,spot_peer,Jgalt,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,103777,92.5999418556223,spot_baseline,datscilly,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,103777,51.107793668321264,baseline,datscilly,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,103777,-0.5136412868909157,peer,datscilly,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,103777,-0.0044838151247215,relative_legacy,datscilly,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,103777,-1.2245715379484352,spot_peer,datscilly,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,115725,91.07326619029126,spot_baseline,Sergio,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,115725,-2.0113325442604206,peer,Sergio,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,115725,76.376102250282,baseline,Sergio,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,115725,-2.40036146356366,spot_peer,Sergio,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,115725,-0.0185082868201047,relative_legacy,Sergio,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,117580,97.08536543404836,spot_baseline,MaciekK,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,117580,2.229938136499464,spot_peer,MaciekK,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,117580,0.0136158025995758,relative_legacy,MaciekK,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,117580,0.953543513482208,peer,MaciekK,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,117580,50.73932589941012,baseline,MaciekK,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,119215,-0.0136554544247684,relative_legacy,rappatoni,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,119215,-1.0649806915221598,peer,rappatoni,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,119215,29.85705343181772,baseline,rappatoni,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,119215,-3.350034861170148,spot_peer,rappatoni,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,119215,89.8401859992193,spot_baseline,rappatoni,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,120160,61.56345663128734,baseline,OpenSystem,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,120160,-0.5908298634820229,peer,OpenSystem,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,120160,-0.0044838151247215,relative_legacy,OpenSystem,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,120160,-1.2245715379484352,spot_peer,OpenSystem,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,120160,92.5999418556223,spot_baseline,OpenSystem,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,126626,0.0121535890089806,relative_legacy,skmmcj,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,126626,0.980386903994034,peer,skmmcj,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,126626,97.81956296816516,spot_baseline,skmmcj,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,126626,2.795390303996277,spot_peer,skmmcj,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,126626,31.183473526301515,baseline,skmmcj,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,131306,97.08536543404836,spot_baseline,draaglom,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,131306,2.608044253555852,baseline,draaglom,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,131306,0.0007545023753333,relative_legacy,draaglom,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,131306,0.0568193901532596,peer,draaglom,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,131306,2.229938136499464,spot_peer,draaglom,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,133827,-1.2245715379484352,spot_peer,partlygloudy,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,133827,-0.0004065388237558,relative_legacy,partlygloudy,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,133827,2.5390436588394336,baseline,partlygloudy,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,133827,92.5999418556223,spot_baseline,partlygloudy,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,133827,-0.0331028567984607,peer,partlygloudy,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,139161,0.031910538131293,relative_legacy,Zaldath,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,139161,2.5543698726192194,peer,Zaldath,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,139161,2.229938136499464,spot_peer,Zaldath,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,139161,97.08536543404836,spot_baseline,Zaldath,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28972,"At the end of 2024, will Wikipedia still list Brazil as ""currently"" blocking access to Twitter/X?",2024-10-22 12:50:39.432837+00,139161,86.40353896439501,baseline,Zaldath,no,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29051 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,101465,37.27987037245919,spot_peer,Jgalt,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,101465,38.23561662525928,peer,Jgalt,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,101465,-14.09248311681148,baseline,Jgalt,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,101465,-39.592867633113926,spot_baseline,Jgalt,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,101465,0.4632854711099696,relative_legacy,Jgalt,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,103777,-0.6922733744359875,spot_peer,datscilly,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,103777,0.0052845030959354,relative_legacy,datscilly,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,103777,-88.8968687611256,spot_baseline,datscilly,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,103777,-2.486421912284883,peer,datscilly,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,103777,-51.032365508788175,baseline,datscilly,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,115725,-6.448976530729712,peer,Sergio,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,115725,11.014450587544696,spot_peer,Sergio,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,115725,-62.95610517795157,baseline,Sergio,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,115725,-73.69655941662063,spot_baseline,Sergio,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,115725,-0.0227906743241727,relative_legacy,Sergio,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,117580,-7.436633735982603,peer,MaciekK,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,117580,-9.24350016733914,spot_peer,MaciekK,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,117580,-0.0564077124819857,relative_legacy,MaciekK,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,117580,-56.798805115675485,baseline,MaciekK,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,117580,-100.0,spot_baseline,MaciekK,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,119215,-66.11394622345564,baseline,rappatoni,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,119215,-25.667897395004168,peer,rappatoni,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,119215,-173.6965594166206,spot_baseline,rappatoni,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,119215,-66.00190280800477,spot_peer,rappatoni,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,119215,-0.315268539046841,relative_legacy,rappatoni,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,120160,-37.3063558778829,baseline,OpenSystem,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,120160,-0.0077775047810806,relative_legacy,OpenSystem,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,120160,-1.3455365446011422,peer,OpenSystem,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,120160,-9.24350016733914,spot_peer,OpenSystem,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,120160,-100.0,spot_baseline,OpenSystem,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,126626,-0.7042114628265259,peer,skmmcj,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,126626,-0.0014985940575109,relative_legacy,skmmcj,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,126626,-9.24350016733914,spot_peer,skmmcj,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,126626,-32.652840659160304,baseline,skmmcj,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,126626,-100.0,spot_baseline,skmmcj,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,131306,0.0036616227929754,relative_legacy,draaglom,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,131306,-0.8336823085996471,baseline,draaglom,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,131306,0.3210677528579743,peer,draaglom,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,131306,56.066129266229645,spot_peer,draaglom,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,131306,-15.200309344504996,spot_baseline,draaglom,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,133827,-88.8968687611256,spot_baseline,partlygloudy,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,133827,0.0963447120477325,peer,partlygloudy,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,133827,0.0011344079769906,relative_legacy,partlygloudy,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,133827,-2.1081047433660274,baseline,partlygloudy,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,133827,-0.6922733744359875,spot_peer,partlygloudy,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,139161,-9.24350016733914,spot_peer,Zaldath,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,139161,0.0854084640833586,relative_legacy,Zaldath,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,139161,5.436648491264041,peer,Zaldath,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,139161,-100.0,spot_baseline,Zaldath,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -28973,"Will Intel get dropped from the Dow Jones Industrial Average before January 1, 2025?",2024-10-22 12:50:39.436701+00,139161,-53.36311567925132,baseline,Zaldath,yes,2024-10-24 14:30:00+00,2024-10-24 14:30:00+00,1.0,29052 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,101465,36.591049199736766,baseline,Jgalt,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,101465,-0.223675768688413,relative_legacy,Jgalt,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,101465,56.55971758542251,spot_baseline,Jgalt,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,101465,-15.749544571139875,peer,Jgalt,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,101465,-9.004341870715226,spot_peer,Jgalt,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,103777,42.22330006830478,spot_baseline,datscilly,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,103777,29.30028679051085,baseline,datscilly,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,103777,-9.142165222291547,peer,datscilly,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,103777,-0.1333892091203535,relative_legacy,datscilly,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,103777,-20.04572784996008,spot_peer,datscilly,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,115725,67.80719051126377,spot_baseline,Sergio,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,115725,8.012870448989961,peer,Sergio,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,115725,65.9227112845335,baseline,Sergio,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,115725,-0.3419483740805706,spot_peer,Sergio,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,115725,0.0441785367251768,relative_legacy,Sergio,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,117580,67.80719051126377,spot_baseline,MaciekK,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,117580,-0.3419483740805706,spot_peer,MaciekK,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,117580,-0.0020073867709336,relative_legacy,MaciekK,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,117580,0.1022641045264858,peer,MaciekK,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,117580,5.534892721711332,baseline,MaciekK,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,119215,0.0303554650354426,relative_legacy,rappatoni,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,119215,3.408067899405076,peer,rappatoni,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,119215,19.174269477239328,baseline,rappatoni,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,119215,10.248071604177742,spot_peer,rappatoni,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,119215,81.55754288625727,spot_baseline,rappatoni,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,120160,39.09873421442013,baseline,OpenSystem,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,120160,0.2921867007843771,peer,OpenSystem,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,120160,-0.0226169457163206,relative_legacy,OpenSystem,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,120160,-4.588749798546997,spot_peer,OpenSystem,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,120160,62.29303509201767,spot_baseline,OpenSystem,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,126626,0.0138158534889063,relative_legacy,skmmcj,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,126626,2.7294189163630542,peer,skmmcj,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,126626,69.59938131099001,spot_baseline,skmmcj,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,126626,1.0383316257591078,spot_peer,skmmcj,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,126626,33.56589029548059,baseline,skmmcj,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,131306,81.55754288625727,spot_baseline,draaglom,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,131306,18.478505775619887,baseline,draaglom,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,131306,0.0060299157878305,relative_legacy,draaglom,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,131306,1.622433419777907,peer,draaglom,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,131306,10.248071604177742,spot_peer,draaglom,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,133827,6.394120716634411,spot_peer,partlygloudy,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,133827,0.0003015404422733,relative_legacy,partlygloudy,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,133827,1.1205179423736356,baseline,partlygloudy,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,133827,76.55347463629771,spot_baseline,partlygloudy,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,133827,0.1137795005084505,peer,partlygloudy,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,139161,0.0514660800754635,relative_legacy,Zaldath,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,139161,8.610688803076087,peer,Zaldath,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,139161,6.394120716634411,spot_peer,Zaldath,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,139161,76.55347463629771,spot_baseline,Zaldath,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29044,Will Eric Adams be Mayor of New York City on the 1st of January 2025?,2024-10-23 13:16:44.809094+00,139161,64.09422640002579,baseline,Zaldath,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29132 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,101465,-35.30679231262045,baseline,Jgalt,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,101465,-0.2932660767904453,relative_legacy,Jgalt,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,101465,-51.45731728297583,spot_baseline,Jgalt,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,101465,-17.623179892379703,peer,Jgalt,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,101465,-9.78724682437598,spot_peer,Jgalt,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,103777,0.0,spot_baseline,datscilly,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,103777,-0.4431001955327485,baseline,datscilly,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,103777,11.537442685624928,peer,datscilly,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,103777,0.0399659714367411,relative_legacy,datscilly,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,103777,29.84330250214984,spot_peer,datscilly,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,115725,-32.19280948873623,spot_baseline,Sergio,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,115725,-15.392154078247597,peer,Sergio,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,115725,-28.76025870418054,baseline,Sergio,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,115725,5.04957457834878,spot_peer,Sergio,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,115725,-0.2403811222020577,relative_legacy,Sergio,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,117580,-51.45731728297583,spot_baseline,MaciekK,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,117580,-9.78724682437598,spot_peer,MaciekK,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,117580,-0.0001074802571498,relative_legacy,MaciekK,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,117580,-0.3639680667346674,peer,MaciekK,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,117580,-1.6596978567410814,baseline,MaciekK,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,119215,-0.1466082694398284,relative_legacy,rappatoni,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,119215,-9.975854281417806,peer,rappatoni,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,119215,-18.750211873810176,baseline,rappatoni,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,119215,-34.58097474817704,spot_peer,rappatoni,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,119215,-83.65012677171204,spot_baseline,rappatoni,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,120160,-1.3333780004060858,baseline,OpenSystem,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,120160,10.129010642952831,peer,OpenSystem,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,120160,0.0275600692942125,relative_legacy,OpenSystem,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,120160,18.136578540169157,spot_peer,OpenSystem,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,120160,-15.200309344504996,spot_baseline,OpenSystem,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,126626,0.009942129656031,relative_legacy,skmmcj,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,126626,1.470364715686101,peer,skmmcj,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,126626,-18.442457113742744,spot_baseline,skmmcj,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,126626,15.639594556607088,spot_peer,skmmcj,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,126626,-3.095171964224232,baseline,skmmcj,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,131306,-59.94620704162712,spot_baseline,draaglom,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,131306,-0.528733515920318,baseline,draaglom,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,131306,-0.0010457339086383,relative_legacy,draaglom,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,131306,-0.1638199156049305,peer,draaglom,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,131306,-16.325080160257453,spot_peer,draaglom,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,133827,-16.325080160257453,spot_peer,partlygloudy,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,133827,-0.0005085869628841,relative_legacy,partlygloudy,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,133827,-0.3340946884918583,baseline,partlygloudy,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,133827,-59.94620704162712,spot_baseline,partlygloudy,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,133827,-0.0927230188648484,peer,partlygloudy,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,139161,0.1045424708781014,relative_legacy,Zaldath,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,139161,20.47488120898564,peer,Zaldath,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,139161,18.136578540169157,spot_peer,Zaldath,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,139161,-15.200309344504996,spot_baseline,Zaldath,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29045,"Will China officially announce export restrictions on any additional metals before January 1, 2025?",2024-10-23 13:16:44.816723+00,139161,7.767528654467439,baseline,Zaldath,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29133 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,101465,-38.837464655046425,baseline,Jgalt,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,101465,-0.0329669932981494,relative_legacy,Jgalt,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,101465,-47.39311883324123,spot_baseline,Jgalt,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,101465,4.815267166073632,peer,Jgalt,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,101465,-2.901689911959399,spot_peer,Jgalt,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,103777,-32.19280948873623,spot_baseline,datscilly,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,103777,-9.811360291724808,baseline,datscilly,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,103777,4.156330329627957,peer,datscilly,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,103777,0.0133587899724254,relative_legacy,datscilly,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,103777,8.805034050021312,spot_peer,datscilly,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,115725,-32.19280948873623,spot_baseline,Sergio,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,115725,22.206648110411315,peer,Sergio,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,115725,-29.38710301362905,baseline,Sergio,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,115725,8.805034050021312,spot_peer,Sergio,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,115725,0.1318412794029671,relative_legacy,Sergio,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,117580,-73.69655941662059,spot_baseline,MaciekK,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,117580,-23.15964066684323,spot_peer,MaciekK,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,117580,-0.0134319152620626,relative_legacy,MaciekK,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,117580,-0.8492650281414524,peer,MaciekK,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,117580,-3.673802840750251,baseline,MaciekK,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,119215,0.0029615078149566,relative_legacy,rappatoni,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,119215,1.7227327316048822,peer,rappatoni,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,119215,-7.893890984038554,baseline,rappatoni,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,119215,-12.56962068858494,spot_peer,rappatoni,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,119215,-59.94620704162715,spot_baseline,rappatoni,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,120160,-7.7557401722540655,baseline,OpenSystem,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,120160,2.9316985655071903,peer,OpenSystem,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,120160,0.0133587899724254,relative_legacy,OpenSystem,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,120160,8.805034050021312,spot_peer,OpenSystem,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,120160,-32.19280948873623,spot_baseline,OpenSystem,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,126626,-0.007685669601847,relative_legacy,skmmcj,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,126626,0.6005323324965689,peer,skmmcj,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,126626,-43.440282414577496,spot_baseline,skmmcj,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,126626,0.142640553386662,spot_peer,skmmcj,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,126626,-8.12679556964314,baseline,skmmcj,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,131306,0.0,spot_baseline,draaglom,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,131306,-0.0461873988825056,baseline,draaglom,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,131306,6.926809730610362e-05,relative_legacy,draaglom,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,131306,0.0208783964514783,peer,draaglom,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,131306,33.59876197382239,spot_peer,draaglom,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,133827,21.892038011841677,spot_peer,partlygloudy,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,133827,0.0013901412681238,relative_legacy,partlygloudy,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,133827,-0.0023202683441124,baseline,partlygloudy,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,133827,-15.200309344505014,spot_baseline,partlygloudy,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,133827,0.1287514905233156,peer,partlygloudy,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,139161,-0.4467685561486322,relative_legacy,Zaldath,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,139161,-35.73357409455491,peer,Zaldath,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,139161,-43.41759142172709,spot_peer,Zaldath,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,139161,-100.0,spot_baseline,Zaldath,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29046,"Will the US Steel/Nippon Steel merger collapse before January 1, 2025?",2024-10-23 13:16:44.823978+00,139161,-89.01100423512563,baseline,Zaldath,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29134 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,101465,81.55754288625727,spot_baseline,Jgalt,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,101465,1.469405357423334,peer,Jgalt,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,101465,0.300114663426255,spot_peer,Jgalt,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,101465,67.62285692064917,baseline,Jgalt,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,101465,0.0287088808274776,relative_legacy,Jgalt,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,103777,-3.5538362241170924,spot_peer,datscilly,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,103777,76.55347463629771,spot_baseline,datscilly,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,103777,24.849426140783823,baseline,datscilly,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,103777,-0.7445606476681766,peer,datscilly,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,103777,-0.0055270114590748,relative_legacy,datscilly,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,115725,-4.868775962672958,spot_peer,Sergio,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,115725,67.90307057915491,baseline,Sergio,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,115725,74.84612330040356,spot_baseline,Sergio,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,115725,-0.0308087247596082,relative_legacy,Sergio,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,115725,-4.101646389839796,peer,Sergio,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,117580,5.23919939351891,spot_peer,MaciekK,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,117580,0.0047046961340029,relative_legacy,MaciekK,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,117580,0.4450304624818892,peer,MaciekK,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,117580,6.492496494106883,baseline,MaciekK,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,117580,87.97057662822883,spot_baseline,MaciekK,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,119215,0.3501103509249411,peer,rappatoni,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,119215,17.854954095214747,baseline,rappatoni,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,119215,81.55754288625727,spot_baseline,rappatoni,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,119215,0.0054281259482592,relative_legacy,rappatoni,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,119215,0.300114663426255,spot_peer,rappatoni,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,120160,76.55347463629771,spot_baseline,OpenSystem,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,120160,52.37491538671154,baseline,OpenSystem,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,120160,-1.703498624300214,peer,OpenSystem,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,120160,-0.0055270114590748,relative_legacy,OpenSystem,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,120160,-3.5538362241170924,spot_peer,OpenSystem,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,126626,-0.201392506847965,peer,skmmcj,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,126626,14.146370616838416,baseline,skmmcj,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,126626,-2.254276250429164,spot_peer,skmmcj,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,126626,-0.002476133671772,relative_legacy,skmmcj,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,126626,78.24085649273731,spot_baseline,skmmcj,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,131306,2.797098646988312,spot_peer,draaglom,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,131306,84.79969065549501,spot_baseline,draaglom,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,131306,0.0263100028080304,peer,draaglom,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,131306,1.0615507177963035,baseline,draaglom,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,131306,0.0002010599435881,relative_legacy,draaglom,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,133827,0.0,relative_legacy,partlygloudy,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,133827,0.0083481999773044,peer,partlygloudy,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,133827,84.79969065549501,spot_baseline,partlygloudy,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,133827,2.797098646988312,spot_peer,partlygloudy,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,133827,0.2530925308508018,baseline,partlygloudy,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,139161,4.451893795040662,peer,Zaldath,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,139161,79.55516419349642,baseline,Zaldath,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,139161,0.0594935857440946,relative_legacy,Zaldath,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,139161,2.797098646988312,spot_peer,Zaldath,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29047,"Will the Russian government officially ban YouTube before January 1, 2025?",2024-10-23 13:16:44.831331+00,139161,84.79969065549501,spot_baseline,Zaldath,no,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29135 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,101465,92.328394751729,baseline,Jgalt,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,101465,0.047852772346498,relative_legacy,Jgalt,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,101465,97.08536543404836,spot_baseline,Jgalt,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,101465,3.4664435127407263,peer,Jgalt,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,101465,6.602277435251465,spot_peer,Jgalt,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,103777,91.07326619029126,spot_baseline,datscilly,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,103777,50.95040100260823,baseline,datscilly,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,103777,-0.688459628709491,peer,datscilly,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,103777,-0.000137127623553,relative_legacy,datscilly,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,103777,1.971977835188346,spot_peer,datscilly,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,115725,92.5999418556223,spot_baseline,Sergio,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,115725,-0.4683379163016213,peer,Sergio,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,115725,87.54205516783162,baseline,Sergio,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,115725,3.1477677608035743,spot_peer,Sergio,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,115725,0.0045522116706196,relative_legacy,Sergio,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,117580,95.60566524124027,spot_baseline,MaciekK,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,117580,5.462666305563799,spot_peer,MaciekK,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,117580,0.0252191112388137,relative_legacy,MaciekK,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,117580,1.4551690303476126,peer,MaciekK,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,117580,62.10619111942952,baseline,MaciekK,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,119215,-0.0018115461833554,relative_legacy,rappatoni,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,119215,-0.1475244539428169,peer,rappatoni,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,119215,0.8516845139777843,baseline,rappatoni,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,119215,-12.25859774707368,spot_peer,rappatoni,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,119215,72.59592345091876,spot_baseline,rappatoni,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,120160,48.22573998594775,baseline,OpenSystem,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,120160,-0.6177528061353189,peer,OpenSystem,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,120160,0.0003221248581737,relative_legacy,OpenSystem,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,120160,1.971977835188346,spot_peer,OpenSystem,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,120160,91.07326619029126,spot_baseline,OpenSystem,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,126626,-0.0124891508089646,relative_legacy,skmmcj,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,126626,-1.2448712175350092,peer,skmmcj,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,126626,87.97057662822883,spot_baseline,skmmcj,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,126626,-0.4176005226964739,spot_peer,skmmcj,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,126626,24.91450299131727,baseline,skmmcj,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,131306,87.97057662822883,spot_baseline,draaglom,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,131306,44.38352058543165,baseline,draaglom,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,131306,-0.0002990382997813,relative_legacy,draaglom,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,131306,-0.5886248221721635,peer,draaglom,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,131306,-0.4176005226964739,spot_peer,draaglom,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,133827,-9.210636140332465,spot_peer,partlygloudy,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,133827,-0.000980938135545,relative_legacy,partlygloudy,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,133827,0.6844332102436488,baseline,partlygloudy,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,133827,76.55347463629771,spot_baseline,partlygloudy,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,133827,-0.0795298358948462,peer,partlygloudy,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,139161,-0.0017170851972556,relative_legacy,Zaldath,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,139161,-1.086511862397093,peer,Zaldath,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,139161,3.1477677608035743,spot_peer,Zaldath,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,139161,92.5999418556223,spot_baseline,Zaldath,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29049,Will Kamala Harris win all 7 battleground states in the 2024 US presidential election?,2024-10-23 13:18:32.226014+00,139161,83.6453330660163,baseline,Zaldath,no,2024-10-25 14:30:00+00,2024-10-25 14:30:00+00,1.0,29137 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,101465,76.55347463629771,spot_baseline,Jgalt,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,101465,-0.0502519496154984,relative_legacy,Jgalt,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,101465,1.6865914460892983,spot_peer,Jgalt,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,101465,60.95625487258018,baseline,Jgalt,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,101465,-1.5621174098888873,peer,Jgalt,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,103777,0.3716517075334413,spot_peer,datscilly,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,103777,21.407575841222037,baseline,datscilly,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,103777,1.29371323390533,peer,datscilly,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,103777,74.84612330040356,spot_baseline,datscilly,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,103777,-0.0027218547245742,relative_legacy,datscilly,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,115725,-15.22361025856906,spot_peer,Sergio,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,115725,-0.1701048751384178,relative_legacy,Sergio,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,115725,-12.783645830176644,peer,Sergio,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,115725,54.59683691052925,spot_baseline,Sergio,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,115725,49.42506475354577,baseline,Sergio,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,117580,84.79969065549501,spot_baseline,MaciekK,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,117580,0.0026673063167467,relative_legacy,MaciekK,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,117580,0.359748452752241,peer,MaciekK,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,117580,8.037526317194702,spot_peer,MaciekK,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,117580,3.195928849810073,baseline,MaciekK,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,119215,84.79969065549501,spot_baseline,rappatoni,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,119215,0.015361229295003,relative_legacy,rappatoni,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,119215,8.037526317194702,spot_peer,rappatoni,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,119215,2.7461071658692777,peer,rappatoni,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,119215,18.62026377016508,baseline,rappatoni,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,120160,15.013462225751589,baseline,OpenSystem,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,120160,-1.3067614149591067,peer,OpenSystem,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,120160,-0.0342053845349954,relative_legacy,OpenSystem,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,120160,-5.049477644625674,spot_peer,OpenSystem,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,120160,67.80719051126377,spot_baseline,OpenSystem,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,126626,79.90873060740036,spot_baseline,skmmcj,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,126626,4.403168799343319,peer,skmmcj,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,126626,40.17851181333176,baseline,skmmcj,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,126626,0.0132616569329915,relative_legacy,skmmcj,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,126626,4.27068724211899,spot_peer,skmmcj,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,131306,64.15460290875237,spot_baseline,draaglom,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,131306,9.868120358521445,baseline,draaglom,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,131306,-0.0897232295334681,relative_legacy,draaglom,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,131306,-7.862567420657879,spot_peer,draaglom,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,131306,-5.677842921872282,peer,draaglom,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,133827,-0.0040710269914689,peer,partlygloudy,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,133827,0.0,relative_legacy,partlygloudy,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,133827,0.1260042871902716,baseline,partlygloudy,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,133827,-2.3058540234732896,spot_peer,partlygloudy,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,133827,71.36958148433588,spot_baseline,partlygloudy,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,139161,0.1000990889355993,relative_legacy,Zaldath,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,139161,12.531700952018236,peer,Zaldath,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,139161,8.037526317194702,spot_peer,Zaldath,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,139161,84.79969065549501,spot_baseline,Zaldath,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29053,"Will any more United Kingdom MPs be suspended from their party, resign, or change allegiance before 2025?",2024-10-23 21:00:27.436581+00,139161,75.80757153902235,baseline,Zaldath,yes,2024-10-26 14:30:00+00,2024-10-26 14:30:00+00,1.0,29143 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,101465,-0.2576113613359539,spot_peer,Jgalt,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,101465,76.33370587926312,baseline,Jgalt,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,101465,-0.1795173219119598,peer,Jgalt,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,101465,98.5500430304885,spot_baseline,Jgalt,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,101465,-0.001475434153285,relative_legacy,Jgalt,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,103777,0.0,relative_legacy,datscilly,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,103777,-0.0333708995318218,spot_peer,datscilly,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,103777,43.10899338609586,baseline,datscilly,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,103777,-0.012438232338014,peer,datscilly,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,103777,98.84120257247882,spot_baseline,datscilly,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,115725,98.6956962524401,spot_baseline,Sergio,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,115725,96.61123160950268,baseline,Sergio,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,115725,-0.1454345611856892,spot_peer,Sergio,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,115725,-0.1573327468514472,peer,Sergio,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,115725,-0.001056399792912,relative_legacy,Sergio,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,117580,12.762883223613928,baseline,MaciekK,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,117580,0.0006616349500239,relative_legacy,MaciekK,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,117580,0.0446791660289588,peer,MaciekK,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,117580,0.3021435308814977,spot_peer,MaciekK,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,117580,99.27684307689242,spot_baseline,MaciekK,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,119215,0.0785798516126129,spot_peer,rappatoni,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,119215,0.000549397741368,peer,rappatoni,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,119215,98.98656228662868,spot_baseline,rappatoni,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,119215,1.0162948516821197e-05,relative_legacy,rappatoni,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,119215,0.6920730012849098,baseline,rappatoni,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,120160,83.25557722175918,baseline,OpenSystem,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,120160,0.009397418554757,peer,OpenSystem,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,120160,0.00077979437415,relative_legacy,OpenSystem,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,120160,-0.0333708995318218,spot_peer,OpenSystem,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,120160,98.84120257247882,spot_baseline,OpenSystem,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,126626,99.27684307689242,spot_baseline,skmmcj,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,126626,0.3386007042723877,peer,skmmcj,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,126626,88.09641354612388,baseline,skmmcj,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,126626,0.0047767971308213,relative_legacy,skmmcj,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,126626,0.3021435308814977,spot_peer,skmmcj,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,131306,99.27684307689242,spot_baseline,draaglom,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,131306,50.313752153198216,baseline,draaglom,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,131306,0.0022654394071904,relative_legacy,draaglom,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,131306,0.3021435308814977,spot_peer,draaglom,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,131306,0.1697263373658981,peer,draaglom,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,133827,-0.0068616815339982,peer,partlygloudy,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,133827,-7.882826334142961e-05,relative_legacy,partlygloudy,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,133827,2.668134690421557,baseline,partlygloudy,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,133827,-0.2576113613359539,spot_peer,partlygloudy,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,133827,98.5500430304885,spot_baseline,partlygloudy,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,139161,-0.0016726905310445,relative_legacy,Zaldath,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,139161,-0.2068030413280053,peer,Zaldath,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,139161,-0.2576113613359539,spot_peer,Zaldath,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29139,"Will an H5 virus receive an ""emergence"" risk rating categorized as ""high"" by the US CDC Influenza Risk Assessment Tool before January 1, 2025?",2024-10-27 14:23:28.472603+00,139161,89.0010863280867,baseline,Zaldath,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29236 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,101465,-2.68363080126926,peer,Jgalt,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,101465,-58.64059175908248,spot_baseline,Jgalt,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,101465,-0.0209414336788221,relative_legacy,Jgalt,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,101465,-36.837988674689946,baseline,Jgalt,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,101465,-15.04908018933349,spot_peer,Jgalt,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,103777,-59.94620704162712,spot_baseline,datscilly,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,103777,-16.054617469324366,spot_peer,datscilly,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,103777,-0.0106487824715809,relative_legacy,datscilly,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,103777,-3.634898827174085,peer,datscilly,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,103777,-19.988016345784143,baseline,datscilly,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,115725,-61.96227676071437,baseline,Sergio,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,115725,-43.440282414577496,spot_baseline,Sergio,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,115725,-3.3423562273527936,spot_peer,Sergio,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,115725,-2.2163576725873466,peer,Sergio,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,115725,-0.0294762419047852,relative_legacy,Sergio,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,117580,-2.3440485816087198,baseline,MaciekK,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,117580,0.6021024698846285,peer,MaciekK,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,117580,0.0108049512656405,relative_legacy,MaciekK,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,117580,5.320037269281871,spot_peer,MaciekK,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,117580,-32.19280948873623,spot_baseline,MaciekK,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,119215,36.58808831796913,spot_peer,rappatoni,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,119215,0.2542915817710305,baseline,rappatoni,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,119215,8.406426478847456,spot_baseline,rappatoni,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,119215,0.0148865055633741,relative_legacy,rappatoni,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,119215,1.1206616610770077,peer,rappatoni,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,120160,0.0,spot_baseline,OpenSystem,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,120160,30.113765193082948,spot_peer,OpenSystem,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,120160,0.2273057598126675,relative_legacy,OpenSystem,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,120160,0.0,baseline,OpenSystem,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,120160,16.844314712699315,peer,OpenSystem,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,126626,-0.2263023648353306,relative_legacy,skmmcj,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,126626,-20.40067544885401,peer,skmmcj,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,126626,-78.58751946471526,spot_baseline,skmmcj,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,126626,-30.4114765226584,spot_peer,skmmcj,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,126626,-78.84515113865383,baseline,skmmcj,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,131306,-15.200309344504996,spot_baseline,draaglom,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,131306,0.1389113057798488,relative_legacy,draaglom,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,131306,9.501217241204776,peer,draaglom,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,131306,18.40704123110225,spot_peer,draaglom,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,131306,-6.332971981224966,baseline,draaglom,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,133827,-0.2972077431150995,peer,partlygloudy,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,133827,-0.0026899874249231,relative_legacy,partlygloudy,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,133827,-16.054617469324366,spot_peer,partlygloudy,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,133827,-1.1437762245291865,baseline,partlygloudy,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,133827,-59.94620704162712,spot_baseline,partlygloudy,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,139161,-9.516784133442888,spot_peer,Zaldath,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,139161,-51.45731728297583,spot_baseline,Zaldath,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,139161,-51.72521093493901,baseline,Zaldath,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,139161,0.0171165924150822,relative_legacy,Zaldath,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29140,"Will the lowest COVID-19 hospitalization rate from October 5, 2024, to January 4, 2025, be below 2.0?",2024-10-27 14:23:28.481785+00,139161,1.1644744081339788,peer,Zaldath,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29237 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,101465,-0.5515344499276404,spot_peer,Jgalt,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,101465,72.03306219034211,baseline,Jgalt,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,101465,-0.6424892088105837,peer,Jgalt,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,101465,97.08536543404836,spot_baseline,Jgalt,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,101465,-0.0099000351563668,relative_legacy,Jgalt,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,103777,-0.0015699876380219,relative_legacy,datscilly,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,103777,0.013917717569168,spot_peer,datscilly,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,103777,41.218178386262736,baseline,datscilly,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,103777,-0.0448700601004021,peer,datscilly,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,103777,97.81956296816516,spot_baseline,datscilly,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,115725,97.3794929652606,spot_baseline,Sergio,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,115725,94.81910073430238,baseline,Sergio,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,115725,-0.3250081510556089,spot_peer,Sergio,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,115725,-0.6746689758887104,peer,Sergio,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,115725,-0.009976418779117,relative_legacy,Sergio,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,117580,52.23483156719523,baseline,MaciekK,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,117580,0.0050270737044512,relative_legacy,MaciekK,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,117580,0.5168885857255724,peer,MaciekK,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,117580,1.1362617160695996,spot_peer,MaciekK,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,117580,99.27684307689242,spot_baseline,MaciekK,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,119215,0.5765068238521377,spot_peer,rappatoni,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,119215,0.0004917218238551,peer,rappatoni,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,119215,98.5500430304885,spot_baseline,rappatoni,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,119215,2.4884185068670443e-06,relative_legacy,rappatoni,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,119215,0.0840566059151809,baseline,rappatoni,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,120160,82.07545215246836,baseline,OpenSystem,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,120160,0.4083766937673884,peer,OpenSystem,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,120160,0.0025722825379462,relative_legacy,OpenSystem,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,120160,0.351812892655716,spot_peer,OpenSystem,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,120160,98.25829469225908,spot_baseline,OpenSystem,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,126626,98.40424260970237,spot_baseline,skmmcj,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,126626,0.8111882627561537,peer,skmmcj,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,126626,93.13016159207989,baseline,skmmcj,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,126626,0.0067974854581809,relative_legacy,skmmcj,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,126626,0.4642166565273047,spot_peer,skmmcj,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,131306,95.60566524124027,spot_baseline,draaglom,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,131306,33.92005751632021,baseline,draaglom,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,131306,-0.0089383636044427,relative_legacy,draaglom,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,131306,-1.6911455796153174,spot_peer,draaglom,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,131306,-0.6384286264609019,peer,draaglom,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,133827,-0.0121653851681721,peer,partlygloudy,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,133827,-0.0001839691922059,relative_legacy,partlygloudy,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,133827,2.3832025303677478,baseline,partlygloudy,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,133827,-0.5515344499276404,spot_peer,partlygloudy,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,133827,97.08536543404836,spot_baseline,partlygloudy,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,139161,0.0009438630029799,relative_legacy,Zaldath,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,139161,0.2756769923557471,peer,Zaldath,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,139161,0.5765068238521377,spot_peer,Zaldath,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29141,"Will the World Health Organization designate a new COVID-19 Variant of Concern before January 1, 2025?",2024-10-27 14:23:28.489191+00,139161,87.63152913020548,baseline,Zaldath,no,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29238 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,101465,-0.0313119262336906,relative_legacy,Jgalt,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,101465,-2.9148394200360994,spot_peer,Jgalt,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,101465,70.97791983686803,baseline,Jgalt,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,101465,88.75252707415875,spot_baseline,Jgalt,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,101465,-2.632416655735316,peer,Jgalt,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,103777,92.5999418556223,spot_baseline,datscilly,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,103777,-0.0001962139441279,relative_legacy,datscilly,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,103777,33.28225771264158,baseline,datscilly,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,103777,0.0853383767070336,spot_peer,datscilly,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,103777,0.3205678472005773,peer,datscilly,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,115725,-1.1865262430033834,peer,Sergio,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,115725,-2.308368948612507,spot_peer,Sergio,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,115725,84.6120453330081,baseline,Sergio,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,115725,89.53026213333067,spot_baseline,Sergio,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,115725,-0.0135199267964079,relative_legacy,Sergio,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,117580,8.746545737932069,baseline,MaciekK,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,117580,0.3463923117444469,peer,MaciekK,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,117580,0.0040409759295136,relative_legacy,MaciekK,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,117580,97.08536543404836,spot_baseline,MaciekK,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,117580,3.583029422085545,spot_peer,MaciekK,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,120160,74.71681766425833,baseline,OpenSystem,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,120160,-0.0110369803521496,relative_legacy,OpenSystem,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,120160,-0.946786372884284,peer,OpenSystem,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,120160,89.53026213333067,spot_baseline,OpenSystem,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,120160,-2.308368948612507,spot_peer,OpenSystem,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,126626,0.028653285885843,relative_legacy,skmmcj,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,126626,2.472436267914609,peer,skmmcj,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,126626,94.11063109464314,spot_baseline,skmmcj,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,126626,86.65126530937755,baseline,skmmcj,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,126626,1.26335961177778,spot_peer,skmmcj,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,131306,0.0,relative_legacy,draaglom,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,131306,32.531067129023675,baseline,draaglom,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,131306,0.3218448161598267,peer,draaglom,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,131306,0.0853383767070336,spot_peer,draaglom,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,131306,92.5999418556223,spot_baseline,draaglom,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,133827,0.000766887638379,relative_legacy,partlygloudy,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,133827,0.0619785197681221,peer,partlygloudy,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,133827,95.60566524124027,spot_baseline,partlygloudy,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,133827,2.439306397366386,baseline,partlygloudy,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,133827,2.4291731532767598,spot_peer,partlygloudy,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,139161,92.5999418556223,spot_baseline,Zaldath,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,139161,0.0145808045881615,relative_legacy,Zaldath,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,139161,1.2425095088353886,peer,Zaldath,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,139161,0.0853383767070336,spot_peer,Zaldath,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29142,"Will CDC’s highest assessment of the risk posed by H5 bird flu to the US general public before January 1, 2025, be ""Low""?",2024-10-27 14:23:28.496364+00,139161,83.2778951387403,baseline,Zaldath,yes,2024-10-29 14:30:00+00,2024-10-29 14:30:00+00,1.0,29239 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,101465,77.48062205272205,baseline,Jgalt,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,101465,0.5174240717596694,relative_legacy,Jgalt,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,101465,92.5999418556223,spot_baseline,Jgalt,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,101465,37.08530312466313,peer,Jgalt,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,101465,48.16962287139977,spot_peer,Jgalt,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,103777,26.303440583379377,spot_baseline,datscilly,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,103777,12.895477690405988,baseline,datscilly,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,103777,-4.213034444896877,peer,datscilly,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,103777,0.0055748712868426,relative_legacy,datscilly,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,103777,-2.8895248373157942,spot_peer,datscilly,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,115725,25.338423580007447,spot_baseline,Sergio,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,115725,-11.745511633383858,peer,Sergio,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,115725,24.62399873044673,baseline,Sergio,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,115725,-3.6327457429598624,spot_peer,Sergio,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,115725,-0.0453694000041308,relative_legacy,Sergio,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,117580,26.303440583379377,spot_baseline,MaciekK,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,117580,-2.8895248373157942,spot_peer,MaciekK,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,117580,0.0014104149434052,relative_legacy,MaciekK,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,117580,-0.5653106884473182,peer,MaciekK,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,117580,2.3258123307018903,baseline,MaciekK,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,119215,-0.0040878038135412,relative_legacy,rappatoni,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,119215,-0.4102705266601579,peer,rappatoni,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,119215,-0.1017558899374651,baseline,rappatoni,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,119215,-28.61305828006318,spot_peer,rappatoni,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,119215,-7.09665213541436,spot_baseline,rappatoni,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,120160,9.104248616114385,baseline,OpenSystem,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,120160,-12.422314669998704,peer,OpenSystem,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,120160,-0.0696629056563941,relative_legacy,OpenSystem,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,120160,-8.588779769265843,spot_peer,OpenSystem,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,120160,18.903382439001717,spot_baseline,OpenSystem,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,126626,-0.0017835177506954,relative_legacy,skmmcj,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,126626,-2.9109470234866683,peer,skmmcj,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,126626,23.878685958711674,spot_baseline,skmmcj,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,126626,-4.756982428024803,spot_peer,skmmcj,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,126626,7.246451216212375,baseline,skmmcj,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,131306,24.36690809668629,spot_baseline,draaglom,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,131306,24.01088498541168,baseline,draaglom,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,131306,-0.0575989155987512,relative_legacy,draaglom,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,131306,-12.941960939129514,peer,draaglom,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,131306,-4.3809715408869705,spot_peer,draaglom,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,133827,-6.656363912391492,spot_peer,partlygloudy,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,133827,-0.0004150746020645,relative_legacy,partlygloudy,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,133827,0.6179804993728831,baseline,partlygloudy,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,133827,21.412480535284764,spot_baseline,partlygloudy,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,133827,-0.2459750510082971,peer,partlygloudy,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,139161,0.1826765068383684,relative_legacy,Zaldath,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,139161,8.370021852348241,peer,Zaldath,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,139161,14.23832847682402,spot_peer,Zaldath,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,139161,48.54268271702416,spot_baseline,Zaldath,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29181,Will a woman be named the Time Person of the Year for 2024?,2024-10-28 13:12:18.13186+00,139161,48.03842820222002,baseline,Zaldath,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29281 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,101465,73.43330487398538,baseline,Jgalt,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,101465,-0.001521690138388,relative_legacy,Jgalt,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,101465,98.98656228662868,spot_baseline,Jgalt,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,101465,-0.0919327787390434,peer,Jgalt,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,101465,-0.1114891791071595,spot_peer,Jgalt,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,103777,98.5500430304885,spot_baseline,datscilly,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,103777,46.71437539333013,baseline,datscilly,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,103777,-0.2284714639257063,peer,datscilly,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,103777,-0.0031169325001469,relative_legacy,datscilly,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,103777,-0.4476803920557146,spot_peer,datscilly,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,115725,99.27684307689242,spot_baseline,Sergio,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,115725,0.1500527418557488,peer,Sergio,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,115725,94.94319852452352,baseline,Sergio,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,115725,0.1120745001617583,spot_peer,Sergio,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,115725,0.0017779760848131,relative_legacy,Sergio,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,117580,99.4217647405994,spot_baseline,MaciekK,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,117580,0.2236878808290244,spot_peer,MaciekK,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,117580,0.0010399591290939,relative_legacy,MaciekK,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,117580,0.1141736423146425,peer,MaciekK,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,117580,56.46982902501247,baseline,MaciekK,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,119215,0.0,relative_legacy,rappatoni,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,119215,0.024665513464738,peer,rappatoni,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,119215,35.833614220557074,baseline,rappatoni,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,119215,0.1120745001617583,spot_peer,rappatoni,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,119215,99.27684307689242,spot_baseline,rappatoni,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,120160,88.28328456590742,baseline,OpenSystem,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,120160,-0.2510751198497245,peer,OpenSystem,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,120160,-0.0028647976064192,relative_legacy,OpenSystem,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,120160,-0.2234399302515863,spot_peer,OpenSystem,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,120160,98.84120257247882,spot_baseline,OpenSystem,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,126626,0.0027564014036654,relative_legacy,skmmcj,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,126626,0.2492773680925343,peer,skmmcj,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,126626,99.56654097361088,spot_baseline,skmmcj,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,126626,0.3351892560779164,spot_peer,skmmcj,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,126626,72.94567031468038,baseline,skmmcj,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,131306,99.56654097361088,spot_baseline,draaglom,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,131306,95.9790661028226,baseline,draaglom,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,131306,0.0034059013685555,relative_legacy,draaglom,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,131306,0.27989942385112,peer,draaglom,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,131306,0.3351892560779164,spot_peer,draaglom,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,133827,-0.4476803920557146,spot_peer,partlygloudy,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,133827,-0.0002463074271339,relative_legacy,partlygloudy,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,133827,3.339791688632892,baseline,partlygloudy,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,133827,98.5500430304885,spot_baseline,partlygloudy,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,133827,-0.0151715738174668,peer,partlygloudy,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,139161,-0.002607644665984,relative_legacy,Zaldath,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,139161,-0.2314177532469218,peer,Zaldath,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,139161,0.1120745001617583,spot_peer,Zaldath,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,139161,99.27684307689242,spot_baseline,Zaldath,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29182,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before January 1, 2025? -",2024-10-28 13:12:18.137924+00,139161,97.82164742545103,baseline,Zaldath,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29282 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,101465,-1.2335811384723962e-14,spot_peer,Jgalt,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,101465,75.48050959821249,baseline,Jgalt,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,101465,-9.564138280731412e-15,peer,Jgalt,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,101465,99.85565831303312,spot_baseline,Jgalt,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,101465,0.0,relative_legacy,Jgalt,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,103777,0.0,relative_legacy,datscilly,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,103777,-1.2335811384723962e-14,spot_peer,datscilly,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,103777,49.51722096744703,baseline,datscilly,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,103777,-6.1886935197583365e-15,peer,datscilly,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,103777,99.85565831303312,spot_baseline,datscilly,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,115725,99.85565831303312,spot_baseline,Sergio,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,115725,99.814218735545,baseline,Sergio,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,115725,-1.2335811384723962e-14,spot_peer,Sergio,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,115725,-1.3091696802634491e-14,peer,Sergio,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,115725,0.0,relative_legacy,Sergio,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,117580,98.54755886210798,baseline,MaciekK,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,117580,0.0,relative_legacy,MaciekK,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,117580,-1.2881436179567391e-14,peer,MaciekK,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,117580,-1.2335811384723962e-14,spot_peer,MaciekK,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,117580,99.85565831303312,spot_baseline,MaciekK,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,119215,-1.2335811384723962e-14,spot_peer,rappatoni,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,119215,-6.189617923241135e-15,peer,rappatoni,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,119215,99.85565831303312,spot_baseline,rappatoni,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,119215,0.0,relative_legacy,rappatoni,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,119215,49.52449595199877,baseline,rappatoni,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,120160,88.38916755544852,baseline,OpenSystem,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,120160,-1.1358163967814536e-14,peer,OpenSystem,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,120160,0.0,relative_legacy,OpenSystem,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,120160,-1.2335811384723962e-14,spot_peer,OpenSystem,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,120160,99.85565831303312,spot_baseline,OpenSystem,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,126626,99.85565831303312,spot_baseline,skmmcj,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,126626,-9.287605190098099e-15,peer,skmmcj,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,126626,73.40784843028709,baseline,skmmcj,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,126626,0.0,relative_legacy,skmmcj,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,126626,-1.2335811384723962e-14,spot_peer,skmmcj,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,131306,99.85565831303312,spot_baseline,draaglom,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,131306,97.6110170149176,baseline,draaglom,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,131306,0.0,relative_legacy,draaglom,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,131306,-1.2335811384723962e-14,spot_peer,draaglom,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,131306,-1.2725245182505983e-14,peer,draaglom,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,133827,-3.9614889914854894e-16,peer,partlygloudy,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,133827,0.0,relative_legacy,partlygloudy,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,133827,3.206737512495365,baseline,partlygloudy,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,133827,-1.2335811384723962e-14,spot_peer,partlygloudy,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,133827,99.85565831303312,spot_baseline,partlygloudy,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,139161,0.0,relative_legacy,Zaldath,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,139161,-1.3091696802634491e-14,peer,Zaldath,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,139161,-1.2335811384723962e-14,spot_peer,Zaldath,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,139161,99.85565831303312,spot_baseline,Zaldath,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29183,"Will a European Union ban into non-commercial internal combustion engines take effect before January 1, 2025?",2024-10-28 13:12:18.146512+00,139161,99.49312171155267,baseline,Zaldath,no,2024-10-30 14:30:00+00,2024-10-30 14:30:00+00,1.0,29283 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,101465,59.642110306628496,baseline,Jgalt,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,101465,0.0736009641015902,relative_legacy,Jgalt,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,101465,81.55754288625727,spot_baseline,Jgalt,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,101465,5.952779467295622,peer,Jgalt,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,101465,4.5070598383513225,spot_peer,Jgalt,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,103777,48.54268271702416,spot_baseline,datscilly,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,103777,38.24502889655104,baseline,datscilly,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,103777,-12.33777835353775,peer,datscilly,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,103777,-0.1523971508997967,relative_legacy,datscilly,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,103777,-20.919781542631743,spot_peer,datscilly,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,115725,72.59592345091878,spot_baseline,Sergio,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,115725,-4.027344982807365,peer,Sergio,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,115725,49.27011653431767,baseline,Sergio,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,115725,-2.3948526559332044,spot_peer,Sergio,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,115725,-0.0469244968039478,relative_legacy,Sergio,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,117580,79.90873060740036,spot_baseline,MaciekK,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,117580,3.2372047468376777,spot_peer,MaciekK,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,117580,0.0,relative_legacy,MaciekK,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,117580,0.2982118594149768,peer,MaciekK,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,117580,6.921911238579129,baseline,MaciekK,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,119215,0.0419924375628904,relative_legacy,rappatoni,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,119215,4.408222475629938,peer,rappatoni,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,119215,30.77361987738411,baseline,rappatoni,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,119215,10.647357468912377,spot_peer,rappatoni,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,119215,89.53026213333067,spot_baseline,rappatoni,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,120160,35.46705390115492,baseline,OpenSystem,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,120160,-6.657294701270349,peer,OpenSystem,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,120160,-0.0891281510391698,relative_legacy,OpenSystem,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,120160,-10.32976156437341,spot_peer,OpenSystem,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,120160,62.29303509201767,spot_baseline,OpenSystem,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,126626,-0.0040872782599426,relative_legacy,skmmcj,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,126626,-0.3500767591708731,peer,skmmcj,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,126626,79.90873060740036,spot_baseline,skmmcj,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,126626,3.2372047468376777,spot_peer,skmmcj,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,126626,51.51743839475512,baseline,skmmcj,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,131306,73.11832415721999,spot_baseline,draaglom,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,131306,67.85168911454973,baseline,draaglom,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,131306,-0.0114184117340954,relative_legacy,draaglom,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,131306,-1.9629486441180848,peer,draaglom,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,131306,-1.9925186818274072,spot_peer,draaglom,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,133827,7.0040438219134,spot_peer,partlygloudy,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,133827,0.0113554555153643,relative_legacy,partlygloudy,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,133827,17.489657052173104,baseline,partlygloudy,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,133827,84.79969065549501,spot_baseline,partlygloudy,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,133827,1.6030736742551832,peer,partlygloudy,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,139161,0.1508438680399433,relative_legacy,Zaldath,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,139161,13.073155964308706,peer,Zaldath,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,139161,7.0040438219134,spot_peer,Zaldath,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,139161,84.79969065549501,spot_baseline,Zaldath,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29215,"Will Donald Trump says ""win,"" ""won,"" or ""winner"" on election night?",2024-10-29 12:56:45.839034+00,139161,84.38614275809731,baseline,Zaldath,yes,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29324 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,101465,14.317762509992065,peer,Jgalt,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,101465,0.1656221337268306,relative_legacy,Jgalt,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,101465,52.81873156976249,baseline,Jgalt,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,101465,76.55347463629771,spot_baseline,Jgalt,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,101465,33.880465236062406,spot_peer,Jgalt,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,115725,20.844741930784668,spot_peer,Sergio,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,115725,0.0544507190217953,relative_legacy,Sergio,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,115725,45.64436046359885,baseline,Sergio,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,115725,59.83652053236445,spot_baseline,Sergio,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,115725,4.835541777168621,peer,Sergio,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,117580,0.97993817255457,peer,MaciekK,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,117580,4.045373136365684,baseline,MaciekK,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,117580,12.03791361145469,spot_peer,MaciekK,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,117580,48.54268271702416,spot_baseline,MaciekK,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,117580,0.006787890126791,relative_legacy,MaciekK,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,119215,16.758886010095814,spot_peer,rappatoni,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,119215,54.59683691052925,spot_baseline,rappatoni,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,119215,19.312965308232805,baseline,rappatoni,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,119215,4.581454463348853,peer,rappatoni,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,119215,0.0511817726614669,relative_legacy,rappatoni,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,120160,27.706231676527988,baseline,OpenSystem,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,120160,13.750352374993504,spot_baseline,OpenSystem,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,120160,-15.092817780445198,spot_peer,OpenSystem,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,120160,-0.2100217210111099,peer,OpenSystem,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,120160,-0.0092555898025972,relative_legacy,OpenSystem,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,126626,-7.194838679704728,spot_peer,skmmcj,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,126626,23.878685958711674,spot_baseline,skmmcj,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,126626,7.524513970074706,baseline,skmmcj,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,126626,-2.1043215234756194,peer,skmmcj,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,126626,-0.0308124942552802,relative_legacy,skmmcj,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,131306,-0.1574848858024147,relative_legacy,draaglom,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,131306,6.378109434327168,baseline,draaglom,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,131306,-11.940712987864192,peer,draaglom,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,131306,-15.092817780445198,spot_peer,draaglom,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,131306,13.750352374993504,spot_baseline,draaglom,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,133827,-0.1870764537040571,relative_legacy,partlygloudy,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,133827,-14.658424987425848,peer,partlygloudy,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,133827,-51.45731728297583,spot_baseline,partlygloudy,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,133827,-10.858270336902889,baseline,partlygloudy,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,133827,-65.94114420153916,spot_peer,partlygloudy,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,139161,58.496250072115615,spot_baseline,Zaldath,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,139161,0.0509496807731819,relative_legacy,Zaldath,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,139161,4.198784296712642,peer,Zaldath,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,139161,19.799611653736736,spot_peer,Zaldath,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29216,"Will election night 2024 end without Dave Wasserman, Nate Silver, or Nate Cohn calling the 2024 presidential election?",2024-10-29 12:56:45.843922+00,139161,56.03915826736532,baseline,Zaldath,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29325 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,101465,65.09553226321864,baseline,Jgalt,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,101465,0.3972569685122051,spot_peer,Jgalt,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,101465,0.0,relative_legacy,Jgalt,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,101465,98.5500430304885,spot_baseline,Jgalt,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,101465,0.3178452107335682,peer,Jgalt,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,103777,-0.7307843052675667,spot_peer,datscilly,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,103777,-0.5055830811271007,peer,datscilly,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,103777,97.08536543404836,spot_baseline,datscilly,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,103777,-0.0096638485924166,relative_legacy,datscilly,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,103777,77.56989285325203,baseline,datscilly,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,115725,95.60566524124027,spot_baseline,Sergio,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,115725,-1.3763862922753365,peer,Sergio,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,115725,-1.8703954349552496,spot_peer,Sergio,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,115725,-0.0207736410679625,relative_legacy,Sergio,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,115725,71.78204784180032,baseline,Sergio,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,117580,20.641515560333996,baseline,MaciekK,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,117580,0.0,relative_legacy,MaciekK,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,117580,0.3972569685122051,spot_peer,MaciekK,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,117580,0.0831756252939141,peer,MaciekK,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,117580,98.5500430304885,spot_baseline,MaciekK,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,119215,-0.0071200150392876,relative_legacy,rappatoni,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,119215,-0.4131309168156835,peer,rappatoni,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,119215,31.16218019809459,baseline,rappatoni,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,119215,96.3474123974886,spot_baseline,rappatoni,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,119215,-1.2991288237976233,spot_peer,rappatoni,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,120160,98.5500430304885,spot_baseline,OpenSystem,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,120160,56.34004747904067,baseline,OpenSystem,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,120160,0.2552080704107243,peer,OpenSystem,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,120160,0.0,relative_legacy,OpenSystem,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,120160,0.3972569685122051,spot_peer,OpenSystem,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,126626,0.8198464807106199,peer,skmmcj,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,126626,0.0065221565307145,relative_legacy,skmmcj,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,126626,99.27684307689242,spot_baseline,skmmcj,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,126626,73.23412899760062,baseline,skmmcj,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,126626,0.957011860729664,spot_peer,skmmcj,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,131306,99.27684307689242,spot_baseline,draaglom,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,131306,0.957011860729664,spot_peer,draaglom,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,131306,93.50423233632168,baseline,draaglom,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,131306,0.1178214952738493,peer,draaglom,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,131306,-0.0008771734995602,relative_legacy,draaglom,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,133827,0.0910009927641372,peer,partlygloudy,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,133827,0.0,relative_legacy,partlygloudy,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,133827,0.3972569685122051,spot_peer,partlygloudy,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,133827,98.5500430304885,spot_baseline,partlygloudy,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,133827,22.36710515105621,baseline,partlygloudy,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,139161,0.3972569685122051,spot_peer,Zaldath,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,139161,0.6102024150312498,peer,Zaldath,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,139161,0.0031630286538117,relative_legacy,Zaldath,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,139161,97.5163462231967,baseline,Zaldath,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29217,"Will SpaceX re-use a Starship booster before January 1, 2025?",2024-10-29 12:56:45.850401+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-10-31 14:30:00+00,2024-10-31 14:30:00+00,1.0,29326 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,101465,70.640783906245,baseline,Jgalt,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,101465,-0.0494613298289016,relative_legacy,Jgalt,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,101465,95.1587794814754,spot_baseline,Jgalt,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,101465,-3.4281302202516315,peer,Jgalt,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,101465,-2.416928445888123,spot_peer,Jgalt,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,103777,98.5500430304885,spot_baseline,datscilly,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,103777,55.024650778082645,baseline,datscilly,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,103777,-0.0429274501911541,peer,datscilly,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,103777,-0.0030819148440829,relative_legacy,datscilly,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,103777,0.1948990735942558,spot_peer,datscilly,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,115725,98.5500430304885,spot_baseline,Sergio,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,115725,1.2755878526080144,peer,Sergio,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,115725,82.72013013829903,baseline,Sergio,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,115725,0.1948990735942558,spot_peer,Sergio,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,115725,0.0028047984923483,relative_legacy,Sergio,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,117580,99.27684307689242,spot_baseline,MaciekK,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,117580,0.7546539658117187,spot_peer,MaciekK,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,117580,0.0028491375541035,relative_legacy,MaciekK,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,117580,0.2908390540141605,peer,MaciekK,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,117580,39.15604869078002,baseline,MaciekK,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,119215,0.0,relative_legacy,rappatoni,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,119215,0.0267654680243729,peer,rappatoni,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,119215,21.834893023297465,baseline,rappatoni,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,119215,0.1948990735942558,spot_peer,rappatoni,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,119215,98.5500430304885,spot_baseline,rappatoni,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,120160,73.95944756919465,baseline,OpenSystem,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,120160,0.5989611179973635,peer,OpenSystem,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,120160,-0.0002709549512433,relative_legacy,OpenSystem,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,120160,0.1948990735942558,spot_peer,OpenSystem,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,120160,98.5500430304885,spot_baseline,OpenSystem,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,126626,0.0066192341329408,relative_legacy,skmmcj,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,126626,1.068845324949648,peer,skmmcj,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,126626,99.4217647405994,spot_baseline,skmmcj,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,126626,0.8662673464789877,spot_peer,skmmcj,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,126626,67.94167163253564,baseline,skmmcj,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,131306,99.27684307689242,spot_baseline,draaglom,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,131306,64.87154032777919,baseline,draaglom,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,131306,0.0049720168604007,relative_legacy,draaglom,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,131306,0.8706383502594793,peer,draaglom,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,131306,0.7546539658117187,spot_peer,draaglom,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,133827,-0.9331422001855366,spot_peer,partlygloudy,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,133827,-4.44788345833168e-05,relative_legacy,partlygloudy,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,133827,0.2948255588873138,baseline,partlygloudy,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,133827,97.08536543404836,spot_baseline,partlygloudy,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,133827,-0.0028337347185238,peer,partlygloudy,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,139161,-0.0117657738998297,relative_legacy,Zaldath,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,139161,-0.6577457626917509,peer,Zaldath,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,139161,0.1948990735942558,spot_peer,Zaldath,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29269,Will the World Health Organization prequalify moxidectin before 2025?,2024-10-30 13:45:52.566886+00,139161,85.12401679628452,baseline,Zaldath,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29387 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,101465,-1.173283990988853,spot_peer,Jgalt,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,101465,62.05982512895695,baseline,Jgalt,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,101465,-2.775992034609682,peer,Jgalt,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,101465,80.90027749390863,spot_baseline,Jgalt,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,101465,-0.0294867415614585,relative_legacy,Jgalt,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,103777,0.0224077612535371,relative_legacy,datscilly,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,103777,1.829901829891072,spot_peer,datscilly,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,103777,49.9190644424273,baseline,datscilly,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,103777,1.5094973897169002,peer,datscilly,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,103777,84.79969065549501,spot_baseline,datscilly,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,115725,76.55347463629771,spot_baseline,Sergio,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,115725,69.37760696217082,baseline,Sergio,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,115725,-4.521033041214333,spot_peer,Sergio,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,115725,-3.07438218483351,peer,Sergio,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,115725,-0.031768895217341,relative_legacy,Sergio,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,117580,32.274014026771454,baseline,MaciekK,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,117580,-0.0024922652797885,relative_legacy,MaciekK,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,117580,-0.1239939766047489,peer,MaciekK,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,117580,-0.6670821536709953,spot_peer,MaciekK,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,117580,81.55754288625727,spot_baseline,MaciekK,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,119215,4.272002576421656,spot_peer,rappatoni,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,119215,0.9995364100912892,peer,rappatoni,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,119215,87.97057662822883,spot_baseline,rappatoni,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,119215,0.0123735617680927,relative_legacy,rappatoni,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,119215,20.39214870956847,baseline,rappatoni,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,120160,54.67029884178187,baseline,OpenSystem,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,120160,-4.898485905991488,peer,OpenSystem,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,120160,-0.0574232228857899,relative_legacy,OpenSystem,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,120160,-4.521033041214333,spot_peer,OpenSystem,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,120160,76.55347463629771,spot_baseline,OpenSystem,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,126626,86.39384504239716,spot_baseline,skmmcj,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,126626,2.634645014243554,peer,skmmcj,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,126626,57.27067576441178,baseline,skmmcj,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,126626,0.0323493848236915,relative_legacy,skmmcj,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,126626,3.0576614061782803,spot_peer,skmmcj,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,131306,84.79969065549501,spot_baseline,draaglom,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,131306,55.21581074254837,baseline,draaglom,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,131306,0.0224077612535371,relative_legacy,draaglom,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,131306,1.829901829891072,spot_peer,draaglom,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,131306,1.8443327690290103,peer,draaglom,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,133827,-0.0009310278945393,peer,partlygloudy,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,133827,-4.766069795900313e-06,relative_legacy,partlygloudy,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,133827,0.0384097406344369,baseline,partlygloudy,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,133827,-1.9369372451846356,spot_peer,partlygloudy,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,133827,79.90873060740036,spot_baseline,partlygloudy,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,139161,0.0454061153613291,relative_legacy,Zaldath,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,139161,3.885773546853232,peer,Zaldath,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,139161,1.829901829891072,spot_peer,Zaldath,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,139161,84.79969065549501,spot_baseline,Zaldath,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29270,[Short fuse] Will California's Proposition 33 (allowing rent control) pass in the 2024 general election?,2024-10-30 13:45:52.574347+00,139161,77.51705719388828,baseline,Zaldath,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29388 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,101465,63.179580777783386,baseline,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,101465,-0.0003128412212454,relative_legacy,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,101465,92.90334786458564,spot_baseline,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,101465,-0.3209083116410944,peer,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,101465,-0.4044154840806947,spot_peer,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,103777,94.11063109464314,spot_baseline,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,103777,12.335447855321368,baseline,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,103777,0.0545384237318132,peer,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,103777,0.0012695920445565,relative_legacy,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,103777,0.5253900348655794,spot_peer,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,115725,93.35726382610238,spot_baseline,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,115725,0.2151777008855349,peer,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,115725,89.50953741867211,baseline,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,115725,-0.0548259630401554,spot_peer,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,115725,0.0054346577358179,relative_legacy,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,117580,95.60566524124027,spot_baseline,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,117580,1.676810816592989,spot_peer,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,117580,0.0063154459274166,relative_legacy,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,117580,0.1804298319440817,peer,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,117580,67.85654474740059,baseline,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,119215,-0.0001880964671605,relative_legacy,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,119215,-0.0445635958947902,peer,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,119215,5.749523145423697,baseline,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,119215,-0.6380877281672297,spot_peer,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,119215,92.5999418556223,spot_baseline,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,120160,42.88106741805308,baseline,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,120160,-0.3176087330832428,peer,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,120160,-0.0007828194915886,relative_legacy,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,120160,-0.6380877281672297,spot_peer,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,120160,92.5999418556223,spot_baseline,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,126626,-0.0007828194915886,relative_legacy,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,126626,-0.3257443995929219,peer,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,126626,92.5999418556223,spot_baseline,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,126626,-0.6380877281672297,spot_peer,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,126626,45.68430722536998,baseline,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,131306,95.30789526125076,spot_baseline,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,131306,59.21692924085893,baseline,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,131306,0.0160444205756,relative_legacy,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,131306,1.0059819097975244,peer,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,131306,1.4474792364983766,spot_peer,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,133827,-0.6380877281672297,spot_peer,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,133827,0.0,relative_legacy,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,133827,0.0087924387936303,baseline,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,133827,92.5999418556223,spot_baseline,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,133827,-6.058694187545426e-05,peer,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,139161,-0.0015107848294396,relative_legacy,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,139161,-0.4472422392050245,peer,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,139161,-0.6380877281672297,spot_peer,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,139161,92.5999418556223,spot_baseline,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29271,"Will it rain more than 100mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.580767+00,139161,85.32324175717383,baseline,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29389 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,101465,64.15460290875237,spot_baseline,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,101465,-1.6580494832058643,peer,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,101465,-3.3986281698720893,spot_peer,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,101465,42.03456044853655,baseline,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,101465,-0.0016380458152006,relative_legacy,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,103777,-3.3986281698720893,spot_peer,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,103777,64.15460290875237,spot_baseline,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,103777,8.219174720745146,baseline,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,103777,-0.2781793732256222,peer,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,103777,0.0,relative_legacy,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,115725,-4.832339818306307,spot_peer,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,115725,59.69995766933389,baseline,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,115725,62.29303509201767,spot_baseline,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,115725,0.0038366562009501,relative_legacy,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,115725,-0.3577357536078268,peer,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,117580,8.734626492904798,spot_peer,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,117580,0.0963533228615653,relative_legacy,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,117580,6.569892286836925,peer,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,117580,55.7350503979125,baseline,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,117580,79.90873060740036,spot_baseline,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,119215,0.4344993803202268,peer,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,119215,4.738544649372964,baseline,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,119215,76.55347463629771,spot_baseline,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,119215,0.0076747146438424,relative_legacy,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,119215,6.150530696875087,spot_peer,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,120160,60.40713236688608,spot_baseline,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,120160,26.633087829661736,baseline,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,120160,-3.323506811464376,peer,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,120160,-0.0253143425562171,relative_legacy,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,120160,-6.284793325789945,spot_peer,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,126626,3.922844049560726,peer,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,126626,37.76287879383796,baseline,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,126626,6.150530696875087,spot_peer,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,126626,0.062319849931431,relative_legacy,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,126626,76.55347463629771,spot_baseline,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,131306,6.150530696875087,spot_peer,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,131306,76.55347463629771,spot_baseline,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,131306,4.98816168842201,peer,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,131306,47.35199787528904,baseline,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,131306,0.0790128692893755,relative_legacy,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,133827,8.921903238189724e-06,relative_legacy,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,133827,0.0004425760742336,peer,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,133827,76.55347463629771,spot_baseline,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,133827,6.150530696875087,spot_peer,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,133827,0.0055085874607033,baseline,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,139161,-10.298368559710426,peer,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,139161,47.274213608485134,baseline,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,139161,-0.0972334715311692,relative_legacy,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,139161,-15.422359796564637,spot_peer,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29272,"Will it rain more than 150mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.587463+00,139161,48.54268271702416,spot_baseline,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29390 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,101465,-0.0608916848301481,relative_legacy,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,101465,13.750352374993504,spot_baseline,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,101465,9.055984228876037,baseline,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,101465,-4.233173138370446,spot_peer,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,101465,-2.067273883444852,peer,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,103777,-0.4037190139043682,peer,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,103777,-0.0077578308274475,relative_legacy,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,103777,13.750352374993504,spot_baseline,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,103777,1.8075798799676583,baseline,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,103777,-4.233173138370446,spot_peer,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,115725,-4.233173138370446,spot_peer,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,115725,13.750352374993504,spot_baseline,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,115725,-0.047716908828429,relative_legacy,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,115725,13.177156161678733,baseline,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,115725,-0.3824755754039723,peer,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,117580,31.034012061215048,spot_baseline,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,117580,9.64318628109976,peer,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,117580,23.985549009938865,baseline,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,117580,0.0793000617373359,relative_legacy,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,117580,9.078071285254058,spot_peer,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,119215,2.1372567534447075e-05,relative_legacy,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,119215,1.627694560567803,baseline,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,119215,5.434757638255065,spot_peer,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,119215,0.3792659515393716,peer,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,119215,26.303440583379377,spot_baseline,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,120160,5.658352836636751,spot_baseline,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,120160,0.445192098580199,baseline,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,120160,-6.1129331163067615,peer,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,120160,-0.1004625246426735,relative_legacy,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,120160,-10.46533609959752,spot_peer,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,126626,12.60570443131854,spot_peer,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,126626,17.56514687660359,baseline,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,126626,35.61438102252753,spot_baseline,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,126626,7.127238118900078,peer,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,126626,0.0625896233433584,relative_legacy,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,131306,5.434757638255065,spot_peer,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,131306,26.303440583379377,spot_baseline,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,131306,4.343647753156517,peer,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,131306,0.0166677143624065,relative_legacy,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,131306,16.251610874375302,baseline,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,133827,0.0018530021596915,baseline,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,133827,0.0005751944306598,peer,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,133827,26.303440583379377,spot_baseline,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,133827,3.953127716589204e-06,relative_legacy,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,133827,5.434757638255065,spot_peer,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,139161,-12.527511710066472,peer,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,139161,0.0,baseline,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,139161,-0.1743731254381738,relative_legacy,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,139161,-14.823193116628769,spot_peer,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29273,"Will it rain more than 200mm in Brasília, Brazil in December 2024?",2024-10-30 13:45:52.594487+00,139161,0.0,spot_baseline,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29391 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,101465,-0.0084222299035056,relative_legacy,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,101465,63.95375327846473,baseline,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,101465,98.5500430304885,spot_baseline,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,101465,-0.6131601916165563,peer,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,101465,-0.3400891788252982,spot_peer,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,103777,6.918112354730295e-05,relative_legacy,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,103777,99.27684307689242,spot_baseline,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,103777,0.0444904116161488,peer,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,103777,17.803130829075375,baseline,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,103777,0.2266626495448956,spot_peer,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,115725,98.84120257247882,spot_baseline,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,115725,-0.0009617044674447,relative_legacy,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,115725,-0.1130457112486048,spot_peer,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,115725,93.34077380653302,baseline,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,115725,0.1121430010135018,peer,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,117580,99.27684307689242,spot_baseline,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,117580,0.2266626495448956,spot_peer,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,117580,0.167407083967767,peer,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,117580,0.0013995415060589,relative_legacy,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,117580,39.04439374201357,baseline,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,119215,0.2266626495448956,spot_peer,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,119215,21.14262286504049,baseline,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,119215,0.0619175329641933,peer,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,119215,0.0003193527001054,relative_legacy,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,119215,99.27684307689242,spot_baseline,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,120160,88.5368588864953,baseline,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,120160,98.5500430304885,spot_baseline,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,120160,-0.3758647658711744,peer,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,120160,-0.3400891788252982,spot_peer,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,120160,-0.0060348654113541,relative_legacy,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,126626,0.1691998072338811,peer,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,126626,62.99088472239757,baseline,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,126626,0.0010086037949497,relative_legacy,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,126626,99.27684307689242,spot_baseline,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,126626,0.2266626495448956,spot_peer,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,131306,0.3103218678378923,peer,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,131306,61.04118550836296,baseline,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,131306,0.0028667417091218,relative_legacy,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,131306,0.2266626495448956,spot_peer,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,131306,99.27684307689242,spot_baseline,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,139161,-0.3400891788252982,spot_peer,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,139161,-0.0010940552741984,relative_legacy,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,139161,0.1235452528542934,peer,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,139161,98.5500430304885,spot_baseline,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29275,Will the US State Department approve more than 20 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.742889+00,139161,90.91217677976992,baseline,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29393 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,101465,-5.128148126161459,spot_peer,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,101465,85.59896973084807,spot_baseline,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,101465,-2.1623473127969866,peer,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,101465,57.78972182182497,baseline,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,101465,-0.0276369798197318,relative_legacy,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,103777,91.07326619029126,spot_baseline,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,103777,-0.8593433251975834,spot_peer,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,103777,-0.147191536088705,peer,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,103777,-0.0002993511430884,relative_legacy,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,103777,15.92896957493218,baseline,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,115725,-0.0142600475137868,relative_legacy,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,115725,1.7432964074888184,spot_peer,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,115725,-1.831971411851697,peer,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,115725,84.72035933602422,baseline,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,115725,94.41087991079549,spot_baseline,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,117580,35.53996008091033,baseline,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,117580,91.07326619029126,spot_baseline,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,117580,-0.0029112178493651,relative_legacy,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,117580,-0.8593433251975834,spot_peer,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,117580,-0.2687170090812564,peer,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,119215,0.3311439744878242,spot_peer,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,119215,19.662270044950013,baseline,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,119215,0.0842971154190169,peer,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,119215,0.0023708473949804,relative_legacy,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,119215,92.5999418556223,spot_baseline,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,120160,-1.3213490633611262,peer,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,120160,89.53026213333067,spot_baseline,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,120160,-0.0146906113126413,relative_legacy,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,120160,51.73176416526209,baseline,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,120160,-2.062563350831718,spot_peer,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,126626,60.46598522756162,baseline,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,126626,2.674978751057551,spot_peer,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,126626,1.5910644856897616,peer,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,126626,95.60566524124027,spot_baseline,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,126626,0.0198473422320767,relative_legacy,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,131306,59.52143856554248,baseline,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,131306,0.0294735921139769,relative_legacy,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,131306,3.828835019866314,spot_peer,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,131306,2.336060822694519,peer,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,131306,97.08536543404836,spot_baseline,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,139161,0.3311439744878242,spot_peer,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,139161,0.0128425052722406,relative_legacy,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,139161,1.720153909376454,peer,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,139161,92.5999418556223,spot_baseline,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29276,Will the US State Department approve more than 25 arms sales globally in the fourth quarter of 2024?,2024-10-30 13:45:52.748998+00,139161,85.55623029351739,baseline,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,0.5,29394 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,101465,52.93020168664344,baseline,Jgalt,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,101465,-0.0795490441507333,relative_legacy,Jgalt,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,101465,76.55347463629771,spot_baseline,Jgalt,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,101465,-6.186893439807906,peer,Jgalt,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,101465,-5.5480280292974085,spot_peer,Jgalt,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,103777,84.79969065549501,spot_baseline,datscilly,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,103777,46.06368730694948,baseline,datscilly,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,103777,0.2755098328428894,peer,datscilly,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,103777,0.0068659289337881,relative_legacy,datscilly,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,103777,0.8029068418080085,spot_peer,datscilly,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,115725,81.55754288625727,spot_baseline,Sergio,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,115725,-3.022950448530248,peer,Sergio,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,115725,74.8124722807368,baseline,Sergio,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,115725,-1.6940771417540688,spot_peer,Sergio,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,115725,-0.0337881633677804,relative_legacy,Sergio,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,117580,89.53026213333065,spot_baseline,MaciekK,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,117580,4.446220488806985,spot_peer,MaciekK,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,117580,0.055797474290165,relative_legacy,MaciekK,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,117580,4.884976818825152,peer,MaciekK,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,117580,66.13554002909098,baseline,MaciekK,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,119215,0.0010789740035229,relative_legacy,rappatoni,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,119215,-0.0454076663944821,peer,rappatoni,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,119215,19.75641782489354,baseline,rappatoni,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,119215,2.0306664180952088,spot_peer,rappatoni,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,119215,86.39384504239716,spot_baseline,rappatoni,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,120160,45.81731283403238,baseline,OpenSystem,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,120160,-2.205900922284326,peer,OpenSystem,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,120160,-0.0239835162962248,relative_legacy,OpenSystem,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,120160,-2.963932233267714,spot_peer,OpenSystem,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,120160,79.90873060740036,spot_baseline,OpenSystem,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,126626,0.006403535580599,relative_legacy,skmmcj,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,126626,0.2517675171553945,peer,skmmcj,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,126626,84.79969065549501,spot_baseline,skmmcj,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,126626,0.8029068418080085,spot_peer,skmmcj,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,126626,43.41670430850167,baseline,skmmcj,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,131306,83.18772411916731,spot_baseline,draaglom,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,131306,50.623963240519,baseline,draaglom,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,131306,-0.0010963272540685,relative_legacy,draaglom,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,131306,-0.4260057653606282,peer,draaglom,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,131306,-0.4385710024281334,spot_peer,draaglom,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,133827,-4.248468055609482,spot_peer,partlygloudy,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,133827,-8.955265433861793e-05,relative_legacy,partlygloudy,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,133827,0.1416386470342652,baseline,partlygloudy,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,133827,78.24085649273731,spot_baseline,partlygloudy,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,133827,-0.007690959612906,peer,partlygloudy,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,139161,0.067503407904858,relative_legacy,Zaldath,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,139161,6.4825950331670725,peer,Zaldath,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,139161,6.810375871838629,spot_peer,Zaldath,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,139161,92.5999418556223,spot_baseline,Zaldath,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29277,Will there be a white Christmas in at least 4 of these 9 large European cities in 2024?,2024-10-30 13:45:52.755001+00,139161,86.26804757505458,baseline,Zaldath,no,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29395 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,101465,-1.577053514627975,spot_peer,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,101465,43.14342154887189,baseline,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,101465,-1.298974199280335,peer,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,101465,53.60529002402098,spot_baseline,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,101465,-0.0360975405944107,relative_legacy,Jgalt,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,103777,0.0007241654709047,relative_legacy,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,103777,2.189785560447732,spot_peer,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,103777,35.239792095701425,baseline,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,103777,1.2777179401157408,peer,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,103777,58.496250072115615,spot_baseline,datscilly,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,115725,48.54268271702416,spot_baseline,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,115725,41.53869791123154,baseline,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,115725,-5.476089049213557,spot_peer,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,115725,-5.0596708109412445,peer,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,115725,-0.0786138595754534,relative_legacy,Sergio,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,117580,6.589744912100199,baseline,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,117580,0.0058639961094257,relative_legacy,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,117580,0.6254706910864463,peer,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,117580,6.547642577478985,spot_peer,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,117580,64.15460290875237,spot_baseline,MaciekK,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,119215,-3.9000184945517273,spot_peer,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,119215,-1.061464770953665,peer,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,119215,50.58909297299573,spot_baseline,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,119215,-0.0200023957307309,relative_legacy,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,119215,13.408303914948908,baseline,rappatoni,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,120160,44.62229256049419,baseline,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,120160,1.862367215617767,peer,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,120160,0.0025951930495862,relative_legacy,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,120160,3.661477421561128,spot_peer,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,120160,60.40713236688608,spot_baseline,OpenSystem,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,126626,46.46682670034443,spot_baseline,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,126626,-6.300967197210728,peer,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,126626,38.59384433382482,baseline,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,126626,-0.0946482411391407,relative_legacy,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,126626,-7.074837655002392,spot_peer,skmmcj,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,131306,57.918014812715,spot_baseline,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,131306,37.251501374890616,baseline,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,131306,-0.001675038460865,relative_legacy,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,131306,1.7444498496100884,spot_peer,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,131306,1.1651215976693767,peer,draaglom,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,133827,-0.0151666115318192,peer,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,133827,-0.0002596598020946,relative_legacy,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,133827,0.1344441269791249,baseline,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,133827,-5.476089049213557,spot_peer,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,133827,48.54268271702416,spot_baseline,partlygloudy,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,139161,0.0867165409542253,relative_legacy,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,139161,8.80556614542842,peer,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,139161,9.3607323535112,spot_peer,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,139161,67.80719051126377,spot_baseline,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29278,Will Gukesh Dommaraju win the 2024 World Chess Championship?,2024-10-30 13:45:52.75988+00,139161,64.57583855662352,baseline,Zaldath,yes,2024-11-02 14:30:00+00,2024-11-02 14:30:00+00,1.0,29396 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,101465,37.85116232537298,spot_baseline,Jgalt,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,101465,-0.0194814898874301,relative_legacy,Jgalt,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,101465,-4.393389727495062,spot_peer,Jgalt,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,101465,16.27659282952597,baseline,Jgalt,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,101465,1.5337356762704717,peer,Jgalt,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,103777,11.506704010357517,spot_peer,datscilly,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,103777,36.29275198795512,baseline,datscilly,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,103777,21.813560869703338,peer,datscilly,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,103777,58.496250072115615,spot_baseline,datscilly,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,103777,0.1823562325038664,relative_legacy,datscilly,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,115725,-13.28702391344356,spot_peer,Sergio,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,115725,-0.1033282917519581,relative_legacy,Sergio,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,115725,0.5452083941448436,peer,Sergio,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,115725,26.303440583379377,spot_baseline,Sergio,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,115725,0.99486092761844,baseline,Sergio,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,117580,26.303440583379377,spot_baseline,MaciekK,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,117580,-0.0233958579047582,relative_legacy,MaciekK,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,117580,3.0025132759099797,peer,MaciekK,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,117580,-13.28702391344356,spot_peer,MaciekK,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,117580,17.132451036367392,baseline,MaciekK,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,119215,56.55971758542251,spot_baseline,rappatoni,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,119215,0.1087179244839894,relative_legacy,rappatoni,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,119215,10.015257306786332,spot_peer,rappatoni,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,119215,8.177817633088868,peer,rappatoni,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,119215,24.197357354489075,baseline,rappatoni,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,120160,13.124143037028276,baseline,OpenSystem,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,120160,-1.1300428261035842,peer,OpenSystem,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,120160,-0.0118068022809225,relative_legacy,OpenSystem,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,120160,3.840829400696249,spot_peer,OpenSystem,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,120160,48.54268271702416,spot_baseline,OpenSystem,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,126626,44.36066514756145,spot_baseline,skmmcj,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,126626,2.567491684346727,peer,skmmcj,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,126626,17.693894740405355,baseline,skmmcj,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,126626,0.034939154478232,relative_legacy,skmmcj,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,126626,0.619991970334887,spot_peer,skmmcj,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,131306,48.54268271702416,spot_baseline,draaglom,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,131306,3.252926895000492,baseline,draaglom,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,131306,0.0009885445448428,relative_legacy,draaglom,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,131306,3.840829400696249,spot_peer,draaglom,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,131306,0.3221642547332635,peer,draaglom,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,133827,-0.13522391713167,peer,partlygloudy,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,133827,-0.0044172278286833,relative_legacy,partlygloudy,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,133827,2.1877075716985384,baseline,partlygloudy,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,133827,-2.697003935185251,spot_peer,partlygloudy,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,133827,40.05379295837285,spot_baseline,partlygloudy,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,139161,-0.4492292990673861,relative_legacy,Zaldath,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,139161,-36.697225044962266,peer,Zaldath,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,139161,3.840829400696249,spot_peer,Zaldath,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,139161,48.54268271702416,spot_baseline,Zaldath,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29384,"Will the XEC COVID-19 variant account for at least 50% of the variants monitored in the US before January 5, 2025?",2024-11-03 00:02:02.232601+00,139161,-38.62667194799226,baseline,Zaldath,no,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29515 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,101465,18.046692248635736,baseline,Jgalt,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,101465,0.0285559494471359,relative_legacy,Jgalt,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,101465,26.303440583379377,spot_baseline,Jgalt,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,101465,2.571755873857672,peer,Jgalt,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,101465,4.727499253268519,spot_peer,Jgalt,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,103777,0.0,spot_baseline,datscilly,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,103777,-13.259256873152944,baseline,datscilly,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,103777,-30.95322613201182,peer,datscilly,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,103777,-0.3803937612446212,relative_legacy,datscilly,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,103777,-15.530451501615318,spot_peer,datscilly,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,115725,44.36066514756148,spot_baseline,Sergio,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,115725,8.163471580100529,peer,Sergio,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,115725,47.87634759596391,baseline,Sergio,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,115725,18.634515137046986,spot_peer,Sergio,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,115725,0.1008387624721244,relative_legacy,Sergio,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,117580,48.54268271702416,spot_baseline,MaciekK,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,117580,21.85535256740832,spot_peer,MaciekK,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,117580,0.0891699986767217,relative_legacy,MaciekK,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,117580,7.572383295054444,peer,MaciekK,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,117580,31.67762483932608,baseline,MaciekK,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,119215,0.0069832219206235,relative_legacy,rappatoni,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,119215,1.5093245581055854,peer,rappatoni,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,119215,4.784394076805606,baseline,rappatoni,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,119215,6.564088358958582,spot_peer,rappatoni,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,119215,28.688114778816157,spot_baseline,rappatoni,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,120160,3.269325860572925,baseline,OpenSystem,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,120160,-6.062811899247224,peer,OpenSystem,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,120160,-0.0747581496160214,relative_legacy,OpenSystem,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,120160,-15.530451501615318,spot_peer,OpenSystem,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,120160,0.0,spot_baseline,OpenSystem,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,126626,-0.1344808033544489,relative_legacy,skmmcj,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,126626,-10.60315463817939,peer,skmmcj,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,126626,-5.889368905356857,spot_baseline,skmmcj,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,126626,-20.06622867053257,spot_peer,skmmcj,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,126626,33.95862907540643,baseline,skmmcj,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,131306,-15.200309344504996,spot_baseline,draaglom,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,131306,-0.5539682470192124,baseline,draaglom,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,131306,-0.0188898727814947,relative_legacy,draaglom,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,131306,-1.2663828339702334,peer,draaglom,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,131306,-27.237175463596014,spot_peer,draaglom,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,133827,4.727499253268519,spot_peer,partlygloudy,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,133827,-0.0002514985929328,relative_legacy,partlygloudy,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,133827,1.3616391441694895,baseline,partlygloudy,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,133827,26.303440583379377,spot_baseline,partlygloudy,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,133827,0.1684612605174239,peer,partlygloudy,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,139161,0.3324055265325512,relative_legacy,Zaldath,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,139161,28.900178935773013,peer,Zaldath,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,139161,21.85535256740832,spot_peer,Zaldath,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,139161,48.54268271702416,spot_baseline,Zaldath,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29385,"Before January 5, 2025, will the KP lineage constitute less than 50% of the COVID-19 variants monitored in the US?",2024-11-03 00:02:02.241267+00,139161,76.70974882990856,baseline,Zaldath,yes,2024-11-05 15:30:00+00,2024-11-05 15:30:00+00,1.0,29516 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,101465,-0.0479214326300853,relative_legacy,Jgalt,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,101465,88.2526367874215,baseline,Jgalt,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,101465,-0.1165331316011411,spot_peer,Jgalt,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,101465,96.3474123974886,spot_baseline,Jgalt,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,101465,-3.468076773698124,peer,Jgalt,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,103777,97.08536543404836,spot_baseline,datscilly,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,103777,0.4589156934105206,spot_peer,datscilly,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,103777,29.38513130327156,baseline,datscilly,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,103777,0.0693621571034248,peer,datscilly,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,103777,0.00135442795766,relative_legacy,datscilly,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,115725,-0.0054949502416515,relative_legacy,Sergio,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,115725,95.9894222441597,baseline,Sergio,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,115725,96.3474123974886,spot_baseline,Sergio,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,115725,0.5103975066018921,peer,Sergio,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,115725,-0.1165331316011411,spot_peer,Sergio,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,117580,0.0,relative_legacy,MaciekK,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,117580,97.08536543404836,spot_baseline,MaciekK,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,117580,0.0214590780077423,peer,MaciekK,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,117580,11.566228648363388,baseline,MaciekK,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,117580,0.4589156934105206,spot_peer,MaciekK,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,119215,-4.229262651653379,spot_peer,rappatoni,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,119215,-0.0001497148502184,relative_legacy,rappatoni,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,119215,0.2267930028058588,baseline,rappatoni,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,119215,91.07326619029126,spot_baseline,rappatoni,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,119215,-0.0105318192324301,peer,rappatoni,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,120160,-0.1165331316011411,spot_peer,OpenSystem,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,120160,0.3587102644301114,peer,OpenSystem,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,120160,-0.0047192764197077,relative_legacy,OpenSystem,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,120160,86.14267919406886,baseline,OpenSystem,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,120160,96.3474123974886,spot_baseline,OpenSystem,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,126626,1.862372745568011,peer,skmmcj,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,126626,98.5500430304885,spot_baseline,skmmcj,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,126626,1.601057483112549,spot_peer,skmmcj,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,126626,0.0142870693601047,relative_legacy,skmmcj,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,126626,85.2014746631175,baseline,skmmcj,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,131306,-1.278422903654416,peer,draaglom,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,131306,-0.0144769237967865,relative_legacy,draaglom,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,131306,0.4589156934105206,spot_peer,draaglom,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,131306,97.08536543404836,spot_baseline,draaglom,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,131306,55.42379850449632,baseline,draaglom,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,139161,1.601057483112549,spot_peer,Zaldath,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,139161,91.03852269036064,baseline,Zaldath,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,139161,0.0128019878754776,relative_legacy,Zaldath,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29430,"Will three or more Frontier AI Labs issue a joint statement committing to constrain their AI's capabilities before 2025? -",2024-11-04 14:29:27.952618+00,139161,1.9347297448737544,peer,Zaldath,no,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29558 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,101465,28.66519596857548,baseline,Jgalt,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,101465,48.54268271702416,spot_baseline,Jgalt,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,101465,17.959675622457613,spot_peer,Jgalt,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,101465,0.0328137575102138,relative_legacy,Jgalt,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,101465,3.169961047354609,peer,Jgalt,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,103777,12.85118304774402,baseline,datscilly,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,103777,40.05379295837288,spot_baseline,datscilly,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,103777,2.212868528919293,peer,datscilly,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,103777,0.021858799390195,relative_legacy,datscilly,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,103777,11.094950619782065,spot_peer,datscilly,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,115725,52.60688116675877,spot_baseline,Sergio,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,115725,21.24627793523886,spot_peer,Sergio,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,115725,6.247646853479912,peer,Sergio,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,115725,53.44282283912595,baseline,Sergio,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,115725,0.0724784046427528,relative_legacy,Sergio,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,120160,10.786063679960169,baseline,OpenSystem,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,120160,-21.295418650017236,spot_peer,OpenSystem,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,120160,-11.112809476089437,peer,OpenSystem,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,120160,0.0,spot_baseline,OpenSystem,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,120160,-0.1316937375158946,relative_legacy,OpenSystem,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,126626,-12.199356091076409,peer,skmmcj,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,126626,-38.891422452385314,spot_peer,skmmcj,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,126626,-0.1499189544960398,relative_legacy,skmmcj,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,126626,-21.75914350726268,spot_baseline,skmmcj,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,126626,-6.347517558177183,baseline,skmmcj,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,131306,-0.0005595148360146,relative_legacy,draaglom,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,131306,-0.0559514836014635,baseline,draaglom,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,131306,-0.4229296243504225,peer,draaglom,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,131306,-23.65240117039449,spot_peer,draaglom,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,131306,-2.914634565951651,spot_baseline,draaglom,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,139161,0.1292194397135684,relative_legacy,Zaldath,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,139161,67.80719051126377,spot_baseline,Zaldath,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,139161,12.104618761762454,peer,Zaldath,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,139161,62.70216379890967,baseline,Zaldath,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29431,"Will the weekly total number of influenza hospitalizations for the United States for the week of Nov 23, 2024 be more than 2,000?",2024-11-04 14:29:27.958015+00,139161,33.53833809531859,spot_peer,Zaldath,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29559 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,101465,-1.7957072956493914,peer,Jgalt,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,101465,0.0114913403892166,relative_legacy,Jgalt,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,101465,1.534451214108148,spot_peer,Jgalt,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,101465,35.26946825105878,baseline,Jgalt,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,101465,72.2466024471091,spot_baseline,Jgalt,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,103777,11.68577852956498,spot_peer,datscilly,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,103777,84.79969065549501,spot_baseline,datscilly,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,103777,2.568309940052268,peer,datscilly,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,103777,23.15287838598905,baseline,datscilly,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,103777,0.0458272846788602,relative_legacy,datscilly,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,115725,86.39384504239716,spot_baseline,Sergio,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,115725,0.0701743388858805,relative_legacy,Sergio,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,115725,2.996142045230111,peer,Sergio,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,115725,75.0325222316826,baseline,Sergio,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,115725,12.974926084666553,spot_peer,Sergio,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,120160,34.74668989056206,baseline,OpenSystem,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,120160,58.496250072115615,spot_baseline,OpenSystem,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,120160,-0.0287922864423477,relative_legacy,OpenSystem,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,120160,-9.585069763063071,spot_peer,OpenSystem,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,120160,-5.220413808289722,peer,OpenSystem,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,126626,-0.0705796340794175,relative_legacy,skmmcj,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,126626,8.426229429651842,baseline,skmmcj,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,126626,-7.233538566046519,peer,skmmcj,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,126626,-28.088989950337577,spot_peer,skmmcj,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,126626,35.61438102252753,spot_baseline,skmmcj,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,131306,-6.514717126036162,spot_peer,draaglom,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,131306,-0.0001158904066331,relative_legacy,draaglom,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,131306,-0.0679717857146162,peer,draaglom,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,131306,62.29303509201767,spot_baseline,draaglom,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,131306,0.5058282999830086,baseline,draaglom,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,139161,85.32199150768402,baseline,Zaldath,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,139161,92.5999418556223,spot_baseline,Zaldath,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,139161,17.99362101109714,spot_peer,Zaldath,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,139161,8.753179470417885,peer,Zaldath,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29432,"Will the weekly total number of influenza hospitalizations for the United States for the week of Dec 7, 2024 be more than 2,000?",2024-11-04 14:29:27.963184+00,139161,0.1235125524480507,relative_legacy,Zaldath,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29560 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,101465,-0.0484655263633113,relative_legacy,Jgalt,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,101465,39.125915223458,baseline,Jgalt,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,101465,-7.314357020456043,spot_peer,Jgalt,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,101465,67.80719051126377,spot_baseline,Jgalt,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,101465,-3.264704435824838,peer,Jgalt,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,103777,79.90873060740036,spot_baseline,datscilly,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,103777,2.122309927372928,spot_peer,datscilly,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,103777,22.969628780424365,baseline,datscilly,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,103777,0.9319374400531782,peer,datscilly,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,103777,0.0056847045871081,relative_legacy,datscilly,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,115725,-0.0623840866298039,relative_legacy,Sergio,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,115725,58.657996975228095,baseline,Sergio,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,115725,71.36958148433588,spot_baseline,Sergio,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,115725,-4.418641044399882,peer,Sergio,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,115725,-4.536438104039263,spot_peer,Sergio,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,117580,-0.0073250088457247,relative_legacy,MaciekK,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,117580,71.36958148433588,spot_baseline,MaciekK,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,117580,-0.4076865810344282,peer,MaciekK,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,117580,8.012501776624648,baseline,MaciekK,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,117580,-4.536438104039263,spot_peer,MaciekK,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,119215,7.179341061877913,spot_peer,rappatoni,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,119215,-0.0019168509446624,relative_legacy,rappatoni,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,119215,0.6752313784332815,baseline,rappatoni,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,119215,86.39384504239716,spot_baseline,rappatoni,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,119215,-0.1214395677512099,peer,rappatoni,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,120160,0.8217174072518801,spot_peer,OpenSystem,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,120160,2.8171315148591822,peer,OpenSystem,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,120160,0.0182221093424872,relative_legacy,OpenSystem,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,120160,70.51040644652826,baseline,OpenSystem,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,120160,78.24085649273731,spot_baseline,OpenSystem,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,126626,2.1642987410124306,peer,skmmcj,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,126626,78.24085649273731,spot_baseline,skmmcj,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,126626,0.8217174072518801,spot_peer,skmmcj,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,126626,0.0123362600112676,relative_legacy,skmmcj,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,126626,68.16812594580396,baseline,skmmcj,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,131306,0.0317933215437756,peer,draaglom,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,131306,-0.0001069985179773,relative_legacy,draaglom,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,131306,-0.4940870661071384,spot_peer,draaglom,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,131306,76.55347463629771,spot_baseline,draaglom,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,131306,2.177650058476,baseline,draaglom,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,139161,5.936234490887103,spot_peer,Zaldath,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,139161,72.64758403957156,baseline,Zaldath,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,139161,0.0160458598113655,relative_legacy,Zaldath,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,139161,84.79969065549501,spot_baseline,Zaldath,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29433,"Will the CDC report more than 80% of the tested influenza sequences as influenza A during the 2024-25 season through the week ending Dec 21, 2024?",2024-11-04 14:29:27.969204+00,139161,2.267310611541812,peer,Zaldath,yes,2024-11-06 15:30:00+00,2024-11-06 15:30:00+00,1.0,29561 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,101465,0.0296116072929513,relative_legacy,Jgalt,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,101465,3.8807517106116816,peer,Jgalt,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,101465,7.682472309605897,baseline,Jgalt,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,101465,13.750352374993504,spot_baseline,Jgalt,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,101465,2.620474344677484,spot_peer,Jgalt,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,103777,3.9150126933836287,peer,datscilly,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,103777,-1.5466687193617947,spot_peer,datscilly,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,103777,5.986738843186653,baseline,datscilly,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,103777,0.0179956615642879,relative_legacy,datscilly,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,103777,8.406426478847456,spot_baseline,datscilly,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,115725,-3.0388511742572493,peer,Sergio,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,115725,-12.694395266837772,spot_peer,Sergio,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,115725,-4.91585969739677,baseline,Sergio,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,115725,-5.889368905356857,spot_baseline,Sergio,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,115725,-0.0710755577340939,relative_legacy,Sergio,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,117580,1.3095560016728822,peer,MaciekK,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,117580,18.903382439001717,spot_baseline,MaciekK,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,117580,3.1655200928504845,baseline,MaciekK,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,117580,0.0114356333313515,relative_legacy,MaciekK,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,117580,6.638758637411394,spot_peer,MaciekK,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,119215,4.647556213728791,spot_peer,rappatoni,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,119215,0.6448721421979565,baseline,rappatoni,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,119215,16.349873228287958,spot_baseline,rappatoni,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,119215,0.0008667871738456,relative_legacy,rappatoni,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,119215,0.1926274249306659,peer,rappatoni,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,120160,-0.0048360765351671,relative_legacy,OpenSystem,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,120160,2.6270445156646964,peer,OpenSystem,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,120160,0.5561962445053767,spot_peer,OpenSystem,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,120160,-0.9429288448551412,baseline,OpenSystem,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,120160,11.103131238874395,spot_baseline,OpenSystem,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,126626,16.349873228287958,spot_baseline,skmmcj,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,126626,8.89474871224668,baseline,skmmcj,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,126626,4.831993890040013,peer,skmmcj,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,126626,0.0428889062387379,relative_legacy,skmmcj,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,126626,4.647556213728791,spot_peer,skmmcj,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,131306,14.535138557261984,spot_baseline,draaglom,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,131306,0.065291125150279,peer,draaglom,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,131306,0.0,relative_legacy,draaglom,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,131306,0.293590787946653,baseline,draaglom,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,131306,3.232443215457016,spot_peer,draaglom,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,139161,0.0,spot_baseline,Zaldath,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,139161,-0.1808534383546258,relative_legacy,Zaldath,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,139161,-13.783426187196554,peer,Zaldath,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,139161,-18.341598757624972,baseline,Zaldath,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29476,Will Atlético Mineiro win the 2024 Copa Libertadores?,2024-11-05 14:49:19.975092+00,139161,-8.101920883309075,spot_peer,Zaldath,no,2024-11-07 15:30:00+00,2024-11-07 15:30:00+00,1.0,29604 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,101465,-0.0187697012290404,relative_legacy,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,101465,48.986636163447066,baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,101465,-2.4260367530719966,spot_peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,101465,84.79969065549501,spot_baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,101465,-1.4481338896964469,peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,103777,89.53026213333065,spot_baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,103777,1.2628183145144594,spot_peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,103777,43.85833597921742,baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,103777,0.6368802332517878,peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,103777,0.0058037431140688,relative_legacy,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,115725,-0.0108569442309729,relative_legacy,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,115725,56.24753683000078,baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,115725,86.39384504239716,spot_baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,115725,-0.7326419783439804,peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,115725,-1.1829301820811968,spot_peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,117580,-0.001537940585928,relative_legacy,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,117580,84.79969065549501,spot_baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,117580,-0.1017040634844798,peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,117580,4.663374647083805,baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,117580,-2.4260367530719966,spot_peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,119215,1.2628183145144594,spot_peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,119215,-0.0028268645912969,relative_legacy,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,119215,1.138137403293039,baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,119215,89.53026213333065,spot_baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,119215,-0.1768279897845222,peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,120160,-2.4260367530719966,spot_peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,120160,-1.5988706907562094,peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,120160,-0.0208390770507672,relative_legacy,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,120160,54.30308911272179,baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,120160,84.79969065549501,spot_baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,126626,1.0505707810076577,peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,126626,90.3038270112912,spot_baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,126626,1.8660369179203216,spot_peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,126626,0.0104345734091899,relative_legacy,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,126626,58.90778033096033,baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,131306,0.3589533234574741,peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,131306,0.002588405289671,relative_legacy,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,131306,0.412841254513909,spot_peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,131306,88.44025529836873,spot_baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,131306,57.45245341540269,baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,139161,3.656525639834016,spot_peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,139161,77.97230515229299,baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,139161,0.0237163735062835,relative_legacy,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,139161,92.5999418556223,spot_baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29528,Will the 2024 World Chess Champion be decided in the first 10 games?,2024-11-06 14:03:51.630792+00,139161,2.011774274348733,peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29655 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,101465,0.0012595060084913,relative_legacy,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,101465,65.54244172849883,baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,101465,0.389367026625142,spot_peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,101465,99.71117206751734,spot_baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,101465,0.2163452868777034,peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,103777,99.27684307689242,spot_baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,103777,0.0506813719271352,spot_peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,103777,44.92239545331879,baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,103777,0.0192005829387202,peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,103777,-0.0007759149564036,relative_legacy,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,115725,-0.0055927203271539,relative_legacy,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,115725,60.50220662409508,baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,115725,98.5500430304885,spot_baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,115725,-0.3476799326278976,peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,115725,-0.5160704564430472,spot_peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,117580,-1.6727082498489926e-06,relative_legacy,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,117580,99.27684307689242,spot_baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,117580,0.0019459631416172,peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,117580,5.706423934707188,baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,117580,0.0506813719271352,spot_peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,119215,0.0506813719271352,spot_peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,119215,0.0,relative_legacy,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,119215,0.0559361178305597,baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,119215,99.27684307689242,spot_baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,119215,2.855569440030385e-05,peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,120160,0.0506813719271352,spot_peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,120160,0.019231292779107,peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,120160,-0.0007759149564036,relative_legacy,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,120160,44.99684733002496,baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,120160,99.27684307689242,spot_baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,126626,0.2211931301285477,peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,126626,99.71117206751734,spot_baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,126626,0.389367026625142,spot_peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,126626,0.0013295250927486,relative_legacy,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,126626,59.97571984067682,baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,131306,0.1912928087058595,peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,131306,0.000924910273212,relative_legacy,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,131306,0.0506813719271352,spot_peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,131306,99.27684307689242,spot_baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,131306,61.23636665043742,baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,139161,-0.5160704564430472,spot_peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,139161,92.12086993142498,baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,139161,-0.0052999045281304,relative_legacy,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29529,"Will 0-3 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.665197+00,139161,-0.3215576876381075,peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29656 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,101465,97.08536543404836,spot_baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,101465,-0.0030052042702629,relative_legacy,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,101465,-0.7233636372974916,spot_peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,101465,37.13207565413254,baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,101465,0.147166717872621,peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,103777,-0.0034924732777375,relative_legacy,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,103777,43.94188038324913,baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,103777,97.08536543404836,spot_baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,103777,0.1826140688173397,peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,103777,-0.7233636372974916,spot_peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,115725,0.0029180298771041,relative_legacy,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,115725,0.4187781524045513,spot_peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,115725,1.068619691048604,peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,115725,60.439357171511965,baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,115725,98.5500430304885,spot_baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,117580,0.0,relative_legacy,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,117580,5.654843713647742,baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,117580,98.5500430304885,spot_baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,117580,0.4187781524045513,spot_peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,117580,0.0764750830755689,peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,119215,-0.7233636372974916,spot_peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,119215,0.0394160156362974,baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,119215,-0.0002936808478906,peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,119215,-5.946494076147553e-06,relative_legacy,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,119215,97.08536543404836,spot_baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,120160,44.35147742809875,baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,120160,97.81956296816516,spot_baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,120160,0.4482827498589161,peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,120160,-0.1508433177069705,spot_peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,120160,-0.0002304779491141,relative_legacy,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,126626,1.300854516646857,peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,126626,59.57800350395915,baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,126626,0.0059199808538603,relative_legacy,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,126626,98.84120257247882,spot_baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,126626,0.6458216199812202,spot_peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,131306,-4.342854798374306,peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,131306,54.11133434995551,baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,131306,-0.061354757406517,relative_legacy,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,131306,0.4187781524045513,spot_peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,131306,98.5500430304885,spot_baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,139161,0.4187781524045513,spot_peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,139161,0.0034022795414813,relative_legacy,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,139161,1.1191356519022442,peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29530,"Will 4 or 5 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.709553+00,139161,91.92139958068742,baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29657 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,101465,94.11063109464314,spot_baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,101465,-0.0097452365722247,relative_legacy,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,101465,-1.607401889862078,spot_peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,101465,33.39541622001778,baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,101465,1.4224164303071014,peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,103777,0.0008138929586108,relative_legacy,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,103777,43.95157032269061,baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,103777,97.08536543404836,spot_baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,103777,3.002786513705559,peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,103777,0.7122679204456833,spot_peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,115725,-0.0004749828346685,relative_legacy,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,115725,0.7122679204456833,spot_peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,115725,4.975769473561699,peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,115725,59.5180125541435,baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,115725,97.08536543404836,spot_baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,117580,-3.331604342023265e-05,relative_legacy,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,117580,5.470690351287357,baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,117580,95.60566524124027,spot_baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,117580,-0.4415883483630887,spot_peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,117580,0.2498915326656559,peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,119215,-2.785423124932809,spot_peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,119215,0.0330306146711219,baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,119215,-0.0009935669082723,peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,119215,-1.0721485237336556e-05,relative_legacy,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,119215,92.5999418556223,spot_baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,120160,43.32258332738896,baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,120160,95.60566524124027,spot_baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,120160,2.4605096643115245,peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,120160,-0.4415883483630887,spot_peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,120160,-0.0059190567655358,relative_legacy,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,126626,5.234170406946519,peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,126626,58.92144195304603,baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,126626,0.0048880339384399,relative_legacy,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,126626,97.81956296816516,spot_baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,126626,1.2847882400362136,spot_peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,131306,-23.1754843616752,peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,131306,26.22614087352919,baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,131306,-0.3341428045932451,relative_legacy,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,131306,0.7122679204456833,spot_peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,131306,97.08536543404836,spot_baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,139161,1.854409710147707,spot_peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,139161,0.009348414945803,relative_legacy,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,139161,5.83093390708541,peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29531,"Will 6 or 7 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.720983+00,139161,91.91562469263935,baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29658 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,101465,92.5999418556223,spot_baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,101465,-0.0039986469798193,relative_legacy,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,101465,0.4894648198572281,spot_peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,101465,32.267473560945504,baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,101465,2.462772937726747,peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,103777,0.0038770708236064,relative_legacy,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,103777,42.95163015265939,baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,103777,94.86008474933556,spot_baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,103777,4.155707587478415,peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,103777,2.2519029536021606,spot_peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,115725,0.0029342874016357,relative_legacy,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,115725,2.2519029536021606,spot_peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,115725,6.898449871144326,peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,115725,58.100384496760896,baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,115725,94.86008474933556,spot_baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,117580,0.0,relative_legacy,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,117580,5.283369307780399,baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,117580,92.5999418556223,spot_baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,117580,0.4894648198572281,spot_peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,117580,0.3571849374140451,peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,119215,-5.593097573048799,spot_peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,119215,0.0176708673846762,baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,119215,-0.0011655099767335,peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,119215,-1.6254446621106794e-05,relative_legacy,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,119215,84.79969065549501,spot_baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,120160,41.950602991762885,baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,120160,92.5999418556223,spot_baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,120160,3.325405972878869,peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,120160,0.4894648198572281,spot_peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,120160,-0.0063906565007817,relative_legacy,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,126626,6.8246769420131175,peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,126626,57.20766230883468,baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,126626,0.0051553405041844,relative_legacy,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,126626,94.86008474933556,spot_baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,126626,2.2519029536021606,spot_peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,131306,-31.843740481966943,peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,131306,12.25103240075384,baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,131306,-0.4561751495652518,relative_legacy,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,131306,-3.1204705671865804,spot_peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,131306,87.97057662822883,spot_baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,139161,0.4894648198572281,spot_peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,139161,0.0132614810177117,relative_legacy,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,139161,7.82070774328818,peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,139161,92.5999418556223,spot_baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29532,"Will 8 or 9 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.855511+00,139161,90.54326129902496,baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29659 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,101465,76.55347463629771,spot_baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,101465,-0.0050988202830146,relative_legacy,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,101465,-1.0523378595324129,spot_peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,101465,26.37584290323458,baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,101465,-0.8894581550114795,peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,103777,-0.0164698646302645,relative_legacy,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,103777,33.896541433732715,baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,103777,74.84612330040356,spot_baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,103777,-1.9428400472537748,peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,103777,-2.383714344820234,spot_peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,115725,-0.0038143573489802,relative_legacy,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,115725,0.2634666138266204,spot_peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,115725,-1.235998661670891,peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,115725,47.88508869097586,baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,115725,78.24085649273731,spot_baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,117580,-0.0003699374460762,relative_legacy,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,117580,4.355637791400076,baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,117580,76.55347463629771,spot_baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,117580,-1.0523378595324129,spot_peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,117580,-0.1055349991046418,peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,119215,-4.410796213871547,spot_peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,119215,0.0068648640592409,baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,119215,-0.0004191133613986,peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,119215,-4.092385122324649e-06,relative_legacy,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,119215,72.2466024471091,spot_baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,120160,38.40725798298556,baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,120160,84.79969065549501,spot_baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,120160,1.7181177520974749,peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,120160,5.377983697461827,spot_peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,120160,0.0286081558987543,relative_legacy,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,126626,-0.7075698320278276,peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,126626,47.47694899262341,baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,126626,0.0016927098696267,relative_legacy,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,126626,78.24085649273731,spot_baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,126626,0.2634666138266204,spot_peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,131306,-1.6581224934343748,peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,131306,47.44519935075967,baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,131306,-0.0089885736484557,relative_legacy,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,131306,-2.383714344820234,spot_peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,131306,74.84612330040356,spot_baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,139161,5.377983697461827,spot_peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,139161,0.0675615313673321,relative_legacy,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,139161,4.821825549766945,peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,139161,84.79969065549501,spot_baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29533,"Will 10 or 11 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.863999+00,139161,84.55954750977621,baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29660 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,101465,56.55971758542251,spot_baseline,Jgalt,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,101465,-0.0307558527965929,relative_legacy,Jgalt,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,101465,-4.248210219565293,spot_peer,Jgalt,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,101465,18.739527019389136,baseline,Jgalt,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,101465,18.229306770999795,peer,Jgalt,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,103777,-0.0138726529078408,relative_legacy,datscilly,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,103777,29.10329008952531,baseline,datscilly,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,103777,64.15460290875237,spot_baseline,datscilly,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,103777,29.12387835660393,peer,datscilly,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,103777,1.6742097975446888,spot_peer,datscilly,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,115725,-0.017522130502187,relative_legacy,Sergio,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,115725,2.393062083656418,spot_peer,Sergio,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,115725,49.89205028356689,peer,Sergio,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,115725,39.483492177323306,baseline,Sergio,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,115725,65.07645591169023,spot_baseline,Sergio,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,117580,-0.002048516260258,relative_legacy,MaciekK,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,117580,3.4265453018495897,baseline,MaciekK,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,117580,60.40713236688608,spot_baseline,MaciekK,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,117580,-1.2480324228221336,spot_peer,MaciekK,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,117580,2.824139584019854,peer,MaciekK,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,119215,-18.8369653417752,spot_peer,rappatoni,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,119215,0.0020824458175291,baseline,rappatoni,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,119215,-0.0010363475592564,peer,rappatoni,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,119215,-1.0292828610757485e-05,relative_legacy,rappatoni,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,119215,37.85116232537298,spot_baseline,rappatoni,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,120160,31.703466211423816,baseline,OpenSystem,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,120160,67.80719051126377,spot_baseline,OpenSystem,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,120160,31.22191277479112,peer,OpenSystem,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,120160,4.52246319577731,spot_peer,OpenSystem,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,120160,0.0126844321897452,relative_legacy,OpenSystem,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,126626,50.07945772313085,peer,skmmcj,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,126626,41.67563124328301,baseline,skmmcj,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,126626,0.0096198260240404,relative_legacy,skmmcj,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,126626,67.80719051126377,spot_baseline,skmmcj,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,126626,4.52246319577731,spot_peer,skmmcj,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,131306,-244.81436172293007,peer,draaglom,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,131306,-309.6294624220289,baseline,draaglom,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,131306,-3.5086059638017915,relative_legacy,draaglom,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,131306,-6.552044995713613,spot_peer,draaglom,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,131306,53.60529002402098,spot_baseline,draaglom,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,139161,17.77305470712043,spot_peer,Zaldath,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,139161,0.1385510393323758,relative_legacy,Zaldath,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,139161,63.44465257737686,peer,Zaldath,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,139161,84.79969065549501,spot_baseline,Zaldath,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29534,"Will 12-15 U.S. federal executive department heads be announced by the incoming administration between the election and December 16, 2024?",2024-11-06 14:03:51.872226+00,139161,84.7506751596592,baseline,Zaldath,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29661 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,101465,-0.048309102618874,relative_legacy,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,101465,23.472153537538524,baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,101465,-12.419406576097028,spot_peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,101465,76.55347463629771,spot_baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,101465,-3.628537183890264,peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,103777,92.5999418556223,spot_baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,103777,0.0934773738032147,spot_peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,103777,40.08909026056046,baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,103777,-0.0144106970117909,peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,103777,-0.0012779103784835,relative_legacy,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,115725,-0.0030450945085839,relative_legacy,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,115725,53.26526708432668,baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,115725,92.5999418556223,spot_baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,115725,-0.3605182817057302,peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,115725,0.0934773738032147,spot_peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,117580,0.000366842558284,relative_legacy,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,117580,94.11063109464314,spot_baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,117580,0.1568035238281519,peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,117580,6.855861996444311,baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,117580,1.2714986088739513,spot_peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,119215,1.2714986088739513,spot_peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,119215,0.0046647584529595,relative_legacy,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,119215,54.912449359971866,baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,119215,94.11063109464314,spot_baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,119215,0.2998650126720488,peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,120160,0.0934773738032147,spot_peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,120160,-0.0580450317936448,peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,120160,-0.0012779103784835,relative_legacy,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,120160,42.43304934763693,baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,120160,92.5999418556223,spot_baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,126626,0.8868032048093031,peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,126626,94.11063109464314,spot_baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,126626,1.2714986088739513,spot_peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,126626,0.008176939434936,relative_legacy,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,126626,31.139821537830727,baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,131306,0.0041846429043993,peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,131306,3.466337273232464e-05,relative_legacy,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,131306,3.5911684191817224,spot_peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,131306,97.08536543404836,spot_baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,131306,0.1131296386475731,baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,139161,4.733310208883751,spot_peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,139161,91.82819297987382,baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,139161,0.0315838518357803,relative_legacy,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29535,"Will Elon Musk’s net worth be less than or equal to the highest other net worth on the Forbes Real-Time Billionaires list as of January 1, 2025?",2024-11-06 14:03:51.879731+00,139161,2.713854810187515,peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29662 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,101465,-0.0230403134756663,relative_legacy,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,101465,17.254935377498985,baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,101465,-7.164819512187207,spot_peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,101465,64.15460290875237,spot_baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,101465,-2.4511457222991684,peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,103777,79.90873060740036,spot_baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,103777,5.120100833874397,spot_peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,103777,34.6897330328678,baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,103777,1.4623053761489349,peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,103777,0.0193317756721183,relative_legacy,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,115725,-0.0047692618616399,relative_legacy,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,115725,44.01546516106764,baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,115725,76.55347463629771,spot_baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,115725,-1.056216649354012,peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,115725,2.5037038403943157,spot_peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,117580,-0.0016013364625175,relative_legacy,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,117580,69.59938131099001,spot_baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,117580,-0.2147367632920394,peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,117580,4.142216402259451,baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,117580,-2.919032614116905,spot_peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,119215,2.5037038403943157,spot_peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,119215,0.0,relative_legacy,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,119215,1.4346084092626945,baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,119215,76.55347463629771,spot_baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,119215,0.0369319505989465,peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,120160,-7.164819512187207,spot_peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,120160,-5.684383272842221,peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,120160,-0.0629467898275519,relative_legacy,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,120160,28.31353578110713,baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,120160,64.15460290875237,spot_baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,126626,1.1045226401540946,peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,126626,76.55347463629771,spot_baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,126626,2.5037038403943157,spot_peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,126626,0.0185591524880069,relative_legacy,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,126626,25.97412579603792,baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,131306,0.0034114538260938,peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,131306,2.204964367648525e-05,relative_legacy,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,131306,-4.316566113954592,spot_peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,131306,67.80719051126377,spot_baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,131306,0.0847740290506502,baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,139161,8.934025397388536,spot_peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,139161,86.1322096763833,baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,139161,0.0740917432542076,relative_legacy,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,139161,84.79969065549501,spot_baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29536,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than zero and less than $40 billion as of January 1, 2025?",2024-11-06 14:03:51.886822+00,139161,6.799310987059387,peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29663 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,101465,0.0288679805262799,relative_legacy,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,101465,13.033316861973336,baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,101465,13.91935061619237,spot_peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,101465,48.54268271702416,spot_baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,101465,2.8137586677405366,peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,103777,21.412480535284764,spot_baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,103777,-7.236525427888317,spot_peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,103777,9.303696062509609,baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,103777,-5.162397659922243,peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,103777,-0.0617429134689648,relative_legacy,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,115725,0.0607182852699674,relative_legacy,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,115725,27.902224507891333,baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,115725,48.54268271702416,spot_baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,115725,5.402693841908185,peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,115725,13.91935061619237,spot_peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,117580,0.0029749378595124,relative_legacy,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,117580,48.54268271702416,spot_baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,117580,0.5119293065863093,peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,117580,2.861157214466939,baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,117580,13.91935061619237,spot_peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,119215,5.5822037488986656,spot_peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,119215,2.6271025372934893e-05,relative_legacy,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,119215,0.6957753284837952,baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,119215,37.85116232537298,spot_baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,119215,-0.0084634382239714,peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,120160,13.91935061619237,spot_peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,120160,3.1987923717087003,peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,120160,0.038029812299123,relative_legacy,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,120160,20.20207183912555,baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,120160,48.54268271702416,spot_baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,126626,-4.158955864958733,peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,126626,28.688114778816157,spot_baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,126626,-1.5630543948630036,spot_peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,126626,-0.0498965367059113,relative_legacy,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,126626,6.387081477997866,baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,131306,-0.014059333902674,peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,131306,-0.0001745493841469,relative_legacy,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,131306,-49.03742552654267,spot_peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,131306,-32.19280948873623,spot_baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,131306,-0.0092298780575732,baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,139161,-3.422600864374188,spot_peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,139161,42.77735383522656,baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,139161,-0.0303820653132007,relative_legacy,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,139161,26.303440583379377,spot_baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29537,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $40 billion and less than or equal to $70 billion as of January 1, 2025?",2024-11-06 14:03:52.046218+00,139161,-2.5832978909361213,peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29664 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,101465,0.0441998482731504,relative_legacy,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,101465,17.136954369223997,baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,101465,12.28410441689305,spot_peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,101465,64.15460290875237,spot_baseline,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,101465,4.100558423878727,peer,Jgalt,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,103777,46.46682670034443,spot_baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,103777,-1.508656818494353,spot_peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,103777,20.194948894603293,baseline,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,103777,0.6047539720568083,peer,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,103777,-0.0018141039156237,relative_legacy,datscilly,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,115725,0.002345826245257,relative_legacy,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,115725,25.49412225079164,baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,115725,44.36066514756145,spot_baseline,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,115725,1.797840484120507,peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,115725,-3.151021753374025,spot_peer,Sergio,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,117580,0.0013252823930963,relative_legacy,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,117580,50.58909297299573,spot_baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,117580,0.2042451015758579,peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,117580,2.9938239011284464,baseline,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,117580,1.7058475814619534,spot_peer,MaciekK,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,119215,0.1100761448668599,spot_peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,119215,0.0,relative_legacy,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,119215,0.8692594255893631,baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,119215,48.54268271702416,spot_baseline,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,119215,0.0264674877813793,peer,rappatoni,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,120160,0.1100761448668599,spot_peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,120160,3.283400916625608,peer,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,120160,0.0274459291029695,relative_legacy,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,120160,24.18150846286437,baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,120160,48.54268271702416,spot_baseline,OpenSystem,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,126626,-0.7642481642264132,peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,126626,44.36066514756145,spot_baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,126626,-3.151021753374025,spot_peer,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,126626,-0.0151344586236093,relative_legacy,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,126626,13.801712977610524,baseline,skmmcj,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,131306,0.0013208780588429,peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,131306,1.7437325093680633e-05,relative_legacy,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,131306,10.832471372853416,spot_peer,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,131306,62.29303509201767,spot_baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,131306,0.0059292122202772,baseline,draaglom,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,139161,-17.231875335699694,spot_peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,139161,14.411291117702802,baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,139161,-0.1084887364026829,relative_legacy,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,139161,26.303440583379377,spot_baseline,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29538,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than $70 billion and less than $100 billion as of January 1, 2025?",2024-11-06 14:03:52.055323+00,139161,-9.25433909987128,peer,Zaldath,no,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29665 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,101465,-218.44245711374276,spot_baseline,Jgalt,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,101465,-0.0644368486866775,relative_legacy,Jgalt,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,101465,-26.73389447616443,spot_peer,Jgalt,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,101465,-57.55367246764632,baseline,Jgalt,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,101465,-4.77033274800519,peer,Jgalt,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,103777,-0.1592714318560811,relative_legacy,datscilly,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,103777,-107.59700743347332,baseline,datscilly,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,103777,-247.39311883324123,spot_baseline,datscilly,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,103777,-21.00874256273044,peer,datscilly,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,103777,-49.30934771565644,spot_peer,datscilly,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,115725,0.2274866344118421,relative_legacy,Sergio,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,115725,28.669710097337404,spot_peer,Sergio,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,115725,10.385015703586156,peer,Sergio,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,115725,-84.69939253530262,baseline,Sergio,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,115725,-147.39311883324126,spot_baseline,Sergio,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,117580,0.0057016023034537,relative_legacy,MaciekK,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,117580,-8.993101515641964,baseline,MaciekK,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,117580,-147.39311883324126,spot_baseline,MaciekK,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,117580,28.669710097337404,spot_peer,MaciekK,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,117580,2.110722628936822,peer,MaciekK,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,119215,15.419118585994266,spot_peer,rappatoni,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,119215,-2.964442844147959,baseline,rappatoni,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,119215,0.3008852869197481,peer,rappatoni,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,119215,1.9723658231989897e-05,relative_legacy,rappatoni,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,119215,-164.38561897747246,spot_baseline,rappatoni,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,120160,-96.45597067070597,baseline,OpenSystem,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,120160,-194.3416471633633,spot_baseline,OpenSystem,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,120160,-9.068089484058792,peer,OpenSystem,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,120160,-7.94030995155824,spot_peer,OpenSystem,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,120160,-0.0129638465399785,relative_legacy,OpenSystem,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,126626,-17.721468898242204,peer,skmmcj,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,126626,-85.31425515413032,baseline,skmmcj,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,126626,-0.1892027708332067,relative_legacy,skmmcj,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,126626,-232.19280948873623,spot_baseline,skmmcj,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,126626,-37.45628970415097,spot_peer,skmmcj,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,131306,0.0017282481424658,peer,draaglom,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,131306,-0.0367946889618315,baseline,draaglom,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,131306,0.0,relative_legacy,draaglom,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,131306,8.158534958017505,spot_peer,draaglom,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,131306,-173.6965594166206,spot_baseline,draaglom,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,139161,40.52276810884288,spot_peer,Zaldath,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,139161,0.509562673644243,relative_legacy,Zaldath,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,139161,39.77028182545139,peer,Zaldath,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,139161,-132.19280948873623,spot_baseline,Zaldath,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29539,"Will Elon Musk’s net worth differ from the highest other net worth on the Forbes Real-Time Billionaires list by greater than or equal to $100 billion as of January 1, 2025?",2024-11-06 14:03:52.062248+00,139161,-82.5350178339174,baseline,Zaldath,yes,2024-11-09 15:30:00+00,2024-11-09 15:30:00+00,1.0,29666 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,101465,73.36441424147198,baseline,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,101465,81.55754288625727,spot_baseline,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,101465,-0.0943277365994155,relative_legacy,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,101465,-6.5355367963139495,peer,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,101465,-5.640796886192257,spot_peer,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,103777,-0.5605954495255293,spot_peer,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,103777,33.64688955988541,baseline,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,103777,-0.9794718108448746,peer,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,103777,87.97057662822883,spot_baseline,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,103777,-0.0104517296242683,relative_legacy,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,115725,-3.072470503099845,spot_peer,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,115725,75.22610564640499,baseline,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,115725,-2.6304606734499214,peer,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,115725,-0.050063701737624,relative_legacy,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,115725,84.79969065549501,spot_baseline,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,117580,0.018418423721586,relative_legacy,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,117580,67.19101004773128,baseline,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,117580,2.228679574338151,peer,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,117580,92.5999418556223,spot_baseline,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,117580,3.1066404992173657,spot_peer,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,120160,85.82819753737002,baseline,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,120160,3.4801143669719545,peer,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,120160,0.0214917384589818,relative_legacy,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,120160,3.1066404992173657,spot_peer,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,120160,92.5999418556223,spot_baseline,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,126626,4.303360484051127,spot_peer,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,126626,94.11063109464314,spot_baseline,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,126626,2.9010991049686017,peer,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,126626,0.0286754198382455,relative_legacy,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,126626,64.67200293995239,baseline,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,131306,-0.0168543404146831,relative_legacy,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,131306,-4.349419142885586,spot_peer,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,131306,-1.5324735628040518,peer,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,131306,83.18772411916731,spot_baseline,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,131306,29.29567893261311,baseline,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,139161,0.018418423721586,relative_legacy,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,139161,81.29790532346941,baseline,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,139161,3.0680497971340843,peer,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,139161,92.5999418556223,spot_baseline,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29679,"Will the number of active US drilling rigs exceed 590 on November 29, 2024?",2024-11-09 15:19:52.043342+00,139161,3.1066404992173657,spot_peer,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29833 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,101465,20.065840909425443,baseline,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,101465,26.303440583379377,spot_baseline,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,101465,0.0204628440420031,relative_legacy,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,101465,6.285401106724814,peer,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,101465,7.9246865857099715,spot_peer,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,103777,-17.57743356448543,spot_peer,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,103777,-2.3207370894569803,baseline,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,103777,-6.881989786912344,peer,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,103777,-5.889368905356857,spot_baseline,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,103777,-0.1155926983087404,relative_legacy,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,115725,7.9246865857099715,spot_peer,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,115725,23.334244911387596,baseline,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,115725,8.984397805488253,peer,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,115725,0.0526971123351877,relative_legacy,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,115725,26.303440583379377,spot_baseline,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,117580,0.0112913504697284,relative_legacy,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,117580,19.07907738558076,baseline,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,117580,5.876913832656756,peer,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,117580,26.303440583379377,spot_baseline,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,117580,7.9246865857099715,spot_peer,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,120160,-3.756544718166979,baseline,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,120160,-13.960225492920229,peer,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,120160,-0.2165594618789932,relative_legacy,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,120160,-12.912062762170557,spot_peer,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,120160,0.0,spot_baseline,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,126626,9.813749665848317,spot_peer,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,126626,28.688114778816157,spot_baseline,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,126626,6.660929809062443,peer,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,126626,0.0277140694622462,relative_legacy,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,126626,19.72208885932726,baseline,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,131306,0.0083756687883925,relative_legacy,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,131306,9.813749665848317,spot_peer,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,131306,3.446874081609676,peer,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,131306,28.688114778816157,spot_baseline,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,131306,10.076099620256327,baseline,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,139161,-0.1794994233860791,relative_legacy,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,139161,0.0,baseline,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,139161,-10.412301355709406,peer,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,139161,0.0,spot_baseline,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29680,"Will the number of active US oil drilling rigs be greater than or equal to 585 and less than or equal to 590 on November 29, 2024?",2024-11-09 15:19:52.047841+00,139161,-12.912062762170557,spot_peer,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29834 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,101465,18.543748216457995,baseline,Jgalt,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,101465,21.412480535284736,spot_baseline,Jgalt,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,101465,0.1806583327548364,relative_legacy,Jgalt,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,101465,16.777912149223866,peer,Jgalt,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,101465,17.806659660672068,spot_peer,Jgalt,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,103777,-24.65774678875456,spot_peer,datscilly,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,103777,-12.77599843237211,baseline,datscilly,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,103777,-9.80338726363614,peer,datscilly,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,103777,-32.19280948873623,spot_baseline,datscilly,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,103777,-0.1208540614439574,relative_legacy,datscilly,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,115725,0.8443733614408385,spot_peer,Sergio,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,115725,0.0,baseline,Sergio,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,115725,0.6870581403823673,peer,Sergio,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,115725,-0.006026882553341,relative_legacy,Sergio,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,115725,0.0,spot_baseline,Sergio,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,117580,0.0711269189236613,relative_legacy,MaciekK,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,117580,9.992406279573204,baseline,MaciekK,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,117580,7.678620964744768,peer,MaciekK,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,117580,13.750352374993504,spot_baseline,MaciekK,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,117580,11.736965339077964,spot_peer,MaciekK,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,120160,-18.28439156298799,baseline,OpenSystem,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,120160,-15.126124487925624,peer,OpenSystem,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,120160,-0.1865438806798518,relative_legacy,OpenSystem,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,120160,-11.196828428025023,spot_peer,OpenSystem,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,120160,-15.200309344504996,spot_baseline,OpenSystem,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,126626,15.819031922172712,spot_peer,skmmcj,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,126626,18.903382439001685,spot_baseline,skmmcj,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,126626,9.945981418414142,peer,skmmcj,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,126626,0.1009567490098373,relative_legacy,skmmcj,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,126626,12.975389288190796,baseline,skmmcj,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,131306,0.0,relative_legacy,draaglom,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,131306,0.8443733614408385,spot_peer,draaglom,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,131306,0.2967347366913744,peer,draaglom,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,131306,0.0,spot_baseline,draaglom,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,131306,0.0,baseline,draaglom,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,139161,-0.1392580705474561,relative_legacy,Zaldath,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,139161,-13.323118799411496,baseline,Zaldath,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,139161,-10.456795657894904,peer,Zaldath,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,139161,-15.200309344504996,spot_baseline,Zaldath,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29681,"Will the number of active US oil drilling rigs be less than 585 on November 29, 2024?",2024-11-09 15:19:52.051304+00,139161,-11.196828428025023,spot_peer,Zaldath,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.5,29835 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,101465,-1.9660694476997025,spot_peer,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,101465,95.60566524124027,spot_baseline,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,101465,-0.8572743749319944,peer,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,101465,57.49350871355014,baseline,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,101465,-0.0128118703072111,relative_legacy,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,103777,0.366373024438254,spot_peer,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,103777,0.1498920280826446,peer,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,103777,0.0,relative_legacy,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,103777,40.6713559687329,baseline,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,103777,98.5500430304885,spot_baseline,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,115725,-1.554425511853784,peer,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,115725,96.05117101190244,spot_baseline,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,115725,83.78246186997941,baseline,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,115725,-1.6131539404338109,spot_peer,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,115725,-0.0188658641662862,relative_legacy,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,117580,0.4971052288983183,peer,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,117580,0.003674312522002,relative_legacy,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,117580,0.942120913576206,spot_peer,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,117580,99.27684307689242,spot_baseline,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,117580,50.189064993473565,baseline,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,120160,0.366373024438254,spot_peer,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,120160,98.5500430304885,spot_baseline,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,120160,90.9302226418297,baseline,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,120160,-0.0017516831362036,relative_legacy,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,120160,-0.1270399889767705,peer,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,126626,86.30149204423819,baseline,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,126626,99.56654097361088,spot_baseline,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,126626,0.0140263063642073,relative_legacy,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,126626,1.2379669053358802,peer,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,126626,1.1716103768042865,spot_peer,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,131306,0.0,relative_legacy,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,131306,98.5500430304885,spot_baseline,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,131306,0.366373024438254,spot_peer,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,131306,38.14401088025664,baseline,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,131306,0.1389234445268304,peer,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,139161,86.88308561713933,baseline,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,139161,0.0053822479344986,relative_legacy,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,139161,0.366373024438254,spot_peer,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29682,"Will Russia have significantly expanded its controlled territory in Ukraine on January 1, 2025?",2024-11-09 15:19:52.0573+00,139161,0.514852268918855,peer,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,1.0,29836 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,101465,50.20808202985519,baseline,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,101465,78.24085649273731,spot_baseline,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,101465,-0.0983976155940456,relative_legacy,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,101465,-7.351473942699915,peer,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,101465,-8.412080745603818,spot_peer,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,103777,4.15945013603372,spot_peer,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,103777,35.01093308923007,baseline,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,103777,1.720234314974805,peer,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,103777,94.11063109464314,spot_baseline,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,103777,0.0139077024131716,relative_legacy,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,115725,-1.953542429793265,spot_peer,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,115725,51.00076507047755,baseline,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,115725,-0.3774679560080012,peer,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,115725,-0.0148001998712564,relative_legacy,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,115725,86.39384504239716,spot_baseline,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,117580,0.0,relative_legacy,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,117580,6.971504636958539,baseline,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,117580,0.1397344965646854,peer,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,117580,91.07326619029126,spot_baseline,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,117580,1.7533462277100125,spot_peer,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,120160,54.64949027526997,baseline,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,120160,-1.1931950348729057,peer,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,120160,-0.0242068434668536,relative_legacy,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,120160,-3.216380851117268,spot_peer,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,120160,84.79969065549501,spot_baseline,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,126626,1.1438209733828826,spot_peer,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,126626,90.3038270112912,spot_baseline,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,126626,2.750296608197992,peer,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,126626,0.0174215773614349,relative_legacy,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,126626,78.18336629344412,baseline,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,131306,0.0104684649634241,relative_legacy,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,131306,3.562656538187812,spot_peer,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,131306,1.4455581140232483,peer,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,131306,93.35726382610238,spot_baseline,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,131306,33.807609392520376,baseline,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,139161,0.0230351660736108,relative_legacy,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,139161,81.86330200847817,baseline,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,139161,2.8663133998200774,peer,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,139161,92.5999418556223,spot_baseline,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29683,Will the new Prime Minister of Iceland belong to the Independence Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.063318+00,139161,2.962730151199954,spot_peer,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29837 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,101465,95.0095094173686,spot_baseline,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,101465,-0.5521522717367223,spot_peer,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,101465,-0.7631332026081816,peer,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,101465,65.80049753736022,baseline,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,101465,-0.0102230931785547,relative_legacy,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,103777,0.0014522369769976,relative_legacy,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,103777,97.08536543404836,spot_baseline,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,103777,36.09107393049539,baseline,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,103777,1.0922748656460814,spot_peer,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,103777,0.4455264528081543,peer,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,115725,-0.0096062120989332,relative_legacy,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,115725,94.11063109464314,spot_baseline,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,115725,55.55341620991413,baseline,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,115725,-0.6132682458423072,peer,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,115725,-1.2642151003808486,spot_peer,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,117580,-0.0031834626125098,peer,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,117580,95.60566524124027,spot_baseline,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,117580,7.306244143169511,baseline,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,117580,-0.0798965820326701,spot_peer,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,117580,0.0,relative_legacy,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,120160,92.5999418556223,spot_baseline,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,120160,59.68359387393094,baseline,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,120160,-1.4831005952310536,peer,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,120160,-0.0193430824688969,relative_legacy,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,120160,-2.4609350852146066,spot_peer,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,126626,0.0006972359242877,relative_legacy,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,126626,-0.0798965820326701,spot_peer,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,126626,81.76086107201031,baseline,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,126626,0.2108687733698689,peer,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,126626,95.60566524124027,spot_baseline,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,131306,0.4298726019174586,peer,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,131306,0.0011307960506389,relative_legacy,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,131306,35.04199840843607,baseline,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,131306,1.0922748656460814,spot_peer,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,131306,97.08536543404836,spot_baseline,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,139161,1.7764176781985357,peer,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,139161,86.93310915255992,baseline,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,139161,2.25254589010528,spot_peer,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29684,Will the new Prime Minister of Iceland belong to the Progressive Party after the 2024 parliamentary elections?,2024-11-09 15:19:52.214986+00,139161,0.0199185838946344,relative_legacy,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29838 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,101465,69.57587609765349,baseline,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,101465,98.84120257247882,spot_baseline,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,101465,7.791772492262882e-05,relative_legacy,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,101465,0.0276678292065018,peer,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,101465,0.2029133213966231,spot_peer,Jgalt,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,103777,-0.027734010744777,spot_peer,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,103777,36.63300599383666,baseline,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,103777,-0.0007622452654889,peer,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,103777,98.5500430304885,spot_baseline,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,103777,0.0,relative_legacy,datscilly,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,115725,-0.027734010744777,spot_peer,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,115725,58.17196761772653,baseline,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,115725,0.0271836296644078,peer,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,115725,0.0,relative_legacy,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,115725,98.5500430304885,spot_baseline,Sergio,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,117580,0.0,relative_legacy,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,117580,7.490253364594618,baseline,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,117580,-0.0011751810575758,peer,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,117580,98.5500430304885,spot_baseline,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,117580,-0.027734010744777,spot_peer,MaciekK,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,120160,62.5832256494499,baseline,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,120160,-0.7529234803919986,peer,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,120160,-0.0094416133793074,relative_legacy,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,120160,-1.18800503520398,spot_peer,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,120160,97.08536543404836,spot_baseline,OpenSystem,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,126626,0.5480138783931975,spot_peer,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,126626,99.27684307689242,spot_baseline,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,126626,0.5358913736988943,peer,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,126626,0.0056720702766857,relative_legacy,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,126626,84.89215844543705,baseline,skmmcj,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,131306,0.0026989594174565,relative_legacy,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,131306,0.5480138783931975,spot_peer,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,131306,0.2165634866144499,peer,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,131306,99.27684307689242,spot_baseline,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,131306,36.88380166426775,baseline,draaglom,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,139161,-0.0005428357160122,relative_legacy,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,139161,88.15362618348897,baseline,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,139161,-0.0524454124692338,peer,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29685,Will the new Prime Minister of Iceland belong to the Left-Green Movement after the 2024 parliamentary elections?,2024-11-09 15:19:52.22219+00,139161,-0.027734010744777,spot_peer,Zaldath,no,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29839 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,101465,-87.50148005620031,baseline,Jgalt,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,101465,-118.44245711374272,spot_baseline,Jgalt,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,101465,0.0049248231392302,relative_legacy,Jgalt,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,101465,2.9476261716879684,peer,Jgalt,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,101465,7.037569845075452,spot_peer,Jgalt,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,103777,16.981727215318866,spot_peer,datscilly,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,103777,-37.90450813388794,baseline,datscilly,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,103777,6.200954242427521,peer,datscilly,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,103777,-105.88936890535685,spot_baseline,datscilly,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,103777,0.0879835308216854,relative_legacy,datscilly,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,115725,1.7209966296591306,spot_peer,Sergio,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,115725,-73.87261201093614,baseline,Sergio,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,115725,4.285281468099331,peer,Sergio,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,115725,0.0176796175490378,relative_legacy,Sergio,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,115725,-125.15387669959644,spot_baseline,Sergio,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,117580,-0.0422510146110129,relative_legacy,MaciekK,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,117580,-13.981961329021042,baseline,MaciekK,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,117580,-3.352736163199177,peer,MaciekK,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,117580,-183.65012677171205,spot_baseline,MaciekK,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,117580,-44.61787286841679,spot_peer,MaciekK,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,120160,-103.1844507959082,baseline,OpenSystem,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,120160,-13.542290694850395,peer,OpenSystem,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,120160,-0.1805436419022694,relative_legacy,OpenSystem,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,120160,-3.855022132561663,spot_peer,OpenSystem,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,120160,-132.19280948873623,spot_baseline,OpenSystem,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,126626,-3.855022132561663,spot_peer,skmmcj,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,126626,-132.19280948873623,spot_baseline,skmmcj,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,126626,2.780586525623689,peer,skmmcj,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,126626,-0.0010913364501816,relative_legacy,skmmcj,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,126626,-113.02708157365522,baseline,skmmcj,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,131306,0.2840320497279076,relative_legacy,draaglom,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,131306,63.32059671339479,spot_peer,draaglom,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,131306,21.859883032076727,peer,draaglom,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,131306,-47.39311883324123,spot_baseline,draaglom,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,131306,-17.17177554877488,baseline,draaglom,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,139161,-0.282331944385898,relative_legacy,Zaldath,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,139161,-144.86175064233342,baseline,Zaldath,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,139161,-21.17930458186561,peer,Zaldath,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,139161,-173.6965594166206,spot_baseline,Zaldath,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29686,Will the new Prime Minister of Iceland belong to the Social Democratic Alliance after the 2024 parliamentary elections?,2024-11-09 15:19:52.227923+00,139161,-36.73297326990806,spot_peer,Zaldath,yes,2024-11-12 15:30:00+00,2024-11-12 15:30:00+00,0.4644,29840 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,101465,0.1223857656167042,relative_legacy,Jgalt,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,101465,64.51589252052513,baseline,Jgalt,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,101465,15.646564967938788,spot_peer,Jgalt,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,101465,71.36958148433591,spot_baseline,Jgalt,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,101465,15.607007125783504,peer,Jgalt,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,103777,26.303440583379377,spot_baseline,datscilly,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,103777,-19.49558709930338,spot_peer,datscilly,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,103777,23.74077517555204,baseline,datscilly,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,103777,-2.5263401001841794,peer,datscilly,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,103777,-0.0442871714668047,relative_legacy,datscilly,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,115725,0.0878794174362821,relative_legacy,Sergio,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,115725,56.58123649274786,baseline,Sergio,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,115725,58.496250072115615,spot_baseline,Sergio,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,115725,11.461549730089084,peer,Sergio,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,115725,5.6080624235452365,spot_peer,Sergio,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,117580,-0.0201211001749203,relative_legacy,MaciekK,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,117580,26.303440583379377,spot_baseline,MaciekK,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,117580,-1.7193342693260902,peer,MaciekK,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,117580,3.18728642837999,baseline,MaciekK,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,117580,-19.49558709930338,spot_peer,MaciekK,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,119215,28.591864568727345,spot_peer,rappatoni,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,119215,0.0034628547501727,relative_legacy,rappatoni,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,119215,1.0567030236615351,baseline,rappatoni,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,119215,87.97057662822883,spot_baseline,rappatoni,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,119215,0.3798209065330791,peer,rappatoni,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,120160,-10.49078248603052,spot_peer,OpenSystem,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,120160,-4.930090615720165,peer,OpenSystem,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,120160,-0.0736159067243631,relative_legacy,OpenSystem,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,120160,19.99619527821122,baseline,OpenSystem,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,120160,37.85116232537298,spot_baseline,OpenSystem,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,126626,0.943268017429612,peer,skmmcj,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,126626,50.58909297299573,spot_baseline,skmmcj,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,126626,-0.5578641821417158,spot_peer,skmmcj,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,126626,-0.0129180385665082,relative_legacy,skmmcj,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,126626,18.5000116122604,baseline,skmmcj,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,131306,0.0125016502466911,peer,draaglom,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,131306,4.037883245654187e-05,relative_legacy,draaglom,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,131306,19.688916005870908,spot_peer,draaglom,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,131306,76.55347463629771,spot_baseline,draaglom,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,131306,0.0470608229366087,baseline,draaglom,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,139161,-19.49558709930338,spot_peer,Zaldath,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,139161,28.86486024309702,baseline,Zaldath,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,139161,-0.2449060519262749,relative_legacy,Zaldath,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,139161,26.303440583379377,spot_baseline,Zaldath,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29734,Will the Federal Register list exactly zero executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.282809+00,139161,-19.22838244485154,peer,Zaldath,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29892 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,101465,-0.0304751094119036,relative_legacy,Jgalt,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,101465,-30.73699813869152,baseline,Jgalt,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,101465,7.607381235839074,spot_peer,Jgalt,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,101465,-15.200309344504996,spot_baseline,Jgalt,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,101465,0.707263547850457,peer,Jgalt,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,103777,-32.19280948873623,spot_baseline,datscilly,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,103777,-5.643210275504064,spot_peer,datscilly,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,103777,-10.313623704053317,baseline,datscilly,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,103777,6.661370304915844,peer,datscilly,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,103777,0.0113922798509874,relative_legacy,datscilly,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,115725,-0.3302556871305723,relative_legacy,Sergio,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,115725,-59.01305350125437,baseline,Sergio,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,115725,-73.69655941662063,spot_baseline,Sergio,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,115725,-25.469603955657657,peer,Sergio,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,115725,-38.007443426329424,spot_peer,Sergio,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,117580,0.021047545555515,relative_legacy,MaciekK,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,117580,0.0,spot_baseline,MaciekK,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,117580,2.581948423215932,peer,MaciekK,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,117580,0.0,baseline,MaciekK,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,117580,19.46043924734452,spot_peer,MaciekK,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,119215,10.080008241701297,spot_peer,rappatoni,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,119215,-0.0006663285901163,relative_legacy,rappatoni,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,119215,-0.2066711621081451,baseline,rappatoni,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,119215,-12.029423371771175,spot_baseline,rappatoni,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,119215,0.0614114042452201,peer,rappatoni,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,120160,19.46043924734452,spot_peer,OpenSystem,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,120160,14.54554646144419,peer,OpenSystem,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,120160,0.1071488835907758,relative_legacy,OpenSystem,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,120160,0.0,baseline,OpenSystem,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,120160,0.0,spot_baseline,OpenSystem,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,126626,10.522944003784906,peer,skmmcj,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,126626,5.658352836636751,spot_baseline,skmmcj,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,126626,23.87276947708868,spot_peer,skmmcj,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,126626,0.0792249680216868,relative_legacy,skmmcj,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,126626,2.0470346551333973,baseline,skmmcj,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,131306,0.0002618504871998,peer,draaglom,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,131306,-1.8344657632833595e-05,relative_legacy,draaglom,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,131306,1.1770596788448484,spot_peer,draaglom,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,131306,-23.4465253637023,spot_baseline,draaglom,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,131306,-0.0052159497092405,baseline,draaglom,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,139161,-38.007443426329424,spot_peer,Zaldath,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,139161,-48.479388788255,baseline,Zaldath,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,139161,-0.1795171869420119,relative_legacy,Zaldath,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,139161,-73.69655941662063,spot_baseline,Zaldath,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29735,Will the Federal Register list 1 or 2 executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.290084+00,139161,-9.611142040286111,peer,Zaldath,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29893 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,101465,-0.1178578428928585,relative_legacy,Jgalt,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,101465,16.338524013584752,baseline,Jgalt,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,101465,-9.75234441926269,spot_peer,Jgalt,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,101465,35.61438102252753,spot_baseline,Jgalt,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,101465,-15.40498408838634,peer,Jgalt,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,103777,67.80719051126377,spot_baseline,datscilly,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,103777,15.351305103585922,spot_peer,datscilly,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,103777,32.86848677787096,baseline,datscilly,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,103777,6.729718098406073,peer,datscilly,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,103777,0.0831368506457686,relative_legacy,datscilly,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,115725,-0.2846420198722924,relative_legacy,Sergio,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,115725,-3.909400273935147,baseline,Sergio,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,115725,18.903382439001717,spot_baseline,Sergio,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,115725,-29.37769540577283,peer,Sergio,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,115725,-22.783423665838868,spot_peer,Sergio,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,117580,0.034194256656394,relative_legacy,MaciekK,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,117580,84.79969065549501,spot_baseline,MaciekK,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,117580,2.7292580034966565,peer,MaciekK,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,117580,9.896114399338389,baseline,MaciekK,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,117580,28.601896614929043,spot_peer,MaciekK,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,119215,-28.86598605874491,spot_peer,rappatoni,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,119215,-0.0030427566728873,relative_legacy,rappatoni,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,119215,0.0722914794692029,baseline,rappatoni,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,119215,11.103131238874395,spot_baseline,rappatoni,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,119215,-0.3741646818083434,peer,rappatoni,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,120160,22.17157505793483,spot_peer,OpenSystem,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,120160,13.325758737798976,peer,OpenSystem,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,120160,0.1657211340692632,relative_legacy,OpenSystem,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,120160,40.43149273161588,baseline,OpenSystem,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,120160,76.55347463629771,spot_baseline,OpenSystem,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,126626,5.702052002926962,peer,skmmcj,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,126626,69.59938131099001,spot_baseline,skmmcj,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,126626,16.748838603423593,spot_peer,skmmcj,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,126626,0.0970196018282308,relative_legacy,skmmcj,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,126626,25.20087676155585,baseline,skmmcj,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,131306,-0.0055448108835659,peer,draaglom,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,131306,0.0,relative_legacy,draaglom,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,131306,-21.800884669354,spot_peer,draaglom,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,131306,20.163386116965043,spot_baseline,draaglom,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,131306,0.0051283314639085,baseline,draaglom,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,139161,0.3290234333271026,spot_peer,Zaldath,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,139161,55.18225935911235,baseline,Zaldath,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,139161,0.1991546333700896,relative_legacy,Zaldath,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,139161,48.54268271702416,spot_baseline,Zaldath,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29736,Will the Federal Register list 3 or more executive orders by President Joe Biden for November 2024?,2024-11-11 15:18:29.295141+00,139161,16.675602144222413,peer,Zaldath,no,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,0.5,29894 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,101465,36.27743289939392,baseline,Jgalt,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,101465,58.496250072115615,spot_baseline,Jgalt,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,101465,-0.271847143503591,relative_legacy,Jgalt,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,101465,-24.10283341602699,peer,Jgalt,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,101465,-9.932282957245254,spot_peer,Jgalt,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,103777,-2.5564519700942583,spot_peer,datscilly,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,103777,37.96943237613299,baseline,datscilly,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,103777,-1.6104686603422478,peer,datscilly,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,103777,67.80719051126377,spot_baseline,datscilly,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,103777,-0.0091284675804278,relative_legacy,datscilly,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,115725,-6.924590578116862,spot_peer,Sergio,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,115725,50.695202992882045,baseline,Sergio,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,115725,-6.595963498323301,peer,Sergio,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,115725,-0.0400056282065965,relative_legacy,Sergio,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,115725,62.29303509201767,spot_baseline,Sergio,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,117580,0.0039654353566612,relative_legacy,MaciekK,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,117580,8.76759553260666,baseline,MaciekK,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,117580,0.4688507193133542,peer,MaciekK,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,117580,76.55347463629771,spot_baseline,MaciekK,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,117580,4.372076237498298,spot_peer,MaciekK,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,120160,69.87548666602777,baseline,OpenSystem,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,120160,8.686329040924841,peer,OpenSystem,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,120160,0.0662166398960508,relative_legacy,OpenSystem,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,120160,1.6508592439304657,spot_peer,OpenSystem,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,120160,73.11832415721999,spot_baseline,OpenSystem,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,126626,-1.1367353988305828,spot_peer,skmmcj,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,126626,69.59938131099001,spot_baseline,skmmcj,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,126626,-0.4087183726662362,peer,skmmcj,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,126626,-0.002895615667715,relative_legacy,skmmcj,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,126626,24.20515923829615,baseline,skmmcj,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,131306,-2.97926202235392e-05,relative_legacy,draaglom,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,131306,-2.5564519700942583,spot_peer,draaglom,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,131306,-0.0032299280726515,peer,draaglom,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,131306,67.80719051126377,spot_baseline,draaglom,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,131306,0.0587112012771018,baseline,draaglom,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,139161,0.2248744424493057,relative_legacy,Zaldath,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,139161,90.89094090559608,baseline,Zaldath,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,139161,23.566034115193226,peer,Zaldath,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,139161,92.5999418556223,spot_baseline,Zaldath,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29737,"Will the cheapest new Tesla Model 3 be listed as under $43,000 on December 30, 2024?",2024-11-11 15:18:29.299371+00,139161,17.0835773929525,spot_peer,Zaldath,yes,2024-11-13 15:30:00+00,2024-11-13 15:30:00+00,1.0,29895 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,101465,0.0762658237164629,relative_legacy,Jgalt,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,101465,-231.2645246217663,baseline,Jgalt,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,101465,-247.3931188332413,spot_baseline,Jgalt,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,101465,5.439428009995685,peer,Jgalt,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,101465,-5.38603125750931,spot_peer,Jgalt,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,103777,-0.0039140310956306,relative_legacy,datscilly,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,103777,-264.3856189774725,spot_baseline,datscilly,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,103777,-3.724290683345184,peer,datscilly,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,103777,-156.6025562028307,baseline,datscilly,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,103777,-18.63662276885247,spot_peer,datscilly,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,115725,-183.65012677171205,spot_baseline,Sergio,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,115725,0.6623594660806187,relative_legacy,Sergio,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,115725,44.320153373882654,spot_peer,Sergio,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,115725,-160.67864972178523,baseline,Sergio,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,115725,53.30772554414957,peer,Sergio,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,117580,-218.44245711374276,spot_baseline,MaciekK,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,117580,17.189421981982726,spot_peer,MaciekK,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,117580,19.403451411119416,peer,MaciekK,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,117580,0.2737367740220739,relative_legacy,MaciekK,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,117580,-138.15428675809625,baseline,MaciekK,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,119215,44.320153373882654,spot_peer,rappatoni,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,119215,-2.0593811319106066,baseline,rappatoni,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,119215,0.5151720162773012,peer,rappatoni,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,119215,0.0051393331599103,relative_legacy,rappatoni,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,119215,-183.65012677171205,spot_baseline,rappatoni,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,120160,-266.4089095959948,baseline,OpenSystem,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,120160,-264.3856189774725,spot_baseline,OpenSystem,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,120160,-14.9590061622464,peer,OpenSystem,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,120160,-18.63662276885247,spot_peer,OpenSystem,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,120160,-0.1509215004858169,relative_legacy,OpenSystem,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,126626,-4.839901874332434,peer,skmmcj,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,126626,-209.4729299625915,baseline,skmmcj,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,126626,-0.0168314993145674,relative_legacy,skmmcj,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,126626,-264.3856189774725,spot_baseline,skmmcj,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,126626,-18.63662276885247,spot_peer,skmmcj,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,131306,0.1781811284284417,peer,draaglom,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,131306,-1.634313548453799,baseline,draaglom,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,131306,0.0007615673452913,relative_legacy,draaglom,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,131306,26.978201893316083,spot_peer,draaglom,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,131306,-205.8893689053569,spot_baseline,draaglom,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,139161,-71.51203105899756,spot_peer,Zaldath,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,139161,-0.647550609297406,relative_legacy,Zaldath,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,139161,-55.32075939004633,peer,Zaldath,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,139161,-332.1928094887361,spot_baseline,Zaldath,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29785,"Will Alabama have 2.0 million or more residents living in drought on December 31, 2024?",2024-11-12 14:32:42.838091+00,139161,-319.541088573382,baseline,Zaldath,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29951 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,101465,0.2205318386476711,relative_legacy,Jgalt,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,101465,-70.04692555381287,baseline,Jgalt,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,101465,-68.96598793878492,spot_baseline,Jgalt,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,101465,22.12332738472052,peer,Jgalt,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,101465,14.939203075521652,spot_peer,Jgalt,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,103777,-0.0010121412280079,relative_legacy,datscilly,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,103777,-94.34164716336323,spot_baseline,datscilly,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,103777,2.079229020928316,peer,datscilly,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,103777,-54.93257586915655,baseline,datscilly,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,103777,-4.848496901640584,spot_peer,datscilly,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,115725,-105.88936890535685,spot_baseline,Sergio,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,115725,-0.0825499313272175,relative_legacy,Sergio,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,115725,-13.853301514913442,spot_peer,Sergio,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,115725,-92.88333450736646,baseline,Sergio,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,115725,-5.034928953529978,peer,Sergio,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,117580,-147.39311883324118,spot_baseline,MaciekK,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,117580,-46.21753466573876,spot_peer,MaciekK,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,117580,-1.9548131703930955,peer,MaciekK,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,117580,-0.0289668144157234,relative_legacy,MaciekK,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,117580,-7.97169393509,baseline,MaciekK,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,119215,3.4886499656531345,spot_peer,rappatoni,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,119215,-3.47041168676749,baseline,rappatoni,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,119215,0.5169754284486868,peer,rappatoni,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,119215,0.0029964826214156,relative_legacy,rappatoni,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,119215,-83.65012677171204,spot_baseline,rappatoni,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,120160,-96.4275365498055,baseline,OpenSystem,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,120160,-100.0,spot_baseline,OpenSystem,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,120160,1.673325358789287,peer,OpenSystem,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,120160,-9.26082713138474,spot_peer,OpenSystem,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,120160,-0.0245173190662472,relative_legacy,OpenSystem,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,126626,9.797404454173185,peer,skmmcj,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,126626,-71.55700800901579,baseline,skmmcj,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,126626,0.092625285822871,relative_legacy,skmmcj,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,126626,-88.8968687611256,spot_baseline,skmmcj,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,126626,-0.6027100035702954,spot_peer,skmmcj,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,131306,0.9078572150000286,peer,draaglom,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,131306,-0.3965677240509346,baseline,draaglom,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,131306,0.0105353785052881,relative_legacy,draaglom,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,131306,90.71949383030632,spot_peer,draaglom,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,131306,28.21432287814984,spot_baseline,draaglom,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,139161,-34.36447665423336,spot_peer,Zaldath,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,139161,-0.3780607433387725,relative_legacy,Zaldath,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,139161,-30.108376738136982,peer,Zaldath,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,139161,-132.19280948873626,spot_baseline,Zaldath,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29786,Will Lainey Wilson or Luke Combs win the 2024 CMA Award forEntertainer of the Year?,2024-11-12 14:32:42.851397+00,139161,-136.35870063230848,baseline,Zaldath,no,2024-11-14 15:30:00+00,2024-11-14 15:30:00+00,1.0,29952 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,101465,-0.0052974989373633,relative_legacy,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,101465,93.99579619572567,baseline,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,101465,-0.0353706645412157,spot_peer,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,101465,95.60566524124027,spot_baseline,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,101465,-0.8899411730139273,peer,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,103777,94.86008474933556,spot_baseline,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,103777,-0.6167673073660163,spot_peer,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,103777,31.568168382307405,baseline,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,103777,-0.5124568531042624,peer,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,103777,-0.0047003157362405,relative_legacy,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,115725,-0.0003763053054714,relative_legacy,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,115725,85.08330255290188,baseline,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,115725,96.3474123974886,spot_baseline,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,115725,-0.3659443235834018,peer,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,115725,0.54303677925587,spot_peer,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,117580,-0.0014835148976823,relative_legacy,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,117580,91.07326619029126,spot_baseline,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,117580,-0.128849461501947,peer,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,117580,2.992222614783433,baseline,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,117580,-3.569692740796356,spot_peer,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,119215,-2.3792054411109427,spot_peer,rappatoni,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,119215,-0.0001811224502774,relative_legacy,rappatoni,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,119215,0.5737889883964655,baseline,rappatoni,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,119215,92.5999418556223,spot_baseline,rappatoni,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,119215,-0.0148246988815991,peer,rappatoni,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,120160,-0.0353706645412157,spot_peer,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,120160,-1.183698061134442,peer,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,120160,-0.0093791421940417,relative_legacy,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,120160,87.30696222624312,baseline,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,120160,95.60566524124027,spot_baseline,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,126626,1.5591205242021953,peer,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,126626,99.13177569001992,spot_baseline,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,126626,2.7142570408626527,spot_peer,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,126626,0.0229497857843299,relative_legacy,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,126626,81.15202708693211,baseline,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,131306,0.0641714525515786,peer,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,131306,0.0030726900956998,relative_legacy,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,131306,1.1184856042675655,spot_peer,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,131306,97.08536543404836,spot_baseline,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,131306,58.99210952824894,baseline,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,139161,2.2606273939695862,spot_peer,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,139161,93.36639871195445,baseline,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,139161,0.0213156401192794,relative_legacy,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29861,"Will a country change its official name before Jan 1, 2025?",2024-11-13 15:00:43.96098+00,139161,1.472422594465776,peer,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30036 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,101465,0.138034214463282,relative_legacy,Jgalt,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,101465,-150.98701854934504,baseline,Jgalt,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,101465,-4.667488893907617,spot_peer,Jgalt,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,101465,-147.39311883324126,spot_baseline,Jgalt,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,101465,36.71797881861141,peer,Jgalt,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,103777,-100.0,spot_baseline,datscilly,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,103777,32.28921864044645,spot_peer,datscilly,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,103777,-33.19876971208901,baseline,datscilly,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,103777,16.33686214980864,peer,datscilly,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,103777,0.1413598751568242,relative_legacy,datscilly,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,115725,0.2189293218657478,relative_legacy,Sergio,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,115725,-79.02530769131023,baseline,Sergio,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,115725,-118.44245711374272,spot_baseline,Sergio,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,115725,34.8043398249497,peer,Sergio,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,115725,17.90796434558439,spot_peer,Sergio,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,117580,-0.0096217227340979,relative_legacy,MaciekK,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,117580,-173.6965594166206,spot_baseline,MaciekK,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,117580,-0.3620481294139538,peer,MaciekK,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,117580,-5.343776944986581,baseline,MaciekK,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,117580,-25.178664033227516,spot_peer,MaciekK,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,119215,45.03869573748431,spot_peer,rappatoni,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,119215,0.0003884195398351,relative_legacy,rappatoni,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,119215,-0.198725355812562,baseline,rappatoni,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,119215,-83.65012677171204,spot_baseline,rappatoni,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,119215,0.1069972178307806,peer,rappatoni,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,120160,-70.79348869539601,spot_peer,OpenSystem,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,120160,-28.33918702300323,peer,OpenSystem,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,120160,-0.5400237249975883,relative_legacy,OpenSystem,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,120160,-207.24425856906672,baseline,OpenSystem,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,120160,-232.19280948873623,spot_baseline,OpenSystem,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,126626,19.140275725902256,peer,skmmcj,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,126626,-125.15387669959644,spot_baseline,skmmcj,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,126626,12.674462586658931,spot_peer,skmmcj,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,126626,0.1103780059208699,relative_legacy,skmmcj,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,126626,-65.28715520565171,baseline,skmmcj,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,131306,0.2763090264943598,peer,draaglom,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,131306,0.0021048364221785,relative_legacy,draaglom,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,131306,63.52278900775288,spot_peer,draaglom,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,131306,-59.94620704162712,spot_baseline,draaglom,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,131306,-0.2541917762870795,baseline,draaglom,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,139161,-70.79348869539601,spot_peer,Zaldath,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,139161,-269.7481839572212,baseline,Zaldath,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,139161,-1.0513067801037708,relative_legacy,Zaldath,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,139161,-232.19280948873623,spot_baseline,Zaldath,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29862,Will the International Criminal Court issue any warrants in November or December 2024?,2024-11-13 15:00:43.992862+00,139161,-78.68152761117997,peer,Zaldath,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30037 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,101465,0.0139946452943658,relative_legacy,Jgalt,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,101465,-34.49597984230466,baseline,Jgalt,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,101465,8.006893337667796,spot_peer,Jgalt,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,101465,-15.200309344504996,spot_baseline,Jgalt,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,101465,3.163092835001059,peer,Jgalt,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,103777,13.750352374993504,spot_baseline,datscilly,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,103777,30.582346577159797,spot_peer,datscilly,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,103777,4.381563863819734,baseline,datscilly,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,103777,13.655544336195872,peer,datscilly,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,103777,0.1589879230765765,relative_legacy,datscilly,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,115725,0.3237134245623655,relative_legacy,Sergio,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,115725,0.0,baseline,Sergio,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,115725,0.0,spot_baseline,Sergio,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,115725,30.071771966072788,peer,Sergio,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,115725,19.859951349173244,spot_peer,Sergio,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,117580,0.0043619812580973,relative_legacy,MaciekK,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,117580,0.0,spot_baseline,MaciekK,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,117580,0.7169505791688121,peer,MaciekK,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,117580,-0.0281237974755045,baseline,MaciekK,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,117580,19.859951349173244,spot_peer,MaciekK,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,119215,26.415203513120524,spot_peer,rappatoni,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,119215,3.664570620457996e-05,relative_legacy,rappatoni,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,119215,0.0036645706204579,baseline,rappatoni,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,119215,8.406426478847456,spot_baseline,rappatoni,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,119215,0.0115150449446233,peer,rappatoni,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,120160,-5.243698173675342,spot_peer,OpenSystem,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,120160,6.106780628330418,peer,OpenSystem,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,120160,0.0396648921981973,relative_legacy,OpenSystem,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,120160,-23.15840607399923,baseline,OpenSystem,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,120160,-32.19280948873623,spot_baseline,OpenSystem,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,126626,-0.1221615528168195,peer,skmmcj,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,126626,-39.592867633113926,spot_baseline,skmmcj,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,126626,-11.014193792274776,spot_peer,skmmcj,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,126626,-0.0117002888801611,relative_legacy,skmmcj,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,126626,-12.650956764221604,baseline,skmmcj,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,131306,-45.67065520694701,peer,draaglom,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,131306,-0.5873635926163157,relative_legacy,draaglom,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,131306,-83.22275598666918,spot_peer,draaglom,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,131306,-132.19280948873623,spot_baseline,draaglom,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,131306,-82.88865703709584,baseline,draaglom,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,139161,-5.243698173675342,spot_peer,Zaldath,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,139161,-45.58438373503208,baseline,Zaldath,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,139161,-0.1058039829472808,relative_legacy,Zaldath,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,139161,-32.19280948873623,spot_baseline,Zaldath,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29863,Will Astro Bot win the Game of the Year 2024 award?,2024-11-13 15:00:44.036568+00,139161,-7.93283862994973,peer,Zaldath,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30038 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,101465,0.0032914768986015,relative_legacy,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,101465,70.59051983884677,baseline,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,101465,1.48095058809215,spot_peer,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,101465,81.55754288625727,spot_baseline,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,101465,-0.1033573086647379,peer,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,103777,78.24085649273731,spot_baseline,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,103777,-1.1053702121864546,spot_peer,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,103777,17.41248064708236,baseline,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,103777,0.3255188159181915,peer,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,103777,0.0033299263766542,relative_legacy,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,115725,-0.0087855771211084,relative_legacy,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,115725,66.0047639259291,baseline,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,115725,74.84612330040356,spot_baseline,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,115725,-1.005237149208109,peer,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,115725,-3.752551170833289,spot_peer,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,117580,0.0019000235308649,relative_legacy,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,117580,84.79969065549501,spot_baseline,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,117580,0.1539975807570104,peer,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,117580,2.3912770515915613,baseline,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,117580,4.00914687144875,spot_peer,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,119215,1.48095058809215,spot_peer,rappatoni,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,119215,0.0002846407298009,relative_legacy,rappatoni,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,119215,1.1571396150627806,baseline,rappatoni,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,119215,81.55754288625727,spot_baseline,rappatoni,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,119215,0.034794336596921,peer,rappatoni,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,120160,-2.421174685545478,spot_peer,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,120160,-0.3909957562107169,peer,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,120160,-0.0060723332204127,relative_legacy,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,120160,53.095723386441136,baseline,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,120160,76.55347463629771,spot_baseline,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,126626,-2.524412997266068,peer,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,126626,74.84612330040356,spot_baseline,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,126626,-3.752551170833289,spot_peer,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,126626,-0.0298803035389165,relative_legacy,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,126626,58.63035435888117,baseline,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,131306,0.0189588975356718,peer,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,131306,0.0001875783572648,relative_legacy,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,131306,6.481773877310975,spot_peer,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,131306,87.97057662822883,spot_baseline,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,131306,0.2573099864354534,baseline,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,139161,-2.421174685545478,spot_peer,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,139161,76.51985806561603,baseline,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,139161,0.0379405730359166,relative_legacy,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,139161,76.55347463629771,spot_baseline,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29864,"Will North Korea deploy military personnel to Ukraine before January 1, 2025?",2024-11-13 15:00:44.063243+00,139161,3.490733580541886,peer,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30039 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,101465,53.86529813106898,baseline,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,101465,0.1167156210641742,relative_legacy,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,101465,12.815970928043914,spot_peer,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,101465,78.24085649273731,spot_baseline,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,101465,11.572800823888452,peer,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,103777,0.0104383891152218,relative_legacy,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,103777,73.11832415721999,spot_baseline,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,103777,14.204553776289474,baseline,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,103777,1.5946430252523798,peer,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,103777,8.555168313214722,spot_peer,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,115725,0.0910630015803645,relative_legacy,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,115725,74.84612330040356,spot_baseline,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,115725,9.9923112388206,spot_peer,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,115725,66.1919203032212,baseline,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,115725,9.058135978883811,peer,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,120160,58.496250072115615,spot_baseline,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,120160,40.10749230368508,baseline,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,120160,-2.3875939610437102,peer,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,120160,-0.0435764719035089,relative_legacy,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,120160,-3.607130998019771,spot_peer,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,126626,-0.0226090220143877,relative_legacy,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,126626,-0.8570028605412634,peer,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,126626,47.25960439523305,baseline,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,126626,2.628037673665565,spot_peer,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,126626,65.99245584023782,spot_baseline,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,139161,26.303440583379377,spot_baseline,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,139161,-18.980983006439686,peer,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,139161,38.243075907121735,baseline,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,139161,-0.242997976427213,relative_legacy,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29865,Will Red be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.100095+00,139161,-30.384357155724956,spot_peer,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30040 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,101465,-247.39311883324123,spot_baseline,Jgalt,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,101465,0.4969007999422394,spot_peer,Jgalt,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,101465,-0.1630427505100672,relative_legacy,Jgalt,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,101465,-10.41774956582579,peer,Jgalt,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,101465,-174.5427417403735,baseline,Jgalt,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,103777,-59.165858175437045,baseline,datscilly,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,103777,-305.88936890535683,spot_baseline,datscilly,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,103777,-8.97200270909271,peer,datscilly,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,103777,-0.1352781722286771,relative_legacy,datscilly,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,103777,-48.1589121730375,spot_peer,datscilly,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,115725,-9.177990253967922,peer,Sergio,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,115725,-264.38561897747246,spot_baseline,Sergio,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,115725,-0.1654548066199105,relative_legacy,Sergio,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,115725,-13.637063478823784,spot_peer,Sergio,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,115725,-233.80839723135145,baseline,Sergio,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,120160,-232.19280948873623,spot_baseline,OpenSystem,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,120160,0.8189440014549172,peer,OpenSystem,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,120160,-173.27404241154937,baseline,OpenSystem,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,120160,-0.0230075481207533,relative_legacy,OpenSystem,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,120160,13.14016267888139,spot_peer,OpenSystem,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,126626,0.2423142829849655,relative_legacy,skmmcj,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,126626,24.65507854674231,peer,skmmcj,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,126626,-205.8893689053569,spot_baseline,skmmcj,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,126626,35.018749494155934,spot_peer,skmmcj,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,126626,-166.5486892595149,baseline,skmmcj,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,139161,13.14016267888139,spot_peer,Zaldath,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,139161,-235.62541852559616,baseline,Zaldath,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,139161,3.0937199806890607,peer,Zaldath,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,139161,0.0122954536216913,relative_legacy,Zaldath,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29866,Will Orange be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.403368+00,139161,-232.19280948873623,spot_baseline,Zaldath,yes,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30041 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,101465,56.22509673047528,baseline,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,101465,0.0046816966417564,relative_legacy,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,101465,2.391377912779784,spot_peer,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,101465,83.18772411916731,spot_baseline,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,101465,1.1316294431194394,peer,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,103777,-0.0273711414906298,relative_legacy,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,103777,67.80719051126377,spot_baseline,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,103777,13.112729860115012,baseline,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,103777,-2.044042407128037,peer,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,103777,-10.401790294211189,spot_peer,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,115725,-0.0276301586440892,relative_legacy,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,115725,81.55754288625727,spot_baseline,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,115725,1.0354312823077776,spot_peer,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,115725,72.12350405777845,baseline,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,115725,-1.894311946411955,peer,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,120160,87.97057662822883,spot_baseline,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,120160,62.14626608775891,baseline,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,120160,2.716587862160446,peer,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,120160,0.0222374951659826,relative_legacy,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,120160,6.369642790807851,spot_peer,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,126626,-0.0313281625268394,relative_legacy,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,126626,-1.7947892489076218,peer,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,126626,63.91671635217084,baseline,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,126626,-3.12683567623902,spot_peer,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,126626,76.55347463629771,spot_baseline,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,139161,84.79969065549501,spot_baseline,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,139161,1.8849262971677327,peer,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,139161,81.28909051177514,baseline,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,139161,0.0093772425620681,relative_legacy,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29867,Will Yellow be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.427247+00,139161,3.7321739845548154,spot_peer,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30042 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,101465,60.40713236688608,spot_baseline,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,101465,-2.05985343480861,spot_peer,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,101465,-0.0211147014893068,relative_legacy,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,101465,-1.258800352653675,peer,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,101465,38.97827244992448,baseline,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,103777,14.06472188301158,baseline,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,103777,73.11832415721999,spot_baseline,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,103777,1.6757801233041614,peer,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,103777,0.0060953623315203,relative_legacy,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,103777,8.513018666423417,spot_peer,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,115725,3.5047783807249666,peer,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,115725,58.496250072115615,spot_baseline,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,115725,0.0068743913379386,relative_legacy,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,115725,-3.649280644811087,spot_peer,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,115725,51.72831225737903,baseline,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,120160,58.496250072115615,spot_baseline,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,120160,-1.3665660356448377,peer,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,120160,41.622238883478126,baseline,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,120160,-0.0220310215442343,relative_legacy,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,120160,-3.649280644811087,spot_peer,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,126626,0.1184129981686124,relative_legacy,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,126626,11.17495057679021,peer,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,126626,78.24085649273731,spot_baseline,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,126626,12.773821281252596,spot_peer,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,126626,60.52042874241263,baseline,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,139161,-11.928425223245265,spot_peer,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,139161,35.24136168316612,baseline,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,139161,-13.730142692520849,peer,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,139161,-0.1490170099593328,relative_legacy,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29868,Will Green be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.441194+00,139161,48.54268271702416,spot_baseline,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30043 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,101465,20.878909053084055,baseline,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,101465,-0.1143614735470546,relative_legacy,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,101465,-13.276605686198597,spot_peer,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,101465,35.61438102252753,spot_baseline,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,101465,-11.3104235529802,peer,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,103777,0.0,relative_legacy,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,103777,48.54268271702416,spot_baseline,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,103777,9.335321333702968,baseline,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,103777,-0.3935389398745409,peer,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,103777,-2.52314664343615,spot_peer,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,115725,-0.0163478461932414,relative_legacy,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,115725,48.54268271702416,spot_baseline,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,115725,-2.52314664343615,spot_peer,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,115725,42.92507473333685,baseline,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,115725,-3.525698754057536,peer,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,120160,67.80719051126377,spot_baseline,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,120160,48.25347900540252,baseline,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,120160,10.010897759831089,peer,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,120160,0.1359080268622236,relative_legacy,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,120160,13.50062047150658,spot_peer,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,126626,0.0910955997258229,relative_legacy,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,126626,6.506811686199569,peer,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,126626,47.99833823852765,baseline,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,126626,7.3454251450005055,spot_peer,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,126626,60.40713236688608,spot_baseline,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,139161,48.54268271702416,spot_baseline,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,139161,-1.288048199118406,peer,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,139161,48.740361413585646,baseline,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,139161,-0.0034473866494372,relative_legacy,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29869,Will Blue be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.463169+00,139161,-2.52314664343615,spot_peer,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30044 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,101465,-3.228041832530201,peer,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,101465,-4.578133509150238,spot_peer,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,101465,-0.0322259626902059,relative_legacy,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,101465,76.55347463629771,spot_baseline,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,101465,50.84614411786484,baseline,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,103777,16.303374352878468,baseline,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,103777,84.79969065549501,spot_baseline,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,103777,0.4385154882683383,peer,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,103777,0.0062332714165163,relative_legacy,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,103777,2.2808761516436022,spot_peer,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,115725,3.606856494033809,spot_peer,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,115725,0.0381709893324392,relative_legacy,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,115725,86.39384504239716,spot_baseline,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,115725,3.956395869962753,peer,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,115725,76.39385438919453,baseline,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,120160,-0.4158665506034341,spot_peer,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,120160,0.3415922237346268,peer,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,120160,0.0089759624650836,relative_legacy,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,120160,81.55754288625727,spot_baseline,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,120160,58.996918135371565,baseline,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,126626,-0.0075649178830344,relative_legacy,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,126626,-0.156947629285677,peer,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,126626,78.24085649273731,spot_baseline,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,126626,-3.1746087375672887,spot_peer,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,126626,64.6020180495548,baseline,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,139161,2.2808761516436022,spot_peer,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,139161,84.79969065549501,spot_baseline,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,139161,75.87164076514595,baseline,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,139161,-0.0123391380765076,relative_legacy,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29870,Will Violet be the closest color to the 2025 Pantone Color of the Year?,2024-11-13 15:00:44.569941+00,139161,-1.351514120149809,peer,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,0.4011,30045 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,101465,-0.2997818511848567,relative_legacy,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,101465,-17.555967197073954,baseline,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,101465,-32.27676338443654,spot_peer,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,101465,-5.889368905356857,spot_baseline,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,101465,-26.21761568719644,peer,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,103777,26.303440583379377,spot_baseline,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,103777,-7.173113861587938,spot_peer,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,103777,14.058493984125876,baseline,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,103777,1.785689761774429,peer,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,103777,0.0046152337762246,relative_legacy,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,115725,-0.1454071931014833,relative_legacy,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,115725,0.6637988774733936,baseline,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,115725,21.412480535284764,spot_baseline,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,115725,-11.694822255454424,peer,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,115725,-10.987038425102078,spot_peer,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,117580,0.0423887482744702,relative_legacy,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,117580,84.79969065549501,spot_baseline,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,117580,3.2414113721263047,peer,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,117580,6.108218791032717,baseline,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,117580,38.44171080058056,spot_peer,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,119215,25.19111928923743,spot_peer,rappatoni,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,119215,0.0065591084101149,relative_legacy,rappatoni,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,119215,1.0302296018208728,baseline,rappatoni,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,119215,67.80719051126377,spot_baseline,rappatoni,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,119215,0.4176420448363937,peer,rappatoni,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,120160,-27.684289000907835,spot_peer,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,120160,-1.1772628283569246,peer,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,120160,-0.0132295593141866,relative_legacy,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,120160,0.0,baseline,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,120160,0.0,spot_baseline,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,126626,29.154209480790687,peer,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,126626,56.55971758542251,spot_baseline,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,126626,16.420445873894842,spot_peer,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,126626,0.3144766898789553,relative_legacy,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,126626,46.86010170863825,baseline,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,131306,-0.0072178399204198,peer,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,131306,3.421479195859437e-05,relative_legacy,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,131306,5.241042569909415,spot_peer,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,131306,42.22330006830476,spot_baseline,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,131306,0.0328213528124747,baseline,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,139161,-7.173113861587938,spot_peer,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,139161,15.215101497424008,baseline,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,139161,0.0235983383638227,relative_legacy,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,139161,26.303440583379377,spot_baseline,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29920,Will Bitcoin dominance exceed 63.0% on any single day in November or December 2024?,2024-11-14 14:17:29.437091+00,139161,4.497965951400413,peer,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30077 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,101465,85.54149523009792,baseline,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,101465,94.86008474933556,spot_baseline,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,101465,-0.0109648912022336,relative_legacy,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,101465,-0.7432387328442792,peer,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,101465,-0.1612841001614083,spot_peer,Jgalt,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,103777,-8.1308084446957,spot_peer,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,103777,26.915406121072223,baseline,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,103777,-2.543048153854768,peer,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,103777,84.79969065549501,spot_baseline,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,103777,-0.0337811473365186,relative_legacy,datscilly,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,115725,0.0753323700452818,spot_peer,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,115725,79.81224497665072,baseline,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,115725,-0.2162629092390942,peer,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,115725,-0.0054645499670268,relative_legacy,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,115725,95.1587794814754,spot_baseline,Sergio,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,117580,3.323640338474289e-05,relative_legacy,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,117580,6.6722164295413,baseline,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,117580,0.0763206839644938,peer,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,117580,95.60566524124027,spot_baseline,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,117580,0.4293410608034725,spot_peer,MaciekK,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,120160,4.879892422852992,baseline,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,120160,0.0525565477273629,peer,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,120160,2.3777735149096163e-05,relative_legacy,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,120160,0.4293410608034725,spot_peer,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,120160,95.60566524124027,spot_baseline,OpenSystem,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,126626,1.8345109873220249,spot_peer,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,126626,97.3794929652606,spot_baseline,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,126626,1.143131111871477,peer,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,126626,0.0090524137829371,relative_legacy,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,126626,76.07539394159936,baseline,skmmcj,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,131306,0.0001016630523607,relative_legacy,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,131306,2.761783532941409,spot_peer,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,131306,0.0095358464169846,peer,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,131306,98.5500430304885,spot_baseline,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,131306,0.340272169602333,baseline,draaglom,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,139161,0.0209071247443027,relative_legacy,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,139161,95.35302253731182,baseline,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,139161,2.2210056059577767,peer,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29921,"Will the USDA's Center for Veterinary Biologics grant a license for a highly pathogenic avian influenza H5 vaccine in dairy cattle before January 1, 2025?",2024-11-14 14:17:29.478493+00,139161,2.761783532941409,spot_peer,Zaldath,no,2024-11-16 15:30:00+00,2024-11-16 15:30:00+00,1.0,30078 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,101465,-0.037684235332624,relative_legacy,Jgalt,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,101465,78.30882787092958,baseline,Jgalt,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,101465,-2.928987562223709,spot_peer,Jgalt,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,101465,82.8631581688019,spot_baseline,Jgalt,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,101465,-2.623744674968113,peer,Jgalt,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,103777,84.79969065549501,spot_baseline,datscilly,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,103777,-1.41889777485789,spot_peer,datscilly,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,103777,29.826484811856368,baseline,datscilly,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,103777,0.0546632524860065,peer,datscilly,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,103777,-0.0016689036350846,relative_legacy,datscilly,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,115725,-0.0210545121047089,relative_legacy,Sergio,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,115725,66.82614270153161,baseline,Sergio,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,115725,83.67320804591358,spot_baseline,Sergio,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,115725,-1.050475203788714,peer,Sergio,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,115725,-2.2973183002366966,spot_peer,Sergio,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,117580,0.0054992609852218,relative_legacy,MaciekK,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,117580,88.44025529836873,spot_baseline,MaciekK,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,117580,1.2165684640023982,peer,MaciekK,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,117580,56.05848638028024,baseline,MaciekK,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,117580,1.4199802327280264,spot_peer,MaciekK,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,119215,1.0537292310043318,spot_peer,rappatoni,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,119215,0.0,relative_legacy,rappatoni,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,119215,0.070918423235309,baseline,rappatoni,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,119215,87.97057662822883,spot_baseline,rappatoni,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,119215,0.0008494751136575,peer,rappatoni,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,120160,1.0537292310043318,spot_peer,OpenSystem,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,120160,0.3737009328154317,peer,OpenSystem,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,120160,0.0004075732168838,relative_legacy,OpenSystem,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,120160,38.9757077487846,baseline,OpenSystem,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,120160,87.97057662822883,spot_baseline,OpenSystem,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,126626,0.785769521149921,peer,skmmcj,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,126626,88.75252707415875,spot_baseline,skmmcj,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,126626,1.6634868213049936,spot_peer,skmmcj,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,126626,0.0083426233594384,relative_legacy,skmmcj,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,126626,22.4787526354417,baseline,skmmcj,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,131306,0.041744669243689,peer,draaglom,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,131306,0.0002743880905714,relative_legacy,draaglom,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,131306,2.87317589613445,spot_peer,draaglom,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,131306,90.3038270112912,spot_baseline,draaglom,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,131306,1.1983377854686732,baseline,draaglom,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,139161,-1.41889777485789,spot_peer,Zaldath,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,139161,69.83686164833607,baseline,Zaldath,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,139161,0.0038730450641501,relative_legacy,Zaldath,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,139161,84.79969065549501,spot_baseline,Zaldath,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -29966,"Will Microsoft stock continuously remain below its all-time high before January 1, 2025?",2024-11-17 13:34:49.07231+00,139161,1.2009235639457136,peer,Zaldath,yes,2024-11-19 15:30:00+00,2024-11-19 15:30:00+00,1.0,30148 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,101465,0.0006590586079215,relative_legacy,Jgalt,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,101465,80.81624506946748,baseline,Jgalt,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,101465,98.5500430304885,spot_baseline,Jgalt,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,101465,0.0381154530188111,peer,Jgalt,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,101465,-0.0620126328231739,spot_peer,Jgalt,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,103777,0.0,relative_legacy,datscilly,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,103777,98.5500430304885,spot_baseline,datscilly,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,103777,0.0189900169266682,peer,datscilly,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,103777,43.63917358388666,baseline,datscilly,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,103777,-0.0620126328231739,spot_peer,datscilly,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,115725,98.5500430304885,spot_baseline,Sergio,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,115725,-0.0043872640213599,relative_legacy,Sergio,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,115725,-0.0620126328231739,spot_peer,Sergio,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,115725,95.3324244668571,baseline,Sergio,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,115725,-0.3857628490358769,peer,Sergio,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,117580,97.08536543404836,spot_baseline,MaciekK,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,117580,-1.2041544225252012,spot_peer,MaciekK,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,117580,-0.7142720741005789,peer,MaciekK,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,117580,-0.0088190435528355,relative_legacy,MaciekK,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,117580,62.82508957157702,baseline,MaciekK,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,119215,0.5047391955470073,spot_peer,rappatoni,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,119215,0.9437370158989086,baseline,rappatoni,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,119215,0.0051160053943831,peer,rappatoni,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,119215,6.909044301672262e-05,relative_legacy,rappatoni,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,119215,99.27684307689242,spot_baseline,rappatoni,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,120160,93.60363186948398,baseline,OpenSystem,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,120160,98.5500430304885,spot_baseline,OpenSystem,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,120160,0.051085487031312,peer,OpenSystem,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,120160,-0.0620126328231739,spot_peer,OpenSystem,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,120160,0.0006605393357299,relative_legacy,OpenSystem,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,126626,0.6075052797331103,peer,skmmcj,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,126626,92.85372787192324,baseline,skmmcj,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,126626,0.0074583072375376,relative_legacy,skmmcj,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,126626,99.27684307689242,spot_baseline,skmmcj,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,126626,0.5047391955470073,spot_peer,skmmcj,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,131306,0.3076462320627997,peer,draaglom,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,131306,49.29884508979897,baseline,draaglom,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,131306,0.003600521064792,relative_legacy,draaglom,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,131306,0.5047391955470073,spot_peer,draaglom,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,131306,99.27684307689242,spot_baseline,draaglom,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,139161,-0.0620126328231739,spot_peer,Zaldath,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,139161,0.0008079752250354,relative_legacy,Zaldath,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,139161,0.0715764489693644,peer,Zaldath,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30004,"Will a bilateral ceasefire be announced in the Ukraine war, before January 1, 2025?",2024-11-18 14:07:02.565157+00,139161,95.5927091879098,baseline,Zaldath,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30207 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,101465,0.0170775640457912,relative_legacy,Jgalt,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,101465,89.98715971683204,baseline,Jgalt,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,101465,-0.242815273642651,spot_peer,Jgalt,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,101465,94.11063109464314,spot_baseline,Jgalt,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,101465,1.0928098105660649,peer,Jgalt,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,103777,95.60566524124027,spot_baseline,datscilly,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,103777,0.922998267856329,spot_peer,datscilly,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,103777,42.46082570807096,baseline,datscilly,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,103777,0.7511105539069838,peer,datscilly,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,103777,0.0132102650141257,relative_legacy,datscilly,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,115725,-0.0506498157914236,relative_legacy,Sergio,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,115725,83.35590935619742,baseline,Sergio,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,115725,89.53026213333065,spot_baseline,Sergio,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,115725,-4.818953221110516,peer,Sergio,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,115725,-3.81454383403294,spot_peer,Sergio,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,117580,0.0169574440969673,relative_legacy,MaciekK,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,117580,95.60566524124027,spot_baseline,MaciekK,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,117580,1.2084946762470836,peer,MaciekK,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,117580,61.36618160636185,baseline,MaciekK,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,117580,0.922998267856329,spot_peer,MaciekK,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,119215,2.0768545366651034,spot_peer,rappatoni,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,119215,2.540449207136585e-05,relative_legacy,rappatoni,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,119215,0.1099365778282765,baseline,rappatoni,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,119215,97.08536543404836,spot_baseline,rappatoni,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,119215,0.0017779380832721,peer,rappatoni,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,120160,-1.4208365087133858,spot_peer,OpenSystem,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,120160,-1.2778465000523316,peer,OpenSystem,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,120160,-0.0126217222903522,relative_legacy,OpenSystem,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,120160,43.392075796742375,baseline,OpenSystem,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,120160,92.5999418556223,spot_baseline,OpenSystem,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,126626,-1.2460311866089857,peer,skmmcj,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,126626,92.5999418556223,spot_baseline,skmmcj,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,126626,-1.4208365087133858,spot_peer,skmmcj,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,126626,-0.0089921210312336,relative_legacy,skmmcj,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,126626,84.99668574632375,baseline,skmmcj,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,131306,-0.2612126815031284,peer,draaglom,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,131306,0.0,relative_legacy,draaglom,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,131306,-0.242815273642651,spot_peer,draaglom,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,131306,94.11063109464314,spot_baseline,draaglom,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,131306,47.41349188106093,baseline,draaglom,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,139161,3.2189963263671317,spot_peer,Zaldath,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,139161,92.3611052813169,baseline,Zaldath,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,139161,0.0584905415106049,relative_legacy,Zaldath,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30005,"Will Kalshi outrank Robinhood in the top free Finance apps on December 31, 2024?",2024-11-18 14:07:02.584902+00,139161,4.549850610471557,peer,Zaldath,no,2024-11-20 15:30:00+00,2024-11-20 15:30:00+00,1.0,30208 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,101465,0.0261076909341622,relative_legacy,Jgalt,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,101465,56.36193953148192,baseline,Jgalt,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,101465,10.499525213610967,spot_peer,Jgalt,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,101465,48.54268271702416,spot_baseline,Jgalt,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,101465,3.7140138557517104,peer,Jgalt,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,103777,0.0,spot_baseline,datscilly,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,103777,-27.353601406275477,spot_peer,datscilly,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,103777,0.0,baseline,datscilly,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,103777,-6.312073439144193,peer,datscilly,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,103777,-0.0862553727474897,relative_legacy,datscilly,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,115725,-0.1079446858139458,relative_legacy,Sergio,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,115725,29.42243055279248,baseline,Sergio,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,115725,16.349873228287958,spot_baseline,Sergio,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,115725,-8.613105653854747,peer,Sergio,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,115725,-14.604124309237609,spot_peer,Sergio,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,117580,7.432326656002679e-05,relative_legacy,MaciekK,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,117580,44.36066514756148,spot_baseline,MaciekK,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,117580,0.3200826697035634,peer,MaciekK,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,117580,2.3498091254303306,baseline,MaciekK,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,117580,7.238427315370099,spot_peer,MaciekK,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,119215,5.571730164541783,spot_peer,rappatoni,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,119215,-0.0018262162559196,relative_legacy,rappatoni,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,119215,14.571167002730077,baseline,rappatoni,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,119215,42.22330006830478,spot_baseline,rappatoni,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,119215,-0.1655805060464112,peer,rappatoni,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,120160,2.162378346317264,spot_peer,OpenSystem,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,120160,-0.5729342290865106,peer,OpenSystem,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,120160,-0.0115730696762141,relative_legacy,OpenSystem,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,120160,10.23657803184844,baseline,OpenSystem,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,120160,37.85116232537298,spot_baseline,OpenSystem,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,126626,5.099457960421649,peer,skmmcj,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,126626,46.46682670034443,spot_baseline,skmmcj,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,126626,8.880792250249769,spot_peer,skmmcj,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,126626,0.0434863147462524,relative_legacy,skmmcj,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,126626,49.227741123339534,baseline,skmmcj,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,131306,-0.0206252427758091,peer,draaglom,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,131306,-0.0004866202981613,relative_legacy,draaglom,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,131306,-10.65635083046975,spot_peer,draaglom,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,131306,21.412480535284736,spot_baseline,draaglom,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,131306,0.0981623763874068,baseline,draaglom,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,139161,18.261223255893015,spot_peer,Zaldath,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,139161,59.04404904144535,baseline,Zaldath,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,139161,0.0598364933828346,relative_legacy,Zaldath,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,139161,58.496250072115615,spot_baseline,Zaldath,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30095,"Will South Carolina have 300,000 or more residents living in drought on December 31, 2024?",2024-11-19 14:20:11.472074+00,139161,6.550764585030742,peer,Zaldath,yes,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30290 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,101465,0.0134721096616607,relative_legacy,Jgalt,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,101465,92.47280148183596,baseline,Jgalt,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,101465,95.1587794814754,spot_baseline,Jgalt,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,101465,1.9541347926714656,peer,Jgalt,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,101465,1.265299214711747,spot_peer,Jgalt,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,103777,0.0015477571528782,relative_legacy,datscilly,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,103777,95.60566524124027,spot_baseline,datscilly,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,103777,0.3107853203021145,peer,datscilly,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,103777,16.902976143592955,baseline,datscilly,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,103777,1.6137765196768594,spot_peer,datscilly,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,115725,87.97057662822883,spot_baseline,Sergio,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,115725,-0.0629354793379926,relative_legacy,Sergio,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,115725,-4.339993643936672,spot_peer,Sergio,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,115725,87.7289924705907,baseline,Sergio,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,115725,-4.59632023612685,peer,Sergio,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,117580,94.11063109464314,spot_baseline,MaciekK,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,117580,0.447962978177869,spot_peer,MaciekK,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,117580,0.0365403037036324,peer,MaciekK,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,117580,0.0,relative_legacy,MaciekK,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,117580,6.802912654880868,baseline,MaciekK,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,119215,-1.9205455565782812,spot_peer,rappatoni,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,119215,30.232350766180726,baseline,rappatoni,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,119215,-0.5930667132388125,peer,rappatoni,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,119215,-0.0111686607421795,relative_legacy,rappatoni,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,119215,91.07326619029126,spot_baseline,rappatoni,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,120160,90.87272165981248,baseline,OpenSystem,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,120160,92.5999418556223,spot_baseline,OpenSystem,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,120160,-0.69340048945211,peer,OpenSystem,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,120160,-0.7300582568928762,spot_peer,OpenSystem,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,120160,-0.0174299074645164,relative_legacy,OpenSystem,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,126626,0.4895999667278721,peer,skmmcj,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,126626,83.21442915831696,baseline,skmmcj,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,126626,-0.001219927265645,relative_legacy,skmmcj,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,126626,94.11063109464314,spot_baseline,skmmcj,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,126626,0.447962978177869,spot_peer,skmmcj,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,131306,0.0032415414758455,peer,draaglom,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,131306,0.7296566952884694,baseline,draaglom,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,131306,-3.3643315211501866e-06,relative_legacy,draaglom,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,131306,0.447962978177869,spot_peer,draaglom,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,131306,94.11063109464314,spot_baseline,draaglom,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,139161,2.767632788485632,spot_peer,Zaldath,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,139161,0.0266609409667538,relative_legacy,Zaldath,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,139161,3.088485513936819,peer,Zaldath,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,139161,97.08536543404836,spot_baseline,Zaldath,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30096,"Before December 31, 2024, will Tech Crunch report new layoffs at Tesla?",2024-11-19 14:20:11.509811+00,139161,95.45880324091532,baseline,Zaldath,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30291 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,101465,0.0735881047253143,relative_legacy,Jgalt,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,101465,61.23019760178836,baseline,Jgalt,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,101465,64.15460290875237,spot_baseline,Jgalt,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,101465,8.64891819186363,peer,Jgalt,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,101465,11.856834462842432,spot_peer,Jgalt,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,103777,0.005501345965673,relative_legacy,datscilly,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,103777,52.60688116675877,spot_baseline,datscilly,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,103777,-0.0003500180620816,peer,datscilly,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,103777,9.823028217138402,baseline,datscilly,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,103777,2.852029849569579,spot_peer,datscilly,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,115725,46.46682670034443,spot_baseline,Sergio,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,115725,-0.078310136572038,relative_legacy,Sergio,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,115725,-1.9359267725449776,spot_peer,Sergio,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,115725,37.570492699639125,baseline,Sergio,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,115725,-5.135188730152123,peer,Sergio,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,117580,44.36066514756145,spot_baseline,MaciekK,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,117580,-3.578291707424659,spot_peer,MaciekK,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,117580,-0.2968290717750602,peer,MaciekK,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,117580,-0.0013604123793926,relative_legacy,MaciekK,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,117580,2.86534515574521,baseline,MaciekK,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,119215,-12.170251820689222,spot_peer,rappatoni,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,119215,2.985916154629447,baseline,rappatoni,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,119215,-1.226601532452672,peer,rappatoni,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,119215,-0.0117740342183112,relative_legacy,rappatoni,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,119215,33.34237337251918,spot_baseline,rappatoni,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,120160,28.000573841969107,baseline,OpenSystem,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,120160,54.59683691052925,spot_baseline,OpenSystem,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,120160,1.7340212031437812,peer,OpenSystem,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,120160,4.403778589457351,spot_peer,OpenSystem,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,120160,0.0150041205873259,relative_legacy,OpenSystem,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,126626,-6.671170848131322,peer,skmmcj,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,126626,39.6117011374996,baseline,skmmcj,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,126626,-0.0954926334832755,relative_legacy,skmmcj,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,126626,46.46682670034443,spot_baseline,skmmcj,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,126626,-1.9359267725449776,spot_peer,skmmcj,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,131306,-0.0365606801690958,peer,draaglom,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,131306,0.2595771319927801,baseline,draaglom,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,131306,-0.0003032004380004,relative_legacy,draaglom,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,131306,-6.936750061763787,spot_peer,draaglom,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,131306,40.05379295837285,spot_baseline,draaglom,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,139161,7.444504233098285,spot_peer,Zaldath,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,139161,0.0147307415119331,relative_legacy,Zaldath,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,139161,2.9837614857349117,peer,Zaldath,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,139161,58.496250072115615,spot_baseline,Zaldath,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30097,"Before December 31, 2024, will Tech Crunch report new layoffs at Google or Alphabet?",2024-11-19 14:20:11.544894+00,139161,56.936542800478,baseline,Zaldath,no,2024-11-21 15:30:00+00,2024-11-21 15:30:00+00,1.0,30292 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,101465,-0.187676859889324,relative_legacy,Jgalt,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,101465,-47.57651040229403,baseline,Jgalt,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,101465,-19.26548816308123,spot_peer,Jgalt,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,101465,-64.38561897747249,spot_baseline,Jgalt,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,101465,-24.12649436871073,peer,Jgalt,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,103777,-32.19280948873623,spot_baseline,datscilly,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,103777,5.838161359767393,spot_peer,datscilly,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,103777,-13.934710408764204,baseline,datscilly,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,103777,-0.114596013437053,peer,datscilly,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,103777,0.0197031597157342,relative_legacy,datscilly,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,115725,0.2851673045079202,relative_legacy,Sergio,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,115725,0.1950779215796793,baseline,Sergio,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,115725,0.0,spot_baseline,Sergio,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,115725,16.19778090282192,peer,Sergio,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,115725,30.94181088261598,spot_peer,Sergio,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,117580,0.0,relative_legacy,MaciekK,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,117580,-51.45731728297583,spot_baseline,MaciekK,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,117580,-1.3026182629819738,peer,MaciekK,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,117580,-5.262899793748421,baseline,MaciekK,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,117580,-9.184120310491425,spot_peer,MaciekK,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,119215,-38.37912980256343,spot_peer,rappatoni,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,119215,-0.0111936251061464,relative_legacy,rappatoni,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,119215,-2.6578262365217795,baseline,rappatoni,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,119215,-88.8968687611256,spot_baseline,rappatoni,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,119215,-1.1474538928724856,peer,rappatoni,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,120160,30.94181088261598,spot_peer,OpenSystem,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,120160,11.75543534493046,peer,OpenSystem,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,120160,0.1728985536495904,relative_legacy,OpenSystem,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,120160,0.0,baseline,OpenSystem,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,120160,0.0,spot_baseline,OpenSystem,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,126626,-9.384132557162731,peer,skmmcj,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,126626,-39.592867633113926,spot_baseline,skmmcj,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,126626,0.0676657411679396,spot_peer,skmmcj,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,126626,-0.0105507951565836,relative_legacy,skmmcj,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,126626,-30.020520932436902,baseline,skmmcj,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,131306,-23.42212443910504,peer,draaglom,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,131306,-0.2633941477677846,relative_legacy,draaglom,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,131306,-42.624916700633726,spot_peer,draaglom,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,131306,-94.34164716336323,spot_baseline,draaglom,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,131306,-43.7104965429169,baseline,draaglom,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,139161,41.66420611060252,spot_peer,Zaldath,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,139161,20.50986215862272,baseline,Zaldath,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,139161,0.4549126109288849,relative_legacy,Zaldath,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,139161,13.750352374993504,spot_baseline,Zaldath,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30130,Will the Dairy Recall Tracker maintained by the Center for Dairy Research show more than 1 recall for December 2024?,2024-11-20 14:07:00.043585+00,139161,31.54420328651763,peer,Zaldath,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30331 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,101465,-0.0871859074759335,relative_legacy,Jgalt,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,101465,51.60987003582032,baseline,Jgalt,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,101465,56.55971758542251,spot_baseline,Jgalt,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,101465,-7.215564876697847,peer,Jgalt,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,101465,-3.85242520130629,spot_peer,Jgalt,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,103777,-0.0771760697601817,relative_legacy,datscilly,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,103777,42.22330006830476,spot_baseline,datscilly,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,103777,-6.103632222869866,peer,datscilly,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,103777,17.440195024867933,baseline,datscilly,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,103777,-15.031828505291717,spot_peer,datscilly,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,115725,67.80719051126377,spot_baseline,Sergio,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,115725,0.0198761280162402,relative_legacy,Sergio,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,115725,4.918248214036296,spot_peer,Sergio,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,115725,57.04331921842338,baseline,Sergio,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,115725,2.1087819268779127,peer,Sergio,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,117580,58.496250072115615,spot_baseline,MaciekK,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,117580,-2.3423354139404564,spot_peer,MaciekK,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,117580,-0.1133137416866558,peer,MaciekK,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,117580,-0.0015440520928288,relative_legacy,MaciekK,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,117580,5.969611754363209,baseline,MaciekK,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,119215,11.738518168385225,spot_peer,rappatoni,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,119215,0.4427453141372904,baseline,rappatoni,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,119215,0.0569094035700444,peer,rappatoni,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,119215,0.0007733156328424,relative_legacy,rappatoni,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,119215,76.55347463629771,spot_baseline,rappatoni,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,120160,30.846035715792556,baseline,OpenSystem,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,120160,60.40713236688608,spot_baseline,OpenSystem,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,120160,1.997087459315613,peer,OpenSystem,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,120160,-0.8522474045631283,spot_peer,OpenSystem,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,120160,0.0222773528455598,relative_legacy,OpenSystem,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,126626,2.303799723418051,peer,skmmcj,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,126626,61.19267112108184,baseline,skmmcj,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,126626,0.0180676071764184,relative_legacy,skmmcj,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,126626,62.29303509201767,spot_baseline,skmmcj,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,126626,0.6183617717640522,spot_peer,skmmcj,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,131306,-3.51096056041001,peer,draaglom,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,131306,22.50312656599063,baseline,draaglom,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,131306,-0.0458795087508283,relative_legacy,draaglom,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,131306,-6.934809797469166,spot_peer,draaglom,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,131306,52.60688116675877,spot_baseline,draaglom,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,139161,11.738518168385225,spot_peer,Zaldath,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,139161,0.1123562008112951,relative_legacy,Zaldath,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,139161,10.476892888482762,peer,Zaldath,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,139161,76.55347463629771,spot_baseline,Zaldath,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30131,"Will the domestic opening weekend box office revenue of The Lord of The Rings: The War of the Rohirrim, scheduled to open December 13, 2024, exceed $20,000,000?",2024-11-20 14:07:00.082819+00,139161,74.48970239493347,baseline,Zaldath,no,2024-11-22 15:30:00+00,2024-11-22 15:30:00+00,1.0,30332 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,101465,28.76682505789239,baseline,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,101465,17.000737482373765,peer,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,101465,0.1188146778741498,relative_legacy,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,101465,48.54268271702416,spot_baseline,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,101465,24.94555665358789,spot_peer,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,103777,-0.5848252411008652,relative_legacy,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,103777,-48.4968633147369,baseline,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,103777,-42.3365427605678,peer,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,103777,-55.63933485243855,spot_baseline,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,103777,-56.29459905764685,spot_peer,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,115725,2.669634519891682,baseline,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,115725,-0.0889481489564575,relative_legacy,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,115725,7.603605173021327,spot_peer,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,115725,-0.4640807411062857,peer,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,115725,26.303440583379377,spot_baseline,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,117580,26.303440583379377,spot_baseline,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,117580,1.6978054209830171,baseline,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,117580,0.0,relative_legacy,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,117580,7.603605173021327,spot_peer,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,117580,0.4308676333932595,peer,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,119215,42.22330006830476,spot_baseline,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,119215,14.156187525180115,baseline,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,119215,0.0505267423067337,relative_legacy,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,119215,6.659259992229709,peer,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,119215,20.01776160451867,spot_peer,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,120160,0.0,spot_baseline,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,120160,0.0,baseline,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,120160,-4.897221622094842,peer,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,120160,-0.0959046988127639,relative_legacy,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,120160,-12.90756996629856,spot_peer,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,126626,24.04832066854002,baseline,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,126626,15.221743569408757,peer,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,126626,37.85116232537298,spot_baseline,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,126626,16.608409786294178,spot_peer,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,126626,0.07810138681125,relative_legacy,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,131306,-0.4764463485853459,peer,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,131306,-15.180374539519503,spot_peer,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,131306,-0.0091702910105086,relative_legacy,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,131306,-2.914634565951651,spot_baseline,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,131306,-0.0914777822373975,baseline,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,139161,7.603605173021327,spot_peer,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,139161,9.98648951388704,baseline,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,139161,8.287185374065975e-06,relative_legacy,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,139161,26.303440583379377,spot_baseline,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30168,Will the domestic opening weekend box office revenue of Mufasa: The Lion King exceed that of Sonic the Hedgehog 3?,2024-11-21 14:50:10.436388+00,139161,8.86168279494876,peer,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30370 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,101465,0.1798866201211878,relative_legacy,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,101465,-55.98719433750996,baseline,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,101465,-2.6027237637191347,spot_peer,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,101465,-73.69655941662059,spot_baseline,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,101465,13.73600153783834,peer,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,103777,-100.0,spot_baseline,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,103777,-23.113898903039043,spot_peer,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,103777,-104.73239097259452,baseline,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,103777,-19.227040674605966,peer,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,103777,-0.2003396093586046,relative_legacy,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,115725,0.1118979073186439,relative_legacy,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,115725,-67.8628832838413,baseline,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,115725,-83.65012677171204,spot_baseline,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,115725,8.39222380266164,peer,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,115725,-10.36442180600118,spot_peer,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,117580,0.0600310141103352,relative_legacy,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,117580,-15.200309344505014,spot_baseline,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,117580,4.451097167777561,peer,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,117580,-1.3194267403077802,baseline,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,117580,43.01210089844934,spot_peer,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,119215,23.99101376850677,spot_peer,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,119215,0.0021051811807144,relative_legacy,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,119215,-2.3226358463710377,baseline,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,119215,-39.592867633113926,spot_baseline,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,119215,0.480918459913237,peer,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,120160,-23.113898903039043,spot_peer,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,120160,-2.5445580378839505,peer,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,120160,-0.0135773427229653,relative_legacy,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,120160,-35.87691596122804,baseline,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,120160,-100.0,spot_baseline,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,126626,-4.35921246302293,peer,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,126626,-105.88936890535685,spot_baseline,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,126626,-27.70637328656776,spot_peer,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,126626,-0.0278024593577107,relative_legacy,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,126626,-73.08956123700197,baseline,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,131306,1.0547711958614907,peer,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,131306,0.0104465902011288,relative_legacy,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,131306,43.01210089844934,spot_peer,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,131306,-15.200309344505014,spot_baseline,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,131306,-0.3601994233404639,baseline,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,139161,-23.113898903039043,spot_peer,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,139161,-89.87462235527688,baseline,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,139161,-0.0135914687002977,relative_legacy,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,139161,-100.0,spot_baseline,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30169,Will Nvidia have the largest market cap in the world at the end of 2024?,2024-11-21 14:50:10.477216+00,139161,-1.9842009885394305,peer,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30371 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,101465,0.2192809020017385,relative_legacy,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,101465,-58.6903676527853,baseline,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,101465,19.931821530419278,spot_peer,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,101465,-68.96598793878492,spot_baseline,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,101465,26.048854900725956,peer,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,103777,0.0,spot_baseline,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,103777,73.71084913650672,spot_peer,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,103777,-0.2886351373012054,baseline,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,103777,17.16525476780972,peer,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,103777,0.172640307005148,relative_legacy,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,115725,0.015304439281222,relative_legacy,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,115725,-46.27838909798063,baseline,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,115725,-88.8968687611256,spot_baseline,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,115725,7.98617323910507,peer,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,115725,4.389908451327317,spot_peer,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,117580,-0.0029348659623915,relative_legacy,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,117580,-100.0,spot_baseline,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,117580,-0.1642731702039097,peer,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,117580,-6.557271949119039,baseline,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,117580,-4.268208676487123,spot_peer,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,119215,-4.268208676487123,spot_peer,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,119215,-0.0006073890183659,relative_legacy,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,119215,-3.782698807892976,baseline,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,119215,-100.0,spot_baseline,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,119215,-0.0993854288127151,peer,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,120160,-41.22491621084115,spot_peer,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,120160,-11.36909679963751,peer,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,120160,-0.1679424331960099,relative_legacy,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,120160,-48.244352667520815,baseline,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,120160,-147.39311883324118,spot_baseline,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,126626,-21.39620267855315,peer,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,126626,-139.59286763311397,spot_baseline,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,126626,-35.14235381793518,spot_peer,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,126626,-0.2808423089160961,relative_legacy,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,126626,-99.45021002271548,baseline,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,131306,0.1099908938136802,peer,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,131306,0.001268482292516,relative_legacy,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,131306,16.242966462832783,spot_peer,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,131306,-73.69655941662059,spot_baseline,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,131306,-0.8195868995479951,baseline,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,139161,-29.37185819933574,spot_peer,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,139161,-114.9439324214576,baseline,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,139161,-0.2332767876592644,relative_legacy,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,139161,-132.19280948873626,spot_baseline,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30171,"Will at least one of Andrea Bocelli's concerts at Madison Square Garden on December 18 or 19, 2024 sell out?",2024-11-21 14:50:10.550295+00,139161,-18.2813157242472,peer,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30373 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,101465,0.3349028035876731,relative_legacy,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,101465,33.24286604382519,baseline,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,101465,26.08066820649248,spot_peer,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,101465,41.5758666522498,spot_baseline,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,101465,31.01135712593824,peer,Jgalt,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,103777,0.0,spot_baseline,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,103777,-6.339800886518621,spot_peer,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,103777,0.0,baseline,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,103777,-1.9925590047127208,peer,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,103777,-0.0069617153448377,relative_legacy,datscilly,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,115725,-0.1117941305045397,relative_legacy,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,115725,-7.596231004163884,baseline,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,115725,-15.200309344505014,spot_baseline,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,115725,-11.338995067843026,peer,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,115725,-18.19285889802409,spot_peer,Sergio,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,117580,0.0031771853956754,relative_legacy,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,117580,13.750352374993504,spot_baseline,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,117580,0.283420062444072,peer,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,117580,1.0138900740513217,baseline,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,117580,4.382594341467926,spot_peer,MaciekK,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,119215,-40.214123824709816,spot_peer,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,119215,-0.0185775272174711,relative_legacy,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,119215,-1.6524223996467888,baseline,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,119215,-43.440282414577496,spot_baseline,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,119215,-1.5027908805580317,peer,rappatoni,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,120160,-6.339800886518621,spot_peer,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,120160,-2.842268602544652,peer,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,120160,-0.0149575170967751,relative_legacy,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,120160,0.0,baseline,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,120160,0.0,spot_baseline,OpenSystem,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,126626,4.2235489750689945,peer,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,126626,23.878685958711674,spot_baseline,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,126626,12.280573442208397,spot_peer,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,126626,0.0698002957997202,relative_legacy,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,126626,7.015507386660573,baseline,skmmcj,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,131306,0.2109736438233928,peer,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,131306,0.0018652325643422,relative_legacy,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,131306,14.171374252801275,spot_peer,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,131306,26.303440583379377,spot_baseline,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,131306,0.3918535785345531,baseline,draaglom,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,139161,14.171374252801275,spot_peer,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,139161,-21.31786473016681,baseline,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,139161,-0.1537781762963598,relative_legacy,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,139161,26.303440583379377,spot_baseline,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30172,Will Bluesky reach 30 million users before 1 January 2025?,2024-11-21 14:50:10.587751+00,139161,-18.052686251616244,peer,Zaldath,no,2024-11-23 15:30:00+00,2024-11-23 15:30:00+00,1.0,30374 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,101465,99.71117206751734,spot_baseline,Jgalt,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,101465,0.1720451517717231,spot_peer,Jgalt,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,101465,40.085427642467685,baseline,Jgalt,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,101465,0.000600639480547,relative_legacy,Jgalt,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,101465,0.1103774626871087,peer,Jgalt,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,103777,99.27684307689242,spot_baseline,datscilly,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,103777,25.72649673569021,baseline,datscilly,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,103777,-0.1720164656992804,spot_peer,datscilly,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,103777,-0.0050226966454692,peer,datscilly,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,103777,-0.0002714828722721,relative_legacy,datscilly,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,115725,0.0574729975287936,spot_peer,Sergio,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,115725,89.62641812999561,baseline,Sergio,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,115725,0.4826263517792151,peer,Sergio,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,115725,99.56654097361088,spot_baseline,Sergio,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,115725,0.0057869656382642,relative_legacy,Sergio,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,119215,-0.0013435870669915,peer,rappatoni,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,119215,99.27684307689242,spot_baseline,rappatoni,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,119215,-0.1720164656992804,spot_peer,rappatoni,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,119215,-0.000257433780981,relative_legacy,rappatoni,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,119215,30.16519314388881,baseline,rappatoni,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,120160,-0.1720164656992804,spot_peer,OpenSystem,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,120160,-0.0033158014571931,relative_legacy,OpenSystem,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,120160,-0.391816636359064,peer,OpenSystem,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,120160,99.27684307689242,spot_baseline,OpenSystem,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,120160,87.59152208852369,baseline,OpenSystem,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,126626,0.0002883759843335,relative_legacy,skmmcj,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,126626,0.0372565627556515,peer,skmmcj,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,126626,0.1720451517717231,spot_peer,skmmcj,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,126626,99.71117206751734,spot_baseline,skmmcj,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,126626,12.536446290302749,baseline,skmmcj,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,131306,2.780917854155957e-05,relative_legacy,draaglom,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,131306,1.5202910337450246,baseline,draaglom,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,131306,0.0045269311681569,peer,draaglom,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,131306,0.2865025617248125,spot_peer,draaglom,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,131306,99.85565831303312,spot_baseline,draaglom,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,139161,-0.001356091540093,relative_legacy,Zaldath,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,139161,99.27684307689242,spot_baseline,Zaldath,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,139161,-0.2366043883186383,peer,Zaldath,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,139161,96.38108536704225,baseline,Zaldath,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30204,Will Brazil ban the 6x1 work schedule before 1 January 2025?,2024-11-22 14:04:58.483419+00,139161,-0.1720164656992804,spot_peer,Zaldath,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30414 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,101465,13.750352374993504,spot_baseline,Jgalt,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,101465,19.25170546595157,spot_peer,Jgalt,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,101465,19.235459778263543,baseline,Jgalt,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,101465,0.0365162792835625,relative_legacy,Jgalt,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,101465,4.444901361230997,peer,Jgalt,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,103777,-32.19280948873623,spot_baseline,datscilly,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,103777,-3.4244551456348424,baseline,datscilly,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,103777,-17.143006661880943,spot_peer,datscilly,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,103777,-2.976493985792943,peer,datscilly,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,103777,-0.0425988378425233,relative_legacy,datscilly,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,115725,10.622270893592136,spot_peer,Sergio,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,115725,9.36629892128594,baseline,Sergio,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,115725,-2.8283591207871392,peer,Sergio,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,115725,2.856915219677092,spot_baseline,Sergio,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,115725,-0.0479448576026019,relative_legacy,Sergio,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,119215,-6.532383441013471,peer,rappatoni,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,119215,-28.63041851566409,spot_baseline,rappatoni,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,119215,-14.320993794409922,spot_peer,rappatoni,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,119215,-0.0859976184169315,relative_legacy,rappatoni,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,119215,-7.596437469548625,baseline,rappatoni,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,120160,19.25170546595157,spot_peer,OpenSystem,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,120160,0.0459407271045718,relative_legacy,OpenSystem,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,120160,5.154765169610182,peer,OpenSystem,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,120160,13.750352374993504,spot_baseline,OpenSystem,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,120160,26.69064068897351,baseline,OpenSystem,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,126626,-0.0223482555706342,relative_legacy,skmmcj,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,126626,-1.5853719461118236,peer,skmmcj,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,126626,-8.877788195637958,spot_peer,skmmcj,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,126626,-21.75914350726266,spot_baseline,skmmcj,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,126626,-2.6205804864123943,baseline,skmmcj,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,131306,-0.0006599632001016,relative_legacy,draaglom,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,131306,-0.0659963200101663,baseline,draaglom,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,131306,-0.0311115003240695,peer,draaglom,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,131306,-17.143006661880943,spot_peer,draaglom,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,131306,-32.19280948873623,spot_baseline,draaglom,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,139161,0.0296564984815492,relative_legacy,Zaldath,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,139161,0.0,spot_baseline,Zaldath,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,139161,4.354053463188261,peer,Zaldath,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,139161,31.256035607509933,baseline,Zaldath,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30206,"Will the domestic opening weekend box office revenue of Y2K, scheduled to open December 6, 2024, exceed $5,000,000?",2024-11-22 14:04:58.567508+00,139161,8.359113488314442,spot_peer,Zaldath,no,2024-11-26 15:30:00+00,2024-11-26 15:30:00+00,1.0,30416 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,101465,0.0007817635896482,relative_legacy,Jgalt,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,101465,0.2265360080163277,spot_peer,Jgalt,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,101465,75.78209489905939,baseline,Jgalt,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,101465,99.4217647405994,spot_baseline,Jgalt,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,101465,0.2776335351648653,peer,Jgalt,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,103777,0.0002541546481413,relative_legacy,datscilly,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,103777,0.2184257660541561,peer,datscilly,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,103777,69.77231840244951,baseline,datscilly,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,103777,99.27684307689242,spot_baseline,datscilly,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,103777,0.1135274600907006,spot_peer,datscilly,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,115725,-0.6597724588002025,peer,Sergio,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,115725,-0.3396453581273241,spot_peer,Sergio,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,115725,96.177745914688,baseline,Sergio,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,115725,98.6956962524401,spot_baseline,Sergio,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,115725,-0.0105836848110855,relative_legacy,Sergio,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,117580,0.0873570118468011,peer,MaciekK,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,117580,99.4217647405994,spot_baseline,MaciekK,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,117580,89.83569090068322,baseline,MaciekK,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,117580,-0.001949928029933,relative_legacy,MaciekK,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,117580,0.2265360080163277,spot_peer,MaciekK,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,119215,0.1135274600907006,spot_peer,rappatoni,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,119215,37.633504269083126,baseline,rappatoni,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,119215,99.27684307689242,spot_baseline,rappatoni,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,119215,-0.0001407712913062,relative_legacy,rappatoni,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,119215,0.0731596978508765,peer,rappatoni,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,120160,-0.0050293141928724,relative_legacy,OpenSystem,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,120160,-0.1640272682756059,peer,OpenSystem,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,120160,-0.4532243682794667,spot_peer,OpenSystem,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,120160,89.76375521962957,baseline,OpenSystem,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,120160,98.5500430304885,spot_baseline,OpenSystem,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,126626,99.56654097361088,spot_baseline,skmmcj,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,126626,28.24335538439413,baseline,skmmcj,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,126626,0.1085553313321708,peer,skmmcj,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,126626,0.000681300484937,relative_legacy,skmmcj,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,126626,0.339431150455826,spot_peer,skmmcj,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,131306,99.4217647405994,spot_baseline,draaglom,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,131306,0.1719429167530029,peer,draaglom,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,131306,0.0005745430759644,relative_legacy,draaglom,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,131306,49.07328201954981,baseline,draaglom,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,131306,0.2265360080163277,spot_peer,draaglom,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,139161,-0.0046638707408778,relative_legacy,Zaldath,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,139161,-0.1132745319261051,peer,Zaldath,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,139161,96.83078388675082,baseline,Zaldath,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30261,"On December 31, 2024, will exactly 4 US states have Waymo's rider-only ride-hailing service available to the general public? -",2024-11-25 14:06:15.386111+00,139161,-0.4532243682794667,spot_peer,Zaldath,no,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30468 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,101465,0.0002369608633972,relative_legacy,Jgalt,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,101465,68.79727892460095,baseline,Jgalt,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,101465,0.252003691350264,spot_peer,Jgalt,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,101465,99.13177569001992,spot_baseline,Jgalt,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,101465,-0.0139725861693317,peer,Jgalt,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,103777,98.5500430304885,spot_baseline,datscilly,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,103777,-0.2016259555428027,spot_peer,datscilly,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,103777,70.21510565815139,baseline,datscilly,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,103777,-0.065087600807493,peer,datscilly,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,103777,-0.0003763604071722,relative_legacy,datscilly,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,115725,-0.0003552639859339,relative_legacy,Sergio,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,115725,79.59594076670405,baseline,Sergio,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,115725,98.6956962524401,spot_baseline,Sergio,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,115725,-0.0843066931121158,peer,Sergio,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,115725,-0.0880469453906647,spot_peer,Sergio,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,117580,0.0033980823244856,relative_legacy,MaciekK,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,117580,99.27684307689242,spot_baseline,MaciekK,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,117580,0.2436367824505432,peer,MaciekK,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,117580,51.55678795392853,baseline,MaciekK,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,117580,0.3651258728273795,spot_peer,MaciekK,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,119215,-0.2016259555428027,spot_peer,rappatoni,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,119215,-0.0003762744219117,relative_legacy,rappatoni,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,119215,37.77448023377172,baseline,rappatoni,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,119215,98.5500430304885,spot_baseline,rappatoni,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,119215,-0.036056446596481,peer,rappatoni,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,120160,-0.2016259555428027,spot_peer,OpenSystem,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,120160,-0.0537226066104372,peer,OpenSystem,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,120160,-0.0003763604071722,relative_legacy,OpenSystem,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,120160,49.784939921800806,baseline,OpenSystem,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,120160,98.5500430304885,spot_baseline,OpenSystem,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,126626,-0.1838806696120509,peer,skmmcj,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,126626,98.84120257247882,spot_baseline,skmmcj,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,126626,0.0254175120338834,spot_peer,skmmcj,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,126626,-0.0024816279392205,relative_legacy,skmmcj,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,126626,25.2909483287585,baseline,skmmcj,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,131306,0.1728340849081631,peer,draaglom,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,131306,0.002475643803899,relative_legacy,draaglom,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,131306,0.252003691350264,spot_peer,draaglom,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,131306,99.13177569001992,spot_baseline,draaglom,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,131306,48.63587646493495,baseline,draaglom,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,139161,-0.2016259555428027,spot_peer,Zaldath,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,139161,94.14305467173274,baseline,Zaldath,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,139161,0.0003639770179406,relative_legacy,Zaldath,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,139161,98.5500430304885,spot_baseline,Zaldath,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30262,"Will astronauts Suni Williams and Butch Wilmore still be in space on December 30, 2024?",2024-11-25 14:06:15.433054+00,139161,0.0205557355491871,peer,Zaldath,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30469 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,101465,-0.0736129564742689,relative_legacy,Jgalt,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,101465,24.462306402535045,baseline,Jgalt,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,101465,-11.52335690239013,spot_peer,Jgalt,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,101465,41.35940824091752,spot_baseline,Jgalt,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,101465,-1.0375269410224055,peer,Jgalt,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,103777,58.496250072115615,spot_baseline,datscilly,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,103777,1.8397908964811391,spot_peer,datscilly,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,103777,19.943170696843517,baseline,datscilly,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,103777,-5.988798499314301,peer,datscilly,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,103777,-0.1166572227050253,relative_legacy,datscilly,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,115725,-0.1347653885848102,relative_legacy,Sergio,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,115725,16.716218356037675,baseline,Sergio,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,115725,42.22330006830478,spot_baseline,Sergio,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,115725,-5.35093509448667,peer,Sergio,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,115725,-10.849702194870094,spot_peer,Sergio,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,117580,0.0086208847779164,relative_legacy,MaciekK,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,117580,67.80719051126377,spot_baseline,MaciekK,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,117580,0.8800859104589083,peer,MaciekK,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,117580,5.461320672793672,baseline,MaciekK,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,117580,9.100374524457925,spot_peer,MaciekK,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,119215,11.878293440874684,spot_peer,rappatoni,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,119215,0.0420728875106271,relative_legacy,rappatoni,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,119215,22.73036540562651,baseline,rappatoni,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,119215,71.36958148433588,spot_baseline,rappatoni,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,119215,3.6963014759109054,peer,rappatoni,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,120160,-23.26385862636746,spot_peer,OpenSystem,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,120160,-4.776270602952781,peer,OpenSystem,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,120160,-0.0523371997372571,relative_legacy,OpenSystem,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,120160,6.6671764597886805,baseline,OpenSystem,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,120160,26.303440583379377,spot_baseline,OpenSystem,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,126626,3.687252900289287,peer,skmmcj,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,126626,67.80719051126377,spot_baseline,skmmcj,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,126626,9.100374524457925,spot_peer,skmmcj,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,126626,0.0538120195225936,relative_legacy,skmmcj,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,126626,18.78826360438731,baseline,skmmcj,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,131306,9.107023612624475,peer,draaglom,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,131306,0.087510570073071,relative_legacy,draaglom,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,131306,11.878293440874684,spot_peer,draaglom,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,131306,71.36958148433588,spot_baseline,draaglom,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,131306,33.00938169663143,baseline,draaglom,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,139161,1.8397908964811391,spot_peer,Zaldath,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,139161,6.314126047310602,baseline,Zaldath,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,139161,-0.0388746467443887,relative_legacy,Zaldath,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,139161,58.496250072115615,spot_baseline,Zaldath,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30263,"Will Donald Trump's 538 favorability be greater than or equal to 44.0% on December 30, 2024?",2024-11-25 14:06:15.462978+00,139161,-0.2171327615074361,peer,Zaldath,yes,2024-11-27 15:30:00+00,2024-11-27 15:30:00+00,1.0,30470 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,101465,-0.1253120352517377,relative_legacy,Jgalt,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,101465,19.045235887738954,baseline,Jgalt,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,101465,-8.50476197437933,spot_peer,Jgalt,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,101465,67.80719051126377,spot_baseline,Jgalt,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,101465,-9.305327605704866,peer,Jgalt,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,103777,84.79969065549501,spot_baseline,datscilly,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,103777,4.745829536963799,spot_peer,datscilly,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,103777,22.32745806171937,baseline,datscilly,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,103777,1.461589240516039,peer,datscilly,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,103777,0.0173739479640536,relative_legacy,datscilly,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,115725,-0.047868658100645,relative_legacy,Sergio,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,115725,59.58809949125527,baseline,Sergio,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,115725,76.55347463629771,spot_baseline,Sergio,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,115725,-3.625174760447811,peer,Sergio,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,115725,-1.6844920200304216,spot_peer,Sergio,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,117580,0.0,relative_legacy,MaciekK,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,117580,76.55347463629771,spot_baseline,MaciekK,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,117580,-0.0712950217078033,peer,MaciekK,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,117580,3.240075685193244,baseline,MaciekK,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,117580,-1.6844920200304216,spot_peer,MaciekK,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,119215,-0.3686875466714074,spot_peer,rappatoni,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,119215,-0.0016149738716318,relative_legacy,rappatoni,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,119215,28.682731676808597,baseline,rappatoni,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,119215,78.24085649273731,spot_baseline,rappatoni,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,119215,0.8223424407698685,peer,rappatoni,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,120160,2.2176332536072163,spot_peer,OpenSystem,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,120160,1.4791163909956149,peer,OpenSystem,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,120160,0.0091878170693017,relative_legacy,OpenSystem,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,120160,27.688528488300754,baseline,OpenSystem,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,120160,81.55754288625727,spot_baseline,OpenSystem,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,126626,0.1848387725088824,peer,skmmcj,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,126626,81.55754288625727,spot_baseline,skmmcj,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,126626,2.2176332536072163,spot_peer,skmmcj,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,126626,0.0021179391191283,relative_legacy,skmmcj,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,126626,6.890979961242075,baseline,skmmcj,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,131306,1.8839968477135471,peer,draaglom,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,131306,-0.001998635312124,relative_legacy,draaglom,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,131306,-1.6844920200304216,spot_peer,draaglom,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,131306,76.55347463629771,spot_baseline,draaglom,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,131306,68.34345298075588,baseline,draaglom,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,139161,4.745829536963799,spot_peer,Zaldath,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,139161,61.41367048050044,baseline,Zaldath,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,139161,0.0651298217783431,relative_legacy,Zaldath,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,139161,84.79969065549501,spot_baseline,Zaldath,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30297,"Will the lowest temperature recorded in Miami, FL over the entire month of December 2024 never be lower than the highest temperature recorded in Anchorage Alaska for the month?",2024-11-26 13:56:22.72855+00,139161,7.169913695356542,peer,Zaldath,yes,2024-11-28 15:30:00+00,2024-11-28 15:30:00+00,1.0,30507 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,101465,-183.65012677171205,spot_baseline,Jgalt,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,101465,-111.59307553642958,baseline,Jgalt,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,101465,6.801421149721564,peer,Jgalt,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,101465,0.0595015137118042,relative_legacy,Jgalt,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,101465,2.661656543243664,spot_peer,Jgalt,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,103777,-1.149290408924133,peer,datscilly,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,103777,2.661656543243664,spot_peer,datscilly,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,103777,-183.65012677171205,spot_baseline,datscilly,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,103777,-0.014896101975652,relative_legacy,datscilly,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,103777,-135.66511191547644,baseline,datscilly,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,115725,-3.63672050314165,peer,Sergio,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,115725,2.661656543243664,spot_peer,Sergio,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,115725,-148.13995026217282,baseline,Sergio,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,115725,-183.65012677171205,spot_baseline,Sergio,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,115725,-0.0454046315668296,relative_legacy,Sergio,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,117580,-105.88936890535685,spot_baseline,MaciekK,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,117580,5.659177818548481,peer,MaciekK,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,117580,0.0705433778962128,relative_legacy,MaciekK,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,117580,-9.65444036120875,baseline,MaciekK,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,117580,64.26125662697929,spot_peer,MaciekK,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,119215,-14.95556400844302,spot_peer,rappatoni,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,119215,-0.0066639302288936,relative_legacy,rappatoni,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,119215,-205.8893689053569,spot_baseline,rappatoni,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,119215,-6.078564213376139,baseline,rappatoni,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,119215,-0.4710379138865254,peer,rappatoni,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,120160,-90.25801521698328,baseline,OpenSystem,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,120160,-10.9125779083059,peer,OpenSystem,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,120160,-0.1246457097489485,relative_legacy,OpenSystem,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,120160,-35.792313356323575,spot_peer,OpenSystem,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,120160,-232.1928094887363,spot_baseline,OpenSystem,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,131306,0.1474222901782788,relative_legacy,draaglom,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,131306,12.158768109331236,peer,draaglom,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,131306,-168.9659879387849,spot_baseline,draaglom,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,131306,-84.79093337071177,baseline,draaglom,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,131306,14.29396446437992,spot_peer,draaglom,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,139161,-8.449740343343093,peer,Zaldath,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,139161,-35.792313356323575,spot_peer,Zaldath,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,139161,-232.1928094887363,spot_baseline,Zaldath,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,139161,-0.1298004381783517,relative_legacy,Zaldath,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30327,"Will the lowest temperature recorded in Anchorage, Alaska during the entire month of December 2024 be lower than the lowest temperature recorded in Chicago, IL for the month?",2024-11-27 15:03:51.294831+00,139161,-177.46122609950064,baseline,Zaldath,no,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30547 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,101465,0.2022910024400155,relative_legacy,Jgalt,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,101465,19.236898640789267,baseline,Jgalt,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,101465,14.936489959559156,spot_peer,Jgalt,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,101465,16.349873228287958,spot_baseline,Jgalt,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,101465,16.285064950006703,peer,Jgalt,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,103777,26.303440583379377,spot_baseline,datscilly,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,103777,22.698188001841164,spot_peer,datscilly,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,103777,19.37161640949241,baseline,datscilly,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,103777,14.706365019837143,peer,datscilly,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,103777,0.1756649071492983,relative_legacy,datscilly,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,115725,-0.1538738706160536,relative_legacy,Sergio,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,115725,-15.404126799268372,baseline,Sergio,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,115725,-18.442457113742744,spot_baseline,Sergio,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,115725,-12.82622210063002,peer,Sergio,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,115725,-12.194241432340766,spot_peer,Sergio,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,117580,-0.0198557442098194,relative_legacy,MaciekK,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,117580,-32.19280948873623,spot_baseline,MaciekK,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,117580,-1.4305046145738505,peer,MaciekK,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,117580,-1.9666288273738977,baseline,MaciekK,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,117580,-22.916636660327303,spot_peer,MaciekK,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,119215,-14.780562232619378,spot_peer,rappatoni,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,119215,-0.0114473569320102,relative_legacy,rappatoni,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,119215,-1.1257900995929782,baseline,rappatoni,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,119215,-21.75914350726268,spot_baseline,rappatoni,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,119215,-0.769730383296691,peer,rappatoni,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,120160,-22.916636660327303,spot_peer,OpenSystem,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,120160,-23.387312697784,peer,OpenSystem,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,120160,-0.2775614229618105,relative_legacy,OpenSystem,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,120160,-28.563401276638817,baseline,OpenSystem,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,120160,-32.19280948873623,spot_baseline,OpenSystem,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,126626,0.9703653599690284,peer,skmmcj,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,126626,5.658352836636751,spot_baseline,skmmcj,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,126626,6.599343092265428,spot_peer,skmmcj,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,126626,0.0191380242363974,relative_legacy,skmmcj,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,126626,0.3423133975821679,baseline,skmmcj,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,131306,9.9076401555698,peer,draaglom,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,131306,0.1183631521458878,relative_legacy,draaglom,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,131306,26.387043069427644,spot_peer,draaglom,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,131306,31.034012061215048,spot_baseline,draaglom,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,131306,14.076917220021963,baseline,draaglom,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,139161,2.1870128625212737,spot_peer,Zaldath,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,139161,-5.215089893077463,baseline,Zaldath,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,139161,-0.0311909973249873,relative_legacy,Zaldath,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,139161,0.0,spot_baseline,Zaldath,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30328,"Will SpaceX fail to make any new posts on its Updates page before January 1, 2025? ",2024-11-27 15:03:51.360838+00,139161,-3.4556656890981583,peer,Zaldath,yes,2024-11-29 15:30:00+00,2024-11-29 15:30:00+00,1.0,30548 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,101465,0.0080173131972003,relative_legacy,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,101465,-35.95855683550081,baseline,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,101465,10.966427364413091,spot_peer,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,101465,-132.19280948873626,spot_baseline,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,101465,-5.258908550844942,peer,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,103777,-132.19280948873626,spot_baseline,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,103777,10.966427364413091,spot_peer,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,103777,-13.23920326065023,baseline,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,103777,-0.900285716321455,peer,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,103777,0.0187954363730976,relative_legacy,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,115725,0.0156678393265276,relative_legacy,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,115725,-26.43003613355571,baseline,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,115725,-194.3416471633633,spot_baseline,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,115725,-2.1795883462830217,peer,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,115725,-37.49665069598797,spot_peer,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,117580,-0.0028098715401783,relative_legacy,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,117580,-205.8893689053569,spot_baseline,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,117580,-1.119037488898851,peer,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,117580,-4.952659254833846,baseline,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,117580,-46.50145530926082,spot_peer,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,119215,-41.90898092573213,spot_peer,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,119215,-0.0030523484577098,relative_legacy,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,119215,-6.015520630887261,baseline,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,119215,-200.0,spot_baseline,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,119215,-1.2766267164567389,peer,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,120160,73.92320350714817,spot_peer,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,120160,4.646378333487289,peer,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,120160,0.1140968912039989,relative_legacy,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,120160,-22.49125646703941,baseline,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,120160,-51.45731728297583,spot_baseline,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,126626,7.844550364814613,peer,skmmcj,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,126626,-35.845397091247634,spot_baseline,skmmcj,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,126626,86.09723177917438,spot_peer,skmmcj,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,126626,0.166438552556857,relative_legacy,skmmcj,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,126626,-20.643567652268715,baseline,skmmcj,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,131306,-2.7245292864104345,peer,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,131306,-0.0205940838757044,relative_legacy,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,131306,-67.01263044858075,spot_peer,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,131306,-232.1928094887363,spot_baseline,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,131306,-8.621393028560433,baseline,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,139161,10.966427364413091,spot_peer,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,139161,-9.520954013179995,baseline,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,139161,0.0537906330044344,relative_legacy,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,139161,-132.19280948873626,spot_baseline,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30405,"Will any more of Trump's announced Cabinet picks drop out before January 1, 2025?",2024-12-02 14:10:18.504679+00,139161,0.9680474069135352,peer,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30635 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,101465,81.55754288625727,spot_baseline,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,101465,35.53769857000656,baseline,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,101465,-4.697510725928699,peer,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,101465,-0.0499351852401892,relative_legacy,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,101465,-7.316711090392906,spot_peer,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,103777,0.5305812265994914,peer,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,103777,3.8117647981986815,spot_peer,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,103777,95.60566524124027,spot_baseline,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,103777,0.0063477333941599,relative_legacy,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,103777,12.577110553291668,baseline,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,115725,-0.2734091732645822,peer,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,115725,-3.4855462859764925,spot_peer,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,115725,6.337963034407425,baseline,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,115725,86.39384504239716,spot_baseline,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,115725,-0.0004101757915261,relative_legacy,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,117580,87.97057662822883,spot_baseline,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,117580,-0.0200995780463815,peer,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,117580,-4.865219924860155e-05,relative_legacy,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,117580,0.8510439251153459,baseline,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,117580,-2.2365096537261744,spot_peer,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,119215,0.2213423715267982,spot_peer,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,119215,0.0,relative_legacy,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,119215,91.07326619029126,spot_baseline,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,119215,0.1444195912964047,baseline,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,119215,0.00039641999013,peer,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,120160,33.57702060705905,baseline,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,120160,2.717493489044237,peer,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,120160,0.0226662571412573,relative_legacy,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,120160,6.144207270336641,spot_peer,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,120160,98.5500430304885,spot_baseline,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,131306,0.0002246074388824,relative_legacy,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,131306,0.0092134030131653,peer,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,131306,92.5999418556223,spot_baseline,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,131306,0.5465938710709262,baseline,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,131306,1.430726295016736,spot_peer,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,139161,1.7333349385926358,peer,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,139161,1.430726295016736,spot_peer,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,139161,92.5999418556223,spot_baseline,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,139161,0.0094735443280863,relative_legacy,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30407,Will New Zealand report >375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.545445+00,139161,85.96696840189398,baseline,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30637 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,101465,21.04275999895203,baseline,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,101465,48.54268271702416,spot_baseline,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,101465,-14.762755212635014,spot_peer,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,101465,-0.1065936528055498,relative_legacy,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,101465,-8.909785775913225,peer,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,103777,8.763193839267707,spot_peer,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,103777,0.6368124109146471,peer,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,103777,10.311749432530371,baseline,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,103777,0.0013487972985814,relative_legacy,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,103777,78.24085649273731,spot_baseline,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,115725,5.741879692291509,baseline,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,115725,8.763193839267707,spot_peer,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,115725,78.24085649273731,spot_baseline,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,115725,0.0013487972985814,relative_legacy,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,115725,0.2811145193330648,peer,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,117580,-18.07561656957815,spot_peer,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,117580,-0.1844319757419706,peer,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,117580,0.3969705019288175,baseline,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,117580,44.36066514756145,spot_baseline,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,117580,-0.0016830410471693,relative_legacy,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,119215,-14.762755212635014,spot_peer,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,119215,0.0592936677278636,baseline,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,119215,-0.0183185673942718,peer,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,119215,48.54268271702416,spot_baseline,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,119215,-2.8906253499622356e-05,relative_legacy,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,120160,5.371853935230416,peer,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,120160,29.44975575920083,baseline,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,120160,0.0354935390601583,relative_legacy,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,120160,15.221732155078254,spot_peer,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,120160,86.39384504239716,spot_baseline,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,131306,0.0003226634504855,relative_legacy,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,131306,0.0295567681402736,peer,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,131306,76.55347463629771,spot_baseline,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,131306,0.4026844369739767,baseline,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,131306,7.426503580617278,spot_peer,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,139161,2.793198685431057,peer,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,139161,7.426503580617278,spot_peer,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,139161,76.55347463629771,spot_baseline,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,139161,0.0062222098328454,relative_legacy,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30408,Will New Zealand report greater than or equal to 275 and less than or equal to 375 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.565246+00,139161,60.171513231809854,baseline,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30638 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,101465,26.303440583379377,spot_baseline,Jgalt,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,101465,7.20846552918794,baseline,Jgalt,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,101465,-16.54015884870327,peer,Jgalt,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,101465,-0.1917052794023784,relative_legacy,Jgalt,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,101465,-23.133209705076844,spot_peer,Jgalt,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,103777,1.416081632852996,peer,datscilly,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,103777,13.952052646294252,spot_peer,datscilly,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,103777,73.11832415721999,spot_baseline,datscilly,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,103777,0.00910214612849,relative_legacy,datscilly,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,103777,9.69721342627667,baseline,datscilly,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,115725,0.007212260697798,peer,Sergio,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,115725,5.3766028242469375,spot_peer,Sergio,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,115725,4.578012787499548,baseline,Sergio,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,115725,62.29303509201767,spot_baseline,Sergio,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,115725,0.001146471518051,relative_legacy,Sergio,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,117580,26.303440583379377,spot_baseline,MaciekK,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,117580,-0.204156962470211,peer,MaciekK,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,117580,-0.0015629538129227,relative_legacy,MaciekK,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,117580,0.2119383956514542,baseline,MaciekK,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,117580,-23.133209705076844,spot_peer,MaciekK,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,119215,-15.75737871792585,spot_peer,rappatoni,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,119215,0.0,relative_legacy,rappatoni,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,119215,35.61438102252753,spot_baseline,rappatoni,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,119215,0.0395359701473597,baseline,rappatoni,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,119215,-0.0174924633450317,peer,rappatoni,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,120160,28.87928560801378,baseline,OpenSystem,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,120160,9.2400438448078,peer,OpenSystem,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,120160,0.0628682527654714,relative_legacy,OpenSystem,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,120160,23.20565979299908,spot_peer,OpenSystem,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,120160,84.79969065549501,spot_baseline,OpenSystem,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,131306,0.000589744466111,relative_legacy,draaglom,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,131306,0.0424478209862235,peer,draaglom,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,131306,67.80719051126377,spot_baseline,draaglom,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,131306,0.3511456868801023,baseline,draaglom,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,131306,9.744741432269548,spot_peer,draaglom,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,139161,6.056022715173681,peer,Zaldath,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,139161,9.744741432269548,spot_peer,Zaldath,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,139161,67.80719051126377,spot_baseline,Zaldath,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,139161,0.0210379114565528,relative_legacy,Zaldath,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30409,Will New Zealand report <275 whooping cough cases for weeks 51 and 52?,2024-12-02 14:10:18.585443+00,139161,51.32177231495485,baseline,Zaldath,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30639 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,101465,-0.0173865919962518,relative_legacy,Jgalt,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,101465,23.988527708041616,baseline,Jgalt,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,101465,4.360858672944917,spot_peer,Jgalt,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,101465,50.58909297299573,spot_baseline,Jgalt,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,101465,3.835622075243693,peer,Jgalt,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,103777,64.15460290875237,spot_baseline,datscilly,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,103777,14.939115508376014,spot_peer,datscilly,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,103777,40.11405444033578,baseline,datscilly,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,103777,13.243196835226058,peer,datscilly,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,103777,0.0502241715085756,relative_legacy,datscilly,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,115725,-0.7403345232315295,relative_legacy,Sergio,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,115725,-30.54101187105745,baseline,Sergio,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,115725,-32.19280948873623,spot_baseline,Sergio,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,115725,-61.610791690971645,peer,Sergio,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,115725,-60.19168890638522,spot_peer,Sergio,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,117580,0.0006076377616552,relative_legacy,MaciekK,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,117580,67.80719051126377,spot_baseline,MaciekK,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,117580,0.1160814753223467,peer,MaciekK,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,117580,0.4425139408384636,baseline,MaciekK,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,117580,17.78736890660862,spot_peer,MaciekK,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,119215,10.52678527863185,spot_peer,rappatoni,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,119215,0.0001907459371641,relative_legacy,rappatoni,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,119215,0.6598832060167407,baseline,rappatoni,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,119215,58.496250072115615,spot_baseline,rappatoni,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,119215,0.1273394697442889,peer,rappatoni,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,120160,-14.576864244216743,spot_peer,OpenSystem,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,120160,-3.925700120653942,peer,OpenSystem,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,120160,-0.0829621849159463,relative_legacy,OpenSystem,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,120160,8.909564240134308,baseline,OpenSystem,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,120160,26.303440583379377,spot_baseline,OpenSystem,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,126626,10.727239935066253,peer,skmmcj,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,126626,64.15460290875237,spot_baseline,skmmcj,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,126626,14.939115508376014,spot_peer,skmmcj,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,126626,0.0452481764748581,relative_legacy,skmmcj,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,126626,35.49097771182586,baseline,skmmcj,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,131306,-0.03008037286255,peer,draaglom,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,131306,-0.0016545909180725,relative_legacy,draaglom,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,131306,-5.572059630943895,spot_peer,draaglom,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,131306,37.85116232537298,spot_baseline,draaglom,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,131306,0.4160285071129913,baseline,draaglom,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,139161,17.78736890660862,spot_peer,Zaldath,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,139161,64.71039786411289,baseline,Zaldath,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,139161,0.2063813453110839,relative_legacy,Zaldath,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,139161,67.80719051126377,spot_baseline,Zaldath,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30410,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than -4?",2024-12-02 14:10:18.898113+00,139161,37.51709239388555,peer,Zaldath,yes,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30640 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,101465,-0.0106316563922445,relative_legacy,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,101465,30.930879426518423,baseline,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,101465,2.241835644599006,spot_peer,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,101465,64.15460290875237,spot_baseline,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,101465,2.863726796904515,peer,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,103777,78.24085649273731,spot_baseline,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,103777,13.226163470539545,spot_peer,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,103777,48.99497817958272,baseline,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,103777,11.603926278322128,peer,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,103777,0.0677701750294978,relative_legacy,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,115725,-0.4473545496787328,relative_legacy,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,115725,12.99288938733607,baseline,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,115725,13.750352374993504,spot_baseline,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,115725,-37.568754058139504,peer,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,115725,-37.06292401932707,spot_peer,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,117580,0.0001093282120856,relative_legacy,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,117580,73.11832415721999,spot_baseline,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,117580,0.0577146660542543,peer,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,117580,0.4571224671738518,baseline,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,117580,9.231661019137205,spot_peer,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,119215,18.34068055417477,spot_peer,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,119215,0.0016145597925402,relative_legacy,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,119215,0.9112691799517254,baseline,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,119215,84.79969065549501,spot_baseline,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,119215,0.2053820488957016,peer,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,120160,-27.274144107993745,spot_peer,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,120160,-8.123132171024379,peer,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,120160,-0.1286180776147587,relative_legacy,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,120160,8.895924840831507,baseline,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,120160,26.303440583379377,spot_baseline,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,126626,6.341418526660188,peer,skmmcj,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,126626,71.36958148433591,spot_baseline,skmmcj,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,126626,7.868007959248417,spot_peer,skmmcj,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,126626,0.0237973453982123,relative_legacy,skmmcj,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,126626,39.276058118058025,baseline,skmmcj,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,131306,0.0159394839139399,peer,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,131306,-0.0005311035495904,relative_legacy,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,131306,1.5183604824413368,spot_peer,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,131306,63.22682154995129,spot_baseline,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,131306,0.5454340095627597,baseline,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,139161,11.910358997180529,spot_peer,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,139161,73.12067328343082,baseline,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,139161,0.1467775753508499,relative_legacy,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,139161,76.55347463629771,spot_baseline,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30411,"Will be Donald Trump's net favorability rating on December 27, 2024 be greater than or equal to -6 and less than or equal to -4?",2024-12-02 14:10:18.918961+00,139161,24.60377842841312,peer,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30641 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,101465,0.0056045204697018,relative_legacy,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,101465,44.724390174943,baseline,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,101465,3.1243118968401933,spot_peer,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,101465,89.53026213333065,spot_baseline,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,101465,1.5258147158298925,peer,Jgalt,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,103777,87.97057662822883,spot_baseline,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,103777,1.908083835115932,spot_peer,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,103777,55.23182568812999,baseline,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,103777,1.0342378975848852,peer,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,103777,-0.0050714925550374,relative_legacy,datscilly,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,115725,-0.1030353292476445,relative_legacy,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,115725,72.39717806610759,baseline,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,115725,76.55347463629771,spot_baseline,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,115725,-8.752739513367016,peer,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,115725,-6.994864727740499,spot_peer,Sergio,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,117580,0.0006624113281131,relative_legacy,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,117580,95.60566524124027,spot_baseline,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,117580,0.048193535043107,peer,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,117580,0.5860672277643285,baseline,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,117580,7.861853998729457,spot_peer,MaciekK,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,119215,-0.5645431707462768,spot_peer,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,119215,0.0,relative_legacy,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,119215,0.933017357548402,baseline,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,119215,84.79969065549501,spot_baseline,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,119215,-0.0023877041211861,peer,rappatoni,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,120160,-13.81513468208941,spot_peer,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,120160,-4.7666046626985406,peer,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,120160,-0.0678774023098378,relative_legacy,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,120160,22.94372828042054,baseline,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,120160,67.80719051126377,spot_baseline,OpenSystem,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,126626,3.826632578864982,peer,skmmcj,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,126626,94.11063109464314,spot_baseline,skmmcj,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,126626,6.696040457230464,spot_peer,skmmcj,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,126626,0.0294989015457719,relative_legacy,skmmcj,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,126626,52.98717827038504,baseline,skmmcj,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,131306,-0.0295170487693669,peer,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,131306,-0.0003455378619698,relative_legacy,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,131306,-3.7337668294996207,spot_peer,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,131306,80.73549220576041,spot_baseline,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,131306,0.6864125781968916,baseline,draaglom,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,139161,5.518019222159728,spot_peer,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,139161,88.24655086152144,baseline,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,139161,0.048905244286715,relative_legacy,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,139161,92.5999418556223,spot_baseline,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30412,"Will be Donald Trump's net favorability rating on December 27, 2024 be less than -6?",2024-12-02 14:10:18.939302+00,139161,7.116370201633252,peer,Zaldath,no,2024-12-04 15:30:00+00,2024-12-04 15:30:00+00,1.0,30642 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,101465,-0.3155103831266868,relative_legacy,Jgalt,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,101465,-65.35414756410687,baseline,Jgalt,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,101465,-7.182324345072727,spot_peer,Jgalt,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,101465,-68.96598793878492,spot_baseline,Jgalt,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,101465,-31.617317358813157,peer,Jgalt,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,103777,-59.94620704162715,spot_baseline,datscilly,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,103777,-0.1487841846726852,spot_peer,datscilly,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,103777,-28.668483971273048,baseline,datscilly,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,103777,-5.433275750135478,peer,datscilly,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,103777,-0.0645474922083399,relative_legacy,datscilly,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,115725,0.0244390121708697,relative_legacy,Sergio,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,115725,-12.366699619284333,baseline,Sergio,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,115725,-59.94620704162715,spot_baseline,Sergio,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,115725,1.316484015954804,peer,Sergio,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,115725,-0.1487841846726852,spot_peer,Sergio,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,117580,-0.0316894514238224,relative_legacy,MaciekK,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,117580,-100.0,spot_baseline,MaciekK,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,117580,-3.4972747406284443,peer,MaciekK,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,117580,-9.38679447632145,baseline,MaciekK,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,117580,-31.382354551979105,spot_peer,MaciekK,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,119215,21.493053738166136,spot_peer,rappatoni,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,119215,0.0049320824407867,relative_legacy,rappatoni,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,119215,-0.4540627366077552,baseline,rappatoni,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,119215,-32.19280948873623,spot_baseline,rappatoni,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,119215,0.2775476022819275,peer,rappatoni,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,120160,6.470772067907336,spot_peer,OpenSystem,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,120160,0.9636898944419644,peer,OpenSystem,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,120160,-0.0046131676871235,relative_legacy,OpenSystem,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,120160,-26.95926699226866,baseline,OpenSystem,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,120160,-51.45731728297583,spot_baseline,OpenSystem,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,126626,14.11136300909398,peer,skmmcj,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,126626,8.406426478847456,spot_baseline,skmmcj,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,126626,53.15195542496201,spot_peer,skmmcj,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,126626,0.1786234630091648,relative_legacy,skmmcj,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,126626,2.7075556178913454,baseline,skmmcj,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,131306,-0.5313801885756191,peer,draaglom,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,131306,-0.0039733114879793,relative_legacy,draaglom,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,131306,-31.382354551979105,spot_peer,draaglom,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,131306,-100.0,spot_baseline,draaglom,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,131306,-1.9969509295744483,baseline,draaglom,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,139161,-10.871179412659204,spot_peer,Zaldath,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,139161,-15.982850067678338,baseline,Zaldath,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,139161,0.1700346971176132,relative_legacy,Zaldath,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,139161,-73.69655941662059,spot_baseline,Zaldath,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30450,"Will former First Lady of Pakistan Bushra Bibi be arrested before January 1, 2025?",2024-12-03 14:34:47.604106+00,139161,24.41016351638002,peer,Zaldath,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30684 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,101465,-0.0932429832408318,relative_legacy,Jgalt,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,101465,-24.79167786754697,baseline,Jgalt,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,101465,24.931696471472883,spot_peer,Jgalt,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,101465,26.303440583379377,spot_baseline,Jgalt,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,101465,-14.98394918482762,peer,Jgalt,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,103777,26.303440583379377,spot_baseline,datscilly,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,103777,24.931696471472883,spot_peer,datscilly,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,103777,14.819145551348273,baseline,datscilly,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,103777,17.381951072019543,peer,datscilly,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,103777,0.2645712942954503,relative_legacy,datscilly,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,115725,0.1163798387819676,relative_legacy,Sergio,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,115725,-0.0093231655916678,baseline,Sergio,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,115725,0.0,spot_baseline,Sergio,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,115725,8.958186657502749,peer,Sergio,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,115725,4.420521332152982,spot_peer,Sergio,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,117580,-0.0013769927438612,relative_legacy,MaciekK,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,117580,-32.19280948873623,spot_baseline,MaciekK,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,117580,-2.104355458507654,peer,MaciekK,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,117580,-3.59007506959194,baseline,MaciekK,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,117580,-20.683128190695605,spot_peer,MaciekK,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,119215,-45.78677771354422,spot_peer,rappatoni,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,119215,-0.1578116945995443,relative_legacy,rappatoni,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,119215,-28.3852334428136,baseline,rappatoni,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,119215,-64.38561897747249,spot_baseline,rappatoni,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,119215,-19.766596613982987,peer,rappatoni,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,120160,-20.683128190695605,spot_peer,OpenSystem,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,120160,-23.286726521382803,peer,OpenSystem,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,120160,-0.2067517091560407,relative_legacy,OpenSystem,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,120160,-32.51924389700724,baseline,OpenSystem,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,120160,-32.19280948873623,spot_baseline,OpenSystem,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,126626,6.522137856230407,peer,skmmcj,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,126626,31.034012061215048,spot_baseline,skmmcj,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,126626,28.620551539059345,spot_peer,skmmcj,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,126626,0.0768282304659016,relative_legacy,skmmcj,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,126626,6.416286475424881,baseline,skmmcj,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,131306,-0.0936718081256563,peer,draaglom,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,131306,0.0,relative_legacy,draaglom,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,131306,-20.683128190695605,spot_peer,draaglom,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,131306,-32.19280948873623,spot_baseline,draaglom,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,131306,-0.1495086386468399,baseline,draaglom,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,139161,24.931696471472883,spot_peer,Zaldath,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,139161,15.340154993588676,baseline,Zaldath,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,139161,0.2911757315825284,relative_legacy,Zaldath,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,139161,26.303440583379377,spot_baseline,Zaldath,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30451,"Will Daniel Penny be convicted in connection with the death of Jordan Neely before January 1, 2025?",2024-12-03 14:34:47.650742+00,139161,27.373024001074025,peer,Zaldath,no,2024-12-05 15:30:00+00,2024-12-05 15:30:00+00,1.0,30685 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,101465,58.496250072115615,spot_baseline,Jgalt,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,101465,-0.0588691456210406,relative_legacy,Jgalt,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,101465,-9.819109574879668,spot_peer,Jgalt,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,101465,25.28695630142439,baseline,Jgalt,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,101465,-4.634450034978946,peer,Jgalt,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,103777,0.0440607081338272,relative_legacy,datscilly,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,103777,47.63047350242813,baseline,datscilly,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,103777,78.24085649273731,spot_baseline,datscilly,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,103777,3.927495813014722,peer,datscilly,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,103777,5.577548480805018,spot_peer,datscilly,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,115725,-0.0132090400364677,relative_legacy,Sergio,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,115725,-6.8584123891751565,spot_peer,Sergio,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,115725,3.1492178094187007,peer,Sergio,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,115725,51.34829368772336,baseline,Sergio,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,115725,62.29303509201767,spot_baseline,Sergio,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,117580,0.0730006193974916,relative_legacy,MaciekK,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,117580,49.922630430684215,baseline,MaciekK,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,117580,83.18772411916731,spot_baseline,MaciekK,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,117580,9.435069247151144,spot_peer,MaciekK,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,117580,6.107271532167986,peer,MaciekK,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,119215,4.261744007446009,spot_peer,rappatoni,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,119215,29.28739573145338,baseline,rappatoni,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,119215,1.7033023394668478,peer,rappatoni,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,119215,0.0205805440699057,relative_legacy,rappatoni,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,119215,76.55347463629771,spot_baseline,rappatoni,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,120160,39.943561375867695,baseline,OpenSystem,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,120160,71.36958148433588,spot_baseline,OpenSystem,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,120160,0.0307866390960178,peer,OpenSystem,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,120160,0.2193929695138918,spot_peer,OpenSystem,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,120160,0.0040299463196648,relative_legacy,OpenSystem,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,126626,2.42243441901318,peer,skmmcj,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,126626,49.14363732066532,baseline,skmmcj,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,126626,0.0028880955901471,relative_legacy,skmmcj,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,126626,69.59938131099001,spot_baseline,skmmcj,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,126626,-1.1609924470652235,spot_peer,skmmcj,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,131306,-0.0424885373035331,peer,draaglom,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,131306,2.191449114592496,baseline,draaglom,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,131306,0.0,relative_legacy,draaglom,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,131306,0.9032856531068822,spot_peer,draaglom,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,131306,72.2466024471091,spot_baseline,draaglom,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,139161,-2.5585259469029045,spot_peer,Zaldath,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,139161,-0.1407295549403913,relative_legacy,Zaldath,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,139161,-12.663569979894978,peer,Zaldath,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,139161,67.80719051126377,spot_baseline,Zaldath,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30508,"Will Ghana declare a winner in its presidential election before January 1, 2025?",2024-12-04 14:28:10.74262+00,139161,39.34065995704484,baseline,Zaldath,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30747 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,101465,0.0015564503705602,relative_legacy,Jgalt,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,101465,49.18888274678229,baseline,Jgalt,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,101465,22.994513767813714,spot_peer,Jgalt,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,101465,48.54268271702416,spot_baseline,Jgalt,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,101465,32.020651540951455,peer,Jgalt,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,103777,58.496250072115615,spot_baseline,datscilly,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,103777,30.756211810095746,spot_peer,datscilly,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,103777,36.485114122138846,baseline,datscilly,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,103777,21.83406528276603,peer,datscilly,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,103777,0.0552083325145405,relative_legacy,datscilly,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,115725,-0.0279574078807462,relative_legacy,Sergio,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,115725,21.63995661518467,baseline,Sergio,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,115725,42.22330006830478,spot_baseline,Sergio,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,115725,11.624670176615336,peer,Sergio,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,115725,18.06671871874452,spot_peer,Sergio,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,117580,0.0088959861148296,relative_legacy,MaciekK,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,117580,52.60688116675877,spot_baseline,MaciekK,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,117580,2.8248659392967044,peer,MaciekK,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,117580,5.773315756925594,baseline,MaciekK,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,117580,26.16373742656705,spot_peer,MaciekK,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,119215,-99.79865358335144,spot_peer,rappatoni,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,119215,-1.6368816144415963,relative_legacy,rappatoni,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,119215,-119.73938612655712,baseline,rappatoni,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,119215,-108.92673380970876,spot_baseline,rappatoni,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,119215,-109.5905950956677,peer,rappatoni,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,120160,-26.711670863578192,spot_peer,OpenSystem,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,120160,-12.88884647984636,peer,OpenSystem,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,120160,-0.3525574836351202,relative_legacy,OpenSystem,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,120160,-8.763849659227176,baseline,OpenSystem,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,120160,-15.200309344504996,spot_baseline,OpenSystem,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,126626,28.9567631047502,peer,skmmcj,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,126626,60.40713236688608,spot_baseline,skmmcj,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,126626,32.24629981947309,spot_peer,skmmcj,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,126626,0.102393848633747,relative_legacy,skmmcj,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,126626,45.23724269092182,baseline,skmmcj,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,131306,-13.853039221919923,peer,draaglom,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,131306,-0.3436202781462854,relative_legacy,draaglom,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,131306,-26.711670863578192,spot_peer,draaglom,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,131306,-15.200309344504996,spot_baseline,draaglom,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,131306,-11.052361560626393,baseline,draaglom,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,139161,22.994513767813714,spot_peer,Zaldath,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,139161,55.55568690076301,baseline,Zaldath,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,139161,0.0759106999486408,relative_legacy,Zaldath,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,139161,48.54268271702416,spot_baseline,Zaldath,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30509,"Will Yoon Suk Yeol be President of South Korea on December 31, 2024?",2024-12-04 14:28:10.761061+00,139161,39.071464753054265,peer,Zaldath,yes,2024-12-06 15:30:00+00,2024-12-06 15:30:00+00,1.0,30748 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,101465,-0.0522985862866429,relative_legacy,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,101465,3.475512917859902,baseline,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,101465,16.349873228287958,spot_baseline,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,101465,-3.761895956078832,peer,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,101465,-4.029919124232686,spot_peer,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,103777,0.0,relative_legacy,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,103777,26.303440583379377,spot_baseline,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,103777,0.2555834644583185,peer,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,103777,1.4914803949064173,baseline,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,103777,3.731778918049336,spot_peer,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,115725,11.902410314227462,spot_baseline,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,115725,-0.1573852772332328,relative_legacy,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,115725,-7.498008801199379,spot_peer,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,115725,10.771974809246156,baseline,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,115725,-16.500969379644726,peer,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,117580,26.303440583379377,spot_baseline,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,117580,3.731778918049336,spot_peer,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,117580,0.1392629122925994,peer,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,117580,0.0,relative_legacy,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,117580,0.911567048201419,baseline,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,119215,-28.63245423277601,spot_peer,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,119215,-1.2796073046345404,baseline,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,119215,-2.397282761997725,peer,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,119215,-0.0346467365843837,relative_legacy,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,119215,-15.200309344504996,spot_baseline,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,120160,13.74815417298286,baseline,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,120160,31.034012061215048,spot_baseline,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,120160,1.1189763308223486,peer,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,120160,7.420633985635803,spot_peer,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,120160,0.0032721831422305,relative_legacy,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,126626,4.463568672001231,peer,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,126626,13.388380220984956,baseline,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,126626,0.0434930179740943,relative_legacy,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,126626,44.36066514756148,spot_baseline,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,126626,17.81263250037503,spot_peer,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,131306,0.0668671236700212,peer,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,131306,0.4373544545835597,baseline,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,131306,8.739447477241123e-05,relative_legacy,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,131306,3.731778918049336,spot_peer,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,131306,26.303440583379377,spot_baseline,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,139161,3.731778918049336,spot_peer,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,139161,0.1294958604519757,relative_legacy,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,139161,16.615889594476762,peer,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,139161,26.303440583379377,spot_baseline,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30547,"Will New Delhi experience a ""Hazardous"" air quality index for at least one third of the last two weeks of December 2024?",2024-12-05 14:29:40.207269+00,139161,38.59864348390395,baseline,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30793 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,101465,0.1191626388023683,relative_legacy,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,101465,16.234435332524825,baseline,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,101465,60.40713236688608,spot_baseline,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,101465,10.35674916719726,peer,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,101465,20.762735983305152,spot_peer,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,103777,-0.0061774593675782,relative_legacy,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,103777,28.688114778816157,spot_baseline,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,103777,-0.3792895103953182,peer,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,103777,1.9735275013053548,baseline,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,103777,-3.971455079409585,spot_peer,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,115725,0.0,spot_baseline,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,115725,-0.0310350371814387,relative_legacy,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,115725,-26.342176688240677,spot_peer,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,115725,0.0,baseline,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,115725,-1.5920878169717303,peer,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,117580,37.85116232537298,spot_baseline,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,117580,3.173803064352079,spot_peer,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,117580,0.2683751583162895,peer,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,117580,-0.0001505969937244,relative_legacy,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,117580,1.779582399035191,baseline,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,119215,33.353501556253505,spot_peer,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,119215,5.831919208809972,baseline,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,119215,2.842563370918891,peer,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,119215,0.0326996859049603,relative_legacy,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,119215,76.55347463629771,spot_baseline,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,120160,-8.025739461050673,baseline,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,120160,0.0,spot_baseline,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,120160,-6.125140915091864,peer,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,120160,-26.342176688240677,spot_peer,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,120160,-0.0773206796912759,relative_legacy,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,126626,-2.137199807701117,peer,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,126626,0.8198489970307737,baseline,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,126626,-0.0349832245525721,relative_legacy,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,126626,2.856915219677092,spot_baseline,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,126626,-24.114381117420457,spot_peer,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,131306,0.3124031056979353,peer,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,131306,0.7603022181800174,baseline,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,131306,0.0011723448923001,relative_legacy,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,131306,29.31115051832136,spot_peer,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,131306,71.36958148433588,spot_baseline,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,139161,-5.831001548920775,spot_peer,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,139161,-0.0493668513219882,relative_legacy,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,139161,-3.546372751970366,peer,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,139161,26.303440583379377,spot_baseline,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30548,"Will Joe Biden sign 2 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.263228+00,139161,-17.303803291843508,baseline,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30794 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,101465,0.2709581674741306,relative_legacy,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,101465,6.076572846000507,baseline,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,101465,26.303440583379377,spot_baseline,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,101465,21.592571534839887,peer,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,101465,73.68090351400839,spot_peer,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,103777,-0.0169477410315155,relative_legacy,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,103777,-105.88936890535685,spot_baseline,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,103777,-2.416879672586248,peer,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,103777,-9.652752779597696,baseline,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,103777,-29.40180382183406,spot_peer,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,115725,-100.0,spot_baseline,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,115725,0.0073590710158203,relative_legacy,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,115725,-24.809329438305355,spot_peer,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,115725,-35.82701915447359,baseline,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,115725,1.47999971213132,peer,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,117580,-51.45731728297583,spot_baseline,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,117580,13.043797181581107,spot_peer,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,117580,0.7654684340150519,peer,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,117580,0.0090352854023685,relative_legacy,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,117580,-2.381928051704071,baseline,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,119215,41.31667036318304,spot_peer,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,119215,-1.1527180671137285,baseline,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,119215,3.5456488684341783,peer,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,119215,0.0524692921274301,relative_legacy,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,119215,-15.200309344504996,spot_baseline,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,120160,-81.73514782908626,baseline,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,120160,-155.6393348524385,spot_baseline,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,120160,-27.3812009369324,peer,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,120160,-68.19635852965362,spot_peer,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,120160,-0.2958707675554436,relative_legacy,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,126626,-2.7055936228223496,peer,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,126626,-30.53288448095546,baseline,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,126626,-0.0320787455734346,relative_legacy,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,126626,-105.88936890535685,spot_baseline,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,126626,-29.40180382183406,spot_peer,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,131306,0.0906438467617163,peer,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,131306,-0.297322949228326,baseline,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,131306,0.0001082506919008,relative_legacy,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,131306,28.06607885183991,spot_peer,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,131306,-32.19280948873623,spot_baseline,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,139161,-4.298154298985454,spot_peer,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,139161,0.0212661568108412,relative_legacy,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,139161,5.029341836158808,peer,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,139161,-73.69655941662063,spot_baseline,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30549,"Will Joe Biden sign 3 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.283537+00,139161,-99.65712689069076,baseline,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30795 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,101465,0.3181546223024572,relative_legacy,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,101465,-18.30296126567732,baseline,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,101465,-83.65012677171204,spot_baseline,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,101465,26.9309724059007,peer,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,101465,103.0875709162846,spot_peer,Jgalt,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,103777,-0.0008699414491067,relative_legacy,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,103777,-232.19280948873623,spot_baseline,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,103777,-1.5285933114703372,peer,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,103777,-20.246558348946856,baseline,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,103777,-12.744613516595708,spot_peer,datscilly,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,115725,-218.44245711374276,spot_baseline,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,115725,0.0483301858043569,relative_legacy,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,115725,-2.022218288609157,spot_peer,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,115725,-78.25246711293649,baseline,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,115725,10.214338717204118,peer,Sergio,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,117580,-232.19280948873623,spot_baseline,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,117580,-12.744613516595708,spot_peer,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,117580,-0.6829359207824818,peer,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,117580,0.0,relative_legacy,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,117580,-10.69317488034438,baseline,MaciekK,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,119215,65.23444429639814,spot_peer,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,119215,-10.009695832769491,baseline,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,119215,4.863118999852472,peer,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,119215,0.0757204258800656,relative_legacy,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,119215,-132.19280948873623,spot_baseline,rappatoni,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,120160,-174.3896096608075,baseline,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,120160,-332.1928094887362,spot_baseline,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,120160,-54.71225232815587,peer,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,120160,-90.72367132958956,spot_peer,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,120160,-0.6493895716572875,relative_legacy,OpenSystem,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,126626,-1.7811639600834188,peer,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,126626,-71.61072256492042,baseline,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,126626,-0.0447985763322594,relative_legacy,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,126626,-247.39311883324123,spot_baseline,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,126626,-24.59767152810117,spot_peer,skmmcj,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,131306,0.1078159656952465,peer,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,131306,-1.0803589314839492,baseline,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,131306,0.0026182904398439,relative_legacy,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,131306,-12.744613516595708,spot_peer,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,131306,-232.19280948873623,spot_baseline,draaglom,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,139161,-12.744613516595708,spot_peer,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,139161,0.0547412028759985,relative_legacy,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,139161,16.588699431839498,peer,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,139161,-232.19280948873623,spot_baseline,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30550,"Will Joe Biden sign 4 or more executive orders after Election Day and before January 1, 2025?",2024-12-05 14:29:40.303279+00,139161,-191.21258821412573,baseline,Zaldath,yes,2024-12-07 15:30:00+00,2024-12-07 15:30:00+00,1.0,30796 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,101465,0.0020339437875935,relative_legacy,Jgalt,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,101465,38.72058219961728,baseline,Jgalt,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,101465,0.5042075549934273,spot_peer,Jgalt,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,101465,99.56654097361088,spot_baseline,Jgalt,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,101465,0.1954036409095539,peer,Jgalt,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,103777,97.08536543404836,spot_baseline,datscilly,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,103777,-1.4305897534438916,spot_peer,datscilly,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,103777,23.22749103995948,baseline,datscilly,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,103777,-0.3395393331968847,peer,datscilly,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,103777,-0.004707261935385,relative_legacy,datscilly,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,115725,0.0042465737796141,relative_legacy,Sergio,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,115725,77.03420384557633,baseline,Sergio,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,115725,99.56654097361088,spot_baseline,Sergio,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,115725,0.5066535685742924,peer,Sergio,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,115725,0.5042075549934273,spot_peer,Sergio,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,117580,0.001587036089655,relative_legacy,MaciekK,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,117580,99.71117206751734,spot_baseline,MaciekK,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,117580,0.1641217555681012,peer,MaciekK,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,117580,24.69025351146466,baseline,MaciekK,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,117580,0.6169895193263152,spot_peer,MaciekK,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,119215,0.1651816831512103,spot_peer,rappatoni,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,119215,7.815972360192472e-07,relative_legacy,rappatoni,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,119215,17.304844524909512,baseline,rappatoni,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,119215,99.13177569001992,spot_baseline,rappatoni,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,119215,0.0345082623124859,peer,rappatoni,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,120160,-0.2884479637418741,spot_peer,OpenSystem,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,120160,-0.1008690865109177,peer,OpenSystem,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,120160,-0.0014284924650355,relative_legacy,OpenSystem,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,120160,32.94418627579954,baseline,OpenSystem,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,120160,98.5500430304885,spot_baseline,OpenSystem,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,126626,-0.0157743644130778,peer,skmmcj,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,126626,98.84120257247882,spot_baseline,skmmcj,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,126626,-0.0614044961651853,spot_peer,skmmcj,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,126626,-0.0005970315614493,relative_legacy,skmmcj,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,126626,28.52478909135508,baseline,skmmcj,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,131306,0.0069729155760259,peer,draaglom,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,131306,3.535218715489538e-05,relative_legacy,draaglom,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,131306,0.2783038646283208,spot_peer,draaglom,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,131306,99.27684307689242,spot_baseline,draaglom,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,131306,2.555866835740669,baseline,draaglom,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,139161,-0.2884479637418741,spot_peer,Zaldath,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,139161,96.37956936296166,baseline,Zaldath,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,139161,-0.0041448880004438,relative_legacy,Zaldath,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30590,"Will Gannett Co. file for bankruptcy before January 1, 2025?",2024-12-06 14:29:00.138914+00,139161,-0.4514773588196025,peer,Zaldath,no,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30839 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,101465,-0.0399041659194775,relative_legacy,Jgalt,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,101465,23.141297766823943,baseline,Jgalt,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,101465,-7.773377128812328,spot_peer,Jgalt,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,101465,71.36958148433588,spot_baseline,Jgalt,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,101465,-3.207483310555441,peer,Jgalt,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,103777,84.79969065549501,spot_baseline,datscilly,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,103777,2.6992954661140427,spot_peer,datscilly,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,103777,20.57395643770364,baseline,datscilly,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,103777,0.7721927674823728,peer,datscilly,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,103777,0.0046198889503623,relative_legacy,datscilly,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,115725,-0.0052603120867364,relative_legacy,Sergio,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,115725,55.57564207364702,baseline,Sergio,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,115725,83.18772411916731,spot_baseline,Sergio,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,115725,-0.6331197512300711,peer,Sergio,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,115725,1.4422991488249346,spot_peer,Sergio,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,117580,0.0027929514405868,relative_legacy,MaciekK,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,117580,87.97057662822883,spot_baseline,MaciekK,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,117580,0.3914905127722933,peer,MaciekK,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,117580,6.875889799988419,baseline,MaciekK,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,117580,5.171922471976248,spot_peer,MaciekK,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,119215,3.3225657583707573,spot_peer,rappatoni,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,119215,0.0068874714668633,relative_legacy,rappatoni,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,119215,21.695974059801763,baseline,rappatoni,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,119215,85.59896973084807,spot_baseline,rappatoni,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,119215,1.003659891990898,peer,rappatoni,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,120160,-7.773377128812328,spot_peer,OpenSystem,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,120160,-4.474431678475501,peer,OpenSystem,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,120160,-0.0544844885772339,relative_legacy,OpenSystem,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,120160,27.786629885834643,baseline,OpenSystem,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,120160,71.36958148433588,spot_baseline,OpenSystem,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,126626,1.8391239649549056,peer,skmmcj,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,126626,86.39384504239716,spot_baseline,skmmcj,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,126626,3.942402037104848,spot_peer,skmmcj,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,126626,0.0167152162059811,relative_legacy,skmmcj,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,126626,25.62822028496228,baseline,skmmcj,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,131306,-0.0634344479727643,peer,draaglom,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,131306,-0.001272529586836,relative_legacy,draaglom,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,131306,-3.7310260908801904,spot_peer,draaglom,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,131306,76.55347463629771,spot_baseline,draaglom,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,131306,1.8097544756742887,baseline,draaglom,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,139161,2.6992954661140427,spot_peer,Zaldath,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,139161,79.27959538139105,baseline,Zaldath,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,139161,0.0385259909480631,relative_legacy,Zaldath,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,139161,84.79969065549501,spot_baseline,Zaldath,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30591,Will Tesla increase its deliveries in Q4 2024 compared with Q3 2024? ,2024-12-06 14:29:00.154965+00,139161,4.372002051033308,peer,Zaldath,yes,2024-12-10 15:30:00+00,2024-12-10 15:30:00+00,1.0,30840 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,101465,46.46682670034443,spot_baseline,Jgalt,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,101465,-0.0436228909140495,relative_legacy,Jgalt,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,101465,-7.013496904239416,spot_peer,Jgalt,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,101465,19.493817589710737,baseline,Jgalt,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,101465,-3.78915833527662,peer,Jgalt,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,103777,0.1346554115351902,relative_legacy,datscilly,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,103777,68.31284430299611,baseline,datscilly,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,103777,58.496250072115615,spot_baseline,datscilly,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,103777,11.766011418840453,peer,datscilly,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,103777,2.3669341014038463,spot_peer,datscilly,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,115725,-0.0063014911772411,relative_legacy,Sergio,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,115725,-0.6737915422370859,spot_peer,Sergio,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,115725,-1.80974199527051,peer,Sergio,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,115725,29.894355023736463,baseline,Sergio,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,115725,54.59683691052925,spot_baseline,Sergio,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,117580,0.0024707205835993,relative_legacy,MaciekK,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,117580,3.913000833057557,baseline,MaciekK,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,117580,62.29303509201767,spot_baseline,MaciekK,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,117580,5.327631287108352,spot_peer,MaciekK,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,117580,0.3451554723316288,peer,MaciekK,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,119215,-20.877168951933573,spot_peer,rappatoni,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,119215,9.054774303712753,baseline,rappatoni,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,119215,-6.599486521805769,peer,rappatoni,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,119215,-0.0843414632638402,relative_legacy,rappatoni,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,119215,28.688114778816157,spot_baseline,rappatoni,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,120160,31.976014672488503,baseline,OpenSystem,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,120160,58.496250072115615,spot_baseline,OpenSystem,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,120160,-1.7111888803458382,peer,OpenSystem,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,120160,2.3669341014038463,spot_peer,OpenSystem,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,120160,-0.0015044415619609,relative_legacy,OpenSystem,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,126626,6.696876259311734,peer,skmmcj,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,126626,43.51511478574648,baseline,skmmcj,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,126626,0.0991167692108681,relative_legacy,skmmcj,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,126626,73.11832415721999,spot_baseline,skmmcj,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,126626,13.76908970568618,spot_peer,skmmcj,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,131306,0.0249474993041397,peer,draaglom,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,131306,1.297119113810452,baseline,draaglom,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,131306,-0.0002748246336264,relative_legacy,draaglom,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,131306,2.3669341014038463,spot_peer,draaglom,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,131306,58.496250072115615,spot_baseline,draaglom,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,139161,2.3669341014038463,spot_peer,Zaldath,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,139161,-0.0205715934048732,relative_legacy,Zaldath,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,139161,-4.923414917089251,peer,Zaldath,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,139161,58.496250072115615,spot_baseline,Zaldath,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30621,"Will the year-over-year increase in prices of homes in Virginia Beach, VA in November 2024 be greater than or equal to 4.0%, according to Zillow?",2024-12-09 14:18:10.209723+00,139161,56.606544517457536,baseline,Zaldath,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30883 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,101465,-0.0092646056208697,relative_legacy,Jgalt,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,101465,46.172009961631765,baseline,Jgalt,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,101465,-2.649463842317562,spot_peer,Jgalt,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,101465,58.496250072115615,spot_baseline,Jgalt,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,101465,0.3064182379879557,peer,Jgalt,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,103777,67.80719051126377,spot_baseline,datscilly,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,103777,4.61111978565921,spot_peer,datscilly,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,103777,58.76418646206608,baseline,datscilly,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,103777,-1.8689234229220295,peer,datscilly,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,103777,-0.0250769232481728,relative_legacy,datscilly,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,115725,0.0103549791598765,relative_legacy,Sergio,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,115725,37.57854383827581,baseline,Sergio,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,115725,71.36958148433588,spot_baseline,Sergio,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,115725,2.119179009685338,peer,Sergio,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,115725,7.389038702075997,spot_peer,Sergio,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,117580,-0.0118344873616799,relative_legacy,MaciekK,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,117580,46.46682670034443,spot_baseline,MaciekK,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,117580,-0.6342513312178877,peer,MaciekK,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,117580,2.411526017715574,baseline,MaciekK,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,117580,-12.029894847960806,spot_peer,MaciekK,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,119215,-37.54189327649949,spot_peer,rappatoni,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,119215,-0.1694109929278193,relative_legacy,rappatoni,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,119215,4.289966213446406,baseline,rappatoni,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,119215,13.750352374993504,spot_baseline,rappatoni,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,119215,-12.39572498266322,peer,rappatoni,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,120160,11.431389740008123,spot_peer,OpenSystem,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,120160,3.822343975058885,peer,OpenSystem,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,120160,0.0321940881907122,relative_legacy,OpenSystem,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,120160,32.25104434567125,baseline,OpenSystem,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,120160,76.55347463629771,spot_baseline,OpenSystem,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,126626,5.622973435242963,peer,skmmcj,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,126626,78.24085649273731,spot_baseline,skmmcj,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,126626,12.747194213367123,spot_peer,skmmcj,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,126626,0.0531638822671475,relative_legacy,skmmcj,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,126626,46.16772183431228,baseline,skmmcj,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,131306,0.3318924139166739,peer,draaglom,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,131306,0.0019113417097401,relative_legacy,draaglom,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,131306,11.431389740008123,spot_peer,draaglom,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,131306,76.55347463629771,spot_baseline,draaglom,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,131306,2.3375359842089765,baseline,draaglom,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,139161,4.61111978565921,spot_peer,Zaldath,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,139161,69.59666756874697,baseline,Zaldath,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,139161,0.0077181432817003,relative_legacy,Zaldath,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,139161,67.80719051126377,spot_baseline,Zaldath,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30622,"Will the year-over-year increase in rent in Dallas, TX in November 2024 be greater than or equal to 0.0%, according to Zillow?",2024-12-09 14:18:10.225288+00,139161,2.6960926649113546,peer,Zaldath,yes,2024-12-11 15:30:00+00,2024-12-11 15:30:00+00,1.0,30884 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,101465,75.97068968193733,baseline,Jgalt,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,101465,95.0095094173686,spot_baseline,Jgalt,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,101465,0.0554132628780763,relative_legacy,Jgalt,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,101465,9.532586705829344,peer,Jgalt,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,101465,1.5481342150788646,spot_peer,Jgalt,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,103777,-6.539759600716237,spot_peer,datscilly,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,103777,28.76095811399701,baseline,datscilly,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,103777,-2.147769675675493,peer,datscilly,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,103777,84.79969065549501,spot_baseline,datscilly,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,103777,-0.0305266129711469,relative_legacy,datscilly,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,115725,0.8360713864347531,spot_peer,Sergio,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,115725,35.7932415928615,baseline,Sergio,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,115725,0.7053514874114492,peer,Sergio,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,115725,0.0014359178481172,relative_legacy,Sergio,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,115725,94.11063109464314,spot_baseline,Sergio,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,117580,-5.2964735996151146e-05,relative_legacy,MaciekK,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,117580,10.521647651800816,baseline,MaciekK,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,117580,0.1340543749352038,peer,MaciekK,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,117580,94.11063109464314,spot_baseline,MaciekK,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,117580,0.8360713864347531,spot_peer,MaciekK,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,120160,2.502536249752244,baseline,OpenSystem,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,120160,0.0622832519605078,peer,OpenSystem,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,120160,0.0003383695156965,relative_legacy,OpenSystem,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,120160,2.0203899047829315,spot_peer,OpenSystem,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,120160,95.60566524124027,spot_baseline,OpenSystem,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,126626,2.0203899047829315,spot_peer,skmmcj,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,126626,95.60566524124027,spot_baseline,skmmcj,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,126626,0.2594083868657057,peer,skmmcj,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,126626,0.0017715469720098,relative_legacy,skmmcj,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,126626,9.335800816973697,baseline,skmmcj,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,131306,-0.0012617912782925,relative_legacy,draaglom,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,131306,-0.3606485983990178,spot_peer,draaglom,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,131306,-0.0735366042780727,peer,draaglom,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,131306,92.5999418556223,spot_baseline,draaglom,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,131306,1.7826942788848434,baseline,draaglom,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,139161,-0.077216775007858,relative_legacy,Zaldath,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,139161,62.6861982132878,baseline,Zaldath,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,139161,-8.472377927048655,peer,Zaldath,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,139161,92.5999418556223,spot_baseline,Zaldath,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30644,"Before Jan 1, 2025, will Ontario Premier Doug Ford call an early provincial election scheduled for 2025?",2024-12-10 14:23:42.794887+00,139161,-0.3606485983990178,spot_peer,Zaldath,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30914 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,101465,73.18349101009713,baseline,Jgalt,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,101465,83.18772411916731,spot_baseline,Jgalt,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,101465,0.0047146346509918,relative_legacy,Jgalt,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,101465,0.8724220643176963,peer,Jgalt,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,101465,-1.953940098598666,spot_peer,Jgalt,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,103777,-3.896520255006792,spot_peer,datscilly,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,103777,37.356207157972136,baseline,datscilly,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,103777,-1.051315517235614,peer,datscilly,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,103777,80.73549220576041,spot_baseline,datscilly,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,103777,-0.0108856182003881,relative_legacy,datscilly,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,115725,-1.953940098598666,spot_peer,Sergio,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,115725,64.73764895014062,baseline,Sergio,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,115725,-6.577433894281091,peer,Sergio,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,115725,-0.0700146070911731,relative_legacy,Sergio,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,115725,83.18772411916731,spot_baseline,Sergio,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,117580,0.0009785361868648,relative_legacy,MaciekK,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,117580,8.940732761877738,baseline,MaciekK,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,117580,0.0256291045835994,peer,MaciekK,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,117580,84.79969065549501,spot_baseline,MaciekK,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,117580,-0.6769914588129161,spot_peer,MaciekK,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,120160,2.002411837615606,baseline,OpenSystem,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,120160,-0.0076041069058425,peer,OpenSystem,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,120160,0.0,relative_legacy,OpenSystem,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,120160,-0.6769914588129161,spot_peer,OpenSystem,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,120160,84.79969065549501,spot_baseline,OpenSystem,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,126626,0.5858469625110904,spot_peer,skmmcj,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,126626,86.39384504239716,spot_baseline,skmmcj,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,126626,0.1112602550524409,peer,skmmcj,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,126626,0.002023310215041,relative_legacy,skmmcj,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,126626,7.395011674104515,baseline,skmmcj,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,131306,0.0001989549887327,relative_legacy,draaglom,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,131306,3.07041686381459,spot_peer,draaglom,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,131306,0.0131200949821759,peer,draaglom,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,131306,89.53026213333065,spot_baseline,draaglom,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,131306,0.2924761475858315,baseline,draaglom,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,139161,0.0671862628792325,relative_legacy,Zaldath,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,139161,84.86965115881863,baseline,Zaldath,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,139161,6.613921999486632,peer,Zaldath,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,139161,92.5999418556223,spot_baseline,Zaldath,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30645,"Will the domestic opening weekend box office revenue of Homestead, scheduled to open December 20, 2024, exceed $7,000,000?",2024-12-10 14:23:42.811773+00,139161,5.502119543504311,spot_peer,Zaldath,no,2024-12-12 15:30:00+00,2024-12-12 15:30:00+00,1.0,30915 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,101465,0.01912941095077,relative_legacy,Jgalt,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,101465,60.71748188073672,baseline,Jgalt,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,101465,4.670277456139517,spot_peer,Jgalt,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,101465,86.71057295026547,spot_baseline,Jgalt,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,101465,14.008378986275783,peer,Jgalt,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,103777,81.55754288625727,spot_baseline,datscilly,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,103777,0.6519931634056017,spot_peer,datscilly,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,103777,-59.52868431841866,baseline,datscilly,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,103777,-94.73354636134148,peer,datscilly,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,103777,-1.1540324145988303,relative_legacy,datscilly,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,115725,-0.0568505177198163,relative_legacy,Sergio,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,115725,43.22193432067318,baseline,Sergio,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,115725,74.84612330040356,spot_baseline,Sergio,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,115725,-1.5348052739926332,peer,Sergio,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,115725,-4.581508595519847,spot_peer,Sergio,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,117580,0.0041008387984776,relative_legacy,MaciekK,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,117580,87.97057662822883,spot_baseline,MaciekK,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,117580,0.6657823359755736,peer,MaciekK,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,117580,15.53315043696685,baseline,MaciekK,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,117580,5.6528164526244,spot_peer,MaciekK,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,119215,-5.928830088275373,spot_peer,rappatoni,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,119215,-0.0668640388826747,relative_legacy,rappatoni,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,119215,50.27002907998114,baseline,rappatoni,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,119215,73.11832415721999,spot_baseline,rappatoni,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,119215,4.590717459161196,peer,rappatoni,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,120160,3.180189446762188,spot_peer,OpenSystem,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,120160,0.6455714912020998,peer,OpenSystem,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,120160,-0.0014980615066884,relative_legacy,OpenSystem,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,120160,44.00058366845157,baseline,OpenSystem,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,120160,84.79969065549501,spot_baseline,OpenSystem,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,126626,4.632096965317756,peer,skmmcj,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,126626,86.39384504239716,spot_baseline,skmmcj,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,126626,4.423296017753008,spot_peer,skmmcj,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,126626,0.0327698243105452,relative_legacy,skmmcj,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,126626,50.58449573639818,baseline,skmmcj,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,131306,-0.8805443362978722,peer,draaglom,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,131306,-0.0136643353420592,relative_legacy,draaglom,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,131306,-17.330985692557707,spot_peer,draaglom,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,131306,58.496250072115615,spot_baseline,draaglom,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,131306,4.51106757386836,baseline,draaglom,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,139161,9.262751839668212,spot_peer,Zaldath,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,139161,88.06847132175145,baseline,Zaldath,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,139161,0.2755951254572404,relative_legacy,Zaldath,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,139161,92.5999418556223,spot_baseline,Zaldath,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30729,"Will the cheapest new Tesla Model Y be listed as under $44,990 on December 30, 2024?",2024-12-11 14:45:00.749841+00,139161,72.6063487336996,peer,Zaldath,no,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30956 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,101465,0.0267560834025027,relative_legacy,Jgalt,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,101465,41.78935888556967,baseline,Jgalt,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,101465,1.5687293574896708,spot_peer,Jgalt,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,101465,48.54268271702416,spot_baseline,Jgalt,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,101465,2.457609726587075,peer,Jgalt,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,103777,37.85116232537298,spot_baseline,datscilly,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,103777,-6.768417509804016,spot_peer,datscilly,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,103777,19.378910118412293,baseline,datscilly,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,103777,-0.2606146637455425,peer,datscilly,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,103777,-0.0061270280443745,relative_legacy,datscilly,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,115725,-0.1238415350809353,relative_legacy,Sergio,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,115725,21.12757395831505,baseline,Sergio,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,115725,26.303440583379377,spot_baseline,Sergio,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,115725,-9.505114184024396,peer,Sergio,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,115725,-15.773222123076875,spot_peer,Sergio,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,117580,-0.0006043018970349,relative_legacy,MaciekK,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,117580,48.54268271702416,spot_baseline,MaciekK,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,117580,0.2022189736826301,peer,MaciekK,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,117580,2.5074819416017204,baseline,MaciekK,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,117580,1.5687293574896708,spot_peer,MaciekK,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,119215,-10.284328654015775,spot_peer,rappatoni,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,119215,-0.0501019211344276,relative_legacy,rappatoni,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,119215,23.00747785024134,baseline,rappatoni,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,119215,33.34237337251918,spot_baseline,rappatoni,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,119215,-3.285801249996986,peer,rappatoni,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,120160,4.737953016243017,spot_peer,OpenSystem,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,120160,5.856484879380339,peer,OpenSystem,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,120160,0.0695151732256297,relative_legacy,OpenSystem,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,120160,27.05823529999843,baseline,OpenSystem,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,120160,52.60688116675877,spot_baseline,OpenSystem,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,126626,-12.711975283591432,peer,skmmcj,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,126626,54.59683691052925,spot_baseline,skmmcj,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,126626,6.289701756130791,spot_peer,skmmcj,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,126626,-0.1593941462698436,relative_legacy,skmmcj,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,126626,5.294930505700268,baseline,skmmcj,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,131306,0.8426437422831354,peer,draaglom,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,131306,0.008138508013626,relative_legacy,draaglom,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,131306,9.330427399771722,spot_peer,draaglom,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,131306,58.496250072115615,spot_baseline,draaglom,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,131306,3.108876694311741,baseline,draaglom,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,139161,9.330427399771722,spot_peer,Zaldath,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,139161,57.24441489207915,baseline,Zaldath,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,139161,0.1580558599588218,relative_legacy,Zaldath,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,139161,58.496250072115615,spot_baseline,Zaldath,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30730,"Will Michael Jordan's net worth exceed that of Starbucks founder Howard Schultz on December 31, 2024? ",2024-12-11 14:45:00.766463+00,139161,16.404548059425185,peer,Zaldath,yes,2024-12-13 15:30:00+00,2024-12-13 15:30:00+00,1.0,30957 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,101465,-0.0818557128370784,relative_legacy,Jgalt,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,101465,28.897320154413176,baseline,Jgalt,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,101465,-6.295817434374452,spot_peer,Jgalt,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,101465,67.46491693320206,spot_baseline,Jgalt,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,101465,-1.826914026948556,peer,Jgalt,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,103777,76.99617284127476,spot_baseline,datscilly,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,103777,4.4268454622073365,spot_peer,datscilly,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,103777,31.48197404083716,baseline,datscilly,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,103777,4.252895481866399,peer,datscilly,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,103777,0.0657965790732317,relative_legacy,datscilly,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,115725,-0.0788450949094553,relative_legacy,Sergio,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,115725,31.587307472129684,baseline,Sergio,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,115725,56.91195062526519,spot_baseline,Sergio,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,115725,2.4141746046581707,peer,Sergio,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,115725,-18.16790453080343,spot_peer,Sergio,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,117580,0.0161124108163724,relative_legacy,MaciekK,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,117580,81.00097156135338,spot_baseline,MaciekK,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,117580,0.5661602988439758,peer,MaciekK,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,117580,4.494508141901146,baseline,MaciekK,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,117580,8.932244022295784,spot_peer,MaciekK,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,119215,-15.096914710225349,spot_peer,rappatoni,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,119215,-0.0199722855417563,relative_legacy,rappatoni,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,119215,3.713717524140368,baseline,rappatoni,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,119215,59.641719354667934,spot_baseline,rappatoni,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,119215,-0.8775505620981645,peer,rappatoni,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,120160,11.030001587844428,spot_peer,OpenSystem,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,120160,0.6352527757225938,peer,OpenSystem,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,120160,-0.0203866001336302,relative_legacy,OpenSystem,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,120160,28.45024821131451,baseline,OpenSystem,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,120160,82.8656449529522,spot_baseline,OpenSystem,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,126626,8.5028687872071,peer,skmmcj,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,126626,86.72815211408577,spot_baseline,skmmcj,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,126626,15.375322144119728,spot_peer,skmmcj,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,126626,0.1701441537634206,relative_legacy,skmmcj,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,126626,33.966379400787126,baseline,skmmcj,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,131306,0.0632309504939972,peer,draaglom,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,131306,0.0015690622058554,relative_legacy,draaglom,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,131306,10.213508953748969,spot_peer,draaglom,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,131306,82.13987372264509,spot_baseline,draaglom,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,131306,0.4697421007934788,baseline,draaglom,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,139161,-10.417285494813315,spot_peer,Zaldath,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,139161,3.9058369037297744,baseline,Zaldath,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,139161,-0.3428576313753859,relative_legacy,Zaldath,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,139161,63.80138976836752,spot_baseline,Zaldath,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30736,"How many US cases of H5N1 will the CDC report on December 31, 2024?",2024-12-12 01:18:50.824538+00,139161,-13.730118309745514,peer,Zaldath,67.0,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,30966 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,101465,-0.1509231501060156,relative_legacy,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,101465,40.15987405469572,baseline,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,101465,-0.8379302766597524,spot_peer,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,101465,41.5758666522498,spot_baseline,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,101465,-9.90622592094075,peer,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,103777,58.496250072115615,spot_baseline,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,103777,12.35642529249764,spot_peer,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,103777,51.18263525710793,baseline,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,103777,8.248924361542752,peer,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,103777,0.052741337925821,relative_legacy,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,115725,-0.0044206731588242,relative_legacy,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,115725,51.70924871666882,baseline,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,115725,56.55971758542251,spot_baseline,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,115725,3.1504082929036894,peer,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,115725,10.846335505131794,spot_peer,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,117580,0.0025570170281334,relative_legacy,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,117580,48.54268271702416,spot_baseline,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,117580,0.2103013756457824,peer,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,117580,3.5883278772596907,baseline,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,117580,4.59472725021558,spot_peer,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,119215,-37.850873753199565,spot_peer,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,119215,-0.0164104411342352,relative_legacy,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,119215,-0.2052216570671757,baseline,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,119215,-5.889368905356857,spot_baseline,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,119215,-1.3080204520130798,peer,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,120160,-3.742419617078117,spot_peer,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,120160,-10.634993281910532,peer,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,120160,-0.1640029761036721,relative_legacy,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,120160,16.29502906510339,baseline,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,120160,37.85116232537298,spot_baseline,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,126626,2.0756300115284474,peer,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,126626,52.60688116675877,spot_baseline,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,126626,7.76395090896893,spot_peer,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,126626,-0.0064481173533973,relative_legacy,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,126626,30.47740030519533,baseline,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,131306,-8.42055645710774,peer,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,131306,-0.1380387414222467,relative_legacy,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,131306,-12.747224230350962,spot_peer,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,131306,26.303440583379377,spot_baseline,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,131306,15.150050281368388,baseline,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,139161,19.617008920474397,spot_peer,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,139161,69.9320800640773,baseline,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,139161,0.1424051473621296,relative_legacy,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,139161,67.80719051126377,spot_baseline,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30753,"Will Blue Origin launch its New Glenn rocket before January 1, 2025?",2024-12-12 14:53:09.414413+00,139161,16.584532070351454,peer,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30991 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,101465,94.11063109464314,spot_baseline,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,101465,12.887031908031366,baseline,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,101465,0.1334378980007428,peer,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,101465,-0.0009525057842671,relative_legacy,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,101465,-0.1419670394684005,spot_peer,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,103777,-1.270854115873457,peer,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,103777,-5.005922973045067,spot_peer,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,103777,87.97057662822883,spot_baseline,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,103777,-0.0152456316408385,relative_legacy,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,103777,29.32235293470684,baseline,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,115725,0.4306796160238205,peer,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,115725,0.4517263179149081,spot_peer,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,115725,18.86619199891168,baseline,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,115725,94.86008474933556,spot_baseline,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,115725,0.0015932449499705,relative_legacy,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,117580,95.60566524124027,spot_baseline,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,117580,0.1405145144824199,peer,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,117580,0.000188141714985,relative_legacy,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,117580,7.294305833748404,baseline,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,117580,1.0423514788797934,spot_peer,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,119215,3.143680193215707,spot_peer,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,119215,0.0002026322875617,relative_legacy,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,119215,98.25829469225908,spot_baseline,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,119215,0.7630239821044452,baseline,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,119215,0.0241483520347874,peer,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,120160,4.994701623976302,baseline,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,120160,0.0868238348479182,peer,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,120160,8.807150073879309e-06,relative_legacy,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,120160,1.0423514788797934,spot_peer,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,120160,95.60566524124027,spot_baseline,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,131306,-2.2609509739876045e-05,relative_legacy,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,131306,0.0098700026406295,peer,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,131306,95.30789526125076,spot_baseline,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,131306,1.0055599705157776,baseline,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,131306,0.8064675679253298,spot_peer,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,139161,0.4453798978431387,peer,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,139161,-1.3386870243021616,spot_peer,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,139161,92.5999418556223,spot_baseline,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,139161,0.0001849687103398,relative_legacy,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30756,"Will the undiagnosed disease currently spreading in the Democratic Republic of the Congo be identified as COVID-19 before January 7, 2025?",2024-12-12 14:53:09.474538+00,139161,85.33220158629543,baseline,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30994 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,101465,-0.1697941063058709,relative_legacy,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,101465,-14.577242617417255,peer,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,101465,38.03821014034672,baseline,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,101465,63.22682154995129,spot_baseline,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,101465,-11.435085254451009,spot_peer,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,103777,9.53448342432918,peer,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,103777,5.387234817282418,spot_peer,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,103777,82.44576443428208,baseline,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,103777,0.0752482920370744,relative_legacy,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,103777,84.79969065549501,spot_baseline,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,115725,0.569502823540972,peer,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,115725,6.630341388273219,spot_peer,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,115725,14.750813002138129,baseline,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,115725,86.39384504239716,spot_baseline,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,115725,0.0010774583324857,relative_legacy,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,117580,1.9700437561471704,peer,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,117580,97.08536543404836,spot_baseline,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,117580,15.873956021783252,baseline,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,117580,0.0184433218723797,relative_legacy,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,117580,14.96748825556694,spot_peer,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,119215,2.859038533925821,spot_peer,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,119215,0.0084854936399233,baseline,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,119215,81.55754288625727,spot_baseline,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,119215,0.0,relative_legacy,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,119215,0.0002974630234968,peer,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,120160,-0.0040588753202002,relative_legacy,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,120160,-0.2116175619700578,peer,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,120160,5.387234817282418,spot_peer,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,120160,3.9378421247197646,baseline,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,120160,84.79969065549501,spot_baseline,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,126626,88.75252707415875,spot_baseline,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,126626,45.97844876208688,baseline,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,126626,4.811202864192585,peer,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,126626,0.0468809621987033,relative_legacy,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,126626,8.469619413445306,spot_peer,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,131306,37.85116232537298,spot_baseline,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,131306,-0.0585841752492846,peer,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,131306,-0.0007589191665708,relative_legacy,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,131306,0.0904378331574336,baseline,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,131306,-31.22278523161322,spot_peer,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,139161,76.55347463629771,spot_baseline,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,139161,-0.0322773957398107,relative_legacy,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,139161,-2.038085976596792,peer,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,139161,65.20318060867706,baseline,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30757,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 19 million, according to the TSA?",2024-12-12 14:53:09.494041+00,139161,-1.0430867397118018,spot_peer,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30995 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,101465,-0.159379338397298,relative_legacy,Jgalt,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,101465,-25.04337293277377,baseline,Jgalt,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,101465,0.3134681532082235,spot_peer,Jgalt,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,101465,-32.19280948873623,spot_baseline,Jgalt,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,101465,-13.373772095987944,peer,Jgalt,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,103777,26.303440583379377,spot_baseline,datscilly,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,103777,45.92829281537672,spot_peer,datscilly,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,103777,17.482298903297618,baseline,datscilly,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,103777,25.039872733647663,peer,datscilly,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,103777,0.24778642672154,relative_legacy,datscilly,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,115725,-0.1391963542772901,relative_legacy,Sergio,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,115725,-17.083155762128253,baseline,Sergio,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,115725,-100.0,spot_baseline,Sergio,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,115725,-10.160959703202725,peer,Sergio,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,115725,-52.56194013693701,spot_peer,Sergio,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,117580,0.0186039847586111,relative_legacy,MaciekK,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,117580,-5.889368905356857,spot_baseline,MaciekK,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,117580,2.9636915487808717,peer,MaciekK,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,117580,-0.9618186931257758,baseline,MaciekK,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,117580,20.82464329252812,spot_peer,MaciekK,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,119215,-24.79018136964037,spot_peer,rappatoni,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,119215,-4.0052408482924286e-05,relative_legacy,rappatoni,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,119215,-0.0104014236899062,baseline,rappatoni,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,119215,-64.38561897747248,spot_baseline,rappatoni,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,119215,-0.0040048256717927,peer,rappatoni,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,120160,0.3134681532082235,spot_peer,OpenSystem,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,120160,-1.360068479411531,peer,OpenSystem,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,120160,-0.0113244100161581,relative_legacy,OpenSystem,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,120160,-3.2906058561439355,baseline,OpenSystem,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,120160,-32.19280948873623,spot_baseline,OpenSystem,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,126626,-12.266867928032196,peer,skmmcj,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,126626,-45.40316308947075,spot_baseline,skmmcj,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,126626,-9.987841118409449,spot_peer,skmmcj,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,126626,-0.1418624925688527,relative_legacy,skmmcj,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,126626,-23.380330836187294,baseline,skmmcj,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,131306,-0.0136005448191802,peer,draaglom,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,131306,-7.438988989487179e-05,relative_legacy,draaglom,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,131306,-5.457027465391203,spot_peer,draaglom,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,131306,-39.592867633113926,spot_baseline,draaglom,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,131306,-0.08217996237816,baseline,draaglom,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,139161,25.41711767605683,spot_peer,Zaldath,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,139161,0.0,baseline,Zaldath,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,139161,0.0834556872275628,relative_legacy,Zaldath,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,139161,0.0,spot_baseline,Zaldath,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30758,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than or equal to 18 million and less than or equal to 19 million, according to the TSA?",2024-12-12 14:53:09.642963+00,139161,9.175709294696812,peer,Zaldath,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30996 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,101465,0.0907318476727608,relative_legacy,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,101465,8.591808313222785,peer,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,101465,44.24513697336519,baseline,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,101465,48.54268271702416,spot_baseline,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,101465,14.194801796305953,spot_peer,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,103777,3.73409829657606,peer,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,103777,18.91577419494706,spot_peer,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,103777,49.17192233746173,baseline,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,103777,0.0468338090943862,relative_legacy,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,103777,54.59683691052925,spot_baseline,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,115725,-4.018593451910897,peer,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,115725,-23.6583248235805,spot_peer,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,115725,0.0,baseline,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,115725,0.0,spot_baseline,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,115725,-0.0233434075743327,relative_legacy,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,117580,-3.043961166222764,peer,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,117580,5.658352836636751,spot_baseline,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,117580,0.9245531707492924,baseline,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,117580,-0.0104708248007699,relative_legacy,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,117580,-19.245994593836357,spot_peer,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,119215,0.5417053833258717,spot_peer,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,119215,0.009040023614152,baseline,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,119215,31.034012061215048,spot_baseline,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,119215,0.0,relative_legacy,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,119215,0.0001577955646701,peer,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,120160,-5.0346275368526737e-05,relative_legacy,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,120160,-0.0816301831650283,peer,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,120160,-12.935929595593947,spot_peer,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,120160,1.3294000139613735,baseline,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,120160,13.750352374993504,spot_baseline,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,126626,12.432813500220147,spot_baseline,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,126626,6.418707891082216,baseline,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,126626,-11.576943788466169,peer,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,126626,-0.1270670773410688,relative_legacy,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,126626,-13.963333996462126,spot_peer,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,131306,58.496250072115615,spot_baseline,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,131306,0.0508166680365566,peer,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,131306,0.0007799280897504,relative_legacy,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,131306,0.1392614321354474,baseline,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,131306,21.956499838587987,spot_peer,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,139161,48.54268271702416,spot_baseline,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,139161,0.0653432495705209,relative_legacy,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,139161,6.34424751636478,peer,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,139161,47.33169849925898,baseline,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30759,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be greater than 17 million and less than 18 million, according to the TSA?",2024-12-12 14:53:09.66238+00,139161,14.194801796305953,spot_peer,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30997 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,101465,0.0205419014465876,relative_legacy,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,101465,80.63875512784966,baseline,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,101465,4.132639266358827,spot_peer,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,101465,94.11063109464314,spot_baseline,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,101465,2.548754213847247,peer,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,103777,95.60566524124027,spot_baseline,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,103777,5.298452807857803,spot_peer,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,103777,91.02165749117856,baseline,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,103777,1.3316352624718066,peer,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,103777,0.0092411070919405,relative_legacy,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,115725,-0.0285891463271622,relative_legacy,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,115725,12.7929930209174,baseline,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,115725,74.84612330040356,spot_baseline,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,115725,-2.031978560612852,peer,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,115725,-10.88964240389998,spot_peer,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,117580,0.0090927217542724,relative_legacy,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,117580,97.08536543404836,spot_baseline,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,117580,1.0513885396835605,peer,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,117580,15.87925230090828,baseline,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,117580,6.452309076666587,spot_peer,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,119215,-13.600616956544265,spot_peer,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,119215,-9.275264207753816e-05,relative_legacy,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,119215,0.0311804280797481,baseline,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,119215,71.36958148433591,spot_baseline,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,119215,-0.005941930021641,peer,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,120160,2.954618031288084,spot_peer,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,120160,-0.3505714558006385,peer,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,120160,-0.0030631088374056,relative_legacy,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,120160,4.090529766871491,baseline,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,120160,92.5999418556223,spot_baseline,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,126626,-3.030219137984356,peer,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,126626,83.99595874895317,spot_baseline,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,126626,-3.754686929681663,spot_peer,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,126626,-0.0448548588567155,relative_legacy,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,126626,43.18852140586276,baseline,skmmcj,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,131306,0.0157942341923057,peer,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,131306,9.954811172721358e-05,relative_legacy,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,131306,6.452309076666587,spot_peer,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,131306,97.08536543404836,spot_baseline,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,131306,0.3033514990491453,baseline,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,139161,2.954618031288084,spot_peer,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,139161,82.99492339640143,baseline,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,139161,-0.000615431851819,relative_legacy,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,139161,92.5999418556223,spot_baseline,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30760,"Will US airline passenger volume be for the week of Christmas through New Years Eve 2024 be less than or equal to 17 million, according to the TSA?",2024-12-12 14:53:09.682954+00,139161,0.4711388342245612,peer,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30998 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,101465,67.80719051126377,spot_baseline,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,101465,12.73133519345274,baseline,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,101465,-0.6144842084083404,peer,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,101465,-0.001586003735429,relative_legacy,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,101465,-5.101990521700716,spot_peer,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,103777,-0.2022949431829407,peer,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,103777,-5.101990521700716,spot_peer,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,103777,67.80719051126377,spot_baseline,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,103777,-0.0002618195112479,relative_legacy,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,103777,21.790299484116456,baseline,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,115725,-1.245495300634504,peer,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,115725,-2.279977654229683,spot_peer,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,115725,50.69783438287647,baseline,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,115725,71.36958148433591,spot_baseline,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,115725,-0.0057574921557774,relative_legacy,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,117580,89.53026213333065,spot_baseline,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,117580,3.116868467475324,peer,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,117580,0.0421497024111283,relative_legacy,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,117580,18.124923237396807,baseline,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,117580,12.106336161656332,spot_peer,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,119215,1.826537685891824,spot_peer,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,119215,0.0002999097647531,relative_legacy,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,119215,76.55347463629771,spot_baseline,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,119215,1.650680783273696,baseline,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,119215,0.0494477769345302,peer,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,120160,3.2548889775088075,baseline,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,120160,-0.2639643553092039,peer,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,120160,-0.0027306291982255,relative_legacy,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,120160,1.826537685891824,spot_peer,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,120160,76.55347463629771,spot_baseline,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,131306,0.0,relative_legacy,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,131306,0.0075345519778507,peer,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,131306,76.55347463629771,spot_baseline,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,131306,0.3157866044524758,baseline,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,131306,1.826537685891824,spot_peer,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,139161,-0.8476119888527196,peer,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,139161,-5.101990521700716,spot_peer,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,139161,67.80719051126377,spot_baseline,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,139161,-0.011568600017354,relative_legacy,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30761,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than or equal to 4,150? -",2024-12-12 14:53:09.702886+00,139161,53.83394427027096,baseline,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,30999 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,101465,-32.19280948873623,spot_baseline,Jgalt,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,101465,-6.162195812532362,baseline,Jgalt,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,101465,-5.728142467434194,peer,Jgalt,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,101465,-0.0692672741265464,relative_legacy,Jgalt,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,101465,-29.158259914828285,spot_peer,Jgalt,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,103777,1.2867344717874498,peer,datscilly,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,103777,7.236452213004239,spot_peer,datscilly,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,103777,13.750352374993504,spot_baseline,datscilly,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,103777,0.0169169814182407,relative_legacy,datscilly,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,103777,4.418016608987914,baseline,datscilly,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,115725,0.7596689638827676,peer,Sergio,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,115725,5.139407793781784,spot_peer,Sergio,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,115725,17.519372630525464,baseline,Sergio,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,115725,11.103131238874395,spot_baseline,Sergio,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,115725,0.0109119004967454,relative_legacy,Sergio,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,117580,5.658352836636751,spot_baseline,MaciekK,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,117580,0.3745843544575781,peer,MaciekK,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,117580,0.0025804204441658,relative_legacy,MaciekK,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,117580,1.1459907926985702,baseline,MaciekK,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,117580,0.8262274528849697,spot_peer,MaciekK,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,119215,5.139407793781784,spot_peer,rappatoni,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,119215,0.0004041229751329,relative_legacy,rappatoni,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,119215,11.103131238874395,spot_baseline,rappatoni,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,119215,0.2407803530059642,baseline,rappatoni,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,119215,0.1375570550473115,peer,rappatoni,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,120160,0.2481400344139137,baseline,OpenSystem,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,120160,0.1499003310320491,peer,OpenSystem,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,120160,0.0004777197892124,relative_legacy,OpenSystem,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,120160,7.236452213004239,spot_peer,OpenSystem,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,120160,13.750352374993504,spot_baseline,OpenSystem,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,131306,0.0001112317272752,relative_legacy,draaglom,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,131306,0.0304063407478461,peer,draaglom,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,131306,13.750352374993504,spot_baseline,draaglom,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,131306,0.0577766407364188,baseline,draaglom,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,131306,7.236452213004239,spot_peer,draaglom,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,139161,2.9892909504791763,peer,Zaldath,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,139161,-3.6561397646328913,spot_peer,Zaldath,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,139161,0.0,spot_baseline,Zaldath,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,139161,0.0331272352458528,relative_legacy,Zaldath,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30762,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be greater than 3,900 and less than 4,150? -",2024-12-12 14:53:09.722425+00,139161,21.301971584268014,baseline,Zaldath,yes,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31000 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,101465,26.303440583379377,spot_baseline,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,101465,5.722049326271976,baseline,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,101465,-3.7439617994500782,peer,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,101465,-0.05300708863364,relative_legacy,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,101465,-14.155313880695951,spot_peer,Jgalt,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,103777,1.555010957928584,peer,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,103777,11.346806269499451,spot_peer,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,103777,58.496250072115615,spot_baseline,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,103777,0.0139746384567103,relative_legacy,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,103777,18.803516890232626,baseline,datscilly,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,115725,1.944342124686373,peer,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,115725,6.681435467184578,spot_peer,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,115725,59.47822140240133,baseline,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,115725,52.60688116675877,spot_baseline,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,115725,0.0126456406692175,relative_legacy,Sergio,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,117580,23.878685958711674,spot_baseline,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,117580,-3.778665479792987,peer,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,117580,-0.0534486205266831,relative_legacy,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,117580,4.837976302814877,baseline,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,117580,-16.076127402568066,spot_peer,MaciekK,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,119215,1.817479533607896,spot_peer,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,119215,-0.0004710528016342,relative_legacy,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,119215,46.46682670034443,spot_baseline,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,119215,1.0544242338763583,baseline,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,119215,0.0406143670804547,peer,rappatoni,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,120160,2.75287590811222,baseline,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,120160,0.4312942364625222,peer,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,120160,0.0020938017677381,relative_legacy,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,120160,3.461906670990701,spot_peer,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,120160,48.54268271702416,spot_baseline,OpenSystem,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,131306,0.0003301915365731,relative_legacy,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,131306,0.0492582391427338,peer,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,131306,48.54268271702416,spot_baseline,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,131306,0.402793485354467,baseline,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,131306,3.461906670990701,spot_peer,draaglom,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,139161,3.5021073539424274,peer,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,139161,3.461906670990701,spot_peer,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,139161,48.54268271702416,spot_baseline,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,139161,0.0374438348372831,relative_legacy,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30763,"Will the value of China's CSI 300 stock index at market close on December 31st, 2024 be less than or equal to 3,900? -",2024-12-12 14:53:09.967547+00,139161,67.70733466814625,baseline,Zaldath,no,2024-12-14 15:30:00+00,2024-12-14 15:30:00+00,1.0,31001 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,101465,-0.1727250738822264,relative_legacy,Jgalt,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,101465,18.803706385833085,baseline,Jgalt,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,101465,-8.08577296892789,spot_peer,Jgalt,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,101465,49.49622659717613,spot_baseline,Jgalt,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,101465,-7.328645546822278,peer,Jgalt,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,103777,71.57959998265936,spot_baseline,datscilly,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,103777,16.75802208974074,spot_peer,datscilly,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,103777,63.619433411076045,baseline,datscilly,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,103777,15.044433116531785,peer,datscilly,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,103777,0.3385715074442678,relative_legacy,datscilly,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,115725,-0.1294988791852956,relative_legacy,Sergio,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,115725,22.67680273487819,baseline,Sergio,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,115725,47.41091668145011,spot_baseline,Sergio,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,115725,-5.57199788314704,peer,Sergio,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,115725,-10.431746624119675,spot_peer,Sergio,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,117580,-0.0257613519537127,relative_legacy,MaciekK,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,117580,42.2816537700676,spot_baseline,MaciekK,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,117580,-1.0975392260007946,peer,MaciekK,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,117580,2.751910002546235,baseline,MaciekK,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,117580,-16.202167399424994,spot_peer,MaciekK,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,119215,-7.332457773235141,spot_peer,rappatoni,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,119215,-0.0083675610929704,relative_legacy,rappatoni,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,119215,2.536919507405865,baseline,rappatoni,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,119215,50.16584010445857,spot_baseline,rappatoni,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,119215,-0.3838933852537867,peer,rappatoni,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,120160,10.05527974187008,spot_peer,OpenSystem,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,120160,7.660265942150936,peer,OpenSystem,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,120160,0.1946096404281412,relative_legacy,OpenSystem,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,120160,33.10925112947358,baseline,OpenSystem,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,120160,65.62160678455211,spot_baseline,OpenSystem,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,126626,-12.049692588981546,peer,skmmcj,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,126626,63.53812604352953,spot_baseline,skmmcj,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,126626,7.711363908219682,spot_peer,skmmcj,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,126626,-0.2430871704385136,relative_legacy,skmmcj,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,126626,42.67413415256493,baseline,skmmcj,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,131306,-0.5959895955885766,peer,draaglom,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,131306,-0.0087229428618368,relative_legacy,draaglom,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,131306,0.6744360052483713,spot_peer,draaglom,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,131306,57.28307901866615,spot_baseline,draaglom,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,131306,19.176949609408307,baseline,draaglom,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,139161,6.853043020628676,spot_peer,Zaldath,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,139161,55.74468988445856,baseline,Zaldath,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,139161,0.1080213307710371,relative_legacy,Zaldath,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,139161,62.77517414344863,spot_baseline,Zaldath,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30767,What will be the U.S. International Investment Position in the 3rd Quarter of 2024?,2024-12-12 18:05:36.181273+00,139161,4.323059167111258,peer,Zaldath,-23.6,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31006 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,101465,0.5694066940773507,relative_legacy,Jgalt,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,101465,28.33620212362713,baseline,Jgalt,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,101465,59.37719728499754,spot_baseline,Jgalt,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,101465,60.80648299046368,peer,Jgalt,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,101465,76.04540745760725,spot_peer,Jgalt,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,103777,0.0244686184775987,relative_legacy,datscilly,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,103777,14.291097089402346,spot_baseline,datscilly,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,103777,12.828391885850436,peer,datscilly,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,103777,4.0494914412678735,baseline,datscilly,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,103777,20.321745769229384,spot_peer,datscilly,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,115725,-78.96330458458895,spot_baseline,Sergio,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,115725,-0.2465869151852702,relative_legacy,Sergio,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,115725,-94.93498983863924,spot_peer,Sergio,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,115725,-73.45357657882658,baseline,Sergio,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,115725,-0.7233406003337332,peer,Sergio,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,117580,53.50264792820728,spot_baseline,MaciekK,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,117580,68.78482382963048,spot_peer,MaciekK,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,117580,3.1167113395537287,peer,MaciekK,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,117580,0.0245617242137434,relative_legacy,MaciekK,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,117580,1.6015960293315803,baseline,MaciekK,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,119215,33.89239439544855,spot_peer,rappatoni,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,119215,1.1035242053104573,baseline,rappatoni,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,119215,1.650857121314179,peer,rappatoni,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,119215,1.398852653579325e-17,relative_legacy,rappatoni,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,119215,25.271129720828377,spot_baseline,rappatoni,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,120160,-51.19673199684216,baseline,OpenSystem,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,120160,-42.0562799417347,spot_baseline,OpenSystem,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,120160,-20.186647478169803,peer,OpenSystem,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,120160,-49.32016517647076,spot_peer,OpenSystem,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,120160,-0.3964189600166068,relative_legacy,OpenSystem,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,126626,21.18635115918689,peer,skmmcj,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,126626,-60.387129481158745,baseline,skmmcj,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,126626,0.0486181096727091,relative_legacy,skmmcj,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,126626,42.21088922957006,spot_baseline,skmmcj,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,126626,54.82890085425787,spot_peer,skmmcj,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,131306,10.450410614462331,peer,draaglom,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,131306,3.729726966643762,baseline,draaglom,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,131306,0.0252904254709441,relative_legacy,draaglom,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,131306,23.169999167462,spot_peer,draaglom,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,131306,16.595623285353042,spot_baseline,draaglom,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,139161,-132.78811645852568,spot_peer,Zaldath,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,139161,-1.1946916850596858,relative_legacy,Zaldath,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,139161,-89.1292170323278,peer,Zaldath,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,139161,-109.59032742893848,spot_baseline,Zaldath,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30771,"Who will send out more tweets in the 10-day period from December 21-December 30, 2024--Elon Musk, The New York Times, or The Economist?",2024-12-12 20:51:32.245503+00,139161,-137.75884137252308,baseline,Zaldath,The Economist: @TheEconomist,2024-12-17 15:30:00+00,2024-12-17 15:30:00+00,1.0,31011 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,101465,-10.855093373240669,peer,Jgalt,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,101465,17.930867000780506,baseline,Jgalt,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,101465,-23.922519125933768,spot_peer,Jgalt,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,101465,35.068094974407536,spot_baseline,Jgalt,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,101465,-0.10065850267792,relative_legacy,Jgalt,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,103777,0.1843527949594366,relative_legacy,datscilly,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,103777,13.527470252978263,spot_peer,datscilly,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,103777,16.91112046595451,peer,datscilly,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,103777,64.89548817267116,spot_baseline,datscilly,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,103777,55.49046867976202,baseline,datscilly,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,115725,23.19117174189974,spot_peer,Sergio,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,115725,39.94891143266433,baseline,Sergio,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,115725,13.71143779533004,peer,Sergio,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,115725,72.5922333210961,spot_baseline,Sergio,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,115725,0.1982598690787399,relative_legacy,Sergio,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,119215,0.7283032011014138,peer,rappatoni,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,119215,64.89548817267116,spot_baseline,rappatoni,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,119215,13.527470252978263,spot_peer,rappatoni,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,119215,0.000746061203454,relative_legacy,rappatoni,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,119215,3.367602894162171,baseline,rappatoni,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,120160,16.840331609921364,spot_peer,OpenSystem,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,120160,0.153726497384702,relative_legacy,OpenSystem,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,120160,10.00519240693462,peer,OpenSystem,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,120160,67.53404748720375,spot_baseline,OpenSystem,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,120160,36.49661484953514,baseline,OpenSystem,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,126626,0.1019229546545556,relative_legacy,skmmcj,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,126626,6.53150624975852,peer,skmmcj,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,126626,13.527470252978263,spot_peer,skmmcj,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,126626,64.89548817267116,spot_baseline,skmmcj,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,126626,25.67860648387945,baseline,skmmcj,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,131306,-0.2682254551653266,relative_legacy,draaglom,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,131306,5.145406988786895,baseline,draaglom,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,131306,-24.652394826339307,peer,draaglom,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,131306,-54.18723315047979,spot_peer,draaglom,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,131306,10.963481322595513,spot_baseline,draaglom,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,139161,-0.0857256179251772,relative_legacy,Zaldath,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,139161,52.126945329033646,spot_baseline,Zaldath,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,139161,-12.380071919499064,peer,Zaldath,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,139161,38.450217592289576,baseline,Zaldath,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30773,"How many wins will the Cleveland Cavaliers have in the 2024-25 NBA basketball season on January 1, 2025?",2024-12-13 02:45:34.637156+00,139161,-2.5041618343422365,spot_peer,Zaldath,Greater than 27,2024-12-18 15:30:00+00,2024-12-18 15:30:00+00,1.0,31013 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,101465,35.068094974407536,spot_baseline,Jgalt,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,101465,-0.0406833093728178,relative_legacy,Jgalt,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,101465,13.871765010359647,baseline,Jgalt,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,101465,-8.48968641860675,spot_peer,Jgalt,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,101465,-6.15332081796847,peer,Jgalt,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,103777,-4.940334301141194,peer,datscilly,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,103777,29.317303519295944,spot_baseline,datscilly,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,103777,-0.0277321398206233,relative_legacy,datscilly,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,103777,28.230911685625536,baseline,datscilly,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,103777,-15.710132318210349,spot_peer,datscilly,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,115725,1.1760189930557414,peer,Sergio,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,115725,0.0447100605291712,relative_legacy,Sergio,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,115725,-6.180805582318808,spot_peer,Sergio,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,115725,32.21680651545787,baseline,Sergio,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,115725,36.90702464285426,spot_baseline,Sergio,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,117580,6.771044167052995,spot_peer,MaciekK,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,117580,2.4653898543476904,baseline,MaciekK,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,117580,0.4884357648329821,peer,MaciekK,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,117580,47.22264612970255,spot_baseline,MaciekK,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,117580,0.0055672727322406,relative_legacy,MaciekK,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,120160,0.1894278647446916,relative_legacy,OpenSystem,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,120160,14.655943765561725,spot_peer,OpenSystem,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,120160,13.147693330611908,peer,OpenSystem,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,120160,53.50264792820728,spot_baseline,OpenSystem,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,120160,31.88752574930102,baseline,OpenSystem,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,126626,-0.0964063265528951,relative_legacy,skmmcj,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,126626,36.90702464285426,spot_baseline,skmmcj,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,126626,23.552860081826168,baseline,skmmcj,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,126626,-11.095905393394116,peer,skmmcj,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,126626,-6.180805582318808,spot_peer,skmmcj,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,131306,0.003048901459465,relative_legacy,draaglom,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,131306,1.223999934591373,baseline,draaglom,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,131306,0.3617693483712559,peer,draaglom,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,131306,14.655943765561725,spot_peer,draaglom,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,131306,53.50264792820728,spot_baseline,draaglom,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,139161,0.1131478608511311,relative_legacy,Zaldath,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,139161,42.21088922957006,spot_baseline,Zaldath,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,139161,7.015643075631834,peer,Zaldath,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,139161,39.568038007217794,baseline,Zaldath,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 -30814,"Which state will have the highest real GDP growth rate in Q3 2024: California, Texas or Illinois?",2024-12-15 20:35:34.411134+00,139161,0.4784982032784231,spot_peer,Zaldath,Texas,2024-12-19 15:30:00+00,2024-12-19 15:30:00+00,1.0,31067 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,101465,-0.0112174345485605,relative_legacy,Jgalt,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,101465,64.85519224500398,spot_baseline,Jgalt,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,101465,9.58778293681033,baseline,Jgalt,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,101465,-0.8778419603932166,peer,Jgalt,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,101465,-5.130518163045823,spot_peer,Jgalt,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,103777,-0.0245446441420088,relative_legacy,datscilly,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,103777,-2.1377222898563986,peer,datscilly,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,103777,63.97385131955608,spot_baseline,datscilly,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,103777,-6.726289599640901,spot_peer,datscilly,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,103777,20.36248587380317,baseline,datscilly,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,103907,-9.922476230721369,peer,darkives,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,103907,55.6770794097549,spot_baseline,darkives,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,103907,24.13957050350427,baseline,darkives,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,103907,-21.748571269899717,spot_peer,darkives,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,103907,-0.1211028418305599,relative_legacy,darkives,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,117580,70.29796569039297,spot_baseline,MaciekK,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,117580,8.50114819113899,baseline,MaciekK,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,117580,0.0072593326268179,relative_legacy,MaciekK,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,117580,0.5731003157470584,peer,MaciekK,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,117580,4.724263510227603,spot_peer,MaciekK,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,119188,30.43594855221624,baseline,exmateriae,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,119188,0.0536979287891113,relative_legacy,exmateriae,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,119188,4.2522658396460935,peer,exmateriae,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,119188,73.23395250202961,spot_baseline,exmateriae,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,119188,10.040213055913982,spot_peer,exmateriae,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,120160,0.1057175398571612,relative_legacy,OpenSystem,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,120160,35.80453307272834,baseline,OpenSystem,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,120160,8.650581243154823,peer,OpenSystem,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,120160,77.83853970487746,spot_baseline,OpenSystem,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,120160,18.37735992320768,spot_peer,OpenSystem,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,131523,-0.2909185357030745,peer,SpottedBear,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,131523,23.502313242437005,baseline,SpottedBear,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,131523,67.21633447267409,spot_baseline,SpottedBear,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,131523,-0.8553923679517619,spot_peer,SpottedBear,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,131523,-0.0023506299225929,relative_legacy,SpottedBear,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,139161,70.59788659514011,spot_baseline,Zaldath,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,139161,46.77145091834216,baseline,Zaldath,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,139161,5.267305594413152,spot_peer,Zaldath,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,139161,0.0275737821150363,relative_legacy,Zaldath,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,139161,2.3311460215877937,peer,Zaldath,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,148850,-0.028403271158806,relative_legacy,pasta,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,148850,-2.5781344034616938,peer,pasta,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,148850,65.5080896023505,spot_baseline,pasta,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,148850,32.31889610236456,baseline,pasta,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31268,"For Q1 2025, how many banks will be listed on the FDIC's Failed Bank List?",2025-01-17 19:06:22.013528+00,148850,-3.948370683224118,spot_peer,pasta,1,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31736 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,101465,8.21852964123878,spot_peer,Jgalt,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,101465,28.28370749678948,baseline,Jgalt,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,101465,43.698973113370535,spot_baseline,Jgalt,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,101465,3.086362152297617,peer,Jgalt,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,101465,-0.0698891720029303,relative_legacy,Jgalt,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,103777,19.907466924964588,baseline,datscilly,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,103777,-0.0013104951152101,relative_legacy,datscilly,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,103777,10.4690156558509,spot_peer,datscilly,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,103777,4.970703484250353,peer,datscilly,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,103777,45.72441052652144,spot_baseline,datscilly,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,103907,-0.4702539540157988,relative_legacy,darkives,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,103907,-25.11235804944667,spot_peer,darkives,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,103907,13.70117419175362,spot_baseline,darkives,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,103907,11.232925485125886,baseline,darkives,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,103907,-12.092352853044478,peer,darkives,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,117580,-0.0351357795389836,relative_legacy,MaciekK,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,117580,0.1327914407211395,peer,MaciekK,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,117580,0.848131896969312,spot_peer,MaciekK,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,117580,5.68272602162028,baseline,MaciekK,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,117580,37.065615143528,spot_baseline,MaciekK,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,119188,49.97179356282412,spot_baseline,exmateriae,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,119188,15.188330140631663,spot_peer,exmateriae,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,119188,25.57182360161993,baseline,exmateriae,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,119188,8.935915902816506,peer,exmateriae,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,119188,0.0838898857402415,relative_legacy,exmateriae,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,120160,0.0392933694429827,relative_legacy,OpenSystem,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,120160,48.11861923877392,spot_baseline,OpenSystem,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,120160,13.12924755835366,spot_peer,OpenSystem,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,120160,6.865760968805526,peer,OpenSystem,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,120160,22.690681728883902,baseline,OpenSystem,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,131306,0.2588635172914494,relative_legacy,draaglom,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,131306,53.13492956895863,spot_baseline,draaglom,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,131306,18.70292570300332,spot_peer,draaglom,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,131306,39.505374994462834,baseline,draaglom,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,131306,17.91673248025997,peer,draaglom,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,131523,0.1366838714089461,relative_legacy,SpottedBear,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,131523,9.379541674945235,peer,SpottedBear,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,131523,26.08530404006096,spot_peer,SpottedBear,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,131523,59.77907007231049,spot_baseline,SpottedBear,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,131523,21.18257467031204,baseline,SpottedBear,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,139161,36.37163891602802,baseline,Zaldath,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,139161,53.55348204953665,spot_baseline,Zaldath,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,139161,19.167984014756705,spot_peer,Zaldath,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,139161,0.2493539869658492,relative_legacy,Zaldath,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,139161,16.7633352412099,peer,Zaldath,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,148850,-55.95879049226182,peer,pasta,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,148850,-86.69711060141897,spot_peer,pasta,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,148850,-41.725103105021454,spot_baseline,pasta,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,148850,-27.23573503264025,baseline,pasta,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31269,What percentage of the vote will Alexander Lukashenko receive in the 2025 Belarusian presidential election?,2025-01-17 19:06:22.039919+00,148850,-1.559264730252151,relative_legacy,pasta,86.82,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31737 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,101465,97.96595517158244,spot_baseline,Jgalt,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,101465,72.21724703396404,baseline,Jgalt,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,101465,-0.3957028707646009,peer,Jgalt,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,101465,-0.0045747111675944,relative_legacy,Jgalt,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,101465,0.0434724009500144,spot_peer,Jgalt,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,103777,-0.5214048254135681,spot_peer,datscilly,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,103777,-0.0031500913846355,relative_legacy,datscilly,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,103777,97.23250415571516,spot_baseline,datscilly,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,103777,-0.2238767231554241,peer,datscilly,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,103777,42.886869812496776,baseline,datscilly,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,103907,-0.0016978775037667,relative_legacy,darkives,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,103907,-0.1821339935368672,spot_peer,darkives,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,103907,97.67302206771528,spot_baseline,darkives,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,103907,47.71187245072384,baseline,darkives,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,103907,-0.1017267603645659,peer,darkives,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,117580,99.56654097361088,spot_baseline,MaciekK,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,117580,0.1839985736796474,peer,MaciekK,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,117580,0.0022847515342209,relative_legacy,MaciekK,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,117580,1.2761852186392346,spot_peer,MaciekK,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,117580,14.330725392351033,baseline,MaciekK,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,119188,0.7175560323097403,spot_peer,exmateriae,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,119188,0.0041894288535963,relative_legacy,exmateriae,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,119188,48.17625025144628,baseline,exmateriae,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,119188,0.3603566258453892,peer,exmateriae,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,119188,98.84120257247882,spot_baseline,exmateriae,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,120160,99.27684307689242,spot_baseline,OpenSystem,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,120160,0.4970475097208957,peer,OpenSystem,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,120160,1.0530704627230554,spot_peer,OpenSystem,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,120160,0.0059088292964073,relative_legacy,OpenSystem,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,120160,46.59467954713459,baseline,OpenSystem,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,131306,0.753778538563394,peer,draaglom,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,131306,0.0088265359826699,relative_legacy,draaglom,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,131306,99.27684307689242,spot_baseline,draaglom,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,131306,1.0530704627230554,spot_peer,draaglom,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,131306,72.64633629012465,baseline,draaglom,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,131523,31.7890564908782,baseline,SpottedBear,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,131523,-4.08923537772208,spot_peer,SpottedBear,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,131523,92.5999418556223,spot_baseline,SpottedBear,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,131523,-0.0178875495095451,relative_legacy,SpottedBear,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,131523,-1.377135205854807,peer,SpottedBear,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,139161,0.2732375478752918,peer,Zaldath,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,139161,0.0032224809971251,relative_legacy,Zaldath,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,139161,66.02340416441947,baseline,Zaldath,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,139161,0.4933155705056032,spot_peer,Zaldath,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,148850,0.0002891535367801,relative_legacy,pasta,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,148850,0.1561040488218136,spot_peer,pasta,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,148850,98.11219897943108,spot_baseline,pasta,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,148850,0.030022764454747,peer,pasta,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31270,"Will the bubble in the Magnificent Seven pop before March 28, 2025?",2025-01-17 19:06:22.070728+00,148850,70.38844756614436,baseline,pasta,no,2025-01-20 03:27:00+00,2025-01-20 03:27:00+00,1.0,31738 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,101465,0.0098659569104708,relative_legacy,Jgalt,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,101465,25.271129720828377,spot_baseline,Jgalt,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,101465,6.769000216199532,spot_peer,Jgalt,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,101465,5.48006614219485,peer,Jgalt,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,101465,13.339665966888372,baseline,Jgalt,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,103777,14.097663304177,spot_peer,datscilly,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,103777,31.27488268009672,spot_baseline,datscilly,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,103777,0.0226496781713721,relative_legacy,datscilly,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,103777,7.780642231634212,baseline,datscilly,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,103777,3.830817684884313,peer,datscilly,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,103907,-31.07228160292865,spot_peer,darkives,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,103907,-5.729027467021914,spot_baseline,darkives,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,103907,-18.538239290840146,peer,darkives,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,103907,-0.2868487696615693,relative_legacy,darkives,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,103907,-3.624639398703679,baseline,darkives,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,117580,6.769000216199532,spot_peer,MaciekK,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,117580,5.70094683626243,baseline,MaciekK,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,117580,1.7004179866485711,peer,MaciekK,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,117580,-3.849160561935508e-06,relative_legacy,MaciekK,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,117580,25.271129720828377,spot_baseline,MaciekK,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,119188,7.658433204734933,baseline,exmateriae,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,119188,42.21088922957006,spot_baseline,exmateriae,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,119188,27.447031286628487,spot_peer,exmateriae,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,119188,0.0487126391716742,relative_legacy,exmateriae,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,119188,4.9797874343206585,peer,exmateriae,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,120160,-9.59032742893847,spot_baseline,OpenSystem,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,120160,-0.2143259699253008,relative_legacy,OpenSystem,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,120160,-35.78569447892335,spot_peer,OpenSystem,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,120160,-3.815530122928886,baseline,OpenSystem,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,120160,-13.315340425040686,peer,OpenSystem,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,131306,1.600109590100303,spot_peer,draaglom,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,131306,21.036695415411053,spot_baseline,draaglom,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,131306,3.818584443757588,baseline,draaglom,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,131306,-0.0121864291333157,relative_legacy,draaglom,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,131306,0.2907241610744068,peer,draaglom,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,131523,7.547717766585826,baseline,SpottedBear,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,131523,-0.5754061958033602,peer,SpottedBear,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,131523,16.595623285353042,spot_baseline,SpottedBear,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,131523,-0.0560484566469603,relative_legacy,SpottedBear,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,131523,-3.821019762058794,spot_peer,SpottedBear,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,139161,27.3166972139158,spot_baseline,Zaldath,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,139161,9.2659841997616,spot_peer,Zaldath,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,139161,0.0003096549578127,relative_legacy,Zaldath,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,139161,3.5857263679684395,peer,Zaldath,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,139161,17.494393724634158,baseline,Zaldath,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,148850,12.561446134592993,peer,pasta,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,148850,21.101749098918013,baseline,pasta,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,148850,0.0471741285655222,relative_legacy,pasta,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,148850,4.730207030844343,spot_peer,pasta,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31280,How many arms sales globally will the US State Department approve in February 2025?,2025-01-17 19:16:00.569665+00,148850,23.600919141767594,spot_baseline,pasta,5-9,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31748 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,101465,1.3145458039889812,baseline,Jgalt,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,101465,0.3835409306717306,peer,Jgalt,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,101465,-0.0347982410396651,relative_legacy,Jgalt,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,101465,5.329954044807696,spot_peer,Jgalt,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,101465,13.47665304895121,spot_baseline,Jgalt,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,103777,-23.435889608433257,spot_peer,datscilly,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,103777,-12.412606238965656,spot_baseline,datscilly,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,103777,-0.1582662525403069,relative_legacy,datscilly,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,103777,-4.393094747066142,peer,datscilly,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,103777,-2.977348264979764,baseline,datscilly,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,103907,-8.731056863617773,spot_baseline,darkives,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,103907,-5.989486060356163,peer,darkives,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,103907,-0.1983983011301043,relative_legacy,darkives,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,103907,-19.34527919138006,spot_peer,darkives,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,103907,-4.169101003377111,baseline,darkives,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,117580,27.585103394189236,spot_peer,MaciekK,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,117580,4.577878349818414,baseline,MaciekK,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,117580,33.506287463394585,spot_baseline,MaciekK,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,117580,0.0593409523046798,relative_legacy,MaciekK,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,117580,4.0161524086298,peer,MaciekK,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,119188,-14.633288858509042,spot_baseline,exmateriae,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,119188,-13.697918782790444,baseline,exmateriae,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,119188,-19.72205833185109,peer,exmateriae,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,119188,-25.90331474125925,spot_peer,exmateriae,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,119188,-0.5370527201355507,relative_legacy,exmateriae,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,120160,1.9537527243229609,baseline,OpenSystem,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,120160,-7.251607719823777,spot_peer,OpenSystem,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,120160,2.153247460782884,spot_baseline,OpenSystem,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,120160,-0.0836876241267463,relative_legacy,OpenSystem,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,120160,-0.0324992907535478,peer,OpenSystem,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,131306,3.5700247854418783,baseline,draaglom,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,131306,15.452946359759745,spot_peer,draaglom,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,131306,2.8941312129816863,peer,draaglom,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,131306,22.587346132408047,spot_baseline,draaglom,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,131306,0.0344585511169745,relative_legacy,draaglom,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,131523,4.337306090629285,spot_baseline,SpottedBear,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,131523,-4.824875908883326,spot_peer,SpottedBear,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,131523,1.148302137890583,peer,SpottedBear,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,131523,2.0280908062959915,baseline,SpottedBear,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,131523,-0.0212820422647541,relative_legacy,SpottedBear,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,139161,11.131226832469796,spot_baseline,Zaldath,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,139161,0.0737315373212493,relative_legacy,Zaldath,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,139161,2.7239249153839054,spot_peer,Zaldath,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,139161,7.75710016323635,baseline,Zaldath,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,139161,7.186281011824323,peer,Zaldath,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,148850,0.261736807345597,relative_legacy,pasta,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,148850,29.669038455639026,spot_peer,pasta,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,148850,14.508730728028748,peer,pasta,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,148850,35.38182901869939,spot_baseline,pasta,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31281,"How much will it rain in Brasília, Brazil in February 2025?",2025-01-17 19:16:00.598562+00,148850,13.982747965484318,baseline,pasta,119.2,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31749 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,101465,3.4761244161750637,peer,Jgalt,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,101465,-2.9452908565320963,baseline,Jgalt,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,101465,-15.200309344504996,spot_baseline,Jgalt,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,101465,2.528074103416803,spot_peer,Jgalt,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,101465,0.0453364494815367,relative_legacy,Jgalt,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,103777,34.49274882028134,spot_peer,datscilly,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,103777,26.303440583379377,spot_baseline,datscilly,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,103777,8.355129437769794,peer,datscilly,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,103777,6.717304113592349,baseline,datscilly,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,103777,0.1355078376208016,relative_legacy,datscilly,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,103907,-20.09126939259964,spot_baseline,darkives,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,103907,-1.2387649716589064,spot_peer,darkives,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,103907,0.0238242913184927,relative_legacy,darkives,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,103907,-0.5375645003129541,peer,darkives,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,103907,-4.628971188895684,baseline,darkives,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,117580,-2.3728722592575155,peer,MaciekK,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,117580,-10.558929858403578,spot_peer,MaciekK,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,117580,-0.0014563795646549,relative_legacy,MaciekK,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,117580,-32.19280948873623,spot_baseline,MaciekK,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,117580,-6.921431614969033,baseline,MaciekK,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,119188,-1.7935084051389854,peer,exmateriae,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,119188,-10.558929858403578,spot_peer,exmateriae,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,119188,-32.19280948873623,spot_baseline,exmateriae,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,119188,-5.4681748223883,baseline,exmateriae,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,119188,0.0,relative_legacy,exmateriae,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,120160,26.303440583379377,spot_baseline,OpenSystem,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,120160,15.538969380432489,baseline,OpenSystem,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,120160,19.08211631177739,peer,OpenSystem,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,120160,34.49274882028134,spot_peer,OpenSystem,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,120160,0.2334611245713437,relative_legacy,OpenSystem,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,131306,-3.276386747896617,peer,draaglom,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,131306,-0.0149418592780774,relative_legacy,draaglom,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,131306,-39.592867633113926,spot_baseline,draaglom,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,131306,-7.880923532013941,baseline,draaglom,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,131306,-16.258184790353653,spot_peer,draaglom,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,131523,-11.000124370381078,peer,SpottedBear,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,131523,-0.1253762869687079,relative_legacy,SpottedBear,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,131523,-41.50374992788438,spot_baseline,SpottedBear,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,131523,-17.729876651467055,spot_peer,SpottedBear,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,131523,-20.017128558225995,baseline,SpottedBear,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,139161,19.26243439374325,peer,Zaldath,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,139161,-15.049393110003738,baseline,Zaldath,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,139161,-10.558929858403578,spot_peer,Zaldath,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,139161,0.0894643844210851,relative_legacy,Zaldath,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,139161,-32.19280948873623,spot_baseline,Zaldath,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,148850,-0.314154496439594,relative_legacy,pasta,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,148850,-24.4685095954902,spot_baseline,pasta,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,148850,-4.609955755289166,spot_peer,pasta,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,148850,-31.19534827647837,peer,pasta,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31282,"Will the USDA-posted recall by Pork Dynasty Inc. of Ready-to-Eat Fried Pork Skin Products issued September 27, 2024 be closed before March 1, 2025?",2025-01-17 19:16:00.623075+00,148850,-55.42225148748858,baseline,pasta,yes,2025-01-21 11:42:00+00,2025-01-21 11:42:00+00,1.0,31750 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,101465,48.60724716651555,baseline,Jgalt,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,101465,15.83035129873331,spot_peer,Jgalt,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,101465,-0.0065512620219445,relative_legacy,Jgalt,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,101465,-0.0715562520111458,peer,Jgalt,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,101465,77.1468695135672,spot_baseline,Jgalt,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,103777,0.0390497499470951,relative_legacy,datscilly,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,103777,9.91708916351205,spot_peer,datscilly,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,103777,25.298811880679995,baseline,datscilly,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,103777,74.21331001556713,spot_baseline,datscilly,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,103777,3.440635906320509,peer,datscilly,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,103907,16.162964141999403,peer,darkives,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,103907,83.72046589629642,spot_baseline,darkives,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,103907,55.25941056927381,baseline,darkives,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,103907,29.080942810076436,spot_peer,darkives,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,103907,0.1877176802631824,relative_legacy,darkives,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,117580,71.49027910615312,spot_baseline,MaciekK,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,117580,2.245493183039474,baseline,MaciekK,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,117580,0.1119679140961267,peer,MaciekK,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,117580,-0.0007187677042702,relative_legacy,MaciekK,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,117580,4.42819569445095,spot_peer,MaciekK,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,119188,66.0218883961871,spot_baseline,exmateriae,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,119188,-6.594600246071963,spot_peer,exmateriae,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,119188,8.960053592633821,peer,exmateriae,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,119188,70.31713858164375,baseline,exmateriae,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,119188,0.0501172108401806,relative_legacy,exmateriae,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,120160,-56.20891063797634,spot_peer,OpenSystem,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,120160,-0.1044249143120783,relative_legacy,OpenSystem,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,120160,41.40831163286813,spot_baseline,OpenSystem,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,120160,-7.880467603309511,peer,OpenSystem,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,120160,6.159060795663502,baseline,OpenSystem,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,131306,3.0083531288126006,baseline,draaglom,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,131306,83.94415782963752,spot_baseline,draaglom,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,131306,29.531845217299544,spot_peer,draaglom,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,131306,0.0105733073829696,relative_legacy,draaglom,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,131306,1.0307588436557893,peer,draaglom,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,139161,23.365918611612607,spot_peer,Zaldath,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,139161,18.007896120289473,peer,Zaldath,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,139161,76.30315864301384,baseline,Zaldath,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,139161,80.88525190859846,spot_baseline,Zaldath,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,139161,0.1583946396986879,relative_legacy,Zaldath,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,148850,-0.4924808267243583,relative_legacy,pasta,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,148850,-49.35083191163653,spot_peer,pasta,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,148850,44.81059306833063,spot_baseline,pasta,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,148850,47.44485464084867,baseline,pasta,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31292,"Who will be ranked 2nd on the Forbes Real-Time Billionaires List on March 29, 2025?",2025-01-17 19:21:47.519426+00,148850,-39.76225266367444,peer,pasta,Jeff Bezos,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31760 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,101465,-15.761517468931183,peer,Jgalt,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,101465,45.56630835843623,baseline,Jgalt,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,101465,-0.337960296866149,relative_legacy,Jgalt,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,101465,0.7887127715919114,spot_peer,Jgalt,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,101465,88.38602108143297,spot_baseline,Jgalt,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,103777,-0.0414046865247807,relative_legacy,datscilly,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,103777,-2.277832426469366,peer,datscilly,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,103777,82.6012757675052,spot_baseline,datscilly,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,103777,-5.638782021661166,spot_peer,datscilly,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,103777,28.60151448094492,baseline,datscilly,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,103907,110.172872418927,spot_baseline,darkives,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,103907,73.7664357332242,baseline,darkives,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,103907,16.728025543877173,peer,darkives,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,103907,0.4260819307240712,relative_legacy,darkives,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,103907,24.99632536880752,spot_peer,darkives,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,117580,3.538482691143971,baseline,MaciekK,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,117580,-6.145706885982029,spot_peer,MaciekK,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,117580,82.14504338961642,spot_baseline,MaciekK,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,117580,-0.2263597074574413,peer,MaciekK,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,117580,-0.0059185651275189,relative_legacy,MaciekK,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,119188,37.121592138956615,baseline,exmateriae,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,119188,0.5850886863813227,peer,exmateriae,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,119188,80.62227370359805,spot_baseline,exmateriae,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,119188,0.0263536813907427,relative_legacy,exmateriae,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,119188,-7.837673203780211,spot_peer,exmateriae,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,120160,-0.3339728857785413,peer,OpenSystem,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,120160,1.4832002182419983,spot_peer,OpenSystem,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,120160,42.33198355471071,baseline,OpenSystem,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,120160,0.0084486978496907,relative_legacy,OpenSystem,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,120160,89.01105978341806,spot_baseline,OpenSystem,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,131306,3.5283345823098897,baseline,draaglom,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,131306,0.6192422903078971,peer,draaglom,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,131306,17.47951215285531,spot_peer,draaglom,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,131306,103.40774052457004,spot_baseline,draaglom,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,131306,0.0153448498657334,relative_legacy,draaglom,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,131523,34.780002288247154,baseline,SpottedBear,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,131523,82.41848111457453,spot_baseline,SpottedBear,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,131523,-5.841887191584137,spot_peer,SpottedBear,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,131523,0.0151967024517658,relative_legacy,SpottedBear,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,131523,0.0578342873530978,peer,SpottedBear,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,139161,66.64205954493924,baseline,Zaldath,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,139161,76.72162892277129,spot_baseline,Zaldath,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,139161,-12.171722960254405,spot_peer,Zaldath,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,139161,-25.25425450363764,peer,Zaldath,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,139161,-0.495685252272378,relative_legacy,Zaldath,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,148850,-7.1119782482346,spot_peer,pasta,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,148850,0.4585152577625682,relative_legacy,pasta,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,148850,98.27323270982154,baseline,pasta,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,148850,81.27539916358911,spot_baseline,pasta,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31293,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on January 31, 2025?",2025-01-17 19:21:47.563432+00,148850,25.863746184354657,peer,pasta,204.08758554406455,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31761 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,101465,93.35726382610238,spot_baseline,Jgalt,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,101465,85.74479169994858,baseline,Jgalt,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,101465,-0.0025526542645222,relative_legacy,Jgalt,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,101465,0.660677195571563,spot_peer,Jgalt,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,101465,0.8238757354744981,peer,Jgalt,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,103777,0.0003352521174251,relative_legacy,datscilly,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,103777,78.49207069950204,baseline,datscilly,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,103777,0.0774154304444741,spot_peer,datscilly,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,103777,1.04616623865668,peer,datscilly,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,103777,92.5999418556223,spot_baseline,datscilly,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,103907,61.56494093535054,baseline,darkives,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,103907,1.2408931934773126,spot_peer,darkives,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,103907,1.5331766762723935,peer,darkives,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,103907,94.11063109464314,spot_baseline,darkives,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,103907,0.0099133580591736,relative_legacy,darkives,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,117580,92.5999418556223,spot_baseline,MaciekK,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,117580,16.203127628102642,baseline,MaciekK,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,117580,0.1636217199183741,peer,MaciekK,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,117580,-4.744572999702925e-05,relative_legacy,MaciekK,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,117580,0.0774154304444741,spot_peer,MaciekK,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,119188,94.11063109464314,spot_baseline,exmateriae,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,119188,1.2408931934773126,spot_peer,exmateriae,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,119188,0.0013305775831508,relative_legacy,exmateriae,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,119188,57.18821307041812,baseline,exmateriae,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,119188,0.8142598030642779,peer,exmateriae,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,120160,41.18454574388672,baseline,OpenSystem,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,120160,92.5999418556223,spot_baseline,OpenSystem,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,120160,0.0774154304444741,spot_peer,OpenSystem,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,120160,-0.0350692261471357,relative_legacy,OpenSystem,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,120160,-2.1543563648288555,peer,OpenSystem,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,131306,0.000833001992498,relative_legacy,draaglom,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,131306,0.0859819025477827,peer,draaglom,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,131306,1.2408931934773126,spot_peer,draaglom,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,131306,5.1055056233868825,baseline,draaglom,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,131306,94.11063109464314,spot_baseline,draaglom,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,131523,-0.0201381464164812,relative_legacy,SpottedBear,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,131523,59.71270306116464,baseline,SpottedBear,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,131523,-2.286739952587163,spot_peer,SpottedBear,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,131523,89.53026213333067,spot_baseline,SpottedBear,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,131523,-0.858392700849737,peer,SpottedBear,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,139161,1.2368467512722645,peer,Zaldath,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,139161,87.11123035897808,baseline,Zaldath,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,139161,0.0016134804566998,relative_legacy,Zaldath,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,139161,0.0774154304444741,spot_peer,Zaldath,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,139161,92.5999418556223,spot_baseline,Zaldath,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,148850,-0.0450004714787044,relative_legacy,pasta,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,148850,80.73728612216124,baseline,pasta,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,148850,89.37505017205658,spot_baseline,pasta,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,148850,-2.6911797615277004,peer,pasta,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31294,Will Eric Adams be Mayor of New York City on the 1st of April 2025?,2025-01-17 19:21:47.590742+00,148850,-2.406278545194171,spot_peer,pasta,yes,2025-01-22 20:19:00+00,2025-01-22 20:19:00+00,1.0,31762 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,101465,7.141905001426095,peer,Jgalt,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,101465,0.0477299103254877,relative_legacy,Jgalt,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,101465,0.7418443515196133,spot_peer,Jgalt,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,101465,14.393474510900848,baseline,Jgalt,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,101465,21.326656905833666,spot_baseline,Jgalt,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,103777,17.68521247201626,baseline,datscilly,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,103777,16.346720372031644,peer,datscilly,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,103777,17.508347007074487,spot_peer,datscilly,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,103777,0.1380971952448818,relative_legacy,datscilly,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,103777,32.07730145437618,spot_baseline,datscilly,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,103907,68.14453213329301,spot_baseline,darkives,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,103907,0.356027248855521,relative_legacy,darkives,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,103907,36.51032615376852,peer,darkives,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,103907,29.50819248246706,baseline,darkives,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,103907,73.7581203323913,spot_peer,darkives,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,117580,-32.518807884838154,spot_peer,MaciekK,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,117580,0.0,spot_baseline,MaciekK,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,117580,-0.0891657900542567,relative_legacy,MaciekK,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,117580,-4.575197524790747,peer,MaciekK,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,117580,0.0,baseline,MaciekK,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,119188,-37.02157429304067,peer,exmateriae,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,119188,-19.796433816556963,spot_baseline,exmateriae,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,119188,-63.392953026286186,spot_peer,exmateriae,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,119188,-0.484190610077825,relative_legacy,exmateriae,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,119188,-12.96425759200125,baseline,exmateriae,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,120160,-29.244432601153367,peer,OpenSystem,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,120160,-9.735568220954498,baseline,OpenSystem,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,120160,-0.3968086012421616,relative_legacy,OpenSystem,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,120160,-57.62245740768674,spot_peer,OpenSystem,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,120160,-16.096404744368115,spot_baseline,OpenSystem,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,131306,54.118367055970126,spot_peer,draaglom,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,131306,3.2646813241198065,peer,draaglom,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,131306,0.0098369388023638,relative_legacy,draaglom,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,131306,3.376445815946695,baseline,draaglom,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,131306,55.551565619437206,spot_baseline,draaglom,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,139161,-0.3634654099479084,relative_legacy,Zaldath,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,139161,0.0,spot_baseline,Zaldath,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,139161,-32.518807884838154,spot_peer,Zaldath,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,139161,-7.732091359926514,baseline,Zaldath,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,139161,-24.498129395444185,peer,Zaldath,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,148850,0.3303872313057431,relative_legacy,pasta,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,148850,32.07570096308292,peer,pasta,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,148850,44.71882950197252,baseline,pasta,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,148850,46.45167393229281,spot_baseline,pasta,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31321,How many Grammy awards will Taylor Swift win in 2025?,2025-01-21 13:57:50.512496+00,148850,39.92634745669386,spot_peer,pasta,0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31797 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,101465,0.0143453055362055,relative_legacy,Jgalt,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,101465,41.92189826345128,spot_baseline,Jgalt,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,101465,-6.4304218982137575,spot_peer,Jgalt,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,101465,24.93471576809012,baseline,Jgalt,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,101465,2.0106297225899192,peer,Jgalt,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,103777,47.34844321409718,spot_baseline,datscilly,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,103777,25.62166297738449,baseline,datscilly,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,103777,0.0900161623723921,relative_legacy,datscilly,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,103777,-0.4009275086072126,spot_peer,datscilly,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,103777,4.801287916737457,peer,datscilly,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,103907,39.9425418669063,spot_baseline,darkives,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,103907,0.1864422866652028,relative_legacy,darkives,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,103907,37.546318669584025,baseline,darkives,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,103907,-8.62970678326373,spot_peer,darkives,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,103907,11.82049060624648,peer,darkives,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,117580,13.935005913438545,baseline,MaciekK,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,117580,6.809705237235184,peer,MaciekK,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,117580,37.26611855810072,spot_peer,MaciekK,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,117580,0.1420068256952681,relative_legacy,MaciekK,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,117580,81.24878467413431,spot_baseline,MaciekK,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,119188,44.90618418111888,spot_baseline,exmateriae,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,119188,-9.191359278514737,peer,exmateriae,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,119188,-0.2073820894191394,relative_legacy,exmateriae,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,119188,23.798289928535645,baseline,exmateriae,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,119188,-3.1145486563608764,spot_peer,exmateriae,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,120160,1.9965770568834456,peer,OpenSystem,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,120160,0.017122694399323,relative_legacy,OpenSystem,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,120160,10.085552881262316,baseline,OpenSystem,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,120160,8.224984102497734,spot_peer,OpenSystem,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,120160,55.111763664091626,spot_baseline,OpenSystem,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,131306,4.213222664475439,baseline,draaglom,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,131306,0.0191583467433914,relative_legacy,draaglom,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,131306,63.160811558147856,spot_baseline,draaglom,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,131306,17.168370651449095,spot_peer,draaglom,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,131306,1.1452381081931975,peer,draaglom,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,131523,2.96123042098979,peer,SpottedBear,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,131523,0.0307077922483114,relative_legacy,SpottedBear,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,131523,-7.030597560345748,spot_peer,SpottedBear,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,131523,41.38174016753249,spot_baseline,SpottedBear,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,131523,27.760693539239348,baseline,SpottedBear,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,139161,-5.955297175042601,peer,Zaldath,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,139161,29.89965220678856,spot_baseline,Zaldath,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,139161,-0.178016047616105,relative_legacy,Zaldath,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,139161,-19.78847307228346,spot_peer,Zaldath,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,139161,15.864044273814905,baseline,Zaldath,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,148850,-17.26479783297306,spot_peer,pasta,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,148850,15.30279977903226,baseline,pasta,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,148850,-16.398502615318193,peer,pasta,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,148850,32.17095992216791,spot_baseline,pasta,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31322,"What will US airline passenger volume be for Presidents' Day Weekend (February 14-17, 2025), according to the TSA?",2025-01-21 13:57:50.54187+00,148850,-0.4230663108330801,relative_legacy,pasta,9901228.0,2025-01-23 23:23:00+00,2025-01-23 23:23:00+00,1.0,31798 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,101465,-6.968447176748801,peer,Jgalt,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,101465,30.42984455261565,baseline,Jgalt,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,101465,-0.1852908535905018,relative_legacy,Jgalt,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,101465,-7.995602823816656,spot_peer,Jgalt,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,101465,33.300627753530485,spot_baseline,Jgalt,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,103777,27.714704225163477,spot_baseline,datscilly,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,103777,-7.720510806085918,peer,datscilly,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,103777,-0.2162491553894482,relative_legacy,datscilly,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,103777,-14.202184522002224,spot_peer,datscilly,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,103777,15.434166523426288,baseline,datscilly,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,103907,24.30832474094318,baseline,darkives,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,103907,-0.2639675900472145,relative_legacy,darkives,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,103907,-12.43928975831402,spot_peer,darkives,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,103907,29.30130951248285,spot_baseline,darkives,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,103907,-9.990356902088749,peer,darkives,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,117580,0.0277676901981916,peer,MaciekK,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,117580,-0.0004221831714185,relative_legacy,MaciekK,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,117580,41.28950615369835,spot_baseline,MaciekK,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,117580,0.8809287319254134,spot_peer,MaciekK,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,117580,1.163880294384696,baseline,MaciekK,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,119188,1.6209732506168963,spot_peer,exmateriae,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,119188,26.666581230017687,baseline,exmateriae,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,119188,1.572857105897587,peer,exmateriae,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,119188,0.010935595432875,relative_legacy,exmateriae,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,119188,41.95554622052068,spot_baseline,exmateriae,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,120160,2.657741047349921,peer,OpenSystem,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,120160,15.122063536654906,baseline,OpenSystem,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,120160,7.823359238914954,spot_peer,OpenSystem,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,120160,47.53769360998893,spot_baseline,OpenSystem,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,120160,0.0511884394778986,relative_legacy,OpenSystem,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,131306,0.0002449654039256,relative_legacy,draaglom,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,131306,41.74112687830144,spot_baseline,draaglom,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,131306,0.0156236405521783,peer,draaglom,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,131306,1.3827295370399653,spot_peer,draaglom,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,131306,0.1569952713114878,baseline,draaglom,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,131523,0.1936918173257937,relative_legacy,SpottedBear,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,131523,32.301953757733585,baseline,SpottedBear,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,131523,52.2979807301091,spot_baseline,SpottedBear,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,131523,8.90353244846099,peer,SpottedBear,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,131523,13.112567150159592,spot_peer,SpottedBear,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,139161,1.3136759515673593,peer,Zaldath,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,139161,42.05725377647333,spot_baseline,Zaldath,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,139161,1.7339816461198383,spot_peer,Zaldath,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,139161,0.0100609470144883,relative_legacy,Zaldath,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,139161,23.203636092875037,baseline,Zaldath,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,148850,43.62406511383533,baseline,pasta,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,148850,47.77095408938625,spot_baseline,pasta,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,148850,0.1930460665184747,relative_legacy,pasta,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,148850,8.082537549356438,spot_peer,pasta,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31337,What will be the monthly cargo volumes at the Port of NY–NJ for January 2025?,2025-01-21 14:24:54.415496+00,148850,10.188117000897394,peer,pasta,720283.0,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31813 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,101465,3.1440578744429537,spot_peer,Jgalt,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,101465,28.0944579825306,baseline,Jgalt,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,101465,0.0105799709388692,relative_legacy,Jgalt,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,101465,87.97057662822883,spot_baseline,Jgalt,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,101465,0.5752555575943372,peer,Jgalt,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,103777,-0.4201272734615643,peer,datscilly,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,103777,42.69213807224713,baseline,datscilly,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,103777,84.79969065549501,spot_baseline,datscilly,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,103777,0.0005101322684645,relative_legacy,datscilly,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,103777,0.701957127912381,spot_peer,datscilly,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,103907,40.3056460622797,baseline,darkives,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,103907,-1.0400220631131607,spot_peer,darkives,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,103907,-1.2965201922943457,peer,darkives,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,103907,82.53786038929313,spot_baseline,darkives,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,103907,-0.0105350450274458,relative_legacy,darkives,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,117580,0.701957127912381,spot_peer,MaciekK,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,117580,84.79969065549501,spot_baseline,MaciekK,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,117580,0.0117483852722652,peer,MaciekK,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,117580,0.0005101322684645,relative_legacy,MaciekK,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,117580,2.2565268508247813,baseline,MaciekK,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,119188,25.093639961354263,baseline,exmateriae,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,119188,92.5999418556223,spot_baseline,exmateriae,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,119188,-0.0891139245736637,relative_legacy,exmateriae,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,119188,-11.890581911481352,peer,exmateriae,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,119188,6.709426157943023,spot_peer,exmateriae,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,120160,-0.0095152861280652,relative_legacy,OpenSystem,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,120160,-1.7950268556496876,spot_peer,OpenSystem,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,120160,25.2193468350114,baseline,OpenSystem,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,120160,81.55754288625727,spot_baseline,OpenSystem,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,120160,-1.001126308433581,peer,OpenSystem,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,131306,-12.385046833908005,spot_peer,draaglom,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,131306,1.5463932255793362,baseline,draaglom,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,131306,-0.267497986178883,peer,draaglom,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,131306,-0.0031516228474228,relative_legacy,draaglom,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,131306,67.80719051126377,spot_baseline,draaglom,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,131523,76.55347463629771,spot_baseline,SpottedBear,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,131523,-5.648977743193033,spot_peer,SpottedBear,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,131523,47.85846675311964,baseline,SpottedBear,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,131523,-5.002453297091574,peer,SpottedBear,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,131523,-0.0547208595816874,relative_legacy,SpottedBear,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,139161,11.997549312942846,peer,Zaldath,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,139161,6.709426157943023,spot_peer,Zaldath,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,139161,67.68243200656299,baseline,Zaldath,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,139161,0.1343926412173727,relative_legacy,Zaldath,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,139161,92.5999418556223,spot_baseline,Zaldath,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,148850,7.293753713131849,peer,pasta,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,148850,87.65660587517209,spot_baseline,pasta,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,148850,26.24900114034984,baseline,pasta,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,148850,0.0438208747912381,relative_legacy,pasta,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31338,"At the end of March 2025, will Wikipedia still list all these countries as ""currently"" blocking access to Twitter/X?",2025-01-21 14:24:54.440961+00,148850,2.902249049710123,spot_peer,pasta,yes,2025-01-24 14:23:00+00,2025-01-24 14:23:00+00,1.0,31814 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,101465,0.0055989595363703,relative_legacy,Jgalt,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,101465,11.809272104814328,spot_peer,Jgalt,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,101465,1.5096758242667203,peer,Jgalt,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,101465,63.51149536189988,spot_baseline,Jgalt,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,101465,33.4845321010493,baseline,Jgalt,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,103777,-0.8019344287702764,spot_peer,datscilly,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,103777,-0.9798142422155872,peer,datscilly,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,103777,24.227459090372665,baseline,datscilly,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,103777,55.551565619437206,spot_baseline,datscilly,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,103777,-0.0227055053886914,relative_legacy,datscilly,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,103907,68.0322601230108,spot_baseline,darkives,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,103907,0.1082738918575693,relative_legacy,darkives,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,103907,9.889060274339451,peer,darkives,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,103907,36.18848241487412,baseline,darkives,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,103907,18.97168432913155,spot_peer,darkives,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,117580,-0.0957220142962948,peer,MaciekK,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,117580,45.53663309514563,spot_baseline,MaciekK,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,117580,-16.66895669782352,spot_peer,MaciekK,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,117580,-0.0010168326490059,relative_legacy,MaciekK,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,117580,1.947997228571792,baseline,MaciekK,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,120160,-0.0028709481648302,relative_legacy,OpenSystem,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,120160,35.2078780596949,baseline,OpenSystem,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,120160,1.295109990452186,spot_peer,OpenSystem,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,120160,1.062972265115221,peer,OpenSystem,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,120160,56.87517618749676,spot_baseline,OpenSystem,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,131306,-15.94179169350025,spot_peer,draaglom,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,131306,-0.1600155127156096,relative_legacy,draaglom,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,131306,-12.048263648711677,peer,draaglom,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,131306,38.73352546544501,baseline,draaglom,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,131306,45.9956044338654,spot_baseline,draaglom,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,139161,-0.0277130730164296,relative_legacy,Zaldath,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,139161,-0.8244115537525805,peer,Zaldath,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,139161,1.295109990452186,spot_peer,Zaldath,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,139161,46.60075848731687,baseline,Zaldath,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,139161,56.87517618749676,spot_baseline,Zaldath,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,148850,0.0415064052437207,spot_peer,pasta,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,148850,46.58884045142174,baseline,pasta,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,148850,56.08392782941263,spot_baseline,pasta,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,148850,1.486503095254768,peer,pasta,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +31368,"What will be the return of the Egyptian stock market index, the EGX 30, in January 2025?",2025-01-23 17:55:33.624099+00,148850,-0.005604602677049,relative_legacy,pasta,≥0% and <5%,2025-01-27 13:34:00+00,2025-01-27 13:34:00+00,1.0,31862 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,101465,13.420384062845075,baseline,Jgalt,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,101465,26.303440583379384,spot_baseline,Jgalt,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,101465,-8.110485504073528,peer,Jgalt,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,101465,-0.0847124121105665,relative_legacy,Jgalt,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,101465,-10.060206310270264,spot_peer,Jgalt,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,103777,-0.5972253571794267,peer,datscilly,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,103777,0.0064186136167297,relative_legacy,datscilly,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,103777,13.966460943782174,baseline,datscilly,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,103777,-1.0554016969974134,spot_peer,datscilly,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,103777,32.07730145437618,spot_baseline,datscilly,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,103907,-3.977643917364233,spot_peer,darkives,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,103907,16.30817287703214,baseline,darkives,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,103907,30.20356618344304,spot_baseline,darkives,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,103907,-2.272147515614499,peer,darkives,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,103907,-0.0173132233800383,relative_legacy,darkives,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,117580,-1.0554016969974134,spot_peer,MaciekK,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,117580,-0.0595521660518444,peer,MaciekK,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,117580,32.07730145437618,spot_baseline,MaciekK,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,117580,1.7984472727175964,baseline,MaciekK,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,117580,0.0019658946232126,relative_legacy,MaciekK,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,119188,0.0002016523209157,relative_legacy,exmateriae,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,119188,-0.1519888796908075,peer,exmateriae,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,119188,-3.977643917364233,spot_peer,exmateriae,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,119188,30.20356618344304,spot_baseline,exmateriae,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,119188,1.1652316062910053,baseline,exmateriae,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,120160,8.270824688421671,peer,OpenSystem,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,120160,22.13946868230932,baseline,OpenSystem,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,120160,15.04344321257834,spot_peer,OpenSystem,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,120160,42.39984532774751,spot_baseline,OpenSystem,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,120160,0.11070523913633,relative_legacy,OpenSystem,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,131523,0.3777387029634448,spot_peer,SpottedBear,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,131523,1.365720736724942,baseline,SpottedBear,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,131523,32.99622792011891,spot_baseline,SpottedBear,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,131523,0.0168287048934633,peer,SpottedBear,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,131523,0.002336071698228,relative_legacy,SpottedBear,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,139161,1.7928517012351937,spot_peer,Zaldath,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,139161,0.791158284576222,peer,Zaldath,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,139161,0.0223219844681636,relative_legacy,Zaldath,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,139161,33.903595255631885,spot_baseline,Zaldath,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,139161,16.612619221266847,baseline,Zaldath,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,148850,0.0333169710787358,relative_legacy,pasta,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,148850,19.11814617097979,baseline,pasta,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,148850,2.1125877447187325,peer,pasta,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,148850,34.62135990448539,spot_baseline,pasta,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33874,How many Grammy awards will Sabrina Carpenter win in 2025?,2025-01-25 07:08:58.510827+00,148850,2.912263922216616,spot_peer,pasta,2,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34377 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,101465,58.14205757732287,spot_peer,Jgalt,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,101465,20.82461476564433,peer,Jgalt,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,101465,39.782984223985984,spot_baseline,Jgalt,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,101465,0.1876125128774176,relative_legacy,Jgalt,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,101465,24.347127911569267,baseline,Jgalt,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,103777,27.87386690004844,spot_baseline,datscilly,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,103777,-0.0232806945316974,relative_legacy,datscilly,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,103777,12.75974469514834,baseline,datscilly,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,103777,11.234253402920755,peer,datscilly,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,103777,44.74430058789315,spot_peer,datscilly,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,103907,-60.70297260149604,peer,darkives,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,103907,-190.7542395531161,spot_peer,darkives,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,103907,-52.178380299326406,baseline,darkives,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,103907,-1.7010953685868826,relative_legacy,darkives,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,103907,-181.4581687808487,spot_baseline,darkives,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,117580,-0.034668894706406,relative_legacy,MaciekK,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,117580,-0.108113062436266,peer,MaciekK,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,117580,-3.4676866667694792,spot_peer,MaciekK,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,117580,-14.981232881873888,spot_baseline,MaciekK,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,117580,-0.7202576580629838,baseline,MaciekK,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,119188,34.21261805726201,spot_peer,exmateriae,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,119188,0.0109272031260705,relative_legacy,exmateriae,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,119188,0.8034477942824546,baseline,exmateriae,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,119188,1.4920289354747316,peer,exmateriae,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,119188,18.51237131726521,spot_baseline,exmateriae,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,120160,-55.11552258924253,spot_baseline,OpenSystem,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,120160,-0.093158111360268,relative_legacy,OpenSystem,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,120160,-2.737061640539334,baseline,OpenSystem,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,120160,-48.6187625875592,spot_peer,OpenSystem,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,120160,-2.3803950111690533,peer,OpenSystem,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,131523,25.881690886914885,spot_peer,SpottedBear,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,131523,11.107102721401104,spot_baseline,SpottedBear,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,131523,0.0014361100121576,relative_legacy,SpottedBear,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,131523,0.986113594295174,peer,SpottedBear,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,131523,0.4250680313755922,baseline,SpottedBear,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,139161,0.2025218770296902,relative_legacy,Zaldath,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,139161,21.578219291488537,peer,Zaldath,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,139161,34.48609047791303,spot_baseline,Zaldath,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,139161,52.18305211299081,spot_peer,Zaldath,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,139161,22.327248077755225,baseline,Zaldath,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,148850,12.950944331096268,baseline,pasta,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,148850,-0.112658765638817,relative_legacy,pasta,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,148850,27.676969585061745,spot_peer,pasta,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,148850,12.702906008642753,spot_baseline,pasta,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33875,"On February 1, 2025, what will be the highest average win rate shown at the Chatbot Arena LLM Leaderboard?",2025-01-25 07:08:58.538161+00,148850,7.076250685277775,peer,pasta,0.5796628,2025-01-27 23:00:00+00,2025-01-27 23:00:00+00,1.0,34378 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,101465,-0.0188020936535082,relative_legacy,Jgalt,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,101465,92.5999418556223,spot_baseline,Jgalt,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,101465,-1.5399850311629866,peer,Jgalt,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,101465,0.4790415047386772,spot_peer,Jgalt,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,101465,70.08247512827117,baseline,Jgalt,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,103777,-3.0863267787613724,spot_peer,datscilly,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,103777,87.97057662822883,spot_baseline,datscilly,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,103777,-0.8291918660352755,peer,datscilly,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,103777,20.99078292951487,baseline,datscilly,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,103777,-0.0110461934335529,relative_legacy,datscilly,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,103907,0.0006233064850683,relative_legacy,darkives,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,103907,72.84903144435756,baseline,darkives,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,103907,0.4790415047386772,spot_peer,darkives,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,103907,92.5999418556223,spot_baseline,darkives,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,103907,0.2375787307761057,peer,darkives,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,117580,-0.6967484208765518,spot_peer,MaciekK,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,117580,-0.046323390217864,peer,MaciekK,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,117580,-0.0008715875681647,relative_legacy,MaciekK,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,117580,91.07326619029126,spot_baseline,MaciekK,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,117580,5.199423060588743,baseline,MaciekK,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,119188,0.0489274394638761,peer,exmateriae,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,119188,92.5999418556223,spot_baseline,exmateriae,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,119188,23.71740992438504,baseline,exmateriae,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,119188,0.4790415047386772,spot_peer,exmateriae,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,119188,1.3038808772363229e-05,relative_legacy,exmateriae,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,120160,0.4790415047386772,spot_peer,OpenSystem,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,120160,0.1504022436407902,peer,OpenSystem,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,120160,1.2027569825157232e-05,relative_legacy,OpenSystem,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,120160,92.5999418556223,spot_baseline,OpenSystem,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,120160,71.2960886988001,baseline,OpenSystem,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,131306,0.0212400464042307,peer,draaglom,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,131306,0.0,relative_legacy,draaglom,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,131306,5.278117730670567,baseline,draaglom,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,131306,92.5999418556223,spot_baseline,draaglom,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,131306,0.4790415047386772,spot_peer,draaglom,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,131523,-0.000838320452224,relative_legacy,SpottedBear,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,131523,89.53026213333065,spot_baseline,SpottedBear,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,131523,2.2810666059560374,baseline,SpottedBear,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,131523,-1.8851138782929933,spot_peer,SpottedBear,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,131523,-0.0519115507427526,peer,SpottedBear,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,139161,69.7155786293615,baseline,Zaldath,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,139161,1.2027569825157232e-05,relative_legacy,Zaldath,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,139161,0.1093030417526901,peer,Zaldath,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,139161,92.5999418556223,spot_baseline,Zaldath,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,139161,0.4790415047386772,spot_peer,Zaldath,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,148850,1.8999603361211743,peer,pasta,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,148850,95.60566524124027,spot_baseline,pasta,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,148850,2.7939400494989,spot_peer,pasta,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,148850,0.0216385532848165,relative_legacy,pasta,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33876,"Will any of these companies get dropped from the Dow Jones Industrial Average before April 1, 2025?",2025-01-25 07:08:58.563789+00,148850,68.91771871041549,baseline,pasta,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34379 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,101465,-3.2956629717191577,peer,Jgalt,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,101465,0.0020083295306506,relative_legacy,Jgalt,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,101465,58.496250072115615,spot_baseline,Jgalt,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,101465,1.1886790365691549,spot_peer,Jgalt,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,101465,23.4919585203199,baseline,Jgalt,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,103777,1.3798020374015518,baseline,datscilly,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,103777,-0.1040141960104102,relative_legacy,datscilly,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,103777,5.658352836636751,spot_baseline,datscilly,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,103777,-9.44690407926098,peer,datscilly,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,103777,-39.50514262508451,spot_peer,datscilly,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,103907,58.220324083463815,baseline,darkives,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,103907,0.17860122023928,relative_legacy,darkives,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,103907,18.31653235070897,spot_peer,darkives,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,103907,15.578055446731431,peer,darkives,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,103907,80.73549220576041,spot_baseline,darkives,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,117580,5.22184475978002,baseline,MaciekK,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,117580,21.446629791453024,spot_peer,MaciekK,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,117580,84.79969065549501,spot_baseline,MaciekK,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,117580,1.350313664867923,peer,MaciekK,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,117580,0.0165058201882087,relative_legacy,MaciekK,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,119188,-11.34415364624689,spot_peer,exmateriae,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,119188,-0.0200113935542244,relative_legacy,exmateriae,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,119188,11.685963952668711,baseline,exmateriae,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,119188,-2.887477878973188,peer,exmateriae,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,119188,42.22330006830476,spot_baseline,exmateriae,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,120160,18.66861061446923,baseline,OpenSystem,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,120160,8.359625829632634,spot_peer,OpenSystem,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,120160,2.799642899166517,peer,OpenSystem,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,120160,0.0504669940160155,relative_legacy,OpenSystem,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,120160,67.80719051126377,spot_baseline,OpenSystem,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,131306,0.5992488873669455,peer,draaglom,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,131306,15.09569492034761,spot_peer,draaglom,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,131306,3.097262628811696,baseline,draaglom,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,131306,76.55347463629771,spot_baseline,draaglom,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,131306,0.0055121021959309,relative_legacy,draaglom,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,131523,0.4660715125112957,baseline,SpottedBear,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,131523,26.303440583379377,spot_baseline,SpottedBear,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,131523,-0.4693194079221143,peer,SpottedBear,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,131523,-0.005810754097355,relative_legacy,SpottedBear,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,131523,-23.60504888723193,spot_peer,SpottedBear,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,139161,-15.301293402507724,peer,Zaldath,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,139161,-6.477195573092109,spot_peer,Zaldath,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,139161,-0.1162315841113283,relative_legacy,Zaldath,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,139161,48.54268271702416,spot_baseline,Zaldath,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,139161,28.265359164994805,baseline,Zaldath,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,148850,16.52437880294412,spot_peer,pasta,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,148850,11.073396842250345,peer,pasta,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,148850,0.1617281930308633,relative_legacy,pasta,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,148850,46.14741268647248,baseline,pasta,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33877,"Will Virgin Galactic fail to make make any new posts on its News page before April 1, 2025? ",2025-01-25 07:08:58.592343+00,148850,78.40851427347569,spot_baseline,pasta,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34380 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,101465,-0.0096591860368681,relative_legacy,Jgalt,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,101465,27.704659091094747,baseline,Jgalt,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,101465,-2.725715869191979,peer,Jgalt,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,101465,48.54268271702416,spot_baseline,Jgalt,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,101465,-0.6429467270093857,spot_peer,Jgalt,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,103777,-0.1208316803935488,relative_legacy,datscilly,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,103777,0.0,baseline,datscilly,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,103777,0.0,spot_baseline,datscilly,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,103777,-9.674982372924744,peer,datscilly,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,103777,-38.02875079603304,spot_peer,datscilly,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,103907,67.80719051126377,spot_baseline,darkives,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,103907,7.671264694283493,peer,darkives,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,103907,48.884707203650855,baseline,darkives,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,103907,14.193874675715366,spot_peer,darkives,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,103907,0.1088458437987471,relative_legacy,darkives,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,117580,0.0032743018221184,relative_legacy,MaciekK,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,117580,7.022927882651883,spot_peer,MaciekK,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,117580,0.7276816452263968,peer,MaciekK,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,117580,5.166780335929504,baseline,MaciekK,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,117580,58.496250072115615,spot_baseline,MaciekK,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,119188,-0.0568116185919558,relative_legacy,exmateriae,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,119188,-12.349670688990086,spot_peer,exmateriae,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,119188,-6.570321046950061,peer,exmateriae,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,119188,18.8979757783652,baseline,exmateriae,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,119188,33.34237337251918,spot_baseline,exmateriae,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,120160,37.85116232537298,spot_baseline,OpenSystem,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,120160,10.527626628067589,baseline,OpenSystem,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,120160,-2.1105970269826893,peer,OpenSystem,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,120160,-8.877165855200703,spot_peer,OpenSystem,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,120160,-0.0247938449181066,relative_legacy,OpenSystem,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,131306,0.0,relative_legacy,draaglom,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,131306,0.3407781144532965,peer,draaglom,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,131306,58.496250072115615,spot_baseline,draaglom,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,131306,2.702469272625806,baseline,draaglom,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,131306,7.022927882651883,spot_peer,draaglom,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,131523,0.2425741753856772,peer,SpottedBear,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,131523,7.022927882651883,spot_peer,SpottedBear,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,131523,1.9815973973033685,baseline,SpottedBear,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,131523,2.1788242272044896e-05,relative_legacy,SpottedBear,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,131523,58.496250072115615,spot_baseline,SpottedBear,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,139161,3.645715691030005,peer,Zaldath,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,139161,58.496250072115615,spot_baseline,Zaldath,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,139161,0.0694437255412744,relative_legacy,Zaldath,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,139161,7.022927882651883,spot_peer,Zaldath,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,139161,45.85303300651239,baseline,Zaldath,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,148850,72.2466024471091,spot_baseline,pasta,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,148850,17.612947860910197,spot_peer,pasta,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,148850,8.453601995670589,peer,pasta,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,148850,39.32096171017631,baseline,pasta,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33878,"Will SpaceX fail to make any new posts on its Updates page before April 1, 2025? ",2025-01-25 07:08:58.619364+00,148850,0.1235378316128228,relative_legacy,pasta,no,2025-01-28 22:00:00+00,2025-01-28 22:00:00+00,1.0,34381 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,101465,0.0042490492266674,relative_legacy,Jgalt,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,101465,12.897086468878497,baseline,Jgalt,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,101465,1.9166246444042083,peer,Jgalt,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,101465,27.3166972139158,spot_baseline,Jgalt,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,101465,0.9929031550803749,spot_peer,Jgalt,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,103777,-0.0213428669319239,relative_legacy,datscilly,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,103777,-0.2770652736174951,peer,datscilly,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,103777,23.178533591891043,spot_baseline,datscilly,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,103777,-4.121613928554835,spot_peer,datscilly,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,103777,8.147917477756474,baseline,datscilly,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,103907,-12.98021975391424,peer,darkives,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,103907,-0.1926747868481008,relative_legacy,darkives,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,103907,10.72107392856277,spot_baseline,darkives,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,103907,7.212946638116188,baseline,darkives,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,103907,-19.51827198423953,spot_peer,darkives,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,117580,0.4571564167691657,peer,MaciekK,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,117580,45.58253107832961,spot_baseline,MaciekK,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,117580,0.8841663044367922,baseline,MaciekK,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,117580,0.0050005141250399,relative_legacy,MaciekK,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,117580,23.568356394572376,spot_peer,MaciekK,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,119188,24.61302493383128,baseline,exmateriae,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,119188,6.923872521147368,peer,exmateriae,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,119188,0.0445958028032123,relative_legacy,exmateriae,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,119188,31.27488268009672,spot_baseline,exmateriae,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,119188,5.884978248300978,spot_peer,exmateriae,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,120160,0.0042490492266674,relative_legacy,OpenSystem,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,120160,1.91091449830417,peer,OpenSystem,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,120160,0.9929031550803749,spot_peer,OpenSystem,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,120160,12.394829818601089,baseline,OpenSystem,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,120160,27.3166972139158,spot_baseline,OpenSystem,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,131306,29.317303519295944,spot_baseline,draaglom,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,131306,3.4655301609425817,spot_peer,draaglom,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,131306,5.8231636355645335e-05,relative_legacy,draaglom,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,131306,0.4713629225814918,peer,draaglom,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,131306,2.42306163075837,baseline,draaglom,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,139161,27.24741286610729,baseline,Zaldath,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,139161,-0.025119718630985,relative_legacy,Zaldath,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,139161,-12.25768835626276,spot_peer,Zaldath,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,139161,2.512667033461952,peer,Zaldath,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,139161,16.595623285353042,spot_baseline,Zaldath,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,148850,-0.935313009136666,peer,pasta,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,148850,0.9929031550803749,spot_peer,pasta,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,148850,27.3166972139158,spot_baseline,pasta,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,148850,26.422103534415903,baseline,pasta,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33879,How many arms sales globally will the US State Department approve in March 2025?,2025-01-25 07:08:58.779381+00,148850,-0.0363143493279186,relative_legacy,pasta,5-9,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34382 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,101465,0.2772815020449091,spot_peer,Jgalt,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,101465,99.13177569001992,spot_baseline,Jgalt,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,101465,-0.0006006251845452,relative_legacy,Jgalt,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,101465,-0.043016398388039,peer,Jgalt,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,101465,29.679846135714502,baseline,Jgalt,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,103777,98.5500430304885,spot_baseline,datscilly,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,103777,-0.1763481448481642,spot_peer,datscilly,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,103777,0.0010533649516117,peer,datscilly,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,103777,37.39025459104602,baseline,datscilly,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,103777,-6.363115323400978e-05,relative_legacy,datscilly,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,103907,-0.1763481448481642,spot_peer,darkives,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,103907,-6.363115323400978e-05,relative_legacy,darkives,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,103907,0.0010533649516117,peer,darkives,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,103907,35.14729630100688,baseline,darkives,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,103907,98.5500430304885,spot_baseline,darkives,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,117580,1.5236776899330144,baseline,MaciekK,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,117580,0.0037666951220658,peer,MaciekK,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,117580,1.586777873323696e-05,relative_legacy,MaciekK,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,117580,99.27684307689242,spot_baseline,MaciekK,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,117580,0.3904036835220199,spot_peer,MaciekK,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,119188,36.156517735685625,baseline,exmateriae,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,119188,0.0010533649516117,peer,exmateriae,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,119188,98.5500430304885,spot_baseline,exmateriae,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,119188,-0.1763481448481642,spot_peer,exmateriae,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,119188,-6.363115323400978e-05,relative_legacy,exmateriae,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,120160,44.12860782730927,baseline,OpenSystem,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,120160,-0.1763481448481642,spot_peer,OpenSystem,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,120160,-6.363115323400978e-05,relative_legacy,OpenSystem,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,120160,0.0010533649516117,peer,OpenSystem,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,120160,98.5500430304885,spot_baseline,OpenSystem,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,131306,99.27684307689242,spot_baseline,draaglom,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,131306,0.0004659901765673,relative_legacy,draaglom,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,131306,0.3904036835220199,spot_peer,draaglom,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,131306,7.2343327314051376,baseline,draaglom,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,131306,0.0329295135562969,peer,draaglom,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,139161,96.1765277488695,baseline,Zaldath,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,139161,-0.1763481448481642,spot_peer,Zaldath,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,139161,-6.363115323400978e-05,relative_legacy,Zaldath,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,139161,0.0010533649516117,peer,Zaldath,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,148850,98.5500430304885,spot_baseline,pasta,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,148850,65.54629536650705,baseline,pasta,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,148850,0.0010533649516117,peer,pasta,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,148850,-0.1763481448481642,spot_peer,pasta,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33880,"Will the Secretary of the US Department of Health and Human Services declare a public health emergency for Marburg virus disease before April 1, 2025?",2025-01-25 07:08:58.806085+00,148850,-6.363115323400978e-05,relative_legacy,pasta,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34383 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,101465,46.834537713347565,baseline,Jgalt,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,101465,0.0053185976031048,relative_legacy,Jgalt,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,101465,0.5281337841240399,spot_peer,Jgalt,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,101465,0.3254711364937166,peer,Jgalt,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,101465,99.71117206751734,spot_baseline,Jgalt,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,103777,0.0,relative_legacy,datscilly,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,103777,-0.0911705957414096,peer,datscilly,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,103777,-0.3773036989441551,spot_peer,datscilly,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,103777,36.720310186420654,baseline,datscilly,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,103777,98.5500430304885,spot_baseline,datscilly,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,103907,-0.3773036989441551,spot_peer,darkives,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,103907,98.5500430304885,spot_baseline,darkives,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,103907,-0.0906270293344909,peer,darkives,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,103907,0.0,relative_legacy,darkives,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,103907,36.51563353946193,baseline,darkives,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,117580,0.0170366324719648,peer,MaciekK,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,117580,0.5281337841240399,spot_peer,MaciekK,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,117580,3.2165005211334163,baseline,MaciekK,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,117580,0.0003745590464203,relative_legacy,MaciekK,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,117580,99.71117206751734,spot_baseline,MaciekK,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,119188,0.1894481294260325,spot_peer,exmateriae,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,119188,99.27684307689242,spot_baseline,exmateriae,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,119188,0.0058491305916718,relative_legacy,exmateriae,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,119188,0.4939952024109985,peer,exmateriae,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,119188,97.7497149323168,baseline,exmateriae,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,120160,-0.3773036989441551,spot_peer,OpenSystem,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,120160,0.0,relative_legacy,OpenSystem,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,120160,98.5500430304885,spot_baseline,OpenSystem,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,120160,38.3951891262408,baseline,OpenSystem,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,120160,-0.0967306336162083,peer,OpenSystem,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,131306,99.85565831303312,spot_baseline,draaglom,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,131306,0.0549050751870419,peer,draaglom,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,131306,0.0010436459867579,relative_legacy,draaglom,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,131306,0.6408027970466126,spot_peer,draaglom,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,131306,7.981980484355192,baseline,draaglom,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,139161,-0.0012608192489298,relative_legacy,Zaldath,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,139161,-0.2497804532016457,peer,Zaldath,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,139161,96.40696450183144,baseline,Zaldath,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,139161,-0.3773036989441551,spot_peer,Zaldath,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,148850,-0.0027466082083535,relative_legacy,pasta,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,148850,-0.3630993346700009,peer,pasta,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,148850,-0.3773036989441551,spot_peer,pasta,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,148850,98.5500430304885,spot_baseline,pasta,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33881,"Before April 1, 2025, will the government of Scotland officially announce a date for an independence referendum?",2025-01-25 07:08:58.83411+00,148850,65.9472442132997,baseline,pasta,no,2025-01-29 07:00:00+00,2025-01-29 07:00:00+00,1.0,34384 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,101465,1.8355543621598056,peer,Jgalt,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,101465,-0.004351122903285,relative_legacy,Jgalt,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,101465,23.28842357988541,baseline,Jgalt,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,101465,5.511309780575888,spot_peer,Jgalt,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,101465,68.26061944859853,spot_baseline,Jgalt,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,103777,-4.156620996049631,spot_peer,datscilly,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,103777,-4.870227014537292,peer,datscilly,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,103777,62.85429862581919,spot_baseline,datscilly,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,103777,35.393503926287735,baseline,datscilly,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,103777,-0.0851543266886745,relative_legacy,datscilly,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,103907,73.23395250202961,spot_baseline,darkives,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,103907,14.404943966524383,spot_peer,darkives,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,103907,0.0208481208438351,relative_legacy,darkives,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,103907,23.651760112140465,baseline,darkives,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,103907,3.713970489387591,peer,darkives,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,117580,-0.0087205052995328,relative_legacy,MaciekK,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,117580,4.692781657448918,baseline,MaciekK,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,117580,60.55279501426776,spot_baseline,MaciekK,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,117580,-0.7517329950649101,peer,MaciekK,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,117580,-8.27231784942176,spot_peer,MaciekK,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,119188,46.93588030523047,baseline,exmateriae,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,119188,-4.182379037508285,peer,exmateriae,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,119188,1.7444707055001856,spot_peer,exmateriae,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,119188,66.15419760941064,spot_baseline,exmateriae,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,119188,-0.0712054608046324,relative_legacy,exmateriae,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,120160,-39.54036889810904,spot_peer,OpenSystem,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,120160,19.956657118838024,baseline,OpenSystem,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,120160,43.06765580733931,spot_baseline,OpenSystem,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,120160,-0.2774624812644114,relative_legacy,OpenSystem,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,120160,-20.774727230424958,peer,OpenSystem,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,131306,7.165600057659303,spot_peer,draaglom,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,131306,1.0773632414440766,baseline,draaglom,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,131306,0.0004367896449446,relative_legacy,draaglom,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,131306,69.18570095554733,spot_baseline,draaglom,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,131306,0.0869792926144413,peer,draaglom,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,131523,5.4387568747160655,baseline,SpottedBear,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,131523,-0.469179752821987,peer,SpottedBear,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,131523,-0.0056446930000232,relative_legacy,SpottedBear,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,131523,62.85429862581919,spot_baseline,SpottedBear,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,131523,-4.156620996049631,spot_peer,SpottedBear,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,139161,67.7185028447796,baseline,Zaldath,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,139161,28.66333930635982,spot_peer,Zaldath,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,139161,16.895487476363712,peer,Zaldath,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,139161,0.1699004040248716,relative_legacy,Zaldath,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,139161,81.20726772389118,spot_baseline,Zaldath,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,148850,8.51625440983191,peer,pasta,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,148850,0.0725344792108902,relative_legacy,pasta,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,148850,-1.3637350769894003,spot_peer,pasta,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,148850,64.41608445659578,spot_baseline,pasta,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33882,"What will be Donald Trump's net worth, according to Forbes, on March 31, 2025?",2025-01-25 07:08:58.861496+00,148850,55.49613292243637,baseline,pasta,"0-$6 billion, inclusive",2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34385 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,101465,-0.0442991430450801,spot_peer,Jgalt,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,101465,95.1587794814754,spot_baseline,Jgalt,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,101465,55.743907685594166,baseline,Jgalt,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,101465,-0.0072221124488105,relative_legacy,Jgalt,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,101465,-0.2776280052090853,peer,Jgalt,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,103777,97.81956296816516,spot_baseline,datscilly,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,103777,2.0049392701543107,spot_peer,datscilly,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,103777,0.0084867322679796,relative_legacy,datscilly,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,103777,1.045963418284353,peer,datscilly,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,103777,60.27630958794302,baseline,datscilly,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,103907,0.0474515790721197,peer,darkives,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,103907,32.267457328548325,baseline,darkives,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,103907,96.05117101190244,spot_baseline,darkives,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,103907,-0.0006755524176262,relative_legacy,darkives,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,103907,0.6429882717005558,spot_peer,darkives,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,117580,-0.0046616658597347,relative_legacy,MaciekK,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,117580,-0.3487901305960494,peer,MaciekK,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,117580,91.07326619029126,spot_baseline,MaciekK,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,117580,9.876412407017751,baseline,MaciekK,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,117580,-3.190812497405608,spot_peer,MaciekK,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,119188,0.0058394901194161,relative_legacy,exmateriae,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,119188,0.8143004737117748,peer,exmateriae,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,119188,97.08536543404836,spot_baseline,exmateriae,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,119188,1.4394871026575096,spot_peer,exmateriae,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,119188,75.67028307321702,baseline,exmateriae,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,120160,-0.000142837238361,relative_legacy,OpenSystem,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,120160,18.15724620934852,baseline,OpenSystem,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,120160,-0.0050383511798645,peer,OpenSystem,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,120160,0.2998759729698466,spot_peer,OpenSystem,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,120160,95.60566524124027,spot_baseline,OpenSystem,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,131306,1.4394871026575096,spot_peer,draaglom,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,131306,0.0025149761465206,relative_legacy,draaglom,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,131306,97.08536543404836,spot_baseline,draaglom,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,131306,0.2987410858974974,peer,draaglom,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,131306,31.366666885855,baseline,draaglom,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,131523,8.111033236720532,baseline,SpottedBear,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,131523,92.1436330806298,spot_baseline,SpottedBear,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,131523,-2.3664549505135293,spot_peer,SpottedBear,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,131523,-0.20713573828645,peer,SpottedBear,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,131523,-0.0028272014336869,relative_legacy,SpottedBear,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,139161,-0.0007166739276479,relative_legacy,Zaldath,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,139161,97.08536543404836,spot_baseline,Zaldath,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,139161,79.9010417533908,baseline,Zaldath,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,139161,1.4394871026575096,spot_peer,Zaldath,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,139161,0.1228203150441981,peer,Zaldath,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,148850,70.23615488476543,baseline,pasta,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,148850,-1.4906846467385204,peer,pasta,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,148850,-0.0208736124611923,relative_legacy,pasta,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,148850,93.05481192478548,spot_baseline,pasta,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33883,"Will North Korea test a nuclear weapon before April 1, 2025?",2025-01-25 07:08:58.888108+00,148850,-1.6646982318331007,spot_peer,pasta,no,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34386 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,101465,-0.0264421976464408,baseline,Jgalt,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,101465,0.0082633529301073,relative_legacy,Jgalt,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,101465,-14.904537889606637,spot_peer,Jgalt,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,101465,0.0,spot_baseline,Jgalt,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,101465,0.5500939387768181,peer,Jgalt,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,103777,-3.9353868234619407,baseline,datscilly,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,103777,-0.037358586627364,relative_legacy,datscilly,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,103777,-14.904537889606637,spot_peer,datscilly,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,103777,-5.6201829430018,peer,datscilly,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,103777,0.0,spot_baseline,datscilly,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,103907,-1.4429059627286835,peer,darkives,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,103907,-0.0168875368121718,relative_legacy,darkives,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,103907,7.318271475179144,spot_baseline,darkives,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,103907,-1.4866001612569055,baseline,darkives,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,103907,-1.8175339277862617,spot_peer,darkives,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,117580,1.479093102127518,peer,MaciekK,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,117580,0.0169421183248559,relative_legacy,MaciekK,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,117580,0.987193606272834,baseline,MaciekK,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,117580,11.328275255937832,spot_baseline,MaciekK,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,117580,5.353412865277192,spot_peer,MaciekK,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,119188,18.311130230703824,baseline,exmateriae,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,119188,31.114918074417727,spot_baseline,exmateriae,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,119188,40.73716076733662,spot_peer,exmateriae,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,119188,38.88508499390576,peer,exmateriae,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,119188,0.4820753110077756,relative_legacy,exmateriae,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,120160,-17.87469216608008,spot_baseline,OpenSystem,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,120160,-6.800694439859459,peer,OpenSystem,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,120160,-3.729105453230321,baseline,OpenSystem,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,120160,-46.8692126064712,spot_peer,OpenSystem,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,120160,-0.0745380550212259,relative_legacy,OpenSystem,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,131306,116.05712837057624,spot_peer,draaglom,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,131306,0.0149951074745858,relative_legacy,draaglom,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,131306,0.7317632130628093,baseline,draaglom,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,131306,1.1595982934799018,peer,draaglom,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,131306,73.23395250202961,spot_baseline,draaglom,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,131523,-0.8186245751786568,baseline,SpottedBear,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,131523,-1.785695455860692,peer,SpottedBear,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,131523,-8.29677190980116,spot_baseline,SpottedBear,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,131523,-29.741359292331385,spot_peer,SpottedBear,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,131523,-0.0258159256719878,relative_legacy,SpottedBear,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,139161,-22.95386114030971,peer,Zaldath,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,139161,0.0,spot_baseline,Zaldath,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,139161,-14.615898122419544,baseline,Zaldath,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,139161,-14.904537889606637,spot_peer,Zaldath,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,139161,-0.211928272379201,relative_legacy,Zaldath,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,148850,-0.0485294783618789,relative_legacy,pasta,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,148850,-13.477562563163202,spot_baseline,pasta,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,148850,-39.005982507781496,spot_peer,pasta,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,148850,0.6724501449001661,baseline,pasta,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33884,"How many hostages will Hamas release after January 26 and before April 5, 2025?",2025-01-25 07:08:59.04985+00,148850,-3.4705303865297323,peer,pasta,30-39,2025-01-30 02:00:00+00,2025-01-30 02:00:00+00,1.0,34387 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,101465,89.4163008954916,baseline,Jgalt,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,101465,0.0067908485840537,relative_legacy,Jgalt,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,101465,98.5500430304885,spot_baseline,Jgalt,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,101465,0.8583308336408637,spot_peer,Jgalt,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,101465,0.4668286348617132,peer,Jgalt,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,103777,-0.2092681475431767,peer,datscilly,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,103777,66.04197621732483,baseline,datscilly,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,103777,97.08536543404836,spot_baseline,datscilly,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,103777,-0.0005455175574842,relative_legacy,datscilly,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,103777,-0.2697104401389112,spot_peer,datscilly,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,103907,0.1828812695984129,spot_peer,darkives,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,103907,32.26117690460486,baseline,darkives,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,103907,0.0542355420615695,peer,darkives,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,103907,0.0013978273262894,relative_legacy,darkives,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,103907,97.67302206771528,spot_baseline,darkives,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,117580,-0.0476005973632907,peer,MaciekK,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,117580,-0.0001874571686714,relative_legacy,MaciekK,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,117580,97.08536543404836,spot_baseline,MaciekK,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,117580,17.185105170126715,baseline,MaciekK,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,117580,-0.2697104401389112,spot_peer,MaciekK,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,119188,-0.6475514209941162,peer,exmateriae,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,119188,97.08536543404836,spot_baseline,exmateriae,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,119188,-0.2697104401389112,spot_peer,exmateriae,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,119188,-0.0045461962322171,relative_legacy,exmateriae,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,119188,93.15607464762812,baseline,exmateriae,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,120160,-1.409321569826585,spot_peer,OpenSystem,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,120160,-0.1365391030127329,peer,OpenSystem,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,120160,95.60566524124027,spot_baseline,OpenSystem,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,120160,9.50846596709235,baseline,OpenSystem,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,120160,-0.0016590936966234,relative_legacy,OpenSystem,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,131306,0.8583308336408637,spot_peer,draaglom,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,131306,0.0008917394136077,relative_legacy,draaglom,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,131306,0.0641819380878565,peer,draaglom,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,131306,98.5500430304885,spot_baseline,draaglom,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,131306,7.261316065765238,baseline,draaglom,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,131523,97.08536543404836,spot_baseline,SpottedBear,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,131523,-0.1224362613996136,peer,SpottedBear,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,131523,-0.2697104401389112,spot_peer,SpottedBear,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,131523,39.19339912222036,baseline,SpottedBear,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,131523,-0.0005455175574842,relative_legacy,SpottedBear,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,139161,0.0120589697197399,relative_legacy,Zaldath,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,139161,85.5044470931085,baseline,Zaldath,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,139161,0.8583308336408637,spot_peer,Zaldath,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,139161,0.8989127033744787,peer,Zaldath,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,148850,-0.2697104401389112,spot_peer,pasta,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,148850,-0.0017175358617526,relative_legacy,pasta,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,148850,-0.3207632880727549,peer,pasta,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,148850,68.1634296113337,baseline,pasta,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33885,"Will Mike Johnson cease to be Speaker of the US House of Representatives before April 1, 2025?",2025-01-25 07:08:59.077816+00,148850,97.08536543404836,spot_baseline,pasta,no,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34388 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,101465,25.192963641259222,spot_baseline,Jgalt,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,101465,-2.3103781983683533,peer,Jgalt,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,101465,7.643778168416814,baseline,Jgalt,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,101465,-0.0110939451567755,relative_legacy,Jgalt,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,101465,-14.928903308857636,spot_peer,Jgalt,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,103777,-4.338883330599304,spot_peer,datscilly,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,103777,0.0571184835022338,relative_legacy,datscilly,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,103777,3.463036385323151,peer,datscilly,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,103777,31.114918074417727,spot_baseline,datscilly,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,103777,20.7816509349007,baseline,datscilly,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,103907,11.139686857213803,baseline,darkives,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,103907,3.0613239248854685,peer,darkives,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,103907,2.198950005282175,spot_peer,darkives,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,103907,34.77088389753815,spot_baseline,darkives,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,103907,0.0548547290685638,relative_legacy,darkives,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,117580,0.0501439640286599,relative_legacy,MaciekK,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,117580,3.980617795437373,peer,MaciekK,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,117580,22.456900760166015,spot_peer,MaciekK,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,117580,46.09915915347599,spot_baseline,MaciekK,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,117580,5.191423989261497,baseline,MaciekK,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,119188,18.177403573902176,baseline,exmateriae,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,119188,18.64654673111698,spot_baseline,exmateriae,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,119188,-16.29250811100115,peer,exmateriae,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,119188,-0.1557308143874786,relative_legacy,exmateriae,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,119188,-26.63562727083833,spot_peer,exmateriae,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,120160,5.390418642135576,baseline,OpenSystem,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,120160,25.192963641259222,spot_baseline,OpenSystem,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,120160,-14.928903308857636,spot_peer,OpenSystem,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,120160,-1.2887311106788606,peer,OpenSystem,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,120160,-0.0061793584169513,relative_legacy,OpenSystem,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,131306,44.29806222085733,spot_baseline,draaglom,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,131306,-10.709448256340467,peer,draaglom,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,131306,19.236063329804665,spot_peer,draaglom,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,131306,-4.421650602465352,baseline,draaglom,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,131306,-0.146485383045188,relative_legacy,draaglom,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,131523,-3.816055962750767,peer,SpottedBear,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,131523,-0.0212493280699649,relative_legacy,SpottedBear,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,131523,10.161593196194657,baseline,SpottedBear,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,131523,25.192963641259222,spot_baseline,SpottedBear,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,131523,-14.928903308857636,spot_peer,SpottedBear,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,139161,0.0163767698327843,relative_legacy,Zaldath,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,139161,23.513977597459405,baseline,Zaldath,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,139161,-11.28558966185865,spot_peer,Zaldath,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,139161,0.8951649154611074,peer,Zaldath,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,139161,27.230309883053657,spot_baseline,Zaldath,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,148850,26.641999147872266,baseline,pasta,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,148850,57.673507972457166,spot_baseline,pasta,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,148850,0.3040982205495224,relative_legacy,pasta,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,148850,23.01697861803254,peer,pasta,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33886,"What Premier League position will Nottingham Forest F.C. be in on March 8, 2025?",2025-01-25 07:08:59.118741+00,148850,43.154896094616205,spot_peer,pasta,3rd,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34389 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,101465,85.68915686293157,baseline,Jgalt,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,101465,1.6978387783191156,spot_peer,Jgalt,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,101465,2.782444261728577,peer,Jgalt,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,101465,0.0039105689882393,relative_legacy,Jgalt,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,101465,93.35726382610238,spot_baseline,Jgalt,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,103777,0.4624627658885476,peer,datscilly,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,103777,1.1145770131920312,spot_peer,datscilly,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,103777,-0.000366719417106,relative_legacy,datscilly,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,103777,92.5999418556223,spot_baseline,datscilly,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,103777,63.567902412686905,baseline,datscilly,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,103907,0.0046742459512102,relative_legacy,darkives,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,103907,0.8078821109945006,peer,darkives,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,103907,31.40344287127977,baseline,darkives,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,103907,2.2780547762248604,spot_peer,darkives,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,103907,94.11063109464314,spot_baseline,darkives,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,117580,-7.389876000400675,spot_peer,MaciekK,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,117580,81.55754288625727,spot_baseline,MaciekK,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,117580,-0.0210723173550467,relative_legacy,MaciekK,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,117580,15.063284969976229,baseline,MaciekK,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,117580,-1.3337871807248889,peer,MaciekK,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,119188,79.94542998337481,baseline,exmateriae,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,119188,92.5999418556223,spot_baseline,exmateriae,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,119188,1.1145770131920312,spot_peer,exmateriae,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,119188,-0.0789078016100918,relative_legacy,exmateriae,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,119188,-5.512692894150614,peer,exmateriae,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,120160,-0.0275191373318481,relative_legacy,OpenSystem,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,120160,29.518493451611825,baseline,OpenSystem,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,120160,84.79969065549501,spot_baseline,OpenSystem,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,120160,-4.892892016838608,spot_peer,OpenSystem,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,120160,-1.695959500983859,peer,OpenSystem,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,131306,8.306031393532269,baseline,draaglom,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,131306,5.697127961419712,spot_peer,draaglom,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,131306,98.5500430304885,spot_baseline,draaglom,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,131306,0.4812282245696259,peer,draaglom,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,131306,0.0046329084540651,relative_legacy,draaglom,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,131523,-0.0159114937364192,relative_legacy,SpottedBear,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,131523,-1.848561551492553,spot_peer,SpottedBear,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,131523,88.75252707415875,spot_baseline,SpottedBear,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,131523,-0.7664498731175158,peer,SpottedBear,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,131523,35.85883202101028,baseline,SpottedBear,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,139161,1.3811369271863378,peer,Zaldath,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,139161,-0.000366719417106,relative_legacy,Zaldath,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,139161,92.5999418556223,spot_baseline,Zaldath,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,139161,1.1145770131920312,spot_peer,Zaldath,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,139161,79.82846191471874,baseline,Zaldath,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,148850,92.5999418556223,spot_baseline,pasta,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,148850,3.393735158609279,peer,pasta,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,148850,1.1145770131920312,spot_peer,pasta,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,148850,87.87558632618146,baseline,pasta,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +33887,"Will Justin Trudeau cease to be Prime Minister of Canada before April 1, 2025?",2025-01-25 07:08:59.149952+00,148850,0.0058349471501451,relative_legacy,pasta,yes,2025-01-31 02:00:00+00,2025-01-31 02:00:00+00,1.0,34390 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,101465,50.545331044986746,baseline,Jgalt,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,101465,3.474739691957053,spot_peer,Jgalt,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,101465,71.36958148433591,spot_baseline,Jgalt,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,101465,0.0454111931715565,relative_legacy,Jgalt,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,101465,2.040780167797004,peer,Jgalt,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,103777,0.0181772149838693,relative_legacy,datscilly,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,103777,8.766745135207563,spot_peer,datscilly,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,103777,13.133704406239106,baseline,datscilly,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,103777,78.24085649273731,spot_baseline,datscilly,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,103777,1.5500748483130042,peer,datscilly,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,103907,-6.531627507486682,peer,darkives,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,103907,49.92694637535187,baseline,darkives,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,103907,-0.0463626019790581,relative_legacy,darkives,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,103907,58.496250072115615,spot_baseline,darkives,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,103907,-6.439830722258804,spot_peer,darkives,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,117580,0.224872729648633,peer,MaciekK,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,117580,58.496250072115615,spot_baseline,MaciekK,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,117580,-6.439830722258804,spot_peer,MaciekK,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,117580,-0.0034054499595891,relative_legacy,MaciekK,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,117580,18.60112227973244,baseline,MaciekK,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,119188,71.36958148433591,spot_baseline,exmateriae,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,119188,3.474739691957053,spot_peer,exmateriae,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,119188,0.0113571129244494,relative_legacy,exmateriae,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,119188,1.3119216327760026,peer,exmateriae,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,119188,21.07470040853779,baseline,exmateriae,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,120160,24.537524842450527,baseline,OpenSystem,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,120160,-6.439830722258804,spot_peer,OpenSystem,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,120160,-2.020898843444385,peer,OpenSystem,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,120160,58.496250072115615,spot_baseline,OpenSystem,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,120160,-0.0266565053608007,relative_legacy,OpenSystem,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,131306,-1.1491643764748705,peer,draaglom,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,131306,-6.439830722258804,spot_peer,draaglom,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,131306,-0.0168042701373466,relative_legacy,draaglom,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,131306,58.496250072115615,spot_baseline,draaglom,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,131306,9.735098609029446,baseline,draaglom,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,131523,67.80719051126377,spot_baseline,SpottedBear,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,131523,-0.0846631382802101,relative_legacy,SpottedBear,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,131523,28.794411807949302,baseline,SpottedBear,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,131523,0.7311160708046662,spot_peer,SpottedBear,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,131523,-8.44308493168991,peer,SpottedBear,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,139161,87.50407458452591,baseline,Zaldath,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,139161,92.5999418556223,spot_baseline,Zaldath,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,139161,0.2447147215720317,relative_legacy,Zaldath,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,139161,19.973668494340373,peer,Zaldath,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,139161,19.82558906265568,spot_peer,Zaldath,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,148850,-10.513606763546743,spot_peer,pasta,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,148850,53.20675522890307,spot_baseline,pasta,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,148850,-0.064724195111481,relative_legacy,pasta,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,148850,-6.956542213779175,peer,pasta,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34245,Will Apple run an ad at the Super Bowl in 2025?,2025-02-01 05:55:15.8519+00,148850,38.77756407776033,baseline,pasta,no,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34731 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,101465,0.049773558631083,relative_legacy,Jgalt,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,101465,8.534125794756438,peer,Jgalt,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,101465,40.05379295837288,spot_baseline,Jgalt,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,101465,24.99942577374234,baseline,Jgalt,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,101465,15.487408018743215,spot_peer,Jgalt,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,103777,-4.86239898978838,baseline,datscilly,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,103777,-0.0703088885923208,relative_legacy,datscilly,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,103777,-40.15429063820003,spot_peer,datscilly,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,103777,-5.494120234444913,peer,datscilly,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,103777,-32.19280948873623,spot_baseline,datscilly,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,103907,21.6048697770269,baseline,darkives,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,103907,13.868800533484754,peer,darkives,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,103907,26.303440583379377,spot_baseline,darkives,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,103907,4.897388040484891,spot_peer,darkives,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,103907,0.0217310457667248,relative_legacy,darkives,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,117580,48.54268271702416,spot_baseline,MaciekK,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,117580,22.025241354624697,spot_peer,MaciekK,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,117580,-5.730961611616158,baseline,MaciekK,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,117580,-0.1126442217721466,relative_legacy,MaciekK,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,117580,-8.107275167717573,peer,MaciekK,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,119188,-15.36056271439895,spot_peer,exmateriae,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,119188,5.807613485498656,baseline,exmateriae,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,119188,0.0,spot_baseline,exmateriae,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,119188,0.896437218249865,peer,exmateriae,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,119188,-0.0018231258828048,relative_legacy,exmateriae,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,120160,-15.36056271439895,spot_peer,OpenSystem,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,120160,-0.0923331943565252,relative_legacy,OpenSystem,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,120160,-5.652131912042987,peer,OpenSystem,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,120160,0.0,baseline,OpenSystem,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,120160,0.0,spot_baseline,OpenSystem,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,131306,7.341904682604879,peer,draaglom,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,131306,43.598131848064426,spot_peer,draaglom,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,131306,11.89170100399375,baseline,draaglom,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,131306,76.55347463629771,spot_baseline,draaglom,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,131306,0.0951355637902337,relative_legacy,draaglom,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,131523,-1.7455043337436165,baseline,SpottedBear,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,131523,-15.200309344504996,spot_baseline,SpottedBear,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,131523,-27.06728667637965,spot_peer,SpottedBear,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,131523,-0.033811048836405,relative_legacy,SpottedBear,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,131523,-2.7272004951770668,peer,SpottedBear,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,139161,-15.36056271439895,spot_peer,Zaldath,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,139161,-25.280524910610858,peer,Zaldath,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,139161,-53.66181992931735,baseline,Zaldath,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,139161,-0.3332840019333157,relative_legacy,Zaldath,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,139161,0.0,spot_baseline,Zaldath,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,148850,35.75419416352297,baseline,pasta,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,148850,55.38519681811257,spot_baseline,pasta,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,148850,16.61998449089745,peer,pasta,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,148850,0.1416125868017129,relative_legacy,pasta,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34246,"Will OpenAI, Anthropic, or Perplexity run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.876938+00,148850,27.295096195859266,spot_peer,pasta,yes,2025-02-03 09:00:00+00,2025-02-03 09:00:00+00,1.0,34732 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,101465,18.246068160705107,spot_peer,Jgalt,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,101465,-2.1455923259304925,baseline,Jgalt,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,101465,8.87134560767233,peer,Jgalt,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,101465,-4.073918453784913,spot_baseline,Jgalt,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,101465,-0.1929233869331245,relative_legacy,Jgalt,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,103777,11.112728202027814,baseline,datscilly,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,103777,16.71577038985813,peer,datscilly,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,103777,0.1986729051149259,relative_legacy,datscilly,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,103777,94.28073483418672,spot_peer,datscilly,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,103777,63.51245192264319,spot_baseline,datscilly,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,103907,-43.72414213968677,spot_peer,darkives,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,103907,-11.601040757908194,peer,darkives,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,103907,-0.7098242362462556,relative_legacy,darkives,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,103907,-20.10995653922643,baseline,darkives,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,103907,-59.158549831911024,spot_baseline,darkives,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,119188,-18.32457992920529,spot_baseline,exmateriae,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,119188,2.2140740008571744,spot_peer,exmateriae,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,119188,-12.024941930252131,peer,exmateriae,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,119188,-0.8294012669176275,relative_legacy,exmateriae,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,119188,-24.322247061015972,baseline,exmateriae,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,120160,-196.90968042119613,spot_peer,OpenSystem,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,120160,-195.32347274880823,spot_baseline,OpenSystem,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,120160,-81.03046945417529,baseline,OpenSystem,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,120160,-79.28910286752755,peer,OpenSystem,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,120160,-2.464162155536059,relative_legacy,OpenSystem,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,131306,-20.92022556485401,spot_peer,draaglom,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,131306,-0.96211679470197,baseline,draaglom,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,131306,-38.88840176539301,spot_baseline,draaglom,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,131306,-0.5411005765616579,peer,draaglom,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,131306,-0.0353839463076807,relative_legacy,draaglom,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,131523,30.43809073823106,spot_baseline,SpottedBear,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,131523,17.7576752817244,peer,SpottedBear,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,131523,0.0970273109138814,relative_legacy,SpottedBear,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,131523,57.07207850172306,spot_peer,SpottedBear,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,131523,8.219163933969815,baseline,SpottedBear,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,139161,87.15416175275047,spot_peer,Zaldath,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,139161,34.71710537077854,baseline,Zaldath,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,139161,57.17772029469985,spot_baseline,Zaldath,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,139161,54.943410818789296,peer,Zaldath,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,139161,0.6089176375726024,relative_legacy,Zaldath,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,148850,2.586930875514333,spot_peer,pasta,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,148850,-2.1250674281237547,baseline,pasta,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,148850,-0.3438251010914314,relative_legacy,pasta,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,148850,-17.993151596176716,spot_baseline,pasta,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34247,"What will be the difference between the Arena Score of o3 and the next best model on Chatbot Arena, on April 5, 2025?",2025-02-01 05:55:15.915429+00,148850,5.167984034205298,peer,pasta,below_lower_bound,2025-02-03 17:00:00+00,2025-02-03 17:00:00+00,1.0,34733 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,101465,95.60566524124027,spot_baseline,Jgalt,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,101465,0.01644907456827,relative_legacy,Jgalt,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,101465,2.9314094836328564,spot_peer,Jgalt,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,101465,1.9814468360025883,peer,Jgalt,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,101465,75.2336730394017,baseline,Jgalt,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,103777,75.36209610212039,baseline,datscilly,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,103777,-0.0276273573967555,relative_legacy,datscilly,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,103777,-2.948857344627408,spot_peer,datscilly,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,103777,87.97057662822883,spot_baseline,datscilly,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,103777,-1.3241870436702572,peer,datscilly,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,103907,-0.0373283469629432,relative_legacy,darkives,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,103907,-2.948857344627408,spot_peer,darkives,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,103907,87.97057662822883,spot_baseline,darkives,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,103907,-2.4058524693591576,peer,darkives,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,103907,73.55586522380631,baseline,darkives,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,117580,0.0012409379283073,relative_legacy,MaciekK,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,117580,0.1777004713594565,peer,MaciekK,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,117580,1.7799887019054514,spot_peer,MaciekK,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,117580,6.084564564290602,baseline,MaciekK,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,117580,94.11063109464314,spot_baseline,MaciekK,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,119188,0.0031681581841352,relative_legacy,exmateriae,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,119188,94.11063109464314,spot_baseline,exmateriae,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,119188,59.03937126325229,baseline,exmateriae,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,119188,0.7310055061640387,peer,exmateriae,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,119188,1.7799887019054514,spot_peer,exmateriae,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,120160,-2.948857344627408,spot_peer,OpenSystem,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,120160,0.001234995211632,peer,OpenSystem,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,120160,-0.0071181706244332,relative_legacy,OpenSystem,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,120160,87.97057662822883,spot_baseline,OpenSystem,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,120160,68.23369166371603,baseline,OpenSystem,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,131306,0.3338545113870766,peer,draaglom,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,131306,0.0032603196291337,relative_legacy,draaglom,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,131306,6.41311657056834,baseline,draaglom,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,131306,97.08536543404836,spot_baseline,draaglom,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,131306,4.07102061332054,spot_peer,draaglom,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,131523,-2.948857344627408,spot_peer,SpottedBear,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,131523,19.40552300721112,baseline,SpottedBear,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,131523,-0.0027508681111775,relative_legacy,SpottedBear,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,131523,-0.1491985228685562,peer,SpottedBear,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,131523,87.97057662822883,spot_baseline,SpottedBear,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,139161,70.96895327247016,baseline,Zaldath,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,139161,2.8394442950132968,peer,Zaldath,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,139161,0.6165109388726465,spot_peer,Zaldath,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,139161,92.5999418556223,spot_baseline,Zaldath,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,139161,0.0283614633710538,relative_legacy,Zaldath,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,148850,76.8710562264967,baseline,pasta,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,148850,-0.0342104809032984,relative_legacy,pasta,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,148850,0.6165109388726465,spot_peer,pasta,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,148850,-2.185448579240122,peer,pasta,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34248,"Will Geico, State Farm, or Progressive run an ad at the Super Bowl in 2025?",2025-02-01 05:55:15.938445+00,148850,92.5999418556223,spot_baseline,pasta,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34734 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,101465,33.64287793524718,baseline,Jgalt,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,101465,-1.186557805712973,peer,Jgalt,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,101465,-0.0153564432467685,relative_legacy,Jgalt,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,101465,88.75252707415875,spot_baseline,Jgalt,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,101465,-2.866522418691398,spot_peer,Jgalt,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,103777,0.0103876760741193,relative_legacy,datscilly,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,103777,0.8925863553997074,peer,datscilly,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,103777,1.2600939090260015,spot_peer,datscilly,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,103777,94.11063109464314,spot_baseline,datscilly,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,103777,54.471397615147936,baseline,datscilly,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,103907,0.0016437803787568,relative_legacy,darkives,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,103907,92.5999418556223,spot_baseline,darkives,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,103907,0.0966161459931692,spot_peer,darkives,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,103907,0.1685148855963828,peer,darkives,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,103907,59.301776376384,baseline,darkives,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,117580,-1.0791737796220315,spot_peer,MaciekK,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,117580,-0.0657166692675644,peer,MaciekK,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,117580,-0.0009692686275993,relative_legacy,MaciekK,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,117580,91.07326619029126,spot_baseline,MaciekK,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,117580,5.906844193569767,baseline,MaciekK,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,119188,1.415629760904736,peer,exmateriae,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,119188,1.8372957842597848,spot_peer,exmateriae,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,119188,94.86008474933556,spot_baseline,exmateriae,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,119188,63.71569171039726,baseline,exmateriae,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,119188,0.0168247248421538,relative_legacy,exmateriae,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,120160,-1.2138691653196534,peer,OpenSystem,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,120160,50.74943602370367,baseline,OpenSystem,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,120160,-2.267539237038481,spot_peer,OpenSystem,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,120160,-0.0155757396501543,relative_legacy,OpenSystem,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,120160,89.53026213333065,spot_baseline,OpenSystem,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,131306,0.0023743717193766,relative_legacy,draaglom,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,131306,3.551125820441073,spot_peer,draaglom,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,131306,97.08536543404836,spot_baseline,draaglom,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,131306,6.080847927685282,baseline,draaglom,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,131306,0.1924750331507965,peer,draaglom,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,131523,19.96042484253748,baseline,SpottedBear,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,131523,-1.4577985957381817e-05,relative_legacy,SpottedBear,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,131523,0.0806175603055643,peer,SpottedBear,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,131523,92.5999418556223,spot_baseline,SpottedBear,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,131523,0.0966161459931692,spot_peer,SpottedBear,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,139161,92.5999418556223,spot_baseline,Zaldath,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,139161,70.89380158765532,baseline,Zaldath,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,139161,0.2250372919629616,peer,Zaldath,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,139161,0.0021438601028229,relative_legacy,Zaldath,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,139161,0.0966161459931692,spot_peer,Zaldath,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,148850,87.5695786347841,baseline,pasta,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,148850,-0.0060248125301396,relative_legacy,pasta,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,148850,91.53296760130094,spot_baseline,pasta,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,148850,-0.7251285163544948,spot_peer,pasta,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34249,"Will Rihanna, Jay-Z and/or Beyonce appear at the Super Bowl halftime show in 2025?",2025-02-01 05:55:15.958796+00,148850,-0.5087172470199661,peer,pasta,no,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34735 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,101465,16.526012109779174,peer,Jgalt,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,101465,-0.1171780868794635,relative_legacy,Jgalt,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,101465,-40.97927153362865,baseline,Jgalt,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,101465,97.08536543404836,spot_baseline,Jgalt,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,101465,33.23397361962833,spot_peer,Jgalt,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,103777,-98.50860318160518,baseline,datscilly,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,103777,-0.0264598546603737,relative_legacy,datscilly,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,103777,95.60566524124027,spot_baseline,datscilly,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,103777,28.96722495334956,peer,datscilly,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,103777,32.09436248994064,spot_peer,datscilly,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,103907,95.60566524124027,spot_baseline,darkives,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,103907,32.09436248994064,spot_peer,darkives,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,103907,-0.0025425855100629,relative_legacy,darkives,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,103907,25.645322153740235,peer,darkives,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,103907,-27.43430056796514,baseline,darkives,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,117580,8.627945937911015,baseline,MaciekK,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,117580,3.0601769531892997,peer,MaciekK,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,117580,0.0,relative_legacy,MaciekK,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,117580,97.08536543404836,spot_baseline,MaciekK,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,117580,33.23397361962833,spot_peer,MaciekK,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,119188,-55.580451590670485,baseline,exmateriae,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,119188,33.79942578712512,spot_peer,exmateriae,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,119188,-0.1723929708834106,relative_legacy,exmateriae,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,119188,10.864546467569715,peer,exmateriae,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,119188,97.81956296816516,spot_baseline,exmateriae,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,120160,-1.8777847165685144,relative_legacy,OpenSystem,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,120160,-297.38042262886853,spot_peer,OpenSystem,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,120160,-124.67793408637397,peer,OpenSystem,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,120160,-189.86638294795296,baseline,OpenSystem,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,120160,-332.1928094887362,spot_baseline,OpenSystem,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,131306,34.362014893408094,spot_peer,draaglom,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,131306,0.0009519725532941,relative_legacy,draaglom,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,131306,98.5500430304885,spot_baseline,draaglom,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,131306,2.242699235046516,peer,draaglom,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,131306,6.421757390922882,baseline,draaglom,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,131523,0.0,relative_legacy,SpottedBear,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,131523,22.33390608529773,baseline,SpottedBear,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,131523,33.23397361962833,spot_peer,SpottedBear,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,131523,9.13131488468838,peer,SpottedBear,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,131523,97.08536543404836,spot_baseline,SpottedBear,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,139161,-9.224101443923686,peer,Zaldath,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,139161,-105.39811669725722,baseline,Zaldath,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,139161,-0.4296425420387081,relative_legacy,Zaldath,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,139161,33.23397361962833,spot_peer,Zaldath,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,139161,97.08536543404836,spot_baseline,Zaldath,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,148850,37.46473877293479,peer,pasta,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,148850,-109.554890196245,baseline,pasta,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,148850,32.09436248994064,spot_peer,pasta,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,148850,95.60566524124027,spot_baseline,pasta,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34250,Will Donald Trump attend the Super Bowl in 2025?,2025-02-01 05:55:16.166505+00,148850,0.105670886989053,relative_legacy,pasta,yes,2025-02-06 16:00:00+00,2025-02-06 16:00:00+00,1.0,34736 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,101465,92.5999418556223,spot_baseline,Jgalt,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,101465,2.5086100939706117,spot_peer,Jgalt,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,101465,66.36294346859202,baseline,Jgalt,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,101465,-0.0032446116436252,relative_legacy,Jgalt,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,101465,-0.344945811713867,peer,Jgalt,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,103777,-2.6731104535063834,peer,datscilly,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,103777,2.5086100939706117,spot_peer,datscilly,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,103777,92.5999418556223,spot_baseline,datscilly,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,103777,56.04941740357632,baseline,datscilly,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,103777,-0.0336294538020595,relative_legacy,datscilly,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,103907,63.12502480980815,baseline,darkives,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,103907,-2.4394938091969376,peer,darkives,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,103907,-0.0276674896333944,relative_legacy,darkives,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,103907,2.5086100939706117,spot_peer,darkives,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,103907,92.5999418556223,spot_baseline,darkives,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,117580,-0.0071093931839583,relative_legacy,MaciekK,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,117580,-1.056758189529434,spot_peer,MaciekK,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,117580,87.97057662822883,spot_baseline,MaciekK,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,117580,0.1096570527057358,peer,MaciekK,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,117580,18.73317332548697,baseline,MaciekK,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,119188,0.0520645905845444,relative_legacy,exmateriae,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,119188,4.823508638730832,spot_peer,exmateriae,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,119188,95.60566524124027,spot_baseline,exmateriae,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,119188,4.305282346767756,peer,exmateriae,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,119188,74.71395443161752,baseline,exmateriae,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,120160,2.161517273154947,peer,OpenSystem,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,120160,63.13348797879894,baseline,OpenSystem,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,120160,1.3328201683553964,spot_peer,OpenSystem,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,120160,0.0265082543465236,relative_legacy,OpenSystem,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,120160,91.07326619029126,spot_baseline,OpenSystem,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,131306,2.5086100939706117,spot_peer,draaglom,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,131306,92.5999418556223,spot_baseline,draaglom,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,131306,12.277071328008072,baseline,draaglom,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,131306,0.4827367797846327,peer,draaglom,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,131306,-5.219575748553615e-05,relative_legacy,draaglom,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,131523,67.80719051126377,spot_baseline,SpottedBear,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,131523,-0.0744929001084344,relative_legacy,SpottedBear,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,131523,24.16320967685196,baseline,SpottedBear,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,131523,-16.5858628978804,spot_peer,SpottedBear,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,131523,-5.18307344884148,peer,SpottedBear,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,139161,0.0430469745077321,relative_legacy,Zaldath,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,139161,3.568202531985456,peer,Zaldath,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,139161,92.5999418556223,spot_baseline,Zaldath,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,139161,82.34380481857711,baseline,Zaldath,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,139161,2.5086100939706117,spot_peer,Zaldath,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,148850,28.22690453400173,baseline,pasta,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,148850,-1.056758189529434,spot_peer,pasta,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,148850,87.97057662822883,spot_baseline,pasta,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,148850,0.0132275388601408,peer,pasta,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34251,Will Joe Biden and/or Kamala Harris attend the Super Bowl in 2025?,2025-02-01 05:55:16.187286+00,148850,-0.0081583130505674,relative_legacy,pasta,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34737 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,101465,0.0899794875216812,relative_legacy,Jgalt,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,101465,-118.44245711374276,spot_baseline,Jgalt,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,101465,16.08585652337818,peer,Jgalt,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,101465,-50.68322106963339,baseline,Jgalt,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,101465,3.822903129909745,spot_peer,Jgalt,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,103777,-100.0,spot_baseline,datscilly,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,103777,-52.98706219928234,baseline,datscilly,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,103777,14.340111492592282,peer,datscilly,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,103777,0.0731846905137908,relative_legacy,datscilly,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,103777,18.02661107545254,spot_peer,datscilly,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,103907,18.02661107545254,spot_peer,darkives,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,103907,-100.0,spot_baseline,darkives,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,103907,-0.032749775551383,relative_legacy,darkives,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,103907,-67.36052768572276,baseline,darkives,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,103907,5.392886685878704,peer,darkives,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,117580,-19.051892101632355,baseline,MaciekK,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,117580,8.76198786000242,spot_peer,MaciekK,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,117580,0.0031806741308855,relative_legacy,MaciekK,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,117580,-112.0294233717712,spot_baseline,MaciekK,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,117580,1.4966525677182472,peer,MaciekK,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,119188,-23.16301183431986,peer,exmateriae,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,119188,-18.47384081032921,spot_peer,exmateriae,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,119188,-0.3867022439936814,relative_legacy,exmateriae,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,119188,-103.1574905162578,baseline,exmateriae,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,119188,-147.39311883324118,spot_baseline,exmateriae,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,120160,-43.45067312770693,baseline,OpenSystem,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,120160,8.620766041296744,peer,OpenSystem,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,120160,0.0257621622464129,relative_legacy,OpenSystem,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,120160,18.02661107545254,spot_peer,OpenSystem,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,120160,-100.0,spot_baseline,OpenSystem,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,131306,-0.0172675165481313,relative_legacy,draaglom,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,131306,-6.76711684834858,spot_peer,draaglom,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,131306,-132.19280948873626,spot_baseline,draaglom,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,131306,-16.23117239805065,baseline,draaglom,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,131306,-0.8376440988026426,peer,draaglom,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,131523,-31.351772281162877,baseline,SpottedBear,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,131523,-88.8968687611256,spot_baseline,SpottedBear,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,131523,26.57783786835569,spot_peer,SpottedBear,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,131523,0.0650273064967804,relative_legacy,SpottedBear,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,131523,9.814489959071484,peer,SpottedBear,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,139161,-232.1928094887363,spot_baseline,Zaldath,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,139161,-130.36617005038016,baseline,Zaldath,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,139161,-37.25605314181874,peer,Zaldath,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,139161,-0.5700949193086804,relative_legacy,Zaldath,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,139161,-83.78347024389807,spot_peer,Zaldath,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,148850,0.0160957001513676,relative_legacy,pasta,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,148850,-102.91463456595166,spot_baseline,pasta,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,148850,5.505945805005634,peer,pasta,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,148850,-34.13190887387942,baseline,pasta,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34252,Will Elon Musk attend the Super Bowl in 2025?,2025-02-01 05:55:16.207575+00,148850,15.781865817950369,spot_peer,pasta,no,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34738 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,101465,-2.928393269396237,spot_peer,Jgalt,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,101465,91.21519926762812,spot_baseline,Jgalt,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,101465,-0.0148444533767793,relative_legacy,Jgalt,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,101465,-1.0968369098060458,peer,Jgalt,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,101465,37.61979463235224,baseline,Jgalt,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,103777,-0.6805929812451126,peer,datscilly,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,103777,-0.0048531132777786,relative_legacy,datscilly,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,103777,-1.469583109197054,spot_peer,datscilly,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,103777,62.24007238328337,baseline,datscilly,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,103777,92.4102788764417,spot_baseline,datscilly,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,103907,-2.561891196211242,spot_peer,darkives,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,103907,91.51544337491586,spot_baseline,darkives,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,103907,-1.7213360660814574,peer,darkives,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,103907,-0.0160502301975155,relative_legacy,darkives,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,103907,69.44185517871766,baseline,darkives,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,117580,0.4160288958847109,peer,MaciekK,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,117580,15.705399502389014,baseline,MaciekK,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,117580,2.562639269158549,spot_peer,MaciekK,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,117580,0.0028251701933939,relative_legacy,MaciekK,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,117580,95.71353715777737,spot_baseline,MaciekK,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,119188,1.0928422995940097,peer,exmateriae,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,119188,95.0431843555948,spot_baseline,exmateriae,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,119188,1.7443527955798444,spot_peer,exmateriae,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,119188,0.0170487395625864,relative_legacy,exmateriae,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,119188,71.54645536526237,baseline,exmateriae,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,120160,36.58716617197093,baseline,OpenSystem,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,120160,90.40967257106156,spot_baseline,OpenSystem,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,120160,-1.310470350398038,peer,OpenSystem,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,120160,-3.911683855727635,spot_peer,OpenSystem,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,120160,-0.0176851177190731,relative_legacy,OpenSystem,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,131306,4.29607709610075,spot_peer,draaglom,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,131306,12.578501490430142,baseline,draaglom,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,131306,0.5495054801161239,peer,draaglom,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,131306,0.0045164909435469,relative_legacy,draaglom,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,131306,97.13359595407874,spot_baseline,draaglom,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,131523,0.919995248687788,spot_peer,SpottedBear,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,131523,0.0046691231858503,relative_legacy,SpottedBear,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,131523,94.36785803724248,spot_baseline,SpottedBear,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,131523,0.5517277282602245,peer,SpottedBear,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,131523,33.12130140872231,baseline,SpottedBear,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,139161,95.33108313855332,spot_baseline,Zaldath,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,139161,0.0298432489480307,relative_legacy,Zaldath,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,139161,2.248015863745416,peer,Zaldath,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,139161,2.0957851743030025,spot_peer,Zaldath,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,139161,83.51068006031207,baseline,Zaldath,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,148850,-0.04888396006982,peer,pasta,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,148850,-0.0030743936798694,relative_legacy,pasta,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,148850,31.27490837880817,baseline,pasta,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,148850,93.00198576613744,spot_baseline,pasta,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34253,"How many movies will be new on Netflix's global top 10 movies list for the week ending February 9, 2025?",2025-02-01 05:55:16.229721+00,148850,-0.7472981532977913,spot_peer,pasta,2 or more,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34739 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,101465,26.114087825974785,spot_peer,Jgalt,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,101465,38.43352370772651,baseline,Jgalt,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,101465,12.620959580395583,peer,Jgalt,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,101465,0.2296790573797911,relative_legacy,Jgalt,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,101465,79.4137657999481,spot_baseline,Jgalt,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,103777,-3.046042364499714,spot_peer,datscilly,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,103777,-0.1351121940030507,relative_legacy,datscilly,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,103777,36.59800744021046,baseline,datscilly,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,103777,-1.092147303155501,peer,datscilly,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,103777,53.169648628521045,spot_baseline,datscilly,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,103907,26.916218837990968,spot_baseline,darkives,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,103907,-0.6470700563513472,relative_legacy,darkives,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,103907,18.196479504203165,baseline,darkives,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,103907,-32.21651990953314,spot_peer,darkives,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,103907,-21.68961151914091,peer,darkives,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,117580,-6.870924348263952,peer,MaciekK,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,117580,32.23688852805552,spot_baseline,MaciekK,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,117580,8.539055122186847,baseline,MaciekK,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,117580,-26.304664698350308,spot_peer,MaciekK,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,117580,-0.2195851137867513,relative_legacy,MaciekK,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,119188,9.825164330987873,peer,exmateriae,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,119188,63.85259038745266,spot_baseline,exmateriae,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,119188,0.1072737947589012,relative_legacy,exmateriae,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,119188,8.82389292320206,spot_peer,exmateriae,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,119188,52.75972510138249,baseline,exmateriae,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,120160,-0.244769099149815,relative_legacy,OpenSystem,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,120160,45.809415887056005,spot_baseline,OpenSystem,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,120160,-5.910450387997924,peer,OpenSystem,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,120160,24.300810128435856,baseline,OpenSystem,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,120160,-11.224078743905332,spot_peer,OpenSystem,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,131306,0.0141707606684597,relative_legacy,draaglom,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,131306,9.198280120317785,baseline,draaglom,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,131306,1.4102744422582512,peer,draaglom,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,131306,64.84770371619317,spot_baseline,draaglom,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,131306,9.929574399580405,spot_peer,draaglom,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,131523,28.37525772173589,spot_peer,SpottedBear,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,131523,35.74744560284547,baseline,SpottedBear,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,131523,0.2337044381640549,relative_legacy,SpottedBear,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,131523,12.42428113966606,peer,SpottedBear,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,131523,81.4488187061331,spot_baseline,SpottedBear,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,139161,-12.763335572380411,peer,Zaldath,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,139161,41.444154849539615,spot_baseline,Zaldath,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,139161,-16.074368785590202,spot_peer,Zaldath,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,139161,-0.4038854944856521,relative_legacy,Zaldath,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,139161,32.77636053200733,baseline,Zaldath,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,148850,12.045789637630977,peer,pasta,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,148850,15.622861631385526,spot_peer,pasta,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,148850,0.1909122804356015,relative_legacy,pasta,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,148850,69.97166222481776,spot_baseline,pasta,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34254,What will be the price of coffee reported by the US BLS for January 2025?,2025-02-01 05:55:16.252809+00,148850,47.12835517797873,baseline,pasta,7.019,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34740 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,101465,43.98528831411441,spot_baseline,Jgalt,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,101465,4.932143070401832,peer,Jgalt,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,101465,9.817348009571116,baseline,Jgalt,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,101465,18.332787594411386,spot_peer,Jgalt,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,101465,0.0291253847114752,relative_legacy,Jgalt,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,103777,26.303440583379384,spot_baseline,datscilly,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,103777,-0.1250604797228348,relative_legacy,datscilly,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,103777,-8.903041075920298,spot_peer,datscilly,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,103777,10.590035087197071,baseline,datscilly,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,103777,-2.193844692425633,peer,datscilly,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,103907,-13.312743467204012,baseline,darkives,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,103907,31.520273574116164,spot_baseline,darkives,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,103907,-0.8674120115173845,spot_peer,darkives,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,103907,-42.49177983954813,peer,darkives,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,103907,-0.6054824006795163,relative_legacy,darkives,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,117580,9.252927551632096,baseline,MaciekK,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,117580,39.120428246368654,spot_baseline,MaciekK,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,117580,3.970039520505183,peer,MaciekK,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,117580,0.0158173488939274,relative_legacy,MaciekK,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,117580,10.8393119504633,spot_peer,MaciekK,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,119188,0.0528231214478445,relative_legacy,exmateriae,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,119188,-0.0094068899717952,spot_peer,exmateriae,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,119188,20.754674220591376,baseline,exmateriae,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,119188,32.07730145437618,spot_baseline,exmateriae,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,119188,13.021542688706234,peer,exmateriae,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,120160,22.60823560333109,baseline,OpenSystem,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,120160,0.1602850374744804,relative_legacy,OpenSystem,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,120160,42.39984532774751,spot_baseline,OpenSystem,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,120160,19.07890666107958,peer,OpenSystem,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,120160,15.890686847880804,spot_peer,OpenSystem,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,131306,-5.2494751843604375,peer,draaglom,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,131306,-36.03603668836942,spot_peer,draaglom,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,131306,1.377456920597412,baseline,draaglom,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,131306,-0.0837135449425188,relative_legacy,draaglom,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,131306,8.688353386835319,spot_baseline,draaglom,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,131523,3.938150249022069,baseline,SpottedBear,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,131523,0.5083301747318305,peer,SpottedBear,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,131523,-0.0031372741283116,relative_legacy,SpottedBear,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,131523,2.803682886060424,spot_peer,SpottedBear,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,131523,33.903595255631885,spot_baseline,SpottedBear,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,139161,36.73277167395025,spot_baseline,Zaldath,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,139161,7.161539903091655,spot_peer,Zaldath,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,139161,19.853425749544403,baseline,Zaldath,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,139161,10.192363911027694,peer,Zaldath,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,139161,0.0158199403636633,relative_legacy,Zaldath,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,148850,-0.1140248745004055,relative_legacy,pasta,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,148850,-1.7682263101182378,peer,pasta,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,148850,26.10278745804821,spot_baseline,pasta,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,148850,-9.212112516128832,spot_peer,pasta,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34255,"What will be the return of the Egyptian stock market index, the EGX 30, in February 2025?",2025-02-01 05:55:16.484391+00,148850,13.741971361416285,baseline,pasta,≥0% and <5%,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34741 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,101465,-0.0733113185620547,relative_legacy,Jgalt,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,101465,2.4651371796517254,baseline,Jgalt,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,101465,-28.85189875300861,spot_peer,Jgalt,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,101465,16.67118668625959,spot_baseline,Jgalt,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,101465,-5.64564135096478,peer,Jgalt,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,103777,42.39984532774751,spot_baseline,datscilly,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,103777,17.99306243714348,peer,datscilly,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,103777,0.1996610098245247,relative_legacy,datscilly,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,103777,10.7786505735172,spot_peer,datscilly,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,103777,29.65029675176972,baseline,datscilly,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,103907,28.901007889386257,baseline,darkives,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,103907,16.61355669200884,peer,darkives,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,103907,42.39984532774751,spot_baseline,darkives,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,103907,10.7786505735172,spot_peer,darkives,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,103907,0.1844215563843669,relative_legacy,darkives,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,117580,0.0679751192131356,relative_legacy,MaciekK,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,117580,5.799182109177868,peer,MaciekK,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,117580,10.549700564930625,baseline,MaciekK,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,117580,50.0,spot_baseline,MaciekK,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,117580,22.4853745354979,spot_peer,MaciekK,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,119188,12.831028861617034,baseline,exmateriae,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,119188,28.279858792711256,spot_baseline,exmateriae,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,119188,-10.970746884937826,spot_peer,exmateriae,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,119188,-0.1424640513967251,relative_legacy,exmateriae,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,119188,-8.335824736909773,peer,exmateriae,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,120160,0.2498112288146763,relative_legacy,OpenSystem,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,120160,28.979104237424004,baseline,OpenSystem,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,120160,19.05402772630337,peer,OpenSystem,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,120160,22.4853745354979,spot_peer,OpenSystem,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,120160,50.0,spot_baseline,OpenSystem,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,131306,50.0,spot_baseline,draaglom,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,131306,0.0362158787479178,relative_legacy,draaglom,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,131306,6.671385332692025,baseline,draaglom,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,131306,22.4853745354979,spot_peer,draaglom,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,131306,3.456102146565745,peer,draaglom,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,131523,50.0,spot_baseline,SpottedBear,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,131523,22.4853745354979,spot_peer,SpottedBear,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,131523,0.0020294087566208,relative_legacy,SpottedBear,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,131523,1.6292611637512682,baseline,SpottedBear,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,131523,0.7320200442375437,peer,SpottedBear,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,139161,-8.008025160334656,baseline,Zaldath,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,139161,-45.611162898321695,peer,Zaldath,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,139161,-54.530978860051576,spot_peer,Zaldath,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,139161,-0.5422409163934432,relative_legacy,Zaldath,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,139161,0.0,spot_baseline,Zaldath,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,148850,16.139077717398017,baseline,pasta,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,148850,-17.145174791027923,spot_peer,pasta,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,148850,-4.055322169240637,peer,pasta,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,148850,24.27134135851208,spot_baseline,pasta,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34256,How many Mediterranean migrants and refugees will enter Europe in February 2025?,2025-02-01 05:55:16.505172+00,148850,-0.0560565505895401,relative_legacy,pasta,"0-10,000",2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34742 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,101465,1.7502518588456453,baseline,Jgalt,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,101465,-0.4136696455194245,peer,Jgalt,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,101465,8.174936614143979,spot_baseline,Jgalt,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,101465,0.0017244203741919,relative_legacy,Jgalt,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,101465,0.3354352631090131,spot_peer,Jgalt,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,103777,0.226278459319952,relative_legacy,datscilly,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,103777,17.8190912463765,baseline,datscilly,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,103777,20.933892820344692,peer,datscilly,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,103777,39.96598458963483,spot_peer,datscilly,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,103777,33.903595255631885,spot_baseline,datscilly,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,103907,12.556206587657789,peer,darkives,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,103907,25.12916318691008,spot_peer,darkives,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,103907,0.1262429361895483,relative_legacy,darkives,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,103907,12.747542878521578,baseline,darkives,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,103907,24.27134135851208,spot_baseline,darkives,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,117580,-16.79241805103081,spot_peer,MaciekK,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,117580,-7.151483454166085,peer,MaciekK,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,117580,-0.0570138729443343,relative_legacy,MaciekK,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,117580,-1.0016928051159302,baseline,MaciekK,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,117580,-2.9446844526784286,spot_baseline,MaciekK,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,119188,22.18033257378074,spot_baseline,exmateriae,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,119188,0.0916286608756176,relative_legacy,exmateriae,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,119188,11.636871242897282,baseline,exmateriae,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,119188,11.880392145173312,peer,exmateriae,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,119188,21.908325756548734,spot_peer,exmateriae,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,120160,13.151720291689688,spot_baseline,OpenSystem,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,120160,3.0446791983996864,baseline,OpenSystem,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,120160,1.2762773972635957,peer,OpenSystem,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,120160,0.0222695727162047,relative_legacy,OpenSystem,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,120160,8.001309872770273,spot_peer,OpenSystem,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,131306,-7.280266112344965,spot_baseline,draaglom,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,131306,-1.419260492010517,baseline,draaglom,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,131306,-4.99650637528246,peer,draaglom,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,131306,-0.0563498811051912,relative_legacy,draaglom,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,131306,-23.47063183655364,spot_peer,draaglom,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,131523,-0.2385935390363673,baseline,SpottedBear,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,131523,-0.8574785816747449,peer,SpottedBear,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,131523,-6.0147116858855885,spot_baseline,SpottedBear,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,131523,-21.521264097563684,spot_peer,SpottedBear,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,131523,-0.0015016973519199,relative_legacy,SpottedBear,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,139161,-57.086319264945935,spot_peer,Zaldath,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,139161,-39.055723563226834,baseline,Zaldath,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,139161,-59.43659541481448,peer,Zaldath,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,139161,-0.7257860452809342,relative_legacy,Zaldath,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,139161,-29.103999609401736,spot_baseline,Zaldath,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,148850,0.1728462281141519,relative_legacy,pasta,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,148850,23.233413350172214,spot_baseline,pasta,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,148850,26.208964521017823,peer,pasta,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,148850,14.67171976139038,baseline,pasta,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34257,How many tornadoes will NOAA report for February 2025?,2025-02-01 05:55:16.525169+00,148850,23.530414581121235,spot_peer,pasta,30 to 54,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34743 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,101465,2.585131061763756,peer,Jgalt,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,101465,0.0519564683403678,relative_legacy,Jgalt,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,101465,84.43586526336162,spot_baseline,Jgalt,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,101465,18.19546969760077,baseline,Jgalt,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,101465,7.645791860582801,spot_peer,Jgalt,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,103777,25.118679686502865,spot_peer,datscilly,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,103777,100.16146430668968,spot_baseline,datscilly,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,103777,84.03964169950964,baseline,datscilly,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,103777,0.5988861819607307,relative_legacy,datscilly,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,103777,33.19889031418929,peer,datscilly,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,103907,74.25853298031116,spot_baseline,darkives,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,103907,39.56062928731458,baseline,darkives,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,103907,-3.662355120584383,spot_peer,darkives,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,103907,-0.0417981548252949,relative_legacy,darkives,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,103907,-0.8844147860381569,peer,darkives,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,117580,-0.9928047570617792,peer,MaciekK,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,117580,-6.534840962152912,spot_peer,MaciekK,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,117580,71.67329572289948,spot_baseline,MaciekK,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,117580,26.857720940048143,baseline,MaciekK,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,117580,-0.0426193744354817,relative_legacy,MaciekK,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,119188,16.837988595535677,spot_peer,exmateriae,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,119188,92.7088423248192,spot_baseline,exmateriae,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,119188,48.299810519308,baseline,exmateriae,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,119188,0.1672270318233392,relative_legacy,exmateriae,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,119188,7.501562565249811,peer,exmateriae,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,120160,79.26007352799125,spot_baseline,OpenSystem,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,120160,1.8949121546157175,spot_peer,OpenSystem,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,120160,0.0716138417924489,relative_legacy,OpenSystem,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,120160,54.4409645498048,baseline,OpenSystem,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,120160,3.7024216933829592,peer,OpenSystem,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,131306,15.89631143279134,baseline,draaglom,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,131306,1.3062195207179792,peer,draaglom,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,131306,6.8617863838339295,spot_peer,draaglom,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,131306,83.73026033428764,spot_baseline,draaglom,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,131306,0.0204299628540487,relative_legacy,draaglom,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,131523,2.9456352289584333,baseline,SpottedBear,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,131523,81.18292286332117,spot_baseline,SpottedBear,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,131523,0.1367909313067487,peer,SpottedBear,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,131523,4.031411416093421,spot_peer,SpottedBear,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,131523,0.0011389100316647,relative_legacy,SpottedBear,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,139161,0.5243387480053171,peer,Zaldath,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,139161,74.79808694589568,spot_baseline,Zaldath,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,139161,53.43884014089754,baseline,Zaldath,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,139161,-0.0193513566806704,relative_legacy,Zaldath,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,139161,-3.0628507143793664,spot_peer,Zaldath,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,148850,33.33718161879384,spot_baseline,pasta,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,148850,-47.07813529151602,peer,pasta,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,148850,26.83724204192931,baseline,pasta,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,148850,-1.109663810968205,relative_legacy,pasta,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34258,What will be Canada's CPI growth rate for January 2025?,2025-02-01 05:55:16.545507+00,148850,-49.13052330004806,spot_peer,pasta,1.89514,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34744 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,101465,13.29496107347067,baseline,Jgalt,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,101465,-0.8969629391458653,peer,Jgalt,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,101465,-0.0237072884557038,relative_legacy,Jgalt,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,101465,70.26563006721256,spot_baseline,Jgalt,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,101465,-3.9298112233080658,spot_peer,Jgalt,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,103777,-0.0880732817933251,relative_legacy,datscilly,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,103777,61.197194195664935,baseline,datscilly,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,103777,-4.538629883681088,peer,datscilly,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,103777,-6.738320945978234,spot_peer,datscilly,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,103777,67.7379713168094,spot_baseline,datscilly,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,103907,-1.58546234851587,peer,darkives,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,103907,-1.7078820343238543,spot_peer,darkives,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,103907,-0.0390802272693288,relative_legacy,darkives,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,103907,72.26536633729836,spot_baseline,darkives,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,103907,38.830369255845405,baseline,darkives,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,117580,-0.0398846338317276,relative_legacy,MaciekK,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,117580,26.521773951933557,baseline,MaciekK,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,117580,-1.616343189897284,peer,MaciekK,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,117580,69.09607040636493,spot_baseline,MaciekK,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,117580,-5.229321957583216,spot_peer,MaciekK,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,119188,0.0890719641642478,relative_legacy,exmateriae,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,119188,80.05207471498139,spot_baseline,exmateriae,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,119188,6.944016163101752,spot_peer,exmateriae,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,119188,3.679679265998704,peer,exmateriae,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,119188,50.35745208771772,baseline,exmateriae,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,120160,-0.0243139440647121,relative_legacy,OpenSystem,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,120160,70.94075281667224,spot_baseline,OpenSystem,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,120160,-3.1796748350195183,spot_peer,OpenSystem,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,120160,17.269368484011732,baseline,OpenSystem,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,120160,-0.963265293066588,peer,OpenSystem,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,131306,16.329480576145972,baseline,draaglom,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,131306,0.0589473452673602,relative_legacy,draaglom,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,131306,12.81286766276546,spot_peer,draaglom,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,131306,85.33404106467873,spot_baseline,draaglom,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,131306,2.3192535172448734,peer,draaglom,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,131523,-3.324857989507953,spot_peer,SpottedBear,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,131523,-0.0037933260100627,relative_legacy,SpottedBear,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,131523,3.100488226444112,baseline,SpottedBear,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,131523,70.81008797763266,spot_baseline,SpottedBear,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,131523,-0.1618607249884487,peer,SpottedBear,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,139161,53.70201635638202,baseline,Zaldath,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,139161,-0.2789459353958205,spot_peer,Zaldath,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,139161,-0.0418854666212017,relative_legacy,Zaldath,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,139161,73.55140882633357,spot_baseline,Zaldath,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,139161,-2.076125629283421,peer,Zaldath,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,148850,4.631931095249288,spot_peer,pasta,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,148850,80.02887351889916,baseline,pasta,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,148850,5.839717225334964,peer,pasta,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,148850,77.97119815391417,spot_baseline,pasta,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34259,"What will the Warren Buffett Indicator (Wilshire 5000 to GDP Ratio) be on February 28, 2025?",2025-02-01 05:55:16.565643+00,148850,0.1203621652863688,relative_legacy,pasta,200.2866,2025-02-07 04:00:00+00,2025-02-07 04:00:00+00,1.0,34745 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,101465,-0.2063199721117526,peer,Jgalt,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,101465,-0.0049219904531325,relative_legacy,Jgalt,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,101465,90.12000200574197,spot_baseline,Jgalt,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,101465,-1.6564568603023322,spot_peer,Jgalt,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,101465,11.766101957155213,baseline,Jgalt,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,103777,28.12236705561818,baseline,datscilly,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,103777,-0.0036163508823584,relative_legacy,datscilly,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,103777,91.59386205958366,spot_baseline,datscilly,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,103777,0.253166541660538,peer,datscilly,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,103777,0.642147506633336,spot_peer,datscilly,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,103907,-0.9036958129224154,peer,darkives,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,103907,90.28525924192556,spot_baseline,darkives,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,103907,51.17032173079851,baseline,darkives,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,103907,-0.0242704809563629,relative_legacy,darkives,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,103907,-1.3987247888148089,spot_peer,darkives,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,117580,92.5599669296647,spot_baseline,MaciekK,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,117580,0.639410754412363,peer,MaciekK,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,117580,25.06472250167502,baseline,MaciekK,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,117580,2.148866456982629,spot_peer,MaciekK,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,117580,0.0016026005101159,relative_legacy,MaciekK,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,119188,67.83710335452753,baseline,exmateriae,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,119188,0.5683216982385435,peer,exmateriae,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,119188,-0.0081312388272204,relative_legacy,exmateriae,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,119188,91.8366040229568,spot_baseline,exmateriae,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,119188,1.0207232985435897,spot_peer,exmateriae,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,120160,1.8991438239224223,spot_peer,OpenSystem,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,120160,1.1380348425270257,peer,OpenSystem,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,120160,92.39984532774751,spot_baseline,OpenSystem,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,120160,41.99979343359298,baseline,OpenSystem,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,120160,-0.0005345974622148,relative_legacy,OpenSystem,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,131306,92.39984532774751,spot_baseline,draaglom,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,131306,0.0462172869232348,peer,draaglom,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,131306,1.8991438239224223,spot_peer,draaglom,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,131306,0.0002862318056986,relative_legacy,draaglom,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,131306,2.20816664019304,baseline,draaglom,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,139161,4.3802418537585615,peer,Zaldath,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,139161,93.67097517174284,spot_baseline,Zaldath,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,139161,0.0326211108004021,relative_legacy,Zaldath,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,139161,79.99558981850707,baseline,Zaldath,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,139161,3.881573975777106,spot_peer,Zaldath,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,148850,85.77270635578589,spot_baseline,pasta,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,148850,-8.436417236664374,spot_peer,pasta,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,148850,61.08619139562421,baseline,pasta,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,148850,-5.9153771924860745,peer,pasta,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34487,"How many movies will be new on Netflix's top 10 movies list for the week ending February 16, 2025?",2025-02-08 04:20:42.317439+00,148850,-0.082844813347737,relative_legacy,pasta,3 or more,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35001 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,101465,0.7543371028251,peer,Jgalt,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,101465,0.0007760139373523,relative_legacy,Jgalt,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,101465,93.52258197918724,spot_baseline,Jgalt,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,101465,2.3390752281646536,spot_peer,Jgalt,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,101465,15.622933791875202,baseline,Jgalt,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,103777,4.319324376078948,spot_peer,datscilly,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,103777,1.3170249968230596,baseline,datscilly,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,103777,0.0604919324683712,peer,datscilly,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,103777,0.0002598597949719,relative_legacy,datscilly,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,103777,94.61626906783708,spot_baseline,datscilly,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,103907,-25.57761592407357,spot_peer,darkives,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,103907,-6.717848366277481,peer,darkives,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,103907,-0.0971331149221372,relative_legacy,darkives,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,103907,21.21295256994381,baseline,darkives,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,103907,78.10425711679005,spot_baseline,darkives,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,117580,2.5060436029301023,peer,MaciekK,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,117580,0.0157763629657965,relative_legacy,MaciekK,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,117580,96.15546500799724,spot_baseline,MaciekK,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,117580,24.80297171074212,baseline,MaciekK,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,117580,7.106219714432221,spot_peer,MaciekK,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,119188,-0.0369390558579877,relative_legacy,exmateriae,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,119188,19.954230084916063,baseline,exmateriae,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,119188,-2.2481967229369326,spot_peer,exmateriae,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,119188,-1.9557815477758296,peer,exmateriae,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,119188,90.9890421413696,spot_baseline,exmateriae,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,120160,27.824556144018867,baseline,OpenSystem,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,120160,-0.0012835238202821,relative_legacy,OpenSystem,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,120160,2.214144621211615,spot_peer,OpenSystem,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,120160,1.1250383459458022,peer,OpenSystem,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,120160,93.45358308985776,spot_baseline,OpenSystem,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,131306,94.14014801424636,spot_baseline,draaglom,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,131306,0.087057778198243,peer,draaglom,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,131306,0.0002690305094638,relative_legacy,draaglom,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,131306,3.4572511922024214,spot_peer,draaglom,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,131306,2.0470947478428307,baseline,draaglom,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,139161,80.69196695331658,baseline,Zaldath,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,139161,2.4538347682869546,peer,Zaldath,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,139161,94.88670907457578,spot_baseline,Zaldath,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,139161,4.808987825948676,spot_peer,Zaldath,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,139161,0.0135110853229404,relative_legacy,Zaldath,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,148850,94.20838909025044,spot_baseline,pasta,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,148850,1.6868263833987476,peer,pasta,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,148850,3.58080968897197,spot_peer,pasta,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,148850,26.05704806996308,baseline,pasta,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34488,Which party will win the 2nd highest number of seats in the 2025 German federal election?,2025-02-08 04:20:42.357783+00,148850,0.0048968862011003,relative_legacy,pasta,Alternative for Germany,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35002 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,101465,4.287179645180448,baseline,Jgalt,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,101465,47.31645072432092,spot_baseline,Jgalt,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,101465,4.209126303418062,peer,Jgalt,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,101465,0.0653730135062248,relative_legacy,Jgalt,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,101465,38.17323157099469,spot_peer,Jgalt,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,103777,-0.0904000486896065,relative_legacy,datscilly,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,103777,-15.908635340996463,spot_peer,datscilly,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,103777,-0.7563198641156617,spot_baseline,datscilly,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,103777,-0.2470541920187241,baseline,datscilly,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,103777,1.089718305857173,peer,datscilly,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,103907,17.4476294135224,peer,darkives,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,103907,14.3429329269787,spot_baseline,darkives,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,103907,1.0780240489846926,spot_peer,darkives,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,103907,0.2165432197994294,relative_legacy,darkives,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,103907,8.254259085847545,baseline,darkives,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,117580,9.53580511426269,peer,MaciekK,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,117580,8.3229053959261,baseline,MaciekK,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,117580,0.1416847598889327,relative_legacy,MaciekK,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,117580,24.27191354379422,spot_peer,MaciekK,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,117580,34.95972358903162,spot_baseline,MaciekK,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,119188,3.759393397344685,baseline,exmateriae,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,119188,3.7327746579779344,peer,exmateriae,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,119188,21.424104791718044,spot_baseline,exmateriae,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,119188,9.04434239681646,spot_peer,exmateriae,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,119188,0.0269977474939193,relative_legacy,exmateriae,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,120160,-61.731900168807954,spot_peer,OpenSystem,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,120160,-27.269222990191512,baseline,OpenSystem,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,120160,-0.7383745300618263,relative_legacy,OpenSystem,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,120160,-41.48811082217032,spot_baseline,OpenSystem,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,120160,-24.425628171235825,peer,OpenSystem,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,131306,0.7192591032597967,peer,draaglom,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,131306,68.94228008324261,spot_peer,draaglom,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,131306,0.7796428794858334,baseline,draaglom,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,131306,0.0109834627377258,relative_legacy,draaglom,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,131306,74.66671606854129,spot_baseline,draaglom,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,139161,-22.69531385918632,peer,Zaldath,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,139161,-0.6769651499598726,relative_legacy,Zaldath,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,139161,-43.91597221883036,spot_peer,Zaldath,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,139161,-25.651730422190237,spot_baseline,Zaldath,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,139161,-31.26747521962371,baseline,Zaldath,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,148850,10.386629132124114,peer,pasta,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,148850,0.0054997973018248,relative_legacy,pasta,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,148850,-19.953283915198043,spot_peer,pasta,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,148850,-3.197914216397118,baseline,pasta,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34489,"In the Preliminary Estimate for Q4 2024 US Corporate Profits, how much of an increase/decrease will BEA report for profits from current production?",2025-02-08 04:20:42.378692+00,148850,-4.3515630411837325,spot_baseline,pasta,above_upper_bound,2025-02-10 06:00:00+00,2025-02-10 06:00:00+00,1.0,35003 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,101465,78.28077284191717,spot_baseline,Jgalt,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,101465,-0.2007277191749024,peer,Jgalt,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,101465,12.547057606040774,baseline,Jgalt,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,101465,-0.688831634922925,spot_peer,Jgalt,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,101465,-0.0003834786625888,relative_legacy,Jgalt,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,103777,78.71988063032538,spot_baseline,datscilly,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,103777,9.392305487822089,baseline,datscilly,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,103777,0.0964091676429144,spot_peer,datscilly,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,103777,0.0014828450501737,relative_legacy,datscilly,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,103777,0.0108786171038944,peer,datscilly,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,103907,1.6504360537251226,spot_peer,darkives,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,103907,54.379944780738064,baseline,darkives,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,103907,-0.0116339086160953,relative_legacy,darkives,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,103907,-0.9402693095256432,peer,darkives,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,103907,79.58889470453637,spot_baseline,darkives,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,117580,-1.4796613870189217,spot_peer,MaciekK,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,117580,-0.0013953241064906,relative_legacy,MaciekK,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,117580,77.83853970487746,spot_baseline,MaciekK,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,117580,2.762963558481155,baseline,MaciekK,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,117580,-0.0525221889661014,peer,MaciekK,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,119188,0.0272551925841824,relative_legacy,exmateriae,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,119188,2.8498440754656587,peer,exmateriae,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,119188,82.12530783391993,spot_baseline,exmateriae,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,119188,6.186213222642355,spot_peer,exmateriae,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,119188,36.37120223950966,baseline,exmateriae,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,120160,-18.607514701158745,spot_peer,OpenSystem,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,120160,68.26061944859853,spot_baseline,OpenSystem,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,120160,-0.0980072365824344,relative_legacy,OpenSystem,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,120160,-7.484793049781385,peer,OpenSystem,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,120160,25.85500557160072,baseline,OpenSystem,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,131306,1.2957539159091394,peer,draaglom,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,131306,82.12530783391993,spot_baseline,draaglom,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,131306,0.0185166329746198,relative_legacy,draaglom,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,131306,17.23601026914815,baseline,draaglom,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,131306,6.186213222642355,spot_peer,draaglom,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,131523,16.38255415889212,baseline,SpottedBear,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,131523,-0.0109957127780567,relative_legacy,SpottedBear,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,131523,-1.025036363655722,peer,SpottedBear,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,131523,76.0374427722588,spot_baseline,SpottedBear,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,131523,-4.700498817380271,spot_peer,SpottedBear,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,139161,1.9586501518056936,spot_peer,Zaldath,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,139161,0.0070193073818249,relative_legacy,Zaldath,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,139161,67.71693229639179,baseline,Zaldath,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,139161,0.7304838744804288,peer,Zaldath,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,139161,79.76124847235148,spot_baseline,Zaldath,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,148850,0.0549414680311162,relative_legacy,pasta,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,148850,9.398584722022369,spot_peer,pasta,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,148850,83.92167060573352,spot_baseline,pasta,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,148850,4.816388148144633,peer,pasta,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34490,How many of Sony's top video game downloads for the EU in February 2025 will be sports games?,2025-02-08 04:20:42.398968+00,148850,58.5895231371142,baseline,pasta,3-4,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35004 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,101465,5.923901980808785,baseline,Jgalt,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,101465,0.0676932898817729,relative_legacy,Jgalt,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,101465,35.86008624736136,spot_peer,Jgalt,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,101465,51.52208569615706,spot_baseline,Jgalt,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,101465,4.555527044568223,peer,Jgalt,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,103777,43.70631590969176,spot_baseline,datscilly,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,103777,0.0343885770263963,relative_legacy,datscilly,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,103777,2.739315191589638,peer,datscilly,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,103777,27.175897595733232,spot_peer,datscilly,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,103777,3.9846087601739626,baseline,datscilly,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,103907,-12.11027262582928,spot_peer,darkives,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,103907,8.348762710285495,spot_baseline,darkives,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,103907,-0.0679127180026625,relative_legacy,darkives,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,103907,-3.899704384082621,baseline,darkives,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,103907,1.8742938229656936,peer,darkives,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,117580,-7.315573523977271,baseline,MaciekK,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,117580,-0.2536492635218075,relative_legacy,MaciekK,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,117580,16.008400519838904,spot_baseline,MaciekK,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,117580,-5.900602417436094,peer,MaciekK,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,117580,-3.5995639485477096,spot_peer,MaciekK,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,119188,-2.220216875452368,peer,exmateriae,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,119188,-1.0935113733763118,baseline,exmateriae,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,119188,-0.155673050416516,relative_legacy,exmateriae,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,119188,-9.364478637810214,spot_peer,exmateriae,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,119188,10.81997729950265,spot_baseline,exmateriae,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,120160,1.4259736147215616,peer,OpenSystem,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,120160,-0.0800184251330027,relative_legacy,OpenSystem,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,120160,1.0693822500745402,spot_baseline,OpenSystem,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,120160,-20.198473137174783,spot_peer,OpenSystem,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,120160,-7.274830887836685,baseline,OpenSystem,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,131306,7.357370249986616,baseline,draaglom,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,131306,18.02713479011093,spot_peer,draaglom,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,131306,35.47242938463168,spot_baseline,draaglom,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,131306,5.520835186439811,peer,draaglom,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,131306,0.0539757046207663,relative_legacy,draaglom,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,131523,11.100013857196574,peer,SpottedBear,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,131523,36.98366389467015,spot_peer,SpottedBear,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,131523,12.147990190542698,baseline,SpottedBear,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,131523,52.53330557873499,spot_baseline,SpottedBear,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,131523,0.1837558062784928,relative_legacy,SpottedBear,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,139161,-0.3313666373229341,relative_legacy,Zaldath,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,139161,-16.357634211754043,baseline,Zaldath,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,139161,-9.259850504427858,peer,Zaldath,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,139161,-7.767125970781258,spot_baseline,Zaldath,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,139161,-30.01681560479234,spot_peer,Zaldath,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,148850,-16.53636463705291,baseline,pasta,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,148850,-19.233452642817227,spot_baseline,pasta,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,148850,-42.7571785737212,spot_peer,pasta,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,148850,-9.835288920165176,peer,pasta,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34491,What will be the price of eggs reported by the US BLS for Jan 2025?,2025-02-08 04:20:42.41951+00,148850,-0.3504821248259121,relative_legacy,pasta,4.953,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35005 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,101465,53.40616024211184,spot_baseline,Jgalt,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,101465,3.569307359727474,peer,Jgalt,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,101465,-0.0083911489365168,relative_legacy,Jgalt,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,101465,4.952200204084251,spot_peer,Jgalt,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,101465,39.47308745546866,baseline,Jgalt,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,103777,26.628066079095124,baseline,datscilly,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,103777,-0.0971289404609404,relative_legacy,datscilly,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,103777,-4.284089915574869,peer,datscilly,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,103777,42.22330006830478,spot_baseline,datscilly,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,103777,-3.660430907105139,spot_peer,datscilly,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,103907,69.24271980897078,spot_baseline,darkives,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,103907,10.888499459976815,peer,darkives,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,103907,48.05439221359758,baseline,darkives,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,103907,17.148940885793042,spot_peer,darkives,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,103907,0.0797218653254249,relative_legacy,darkives,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,117580,2.66835971774721,baseline,MaciekK,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,117580,8.872401775710882,spot_peer,MaciekK,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,117580,0.0020388552053549,relative_legacy,MaciekK,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,117580,0.4149251416504075,peer,MaciekK,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,117580,58.496250072115615,spot_baseline,MaciekK,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,119188,52.60688116675877,spot_baseline,exmateriae,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,119188,0.0077811760035688,relative_legacy,exmateriae,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,119188,4.336624606793657,spot_peer,exmateriae,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,119188,18.422830128292382,baseline,exmateriae,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,119188,1.322851463643263,peer,exmateriae,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,120160,58.496250072115615,spot_baseline,OpenSystem,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,120160,0.0015047896215403,relative_legacy,OpenSystem,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,120160,2.3544940168259374,baseline,OpenSystem,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,120160,8.872401775710882,spot_peer,OpenSystem,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,120160,0.3591079784740295,peer,OpenSystem,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,131306,-0.0212170964736881,relative_legacy,draaglom,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,131306,-7.027691962141692,spot_peer,draaglom,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,131306,37.85116232537298,spot_baseline,draaglom,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,131306,-1.007629019950267,peer,draaglom,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,131306,7.597315769277887,baseline,draaglom,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,131523,-7.819034044515069,peer,SpottedBear,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,131523,-36.17927690297404,spot_peer,SpottedBear,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,131523,0.0,spot_baseline,SpottedBear,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,131523,0.0287213507212415,baseline,SpottedBear,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,131523,-0.1089843996925031,relative_legacy,SpottedBear,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,139161,16.04334856877437,spot_peer,Zaldath,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,139161,0.0714389527310368,relative_legacy,Zaldath,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,139161,67.80719051126377,spot_baseline,Zaldath,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,139161,11.038792014742263,peer,Zaldath,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,139161,55.11525471616204,baseline,Zaldath,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,148850,25.883443564728505,baseline,pasta,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,148850,-14.48273043817408,peer,pasta,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,148850,29.631056070809237,spot_baseline,pasta,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,148850,-13.358518044646184,spot_peer,pasta,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34492,"Before March 1, 2025, will Reform UK be the highest polling party in the UK by at least 2 points, according to Politico?",2025-02-08 04:20:42.760441+00,148850,-0.2120519418101798,relative_legacy,pasta,yes,2025-02-11 13:00:00+00,2025-02-11 13:00:00+00,1.0,35006 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,101465,-1.1525877641407958,peer,Jgalt,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,101465,30.20356618344304,spot_baseline,Jgalt,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,101465,8.384682244415144,baseline,Jgalt,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,101465,-3.5861464319595293,spot_peer,Jgalt,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,101465,0.0045107772952778,relative_legacy,Jgalt,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,103777,8.297258783872191,baseline,datscilly,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,103777,-12.19690510822216,spot_peer,datscilly,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,103777,24.682366698760504,spot_baseline,datscilly,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,103777,-4.791931548232989,peer,datscilly,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,103777,-0.0329875345475538,relative_legacy,datscilly,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,103907,-5.677840153078822,spot_peer,darkives,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,103907,-17.492099159638396,peer,darkives,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,103907,27.48996043107776,baseline,darkives,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,103907,-0.0990966812183038,relative_legacy,darkives,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,103907,28.862376779657534,spot_baseline,darkives,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,119188,-9.356642050558978,spot_peer,exmateriae,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,119188,18.204798099664973,baseline,exmateriae,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,119188,26.503537111254197,spot_baseline,exmateriae,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,119188,-7.329944319965152,peer,exmateriae,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,119188,-0.0138089685071721,relative_legacy,exmateriae,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,120160,0.1670517476789168,peer,OpenSystem,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,120160,7.673242655701003,spot_peer,OpenSystem,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,120160,0.8933189771175576,baseline,OpenSystem,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,120160,37.42306165020178,spot_baseline,OpenSystem,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,120160,0.0028126969117701,relative_legacy,OpenSystem,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,131306,-0.0094800904540512,peer,draaglom,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,131306,28.279858792711256,spot_baseline,draaglom,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,131306,-6.586324228702681,spot_peer,draaglom,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,131306,-1.2969115694780478e-05,relative_legacy,draaglom,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,131306,0.0668798680910112,baseline,draaglom,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,131523,29.248125036057807,spot_baseline,SpottedBear,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,131523,4.376347982233831,baseline,SpottedBear,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,131523,-0.7834358200371397,peer,SpottedBear,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,131523,-0.0007271711185879,relative_legacy,SpottedBear,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,131523,-5.076234441336859,spot_peer,SpottedBear,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,139161,35.33205286547042,spot_baseline,Zaldath,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,139161,4.328753613784792,peer,Zaldath,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,139161,0.1168701127384706,relative_legacy,Zaldath,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,139161,4.412144757460122,spot_peer,Zaldath,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,139161,28.968188928046278,baseline,Zaldath,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,148850,51.99201322658956,spot_baseline,pasta,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,148850,0.341499597851489,relative_legacy,pasta,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,148850,30.394705000698004,spot_peer,pasta,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,148850,27.0636733410048,peer,pasta,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34493,Which team will win the 2025 4 Nations Face-Off?,2025-02-08 04:20:42.786689+00,148850,50.87253574229695,baseline,pasta,Canada,2025-02-12 01:58:46+00,2025-02-12 01:58:46+00,1.0,35007 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,101465,96.49530529007993,spot_baseline,Jgalt,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,101465,-0.1409754089757097,spot_peer,Jgalt,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,101465,23.3726899726124,baseline,Jgalt,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,101465,-0.1983784910707479,peer,Jgalt,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,101465,-0.0032805127154219,relative_legacy,Jgalt,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,103777,66.52148986681118,baseline,datscilly,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,103777,0.3134673967493142,spot_peer,datscilly,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,103777,-0.025080143515824,peer,datscilly,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,103777,97.08536543404836,spot_baseline,datscilly,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,103777,-0.0058144488483382,relative_legacy,datscilly,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,103907,0.00041671877997,relative_legacy,darkives,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,103907,97.81956296816516,spot_baseline,darkives,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,103907,0.878919564246127,spot_peer,darkives,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,103907,83.01990484287445,baseline,darkives,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,103907,0.5650438495867665,peer,darkives,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,117580,3.213129375708739,baseline,MaciekK,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,117580,6.982714336979276e-06,relative_legacy,MaciekK,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,117580,0.3134673967493142,spot_peer,MaciekK,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,117580,0.0109654754158883,peer,MaciekK,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,117580,97.08536543404836,spot_baseline,MaciekK,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,119188,98.25829469225908,spot_baseline,exmateriae,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,119188,0.0034066494464616,relative_legacy,exmateriae,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,119188,1.216814739332668,spot_peer,exmateriae,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,119188,62.23251555748062,baseline,exmateriae,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,119188,0.7127099600485426,peer,exmateriae,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,120160,35.47732551085666,baseline,OpenSystem,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,120160,-1.2916972899684822,peer,OpenSystem,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,120160,92.5999418556223,spot_baseline,OpenSystem,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,120160,-3.141042277698598,spot_peer,OpenSystem,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,120160,-0.0192491936399377,relative_legacy,OpenSystem,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,131306,0.3134673967493142,spot_peer,draaglom,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,131306,7.74005242883721,baseline,draaglom,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,131306,-2.8072927500718926e-05,relative_legacy,draaglom,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,131306,0.0166741181485843,peer,draaglom,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,131306,97.08536543404836,spot_baseline,draaglom,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,131523,-0.2548771217807376,spot_peer,SpottedBear,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,131523,50.71912020731492,baseline,SpottedBear,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,131523,0.58011339859903,peer,SpottedBear,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,131523,0.0030704816030331,relative_legacy,SpottedBear,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,131523,96.3474123974886,spot_baseline,SpottedBear,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,139161,1.441508670529077,spot_peer,Zaldath,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,139161,0.6191106633211665,peer,Zaldath,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,139161,89.57911143452533,baseline,Zaldath,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,139161,0.0018600747489414,relative_legacy,Zaldath,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,148850,-0.9407503559008404,spot_peer,pasta,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,148850,87.74918469598836,baseline,pasta,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,148850,95.4568570752994,spot_baseline,pasta,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,148850,-0.0188145143561117,relative_legacy,pasta,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34494,"Will Donald Trump visit El Salvador after the launch of this question and before April 1, 2025?",2025-02-08 04:20:42.807472+00,148850,-0.9894615405649684,peer,pasta,no,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35008 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,101465,0.1141617038492872,relative_legacy,Jgalt,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,101465,-59.94620704162712,spot_baseline,Jgalt,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,101465,9.136133417501108,peer,Jgalt,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,101465,-7.26676079305591,baseline,Jgalt,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,101465,28.355230656979067,spot_peer,Jgalt,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,103777,-147.39311883324126,spot_baseline,datscilly,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,103777,-0.3166730246659723,relative_legacy,datscilly,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,103777,-102.13093523748164,baseline,datscilly,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,103777,-25.793622937095897,peer,datscilly,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,103777,-38.99319196194491,spot_peer,datscilly,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,103907,0.3450917807780573,relative_legacy,darkives,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,103907,34.89306399286053,spot_peer,darkives,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,103907,-51.45731728297583,spot_baseline,darkives,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,103907,-43.90321739576838,baseline,darkives,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,103907,27.534892131109125,peer,darkives,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,117580,-0.0218500290357129,relative_legacy,MaciekK,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,117580,-5.866651208315315,baseline,MaciekK,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,117580,-1.342681791598764,peer,MaciekK,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,117580,-27.28646799996419,spot_peer,MaciekK,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,117580,-132.19280948873623,spot_baseline,MaciekK,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,119188,1.589693410317603,peer,exmateriae,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,119188,6.058486716740044,spot_peer,exmateriae,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,119188,0.0344565909409378,relative_legacy,exmateriae,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,119188,-74.46725228562316,baseline,exmateriae,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,119188,-88.8968687611256,spot_baseline,exmateriae,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,120160,0.2845536104390455,relative_legacy,OpenSystem,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,120160,62.81688935740568,spot_peer,OpenSystem,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,120160,-5.901128313833789,baseline,OpenSystem,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,120160,23.58432883042816,peer,OpenSystem,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,120160,-15.200309344504996,spot_baseline,OpenSystem,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,131306,-0.0493961582729665,relative_legacy,draaglom,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,131306,-59.251142716828745,spot_peer,draaglom,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,131306,-4.358145525912255,peer,draaglom,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,131306,-173.6965594166206,spot_baseline,draaglom,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,131306,-13.075474982427602,baseline,draaglom,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,131523,17.765210678720734,spot_peer,SpottedBear,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,131523,-50.8263101570069,baseline,SpottedBear,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,131523,-73.69655941662063,spot_baseline,SpottedBear,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,131523,0.225286142586123,peer,SpottedBear,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,131523,-0.0374557161108219,relative_legacy,SpottedBear,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,139161,-89.11276004643305,peer,Zaldath,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,139161,-173.6965594166206,spot_baseline,Zaldath,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,139161,-186.54309385589343,baseline,Zaldath,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,139161,-1.068506180750224,relative_legacy,Zaldath,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,139161,-59.251142716828745,spot_peer,Zaldath,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,148850,0.7057796120759537,relative_legacy,pasta,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,148850,-51.45731728297583,spot_baseline,pasta,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,148850,58.53687636909789,peer,pasta,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,148850,-9.121507390098824,baseline,pasta,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34495,"Will Sam Altman's net worth exceed $1.3 billion on the Forbes Real-Time Billionaires List on March 31, 2025?",2025-02-08 04:20:42.828374+00,148850,34.89306399286053,spot_peer,pasta,yes,2025-02-12 20:00:00+00,2025-02-12 20:00:00+00,1.0,35009 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,101465,10.675271819442198,baseline,Jgalt,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,101465,77.26215914300518,spot_baseline,Jgalt,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,101465,25.34613402674334,spot_peer,Jgalt,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,101465,-0.0107952870718198,relative_legacy,Jgalt,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,101465,4.860150101189074,peer,Jgalt,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,103777,91.8194305616576,baseline,datscilly,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,103777,78.70718240500558,peer,datscilly,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,103777,135.16455365314138,spot_baseline,datscilly,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,103777,89.6821279268947,spot_peer,datscilly,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,103777,1.3468632622054335,relative_legacy,datscilly,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,103907,0.0869870633321031,relative_legacy,darkives,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,103907,58.53124576064581,spot_baseline,darkives,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,103907,32.782315493591554,peer,darkives,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,103907,4.534008046344058,spot_peer,darkives,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,103907,53.981657758007,baseline,darkives,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,117580,117.59894584145376,spot_baseline,MaciekK,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,117580,14.718565322516032,peer,MaciekK,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,117580,0.1775558544763638,relative_legacy,MaciekK,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,117580,70.16478591390845,spot_peer,MaciekK,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,117580,21.438371205680333,baseline,MaciekK,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,119188,-15.128683750064091,baseline,exmateriae,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,119188,-1.8488032769943816,relative_legacy,exmateriae,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,119188,-65.62019436172122,spot_peer,exmateriae,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,119188,-53.39155035048599,peer,exmateriae,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,119188,-4.607536406612936,spot_baseline,exmateriae,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,120160,-1.7605817228922782,relative_legacy,OpenSystem,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,120160,-73.72993813983312,spot_baseline,OpenSystem,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,120160,-58.69188981284661,peer,OpenSystem,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,120160,-142.4228629541881,spot_peer,OpenSystem,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,120160,-33.863953378925906,baseline,OpenSystem,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,131306,5.480035570970246,baseline,draaglom,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,131306,4.217892720821894,peer,draaglom,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,131306,0.0611002151100817,relative_legacy,draaglom,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,131306,174.89195297389622,spot_baseline,draaglom,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,131306,133.8236827277334,spot_peer,draaglom,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,131523,-65.22514935194674,spot_peer,SpottedBear,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,131523,-0.1016428283332877,relative_legacy,SpottedBear,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,131523,-0.1142811575355994,baseline,SpottedBear,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,131523,-4.2519958978159,spot_baseline,SpottedBear,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,131523,-2.032056961158416,peer,SpottedBear,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,139161,30.186581904169525,baseline,Zaldath,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,139161,45.46118697014101,spot_baseline,Zaldath,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,139161,-0.2708168254171586,relative_legacy,Zaldath,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,139161,-9.988279498661278,spot_peer,Zaldath,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,139161,7.718341399810617,peer,Zaldath,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,148850,18.18581129134012,spot_baseline,pasta,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,148850,-40.29425247510672,spot_peer,pasta,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,148850,-28.88895031844377,peer,pasta,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,148850,-1.2706757087929004,relative_legacy,pasta,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34496,"How many earthquakes of magnitude ≥ 4 will happen near Santorini, Greece in the first week of March, 2025?",2025-02-08 04:20:42.85252+00,148850,6.047400494438682,baseline,pasta,0.0,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35010 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,101465,-25.153876699596427,spot_baseline,Jgalt,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,101465,-2.7032984674321576,baseline,Jgalt,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,101465,-0.570891595937626,peer,Jgalt,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,101465,-0.0013433324747994,relative_legacy,Jgalt,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,101465,-9.99663721092496,spot_peer,Jgalt,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,103777,-36.792421301690325,spot_peer,datscilly,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,103777,8.001939507864652,baseline,datscilly,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,103777,0.3484030433856582,relative_legacy,datscilly,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,103777,28.10930713972115,peer,datscilly,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,103777,-59.94620704162715,spot_baseline,datscilly,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,103907,-12.092075923406249,baseline,darkives,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,103907,-0.0018570002854391,relative_legacy,darkives,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,103907,-3.886483929431357,peer,darkives,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,103907,-32.19280948873623,spot_baseline,darkives,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,103907,-15.417766563084076,spot_peer,darkives,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,117580,-5.116764451132482,peer,MaciekK,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,117580,-0.0504566731978838,relative_legacy,MaciekK,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,117580,-10.475295378852344,baseline,MaciekK,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,117580,9.37596136071701,spot_peer,MaciekK,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,117580,0.0,spot_baseline,MaciekK,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,119188,-0.2434334816680381,relative_legacy,exmateriae,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,119188,-80.75211076329278,baseline,exmateriae,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,119188,-40.2114944868852,spot_peer,exmateriae,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,119188,-29.330854518499734,peer,exmateriae,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,119188,-64.38561897747249,spot_baseline,exmateriae,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,120160,-4.4488940903599605,peer,OpenSystem,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,120160,-0.0018570002854391,relative_legacy,OpenSystem,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,120160,-14.276249337567702,baseline,OpenSystem,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,120160,-15.417766563084076,spot_peer,OpenSystem,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,120160,-32.19280948873623,spot_baseline,OpenSystem,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,131306,0.0527678167490328,relative_legacy,draaglom,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,131306,2.9297966029357414,baseline,draaglom,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,131306,37.85116232537298,spot_baseline,draaglom,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,131306,3.615503681597516,peer,draaglom,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,131306,38.527546301549336,spot_peer,draaglom,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,131523,0.0346505797362639,relative_legacy,SpottedBear,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,131523,2.3477253659006654,peer,SpottedBear,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,131523,2.4426011989587844,baseline,SpottedBear,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,131523,58.496250072115615,spot_baseline,SpottedBear,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,131523,54.42764003940193,spot_peer,SpottedBear,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,139161,-0.0326128638922659,relative_legacy,Zaldath,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,139161,-9.318534520748734,peer,Zaldath,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,139161,-29.13458840238965,baseline,Zaldath,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,139161,-32.19280948873623,spot_baseline,Zaldath,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,139161,-15.417766563084076,spot_peer,Zaldath,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,148850,12.957058924640148,baseline,pasta,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,148850,18.599886918890547,peer,pasta,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,148850,27.9768421593595,spot_baseline,pasta,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,148850,30.922704987084387,spot_peer,pasta,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34497,"Will the US officially announce the withdrawal of at least half of its troops out of Syria before April, 2025?",2025-02-08 04:20:43.174127+00,148850,0.2653010543373374,relative_legacy,pasta,no,2025-02-13 17:00:00+00,2025-02-13 17:00:00+00,1.0,35011 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,101465,96.79063702901466,spot_baseline,Jgalt,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,101465,-0.5643696241044771,spot_peer,Jgalt,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,101465,-0.001239106956673,relative_legacy,Jgalt,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,101465,15.019116293646062,baseline,Jgalt,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,101465,-0.1125219303096014,peer,Jgalt,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,103777,97.08536543404836,spot_baseline,datscilly,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,103777,-0.3373805541266658,spot_peer,datscilly,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,103777,-0.1602450103630122,peer,datscilly,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,103777,71.71975452114437,baseline,datscilly,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,103777,-0.0034487902492673,relative_legacy,datscilly,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,103907,97.81956296816516,spot_baseline,darkives,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,103907,45.47453494040383,baseline,darkives,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,103907,0.0003455983804374,relative_legacy,darkives,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,103907,0.2280716133701334,spot_peer,darkives,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,103907,0.1007433043169284,peer,darkives,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,117580,25.99776414980245,baseline,MaciekK,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,117580,97.08536543404836,spot_baseline,MaciekK,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,117580,-0.3373805541266658,spot_peer,MaciekK,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,117580,-0.0012078560427454,relative_legacy,MaciekK,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,117580,-0.0870569644911544,peer,MaciekK,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,119188,0.4534491979693384,spot_peer,exmateriae,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,119188,98.11219897943108,spot_baseline,exmateriae,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,119188,49.49032186187623,baseline,exmateriae,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,119188,0.0011997450403254,relative_legacy,exmateriae,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,119188,0.1693984959363509,peer,exmateriae,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,120160,-1.476991683814349,spot_peer,OpenSystem,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,120160,84.84910075480774,baseline,OpenSystem,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,120160,-0.0143797615772967,relative_legacy,OpenSystem,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,120160,-1.1399835059291017,peer,OpenSystem,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,120160,95.60566524124027,spot_baseline,OpenSystem,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,131306,13.79747915557146,baseline,draaglom,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,131306,0.0015961859604759,relative_legacy,draaglom,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,131306,0.1112624869248817,peer,draaglom,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,131306,0.7906607196531186,spot_peer,draaglom,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,131306,98.5500430304885,spot_baseline,draaglom,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,131523,7.596391816513818,baseline,SpottedBear,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,131523,4.17666537118268e-07,relative_legacy,SpottedBear,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,131523,97.08536543404836,spot_baseline,SpottedBear,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,131523,-0.0255704912881192,peer,SpottedBear,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,131523,-0.3373805541266658,spot_peer,SpottedBear,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,139161,0.7906607196531186,spot_peer,Zaldath,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,139161,0.0065543588900461,relative_legacy,Zaldath,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,139161,0.696210307821528,peer,Zaldath,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,139161,69.14702400987446,baseline,Zaldath,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,148850,53.12381284147191,baseline,pasta,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,148850,0.4477633073812676,peer,pasta,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,148850,0.7906607196531186,spot_peer,pasta,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,148850,0.0041729455796401,relative_legacy,pasta,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34498,"Before April 1, 2025, will China seize control of Second Thomas Shoal?",2025-02-08 04:20:43.194425+00,148850,98.5500430304885,spot_baseline,pasta,no,2025-02-13 21:00:00+00,2025-02-13 21:00:00+00,1.0,35012 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,101465,99.71117206751734,spot_baseline,Jgalt,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,101465,0.0579499525956367,peer,Jgalt,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,101465,25.66211859405326,baseline,Jgalt,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,101465,0.2232611988377534,spot_peer,Jgalt,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,101465,0.0007448317968148,relative_legacy,Jgalt,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,103777,0.0446290120943177,peer,datscilly,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,103777,99.56654097361088,spot_baseline,datscilly,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,103777,42.57780717148973,baseline,datscilly,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,103777,0.1118716044349147,spot_peer,datscilly,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,103777,0.0005309836542182,relative_legacy,datscilly,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,103907,-0.0006332724750817,relative_legacy,darkives,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,103907,64.4794497143482,baseline,darkives,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,103907,-0.0695963538546107,peer,darkives,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,103907,-0.1112431514812619,spot_peer,darkives,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,103907,99.27684307689242,spot_baseline,darkives,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,117580,0.000370229186001,spot_peer,MaciekK,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,117580,46.03720474893284,baseline,MaciekK,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,117580,99.4217647405994,spot_baseline,MaciekK,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,117580,3.7786655888339206e-05,relative_legacy,MaciekK,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,117580,0.0064155469284638,peer,MaciekK,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,119188,0.0938650206584136,peer,exmateriae,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,119188,0.1118716044349147,spot_peer,exmateriae,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,119188,0.0010974424329134,relative_legacy,exmateriae,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,119188,82.99106845135363,baseline,exmateriae,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,119188,99.56654097361088,spot_baseline,exmateriae,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,120160,71.42785908336016,baseline,OpenSystem,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,120160,-0.6709980436987325,spot_peer,OpenSystem,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,120160,-0.0061191617961615,relative_legacy,OpenSystem,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,120160,-0.5145786506602845,peer,OpenSystem,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,120160,98.5500430304885,spot_baseline,OpenSystem,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,131306,0.2288630354520268,peer,draaglom,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,131306,0.002817414980481,relative_legacy,draaglom,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,131306,99.85565831303312,spot_baseline,draaglom,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,131306,0.3345392362921612,spot_peer,draaglom,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,131306,75.63578893530237,baseline,draaglom,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,131523,99.27684307689242,spot_baseline,SpottedBear,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,131523,26.90734942975987,baseline,SpottedBear,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,131523,-0.0286469044654938,peer,SpottedBear,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,131523,-0.0003729769537136,relative_legacy,SpottedBear,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,131523,-0.1112431514812619,spot_peer,SpottedBear,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,139161,0.2920400808578715,peer,Zaldath,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,139161,0.003405552748351,relative_legacy,Zaldath,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,139161,0.3345392362921612,spot_peer,Zaldath,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,139161,89.74563540552921,baseline,Zaldath,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,139161,99.85565831303312,spot_baseline,Zaldath,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,148850,-0.2229687628166786,spot_peer,pasta,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,148850,33.372288760168686,baseline,pasta,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,148850,-0.110940739606386,peer,pasta,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,148850,-0.0014859539124447,relative_legacy,pasta,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34499,"Will the world remain ""normal"" through April 1, 2025, according to the specified criteria?",2025-02-08 04:20:43.217561+00,148850,99.13177569001992,spot_baseline,pasta,yes,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35013 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,101465,0.0642985609320368,relative_legacy,Jgalt,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,101465,35.61438102252753,spot_baseline,Jgalt,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,101465,27.7021862467836,spot_peer,Jgalt,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,101465,6.711375715209434,baseline,Jgalt,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,101465,5.609028955685563,peer,Jgalt,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,103777,5.24459350082745,peer,datscilly,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,103777,11.103131238874395,spot_baseline,datscilly,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,103777,4.826093051135285,baseline,datscilly,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,103777,0.0429078137899807,relative_legacy,datscilly,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,103777,8.82451549173945,spot_peer,datscilly,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,103907,8.791913790797466,baseline,darkives,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,103907,13.750352374993504,spot_baseline,darkives,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,103907,10.863308677094604,spot_peer,darkives,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,103907,0.1321193546133342,relative_legacy,darkives,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,103907,13.962206480206554,peer,darkives,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,117580,13.750352374993504,spot_baseline,MaciekK,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,117580,0.1630685139270523,peer,MaciekK,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,117580,0.2064057640644338,baseline,MaciekK,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,117580,10.863308677094604,spot_peer,MaciekK,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,117580,0.0016352077081457,relative_legacy,MaciekK,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,119188,-12.934793925888172,baseline,exmateriae,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,119188,-0.1102820564140622,relative_legacy,exmateriae,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,119188,-6.53582368594583,peer,exmateriae,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,119188,-8.991334516613838,spot_peer,exmateriae,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,119188,-12.029423371771196,spot_baseline,exmateriae,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,120160,20.53123945372013,spot_peer,OpenSystem,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,120160,12.590577934665534,baseline,OpenSystem,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,120160,11.85491031178944,peer,OpenSystem,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,120160,0.1205526626252832,relative_legacy,OpenSystem,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,120160,26.303440583379377,spot_baseline,OpenSystem,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,131306,2.4735806206340407,spot_peer,draaglom,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,131306,2.856915219677092,spot_baseline,draaglom,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,131306,6.618637089884458e-06,relative_legacy,draaglom,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,131306,0.2821814857147343,baseline,draaglom,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,131306,0.3449782999169959,peer,draaglom,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,131523,-13.670073738020644,baseline,SpottedBear,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,131523,-51.45731728297583,spot_baseline,SpottedBear,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,131523,-39.35726062768954,spot_peer,SpottedBear,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,131523,-0.127714732465402,relative_legacy,SpottedBear,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,131523,-9.959139815720398,peer,SpottedBear,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,139161,-3.9421797687611706,peer,Zaldath,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,139161,0.2732886988362921,spot_peer,Zaldath,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,139161,0.0,spot_baseline,Zaldath,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,139161,-0.0617469451950611,relative_legacy,Zaldath,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,139161,-28.680799887454324,baseline,Zaldath,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,148850,-43.440282414577496,spot_baseline,pasta,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,148850,-28.7589304455626,baseline,pasta,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,148850,-16.741642791925685,peer,pasta,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,148850,-0.2307731651860994,relative_legacy,pasta,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34500,"Will the US federal government be shutdown before April 1, 2025?",2025-02-08 04:20:43.2372+00,148850,-33.182832721599446,spot_peer,pasta,no,2025-02-14 07:00:00+00,2025-02-14 07:00:00+00,1.0,35014 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,101465,12.28875220605887,spot_peer,Jgalt,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,101465,5.6043649956205766,baseline,Jgalt,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,101465,0.0665941749955153,relative_legacy,Jgalt,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,101465,15.315678806142053,spot_baseline,Jgalt,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,101465,6.223991277982303,peer,Jgalt,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,103777,26.303440583379377,spot_baseline,datscilly,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,103777,20.75112564667709,spot_peer,datscilly,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,103777,0.2153147017275093,relative_legacy,datscilly,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,103777,17.496067155181002,peer,datscilly,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,103777,16.00731750090325,baseline,datscilly,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,103907,-2.2010315883797005,peer,darkives,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,103907,-17.9979233855602,baseline,darkives,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,103907,-0.0472516621368753,relative_legacy,darkives,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,103907,-21.75914350726266,spot_baseline,darkives,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,103907,-16.264923967604926,spot_peer,darkives,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,117580,0.0,spot_baseline,MaciekK,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,117580,0.9202844216235372,peer,MaciekK,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,117580,-0.0017293614857387,relative_legacy,MaciekK,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,117580,0.4931748917932512,spot_peer,MaciekK,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,117580,0.0,baseline,MaciekK,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,119188,-8.771448323656887,spot_peer,exmateriae,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,119188,-0.0448663879096173,relative_legacy,exmateriae,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,119188,-15.722424500977414,baseline,exmateriae,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,119188,-3.410624036564954,peer,exmateriae,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,119188,-12.029423371771196,spot_baseline,exmateriae,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,120160,0.0,spot_baseline,OpenSystem,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,120160,0.4931748917932512,spot_peer,OpenSystem,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,120160,0.0,baseline,OpenSystem,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,120160,1.7922576287116052,peer,OpenSystem,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,120160,0.0096879272323927,relative_legacy,OpenSystem,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,131306,29.64475983262559,spot_peer,draaglom,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,131306,-0.2206363329709677,baseline,draaglom,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,131306,-0.0039357248154483,relative_legacy,draaglom,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,131306,37.85116232537298,spot_baseline,draaglom,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,131306,0.1821428340963425,peer,draaglom,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,131523,-14.70138004775636,baseline,SpottedBear,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,131523,-24.30055303200784,spot_peer,SpottedBear,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,131523,-8.718020720043578,peer,SpottedBear,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,131523,-0.113184671613138,relative_legacy,SpottedBear,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,131523,-32.19280948873623,spot_baseline,SpottedBear,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,139161,-0.0038944754381572,relative_legacy,Zaldath,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,139161,13.750352374993504,spot_baseline,Zaldath,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,139161,-23.091767174416088,baseline,Zaldath,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,139161,11.083194870051576,spot_peer,Zaldath,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,139161,-1.4001057657955769,peer,Zaldath,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,148850,-10.884961206810964,peer,pasta,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,148850,-25.417257015730225,spot_peer,pasta,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,148850,-18.05388637368237,baseline,pasta,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,148850,-33.642766458247735,spot_baseline,pasta,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34501,"Will China launch an antitrust investigation into Intel before April, 2025?",2025-02-08 04:20:43.260038+00,148850,-0.1328848488614467,relative_legacy,pasta,no,2025-02-14 17:00:00+00,2025-02-14 17:00:00+00,1.0,35015 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,101465,15.338152671127538,peer,Jgalt,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,101465,42.082225705582,spot_peer,Jgalt,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,101465,-61.02083900745622,baseline,Jgalt,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,101465,-173.6965594166206,spot_baseline,Jgalt,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,101465,0.1356894183998484,relative_legacy,Jgalt,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,103777,-73.72323698483903,baseline,datscilly,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,103777,18.016983155534387,peer,datscilly,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,103777,0.161174481645641,relative_legacy,datscilly,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,103777,34.41635109592073,spot_peer,datscilly,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,103777,-183.65012677171205,spot_baseline,datscilly,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,103907,4.985528629782997,peer,darkives,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,103907,-232.19280948873623,spot_baseline,darkives,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,103907,-130.94769878845543,baseline,darkives,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,103907,0.0103997818605983,relative_legacy,darkives,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,103907,-2.9694529731029315,spot_peer,darkives,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,117580,-69.60239097110103,baseline,MaciekK,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,117580,-59.72785561376857,spot_peer,MaciekK,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,117580,-11.882301230372748,peer,MaciekK,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,117580,-305.88936890535683,spot_baseline,MaciekK,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,117580,-0.1626611200642138,relative_legacy,MaciekK,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,119188,-8.05422427374231,peer,exmateriae,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,119188,-173.87442655160618,baseline,exmateriae,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,119188,-0.1429272408271821,relative_legacy,exmateriae,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,119188,-247.39311883324123,spot_baseline,exmateriae,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,119188,-14.676176935083632,spot_peer,exmateriae,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,120160,-27.763180896904014,spot_peer,OpenSystem,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,120160,-11.249637444445106,peer,OpenSystem,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,120160,-264.38561897747246,spot_baseline,OpenSystem,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,120160,-188.98534396562695,baseline,OpenSystem,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,120160,-0.1780695731918268,relative_legacy,OpenSystem,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,131306,74.04690042244656,spot_peer,draaglom,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,131306,-15.445786028773323,baseline,draaglom,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,131306,-132.19280948873623,spot_baseline,draaglom,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,131306,2.128041924385604,peer,draaglom,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,131306,0.0291818354619136,relative_legacy,draaglom,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,131523,-35.40705609411781,baseline,SpottedBear,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,131523,0.0045770036735908,relative_legacy,SpottedBear,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,131523,-2.9694529731029315,spot_peer,SpottedBear,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,131523,0.742040300957122,peer,SpottedBear,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,131523,-232.19280948873623,spot_baseline,SpottedBear,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,139161,-332.1928094887362,spot_baseline,Zaldath,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,139161,-79.9858063686524,spot_peer,Zaldath,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,139161,-0.6377578299054876,relative_legacy,Zaldath,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,139161,-49.60169462875034,peer,Zaldath,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,139161,-255.647123284376,baseline,Zaldath,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,148850,-127.02873093128277,baseline,pasta,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,148850,39.57711089552276,peer,pasta,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,148850,0.4230233955514189,relative_legacy,pasta,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,148850,37.54644853666475,spot_peer,pasta,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34721,"In its March update, will Similarweb report deepseek.com being ranked in the top 50 globally?",2025-02-15 05:08:36.423153+00,148850,-179.58592832197746,spot_baseline,pasta,yes,2025-02-17 05:00:00+00,2025-02-17 05:00:00+00,1.0,35233 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,101465,-2.0813400577665044,baseline,Jgalt,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,101465,2.733656094297071,spot_baseline,Jgalt,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,101465,2.746638219402122,spot_peer,Jgalt,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,101465,-0.2646943125135513,relative_legacy,Jgalt,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,101465,0.6782331897717551,peer,Jgalt,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,103777,1.0249455965120131,baseline,datscilly,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,103777,9.126193483032887,spot_baseline,datscilly,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,103777,9.8494575402197,spot_peer,datscilly,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,103777,-0.0265642094744464,relative_legacy,datscilly,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,103777,1.4775941020367906,peer,datscilly,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,103907,-110.88674087060332,peer,darkives,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,103907,-3.1400818495295955,relative_legacy,darkives,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,103907,-117.14383718138666,spot_peer,darkives,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,103907,-98.60335818336308,baseline,darkives,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,103907,-105.16777176641284,spot_baseline,darkives,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,117580,14.46085339299435,spot_peer,MaciekK,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,117580,2.3382346303197035,baseline,MaciekK,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,117580,3.081974337835714,peer,MaciekK,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,117580,13.27644975053007,spot_baseline,MaciekK,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,117580,0.0019153294610498,relative_legacy,MaciekK,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,119188,36.35631909067072,spot_baseline,exmateriae,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,119188,40.105152659817286,spot_peer,exmateriae,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,119188,55.49330217869893,peer,exmateriae,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,119188,39.26982763629753,baseline,exmateriae,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,119188,0.8368979406481811,relative_legacy,exmateriae,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,120160,-7.502897094790663,baseline,OpenSystem,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,120160,-1.7140648506137406,peer,OpenSystem,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,120160,-8.542049774518995,spot_peer,OpenSystem,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,120160,-0.5226362969544356,relative_legacy,OpenSystem,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,120160,-7.42616310023193,spot_baseline,OpenSystem,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,131306,0.1222073873159131,baseline,draaglom,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,131306,0.1368507615154664,peer,draaglom,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,131306,0.0013142735451835,relative_legacy,draaglom,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,131306,28.983337520346936,spot_baseline,draaglom,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,131306,31.912950915013088,spot_peer,draaglom,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,131523,1.670298623698964,baseline,SpottedBear,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,131523,4.368029607614431,peer,SpottedBear,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,131523,-0.1407200229896668,relative_legacy,SpottedBear,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,131523,4.505063682677548,spot_peer,SpottedBear,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,131523,4.31623901124496,spot_baseline,SpottedBear,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,139161,33.691633205506115,spot_peer,Zaldath,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,139161,49.09766831699913,peer,Zaldath,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,139161,35.12079015326638,baseline,Zaldath,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,139161,0.6762321919347677,relative_legacy,Zaldath,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,139161,30.584151581790664,spot_baseline,Zaldath,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,148850,-10.165594696916608,spot_baseline,pasta,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,148850,-11.585862659724189,spot_peer,pasta,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,148850,-0.52999936775524,relative_legacy,pasta,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,148850,-1.732846773255493,peer,pasta,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34722,How many executive orders will Donald Trump sign in February and March 2025?,2025-02-15 05:08:36.452901+00,148850,-8.145546815116692,baseline,pasta,63.0,2025-02-17 17:00:00+00,2025-02-17 17:00:00+00,1.0,35234 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,101465,-2.565847351572551,spot_peer,Jgalt,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,101465,-0.011743068971224,relative_legacy,Jgalt,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,101465,22.18033257378074,spot_baseline,Jgalt,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,101465,6.679430814283,baseline,Jgalt,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,101465,-1.101445204471541,peer,Jgalt,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,103777,2.632316662387185,peer,datscilly,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,103777,5.317678867570153,spot_peer,datscilly,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,103777,16.02777613220508,baseline,datscilly,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,103777,0.0214921092401988,relative_legacy,datscilly,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,103777,27.298418455264624,spot_baseline,datscilly,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,103907,-11.841137779649692,peer,darkives,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,103907,16.441823211476997,spot_baseline,darkives,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,103907,-11.405028651789634,spot_peer,darkives,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,103907,-0.1441013126165735,relative_legacy,darkives,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,103907,13.354937620968183,baseline,darkives,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,117580,0.0,relative_legacy,MaciekK,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,117580,-0.1150562987500838,peer,MaciekK,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,117580,22.18033257378074,spot_baseline,MaciekK,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,117580,0.9271224207559728,baseline,MaciekK,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,117580,-2.565847351572551,spot_peer,MaciekK,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,119188,-8.945942848405075,peer,exmateriae,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,119188,15.517006030607524,spot_baseline,exmateriae,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,119188,8.260011534730545,baseline,exmateriae,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,119188,-12.829549588352016,spot_peer,exmateriae,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,119188,-0.1206834768729855,relative_legacy,exmateriae,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,120160,20.02689647918644,spot_baseline,OpenSystem,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,120160,3.033293970563976,baseline,OpenSystem,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,120160,-5.882843257092685,spot_peer,OpenSystem,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,120160,-0.0063705749227849,relative_legacy,OpenSystem,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,120160,-0.9600035220028812,peer,OpenSystem,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,131306,13.920165853345766,baseline,draaglom,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,131306,30.95891080295346,spot_baseline,draaglom,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,131306,10.956034312596312,spot_peer,draaglom,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,131306,4.49556281226255,peer,draaglom,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,131306,0.0535869194367805,relative_legacy,draaglom,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,131523,1.0279211705293458,peer,SpottedBear,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,131523,26.303440583379384,spot_baseline,SpottedBear,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,131523,0.0127598990081214,relative_legacy,SpottedBear,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,131523,10.454746392170986,baseline,SpottedBear,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,131523,3.785087519532849,spot_peer,SpottedBear,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,139161,0.1074188061639135,relative_legacy,Zaldath,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,139161,33.903595255631885,spot_baseline,Zaldath,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,139161,10.210789958127076,peer,Zaldath,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,139161,22.704942468337592,baseline,Zaldath,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,139161,15.49181148151355,spot_peer,Zaldath,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,148850,0.0273729277274987,relative_legacy,pasta,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,148850,-0.3014959808334425,spot_peer,pasta,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,148850,22.6881582424519,baseline,pasta,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,148850,4.596995049973119,peer,pasta,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34723,How many Oscars will The Brutalist win in 2025?,2025-02-15 05:08:36.473633+00,148850,23.650378395808687,spot_baseline,pasta,3,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35235 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,101465,-0.0329529840399628,relative_legacy,Jgalt,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,101465,-8.664610030010262,spot_peer,Jgalt,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,101465,0.0445248744357162,peer,Jgalt,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,101465,49.64620410409743,baseline,Jgalt,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,101465,50.17812785832015,spot_baseline,Jgalt,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,103777,49.77667649808563,spot_baseline,datscilly,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,103777,-0.0895837324690283,relative_legacy,datscilly,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,103777,-2.2521378762405457,peer,datscilly,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,103777,-9.11066709693752,spot_peer,datscilly,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,103777,30.51712803807252,baseline,datscilly,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,103907,52.16349007527088,spot_baseline,darkives,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,103907,43.80497266863964,baseline,darkives,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,103907,0.4281838560186949,peer,darkives,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,103907,-0.0174401005075621,relative_legacy,darkives,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,103907,-6.458652011176119,spot_peer,darkives,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,117580,2.5492936205332017,baseline,MaciekK,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,117580,48.2669464179425,spot_baseline,MaciekK,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,117580,-0.0154284114089747,relative_legacy,MaciekK,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,117580,-10.788144963763209,spot_peer,MaciekK,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,117580,-0.3798567058439505,peer,MaciekK,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,119188,-12.59015185385125,peer,exmateriae,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,119188,51.014964302188126,spot_baseline,exmateriae,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,119188,31.767086393237776,baseline,exmateriae,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,119188,-7.734791759045846,spot_peer,exmateriae,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,119188,-0.3302148900579973,relative_legacy,exmateriae,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,120160,39.65144171269424,spot_peer,OpenSystem,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,120160,14.588947740263126,baseline,OpenSystem,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,120160,0.133008745907964,relative_legacy,OpenSystem,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,120160,6.147977481179268,peer,OpenSystem,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,120160,93.6625744267542,spot_baseline,OpenSystem,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,131306,11.428775021248285,spot_peer,draaglom,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,131306,0.1020847220982878,relative_legacy,draaglom,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,131306,5.34488256212825,peer,draaglom,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,131306,30.170146298704395,baseline,draaglom,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,131306,68.26217440445285,spot_baseline,draaglom,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,131523,21.918258634274824,baseline,SpottedBear,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,131523,-0.020433091174408,relative_legacy,SpottedBear,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,131523,55.92750205922481,spot_baseline,SpottedBear,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,131523,0.3301713240440695,peer,SpottedBear,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,131523,-2.276416473449532,spot_peer,SpottedBear,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,139161,51.5588229165726,spot_baseline,Zaldath,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,139161,-7.130504409729769,spot_peer,Zaldath,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,139161,-0.0974165625601893,relative_legacy,Zaldath,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,139161,-3.114317931908326,peer,Zaldath,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,139161,44.52905672980202,baseline,Zaldath,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,148850,58.95148989448204,spot_baseline,pasta,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,148850,1.0835700101696015,spot_peer,pasta,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,148850,0.1202038640420721,relative_legacy,pasta,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,148850,6.040724270038052,peer,pasta,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34724,"How many Instagram followers will Snoop Dogg have on March 30, 2025?",2025-02-15 05:08:36.494753+00,148850,48.938780321168686,baseline,pasta,88275303.0,2025-02-18 19:00:00+00,2025-02-18 19:00:00+00,1.0,35236 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,101465,-120.33628834835449,baseline,Jgalt,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,101465,-0.2213548700249137,relative_legacy,Jgalt,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,101465,-213.00718321852133,spot_baseline,Jgalt,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,101465,-6.924486401381512,spot_peer,Jgalt,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,101465,-3.0689469273263192,peer,Jgalt,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,103777,-5.996097912882224,peer,datscilly,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,103777,-117.66327340302936,baseline,datscilly,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,103777,-12.48976631861328,spot_peer,datscilly,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,103777,-0.2915020008608145,relative_legacy,datscilly,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,103777,-218.01593514402992,spot_baseline,datscilly,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,103907,-214.28363945759105,spot_baseline,darkives,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,103907,-2.704266670059905,peer,darkives,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,103907,-0.3363880722120449,relative_legacy,darkives,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,103907,-187.18482103187077,baseline,darkives,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,103907,-8.342771111458953,spot_peer,darkives,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,117580,-2.7940977101913216,peer,MaciekK,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,117580,-0.1135010067727017,relative_legacy,MaciekK,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,117580,-23.24299902527683,spot_peer,MaciekK,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,117580,-27.37163345719045,baseline,MaciekK,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,117580,-227.69384458002716,spot_baseline,MaciekK,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,119188,-12.373663549880076,peer,exmateriae,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,119188,-195.3389775608663,baseline,exmateriae,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,119188,-0.582619642588698,relative_legacy,exmateriae,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,119188,-226.12598537088095,spot_baseline,exmateriae,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,119188,-21.50093323733669,spot_peer,exmateriae,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,120160,-227.69384458002716,spot_baseline,OpenSystem,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,120160,-0.3633267535130002,relative_legacy,OpenSystem,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,120160,-23.24299902527683,spot_peer,OpenSystem,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,120160,-88.1753499746223,baseline,OpenSystem,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,120160,-8.993940328331618,peer,OpenSystem,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,131306,-222.4809792126642,spot_baseline,draaglom,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,131306,-102.5361574135826,baseline,draaglom,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,131306,-17.4509263948736,spot_peer,draaglom,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,131306,-0.3359906505901326,relative_legacy,draaglom,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,131306,-7.929189118641217,peer,draaglom,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,131523,50.57503144335381,peer,SpottedBear,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,131523,1.0061977022252908,relative_legacy,SpottedBear,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,131523,-154.96867830843286,spot_baseline,SpottedBear,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,131523,-126.06510087164462,baseline,SpottedBear,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,131523,57.56274127649457,spot_peer,SpottedBear,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,139161,-19.467785732215404,peer,Zaldath,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,139161,-221.83788478676445,baseline,Zaldath,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,139161,-227.63757625315327,spot_baseline,Zaldath,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,139161,-23.18047866208367,spot_peer,Zaldath,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,139161,-0.7499888325371208,relative_legacy,Zaldath,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,148850,12.752956506174446,peer,pasta,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,148850,-183.8421417791397,baseline,pasta,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,148850,-135.84378844745186,spot_baseline,pasta,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,148850,0.1000720351105279,relative_legacy,pasta,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34725,What will the highest rank of metac-GPT4o or metac-o1 be in the Q1 2025 Quarterly Cup?,2025-02-15 05:08:36.518981+00,148850,78.81261889980678,spot_peer,pasta,34.0,2025-02-19 16:26:00+00,2025-02-19 16:26:00+00,1.0,35237 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,101465,8.149127202412151,spot_peer,Jgalt,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,101465,-0.0029960742301143,relative_legacy,Jgalt,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,101465,56.66110307576336,spot_baseline,Jgalt,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,101465,3.064249184311028,peer,Jgalt,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,101465,22.633971659898933,baseline,Jgalt,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,103777,38.55748907991684,baseline,datscilly,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,103777,15.484785287086323,peer,datscilly,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,103777,0.1405646141088362,relative_legacy,datscilly,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,103777,25.96497721076541,spot_peer,datscilly,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,103777,65.60999676539794,spot_baseline,datscilly,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,103907,18.773678028464698,peer,darkives,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,103907,55.75627502275903,baseline,darkives,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,103907,0.1754874172282549,relative_legacy,darkives,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,103907,19.61404233966002,spot_peer,darkives,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,103907,62.41992494930901,spot_baseline,darkives,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,117580,-1.0323286794796198,peer,MaciekK,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,117580,-7.379977505938804,spot_peer,MaciekK,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,117580,48.86084055306145,spot_baseline,MaciekK,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,117580,6.834769749069808,baseline,MaciekK,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,117580,-0.0299405525521614,relative_legacy,MaciekK,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,119188,3.6794397645813897,peer,exmateriae,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,119188,-0.0149824148898275,relative_legacy,exmateriae,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,119188,55.43443693579066,spot_baseline,exmateriae,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,119188,5.707026455881586,spot_peer,exmateriae,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,119188,33.77403267175937,baseline,exmateriae,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,120160,17.413750417862268,spot_peer,OpenSystem,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,120160,31.739523731495087,baseline,OpenSystem,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,120160,8.925931349190014,peer,OpenSystem,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,120160,0.0637540677378029,relative_legacy,OpenSystem,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,120160,61.31471927654584,spot_baseline,OpenSystem,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,131306,42.980558212306256,spot_baseline,draaglom,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,131306,24.30010456423226,baseline,draaglom,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,131306,-11.02608218124866,peer,draaglom,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,131306,-19.08670146791952,spot_peer,draaglom,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,131306,-0.1909626788430791,relative_legacy,draaglom,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,131523,35.95164779773119,baseline,SpottedBear,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,131523,-0.3486709925170937,relative_legacy,SpottedBear,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,131523,38.12436079942934,spot_baseline,SpottedBear,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,131523,-28.754632244545043,spot_peer,SpottedBear,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,131523,-26.246883768942546,peer,SpottedBear,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,139161,0.000361483528437,relative_legacy,Zaldath,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,139161,51.811773059180894,baseline,Zaldath,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,139161,4.465548611645433,spot_peer,Zaldath,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,139161,3.7267365316817527,peer,Zaldath,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,139161,54.81084315604413,spot_baseline,Zaldath,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,148850,23.284496919560397,baseline,pasta,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,148850,-26.09316101982361,spot_peer,pasta,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,148850,-0.2526037449582359,relative_legacy,pasta,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,148850,39.461216634929,spot_baseline,pasta,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34726,For how many days will the US federal government be shut down in March 2025?,2025-02-15 05:08:36.680886+00,148850,-15.349525515644364,peer,pasta,0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35238 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,101465,0.0222816030475173,relative_legacy,Jgalt,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,101465,22.177999577783115,spot_peer,Jgalt,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,101465,3.1598625108048903,peer,Jgalt,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,101465,41.13948706098655,spot_baseline,Jgalt,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,101465,5.637281384210804,baseline,Jgalt,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,103777,-0.3352841515327301,relative_legacy,datscilly,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,103777,-10.070524134134216,spot_peer,datscilly,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,103777,12.115815720260947,spot_baseline,datscilly,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,103777,-8.099084532453748,peer,datscilly,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,103777,8.08656327652045,baseline,datscilly,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,103907,67.37763297603672,baseline,darkives,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,103907,69.37485480220904,spot_baseline,darkives,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,103907,41.12449917258161,peer,darkives,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,103907,53.55063040136365,spot_peer,darkives,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,103907,0.8755742125984588,relative_legacy,darkives,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,117580,7.817902153063176,baseline,MaciekK,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,117580,0.0989945020888858,relative_legacy,MaciekK,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,117580,49.93650703147056,spot_peer,MaciekK,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,117580,66.12214376930525,spot_baseline,MaciekK,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,117580,5.904205513963028,peer,MaciekK,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,119188,-4.992996885198215,peer,exmateriae,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,119188,3.9711456897416015,spot_baseline,exmateriae,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,119188,-19.120157501377943,spot_peer,exmateriae,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,119188,1.4851003509051932,baseline,exmateriae,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,119188,-0.2386789314392326,relative_legacy,exmateriae,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,120160,0.3756799464358057,relative_legacy,OpenSystem,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,120160,33.1046773535678,baseline,OpenSystem,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,120160,48.23569968477663,spot_baseline,OpenSystem,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,120160,30.0626802708832,spot_peer,OpenSystem,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,120160,20.31902935991912,peer,OpenSystem,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,131306,-160.09900573214327,spot_baseline,draaglom,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,131306,-2.8487645215178192,relative_legacy,draaglom,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,131306,-201.42032574791668,spot_peer,draaglom,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,131306,-106.61642212871226,peer,draaglom,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,131306,-84.6366709009864,baseline,draaglom,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,131523,43.2276635596017,peer,SpottedBear,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,131523,0.9373538790287688,relative_legacy,SpottedBear,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,131523,72.15502827901429,spot_baseline,SpottedBear,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,131523,56.63971204225837,spot_peer,SpottedBear,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,131523,66.83273012554099,baseline,SpottedBear,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,139161,0.9527418983748824,spot_baseline,Zaldath,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,139161,-22.473939491785405,spot_peer,Zaldath,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,139161,16.271123789536684,baseline,Zaldath,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,139161,-21.47666381127379,peer,Zaldath,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,139161,-0.632771059640934,relative_legacy,Zaldath,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,148850,50.74964857700594,baseline,pasta,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,148850,27.44990724076758,peer,pasta,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,148850,57.82496323729145,spot_baseline,pasta,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,148850,40.71741755145524,spot_peer,pasta,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34727,How many vehicle deliveries will Rivian report for Q1 2025?,2025-02-15 05:08:36.701844+00,148850,0.5626760320930084,relative_legacy,pasta,8640.0,2025-02-19 23:00:00+00,2025-02-19 23:00:00+00,1.0,35239 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,101465,19.544344445236906,baseline,Jgalt,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,101465,0.4676795901547506,spot_peer,Jgalt,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,101465,0.0008193127995387,relative_legacy,Jgalt,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,101465,0.0692641767112867,peer,Jgalt,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,101465,95.60566524124027,spot_baseline,Jgalt,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,103777,-0.008026799650092,relative_legacy,datscilly,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,103777,-0.6837411915726546,spot_peer,datscilly,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,103777,94.11063109464314,spot_baseline,datscilly,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,103777,-0.5766329322707074,peer,datscilly,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,103777,60.95318375113924,baseline,datscilly,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,103907,56.269211065100336,baseline,darkives,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,103907,0.1758984655909568,peer,darkives,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,103907,95.60566524124027,spot_baseline,darkives,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,103907,0.4676795901547506,spot_peer,darkives,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,103907,0.0007727607581067,relative_legacy,darkives,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,117580,18.66852303538663,baseline,MaciekK,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,117580,94.11063109464314,spot_baseline,MaciekK,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,117580,-0.6837411915726546,spot_peer,MaciekK,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,117580,-0.0021933728020424,relative_legacy,MaciekK,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,117580,-0.1660117263493759,peer,MaciekK,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,119188,1.6072907198424105,spot_peer,exmateriae,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,119188,68.99195232075473,baseline,exmateriae,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,119188,97.08536543404836,spot_baseline,exmateriae,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,119188,1.025630293461371,peer,exmateriae,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,119188,0.0117817710628953,relative_legacy,exmateriae,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,120160,-1.847218954605484,spot_peer,OpenSystem,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,120160,-0.0954223356710117,peer,OpenSystem,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,120160,92.5999418556223,spot_baseline,OpenSystem,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,120160,4.783462573742653,baseline,OpenSystem,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,120160,-0.0007803812065755,relative_legacy,OpenSystem,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,131306,95.60566524124027,spot_baseline,draaglom,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,131306,0.0012672987923504,relative_legacy,draaglom,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,131306,59.50107745821416,baseline,draaglom,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,131306,0.4676795901547506,spot_peer,draaglom,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,131306,0.1867823449136593,peer,draaglom,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,131523,-0.6837411915726546,spot_peer,SpottedBear,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,131523,-0.01037215924977,relative_legacy,SpottedBear,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,131523,71.00692465474609,baseline,SpottedBear,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,131523,94.11063109464314,spot_baseline,SpottedBear,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,131523,-0.848243623752871,peer,SpottedBear,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,139161,86.66326203212004,baseline,Zaldath,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,139161,2.0191009462235314,peer,Zaldath,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,139161,0.0231886307162082,relative_legacy,Zaldath,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,139161,2.735331993622196,spot_peer,Zaldath,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,148850,-1.847218954605484,spot_peer,pasta,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,148850,-1.7903656088568518,peer,pasta,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,148850,92.5999418556223,spot_baseline,pasta,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,148850,61.19161587420422,baseline,pasta,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34728,"Will Julian Assange receive a pardon before April 1, 2025?",2025-02-15 05:08:36.722225+00,148850,-0.0227874725792997,relative_legacy,pasta,no,2025-02-20 03:00:00+00,2025-02-20 03:00:00+00,1.0,35240 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,101465,-0.0019823372481356,relative_legacy,Jgalt,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,101465,-1.675742089043721,peer,Jgalt,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,101465,58.496250072115615,spot_baseline,Jgalt,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,101465,-5.22623805706524,spot_peer,Jgalt,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,101465,17.902666380421444,baseline,Jgalt,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,103777,58.496250072115615,spot_baseline,datscilly,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,103777,-3.9953060389729074,peer,datscilly,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,103777,-0.047880628861481,relative_legacy,datscilly,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,103777,33.966590775800924,baseline,datscilly,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,103777,-5.22623805706524,spot_peer,datscilly,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,103907,76.55347463629771,spot_baseline,darkives,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,103907,8.680777826713213,spot_peer,darkives,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,103907,66.4757953803776,baseline,darkives,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,103907,0.0506038166515762,relative_legacy,darkives,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,103907,5.338420463355447,peer,darkives,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,117580,67.80719051126377,spot_baseline,MaciekK,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,117580,1.944708735998232,spot_peer,MaciekK,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,117580,0.0056862344732655,relative_legacy,MaciekK,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,117580,0.1385623742905472,peer,MaciekK,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,117580,5.584659326957453,baseline,MaciekK,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,119188,76.55347463629771,spot_baseline,exmateriae,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,119188,0.0567773747138575,relative_legacy,exmateriae,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,119188,8.680777826713213,spot_peer,exmateriae,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,119188,42.2674745137502,baseline,exmateriae,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,119188,4.182080774785073,peer,exmateriae,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,120160,-5.22623805706524,spot_peer,OpenSystem,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,120160,-1.7967839782566053,peer,OpenSystem,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,120160,58.496250072115615,spot_baseline,OpenSystem,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,120160,-0.0019823372481356,relative_legacy,OpenSystem,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,120160,19.035166743798683,baseline,OpenSystem,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,131306,0.0732331378678983,relative_legacy,draaglom,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,131306,6.702486200768016,spot_peer,draaglom,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,131306,71.38803736561711,baseline,draaglom,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,131306,7.693952739931959,peer,draaglom,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,131306,73.98481026993274,spot_baseline,draaglom,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,131523,-12.892112666726526,spot_peer,SpottedBear,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,131523,-17.168355999127872,peer,SpottedBear,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,131523,47.146443899959294,baseline,SpottedBear,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,131523,48.54268271702416,spot_baseline,SpottedBear,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,131523,-0.2140406214944648,relative_legacy,SpottedBear,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,139161,77.24033627701766,baseline,Zaldath,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,139161,76.55347463629771,spot_baseline,Zaldath,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,139161,8.680777826713213,spot_peer,Zaldath,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,139161,10.528693158356717,peer,Zaldath,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,139161,0.0987567886765064,relative_legacy,Zaldath,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,148850,-0.0318600664373213,relative_legacy,pasta,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,148850,-3.245521405318601,peer,pasta,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,148850,57.33745264459444,spot_baseline,pasta,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,148850,26.447956224956748,baseline,pasta,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34729,"Will the Trump administration impose new tariffs on the EU before April 7, 2025?",2025-02-15 05:08:36.746726+00,148850,-6.118701578983492,spot_peer,pasta,yes,2025-02-20 17:00:00+00,2025-02-20 17:00:00+00,1.0,35241 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,101465,1.048776815505262,peer,Jgalt,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,101465,28.75856257839557,spot_baseline,Jgalt,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,101465,2.6765047337052783,spot_peer,Jgalt,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,101465,-0.0147637115959437,relative_legacy,Jgalt,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,101465,8.170499253137502,baseline,Jgalt,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,103777,23.18767987302518,spot_peer,datscilly,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,103777,15.09884448168673,peer,datscilly,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,103777,38.128037159864135,spot_baseline,datscilly,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,103777,21.70141184682348,baseline,datscilly,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,103777,0.147091439817666,relative_legacy,datscilly,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,103907,10.253589729183805,baseline,darkives,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,103907,-32.42065633113758,spot_peer,darkives,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,103907,-23.77077777919701,peer,darkives,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,103907,12.726231117856091,spot_baseline,darkives,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,103907,-0.3374092094480892,relative_legacy,darkives,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,119188,20.3230810882983,peer,exmateriae,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,119188,32.62552001334316,baseline,exmateriae,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,119188,34.58250493061677,spot_baseline,exmateriae,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,119188,0.189223849984487,relative_legacy,exmateriae,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,119188,15.42598183074315,spot_peer,exmateriae,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,120160,1.7035491490465944,peer,OpenSystem,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,120160,2.6765047337052783,spot_peer,OpenSystem,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,120160,11.110448278531456,baseline,OpenSystem,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,120160,28.75856257839557,spot_baseline,OpenSystem,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,120160,-0.0118346229161917,relative_legacy,OpenSystem,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,131306,-34.28020280064878,spot_peer,draaglom,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,131306,-0.2387775099794782,relative_legacy,draaglom,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,131306,5.94807533658379,baseline,draaglom,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,131306,11.876793030530475,spot_baseline,draaglom,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,131306,-15.969016392784336,peer,draaglom,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,131523,-11.704749561156763,spot_peer,SpottedBear,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,131523,17.540427003075195,baseline,SpottedBear,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,131523,-6.034105601514041,peer,SpottedBear,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,131523,-0.1206078715398114,relative_legacy,SpottedBear,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,131523,22.18922680654893,spot_baseline,SpottedBear,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,139161,17.021753267338227,spot_peer,Zaldath,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,139161,-0.1197704697465585,relative_legacy,Zaldath,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,139161,35.3114509715654,spot_baseline,Zaldath,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,139161,22.25504167752197,baseline,Zaldath,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,139161,-5.211803717043265,peer,Zaldath,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,148850,35.49208326381954,spot_baseline,pasta,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,148850,0.0967410341118972,relative_legacy,pasta,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,148850,17.41718425442574,spot_peer,pasta,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,148850,12.811451956001749,peer,pasta,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34734,"What will be the rank of Assassin's Creed Shadows on Steam's Weekly Top Sellers chart for March 18 - 25, 2025?",2025-02-15 05:10:33.840643+00,148850,29.24626785552683,baseline,pasta,2,2025-02-21 17:00:00+00,2025-02-21 17:00:00+00,1.0,35246 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,101465,78.0158108478252,spot_baseline,Jgalt,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,101465,9.433096917261148,peer,Jgalt,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,101465,0.102908987853903,relative_legacy,Jgalt,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,101465,22.712587103754768,spot_peer,Jgalt,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,101465,28.739598976452104,baseline,Jgalt,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,103777,1.274905649530253,peer,datscilly,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,103777,15.77206059065406,spot_peer,datscilly,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,103777,0.0066642935073178,relative_legacy,datscilly,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,103777,6.701924477467776,baseline,datscilly,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,103777,74.18257388175704,spot_baseline,datscilly,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,103907,55.85639188768396,baseline,darkives,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,103907,-8.694193459430846,spot_peer,darkives,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,103907,60.66991756253184,spot_baseline,darkives,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,103907,8.054987849021293,peer,darkives,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,103907,-0.0005514094545685,relative_legacy,darkives,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,119188,-2.929902796233599,peer,exmateriae,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,119188,40.32440860434605,baseline,exmateriae,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,119188,-2.712032679614531,spot_peer,exmateriae,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,119188,63.97385131955608,spot_baseline,exmateriae,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,119188,-0.066875429359958,relative_legacy,exmateriae,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,120160,41.72877449933869,baseline,OpenSystem,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,120160,-6.216786306463663,peer,OpenSystem,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,120160,56.93234419266069,spot_baseline,OpenSystem,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,120160,-0.1201214183277753,relative_legacy,OpenSystem,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,120160,-15.4615097766524,spot_peer,OpenSystem,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,131306,0.2967088544595455,baseline,draaglom,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,131306,-0.0675098777367718,peer,draaglom,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,131306,-0.0015593891835988,relative_legacy,draaglom,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,131306,58.16275060617871,spot_baseline,draaglom,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,131306,-13.233714205832174,spot_peer,draaglom,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,131523,5.978940823342117,baseline,SpottedBear,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,131523,0.3102917621161858,peer,SpottedBear,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,131523,5.04966536266749,spot_peer,SpottedBear,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,131523,68.26061944859853,spot_baseline,SpottedBear,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,131523,-0.0052382995406989,relative_legacy,SpottedBear,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,139161,0.1926769704460476,relative_legacy,Zaldath,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,139161,49.88633334702575,baseline,Zaldath,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,139161,18.49146705467467,peer,Zaldath,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,139161,22.391616843234058,spot_peer,Zaldath,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,139161,77.83853970487746,spot_baseline,Zaldath,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,148850,-28.35055025216956,peer,pasta,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,148850,51.20889949211358,spot_baseline,pasta,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,148850,41.181232688906455,baseline,pasta,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,148850,-0.3385456475724472,relative_legacy,pasta,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34959,"Which movie will win the 2025 Razzie for Worst Remake, Rip-off or Sequel?",2025-02-22 04:28:59.504755+00,148850,-25.82447977878053,spot_peer,pasta,Joker: Folie à Deux,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35492 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,101465,6.859801217501108,spot_peer,Jgalt,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,101465,4.791730736551459,peer,Jgalt,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,101465,92.5999418556223,spot_baseline,Jgalt,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,101465,0.0812130653257386,relative_legacy,Jgalt,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,101465,50.00898314451744,baseline,Jgalt,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,103777,-6.813542422190792,spot_peer,datscilly,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,103777,44.23732201003306,baseline,datscilly,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,103777,74.84612330040356,spot_baseline,datscilly,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,103777,-2.524284906117722,peer,datscilly,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,103777,-0.0097355332031121,relative_legacy,datscilly,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,103907,10.314310891949011,spot_peer,darkives,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,103907,88.30577013228884,baseline,darkives,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,103907,8.666860659089243,peer,darkives,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,103907,97.08536543404836,spot_baseline,darkives,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,103907,0.1263890124237965,relative_legacy,darkives,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,117580,16.001117113328903,baseline,MaciekK,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,117580,-0.002312416603119,relative_legacy,MaciekK,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,117580,76.55347463629771,spot_baseline,MaciekK,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,117580,-0.8229445667900309,peer,MaciekK,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,117580,-5.4986026836349176,spot_peer,MaciekK,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,119188,1.5865714102613415,peer,exmateriae,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,119188,94.11063109464314,spot_baseline,exmateriae,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,119188,16.03222500975108,baseline,exmateriae,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,119188,8.023278980533933,spot_peer,exmateriae,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,119188,0.0275970930450019,relative_legacy,exmateriae,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,120160,-5.4986026836349176,spot_peer,OpenSystem,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,120160,-1.723831766941062,peer,OpenSystem,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,120160,0.0003556575626494,relative_legacy,OpenSystem,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,120160,46.22997950438984,baseline,OpenSystem,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,120160,76.55347463629771,spot_baseline,OpenSystem,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,131306,-2.277765253273548,spot_peer,draaglom,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,131306,41.0306473367845,baseline,draaglom,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,131306,-7.68862615385002,peer,draaglom,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,131306,-0.0755693603782247,relative_legacy,draaglom,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,131306,80.73549220576041,spot_baseline,draaglom,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,131523,0.0021404507002508,relative_legacy,SpottedBear,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,131523,-2.277765253273548,spot_peer,SpottedBear,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,131523,-0.1283087737048812,peer,SpottedBear,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,131523,8.596435273003557,baseline,SpottedBear,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,131523,80.73549220576041,spot_baseline,SpottedBear,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,139161,61.00248390211846,baseline,Zaldath,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,139161,8.023278980533933,spot_peer,Zaldath,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,139161,7.201481063747383,peer,Zaldath,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,139161,94.11063109464314,spot_baseline,Zaldath,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,139161,0.1080353845798368,relative_legacy,Zaldath,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,148850,39.18274147241048,baseline,pasta,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,148850,-10.854391774510212,spot_peer,pasta,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,148850,-0.0971794670657581,relative_legacy,pasta,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,148850,-9.358647702245705,peer,pasta,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34960,Will Donald Trump grant executive clemency to more than 2 individuals in February 2025?,2025-02-22 04:28:59.531398+00,148850,69.59938131099001,spot_baseline,pasta,no,2025-02-24 23:00:00+00,2025-02-24 23:00:00+00,1.0,35493 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,101465,0.3932205883047883,relative_legacy,Jgalt,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,101465,28.48886080352805,baseline,Jgalt,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,101465,31.33663613257981,peer,Jgalt,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,101465,47.69919415249089,spot_peer,Jgalt,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,101465,65.3809610657828,spot_baseline,Jgalt,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,103777,-0.1603814436638014,relative_legacy,datscilly,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,103777,9.875771254792324,baseline,datscilly,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,103777,-1.4505702013664317,spot_peer,datscilly,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,103777,21.14617314731121,spot_baseline,datscilly,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,103777,10.56437702388028,peer,datscilly,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,103907,-63.49561677305224,baseline,darkives,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,103907,37.766675325835166,spot_baseline,darkives,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,103907,17.01665444143797,spot_peer,darkives,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,103907,-2.22161754481975,relative_legacy,darkives,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,103907,-72.07553249481948,peer,darkives,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,117580,54.38693433700883,spot_peer,MaciekK,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,117580,3.010873433291694,peer,MaciekK,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,117580,4.191159301958964,baseline,MaciekK,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,117580,0.0468678879507099,relative_legacy,MaciekK,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,117580,71.39992723184895,spot_baseline,MaciekK,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,119188,-70.26562094729391,spot_peer,exmateriae,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,119188,-37.40410637562448,baseline,exmateriae,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,119188,-42.37484449636076,peer,exmateriae,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,119188,-1.5283381580744022,relative_legacy,exmateriae,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,119188,-40.787372524023525,spot_baseline,exmateriae,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,120160,-39.98808082647844,spot_peer,OpenSystem,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,120160,-13.53758641528959,spot_baseline,OpenSystem,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,120160,-6.805936714718615,peer,OpenSystem,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,120160,-0.6625108722153692,relative_legacy,OpenSystem,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,120160,-8.211052219871368,baseline,OpenSystem,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,131306,0.3806981846189597,relative_legacy,draaglom,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,131306,39.63955181489924,spot_peer,draaglom,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,131306,58.12728296195032,spot_baseline,draaglom,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,131306,29.105974266976848,baseline,draaglom,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,131306,33.33483032971177,peer,draaglom,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,131523,-0.0333105440234406,relative_legacy,SpottedBear,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,131523,2.6338129375670745,spot_baseline,SpottedBear,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,131523,-0.8663732431221789,peer,SpottedBear,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,131523,-22.01985932330436,spot_peer,SpottedBear,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,131523,0.1139048749472024,baseline,SpottedBear,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,139161,37.511382994479625,peer,Zaldath,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,139161,22.85920007911202,spot_baseline,Zaldath,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,139161,0.4527930561900278,spot_peer,Zaldath,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,139161,0.227872824744935,relative_legacy,Zaldath,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,139161,24.48753112896735,baseline,Zaldath,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,148850,6.364587035077861,peer,pasta,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,148850,-0.4722105246843888,spot_baseline,pasta,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,148850,-0.4068345958489696,relative_legacy,pasta,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,148850,2.539462976304668,baseline,pasta,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34961,"What will the closing value of NVIDIA's stock price be on March 28, 2025?",2025-02-22 04:28:59.563349+00,148850,-25.47099650358376,spot_peer,pasta,109.67,2025-02-24 16:00:00+00,2025-02-24 16:00:00+00,1.0,35494 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,101465,-0.0083730670114274,relative_legacy,Jgalt,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,101465,32.79096938467988,baseline,Jgalt,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,101465,89.12042824636868,spot_baseline,Jgalt,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,101465,-2.614269328401984,spot_peer,Jgalt,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,101465,-0.578992933270677,peer,Jgalt,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,103777,0.4231200661245754,peer,datscilly,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,103777,8.676097543880143,baseline,datscilly,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,103777,93.5921824254659,spot_baseline,datscilly,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,103777,0.0038541542270515,relative_legacy,datscilly,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,103777,4.359794224744404,spot_peer,datscilly,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,103907,0.0454253074380093,peer,darkives,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,103907,-1.1844407228451868,spot_peer,darkives,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,103907,90.03723119683887,spot_baseline,darkives,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,103907,86.68467853084869,baseline,darkives,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,103907,-0.0016938512090065,relative_legacy,darkives,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,119188,-0.0002119834726702,relative_legacy,exmateriae,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,119188,90.77877144312862,spot_baseline,exmateriae,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,119188,-0.0279485281233795,spot_peer,exmateriae,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,119188,0.1370142296694813,peer,exmateriae,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,119188,16.438952970507955,baseline,exmateriae,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,120160,19.661999269999104,baseline,OpenSystem,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,120160,-0.7418868564935883,peer,OpenSystem,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,120160,-0.0109250035960087,relative_legacy,OpenSystem,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,120160,88.1068084950556,spot_baseline,OpenSystem,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,120160,-4.195091592162652,spot_peer,OpenSystem,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,131306,0.0001246658553178,relative_legacy,draaglom,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,131306,2.5002477552332087,spot_peer,draaglom,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,131306,4.034549818471128,baseline,draaglom,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,131306,92.39984532774751,spot_baseline,draaglom,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,131306,0.1091708984060362,peer,draaglom,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,131523,0.0033876604095957,relative_legacy,SpottedBear,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,131523,92.39984532774751,spot_baseline,SpottedBear,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,131523,2.5002477552332087,spot_peer,SpottedBear,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,131523,12.42258939327684,baseline,SpottedBear,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,131523,0.4001590093539913,peer,SpottedBear,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,139161,0.0004209518805772,relative_legacy,Zaldath,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,139161,61.43182375983893,baseline,Zaldath,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,139161,90.20267794836764,spot_baseline,Zaldath,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,139161,-0.9264130867965022,spot_peer,Zaldath,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,139161,0.236988920688304,peer,Zaldath,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,148850,-0.0020032767725097,relative_legacy,pasta,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,148850,61.6634780007539,baseline,pasta,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,148850,-0.03099864191612,peer,pasta,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,148850,-0.4121264768811564,spot_peer,pasta,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34962,"How many movies will be new on Netflix's top 10 movies list for the week ending March 2, 2025?",2025-02-22 04:28:59.586017+00,148850,90.5324373891323,spot_baseline,pasta,3 or more,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35495 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,101465,-12.21887845500432,baseline,Jgalt,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,101465,-23.27472818971323,peer,Jgalt,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,101465,-60.57542481347815,spot_peer,Jgalt,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,101465,-0.2963734737441701,relative_legacy,Jgalt,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,101465,-31.739380551401474,spot_baseline,Jgalt,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,103777,-0.0049032261695221,relative_legacy,datscilly,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,103777,0.0,baseline,datscilly,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,103777,-0.648429653812136,peer,datscilly,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,103777,-3.107542139804201,spot_peer,datscilly,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,103777,0.0,spot_baseline,datscilly,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,103907,13.094809778117968,baseline,darkives,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,103907,21.092488067102163,spot_peer,darkives,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,103907,13.365621497732263,spot_baseline,darkives,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,103907,0.1199054316007553,relative_legacy,darkives,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,103907,11.873768738672734,peer,darkives,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,119188,7.634878530089304,peer,exmateriae,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,119188,4.508476897283503,baseline,exmateriae,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,119188,0.0961023619293139,relative_legacy,exmateriae,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,119188,38.69335795885012,spot_peer,exmateriae,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,119188,23.08654180207135,spot_baseline,exmateriae,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,120160,-6.080558955133315,baseline,OpenSystem,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,120160,-17.87469216608008,spot_baseline,OpenSystem,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,120160,-11.089779386517955,peer,OpenSystem,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,120160,-35.47177529062957,spot_peer,OpenSystem,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,120160,-0.1435694168319559,relative_legacy,OpenSystem,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,131306,-14.960600151309675,spot_peer,draaglom,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,131306,-6.546416910142253,spot_baseline,draaglom,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,131306,-0.0047689811866553,relative_legacy,draaglom,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,131306,-0.5780029125349514,peer,draaglom,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,131306,-0.2529208723220261,baseline,draaglom,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,131523,34.74558448008224,spot_peer,SpottedBear,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,131523,3.283421790694207,baseline,SpottedBear,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,131523,5.296727713388685,peer,SpottedBear,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,131523,20.90619551221676,spot_baseline,SpottedBear,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,131523,0.0678354914880526,relative_legacy,SpottedBear,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,139161,0.031823246218533,relative_legacy,Zaldath,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,139161,5.028532287903732,spot_peer,Zaldath,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,139161,4.493535352988481,spot_baseline,Zaldath,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,139161,4.284406728588397,peer,Zaldath,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,139161,5.464816527531973,baseline,Zaldath,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,148850,14.555379601283075,spot_peer,pasta,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,148850,0.0620137783090804,relative_legacy,pasta,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,148850,6.501158431839079,peer,pasta,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,148850,9.755191399226687,spot_baseline,pasta,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34963,Which movie will win the 2025 Razzie for Worst Screenplay?,2025-02-22 04:28:59.612493+00,148850,6.730053821180314,baseline,pasta,Madame Web,2025-02-25 02:00:00+00,2025-02-25 02:00:00+00,1.0,35496 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,101465,5.279696355394009,peer,Jgalt,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,101465,0.0392643851209154,relative_legacy,Jgalt,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,101465,-55.63933485243855,spot_baseline,Jgalt,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,101465,-20.523093538311294,baseline,Jgalt,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,101465,10.234015001046329,spot_peer,Jgalt,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,103777,-100.0,spot_baseline,datscilly,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,103777,-0.3621015858281808,relative_legacy,datscilly,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,103777,-23.93095163761596,spot_peer,datscilly,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,103777,-71.99314065383366,baseline,datscilly,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,103777,-27.399745083586183,peer,datscilly,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,103907,11.210107173905536,spot_peer,darkives,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,103907,-54.37195184892749,spot_baseline,darkives,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,103907,0.0439392468889264,relative_legacy,darkives,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,103907,-26.166214875850155,baseline,darkives,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,103907,7.388391759889542,peer,darkives,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,117580,-73.69655941662059,spot_baseline,MaciekK,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,117580,-3.673000882732101,spot_peer,MaciekK,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,117580,-5.215547155122598,baseline,MaciekK,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,117580,-0.1643249447533988,peer,MaciekK,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,117580,0.0,relative_legacy,MaciekK,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,119188,-0.0250084125300988,relative_legacy,exmateriae,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,119188,-1.6680963977141283,peer,exmateriae,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,119188,-18.346283641018054,baseline,exmateriae,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,119188,-7.439839957807807,spot_peer,exmateriae,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,119188,-78.58751946471523,spot_baseline,exmateriae,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,120160,-4.873995652719753,peer,OpenSystem,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,120160,-23.93095163761596,spot_peer,OpenSystem,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,120160,-100.0,spot_baseline,OpenSystem,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,120160,-25.22185122669419,baseline,OpenSystem,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,120160,-0.0730408526378889,relative_legacy,OpenSystem,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,131306,-8.241301452395538,baseline,draaglom,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,131306,-32.19280948873623,spot_baseline,draaglom,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,131306,28.291673834132443,spot_peer,draaglom,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,131306,0.0516551017219078,relative_legacy,draaglom,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,131306,4.417963983855567,peer,draaglom,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,131523,-3.673000882732101,spot_peer,SpottedBear,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,131523,-12.355729840243407,baseline,SpottedBear,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,131523,-0.3039902716112169,peer,SpottedBear,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,131523,-0.0098515135285977,relative_legacy,SpottedBear,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,131523,-73.69655941662059,spot_baseline,SpottedBear,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,139161,-0.0917616882418119,relative_legacy,Zaldath,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,139161,-55.704190378849965,baseline,Zaldath,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,139161,-3.673000882732101,spot_peer,Zaldath,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,139161,-5.409871906410737,peer,Zaldath,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,139161,-73.69655941662059,spot_baseline,Zaldath,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,148850,16.584949872151736,spot_peer,pasta,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,148850,22.7339721576563,peer,pasta,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,148850,0.1824120993529919,relative_legacy,pasta,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,148850,-47.39311883324123,spot_baseline,pasta,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34964,"Will Nebraska have 1.7 million or more residents living in drought on March 28, 2025?",2025-02-22 04:28:59.948999+00,148850,-23.162665508327574,baseline,pasta,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35497 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,101465,41.5758666522498,spot_baseline,Jgalt,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,101465,0.5059542943072229,spot_peer,Jgalt,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,101465,1.125323191203833,peer,Jgalt,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,101465,0.0137003097780642,relative_legacy,Jgalt,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,101465,14.928124913587563,baseline,Jgalt,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,103777,67.80719051126377,spot_baseline,datscilly,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,103777,20.70836337789652,spot_peer,datscilly,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,103777,0.1335321972097687,relative_legacy,datscilly,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,103777,11.257458477451506,peer,datscilly,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,103777,35.250556664361554,baseline,datscilly,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,103907,3.5532269025794307,baseline,darkives,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,103907,-0.1386587153610976,relative_legacy,darkives,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,103907,7.313470463021537,spot_baseline,darkives,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,103907,-11.6376226075335,peer,darkives,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,103907,-25.881693836572097,spot_peer,darkives,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,117580,13.53741658483304,spot_peer,MaciekK,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,117580,58.496250072115615,spot_baseline,MaciekK,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,117580,5.297955230117359,baseline,MaciekK,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,117580,1.2250259479625376,peer,MaciekK,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,117580,0.0123759874577628,relative_legacy,MaciekK,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,119188,-5.835181986808933,spot_peer,exmateriae,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,119188,17.67553635465214,baseline,exmateriae,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,119188,-2.044305383173247,peer,exmateriae,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,119188,33.34237337251918,spot_baseline,exmateriae,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,119188,-0.0277159002025511,relative_legacy,exmateriae,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,120160,13.21938729229976,peer,OpenSystem,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,120160,67.80719051126377,spot_baseline,OpenSystem,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,120160,20.70836337789652,spot_peer,OpenSystem,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,120160,36.38598799239521,baseline,OpenSystem,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,120160,0.1599746275407965,relative_legacy,OpenSystem,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,131306,2.068138086489133,baseline,draaglom,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,131306,26.303440583379377,spot_baseline,draaglom,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,131306,-0.8966622273546765,peer,draaglom,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,131306,-0.0131405991640271,relative_legacy,draaglom,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,131306,-11.25631133896804,spot_peer,draaglom,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,131523,20.70836337789652,spot_peer,SpottedBear,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,131523,67.80719051126377,spot_baseline,SpottedBear,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,131523,3.1351864354436123,peer,SpottedBear,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,131523,0.0358489659504434,relative_legacy,SpottedBear,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,131523,10.214825669923048,baseline,SpottedBear,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,139161,23.45697167697488,baseline,Zaldath,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,139161,-11.25631133896804,spot_peer,Zaldath,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,139161,-0.0359762739787839,relative_legacy,Zaldath,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,139161,26.303440583379377,spot_baseline,Zaldath,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,139161,-1.8576722214869088,peer,Zaldath,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,148850,-21.938962511512766,spot_peer,pasta,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,148850,-13.526118904812892,peer,pasta,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,148850,-0.1595757795592864,relative_legacy,pasta,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,148850,8.28031721978184,baseline,pasta,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34965,"Will the 500th richest person on Bloomberg's Billionaires Index have $6.5 billion or more on March 28, 2025?",2025-02-22 04:28:59.970012+00,148850,12.432813500220147,spot_baseline,pasta,no,2025-02-26 02:00:00+00,2025-02-26 02:00:00+00,1.0,35498 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,101465,-64.93635088776838,spot_peer,Jgalt,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,101465,-46.84901049334376,baseline,Jgalt,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,101465,-132.19280948873623,spot_baseline,Jgalt,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,101465,-0.2683462789814179,relative_legacy,Jgalt,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,101465,-24.85316548496284,peer,Jgalt,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,103777,-5.362378664090925,peer,datscilly,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,103777,-0.0037517740164782,relative_legacy,datscilly,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,103777,-19.321526225599914,spot_peer,datscilly,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,103777,-73.69655941662063,spot_baseline,datscilly,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,103777,-27.920203012975424,baseline,datscilly,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,103907,-37.46995494486704,baseline,darkives,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,103907,-0.1154233503489125,relative_legacy,darkives,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,103907,-81.09661756099831,spot_baseline,darkives,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,103907,-14.417458286679228,peer,darkives,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,103907,-25.092021844199365,spot_peer,darkives,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,119188,13.042706925225453,spot_peer,exmateriae,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,119188,5.907994266404062,peer,exmateriae,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,119188,-18.285537760216613,baseline,exmateriae,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,119188,0.1120591536480219,relative_legacy,exmateriae,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,119188,-32.19280948873623,spot_baseline,exmateriae,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,120160,0.2754666645559748,relative_legacy,OpenSystem,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,120160,0.0,baseline,OpenSystem,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,120160,18.468619414555985,peer,OpenSystem,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,120160,0.0,spot_baseline,OpenSystem,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,120160,38.14635644807404,spot_peer,OpenSystem,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,131306,0.0,relative_legacy,draaglom,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,131306,-2.3114832030498413,baseline,draaglom,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,131306,0.604639630335871,peer,draaglom,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,131306,-32.19280948873623,spot_baseline,draaglom,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,131306,13.042706925225453,spot_peer,draaglom,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,131523,0.0,spot_baseline,SpottedBear,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,131523,0.2754502561132759,relative_legacy,SpottedBear,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,131523,-0.0016408442698934,baseline,SpottedBear,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,131523,38.14635644807404,spot_peer,SpottedBear,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,131523,17.60527813787285,peer,SpottedBear,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,139161,-0.1697915065949759,relative_legacy,Zaldath,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,139161,-59.12198271965879,baseline,Zaldath,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,139161,-19.321526225599914,spot_peer,Zaldath,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,139161,-18.164941380616597,peer,Zaldath,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,139161,-73.69655941662063,spot_baseline,Zaldath,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,148850,1.947322414558831,baseline,pasta,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,148850,0.2959613258311723,relative_legacy,pasta,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,148850,20.21141236718076,peer,pasta,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,148850,-15.200309344504996,spot_baseline,pasta,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34966,Will Donald Trump grant executive clemency to more than 3 individuals in March 2025?,2025-02-22 04:28:59.989151+00,148850,26.293298436568573,spot_peer,pasta,yes,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35499 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,101465,-10.715489085302448,baseline,Jgalt,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,101465,5.53353875233876,peer,Jgalt,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,101465,-32.19280948873623,spot_baseline,Jgalt,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,101465,0.0165746642152359,relative_legacy,Jgalt,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,101465,18.446738953701068,spot_peer,Jgalt,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,103777,-59.94620704162715,spot_baseline,datscilly,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,103777,-0.0989024246730556,relative_legacy,datscilly,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,103777,-2.169252310857775,peer,datscilly,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,103777,-3.195098969137762,spot_peer,datscilly,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,103777,-35.01639069180663,baseline,datscilly,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,103907,-39.592867633113926,spot_baseline,darkives,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,103907,-16.461448576056533,baseline,darkives,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,103907,0.0306088996887626,relative_legacy,darkives,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,103907,7.972883180871675,peer,darkives,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,103907,12.676243335101628,spot_peer,darkives,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,119188,-34.42866933644419,spot_peer,exmateriae,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,119188,-71.97656251636096,baseline,exmateriae,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,119188,-33.3758024003343,peer,exmateriae,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,119188,-0.467787939891759,relative_legacy,exmateriae,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,119188,-100.0,spot_baseline,exmateriae,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,120160,-33.10637413657982,baseline,OpenSystem,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,120160,-34.42866933644419,spot_peer,OpenSystem,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,120160,-12.226900833256307,peer,OpenSystem,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,120160,-100.0,spot_baseline,OpenSystem,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,120160,-0.2077991368690812,relative_legacy,OpenSystem,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,131306,-0.5161381774191547,peer,draaglom,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,131306,-73.69655941662059,spot_baseline,draaglom,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,131306,-2.7429995588919307,baseline,draaglom,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,131306,-13.91749419712428,spot_peer,draaglom,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,131306,-0.0088625773482325,relative_legacy,draaglom,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,131523,-15.200309344505014,spot_baseline,SpottedBear,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,131523,0.0733029934994373,relative_legacy,SpottedBear,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,131523,31.697330465044185,spot_peer,SpottedBear,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,131523,-5.420703814080364,baseline,SpottedBear,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,131523,10.041343689541716,peer,SpottedBear,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,139161,18.446738953701068,spot_peer,Zaldath,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,139161,0.185287597342853,relative_legacy,Zaldath,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,139161,23.09820303179144,peer,Zaldath,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,139161,6.73161053746232,baseline,Zaldath,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,139161,-32.19280948873623,spot_baseline,Zaldath,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,148850,-0.0464297188250547,relative_legacy,pasta,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,148850,-49.81787345790897,spot_baseline,pasta,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,148850,4.702880131602702,spot_peer,pasta,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,148850,-29.737787589888704,baseline,pasta,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34967,"Will Cathy Harris still be listed as chairing the Merit Systems Protection Board on March 31, 2025?",2025-02-22 04:29:00.018437+00,148850,1.6421250673239869,peer,pasta,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35500 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,101465,28.89469109665087,baseline,Jgalt,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,101465,-0.0663702807638505,spot_peer,Jgalt,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,101465,-0.177922789020327,peer,Jgalt,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,101465,91.8386234446348,spot_baseline,Jgalt,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,101465,-0.0042961709864735,relative_legacy,Jgalt,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,103777,-3.0826367439627185,spot_peer,datscilly,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,103777,-1.2658920064338972,peer,datscilly,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,103777,87.97057662822883,spot_baseline,datscilly,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,103777,-0.0250100892073377,relative_legacy,datscilly,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,103777,57.26393329643299,baseline,datscilly,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,103907,0.0076819720784155,relative_legacy,darkives,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,103907,1.7053198781518204,spot_peer,darkives,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,103907,1.3711769879998874,peer,darkives,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,103907,50.10819588354101,baseline,darkives,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,103907,94.11063109464314,spot_baseline,darkives,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,119188,92.5999418556223,spot_baseline,exmateriae,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,119188,0.8596891449270695,peer,exmateriae,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,119188,0.0016757109439077,relative_legacy,exmateriae,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,119188,0.5272986430810696,spot_peer,exmateriae,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,119188,44.73086716080374,baseline,exmateriae,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,120160,92.5999418556223,spot_baseline,OpenSystem,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,120160,21.25771238925903,baseline,OpenSystem,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,120160,0.1099541926177455,peer,OpenSystem,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,120160,0.0002143133198182,relative_legacy,OpenSystem,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,120160,0.5272986430810696,spot_peer,OpenSystem,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,131306,0.5272986430810696,spot_peer,draaglom,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,131306,0.0764568811692005,peer,draaglom,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,131306,0.0002838606656176,relative_legacy,draaglom,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,131306,13.535990355015446,baseline,draaglom,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,131306,92.5999418556223,spot_baseline,draaglom,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,131523,-0.3866846036985569,peer,SpottedBear,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,131523,60.1220716154481,baseline,SpottedBear,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,131523,89.53026213333065,spot_baseline,SpottedBear,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,131523,-1.86640868223848,spot_peer,SpottedBear,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,131523,-0.0147680649874486,relative_legacy,SpottedBear,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,139161,2.8711334196508043,spot_peer,Zaldath,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,139161,95.60566524124027,spot_baseline,Zaldath,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,139161,-0.6726213164774111,peer,Zaldath,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,139161,-0.0163934624252962,relative_legacy,Zaldath,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,139161,76.06835295768894,baseline,Zaldath,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,148850,0.085843508916294,peer,pasta,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,148850,-1.142933520080804,spot_peer,pasta,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,148850,90.45804349213174,spot_baseline,pasta,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,148850,60.83313317740031,baseline,pasta,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34968,"Will Ukraine announce a presidential election before April 1, 2025?",2025-02-22 04:29:00.045816+00,148850,-0.008650120800529,relative_legacy,pasta,no,2025-02-27 04:00:00+00,2025-02-27 04:00:00+00,1.0,35501 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,101465,-1.922368970047215,spot_peer,Jgalt,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,101465,-0.3949008107519676,peer,Jgalt,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,101465,-0.0086491698738422,relative_legacy,Jgalt,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,101465,72.2466024471091,spot_baseline,Jgalt,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,101465,23.085246730132653,baseline,Jgalt,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,103777,-1.2510006971624672,spot_peer,datscilly,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,103777,34.93647754418176,baseline,datscilly,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,103777,-0.0753292122274949,peer,datscilly,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,103777,73.11832415721999,spot_baseline,datscilly,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,103777,-0.0080772803041031,relative_legacy,datscilly,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,103907,74.84612330040356,spot_baseline,darkives,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,103907,0.0001782721394806,relative_legacy,darkives,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,103907,38.50096580015576,baseline,darkives,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,103907,0.0796871969170403,spot_peer,darkives,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,103907,0.7726404588776429,peer,darkives,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,117580,0.0,relative_legacy,MaciekK,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,117580,76.55347463629771,spot_baseline,MaciekK,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,117580,6.762884865180757,baseline,MaciekK,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,117580,0.123204092816071,peer,MaciekK,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,117580,1.3946269354729104,spot_peer,MaciekK,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,119188,3.338311096308163,spot_peer,exmateriae,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,119188,15.372694255427508,baseline,exmateriae,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,119188,0.5085168928027517,peer,exmateriae,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,119188,0.0026989533882045,relative_legacy,exmateriae,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,119188,79.07720378619997,spot_baseline,exmateriae,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,120160,74.84612330040356,spot_baseline,OpenSystem,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,120160,1.1181103367658571,peer,OpenSystem,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,120160,0.0796871969170403,spot_peer,OpenSystem,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,120160,0.0031420085739777,relative_legacy,OpenSystem,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,120160,42.33738351200704,baseline,OpenSystem,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,131306,-0.0354812533661532,relative_legacy,draaglom,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,131306,67.80719051126377,spot_baseline,draaglom,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,131306,-1.753309527626499,peer,draaglom,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,131306,45.34024351766148,baseline,draaglom,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,131306,-5.341442155242053,spot_peer,draaglom,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,131523,14.38495340629458,baseline,SpottedBear,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,131523,80.73549220576041,spot_baseline,SpottedBear,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,131523,0.8355832286309189,peer,SpottedBear,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,131523,4.615464365834285,spot_peer,SpottedBear,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,131523,0.0071884308002488,relative_legacy,SpottedBear,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,139161,50.54476459299325,baseline,Zaldath,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,139161,-0.0735095141454931,peer,Zaldath,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,139161,78.24085649273731,spot_baseline,Zaldath,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,139161,-0.0094581549106744,relative_legacy,Zaldath,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,139161,2.694186909160853,spot_peer,Zaldath,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,148850,69.95516325230894,spot_baseline,pasta,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,148850,-1.0610059451418017,peer,pasta,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,148850,-3.687151878158649,spot_peer,pasta,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,148850,-0.0263250975286312,relative_legacy,pasta,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34971,"Will the US Steel/Nippon Steel merger collapse before April 1, 2025?",2025-02-22 04:31:21.155889+00,148850,44.68155330552324,baseline,pasta,no,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35504 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,101465,97.81956296816516,spot_baseline,Jgalt,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,101465,74.64441842879422,baseline,Jgalt,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,101465,0.5363435736841897,peer,Jgalt,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,101465,0.0058405151194808,relative_legacy,Jgalt,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,101465,1.081998216986989,spot_peer,Jgalt,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,103777,0.2029850624698515,peer,datscilly,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,103777,0.5165460494901896,spot_peer,datscilly,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,103777,97.08536543404836,spot_baseline,datscilly,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,103777,0.0015993172801765,relative_legacy,datscilly,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,103777,46.57696425185727,baseline,datscilly,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,103907,50.25094923926131,baseline,darkives,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,103907,-0.0020531916550452,relative_legacy,darkives,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,103907,-0.0882467307389696,peer,darkives,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,103907,-0.051798469039861,spot_peer,darkives,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,103907,96.3474123974886,spot_baseline,darkives,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,117580,0.0002968584025752,relative_legacy,MaciekK,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,117580,97.08536543404836,spot_baseline,MaciekK,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,117580,8.496570074155994,baseline,MaciekK,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,117580,0.0482527922295879,peer,MaciekK,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,117580,0.5165460494901896,spot_peer,MaciekK,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,119188,0.0027284715601416,relative_legacy,exmateriae,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,119188,98.11219897943108,spot_baseline,exmateriae,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,119188,1.3073758015861747,spot_peer,exmateriae,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,119188,0.2996206444488217,peer,exmateriae,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,119188,58.855703579943366,baseline,exmateriae,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,120160,95.60566524124027,spot_baseline,OpenSystem,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,120160,-0.0844583664964389,peer,OpenSystem,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,120160,-0.0015010358458001,relative_legacy,OpenSystem,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,120160,-0.6230650801974943,spot_peer,OpenSystem,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,120160,15.461158053226242,baseline,OpenSystem,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,131306,27.340050921606043,baseline,draaglom,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,131306,94.11063109464314,spot_baseline,draaglom,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,131306,-1.7744858619248864,spot_peer,draaglom,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,131306,-0.0107306045635202,relative_legacy,draaglom,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,131306,-0.7906701625357615,peer,draaglom,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,131523,0.0009053133274605,relative_legacy,SpottedBear,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,131523,0.5165460494901896,spot_peer,SpottedBear,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,131523,0.1076550288801052,peer,SpottedBear,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,131523,97.08536543404836,spot_baseline,SpottedBear,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,131523,16.607587565988613,baseline,SpottedBear,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,139161,70.54138856485896,baseline,Zaldath,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,139161,97.08536543404836,spot_baseline,Zaldath,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,139161,0.5165460494901896,spot_peer,Zaldath,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,139161,0.002394477605783,relative_legacy,Zaldath,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,139161,0.2885943786692893,peer,Zaldath,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,148850,93.80975610740931,spot_baseline,pasta,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,148850,-0.5200762206107079,peer,pasta,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,148850,-0.007341807495331,relative_legacy,pasta,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,148850,-2.006208805371715,spot_peer,pasta,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +34972,Will Andrew Cuomo run for mayor of New York City?,2025-02-22 04:31:21.177259+00,148850,62.90109328720854,baseline,pasta,yes,2025-02-28 03:00:00+00,2025-02-28 03:00:00+00,1.0,35505 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,101465,36.94048622744873,baseline,Jgalt,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,101465,-9.463656118601811,peer,Jgalt,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,101465,-0.1228745384136337,relative_legacy,Jgalt,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,101465,84.24102588413659,spot_baseline,Jgalt,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,101465,-12.227374353365084,spot_peer,Jgalt,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,103777,-0.3609986620889822,peer,datscilly,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,103777,2.3881835621457417,spot_peer,datscilly,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,103777,91.5824142511962,spot_baseline,datscilly,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,103777,-0.0068047155535024,relative_legacy,datscilly,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,103777,47.4353982212664,baseline,datscilly,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,103907,2.5173074710543264,spot_peer,darkives,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,103907,91.64727313432952,spot_baseline,darkives,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,103907,74.45750029293234,baseline,darkives,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,103907,3.418011075322929,peer,darkives,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,103907,0.0344333122703924,relative_legacy,darkives,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,117580,93.49612387949828,spot_baseline,MaciekK,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,117580,6.198080615327081,spot_peer,MaciekK,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,117580,0.0071741863202533,relative_legacy,MaciekK,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,117580,0.5419110576958912,peer,MaciekK,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,117580,12.35809762423918,baseline,MaciekK,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,119188,89.60074823705159,spot_baseline,exmateriae,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,119188,0.8728510592835693,peer,exmateriae,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,119188,-1.5570040441775874,spot_peer,exmateriae,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,119188,0.0083918677878517,relative_legacy,exmateriae,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,119188,41.35475978566685,baseline,exmateriae,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,120160,94.1197176592448,spot_baseline,OpenSystem,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,120160,53.17376784169498,baseline,OpenSystem,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,120160,0.0678251753829981,relative_legacy,OpenSystem,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,120160,7.439558459563223,spot_peer,OpenSystem,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,120160,5.636583212803525,peer,OpenSystem,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,131306,-0.0095220902848039,relative_legacy,draaglom,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,131306,87.54612127651559,spot_baseline,draaglom,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,131306,-0.821486518480289,peer,draaglom,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,131306,-5.647445502257157,spot_peer,draaglom,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,131306,22.861100515869182,baseline,draaglom,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,131523,-0.0097825516123353,relative_legacy,SpottedBear,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,131523,88.92424222491555,spot_baseline,SpottedBear,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,131523,-2.903821881104782,spot_peer,SpottedBear,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,131523,33.149375715109215,baseline,SpottedBear,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,131523,-0.6737708632279786,peer,SpottedBear,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,139161,88.20489509939597,baseline,Zaldath,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,139161,6.696337553919142,spot_peer,Zaldath,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,139161,4.491819445999662,peer,Zaldath,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,139161,0.0544290465692855,relative_legacy,Zaldath,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,139161,93.74639812246131,spot_baseline,Zaldath,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,148850,-3.641263688706493,peer,pasta,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,148850,67.96504585230834,baseline,pasta,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,148850,88.92424222491555,spot_baseline,pasta,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,148850,-0.0524975183441326,relative_legacy,pasta,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35169,"What will Kalshi's rank in the iPhone Top Free Finance Apps be on March 31, 2025?",2025-03-02 04:36:25.787186+00,148850,-2.903821881104782,spot_peer,pasta,Not in top 50,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35719 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,101465,31.490518263551422,baseline,Jgalt,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,101465,35.12317465219185,spot_peer,Jgalt,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,101465,63.151720291689685,spot_baseline,Jgalt,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,101465,0.1437715657394868,relative_legacy,Jgalt,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,101465,9.274245644602768,peer,Jgalt,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,103777,-15.627758958443126,spot_peer,datscilly,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,103777,23.87421874625912,baseline,datscilly,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,103777,-16.26164507641325,peer,datscilly,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,103777,-0.1752105657021068,relative_legacy,datscilly,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,103777,30.20356618344304,spot_baseline,datscilly,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,103907,0.2536173422420529,relative_legacy,darkives,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,103907,62.67763082878746,baseline,darkives,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,103907,18.46332137198392,peer,darkives,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,103907,74.60547697725805,spot_peer,darkives,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,103907,88.78413508695299,spot_baseline,darkives,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,117580,3.1587860600811046,baseline,MaciekK,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,117580,-24.76532542921781,spot_peer,MaciekK,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,117580,-3.6828808663666495,peer,MaciekK,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,117580,24.27134135851208,spot_baseline,MaciekK,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,117580,-0.0186010338281916,relative_legacy,MaciekK,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,119188,-0.1467279015938348,relative_legacy,exmateriae,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,119188,5.551565619437198,spot_baseline,exmateriae,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,119188,-13.81087060482418,peer,exmateriae,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,119188,-53.59990270533832,spot_peer,exmateriae,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,119188,7.334427397087525,baseline,exmateriae,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,120160,0.2709065208155861,relative_legacy,OpenSystem,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,120160,76.40801425580108,spot_peer,OpenSystem,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,120160,21.46036106512042,peer,OpenSystem,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,120160,68.29374737479823,baseline,OpenSystem,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,120160,89.95436530370019,spot_baseline,OpenSystem,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,131306,2.461865600946838,baseline,draaglom,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,131306,11.939342979355825,spot_baseline,draaglom,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,131306,-43.76063633406666,spot_peer,draaglom,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,131306,-11.226042970739991,peer,draaglom,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,131306,-0.1037987173151661,relative_legacy,draaglom,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,131523,-10.84437703756556,peer,SpottedBear,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,131523,-0.1055550724465944,relative_legacy,SpottedBear,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,131523,-34.72223195029416,spot_peer,SpottedBear,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,131523,17.807190511263766,spot_baseline,SpottedBear,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,131523,6.8846846441209335,baseline,SpottedBear,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,139161,-35.41885561847142,spot_peer,Zaldath,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,139161,53.92819072533425,baseline,Zaldath,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,139161,-0.0240105633095078,relative_legacy,Zaldath,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,139161,17.354933531113417,spot_baseline,Zaldath,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,139161,-4.201311508732073,peer,Zaldath,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,148850,10.82919998293458,peer,pasta,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,148850,0.1068055319879981,relative_legacy,pasta,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,148850,21.758045110580536,spot_peer,pasta,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,148850,61.64722683177479,baseline,pasta,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35170,"How many movies will be new on Netflix's top 10 global English movies list for the week ending March 23, 2025?",2025-03-02 04:36:25.81016+00,148850,54.47490754195514,spot_baseline,pasta,3 or more,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35720 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,101465,25.093281256957237,peer,Jgalt,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,101465,1.2606216143658124,baseline,Jgalt,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,101465,45.54343359013921,spot_peer,Jgalt,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,101465,0.0,spot_baseline,Jgalt,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,101465,0.1820492958307539,relative_legacy,Jgalt,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,103777,-86.13531161467861,spot_baseline,datscilly,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,103777,-50.27691034570133,peer,datscilly,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,103777,-108.48927320095974,spot_peer,datscilly,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,103777,-49.22311280492193,baseline,datscilly,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,103777,-0.5703788729154844,relative_legacy,datscilly,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,103907,102.19066952707333,spot_peer,darkives,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,103907,26.34796302238591,baseline,darkives,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,103907,31.677215970472076,spot_baseline,darkives,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,103907,1.6157516892670136,relative_legacy,darkives,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,103907,110.89545392336647,peer,darkives,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,117580,25.192963641259222,spot_baseline,MaciekK,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,117580,0.0594278639876226,relative_legacy,MaciekK,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,117580,11.033252193638726,peer,MaciekK,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,117580,3.0681602395324425,baseline,MaciekK,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,117580,90.59511226882414,spot_peer,MaciekK,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,119188,-129.2029674220179,spot_baseline,exmateriae,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,119188,-185.50562659650925,spot_peer,exmateriae,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,119188,-1.220690268014916,relative_legacy,exmateriae,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,119188,-123.88955342025338,peer,exmateriae,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,119188,-95.66787244630387,baseline,exmateriae,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,120160,25.192963641259222,spot_baseline,OpenSystem,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,120160,1.5784036501071792,relative_legacy,OpenSystem,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,120160,23.62005721122052,baseline,OpenSystem,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,120160,90.59511226882414,spot_peer,OpenSystem,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,120160,122.5502698259339,peer,OpenSystem,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,131306,-0.1853839492920257,relative_legacy,draaglom,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,131306,-8.764731603077516,baseline,draaglom,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,131306,-5.285894491000986,peer,draaglom,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,131306,-31.47291980541027,spot_peer,draaglom,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,131306,-43.06765580733931,spot_baseline,draaglom,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,131523,14.503232841368362,peer,SpottedBear,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,131523,-6.546416910142253,spot_baseline,SpottedBear,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,131523,-2.077349840671004,baseline,SpottedBear,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,131523,33.83670962815851,spot_peer,SpottedBear,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,131523,-0.0095589902123415,relative_legacy,SpottedBear,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,139161,-126.55573285495842,peer,Zaldath,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,139161,-101.57308385671116,spot_baseline,Zaldath,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,139161,-1.2063066191332854,relative_legacy,Zaldath,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,139161,-98.01939320965218,baseline,Zaldath,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,139161,-136.09609090079303,spot_peer,Zaldath,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,148850,98.80287322065254,spot_peer,pasta,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,148850,21.932601070649245,peer,pasta,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,148850,0.5948156505973063,relative_legacy,pasta,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,148850,29.78275539375593,spot_baseline,pasta,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35171,What will be the IMDb rating of the Severance season 2 second to last episode?,2025-03-02 04:36:25.830523+00,148850,-18.581323924742858,baseline,pasta,≥7.5 and ≤8.5,2025-03-04 12:00:00+00,2025-03-04 12:00:00+00,1.0,35721 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,101465,-6.644437377783777,peer,Jgalt,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,101465,-22.573590419569538,spot_peer,Jgalt,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,101465,40.56513736974158,baseline,Jgalt,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,101465,-0.2396983604746531,relative_legacy,Jgalt,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,101465,106.05409672770578,spot_baseline,Jgalt,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,103777,113.41333966841802,baseline,datscilly,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,103777,5.46998669920232,peer,datscilly,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,103777,-0.0220774252902326,relative_legacy,datscilly,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,103777,120.94654187383604,spot_baseline,datscilly,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,103777,-6.026429146091472,spot_peer,datscilly,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,103907,12.01015182615793,spot_peer,darkives,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,103907,19.04243478479842,peer,darkives,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,103907,104.58049960997742,baseline,darkives,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,103907,137.1794647488605,spot_baseline,darkives,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,103907,0.3033685273583085,relative_legacy,darkives,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,117580,0.0014684374139418,relative_legacy,MaciekK,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,117580,13.87395918344761,spot_peer,MaciekK,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,117580,4.08883754263434,baseline,MaciekK,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,117580,0.4085383491909364,peer,MaciekK,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,117580,138.8568913704212,spot_baseline,MaciekK,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,119188,-3.334579508099795,peer,exmateriae,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,119188,-0.1566273271892995,relative_legacy,exmateriae,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,119188,45.98404522899898,baseline,exmateriae,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,119188,113.73232293856016,spot_baseline,exmateriae,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,119188,-14.042227963064692,spot_peer,exmateriae,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,120160,43.91477371417654,baseline,OpenSystem,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,120160,106.15795353787776,spot_baseline,OpenSystem,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,120160,-22.458193963822872,spot_peer,OpenSystem,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,120160,-6.891056319697868,peer,OpenSystem,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,120160,-0.2475381250365235,relative_legacy,OpenSystem,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,131306,36.66327166815658,baseline,draaglom,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,131306,10.497959582907278,peer,draaglom,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,131306,0.1968588775017115,relative_legacy,draaglom,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,131306,46.253345210419376,spot_peer,draaglom,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,131306,167.99833879469583,spot_baseline,draaglom,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,131523,145.4083234479191,spot_baseline,SpottedBear,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,131523,21.153328158445213,spot_peer,SpottedBear,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,131523,0.0902474750551535,relative_legacy,SpottedBear,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,131523,39.61834301152135,baseline,SpottedBear,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,131523,6.562872008356798,peer,SpottedBear,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,139161,-0.4740834530839224,relative_legacy,Zaldath,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,139161,104.0445249883104,spot_baseline,Zaldath,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,139161,81.16795413244218,baseline,Zaldath,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,139161,-14.42495454414605,peer,Zaldath,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,139161,-24.806447907786644,spot_peer,Zaldath,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,148850,123.32482262499671,spot_baseline,pasta,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,148850,-0.3659560667760743,relative_legacy,pasta,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,148850,82.85631841767027,baseline,pasta,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,148850,-10.686763674728343,peer,pasta,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35172,"How many registered Syrian refugees will be in Turkey on April 1, 2025, according to UNHCR?",2025-03-02 04:36:25.850979+00,148850,-3.383894978135172,spot_peer,pasta,2807615.0,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35722 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,101465,8.779959450194276,spot_peer,Jgalt,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,101465,22.93373080772593,baseline,Jgalt,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,101465,0.4669917302357301,peer,Jgalt,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,101465,-0.0189551474850314,relative_legacy,Jgalt,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,101465,76.55347463629771,spot_baseline,Jgalt,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,103777,6.134331817558881,spot_peer,datscilly,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,103777,73.11832415721999,spot_baseline,datscilly,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,103777,4.921845383725062,peer,datscilly,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,103777,41.11808516164457,baseline,datscilly,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,103777,-0.0014559458065398,relative_legacy,datscilly,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,103907,-0.1352093600094289,relative_legacy,darkives,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,103907,48.54268271702416,spot_baseline,darkives,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,103907,35.20465001732924,baseline,darkives,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,103907,-7.546519081418418,peer,darkives,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,103907,-12.792931043245432,spot_peer,darkives,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,117580,5.03827719024225,baseline,MaciekK,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,117580,84.79969065549501,spot_baseline,MaciekK,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,117580,0.9520787301858672,peer,MaciekK,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,117580,0.0071595978305375,relative_legacy,MaciekK,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,117580,15.130894321299698,spot_peer,MaciekK,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,119188,71.36958148433591,spot_baseline,exmateriae,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,119188,27.822314705121016,baseline,exmateriae,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,119188,4.787513980631712,spot_peer,exmateriae,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,119188,0.0151925502034814,relative_legacy,exmateriae,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,119188,3.395421444662281,peer,exmateriae,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,120160,-50.17873511226909,spot_peer,OpenSystem,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,120160,-0.4981754245385565,relative_legacy,OpenSystem,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,120160,-38.12202759612568,peer,OpenSystem,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,120160,0.0,spot_baseline,OpenSystem,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,120160,0.0,baseline,OpenSystem,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,131306,19.533271091816545,baseline,draaglom,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,131306,3.5886109713015486,peer,draaglom,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,131306,80.73549220576041,spot_baseline,draaglom,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,131306,0.0214722527698704,relative_legacy,draaglom,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,131306,12.000796880555662,spot_peer,draaglom,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,131523,-5.127056433584165,spot_peer,SpottedBear,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,131523,-0.581835719336272,peer,SpottedBear,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,131523,58.496250072115615,spot_baseline,SpottedBear,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,131523,18.09112800146246,baseline,SpottedBear,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,131523,-0.0323337170216951,relative_legacy,SpottedBear,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,139161,17.555373843109326,peer,Zaldath,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,139161,65.59732095220456,baseline,Zaldath,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,139161,0.1577977849834888,relative_legacy,Zaldath,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,139161,15.130894321299698,spot_peer,Zaldath,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,139161,84.79969065549501,spot_baseline,Zaldath,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,148850,73.11832415721999,spot_baseline,pasta,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,148850,62.35926193571338,baseline,pasta,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,148850,15.37006029366052,peer,pasta,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,148850,0.1315266046467713,relative_legacy,pasta,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35173,"Will President Trump issue a new presidential action mentioning the Diversity Visa before April 1, 2025?",2025-03-02 04:36:25.871209+00,148850,6.134331817558881,spot_peer,pasta,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35723 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,101465,9.958459191677823,baseline,Jgalt,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,101465,35.61438102252753,spot_baseline,Jgalt,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,101465,10.69973642609006,spot_peer,Jgalt,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,101465,-0.0144055440074122,relative_legacy,Jgalt,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,101465,3.028644564770366,peer,Jgalt,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,103777,-8.926733809708741,spot_baseline,datscilly,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,103777,-7.707711320183519,peer,datscilly,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,103777,-23.60420597942254,spot_peer,datscilly,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,103777,-5.5088956357195045,baseline,datscilly,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,103777,-0.1478700303254071,relative_legacy,datscilly,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,103907,-8.835288978440268,baseline,darkives,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,103907,-8.691512257314553,peer,darkives,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,103907,-25.511739715240925,spot_peer,darkives,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,103907,-0.1696546752834327,relative_legacy,darkives,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,103907,-11.40352432460296,spot_baseline,darkives,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,117580,12.422423818975082,spot_peer,MaciekK,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,117580,1.3919100324510216,baseline,MaciekK,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,117580,37.85116232537298,spot_baseline,MaciekK,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,117580,0.0,relative_legacy,MaciekK,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,117580,0.478691862957752,peer,MaciekK,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,119188,15.789684874011618,spot_peer,exmateriae,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,119188,16.676547111718147,baseline,exmateriae,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,119188,42.22330006830476,spot_baseline,exmateriae,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,119188,0.0544337882278979,relative_legacy,exmateriae,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,119188,8.327478477707979,peer,exmateriae,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,120160,0.0,baseline,OpenSystem,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,120160,-0.0927810739682121,relative_legacy,OpenSystem,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,120160,-16.729161121857263,spot_peer,OpenSystem,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,120160,-2.617749403759491,peer,OpenSystem,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,120160,0.0,spot_baseline,OpenSystem,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,131306,-0.001405996250212,relative_legacy,draaglom,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,131306,34.027740476625425,spot_baseline,draaglom,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,131306,3.127386363069816,peer,draaglom,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,131306,9.071420740033572,baseline,draaglom,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,131306,9.477763736141007,spot_peer,draaglom,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,131523,37.85116232537298,spot_baseline,SpottedBear,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,131523,0.0102799727728402,relative_legacy,SpottedBear,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,131523,4.230669396392481,peer,SpottedBear,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,131523,10.745298327671753,baseline,SpottedBear,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,131523,12.422423818975082,spot_peer,SpottedBear,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,139161,-0.8178308401892156,peer,Zaldath,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,139161,-1.0052168333048104,baseline,Zaldath,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,139161,20.656642947166397,spot_peer,Zaldath,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,139161,48.54268271702416,spot_baseline,Zaldath,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,139161,-0.0528559390191893,relative_legacy,Zaldath,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,148850,1.1527778714681705,baseline,pasta,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,148850,0.6419331565484165,peer,pasta,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,148850,1.4355292977070055,spot_baseline,pasta,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,148850,-0.0646349253292927,relative_legacy,pasta,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35174,"Will the Artemis Accords have 54 signatories on April 1, 2025?",2025-03-02 04:36:26.503647+00,148850,-15.623568804838577,spot_peer,pasta,no,2025-03-05 09:00:00+00,2025-03-05 09:00:00+00,1.0,35724 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,101465,0.0021151626370851,relative_legacy,Jgalt,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,101465,21.479964774427728,baseline,Jgalt,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,101465,97.08536543404836,spot_baseline,Jgalt,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,101465,1.335114836190958,spot_peer,Jgalt,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,101465,0.3266748411405184,peer,Jgalt,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,103777,69.62189144127439,baseline,datscilly,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,103777,-0.0542042345274882,relative_legacy,datscilly,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,103777,-5.684763121756982,spot_peer,datscilly,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,103777,-3.626728202634837,peer,datscilly,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,103777,87.97057662822883,spot_baseline,datscilly,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,103907,-0.955917075224112,spot_peer,darkives,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,103907,-1.4356968478623269,peer,darkives,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,103907,81.38436493683912,baseline,darkives,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,103907,-0.0258334443886919,relative_legacy,darkives,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,103907,94.11063109464314,spot_baseline,darkives,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,117580,95.60566524124027,spot_baseline,MaciekK,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,117580,0.0,relative_legacy,MaciekK,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,117580,0.1955037065032833,spot_peer,MaciekK,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,117580,0.0065009440808835,peer,MaciekK,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,117580,3.182522326454381,baseline,MaciekK,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,119188,85.5231654621641,baseline,exmateriae,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,119188,0.7357129296354077,peer,exmateriae,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,119188,0.0020437810700993,relative_legacy,exmateriae,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,119188,1.335114836190958,spot_peer,exmateriae,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,119188,97.08536543404836,spot_baseline,exmateriae,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,120160,95.60566524124027,spot_baseline,OpenSystem,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,120160,0.1955037065032833,spot_peer,OpenSystem,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,120160,-0.0019011508976776,relative_legacy,OpenSystem,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,120160,0.4839892597320352,peer,OpenSystem,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,120160,50.8669930800012,baseline,OpenSystem,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,131306,97.81956296816516,spot_baseline,draaglom,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,131306,0.0021748288400953,relative_legacy,draaglom,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,131306,1.900567003687777,spot_peer,draaglom,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,131306,0.7001128989762632,peer,draaglom,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,131306,89.9293782133118,baseline,draaglom,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,131523,91.65372609507388,baseline,SpottedBear,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,131523,2.784689677001236,peer,SpottedBear,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,131523,97.08536543404836,spot_baseline,SpottedBear,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,131523,0.0254347740379547,relative_legacy,SpottedBear,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,131523,1.335114836190958,spot_peer,SpottedBear,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,139161,1.4063798464125197,peer,Zaldath,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,139161,2.463156109970733,spot_peer,Zaldath,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,139161,92.80070236860377,baseline,Zaldath,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,139161,0.0095397102264771,relative_legacy,Zaldath,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,148850,92.5999418556223,spot_baseline,pasta,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,148850,-1.3816353464817115,peer,pasta,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,148850,-0.0255946258746923,relative_legacy,pasta,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,148850,48.34262151929161,baseline,pasta,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35175,"Before April 1, 2025, will Databricks announce that it is planning an IPO?",2025-03-02 04:36:26.525682+00,148850,-2.119394838256932,spot_peer,pasta,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35725 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,101465,2.490371683933665,spot_peer,Jgalt,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,101465,0.00482062836149,relative_legacy,Jgalt,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,101465,92.5999418556223,spot_baseline,Jgalt,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,101465,18.21630568125535,baseline,Jgalt,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,101465,0.4306749428222391,peer,Jgalt,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,103777,-2.6808454190629183,peer,datscilly,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,103777,-3.5170973460969543,spot_peer,datscilly,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,103777,-0.0313932026652549,relative_legacy,datscilly,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,103777,84.79969065549501,spot_baseline,datscilly,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,103777,68.46677423360944,baseline,datscilly,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,103907,-0.0200579623291057,relative_legacy,darkives,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,103907,-1.8546043007467945,peer,darkives,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,103907,86.23521995320202,spot_baseline,darkives,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,103907,76.09420159957253,baseline,darkives,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,103907,-2.411505029078284,spot_peer,darkives,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,117580,-3.5170973460969543,spot_peer,MaciekK,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,117580,-0.1204164101171412,peer,MaciekK,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,117580,2.9033243390634618,baseline,MaciekK,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,117580,-0.0018316191181624,relative_legacy,MaciekK,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,117580,84.79969065549501,spot_baseline,MaciekK,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,119188,51.816848318510125,baseline,exmateriae,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,119188,90.14944550475748,spot_baseline,exmateriae,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,119188,0.1658733582790748,peer,exmateriae,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,119188,0.0,relative_legacy,exmateriae,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,119188,0.6030887544065826,spot_peer,exmateriae,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,120160,1.717750265441372,peer,OpenSystem,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,120160,62.21366241773921,baseline,OpenSystem,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,120160,2.490371683933665,spot_peer,OpenSystem,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,120160,92.5999418556223,spot_baseline,OpenSystem,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,120160,0.0210131147917165,relative_legacy,OpenSystem,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,131306,89.53026213333065,spot_baseline,draaglom,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,131306,-0.0206885327318898,relative_legacy,draaglom,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,131306,0.126216300902013,spot_peer,draaglom,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,131306,-2.0407630783854005,peer,draaglom,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,131306,81.86963166981555,baseline,draaglom,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,131523,0.0090164409504694,relative_legacy,SpottedBear,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,131523,0.126216300902013,spot_peer,SpottedBear,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,131523,84.77361452341458,baseline,SpottedBear,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,131523,89.53026213333065,spot_baseline,SpottedBear,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,131523,0.6292472724258323,peer,SpottedBear,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,139161,0.0568016800721751,relative_legacy,Zaldath,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,139161,95.60566524124027,spot_baseline,Zaldath,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,139161,4.524197817987879,peer,Zaldath,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,139161,4.805270228693906,spot_peer,Zaldath,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,139161,92.30601720402215,baseline,Zaldath,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,148850,47.115679228458944,baseline,pasta,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,148850,-0.7711144486441487,peer,pasta,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,148850,-1.1958352314995957,spot_peer,pasta,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,148850,-0.0119905573181263,relative_legacy,pasta,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35176,Will a pilot report of UFOs come from a country in Africa in March 2025?,2025-03-02 04:36:26.546347+00,148850,87.81367666269476,spot_baseline,pasta,no,2025-03-06 21:00:00+00,2025-03-06 21:00:00+00,1.0,35726 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,101465,99.56654097361088,spot_baseline,Jgalt,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,101465,0.0005498604794154,relative_legacy,Jgalt,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,101465,14.80924682860334,baseline,Jgalt,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,101465,0.3018288779259792,spot_peer,Jgalt,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,101465,0.0360255421301129,peer,Jgalt,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,103777,20.05785444395481,baseline,datscilly,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,103777,0.004831828414039,peer,datscilly,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,103777,0.0001297102549789,relative_legacy,datscilly,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,103777,0.078714122009813,spot_peer,datscilly,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,103777,99.27684307689242,spot_baseline,datscilly,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,103907,99.27684307689242,spot_baseline,darkives,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,103907,0.0715503930451219,peer,darkives,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,103907,0.078714122009813,spot_peer,darkives,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,103907,69.58603930452446,baseline,darkives,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,103907,0.0001297102549789,relative_legacy,darkives,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,117580,-0.0001581522365954,relative_legacy,MaciekK,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,117580,-0.4810407702076558,spot_peer,MaciekK,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,117580,3.903255244943844,baseline,MaciekK,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,117580,-0.018654714027751,peer,MaciekK,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,117580,98.5500430304885,spot_baseline,MaciekK,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,119188,99.27684307689242,spot_baseline,exmateriae,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,119188,0.0001297102549789,relative_legacy,exmateriae,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,119188,89.03308276520919,baseline,exmateriae,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,119188,0.078714122009813,spot_peer,exmateriae,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,119188,0.082738489396705,peer,exmateriae,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,120160,5.368705118094479,baseline,OpenSystem,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,120160,-0.4810407702076558,spot_peer,OpenSystem,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,120160,-0.0002662281950684,relative_legacy,OpenSystem,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,120160,98.5500430304885,spot_baseline,OpenSystem,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,120160,-0.0263291122905398,peer,OpenSystem,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,131306,99.71117206751734,spot_baseline,draaglom,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,131306,0.131945825137374,peer,draaglom,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,131306,90.14077968079508,baseline,draaglom,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,131306,0.0007558913070476,relative_legacy,draaglom,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,131306,0.413218472328825,spot_peer,draaglom,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,131523,0.413218472328825,spot_peer,SpottedBear,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,131523,92.85336047095056,baseline,SpottedBear,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,131523,0.4244046857324304,peer,SpottedBear,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,131523,0.0041590301734695,relative_legacy,SpottedBear,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,131523,99.71117206751734,spot_baseline,SpottedBear,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,139161,0.078714122009813,spot_peer,Zaldath,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,139161,0.0695727740603022,peer,Zaldath,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,139161,99.27684307689242,spot_baseline,Zaldath,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,139161,96.70031784365082,baseline,Zaldath,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,139161,4.096400164650711e-05,relative_legacy,Zaldath,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,148850,98.5500430304885,spot_baseline,pasta,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,148850,-0.4810407702076558,spot_peer,pasta,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,148850,-0.0103038522051279,relative_legacy,pasta,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,148850,-0.7760857115978569,peer,pasta,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35177,"Will Donald Trump visit China after the launch of this question and before April 1, 2025?",2025-03-02 04:36:26.566484+00,148850,79.57325628095818,baseline,pasta,no,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35727 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,101465,76.55347463629771,spot_baseline,Jgalt,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,101465,9.841948024760372,baseline,Jgalt,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,101465,-0.0071808756791371,relative_legacy,Jgalt,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,101465,1.514744812185719,spot_peer,Jgalt,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,101465,0.5168684284970271,peer,Jgalt,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,103777,87.97057662822883,spot_baseline,datscilly,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,103777,10.307780429821708,spot_peer,datscilly,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,103777,0.0120540975743427,relative_legacy,datscilly,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,103777,18.27827310393186,baseline,datscilly,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,103777,2.8488114550054857,peer,datscilly,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,103907,61.91782160590692,spot_baseline,darkives,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,103907,-5.8903484354010605,peer,darkives,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,103907,-0.1299828198889692,relative_legacy,darkives,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,103907,32.86137887502029,baseline,darkives,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,103907,-9.757101447446493,spot_peer,darkives,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,117580,0.0006755748475331,relative_legacy,MaciekK,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,117580,3.752653035371298,baseline,MaciekK,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,117580,0.3940602461634871,peer,MaciekK,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,117580,7.865679683291134,spot_peer,MaciekK,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,117580,84.79969065549501,spot_baseline,MaciekK,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,119188,47.80239371654353,baseline,exmateriae,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,119188,5.368695699729054,spot_peer,exmateriae,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,119188,2.789856416814932,peer,exmateriae,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,119188,81.55754288625727,spot_baseline,exmateriae,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,119188,-0.0014960402828563,relative_legacy,exmateriae,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,120160,4.633301197983525,baseline,OpenSystem,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,120160,84.79969065549501,spot_baseline,OpenSystem,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,120160,7.865679683291134,spot_peer,OpenSystem,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,120160,0.0010122731837919,relative_legacy,OpenSystem,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,120160,0.4983645850007449,peer,OpenSystem,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,131306,92.5999418556223,spot_baseline,draaglom,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,131306,0.2074514253464586,relative_legacy,draaglom,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,131306,21.34973248413457,peer,draaglom,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,131306,13.873148713321765,spot_peer,draaglom,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,131306,69.2814271179824,baseline,draaglom,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,131523,-37.18599899539381,spot_peer,SpottedBear,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,131523,26.303440583379377,spot_baseline,SpottedBear,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,131523,-0.2251685242907762,relative_legacy,SpottedBear,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,131523,-12.94027064930838,peer,SpottedBear,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,131523,25.12159356112672,baseline,SpottedBear,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,139161,-19.205051143693293,peer,Zaldath,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,139161,-0.2461683141402071,relative_legacy,Zaldath,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,139161,22.26013885351333,baseline,Zaldath,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,139161,-5.221324278529253,spot_peer,Zaldath,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,139161,67.80719051126377,spot_baseline,Zaldath,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,148850,0.0587953030983971,relative_legacy,pasta,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,148850,9.637976612786506,peer,pasta,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,148850,81.55754288625727,spot_baseline,pasta,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,148850,5.368695699729054,spot_peer,pasta,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35178,"Will NOAA's Climate.gov still be online on April 1, 2025?",2025-03-02 04:36:26.586497+00,148850,55.39080618404694,baseline,pasta,yes,2025-03-07 12:00:00+00,2025-03-07 12:00:00+00,1.0,35728 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,101465,87.06020249644129,baseline,Jgalt,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,101465,0.4479492134916791,spot_peer,Jgalt,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,101465,99.81776986373416,spot_baseline,Jgalt,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,101465,0.8559891088260589,peer,Jgalt,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,101465,0.0059902473279895,relative_legacy,Jgalt,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,103777,0.1210426566078679,peer,datscilly,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,103777,0.3365596190888226,spot_peer,datscilly,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,103777,23.41667578059632,baseline,datscilly,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,103777,99.726517803297,spot_baseline,datscilly,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,103777,8.492888064503595e-05,relative_legacy,datscilly,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,103907,86.5397404731153,baseline,darkives,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,103907,-0.0169118128501117,relative_legacy,darkives,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,103907,-1.5743513028245892,spot_peer,darkives,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,103907,-1.36246155899279,peer,darkives,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,103907,98.16107033155328,spot_baseline,darkives,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,117580,0.1134448631726596,spot_peer,MaciekK,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,117580,4.675636482380143,baseline,MaciekK,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,117580,-0.0001360730540521,relative_legacy,MaciekK,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,117580,99.54373878071024,spot_baseline,MaciekK,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,117580,0.006494113513047,peer,MaciekK,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,119188,68.31095865071487,baseline,exmateriae,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,119188,0.3365596190888226,spot_peer,exmateriae,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,119188,0.367047227968355,peer,exmateriae,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,119188,0.0018647660233753,relative_legacy,exmateriae,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,119188,99.726517803297,spot_baseline,exmateriae,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,120160,58.85094562341899,baseline,OpenSystem,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,120160,-0.1483619935604621,peer,OpenSystem,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,120160,-0.0036955599232434,relative_legacy,OpenSystem,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,120160,99.0851790065369,spot_baseline,OpenSystem,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,120160,-0.4463100290448134,spot_peer,OpenSystem,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,131306,0.003200884379032,relative_legacy,draaglom,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,131306,0.431274927198672,peer,draaglom,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,131306,0.4479492134916791,spot_peer,draaglom,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,131306,99.81776986373416,spot_baseline,draaglom,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,131306,60.454851708978445,baseline,draaglom,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,131523,8.410727399339438e-05,relative_legacy,SpottedBear,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,131523,99.81776986373416,spot_baseline,SpottedBear,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,131523,0.0283511875125893,peer,SpottedBear,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,131523,0.4479492134916791,spot_peer,SpottedBear,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,131523,5.804699592999638,baseline,SpottedBear,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,139161,0.3365596190888226,spot_peer,Zaldath,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,139161,8.716029241965769,baseline,Zaldath,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,139161,0.0283492551950635,peer,Zaldath,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,139161,-2.5738757498688483e-05,relative_legacy,Zaldath,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,139161,99.726517803297,spot_baseline,Zaldath,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,148850,-0.3277249242684447,peer,pasta,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,148850,99.0851790065369,spot_baseline,pasta,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,148850,40.94701352415254,baseline,pasta,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,148850,-0.0051273330504671,relative_legacy,pasta,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35377,Who will win the special election for Florida's 1st Congressional District?,2025-03-08 05:16:05.892384+00,148850,-0.4463100290448134,spot_peer,pasta,Jimmy Patronis,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35943 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,101465,-5.343725753348367,peer,Jgalt,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,101465,40.5203254691886,baseline,Jgalt,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,101465,-1.7151330025121423,spot_peer,Jgalt,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,101465,68.26061944859853,spot_baseline,Jgalt,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,101465,-0.0546221588114685,relative_legacy,Jgalt,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,103777,19.20932204506462,baseline,datscilly,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,103777,16.98879086628948,spot_peer,datscilly,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,103777,5.791024221504661,peer,datscilly,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,103777,78.71988063032538,spot_baseline,datscilly,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,103777,0.051057397238808,relative_legacy,datscilly,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,103907,73.2390740848256,baseline,darkives,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,103907,23.078594921288943,spot_peer,darkives,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,103907,23.813772646023857,peer,darkives,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,103907,82.12530783391993,spot_baseline,darkives,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,103907,0.2752501133073175,relative_legacy,darkives,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,117580,3.4125379536136484,baseline,MaciekK,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,117580,10.545762238472916,spot_peer,MaciekK,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,117580,75.11692973657827,spot_baseline,MaciekK,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,117580,0.0018513035614956,relative_legacy,MaciekK,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,117580,0.4885793790141781,peer,MaciekK,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,119188,39.8497854463575,baseline,exmateriae,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,119188,-0.0501387503221639,peer,exmateriae,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,119188,10.876943142710433,spot_peer,exmateriae,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,119188,0.0009407292980588,relative_legacy,exmateriae,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,119188,75.3021265754939,spot_baseline,exmateriae,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,120160,30.28453783298388,baseline,OpenSystem,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,120160,50.38592728251845,spot_baseline,OpenSystem,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,120160,-15.392974367021296,peer,OpenSystem,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,120160,-33.6798077193767,spot_peer,OpenSystem,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,120160,-0.189434806954213,relative_legacy,OpenSystem,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,131306,11.86227477475122,peer,draaglom,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,131306,0.1363379467308803,relative_legacy,draaglom,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,131306,43.048979947082245,baseline,draaglom,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,131306,22.930347919829323,spot_peer,draaglom,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,131306,82.0424078970644,spot_baseline,draaglom,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,131523,-2.046056193859811,peer,SpottedBear,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,131523,4.885980128485925,baseline,SpottedBear,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,131523,-0.0310006388782735,relative_legacy,SpottedBear,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,131523,-26.508860926313236,spot_peer,SpottedBear,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,131523,54.39593106327713,spot_baseline,SpottedBear,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,139161,0.004148350548215,relative_legacy,Zaldath,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,139161,5.699911476330424,baseline,Zaldath,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,139161,73.42483896078862,spot_baseline,Zaldath,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,139161,0.7028306313280771,peer,Zaldath,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,139161,7.519856631988604,spot_peer,Zaldath,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,148850,-0.2664733252736029,relative_legacy,pasta,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,148850,-30.036494072377696,spot_peer,pasta,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,148850,-19.82558658807037,peer,pasta,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,148850,16.220247853881986,baseline,pasta,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35378,"How many of the 818 ""critical"" leadership roles in the executive branch will have been confirmed at the beginning of April 2025?",2025-03-08 05:16:05.915654+00,148850,52.42327352431288,spot_baseline,pasta,31-49,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35944 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,101465,0.1015642810448633,peer,Jgalt,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,101465,-4.113152719944988,spot_peer,Jgalt,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,101465,31.29560706153273,baseline,Jgalt,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,101465,51.97882175546268,spot_baseline,Jgalt,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,101465,-0.0401381054666864,relative_legacy,Jgalt,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,103777,24.0075423566663,baseline,datscilly,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,103777,30.293163473328587,spot_baseline,datscilly,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,103777,-28.20832858898287,spot_peer,datscilly,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,103777,-0.5561703608150209,relative_legacy,datscilly,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,103777,-23.126980474806047,peer,datscilly,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,103907,11.12366309561621,peer,darkives,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,103907,9.023076929980748,spot_peer,darkives,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,103907,63.80142844039584,spot_baseline,darkives,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,103907,0.222138527708333,relative_legacy,darkives,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,103907,58.38660714471739,baseline,darkives,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,117580,-0.0027689248401756,relative_legacy,MaciekK,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,117580,2.004643341623732,spot_peer,MaciekK,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,117580,2.569159549714606,baseline,MaciekK,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,117580,57.484838210874535,spot_baseline,MaciekK,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,117580,0.0880050630276459,peer,MaciekK,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,119188,7.280916297253824,spot_peer,exmateriae,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,119188,1.117685311496888,peer,exmateriae,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,119188,62.23348387094161,spot_baseline,exmateriae,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,119188,0.0155858208597224,relative_legacy,exmateriae,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,119188,7.260214724413892,baseline,exmateriae,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,120160,54.49224426403978,baseline,OpenSystem,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,120160,-6.163735458556785,spot_peer,OpenSystem,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,120160,4.047130788288351,peer,OpenSystem,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,120160,50.13329729071207,spot_baseline,OpenSystem,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,120160,0.0377971148781348,relative_legacy,OpenSystem,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,131306,8.395054362511084,peer,draaglom,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,131306,7.411817645330911,spot_peer,draaglom,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,131306,0.1613304167318651,relative_legacy,draaglom,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,131306,62.35129508421099,spot_baseline,draaglom,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,131306,35.34052443972362,baseline,draaglom,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,131523,6.249615086419881,spot_peer,SpottedBear,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,131523,61.305312781191056,spot_baseline,SpottedBear,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,131523,0.4230554739074367,peer,SpottedBear,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,131523,0.0025919233595365,relative_legacy,SpottedBear,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,131523,4.208886786595516,baseline,SpottedBear,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,139161,5.249075974378169,baseline,Zaldath,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,139161,17.676846829624868,spot_peer,Zaldath,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,139161,0.0261374894826378,relative_legacy,Zaldath,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,139161,1.3548895982108,peer,Zaldath,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,139161,71.58982135007555,spot_baseline,Zaldath,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,148850,-11.161699362748816,spot_peer,pasta,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,148850,27.561601285412667,baseline,pasta,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,148850,-3.524067499297086,peer,pasta,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,148850,45.63512977693924,spot_baseline,pasta,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35379,"How many cubic meters of water produced and supplied on average per day will the UN's OCHA report in its final impact snapshot before April 1, 2025?",2025-03-08 05:16:05.937661+00,148850,-0.128689407411211,relative_legacy,pasta,130027.0,2025-03-11 22:00:00+00,2025-03-11 22:00:00+00,1.0,35945 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,101465,-0.0002771082542828,relative_legacy,Jgalt,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,101465,34.41747050594165,baseline,Jgalt,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,101465,91.07326619029126,spot_baseline,Jgalt,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,101465,0.0329898906306759,spot_peer,Jgalt,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,101465,-0.0401299783940612,peer,Jgalt,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,103777,0.0054102921603734,relative_legacy,datscilly,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,103777,66.48021221400282,baseline,datscilly,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,103777,0.7895479758733494,peer,datscilly,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,103777,92.5999418556223,spot_baseline,datscilly,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,103777,1.2087798162458852,spot_peer,datscilly,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,103907,-5.307519417704726,peer,darkives,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,103907,-4.798689213784736,spot_peer,darkives,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,103907,-0.0611702474874656,relative_legacy,darkives,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,103907,77.23392187810778,baseline,darkives,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,103907,84.79969065549501,spot_baseline,darkives,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,117580,92.5999418556223,spot_baseline,MaciekK,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,117580,12.913855201353536,baseline,MaciekK,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,117580,0.1760862492143383,peer,MaciekK,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,117580,0.0018519717522957,relative_legacy,MaciekK,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,117580,1.2087798162458852,spot_peer,MaciekK,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,119188,-3.125411322030898e-05,relative_legacy,exmateriae,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,119188,1.2087798162458852,spot_peer,exmateriae,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,119188,0.1485122444037859,peer,exmateriae,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,119188,55.45301939125517,baseline,exmateriae,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,119188,92.5999418556223,spot_baseline,exmateriae,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,120160,92.5999418556223,spot_baseline,OpenSystem,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,120160,0.5998947021164882,peer,OpenSystem,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,120160,0.0054102921603734,relative_legacy,OpenSystem,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,120160,1.2087798162458852,spot_peer,OpenSystem,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,120160,57.42262792149417,baseline,OpenSystem,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,131306,92.67524647616928,baseline,draaglom,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,131306,0.0329898906306759,spot_peer,draaglom,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,131306,2.302276182678764,peer,draaglom,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,131306,91.07326619029126,spot_baseline,draaglom,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,131306,0.0156761349458424,relative_legacy,draaglom,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,131523,-4.798689213784736,spot_peer,SpottedBear,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,131523,-0.0132378792156162,relative_legacy,SpottedBear,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,131523,17.519026623363786,baseline,SpottedBear,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,131523,84.79969065549501,spot_baseline,SpottedBear,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,131523,-0.974748009019142,peer,SpottedBear,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,139161,53.49752795226465,baseline,Zaldath,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,139161,2.46250124792045,peer,Zaldath,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,139161,97.08536543404836,spot_baseline,Zaldath,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,139161,0.0301021237532108,relative_legacy,Zaldath,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,139161,4.663289490693789,spot_peer,Zaldath,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,148850,-0.0035762514537413,relative_legacy,pasta,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,148850,53.29753580104842,baseline,pasta,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,148850,-0.1564211970892513,peer,pasta,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,148850,0.0329898906306759,spot_peer,pasta,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35380,"Will the US Citizenship and Immigration Services' EB-5 page still be online on March 31, 2025?",2025-03-08 05:16:05.958023+00,148850,91.07326619029126,spot_baseline,pasta,yes,2025-03-12 22:00:00+00,2025-03-12 22:00:00+00,1.0,35946 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,101465,1.7986883832112694,spot_peer,Jgalt,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,101465,95.1587794814754,spot_baseline,Jgalt,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,101465,24.01079070958492,baseline,Jgalt,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,101465,0.127558441381358,peer,Jgalt,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,101465,0.0007570898634408,relative_legacy,Jgalt,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,103777,38.33900643906453,baseline,datscilly,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,103777,92.5999418556223,spot_baseline,datscilly,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,103777,-0.172035045534039,spot_peer,datscilly,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,103777,0.0,relative_legacy,datscilly,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,103777,0.2850336641509589,peer,datscilly,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,103907,-6.179504075564678,spot_peer,darkives,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,103907,-0.0412169489604808,relative_legacy,darkives,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,103907,-2.808906254959416,peer,darkives,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,103907,44.80861490146704,baseline,darkives,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,103907,84.79969065549501,spot_baseline,darkives,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,117580,21.07735019051656,baseline,MaciekK,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,117580,0.0,relative_legacy,MaciekK,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,117580,92.5999418556223,spot_baseline,MaciekK,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,117580,-0.172035045534039,spot_peer,MaciekK,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,117580,0.0543562746078446,peer,MaciekK,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,119188,-3.2830907153374853,peer,exmateriae,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,119188,91.07326619029126,spot_baseline,exmateriae,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,119188,-1.3478249711492614,spot_peer,exmateriae,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,119188,59.14327220490664,baseline,exmateriae,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,119188,-0.0474120710415846,relative_legacy,exmateriae,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,120160,56.02238747126188,baseline,OpenSystem,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,120160,0.0257635082251178,relative_legacy,OpenSystem,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,120160,97.08536543404836,spot_baseline,OpenSystem,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,120160,3.2824746289138678,spot_peer,OpenSystem,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,120160,2.618187211696064,peer,OpenSystem,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,131306,-0.3085822617750711,peer,draaglom,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,131306,61.314219773496646,baseline,draaglom,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,131306,-0.172035045534039,spot_peer,draaglom,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,131306,-0.0216947410980577,relative_legacy,draaglom,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,131306,92.5999418556223,spot_baseline,draaglom,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,131523,0.1024664727102341,peer,SpottedBear,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,131523,2.1428634992261832,spot_peer,SpottedBear,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,131523,0.0013869036081088,relative_legacy,SpottedBear,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,131523,4.529762512035032,baseline,SpottedBear,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,131523,95.60566524124027,spot_baseline,SpottedBear,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,139161,94.11063109464314,spot_baseline,Zaldath,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,139161,0.9914427174987784,spot_peer,Zaldath,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,139161,60.99687058464863,baseline,Zaldath,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,139161,0.0129084362232259,relative_legacy,Zaldath,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,139161,2.0351970111437567,peer,Zaldath,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,148850,-0.172035045534039,spot_peer,pasta,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,148850,-0.000519388078655,relative_legacy,pasta,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,148850,1.1777801563817494,peer,pasta,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,148850,61.61089049054707,baseline,pasta,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35381,"Will the United States impose any new tariffs on India before April 1, 2025?",2025-03-08 05:16:05.977657+00,148850,92.5999418556223,spot_baseline,pasta,no,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35947 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,101465,94.86008474933556,spot_baseline,Jgalt,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,101465,-0.8485910562608059,spot_peer,Jgalt,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,101465,-0.0081211426102427,relative_legacy,Jgalt,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,101465,42.578519559431946,baseline,Jgalt,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,101465,-0.8085642384664451,peer,Jgalt,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,103777,91.07326619029126,spot_baseline,datscilly,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,103777,-0.0335465597797317,relative_legacy,datscilly,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,103777,72.85028365621923,baseline,datscilly,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,103777,-2.6605598221204634,peer,datscilly,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,103777,-3.765060620142625,spot_peer,datscilly,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,103907,99.27684307689242,spot_baseline,darkives,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,103907,2.5530351459177423,spot_peer,darkives,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,103907,1.339026641835768,peer,darkives,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,103907,52.16250843624634,baseline,darkives,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,103907,0.0180973024190082,relative_legacy,darkives,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,117580,-2.5892706945274058,spot_peer,MaciekK,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,117580,92.5999418556223,spot_baseline,MaciekK,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,117580,-0.0056100307957061,relative_legacy,MaciekK,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,117580,-0.6313485698905069,peer,MaciekK,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,117580,21.817905362464444,baseline,MaciekK,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,119188,0.8713733668034886,peer,exmateriae,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,119188,0.0099098010665003,relative_legacy,exmateriae,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,119188,1.768586322503855,spot_peer,exmateriae,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,119188,98.25829469225908,spot_baseline,exmateriae,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,119188,68.79440830116974,baseline,exmateriae,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,120160,98.84120257247882,spot_baseline,OpenSystem,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,120160,0.7014174259290176,peer,OpenSystem,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,120160,0.0101445051283599,relative_legacy,OpenSystem,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,120160,33.33921125410369,baseline,OpenSystem,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,120160,2.2175207155044,spot_peer,OpenSystem,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,131306,68.32922378323464,baseline,draaglom,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,131306,-2.5892706945274058,spot_peer,draaglom,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,131306,0.0067666749913066,relative_legacy,draaglom,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,131306,0.6623364011231322,peer,draaglom,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,131306,92.5999418556223,spot_baseline,draaglom,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,131523,98.5500430304885,spot_baseline,SpottedBear,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,131523,1.9932802537002603,spot_peer,SpottedBear,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,131523,0.0014190630883045,relative_legacy,SpottedBear,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,131523,3.990797596540344,baseline,SpottedBear,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,131523,0.0794122785265202,peer,SpottedBear,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,139161,0.0161103151538235,relative_legacy,Zaldath,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,139161,64.10886413397888,baseline,Zaldath,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,139161,1.4202339384579503,peer,Zaldath,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,139161,1.9932802537002603,spot_peer,Zaldath,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,139161,98.5500430304885,spot_baseline,Zaldath,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,148850,-0.7335096258683496,spot_peer,pasta,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,148850,-0.0126030479920821,relative_legacy,pasta,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,148850,-0.9733274221984964,peer,pasta,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,148850,95.0095094173686,spot_baseline,pasta,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35385,"Will ChatGPT rank in the top 10 global websites according to Semrush on April 1, 2025?",2025-03-08 05:18:23.635455+00,148850,63.86746970809664,baseline,pasta,yes,2025-03-13 03:00:00+00,2025-03-13 03:00:00+00,1.0,35951 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,101465,0.1811949467451089,relative_legacy,Jgalt,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,101465,21.06147801539972,peer,Jgalt,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,101465,-15.200309344505014,spot_baseline,Jgalt,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,101465,22.90810916528228,spot_peer,Jgalt,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,101465,-1.283925265041476,baseline,Jgalt,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,103777,-0.2401403858215664,relative_legacy,datscilly,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,103777,-25.91040858847835,spot_peer,datscilly,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,103777,-47.6104848593229,baseline,datscilly,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,103777,-12.63944849153256,peer,datscilly,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,103777,-78.58751946471523,spot_baseline,datscilly,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,103907,-3.0445118901785664,peer,darkives,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,103907,-58.6405917590825,spot_baseline,darkives,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,103907,-10.548012255153466,spot_peer,darkives,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,103907,-0.1316799745603884,relative_legacy,darkives,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,103907,-41.65892208872418,baseline,darkives,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,117580,0.000504262782396,relative_legacy,MaciekK,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,117580,-7.329362876299577,baseline,MaciekK,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,117580,-55.63933485243855,spot_baseline,MaciekK,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,117580,-0.826728449454215,peer,MaciekK,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,117580,-8.236553629624217,spot_peer,MaciekK,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,119188,54.872783882146834,spot_peer,exmateriae,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,119188,28.908466815563884,peer,exmateriae,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,119188,0.2882743439870874,relative_legacy,exmateriae,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,119188,26.303440583379377,spot_baseline,exmateriae,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,119188,13.08943067088955,baseline,exmateriae,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,120160,-0.0494247815344133,relative_legacy,OpenSystem,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,120160,-100.0,spot_baseline,OpenSystem,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,120160,-4.513452538033924,peer,OpenSystem,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,120160,-11.255251505072154,baseline,OpenSystem,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,120160,-42.4015202682865,spot_peer,OpenSystem,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,131306,-1.3988827424838075,baseline,draaglom,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,131306,0.0355698502079668,relative_legacy,draaglom,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,131306,-15.200309344505014,spot_baseline,draaglom,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,131306,2.270794683577509,peer,draaglom,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,131306,22.90810916528228,spot_peer,draaglom,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,131523,-7.641308583239991,baseline,SpottedBear,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,131523,9.8211052034619,spot_peer,SpottedBear,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,131523,-32.19280948873623,spot_baseline,SpottedBear,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,131523,9.453950874203043,peer,SpottedBear,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,131523,0.0417651995949509,relative_legacy,SpottedBear,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,139161,-22.143569513402635,spot_peer,Zaldath,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,139161,-0.5090849977495768,relative_legacy,Zaldath,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,139161,-93.26198302469824,baseline,Zaldath,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,139161,-35.76318999235777,peer,Zaldath,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,139161,-73.69655941662059,spot_baseline,Zaldath,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,148850,-46.59383975788817,spot_baseline,pasta,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,148850,-35.66887618445768,baseline,pasta,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,148850,-0.1391290166576622,relative_legacy,pasta,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,148850,-4.907359027187137,peer,pasta,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35386,"Will Doge's Agency Efficiency Leaderboard have the Department of State ranked highest in Least Total Savings on April 1, 2025?",2025-03-08 05:18:23.656386+00,148850,-1.270043161228207,spot_peer,pasta,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35952 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,101465,-0.1839243654105053,peer,Jgalt,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,101465,-0.1755328871667606,spot_peer,Jgalt,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,101465,5.098560795119976e-05,relative_legacy,Jgalt,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,101465,95.90282189436938,spot_baseline,Jgalt,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,101465,51.66329643541738,baseline,Jgalt,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,103777,60.727662848147546,baseline,datscilly,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,103777,0.7352190244086327,spot_peer,datscilly,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,103777,0.4994136809171374,peer,datscilly,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,103777,97.08536543404836,spot_baseline,datscilly,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,103777,0.0082408530489046,relative_legacy,datscilly,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,103907,-1.5558128870064527,spot_peer,darkives,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,103907,-1.60710522105494,peer,darkives,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,103907,86.83844309205806,baseline,darkives,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,103907,-0.0183206952919844,relative_legacy,darkives,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,103907,94.11063109464314,spot_baseline,darkives,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,117580,-0.0478530088945435,peer,MaciekK,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,117580,-0.4043921052790496,spot_peer,MaciekK,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,117580,12.615842715978296,baseline,MaciekK,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,117580,0.0,relative_legacy,MaciekK,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,117580,95.60566524124027,spot_baseline,MaciekK,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,119188,0.008149434980262,relative_legacy,exmateriae,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,119188,97.08536543404836,spot_baseline,exmateriae,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,119188,0.5648029973309203,peer,exmateriae,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,119188,67.13227328380559,baseline,exmateriae,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,119188,0.7352190244086327,spot_peer,exmateriae,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,120160,95.60566524124027,spot_baseline,OpenSystem,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,120160,-0.2465580388806355,peer,OpenSystem,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,120160,-0.0020789743074821,relative_legacy,OpenSystem,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,120160,73.47477185690379,baseline,OpenSystem,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,120160,-0.4043921052790496,spot_peer,OpenSystem,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,131306,95.60566524124027,spot_baseline,draaglom,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,131306,53.2624348093435,baseline,draaglom,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,131306,0.0,relative_legacy,draaglom,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,131306,-0.4043921052790496,spot_peer,draaglom,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,131306,-0.1920688759017617,peer,draaglom,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,131523,1.8632602981884157,spot_peer,SpottedBear,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,131523,62.25893180259703,baseline,SpottedBear,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,131523,1.227052873122371,peer,SpottedBear,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,131523,0.0174025270932048,relative_legacy,SpottedBear,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,131523,98.5500430304885,spot_baseline,SpottedBear,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,139161,0.0205391113397298,relative_legacy,Zaldath,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,139161,98.5500430304885,spot_baseline,Zaldath,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,139161,1.8632602981884157,spot_peer,Zaldath,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,139161,1.6068029100412595,peer,Zaldath,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,139161,75.71534423441997,baseline,Zaldath,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,148850,56.07344744089924,baseline,pasta,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,148850,93.20611713434243,spot_baseline,pasta,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,148850,-2.252436555183717,spot_peer,pasta,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,148850,-1.6205629512693411,peer,pasta,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 +35387,"Will the Project 2025 Tracker spreadsheet mark the objective of eliminating the Low-Income Heat and Energy Assistance Program as complete on April 1, 2025?",2025-03-08 05:18:23.67521+00,148850,-0.018816931184799,relative_legacy,pasta,no,2025-03-14 23:00:00+00,2025-03-14 23:00:00+00,1.0,35953 diff --git a/test_functions.py b/test_functions.py new file mode 100644 index 0000000..3c92535 --- /dev/null +++ b/test_functions.py @@ -0,0 +1,13 @@ +import pytest +from functions import * + +def test_get_median_forecast_multiple_choice(): + test_row = {'options': ['0-4', '5-9', '>9'], 'resolution': '0-4'} + test_forecasts = [ + [0.1, 0.2, 0.7], + [0.3, 0.4, 0.3], + [0.2, 0.5, 0.3] + ] + + result = get_median_forecast_multiple_choice(test_row, test_forecasts) + assert result == 0.2, "Expected median forecast for '0-4' to be 0.2" \ No newline at end of file diff --git a/weighted_bot_ONLY_peer_leaderboard_t_test.csv b/weighted_bot_ONLY_peer_leaderboard_t_test.csv index 325505f..76b7626 100644 --- a/weighted_bot_ONLY_peer_leaderboard_t_test.csv +++ b/weighted_bot_ONLY_peer_leaderboard_t_test.csv @@ -1,45 +1,45 @@ ,W_score,W_count,W_ave,W_stdev,std_err,t_stat,t_crit,upper_bound,lower_bound,cdf,p_value -pgodzinai,3137.6,237.6,13.2,38.359984601189836,2.4885793431311174,5.306315083373039,1.9692191378364812,18.1,8.3,0.9999998714663425,0.000000 -MWG,1877.8,212.9,8.8,41.23134626994223,2.82554053456563,3.1210448475521444,1.9703698975481778,14.4,3.3,0.9989733914540355,0.002053 -histerio,1863.7,237.6,7.8,34.28236665173305,2.224046499760683,3.5268212700008625,1.9692191378364812,12.2,3.5,0.9997474933096923,0.000505 -GreeneiBot2,1798.8,237.6,7.6,33.0942851904035,2.1469704786579515,3.526093354782934,1.9692191378364812,11.8,3.3,0.9997468332830661,0.000506 -manticAI,1672.5,222.9,7.5,37.668546560109114,2.522915051777941,2.9738197658722445,1.9698482579953611,12.5,2.5,0.9983669245971556,0.003266 -annabot,1599.2,201.6,7.9,23.040451908293015,1.6227116409428477,4.888392792343571,1.9709830838321227,11.1,4.7,0.9999989608268982,0.000002 -mf-bot-5,1225.0,198.8,6.2,47.04764726207501,3.3371733722108923,1.846836998282594,1.9710994543434914,12.7,-0.4,0.9668675232615837,0.066265 -mf-bot-4,1104.1,237.6,4.6,57.39523567711319,3.723479020786043,1.2479314484372825,1.9692191378364812,12.0,-2.7,0.8933551200968728,0.213290 -gnosis-ai,933.3,222.9,4.2,64.97392318789932,4.351739149856387,0.9620846323597119,1.9698482579953611,12.8,-4.4,0.8314728998769638,0.337054 -Cassie,804.1,224.6,3.6,36.25273318278739,2.4189781727624373,1.4799874128257728,1.9697093327422066,8.3,-1.2,0.9298579289644523,0.140284 -VeritasAI,669.4,188.7,3.5,53.37269256720306,3.8848987159291704,0.9129605693284372,1.971643657898352,11.2,-4.1,0.8187829275628091,0.362434 -Jay_Bailey_Bot,571.0,235.1,2.4,46.330846969105465,3.0218041370572815,0.8038638871847904,1.9693214926028046,8.4,-3.5,0.7888544076163837,0.422291 -tombot61,560.1,82.5,6.8,39.408408997117064,4.339389405693697,1.5651068319498316,1.9871311887976666,15.4,-1.8,0.9392830634371054,0.121434 -acm_bot,372.5,232.6,1.6,36.52318079803188,2.3947486878847544,0.6687291880792201,1.9694017811828397,6.3,-3.1,0.7478328887618897,0.504334 -RyansAGI,361.6,237.6,1.5,49.48260853574092,3.2101524212412955,0.4740191096371914,1.9692191378364812,7.8,-4.8,0.682038294681254,0.635923 -karamazov,331.3,90.0,3.7,41.25203649994061,4.348274847670778,0.846586241225595,1.985371627252785,12.3,-5.0,0.8002518294446429,0.399496 -mmBot,318.8,231.1,1.4,39.49182517726672,2.597945325631134,0.5310116404794163,1.9694703071825523,6.5,-3.7,0.7020385311145161,0.595923 -mf-bot-1,284.1,237.6,1.2,46.348338639756406,3.0068186764539515,0.39769388432567526,1.9692191378364812,7.1,-4.7,0.6543927939774399,0.691214 -tombot37,278.2,69.0,4.0,37.42118748044682,4.50580889466074,0.8951423146310195,1.9927082354298469,13.0,-4.9,0.8130650603902814,0.373870 -HunchexBot,208.9,17.5,11.9,39.96937746637043,9.557969027106406,1.250042056108208,2.087348585858929,31.9,-8.0,0.8856315277819337,0.228737 -Unwrapped80T,202.4,195.6,1.0,48.234676413977944,3.4490687534550335,0.29998658675916307,1.971266715327407,7.8,-5.8,0.6177461870498651,0.764508 -twsummerbot,172.6,237.6,0.7,50.980092732516916,3.307300745921448,0.21960432885419437,1.9692191378364812,7.2,-5.8,0.5868156700452799,0.826369 -silicoqr,87.1,102.6,0.8,38.12639328870517,3.7646785647965957,0.2257022457681976,1.981484188591471,8.3,-6.6,0.5890567164520111,0.821887 -hlb-bot,27.2,1.0,27.2,,,,,,,,NA -lookahead,-68.5,16.7,-4.1,50.0829923181023,12.27244201147957,-0.3349359375521474,2.1017967806936326,21.7,-29.9,0.3710597500725209,0.742120 -Grizeu_Bot,-158.1,128.1,-1.2,49.019884805576496,4.331076520626673,-0.2850194491356546,1.9768277842147772,7.3,-9.8,0.38804657213250127,0.776093 -lostandfound,-273.0,38.8,-7.0,45.82198682901646,7.351639376681971,-0.9559601342368462,2.0176411286713867,7.8,-21.9,0.17257938534909795,0.345159 -estr.ai,-347.8,218.5,-1.6,60.602770615703875,4.09977668041333,-0.38823944478305605,1.9701525824689337,6.5,-9.7,0.3491092840187925,0.698219 -HSeldon,-355.4,233.6,-1.5,40.42321035402411,2.6447864099803673,-0.5752334719801073,1.9693646835969814,3.7,-6.7,0.2828447112966581,0.565689 -ProfessorSP,-357.6,31.5,-11.4,92.59714395981904,16.49841846149652,-0.6880717116158085,2.023878672523592,22.0,-44.7,0.24830391835842436,0.496608 -bestworldbot,-373.5,223.1,-1.7,48.34115467589167,3.2364080972571965,-0.5172889979994709,1.9698056152024355,4.7,-8.0,0.30273460576175626,0.605469 -Bot_Pepa,-381.9,180.1,-2.1,50.491590482934214,3.7621176997340946,-0.5635854790108056,1.9720420828866243,5.3,-9.5,0.2868705673340982,0.573741 -jkraybill_bot,-410.5,144.9,-2.8,63.4425731517924,5.270276038637937,-0.5375482492095675,1.9750706267168538,7.6,-13.2,0.295859614892483,0.591719 -predictomatic,-459.9,32.9,-14.0,64.28754386913282,11.209178131619101,-1.2473786020569473,2.033451683426322,8.8,-36.8,0.11067041415013812,0.221341 -Panshul42,-464.7,82.6,-5.6,72.34306065598183,7.959449433865781,-0.7067427089608047,1.9865370693167157,10.2,-21.4,0.24086972922938488,0.481739 -SaraBase,-797.7,227.6,-3.5,64.31040294353194,4.263028401169082,-0.8221942728972708,1.9696393871703566,4.9,-11.9,0.2059153647013683,0.411831 -000_bot,-843.9,221.5,-3.8,53.305805204474844,3.581633746958557,-1.0636482504186182,1.9699005849789752,3.2,-10.9,0.14432573934870632,0.288651 -archipelago,-1035.5,225.6,-4.6,52.094223510526554,3.4682956379345895,-1.3234165547743593,1.969669808410215,2.2,-11.4,0.09352121595440327,0.187042 -SeidrBot,-1355.0,202.0,-6.7,47.325800368045286,3.329483937809542,-2.014309842923485,1.9710263744015368,-0.1,-13.3,0.022654757656738824,0.045310 -mf-bot-3,-1534.2,232.1,-6.6,69.05639691735007,4.532758098423656,-1.4582214476934323,1.969454044819282,2.3,-15.5,0.07306857726604762,0.146137 -SynapseSeer,-1634.4,233.6,-7.0,67.72464785576302,4.43104906069879,-1.5789786286187666,1.9693646835969814,1.7,-15.7,0.05784993814186344,0.115700 -InstitutPelFutur,-1785.8,237.6,-7.5,55.1960335650928,3.580807197420021,-2.098943434662997,1.9692191378364812,-0.5,-14.6,0.018441030303529685,0.036882 -RonanMcGovern,-2213.3,155.2,-14.3,69.61148352927916,5.58688884381242,-2.5518151488141045,1.9745556871051047,-3.2,-25.3,0.005844344579605906,0.011689 -biak_bot,-5610.6,42.2,-133.0,254.61815180629694,39.19756065057342,-3.3922772758219812,2.0174852220117474,-53.9,-212.0,0.0007707383563950348,0.001541 +metac-o1-preview,3377.5,276.6,12.2,43.35462230148939,2.606715405377078,4.684056737448547,1.968081814554987,17.3,7.1,0.9999977892490935,0.000004 +metac-o1,2366.9,283.2,8.4,37.035454097333684,2.200674011474601,3.797443762157986,1.9678942288394268,12.7,4.0,0.9999104924455037,0.000179 +pgodzinai,2161.6,248.0,8.7,60.97715555771237,3.871897128233271,2.2509817945617536,1.9690997298923882,16.3,1.1,0.9873667471633338,0.025267 +manticAI,1893.9,245.2,7.7,57.25653313057396,3.656419019953547,2.112364043823274,1.969248542652506,14.9,0.5,0.9821646352089871,0.035671 +GreeneiBot2,1879.0,204.8,9.2,58.9151057871093,4.1169186819859656,2.228650502961822,1.9710698551616443,17.3,1.1,0.986535208241347,0.026930 +acm_bot,1422.6,263.5,5.4,46.05196111549711,2.836936263711763,1.9029945257979186,1.9684990368894406,11.0,-0.2,0.9709323884887449,0.058135 +metac-Gemini-Exp-1206,1422.2,269.6,5.3,46.36041547177931,2.8233925679482343,1.8683200055538096,1.9682781819889412,10.8,-0.3,0.9685969931901074,0.062806 +metac-claude-3-5-sonnet-latest,1015.0,278.2,3.6,38.69066640237966,2.3195943213446553,1.5728291564816073,1.9680284598969247,8.2,-0.9,0.9415505239043951,0.116899 +twsummerbot,892.4,181.9,4.9,46.03760631025173,3.4133784933910047,1.4371828437610805,1.9722801879158416,11.6,-1.8,0.923803332263041,0.152393 +cookics_bot_TEST,782.8,135.2,5.8,44.48338482533423,3.8256873976434593,1.5134830118755198,1.9770659607934267,13.4,-1.8,0.9337457158076627,0.132509 +SynapseSeer,759.2,125.9,6.0,36.85440230365653,3.2845547633318826,1.8359963413644709,1.9780177783987534,12.5,-0.5,0.9656317468926798,0.068737 +CumulativeBot,750.2,94.2,8.0,53.719321387182866,5.533371620322301,1.4384227408049972,1.9846446895152507,18.9,-3.0,0.9231689995417699,0.153662 +metac-perplexity,734.7,264.3,2.8,62.518732274252,3.8454321257670965,0.7228462253019695,1.9685148373936976,10.3,-4.8,0.7647920510389995,0.470416 +metac-exa,470.9,275.2,1.7,63.38280444669259,3.8205989842983494,0.4478599398298826,1.9681111912388756,9.2,-5.8,0.6726960546336258,0.654608 +MWG,307.0,84.8,3.6,36.6252501807067,3.976544679654517,0.9101477753110279,1.987508353566517,11.5,-4.3,0.8173229386375491,0.365354 +jkraybill_bot,219.6,162.4,1.4,71.12529221576798,5.5817601187391634,0.24232123347298368,1.9740758524924067,12.4,-9.7,0.5955805198867354,0.808839 +metac-deepseek-r1,172.5,225.8,0.8,38.0431452483966,2.5318249833740962,0.3017230896257882,1.9700645882216863,5.8,-4.2,0.6184289375422699,0.763142 +pianobot,101.0,14.8,6.8,41.27615494222523,10.711147680523258,0.6349321054235654,2.1450947126002333,29.8,-16.2,0.7320891967624292,0.535822 +metac-grok-2-1212,40.0,281.2,0.1,49.508070078167286,2.952248394236147,0.04816426739476925,1.967947383995502,6.0,-5.7,0.5191901814794234,0.961620 +andrewsiah,2.6,25.1,0.1,35.80509173037023,7.1467391327710805,0.014679458541325375,2.0603406998894913,14.8,-14.6,0.5057956215530941,0.988409 +cobyj-bot,-12.1,31.5,-0.4,48.04099133926301,8.559663338690303,-0.0450455477189351,2.039849788085489,17.1,-17.8,0.4821823213720903,0.964365 +InstitutPelFutur,-15.9,264.9,-0.1,66.71848628876916,4.099102812178176,-0.01461330636444259,1.9684274359744203,8.0,-8.1,0.4941758620621537,0.988352 +mmBot,-140.7,279.9,-0.5,59.205255703925204,3.538696336176816,-0.14202444534416514,1.96797586453365,6.5,-7.5,0.4435816142526965,0.887163 +CatrachoCaster,-168.0,61.9,-2.7,30.97496071793775,3.938272895067054,-0.6896097889841754,1.9976135866748885,5.2,-10.6,0.24653037622306556,0.493061 +KevinTestBot,-215.6,81.1,-2.7,69.22723639603063,7.687171451206582,-0.34581559779995547,1.988209363015157,12.6,-17.9,0.36519396272969656,0.730388 +bean_bot,-257.6,63.1,-4.1,61.6661695657119,7.763048387582153,-0.5258061039152064,1.9963467352534765,11.4,-19.6,0.3004478137075365,0.600896 +annabot,-344.9,54.5,-6.3,64.23401965292118,8.704148297816149,-0.7275945270977109,1.9998116536785935,11.1,-23.7,0.23501825972362717,0.470037 +4Shadower,-380.3,101.5,-3.7,51.35533398275651,5.097444862179507,-0.7351196373877295,1.9825882125348349,6.4,-13.9,0.23198931904271175,0.463979 +jonahsingerbot,-391.9,60.1,-6.5,49.32011176716939,6.361899674336599,-1.024889401302918,1.998092345158668,6.2,-19.2,0.15479607814383242,0.309592 +krm-bot,-415.4,94.5,-4.4,50.516635561666824,5.196590730652889,-0.8459483236491884,1.984637045061336,5.9,-14.7,0.19987068180507045,0.399741 +ProfessorSP,-439.2,110.0,-4.0,57.01352495250314,5.434791272817905,-0.7343426275375999,1.9813454363479066,6.8,-14.8,0.23215801399364383,0.464316 +RPM_bot,-692.9,15.8,-44.0,107.70060700960248,27.13800211410552,-1.6210145990010922,2.1136084836949443,13.4,-101.4,0.06309526775526143,0.126191 +wunderplumb,-805.9,148.4,-5.4,49.557933362115165,4.067458086500939,-1.334609725805383,1.975511948593893,2.6,-13.5,0.09203066750919303,0.184061 +metac-claude-3-5-sonnet-20240620,-919.3,282.2,-3.3,44.96756248636081,2.6767354648516224,-1.2168764554854745,1.9679207180573135,2.0,-8.5,0.11233573592945705,0.224671 +swingswish,-953.6,57.1,-16.7,76.21561137736909,10.086160705977163,-1.655713537742976,2.000012770622207,3.5,-36.9,0.05168191569212784,0.103364 +minefrac1,-994.4,136.2,-7.3,41.80580264033843,3.58284271390999,-2.0385585304362173,1.9767564051901807,-0.2,-14.4,0.021722107659328724,0.043444 +metac-Llama-3.1,-1038.5,280.5,-3.7,39.51962838119493,2.3595595203343622,-1.5688864571832792,1.967972580842115,0.9,-8.3,0.05890285126204886,0.117806 +VeritasAI,-1135.6,251.9,-4.5,39.7338851518679,2.5033968898000465,-1.8007182241480717,1.9688081793030823,0.4,-9.4,0.03647403396774645,0.072948 +NextWorldLab,-1175.5,256.3,-4.6,51.71396740992991,3.2302308039401346,-1.4198911136045094,1.9687435707739396,1.8,-10.9,0.07842966521416915,0.156859 +metac-gpt-4o,-1470.3,281.2,-5.2,45.3964953367519,2.707068367849329,-1.9313136676903948,1.967947383995502,0.1,-10.6,0.02722633563716318,0.054453 +Bot_Pepa,-1534.1,124.4,-12.3,46.555160456953864,4.174049909390514,-2.9545327340426883,1.9788328231232495,-4.1,-20.6,0.001875661050094659,0.003751 +laylaps,-1857.2,257.0,-7.2,66.47273544569883,4.1464553131494135,-1.7428301480904338,1.9688358127883439,0.9,-15.4,0.04128201032488934,0.082564 +Grizeu_Bot,-2317.6,140.9,-16.5,55.899881508116195,4.709958117736531,-3.4932796043978245,1.976138146560759,-7.1,-25.8,0.0003195923806891,0.000639 +ajf-bot,-3095.4,193.9,-16.0,86.70868923801713,6.226926170895022,-2.5636608224771433,1.9717423781317933,-3.7,-28.2,0.005559530097119194,0.011119 diff --git a/weighted_bot_peer_leaderboard_t_test.csv b/weighted_bot_peer_leaderboard_t_test.csv index 4712d97..3a4a494 100644 --- a/weighted_bot_peer_leaderboard_t_test.csv +++ b/weighted_bot_peer_leaderboard_t_test.csv @@ -1,45 +1,46 @@ Rank,Bot,W_score,W_count,W_ave,W_stdev,std_err,t_stat,t_crit,upper_bound,lower_bound,cdf,p_value -1,pgodzinai,4282.7,333.9,12.8,38.761006072725124,2.1212265290462273,6.046680683149045,1.9664464063153992,17.0,8.7,0.9999999980154148,0.000000 -2,MWG,2737.3,298.2,9.2,38.86195372780313,2.250332962615418,4.0786640093899615,1.9672663234382475,13.6,4.8,0.999970888063076,0.000058 -3,annabot,1954.8,273.5,7.1,23.157815615730858,1.400185358347544,5.1038556392859515,1.9679557622010109,9.9,4.4,0.9999996874495449,0.000001 -4,histerio,2354.2,333.9,7.1,32.45405590672418,1.7760737230433998,3.969716581980275,1.9664464063153992,10.5,3.6,0.9999559035015021,0.000088 -5,GreeneiBot2,2322.2,333.9,7.0,32.67133187761889,1.787964321360724,3.8897911518205674,1.9664464063153992,10.5,3.4,0.9999394211708003,0.000121 -6,manticAI,2214.9,313.2,7.1,36.67997263837897,2.0725551122578505,3.4119847905509673,1.966866196194745,11.1,3.0,0.999635068085889,0.000730 -7,mf-bot-4,2197.8,333.9,6.6,52.13845403867416,2.8533178855777157,2.3068332272284184,1.9664464063153992,12.2,1.0,0.9891612245124811,0.021678 -8,Cassie,1403.5,311.9,4.5,35.58245549393408,2.01478385167411,2.2333705384653517,1.9668560337084837,8.5,0.5,0.9868821197850475,0.026236 -9,mf-bot-5,1009.4,282.5,3.6,46.56263729733776,2.7702000146959196,1.2897657203692225,1.967617708680844,9.0,-1.9,0.9009047337664,0.198191 -10,tombot37,483.7,84.0,5.8,36.6134398638303,3.9954563990028595,1.4417587135087149,1.9871172515132411,13.7,-2.2,0.9234328964198493,0.153134 -11,VeritasAI,965.1,263.0,3.7,50.440032673845586,3.110016960137866,1.1797039806703853,1.9681851494764189,9.8,-2.5,0.8804060700454458,0.239188 -12,mmBot,444.5,324.4,1.4,38.950263596742175,2.1626644811020577,0.6335928538065095,1.9666234558407725,5.6,-2.9,0.7366027811156401,0.526794 -13,twsummerbot,765.1,332.9,2.3,47.8320944443167,2.6215776117382648,0.8767244480687217,1.9664748124966254,7.5,-2.9,0.8093647781038209,0.381270 -14,Jay_Bailey_Bot,614.9,323.4,1.9,44.26259708785631,2.4611744740653605,0.772479661448181,1.9666795960677763,6.7,-2.9,0.7798018817102033,0.440396 -15,RyansAGI,697.1,333.9,2.1,46.636882022082226,2.552240031944163,0.8180302716770433,1.9664464063153992,7.1,-2.9,0.7930374865036736,0.413925 -16,acm_bot,264.4,322.4,0.8,36.41767729922387,2.02821949601686,0.4043622298492815,1.9666832326314554,4.8,-3.2,0.6568923384984875,0.686215 -17,mf-bot-1,428.1,333.9,1.3,45.05631609143375,2.4657423188376555,0.5199375235066349,1.9664464063153992,6.1,-3.6,0.6982736578858942,0.603453 -18,Unwrapped80T,499.2,278.3,1.8,47.52264196722649,2.8484616380808676,0.6296697873420641,1.9677210174581312,7.4,-3.8,0.7352854881093045,0.529429 -19,gnosis-ai,838.0,311.2,2.7,65.72744094446,3.725759467142463,0.7227460970395234,1.966906150479257,10.0,-4.6,0.7648097941365654,0.470380 -20,estr.ai,398.7,294.9,1.4,56.097915410349835,3.2664536445363432,0.41385160201623566,1.9673423140770512,7.8,-5.1,0.6603577072221005,0.679285 -21,karamazov,226.5,118.4,1.9,38.86566421426283,3.571566709589803,0.5356277798189139,1.9790635062656532,9.0,-5.2,0.7033855274864909,0.593229 -22,HunchexBot,238.5,22.5,10.6,37.795064210713605,7.970143324845119,1.3309480909300402,2.060972515979562,27.0,-5.8,0.9014213689691682,0.197157 -23,silicoqr,168.8,127.6,1.3,41.96881345178904,3.715061613644961,0.3559644656489305,1.9774473486858954,8.7,-6.0,0.6387702212713132,0.722460 -24,tombot61,136.6,111.5,1.2,39.391796834912405,3.7304616983493784,0.3283401545823477,1.9797864675404215,8.6,-6.2,0.6283620760334967,0.743276 -25,Bot_Pepa,-220.6,256.4,-0.9,48.4952343142688,3.028318115184061,-0.28402419900420217,1.968443862557972,5.1,-6.8,0.3883109597840443,0.776622 -26,HSeldon,-813.6,326.8,-2.5,40.498377081108,2.240102977017579,-1.1112262009425402,1.9665836665085525,1.9,-6.9,0.1336451317201455,0.267290 -27,SaraBase,-252.4,317.4,-0.8,59.80575448483624,3.3566835054860795,-0.23690623593681315,1.9667897330903015,5.8,-7.4,0.4064414103870476,0.812883 -28,archipelago,-696.2,315.5,-2.2,50.24331676494516,2.8284575830079066,-0.7800586175373259,1.9668268286327446,3.4,-7.8,0.2179714783948023,0.435943 -29,bestworldbot,-870.6,314.9,-2.8,46.11980808118129,2.5990875484174447,-1.0638127359653093,1.9668219596079533,2.3,-7.9,0.14411563990831763,0.288231 -30,jkraybill_bot,-232.6,196.1,-1.2,59.201184920867625,4.2280582368778585,-0.28056588951694633,1.9710811007233888,7.1,-9.5,0.3896703679621488,0.779341 -31,Grizeu_Bot,-723.7,185.3,-3.9,49.27792436986582,3.6199358088888363,-1.0788923819079375,1.9713233159546926,3.2,-11.0,0.14102279914412716,0.282046 -32,SynapseSeer,-1619.9,329.9,-4.9,65.49396394097688,3.605872278351456,-1.3617629649773129,1.9665172721997812,2.2,-12.0,0.08710235914820501,0.174205 -33,000_bot,-1737.8,282.5,-6.2,54.43037707489677,3.238295783547784,-1.8994677974265637,1.967678978933446,0.2,-12.5,0.0292624905620591,0.058525 -34,Panshul42,-0.5,109.1,-0.0,66.55800755886946,6.371087690522097,-0.0007342955957735238,1.9804380496754594,12.6,-12.6,0.4997077349192452,0.999415 -35,SeidrBot,-2089.8,248.6,-8.4,46.56433265143815,2.953529722992223,-2.846705020510697,1.9688791301192223,-2.6,-14.2,0.002393934368380317,0.004788 -36,InstitutPelFutur,-3395.4,333.9,-10.2,53.907683250763576,2.9501403450775077,-3.446975509659243,1.9664464063153992,-4.4,-16.0,0.0003197987618707872,0.000640 -37,mf-bot-3,-3190.6,323.1,-9.9,70.54893375381997,3.925035973447306,-2.5161492721405927,1.96667609028825,-2.2,-17.6,0.006175144783730758,0.012350 -38,RonanMcGovern,-2842.2,211.7,-13.4,67.84559366317815,4.663126041334315,-2.879322415275518,1.9703523783234578,-4.2,-22.6,0.002198265574918202,0.004397 -39,lostandfound,-557.2,51.4,-10.8,49.7486334332074,6.9405784734087215,-1.5624775050195996,2.004033985386941,3.1,-24.8,0.06221813809670042,0.124436 -40,ProfessorSP,-388.0,52.9,-7.3,82.24332541551,11.31219654361159,-0.6489745337439169,1.9980744801787882,15.3,-29.9,0.2596093822604585,0.519219 -41,lookahead,-218.5,23.7,-9.2,50.488684324407146,10.3810613442474,-0.8900030520702213,2.060337812229023,12.1,-30.6,0.19140933250010983,0.382819 -42,predictomatic,-620.2,39.9,-15.5,70.30905795084259,11.131708927559753,-1.3965853232304593,2.0203787728814953,6.9,-38.0,0.08522886917031613,0.170458 -43,biak_bot,-7203.3,51.8,-139.1,261.08526750375063,36.28289275291413,-3.8341685878085348,2.0059262868663104,-66.3,-211.9,0.00017449330489777997,0.000349 -44,hlb-bot,27.2,1.0,27.2,,,,,,,,NA +1,metac-o1,3631.1,375.3,9.7,35.07113994034677,1.810293651701595,5.344293282018146,1.9659854419815268,13.2,6.1,0.9999999209532834,0.000000 +2,metac-o1-preview,3121.4,368.7,8.5,45.96158935012486,2.393573073440978,3.5368203175370088,1.9660930016140932,13.2,3.8,0.9997716159826102,0.000457 +3,metac-Gemini-Exp-1206,1880.5,347.1,5.4,44.89584433694223,2.409718572956124,2.2481326310046623,1.9664575714033132,10.2,0.7,0.9874016823777019,0.025197 +4,SynapseSeer,966.5,152.0,6.4,35.69921471161225,2.8951125412113883,2.1955682118483764,1.9748788842652227,12.1,0.6,0.9851757509559801,0.029648 +5,manticAI,2055.2,315.7,6.5,55.69006256195583,3.1344975136537103,2.0771544383001124,1.9671867781986023,12.7,0.3,0.9807008663474505,0.038598 +6,twsummerbot,1450.0,241.3,6.0,45.091139918037825,2.9027093692104495,2.0701525638172056,1.9693131952292797,11.7,0.3,0.9802467197510176,0.039507 +7,acm_bot,1738.4,344.8,5.0,45.846332183685696,2.469142533944133,2.0421540958887245,1.966520515900574,9.9,0.2,0.9790505092410302,0.041899 +8,cookics_bot_TEST,1143.8,162.6,7.0,46.796453933947525,3.6698868511939513,1.9168287987060992,1.974137546345108,14.3,-0.2,0.9714878504170831,0.057024 +9,CumulativeBot,991.4,104.5,9.5,52.18032465845847,5.104446210361133,1.8585837803497647,1.9821359826905764,19.6,-0.6,0.9670361883802218,0.065928 +10,metac-claude-3-5-sonnet-latest,951.3,370.3,2.6,38.26306555715613,1.988342419831904,1.2919544880180496,1.966062599368744,6.5,-1.3,0.9014096170572055,0.197181 +11,GreeneiBot2,1494.7,264.1,5.7,59.728354485253575,3.675051787269948,1.539810539883174,1.9685962808273842,12.9,-1.6,0.9375959149496895,0.124808 +12,metac-perplexity,1558.4,354.4,4.4,59.58837847152926,3.1652094732771676,1.389181319604283,1.9663705248092669,10.6,-1.8,0.9171738658225362,0.165652 +13,metac-deepseek-r1,516.8,277.9,1.9,37.353209862667065,2.2407803261049724,0.8299752665727909,1.968164543586558,6.3,-2.6,0.7963661024103902,0.407268 +14,pgodzinai,1106.7,325.4,3.4,66.68615909814488,3.6966946914459644,0.9199538936245306,1.966948755554642,10.7,-3.9,0.8208598109837832,0.358280 +15,metac-exa,599.9,365.3,1.6,63.45938884307718,3.3201611290993176,0.4946106204656042,1.9661417524889626,8.2,-4.9,0.6894134359021193,0.621173 +16,MWG,253.8,113.4,2.2,40.6740836146038,3.819036516963852,0.5859361127584735,1.980468444487731,9.8,-5.3,0.7204535666937473,0.559093 +17,jkraybill_bot,625.4,207.4,3.0,68.56078043007824,4.760476631093725,0.6333891469887084,1.971015105812596,12.4,-6.4,0.7364096544689444,0.527181 +18,metac-claude-3-5-sonnet-20240620,-759.5,373.7,-2.0,44.09047989657323,2.280718344735673,-0.8910106304635091,1.966014041882214,2.5,-6.5,0.1867491341984237,0.373498 +19,metac-grok-2-1212,-550.1,373.3,-1.5,50.16424647834744,2.5962927731650476,-0.5675530954889173,1.9660160702845784,3.6,-6.6,0.28534026119428635,0.570681 +20,metac-Llama-3.1,-980.9,370.6,-2.6,41.81006268141468,2.1717828174280758,-1.218610898319435,1.9660615821289091,1.6,-6.9,0.11188455793053588,0.223769 +21,mmBot,-587.4,373.0,-1.6,58.29843947604968,3.018497850389732,-0.5216708756094178,1.966017070921489,4.4,-7.5,0.3011049689725205,0.602210 +22,VeritasAI,-1602.2,330.0,-4.9,38.75477953667651,2.1333157548145603,-2.275709857848932,1.9667600091287811,-0.7,-9.1,0.011752939274056025,0.023506 +23,InstitutPelFutur,-877.8,356.0,-2.5,64.60347675336288,3.4238812448915326,-0.7201271664787879,1.966304970438565,4.3,-9.2,0.23596026965339056,0.471921 +24,NextWorldLab,-1377.9,337.6,-4.1,51.43338833750635,2.7994716876133756,-1.4581569483475763,1.9666638400138103,1.4,-9.6,0.07286491420501189,0.145730 +25,metac-gpt-4o,-2235.4,373.3,-6.0,45.40167032753942,2.3498016383419973,-2.5482091401606333,1.9660160702845784,-1.4,-10.6,0.005614316130691384,0.011229 +26,CatrachoCaster,-289.4,81.6,-3.5,31.9567248975111,3.5385363024140064,-1.0026077406143257,1.9883420906139133,3.5,-10.6,0.1595261050933818,0.319052 +27,laylaps,-1489.1,322.1,-4.6,63.980237617908,3.5649257290611756,-1.296854820253818,1.9670499912796977,2.4,-11.6,0.09780612737833659,0.195612 +28,ProfessorSP,-426.8,128.6,-3.3,55.165460018465296,4.863650383892175,-0.6821420462721199,1.9781225818816042,6.3,-12.9,0.24819252400851705,0.496385 +29,krm-bot,-354.7,104.0,-3.4,49.87549231610646,4.8906943955744975,-0.697334199017712,1.9823266757717093,6.3,-13.1,0.24358235670155776,0.487165 +30,wunderplumb,-986.1,174.0,-5.7,52.96589253283395,4.015333950555187,-1.411434330491267,1.973194639160061,2.3,-13.6,0.07995626231675941,0.159913 +31,andrewsiah,2.6,25.1,0.1,35.80509173037023,7.1467391327710805,0.014679458541325375,2.0603406998894913,14.8,-14.6,0.5057956215530941,0.988409 +32,annabot,-190.6,83.8,-2.3,59.11222842351583,6.458906496297345,-0.3522219321437092,1.986408298939689,10.6,-15.1,0.36278358981708136,0.725567 +33,Bot_Pepa,-1490.1,169.4,-8.8,44.2657022996105,3.400529700356728,-2.586005170288641,1.9737330817086274,-2.1,-15.5,0.005277574447617376,0.010555 +34,4Shadower,-646.3,115.5,-5.6,53.86786700463427,5.012319969565696,-1.116305172835946,1.9797847241867643,4.3,-15.5,0.13331434997490582,0.266629 +35,minefrac1,-1757.1,188.2,-9.3,44.125848650521384,3.216070634699586,-2.9021900144544017,1.9721063705128388,-3.0,-15.7,0.0020751225398914818,0.004150 +36,KevinTestBot,-220.4,89.5,-2.5,67.65087652534397,7.150919849138084,-0.34430996883070547,1.9855053165530145,11.7,-16.7,0.36571499492653226,0.731430 +37,jonahsingerbot,-333.4,64.8,-5.1,48.01554823246957,5.964779434706768,-0.8626001031954705,1.9952727727289694,6.8,-17.0,0.19579415466281708,0.391588 +38,bean_bot,-208.8,67.8,-3.1,59.955661743193524,7.281407785396357,-0.4229400308654621,1.993770511070629,11.4,-17.6,0.33684874551076105,0.673697 +39,Grizeu_Bot,-1882.6,193.2,-9.7,56.704237435621565,4.079441542131049,-2.3885207923263283,1.971773953331901,-1.7,-17.8,0.00894221517349433,0.017884 +40,cobyj-bot,-12.1,31.5,-0.4,48.04099133926301,8.559663338690303,-0.0450455477189351,2.039849788085489,17.1,-17.8,0.4821823213720903,0.964365 +41,X_bot,-16.1,7.0,-2.3,23.908632160019646,9.036613554733288,-0.2537741519210205,2.4469118511449692,19.8,-24.4,0.404071214836601,0.808142 +42,ajf-bot,-3208.3,229.2,-14.0,83.29556938536668,5.5025243167629405,-2.5444141294611526,1.9699279943898305,-3.2,-24.8,0.005803451053271857,0.011607 +43,pianobot,-12.7,19.6,-0.7,52.32348650929367,11.833774631108142,-0.05504185820702041,2.0938234056138607,24.1,-25.4,0.4783468092618335,0.956694 +44,swingswish,-777.0,64.8,-12.0,73.04789200363233,9.074447340732512,-1.3214360659969235,1.9952727727289694,6.1,-30.1,0.0955376683844497,0.191075 +45,RPM_bot,-815.6,23.8,-34.3,91.54540226624728,18.784720191619385,-1.8280998944636386,2.061508132079973,4.4,-73.1,0.04033943207060968,0.080679 diff --git a/weighted_t_test_h2h_bot_vs_pros.csv b/weighted_t_test_h2h_bot_vs_pros.csv index 2e418d7..96cf6b7 100644 --- a/weighted_t_test_h2h_bot_vs_pros.csv +++ b/weighted_t_test_h2h_bot_vs_pros.csv @@ -1,46 +1,47 @@ ,W_score,W_count,W_ave,W_stdev,std_err,t_stat,t_crit,upper_bound,lower_bound,cdf,p_value -hlb-bot,0.0,0.0,,,,,,,,,NA -HunchexBot,-51.1,5.0,-10.2,22.95828587690191,10.267257573525209,-0.9947549319374305,2.7764451051977987,18.3,-38.7,0.1880793575244831,0.376159 -tombot37,-113.2,15.0,-7.5,20.743353339623265,5.355910801923794,-1.4086313101528385,2.1447866879169273,3.9,-19.0,0.09038241156187499,0.180765 -Panshul42,-182.5,26.5,-6.9,38.54547199861183,7.483739433871984,-0.9193531098699441,2.0563840513039935,8.5,-22.3,0.1832583845988453,0.366517 -lookahead,-242.7,7.0,-34.7,50.96010713429752,19.261110037508523,-1.8002217069652526,2.4469118511449692,12.5,-81.8,0.06095749151209748,0.121915 -predictomatic,-247.5,7.0,-35.4,104.73322082261453,39.58543661477852,-0.8930602637565627,2.4469118511449692,61.5,-132.2,0.20310820414327604,0.406216 -ProfessorSP,-382.9,21.4,-17.9,83.38675708577725,18.04350316811099,-0.9934801720662649,2.0630684928539256,19.3,-55.2,0.16606935439997278,0.332139 -lostandfound,-511.9,12.5,-40.9,76.63744867259959,21.65184782487183,-1.8870319206984232,2.183280781905368,6.4,-88.1,0.04229136782988278,0.084583 -silicoqr,-533.1,25.1,-21.3,50.44476097375681,10.077550856690573,-2.1111701356910295,2.061388905215338,-0.5,-42.0,0.022668049326393987,0.045336 -jkraybill_bot,-590.5,51.1,-11.5,42.19044000856308,5.899370473333594,-1.956897501368665,2.003755950373,0.3,-23.4,0.027969243586114714,0.055938 -karamazov,-692.3,28.4,-24.4,33.47496772747763,6.279895984680829,-3.879965362726807,2.0427034030475753,-11.5,-37.2,0.0002977059078653656,0.000595 -estr.ai,-815.7,76.4,-10.7,46.9388488041571,5.368806807988577,-1.9875945844856364,1.9872636290843468,-0.0,-21.3,0.02524307256962946,0.050486 -pgodzinai,-855.3,96.3,-8.9,49.046936774279665,4.998142879660838,-1.776967649346785,1.9820078873037386,1.0,-18.8,0.03938216808534879,0.078764 -mf-bot-4,-904.4,96.3,-9.4,45.32991854509418,4.619359016332692,-2.033126310649291,1.9820078873037386,-0.2,-18.5,0.022410490801166978,0.044821 -MWG,-941.4,85.3,-11.0,36.218325463214846,3.9216158823413796,-2.8144740061182407,1.9849661431933208,-3.3,-18.8,0.0030400075433376873,0.006080 -tombot61,-1145.8,29.0,-39.5,50.79951963004298,9.428634575332286,-4.186247687777744,2.038530886089125,-20.3,-58.7,0.0001270645498891614,0.000254 -bot_median,-1167.1,96.3,-12.1,32.5912362584839,3.3212197571960975,-3.649384522343179,1.9820078873037386,-5.5,-18.7,0.0002145074621119244,0.000429 -Cassie,-1245.6,87.3,-14.3,48.646281021910774,5.20659104610895,-2.7404559121829934,1.9839713719304686,-3.9,-24.6,0.0037277823891719484,0.007456 -annabot,-1305.6,71.9,-18.1,32.80922286763869,3.8682698596404896,-4.691754363807307,1.9897961192063867,-10.5,-25.8,6.399677477591487e-06,0.000013 -Unwrapped80T,-1337.4,82.8,-16.2,53.27393663438922,5.8557886798916385,-2.7593219144694627,1.9851830385243678,-4.5,-27.8,0.003573005324513611,0.007146 -SaraBase,-1339.4,89.9,-14.9,44.624388348177035,4.70730824365322,-3.166225890305587,1.983605880499378,-5.6,-24.2,0.0010580854814977556,0.002116 -twsummerbot,-1358.2,95.3,-14.3,40.88371695944544,4.188070160547498,-3.4031946923613505,1.9823465251199015,-6.0,-22.6,0.0004895649720926248,0.000979 -manticAI,-1372.5,90.3,-15.2,47.18069944497932,4.965135223713917,-3.061430772068981,1.9832802921156645,-5.4,-25.0,0.0014549883668167503,0.002910 -VeritasAI,-1435.9,74.3,-19.3,48.818404414871445,5.663723375424989,-3.412352201139346,1.9883883281176744,-8.1,-30.6,0.0005258512891797247,0.001052 -Bot_Pepa,-1450.3,76.3,-19.0,51.52975847692141,5.898432989636708,-3.221546462252211,1.9891927360596062,-7.3,-30.7,0.0009419866043292561,0.001884 -GreeneiBot2,-1455.1,96.3,-15.1,44.4382915331541,4.528497496854913,-3.336791817041557,1.9820078873037386,-6.1,-24.1,0.0006047626135011468,0.001210 -histerio,-1488.1,96.3,-15.5,42.19300496680269,4.2996908923557635,-3.5940250834760907,1.9820078873037386,-6.9,-24.0,0.0002588620240539957,0.000518 -archipelago,-1533.1,89.9,-17.0,55.02456781210615,5.802097562997907,-2.93797350287689,1.983894935196505,-5.5,-28.6,0.002103464559657399,0.004207 -RyansAGI,-1637.0,96.3,-17.0,47.5838597479683,4.849047574176066,-3.5058275360759885,1.9820078873037386,-7.4,-26.6,0.00034788581886066534,0.000696 -Grizeu_Bot,-1685.4,57.2,-29.5,61.6832862420781,8.155092141751613,-3.612459983370702,1.9957992466176033,-13.2,-45.7,0.0003239724417632235,0.000648 -RonanMcGovern,-1725.9,56.4,-30.6,71.93969921145266,9.575970732458874,-3.1934675750699943,1.9969995298101273,-11.5,-49.7,0.0011592665473652895,0.002319 -biak_bot,-1757.5,9.6,-183.4,308.94249283255994,99.78927179570063,-1.8375059764712047,2.2477160410397614,40.9,-407.7,0.05045267706793578,0.100905 -Jay_Bailey_Bot,-1759.1,88.4,-19.9,47.97160758058884,5.1033422939256425,-3.9009094388586334,1.9842581535227026,-9.8,-30.0,9.39165276292308e-05,0.000188 -mmBot,-1814.8,93.3,-19.5,49.63869740700966,5.139132267577061,-3.785167609019037,1.982626750687047,-9.3,-29.6,0.0001364714743193672,0.000273 -mf-bot-1,-1822.3,96.3,-18.9,54.908199737813284,5.595436649133673,-3.382095108423235,1.9820078873037386,-7.8,-30.0,0.0005223851344775293,0.001045 -SeidrBot,-1867.8,46.5,-40.2,57.77865987306633,8.471825871938933,-4.740053999974339,2.0078692414796575,-23.1,-57.2,1.0654832416121907e-05,0.000021 -acm_bot,-1869.8,89.8,-20.8,43.20272505553384,4.559147184452824,-4.567190884714103,1.9837767177428638,-11.8,-29.9,7.924506399519075e-06,0.000016 -mf-bot-5,-1932.9,83.8,-23.1,61.702921864315215,6.741685228055513,-3.422713349199943,1.984924644041735,-9.7,-36.5,0.0004830581664946636,0.000966 -SynapseSeer,-1946.7,96.3,-20.2,65.58699647253064,6.683662650048016,-3.0245933041427153,1.9820078873037386,-7.0,-33.5,0.0015998700339682074,0.003200 -gnosis-ai,-1946.8,88.3,-22.0,73.90786680957255,7.865405842489003,-2.8032104312263937,1.983736652592433,-6.4,-37.7,0.003116734022158099,0.006233 -000_bot,-2250.0,61.0,-36.9,71.93091136024466,9.208775419160581,-4.0045971251964145,1.9955663853669554,-18.5,-55.3,8.680347828208778e-05,0.000174 -bestworldbot,-2312.1,91.8,-25.2,55.20044075134816,5.762335869309252,-4.372433560871541,1.9830283889374478,-13.8,-36.6,1.6338015657658145e-05,0.000033 -HSeldon,-2331.8,93.2,-25.0,55.76811136795249,5.775467356229962,-4.3301772327201045,1.9827805114164034,-13.6,-36.5,1.8906120611301404e-05,0.000038 -mf-bot-3,-3355.3,91.0,-36.9,79.02200160216711,8.285409298965623,-4.451941467351111,1.9833515900758631,-20.5,-53.3,1.217605242959324e-05,0.000024 -InstitutPelFutur,-3516.3,96.3,-36.5,65.49661596375798,6.674452397051765,-5.4709749496942965,1.9820078873037386,-23.3,-49.7,1.8011227369786402e-07,0.000000 +Grizeu_Bot,487.9,40.0,12.2,123.49852344088487,19.53904680990783,0.6251000199360248,2.0203143354405637,51.7,-27.3,0.7322246430842996,0.535551 +acm_bot,149.7,63.8,2.3,123.1672185402655,15.413976167212882,0.1521157135047702,1.9970180928411654,33.1,-28.4,0.5602085330688682,0.879583 +RPM_bot,145.0,6.0,24.2,31.46890650801069,12.847127284662498,1.8809957274619813,2.570581835636314,57.2,-8.9,0.9406376166785096,0.118725 +X_bot,20.7,5.0,4.1,19.75623679424021,8.835257690300725,0.4688971268422159,2.7764451051977987,28.7,-20.4,0.668221204908144,0.663558 +cobyj-bot,0.0,0.0,,,,,,,,,NA +andrewsiah,0.0,0.0,,,,,,,,,NA +jonahsingerbot,-61.3,4.7,-13.0,5.485368611367634,2.5302118657643557,-5.15484234051559,2.7848427377534137,-6.0,-20.1,0.004141428880289339,0.008283 +bean_bot,-70.7,4.7,-15.1,8.81313702231215,4.065196971858859,-3.702222190036137,2.7848427377534137,-3.7,-26.4,0.01192534276282408,0.023851 +jkraybill_bot,-76.1,38.2,-2.0,67.06547883632598,10.85804803442324,-0.18370601441935402,2.023360215298298,20.0,-24.0,0.4276215664726116,0.855243 +CumulativeBot,-97.0,10.2,-9.5,30.12105998155594,9.408238498783877,-1.0055347747612828,2.2318482470257073,11.5,-30.5,0.17010877366473343,0.340218 +swingswish,-109.0,6.7,-16.3,15.145530939114826,5.8512290764953425,-2.779700630431383,2.4503873959101115,-1.9,-30.6,0.016896405137265973,0.033793 +SynapseSeer,-128.5,27.1,-4.8,47.08104512679923,9.052373408885058,-0.5249586045828704,2.0495688922222266,13.8,-23.3,0.3020257536154594,0.604052 +KevinTestBot,-148.3,8.4,-17.7,59.36966948088596,20.484482089149132,-0.861937850691314,2.3114957148363993,29.7,-65.0,0.20788855644704712,0.415777 +twsummerbot,-237.2,47.0,-5.0,79.50268976923377,11.596659167249031,-0.4351341379419649,2.011215351349222,18.3,-28.4,0.3327499422743516,0.665500 +pianobot,-272.2,4.7,-57.9,92.18716506105443,42.522768374266384,-1.3617857782441627,2.798986372998989,61.1,-176.9,0.12513690451031248,0.250274 +annabot,-316.0,24.8,-12.7,43.737410179436026,8.78268331306498,-1.4506136216521068,2.061307003341828,5.4,-30.8,0.07997018027788368,0.159940 +CatrachoCaster,-331.3,19.7,-16.8,52.31505896858736,11.786737352016457,-1.4269796898114384,2.0887774106971415,7.8,-41.4,0.08503530101258772,0.170071 +cookics_bot_TEST,-413.3,24.6,-16.8,72.42669439141218,14.602630986445607,-1.1504360014417054,2.060844706052324,13.3,-46.9,0.13074420290720767,0.261488 +GreeneiBot2,-446.6,45.8,-9.8,88.55320725176313,13.092082882350407,-0.7457050808617829,2.0123403544597687,16.6,-36.1,0.22987241625188587,0.459745 +metac-o1,-500.3,74.7,-6.7,111.25524179571492,12.872419395150438,-0.5203385298152786,1.9915966480791545,18.9,-32.3,0.3021936468001055,0.604387 +krm-bot,-521.0,9.5,-54.8,50.627856321510166,16.42584560255888,-3.3389622067030595,2.2647088573190035,-17.6,-92.0,0.004699854903992789,0.009400 +4Shadower,-527.8,12.2,-43.3,80.79118175671782,23.1304480505728,-1.870272754393436,2.181694676433973,7.2,-93.7,0.043896119135688104,0.087792 +MWG,-766.4,29.5,-26.0,87.753337992406,16.156699118332316,-1.6080774730154093,2.043526587895404,7.0,-59.0,0.059420840675107243,0.118842 +bot_median,-780.6,75.7,-10.3,85.11389082378146,9.782559637787905,-1.0541472762650386,1.991180868356605,9.2,-29.8,0.14760661430231808,0.295213 +Bot_Pepa,-814.9,37.2,-21.9,93.0672852336652,15.269247572172862,-1.4365511370924278,2.0250978379673494,9.0,-52.9,0.07972209366548037,0.159444 +ajf-bot,-843.1,31.4,-26.9,104.85473327098268,18.727045567955233,-1.4360202527786072,2.0376668291983946,11.3,-65.1,0.08061224440506941,0.161224 +manticAI,-861.5,55.0,-15.7,82.87386541760124,11.169633780368585,-1.4011467022381876,2.003063688519742,6.7,-38.0,0.0834429937716208,0.166886 +ProfessorSP,-997.2,16.8,-59.4,96.91948763187727,23.64593376252087,-2.510292938252793,2.1123711239055107,-9.4,-109.3,0.011672270373603825,0.023345 +metac-perplexity,-1072.9,72.7,-14.8,105.3156072760711,12.351665757565863,-1.1948077828717358,1.9924623002180712,9.9,-39.4,0.11804973996535996,0.236099 +wunderplumb,-1159.0,23.8,-48.8,90.740106090436,18.619476902939518,-2.620989857063412,2.065034175048189,-10.4,-87.3,0.007676506818434511,0.015353 +laylaps,-1214.5,52.2,-23.3,48.01992906842049,6.64639675338256,-3.5005872010263053,2.005358510673014,-9.9,-36.6,0.0004856418727962744,0.000971 +NextWorldLab,-1224.1,63.8,-19.2,98.66262212994546,12.347305753344907,-1.552698610221572,1.9970180928411654,5.5,-43.8,0.06275829680564975,0.125517 +metac-Gemini-Exp-1206,-1250.5,65.1,-19.2,94.99321076040114,11.773404699868328,-1.6315194435246863,1.9963767235603869,4.3,-42.7,0.053842330878096756,0.107685 +minefrac1,-1289.4,43.5,-29.6,123.19979122882201,18.679504139979862,-1.5868575895194426,2.0149178012042084,8.0,-67.3,0.05997902931188052,0.119958 +pgodzinai,-1330.4,62.0,-21.5,98.40405336166643,12.497327274265158,-1.7169528181446574,1.998173547416901,3.5,-46.4,0.04553088385451872,0.091062 +metac-deepseek-r1,-1360.3,48.2,-28.2,108.35980238796017,15.607907596292135,-1.808247915950853,2.0091123850303423,3.1,-59.6,0.038470700886698884,0.076941 +metac-Llama-3.1,-1412.1,73.7,-19.2,97.48349885250519,11.355267367831132,-1.687375000139217,1.9920236390185833,3.5,-41.8,0.04790881765000651,0.095818 +metac-claude-3-5-sonnet-latest,-1463.9,74.7,-19.6,96.8559111558961,11.206392518452509,-1.7487367238291156,1.9915966480791545,2.7,-41.9,0.04225009834107552,0.084500 +metac-claude-3-5-sonnet-20240620,-1649.9,75.1,-22.0,105.32409379053074,12.153679026757276,-1.8076157533135497,1.9915359040496325,2.2,-46.2,0.03736236035591808,0.074725 +metac-o1-preview,-1830.6,74.7,-24.5,107.51540873641419,12.439714393299266,-1.9699554012840843,1.9915966480791545,0.3,-49.3,0.026300611526952466,0.052601 +mmBot,-2006.4,75.7,-26.5,78.53235084186326,9.026110757840675,-2.9364459612521934,1.991180868356605,-8.5,-44.5,0.0022054969593251583,0.004411 +VeritasAI,-2024.5,67.7,-29.9,63.28210251110541,7.691066484341371,-3.88818660370801,1.9948486063528272,-14.6,-45.2,0.00011762351540143696,0.000235 +metac-grok-2-1212,-2154.6,74.7,-28.8,106.09460633753015,12.275325155894583,-2.3496848937723014,1.9915966480791545,-4.4,-53.3,0.01073504583547352,0.021470 +metac-gpt-4o,-2196.6,74.7,-29.4,100.42168394988849,11.618958453605197,-2.53084357359069,1.9915966480791545,-6.3,-52.5,0.006756252860737068,0.013513 +metac-exa,-2249.1,72.7,-30.9,91.72328991140397,10.757526338903716,-2.875853188346894,1.9924623002180712,-9.5,-52.4,0.002651041040011998,0.005302 +InstitutPelFutur,-2477.3,72.8,-34.0,102.04145421493415,11.959442897860137,-2.8453905383922216,1.992460623985373,-10.2,-57.9,0.002888355174527779,0.005777